@import "reset.css";
@import "fonts.css";


* {
   font-family: 'Apercu Pro';
}

body {
   background: #f6f9f8;
   min-width: 320px;
   overflow-x: hidden;
   font-size: 18px;
   line-height: 1.2;
   color: #35334e;
}

.container {
   display: block;
   width: 100%;
   max-width: 1000px;
   margin: 0 auto;
   padding: 0 15px;
}

a {
   text-decoration: none;
}

b {
   font-weight: 700;
}

/* header */

header {
   background: #a92323;
}

header .header-top {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: flex-start;
   height: 80px;
   width: 100%;
   max-width: 1000px;
   margin: 0 auto;
   padding: 0 15px;
}

header .header-top .logo {
   font-size: 26px;
   line-height: 1.2;
   font-weight: 900;
   text-transform: uppercase;
   color: #fff;
   margin-right: 25px;
   max-width: 250px;
   hyphens: auto;
}

header .header-top .primary-header-nav {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: flex-start;
   flex-grow: 1;
   height: 100%;
}

header .header-top .primary-header-nav a {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   text-transform: uppercase;
   font-size: 13px;
   line-height: 1.6;
   font-weight: 700;
   color: #fff;
   padding: 0 12px;
   height: 100%;
   transition: background-color .3s ease;
}

header .header-top .primary-header-nav a:hover {
   background: #831010;
}

header .header-top .primary-header-nav a .nav-arrow {
   margin-top: 3px;
}

header .header-top .socials {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: flex-start;
   column-gap: 4px;
}

header .header-top .socials a {
   background: #fff;
   color: #0d0510;
   width: 36px;
   height: 36px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
}

header .header-top .socials a:hover {
   background: #0d0510;
   color: #fff;
}

header .header-top .profile {
   width: 40px;
   height: 40px;
   margin-left: 15px;
}

header .header-bottom {
   background: #f6f9f8;
}

header .header-bottom .secondary-header-nav {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   max-width: 1000px;
   margin: 0 auto;
   padding: 0 15px;
   border-bottom: 1px solid #a4b9be;
}

header .header-bottom .secondary-header-nav a {
   font-size: 13px;
   line-height: 1;
   color: #0d0510;
   text-transform: uppercase;
   font-weight: 700;
   padding: 10px 0;
}

header .header-bottom .secondary-header-nav a:hover {
   text-decoration: underline;
}

@media screen and (max-width: 1000px) {

   header .header-top {
      justify-content: space-between;
   }

   header .header-top .primary-header-nav {
      display: none;
   }

   header .header-top .logo {
      max-width: 100%;
      flex-grow: 1;
   }

}

@media screen and (max-width: 800px) {

   header .header-bottom {
      display: none;
   }

}

@media screen and (max-width: 600px) {

   header .header-top .socials {
      display: none;
   }

   header .header-top .logo {
      margin: 0;
   }

}

/* header */

/* article */

article {
   padding: 30px 0;
}

.current-category {
   color: #a92323;
   font-size: 18px;
   line-height: 1.2;
   margin-bottom: 10px;
   font-weight: 700;
}

h1.title {
   font-size: 40px;
   line-height: 1.2;
   font-weight: 900;
}

h2 {
   font-size: 24px;
   line-height: 1.2;
   font-weight: 700;
   margin: 20px 0;
}

article .image {
   display: block;
   margin: 20px auto;
}

article .image img {
   display: block;
   width: 100%;
}

article .image video {
   display: block;
   width: 100%;
   margin: 0;
   padding: 0;
}

article .image.horizontal {
   width: 100%;
   max-width: 600px;
}

article .image.vertical {
   width: 100%;
   max-width: 400px;
}

article .image .description {
   font-weight: 700;
   font-size: 16px;
   margin-top: 5px;
}

article .image .description svg {
   width: 16px;
   height: 16px;
   fill: none;
   vertical-align: middle;
   margin-right: 4px;
}

.plashka {
   position: relative;
}

.plashka .channel {
   position: absolute;
   top: 5%;
   right: 5%;
   padding: 0.3em 0.6em;
   border-radius: 6px;
   background: rgba(0, 0, 0, 0.7);
   color: white;
   text-align: center;
   font-size: clamp(16px, 4vw, 20px);
   line-height: 1.2;
   backdrop-filter: blur(2px);
   white-space: nowrap;
}

.plashka .channel b {
   font-weight: 700;
}

article .socials {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   margin: 20px 0;
}

article .socials .share-bar {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: flex-start;
   column-gap: 4px;
}

article .socials .share-bar a {
   color: #fff;
   width: 36px;
   height: 36px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
}

article .socials .share-bar a.fb {
   background: #315c97;
}

article .socials .share-bar a.x {
   background: #000;
}

article .socials .share-bar a.whatsapp {
   background: #3bb931;
}

article .socials .share-bar a.copy-link {
   background: #a92323;
}

.comment-button {
   background-color: #a92323;
   display: flex;
   align-items: center;
   justify-content: center;
   column-gap: 4px;
   border-radius: 30px;
   color: #fff;
   font-size: 18px;
   line-height: 24px;
   padding: 6px 16px;
}

.comment-button:hover {
   background: #0d0510;
}

article p {
   font-size: 18px;
   line-height: 1.6;
   font-weight: 400;
   margin-bottom: 20px;
}

article p a {
   font-weight: 700;
   text-decoration: underline;
   color: #35334e;
}

span.colored {
   font-weight: 700;
   color: #a92323;
}

ul,
ol {
   margin: 20px 0;
}

.list li {
   display: flex;
   flex-direction: row;
   align-items: flex-start;
   justify-content: flex-start;
   column-gap: 10px;
   margin-bottom: 15px;
}

.list li:last-child {
   margin-bottom: 0;
}

.list li p:last-child {
   margin: 0;
}

.list li .list-icon {
   display: flex;
   align-items: center;
   justify-content: center;
   margin-top: calc((1.6 * 18px - 24px) / 2); /* margin-top: calc((var(--line-height) * var(--font-size) - var(--icon-size)) / 2); */
}

.list li .list-icon .warning {
   -webkit-mask: url('../images/warning-icon.svg') center / contain no-repeat;
   mask: url('../images/warning-icon.svg') center / contain no-repeat;
   width: 24px;
   height: 24px;
   border-radius: 50%;
   background-color: #a92323;
}

ul li,
ol li {
   font-size: 18px;
   line-height: 1.6;
   font-weight: 400;
}

.attention {
   background: #fee6e4;
   padding: 15px;
   border: 1px solid #a92323;
   margin: 20px 0;
}

.attention p {
   text-align: center;
}

.attention p b {
   font-weight: 700;
}

.attention>*:first-child {
   margin-top: 0;
   padding-top: 0;
}

.attention>*:last-child {
   margin-bottom: 0;
   padding-bottom: 0;
}

@media screen and (max-width: 600px) {

   article {
      padding: 15px 0;
   }

   .current-category {
      display: none;
   }

   h1.title {
      font-size: 26px;
   }

   .comment-button .comment-button-text {
      display: none;
   }

}

/* article */

/* flags */

.preflags {
   border-top: 1px solid #a4b9be;
   padding-top: 20px;
   margin-top: 20px;
}

.preflags p {
   text-align: center;
   font-weight: 700;
   font-size: 20px;
   line-height: 1.4;
}

.flags--wrapper {
   margin: 20px auto;
}

#flags--title {
   display: block;
   color: #fff;
   font-weight: 700;
   text-transform: uppercase;
   text-align: center;
   margin-bottom: 15px;
   background-color: #35334e;
   padding: 15px;
   font-size: 20px;
}

.flags--container {
   display: flex;
   justify-content: space-around;
   column-gap: 10px;
}

.flags--item img {
   cursor: pointer;
   box-sizing: border-box;
   margin: 0 auto;
   max-width: 250px;
   width: 100%;
   border-radius: 12%;
   box-shadow: 0 0 0 0 rgba(247, 34, 16, 0.7);
   animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

.flags--wrapper>div>div:nth-child(2)>img {
   animation-delay: 666ms;
}

.flags--wrapper>div>div:nth-child(3)>img {
   animation-delay: 1333ms;
}

.win {
   display: none;
}

.flags--item {
   position: relative;
}

.win p {
   -webkit-text-size-adjust: 100%;
   -webkit-font-smoothing: antialiased;
   cursor: pointer;
   box-sizing: border-box;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   padding: 0;
   margin: 0;
   line-height: 1;
   color: #fff;
   font-size: clamp(36px, 10vw, 60px);
   margin: 0;
   font-weight: 900;
   text-shadow: 1px 1px 3px #000;
}

.grats span {
   color: #20d12e;
}

.click-here {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   font-weight: 900;
   font-size: clamp(24px, 7vw, 40px);
   color: #fff;
   text-shadow: 1px 1px 5px #000;
   pointer-events: none;
   text-align: center;
   width: 90%;
}

@keyframes pulse {
   to {
      box-shadow: 0 0 0 15px transparent
   }
}

/* flags */

/* order block */

.order_block {
   display: none;
   background: #fee6e4;
   padding: 20px 30px;
   margin: 20px auto;
   margin-top: 4.5rem;
}

.order_block h3 {
   font-style: italic;
   font-weight: 700;
   font-size: 22px;
   line-height: 1.4;
   text-align: center;
   margin-bottom: 10px;
}

.pop-up-window {
   position: relative;
   width: 100%;
   padding-top: 4rem;
}

.pop-up-window::before {
   content: "";
   position: absolute;
   width: 110px;
   height: 110px;
   top: -65px;
   left: 0;
   right: 0;
   margin: 0 auto;
   background-color: #a92323;
   border-radius: 50%;
   animation: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-before;
}

.pop-up-window::after {
   content: "";
   position: absolute;
   width: 50px;
   height: 20px;
   top: -30px;
   left: 0;
   right: 0;
   margin: 0 auto;
   border-width: medium medium 4px 4px;
   border-style: none none solid solid;
   border-color: currentcolor currentcolor #fff #fff;
   -moz-border-top-colors: none;
   -moz-border-right-colors: none;
   -moz-border-bottom-colors: none;
   -moz-border-left-colors: none;
   border-image: none;
   transform: rotate(-45deg);
   transition: opacity 1s ease 0s;
   animation: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-after;
}

@keyframes pop-up-appear-before {
   0% {
      transform: scale(0);
   }

   100% {
      transform: scale(1);
   }
}

@keyframes pop-up-appear-after {
   0% {
      opacity: 0;
   }

   100% {
      opacity: 1;
   }
}

.order_block .prod-img {
   display: block;
   width: 100%;
   max-width: 200px;
   margin: 0 auto;
}

.button {
   display: block;
   width: 100%;
   max-width: 300px;
   margin: 20px auto;
   background: #a92323;
   font-weight: 700;
   text-align: center;
   border-radius: 30px;
   padding: 15px 30px;
   color: #fff;
   text-decoration: none;
   font-size: 22px;
   line-height: 1.2;
   text-transform: uppercase;
   transition: .2s;
}

.button:hover {
   background: #0d0510;
}

@media screen and (max-width: 600px) {

   .order_block {
      padding: 20px 15px;
   }

}

/* order block */

/* comments */

h2.comments-title {
   text-transform: uppercase;
   margin: 30px 0;
}

.comment {
   margin-bottom: 20px;
   position: relative;
}

.comment-flex {
   display: flex;
   flex-direction: row;
   align-items: flex-start;
   justify-content: flex-start;
   column-gap: 10px;
}

.comment-flex.answer {
   margin-top: 20px;
   padding-left: 50px;

}

.comment-flex.answer:before {
   content: "";
   position: absolute;
   width: 0px;
   height: 100%;
   background: #a4b9be;
   bottom: 0;
   left: 20px;
   border-left: 1px solid #a4b9be;
}

.comment-left {
   flex-shrink: 0;
}

.comment-right {
   width: 100%;
}

.comment-avatar {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   position: relative;
   z-index: 2;
}

.comment-avatar img {
   border-radius: 50%;
}


.comment-info {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: flex-start;
   column-gap: 10px;
   margin-bottom: 5px;
}

.comment-info .name {
   font-size: 16px;
   line-height: 16px;
   font-weight: 700;
   margin: 0;
}

.comment-info .date {
   font-size: 14px;
   line-height: 16px;
   font-weight: 300;
   margin: 0;
   color: rgba(0, 0, 0, .6);
   position: relative;
}

.comment-info .date:before {
   content: "";
   width: 2px;
   height: 2px;
   border-radius: 50%;
   background: rgba(0, 0, 0, .6);
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   left: -6px;
}

.comment-text .text {
   font-size: 16px;
   line-height: 20px;
   margin: 0;
}

.comment-footer {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   font-size: 14px;
   line-height: 16px;
   font-weight: 300;
   color: rgba(0, 0, 0, .6);
   margin-top: 5px;
}

.comment-footer .reply,
.comment-footer .likes {
   display: flex;
   flex-direction: row;
   align-items: center;
   column-gap: 4px;
   cursor: pointer;
}

.comment-footer .likes svg {
   fill: rgba(0, 0, 0, .6);
   ;
   width: 14px;
   height: 14px;
   align-self: flex-end;
}

.comment-text .comment-image {
   display: block;
   width: auto;
   max-width: 100%;
   max-height: 350px;
   margin: 10px 0 0 0;
}

@media screen and (max-width: 600px) {

   .comment-info {
      height: 40px;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      row-gap: 5px;
   }

   .comment-info .date:before {
      display: none;
   }

}

/* comments */

/* footer */

footer {
   background: #262438;
   padding: 30px 0;
}

footer p {
   font-size: 14px;
   line-height: 18px;
   color: #fff;
   text-align: center;
   margin-bottom: 10px;
}

footer p:last-child {
   margin-bottom: 0;
}

footer p a {
   color: #fff;
   text-decoration: underline;
}

@media screen and (max-width: 600px) {

   footer {
      padding: 15px 0;
   }

}

/* footer */