@import "reset.css";

@import url('in_css_bf6b62e27fdd76934be75bc875e01eaf.static.com');
/* font-family: "Poppins", sans-serif; */

@import url('in_css_86d286c69f54fcc51ce4ce036bcf3a09.static.900&display=swap');
/* font-family: "Roboto", sans-serif; */

:root {
   --color-gray: #6A6A6A;
   --color-light-blue: #E0ECFF;
   --color-blue: #1E4F97;
   --color-dark-blue: #073374;
}

* {
   font-family: "Roboto", sans-serif;
}

html {
   overflow-x: hidden;
}

body {
   background: #fff;
   color: #000;
   min-width: 320px;
   overflow-x: hidden;
   font-size: 18px;
   line-height: 26px;
   font-weight: 400;
}

.container {
   display: block;
   width: 100%;
   max-width: 830px;
   margin: 0 auto;
   padding: 0 15px;
}

/* header */

header {
   padding: 30px 0;
}

.header-flex {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: flex-start;
   column-gap: 10px;
}

.header-logo {
   width: 40px;
   height: 40px;
   background: #FF0000;
   border-radius: 50%;
   padding: 4px 0;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.header-logo img {
   width: auto;
   height: 100%;
   object-fit: contain;
}

.header-text {
   display: flex;
   flex-direction: column;
   row-gap: 5px;
}

.header-title {
   font-size: 16px;
   line-height: 18px;
   font-weight: 700;
   margin: 0;
}

.header-subtitle {
   font-size: 14px;
   line-height: 1;
   color: var(--color-gray);
   font-weight: 400;
   margin: 0;
}

/* header */

/* article */

article h1.title {
   font-size: 26px;
   line-height: 36px;
   font-family: "Poppins", sans-serif;
   font-weight: 900;
}

.article-info {
   margin: 10px 0 30px;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: flex-start;
   column-gap: 15px;
   flex-wrap: wrap;
}

.article-info p,
.article-info span {
   color: var(--color-gray);
   font-size: 16px;
   line-height: 1.5;
   margin: 0;
}

.image {
   display: block;
   width: 100%;
   max-width: 600px;
   margin: 30px auto;
}

.image.vertical {
   max-width: 400px;
}

.image img {
   display: block;
   width: 100%;
   padding: 0;
   margin: 0;
   border-radius: 6px;
}

.image video {
   display: block;
   width: 100%;
   padding: 0;
   margin: 0;
   border-radius: 6px;
}

.image .description {
   color: var(--color-gray);
   font-size: 14px;
   line-height: 18px;
   font-style: italic;
   margin: 10px 0 0 0;
}

p {
   margin-bottom: 16px;
}

p b {
   font-weight: 700;
}

p a {
   color: #FF4B57;
   text-decoration: underline;
}

p.question {
   color: var(--color-blue);
   font-style: italic;
   font-weight: 700;
}

article h2.subtitle {
   margin: 30px 0;
   color: var(--color-dark-blue);
   padding-bottom: 6px;
   border-bottom: 3px solid #FF4B57;
   font-size: 30px;
   line-height: 34px;
}

.border {
   background: var(--color-light-blue);
   border-left: 3px solid var(--color-blue);
   padding: 15px;
   margin: 30px 0;
}

.border>*:first-child {
   margin-top: 0;
}

.border>*:last-child {
   margin-bottom: 0;
}

.border.effect {
   padding: 20px;
   border-left: 0;
   border-radius: 6px;
}

.border.effect p {
   font-size: 16px;
}

.border.effect p.effect-title {
   font-size: 18px;
   font-weight: 700;
   text-decoration: underline;
}

.border-title {
   font-size: 20px;
   font-weight: 700;
   text-align: center;
}

.quote {
   margin: 30px 0;
   padding: 20px 30px;
   position: relative;
   background: var(--color-light-blue);
   border-radius: 6px;
   color: var(--color-blue);
   font-weight: 500;
}

.quote>*:first-child {
   margin-top: 0;
}

.quote>*:last-child {
   margin-bottom: 0;
}

.quote::before,
.quote::after {
   font-size: 40px;
   color: var(--color-dark-blue);
   opacity: 0.7;
   position: absolute;
   font-weight: bold;
   font-family: Georgia, serif;
}

.quote::before {
   content: "“";
   top: 10px;
   left: 5px;
}

.quote::after {
   content: "”";
   bottom: -10px;
   right: 5px;
}

.notice {
   font-size: 20px;
   font-weight: 500;
}

.list {
   margin: 16px 0;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   justify-content: flex-start;
   row-gap: 10px;
}

.list li {
   display: flex;
   flex-direction: row;
   align-items: flex-start;
   justify-content: flex-start;
}

.list li .list-icon {
   flex-shrink: 0;
}

.list li .list-icon .plus {
   width: 13px;
   height: 13px;
   position: relative;
   margin: 0 7px;
   margin-top: 6px;
}

.list li .list-icon .plus::before {
   content: "";
   width: 3px;
   height: 13px;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: #FF4B57;
}

.list li .list-icon .plus::after {
   content: "";
   width: 13px;
   height: 3px;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: #FF4B57;
}

.list li .list-icon .warning {
   width: 20px;
   height: 20px;
   position: relative;
   mask: url('in_css_c8df636ed3da9c859f1c6cdfb255d445.static.svg') center / contain no-repeat;
   border-radius: 50%;
   background-color: #FF4B57;
   margin-right: 7px;
   margin-top: 2px;
}

ol {
   list-style: decimal;
   margin: 16px 0;
   margin-left: 27px;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   justify-content: flex-start;
   row-gap: 10px;
}

.button {
   display: block;
   width: 100%;
   max-width: 300px;
   -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
   box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
   background: var(--color-blue);
   margin: 30px auto;
   border-radius: 46px;
   font-size: 22px;
   line-height: 26px;
   font-weight: 700;
   text-transform: uppercase;
   text-align: center;
   color: #fff;
   padding: 20px 15px;
   text-decoration: none;
   transition: all 0.2s;
}

.button:hover {
   background: var(--color-dark-blue);
}

.packages {
   text-align: center;
   margin: 30px auto;
   color: #FF4B57;
}

.packages p {
   margin-bottom: 5px;
}

.packages .pcs {
   width: 200px;
   height: 50px;
   display: flex;
   align-items: center;
   justify-content: center;
   column-gap: 5px;
   margin: 0 auto;
   background: #FF4B57;
   color: #fff;
   font-size: 22px;
   line-height: 1;
   font-weight: 900;
}

/* article */

/* footer */

footer {
   margin-top: 30px;
   padding-bottom: 30px;
}

footer p {
   font-size: 8px;
   line-height: 1.25;
   color: #000;
   margin: 0 0 5px;
   text-align: center;
}

footer p:last-child {
   margin: 0;
}

/* footer */

/* flags */

.preflags {
   margin: 30px 0;
}

.preflags p {
   text-transform: uppercase;
   font-size: 20px;
   line-height: 26px;
   font-weight: 700;
   text-decoration: underline;
   text-align: center;
}

.flags--wrapper {
   margin: 30px auto 50px;
}

#flags--title {
   display: block;
   color: var(--color-blue);
   text-transform: uppercase;
   text-align: center;
   background-color: var(--color-light-blue);
   padding: 15px;
   font-size: 22px;
   line-height: 26px;
   font-weight: 700;
   border-radius: 6px;
   margin-bottom: 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(30, 79, 151, 70%);
   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;
}

@keyframes pulse {
   to {
      box-shadow: 0 0 0 15px transparent;
   }
}

.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: #ededed;
   font-size: clamp(32px, 10vw, 60px);
   margin: 0;
   font-weight: 700;
   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(18px, 5vw, 40px);
   color: #fff;
   text-shadow: 1px 1px 5px #000;
   pointer-events: none;
   text-align: center;
   width: 90%;
}

/* flags */

/* order block */

.order_block {
   display: none;
   margin: 30px auto;
   margin-top: 5rem;
   border-radius: 6px;
   background: var(--color-light-blue);
   padding: 20px 30px 30px;
}

.order_block h3 {
   font-style: italic;
   font-weight: 700;
   font-size: 22px;
   line-height: 26px;
   text-align: center;
   margin-bottom: 20px;
}

.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: var(--color-blue);
   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: 350px;
   margin: 0 auto;
}

.order_block .button {
   margin: 20px auto 0;
}

@media screen and (max-width: 600px) {
   .order_block {
      padding: 20px 15px 30px;
   }
}

/* order block */

/* comments */

.comments-title {
   font-size: 20px;
   line-height: 26px;
   font-weight: 700;
   text-transform: uppercase;
   margin-bottom: 20px;
}

.show-comments-buttons {
   margin: 20px 0;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: flex-start;
   column-gap: 10px;
}

.show-comments-buttons button {
   display: block;
   width: 100%;
   max-width: 120px;
   background: var(--color-light-blue);
   color: var(--color-blue);
   border: 0;
   outline: 0;
   font-size: 16px;
   line-height: 1;
   border-radius: 46px;
   padding: 12px;
   transition: all 0.2s;
}

.show-comments-buttons button.active {
   background: var(--color-blue);
   color: #fff;
}

.comment {
   margin: 20px 0;
}

.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: 30px;
}

.comment-left {
   flex-shrink: 0;
}

.comment-right {
   width: 100%;
}

.comment-avatar {
   width: 60px;
   height: 60px;
   border-radius: 50%;
}

.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: 10px;
}

.comment-info .name {
   font-size: 15px;
   line-height: 18px;
   font-weight: 600;
   margin: 0;
}

.comment-info .date {
   font-size: 14px;
   line-height: 18px;
   color: var(--color-gray);
   margin: 0;
}

.comment-text .text {
   font-size: 15px;
   line-height: 26px;
   margin: 0;
}

.comment-text .comment-image {
   display: block;
   width: auto;
   max-width: 100%;
   max-height: 350px;
   border-radius: 6px;
   margin: 10px 0 0 0;
}

.comment-footer {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   font-size: 14px;
   line-height: 18px;
   color: var(--color-gray);
   margin: 5px 0 0 0;
}

.comment-footer .reply,
.comment-footer .likes,
.comment-footer .dislikes {
   display: flex;
   flex-direction: row;
   align-items: center;
   column-gap: 4px;
}

.comment-footer .reply img {
   width: 23px;
   height: 23px;
}

.comment-footer .reactions {
   display: flex;
   flex-direction: row;
   align-items: center;
   column-gap: 15px;
}

.comment-footer .likes img,
.comment-footer .dislikes img {
   width: 22px;
   height: 22px;
}

.comment-footer .dislikes img {
   transform: rotate(180deg) scaleX(-1);
}

.comment-footer .reply,
.comment-footer .likes,
.comment-footer .dislikes {
   cursor: pointer;
}

/* comments */

/* image-3 */

.image-3 {
   position: relative;
   overflow: hidden;
}

.image-3 .image-3-title {
   text-align: center;
   font-family: "Poppins", sans-serif;
   font-size: clamp(12.8px, 4vw, 22px);
   line-height: 1.2;
   font-weight: 600;
   color: red;
   position: absolute;
   width: 100%;
   padding: 1%;
   top: 0;
   left: 0;
}

.image-3 .image-3-text div {
   position: absolute;
   font-family: "Poppins", sans-serif;
   font-size: clamp(5.76px, 1.8vw, 12px);
   line-height: 1.2;
   font-weight: 600;
   width: 17%;
   height: 8%;
   display: flex;
   align-items: center;
   justify-content: flex-start;
}

.image-3-text div:nth-child(1) {
   left: 0;
   top: 12%;
}

.image-3-text div:nth-child(2) {
   left: 3%;
   top: 23%;
}

.image-3-text div:nth-child(3) {
   left: 0%;
   top: 32%;
}

.image-3-text div:nth-child(4) {
   width: 12%;
   left: 0%;
   top: 40%;
}

.image-3-text div:nth-child(5) {
   left: 1%;
   top: 48%;
}

.image-3-text div:nth-child(6) {
   left: 24%;
   bottom: 0;
}

.image-3-text div:nth-child(7) {
   width: 11%;
   right: -0.5%;
   top: 14%;
}

.image-3-text div:nth-child(8) {
   width: 11%;
   right: -0.5%;
   top: 21%;
}

.image-3-text div:nth-child(9) {
   width: 11%;
   right: -0.5%;
   top: 31%;
}

.image-3-text div:nth-child(10) {
   width: 11%;
   right: -0.5%;
   top: 45%;
}

.image-3-text div:nth-child(11) {
   width: 11%;
   right: -0.5%;
   top: 63%;
}

/* image-3 */

/* image-6 */

.image-6 {
   position: relative;
   overflow: hidden;
}

.image-6 .image-6-title {
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   height: 20%;
   position: absolute;
   top: 3%;
   left: 0;
}

.image-6 .image-6-title div {
   width: 46%;
   flex-shrink: 0;
   text-align: center;
   font-family: "Poppins", sans-serif;
   font-size: clamp(12.8px, 4vw, 22px);
   line-height: 1.2;
   font-weight: 700;
   color: #008777;
   padding: 0 2%;
}

.image-6 .image-6-text div {
   position: absolute;
   font-family: "Poppins", sans-serif;
   line-height: 1.2;
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: center;
}

.image-6 .image-6-text div:nth-child(1) {
   width: 13%;
   height: 12%;
   left: 43%;
   top: 36%;
   text-align: center;
   font-size: clamp(5.76px, 1.8vw, 12px);
}

.image-6 .image-6-text div:nth-child(2) {
   width: 45%;
   height: 10%;
   bottom: 7%;
   left: 13%;
   justify-content: flex-start;
   font-size: clamp(8px, 2.5vw, 14px);
}

/* image-6 */

/* ingredients */

.ingredients {
   max-width: 800px;
   margin: 30px auto;
}

.ingredients--img--wrapper {
   position: relative;
   width: 13rem;
   min-height: 13rem;
   margin: 0 auto;
   z-index: 5;
   display: flex;
   align-items: center;
   justify-content: center;
}

.ingredients--img--wrapper img {
   z-index: 2;
   max-height: 110%;
   object-fit: contain;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.ingredients--img--wrapper::after {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   content: '';
   display: block;
   width: 13rem;
   height: 13rem;
   max-width: 100%;
   max-height: 100%;
   background: #e0ecff;
   border: 1px solid #1e4f97;
   border-radius: 50%;
   z-index: 1;
}

.ingredients--wrapper--items {
   display: flex;
   justify-content: space-between;
   align-items: stretch;
}

.ingredients--item {
   width: 32%;
   background: #e0ecff;
   border: 1px solid #1e4f97;
   text-align: center;
   padding: .6rem;
   display: flex;
   justify-content: center;
   flex-direction: column;
   align-items: center;
   row-gap: 10px;
   position: relative;
   border-radius: 6px;
}

.ingredients--item img {
   max-width: 220px;
   border-radius: 8px;
}

.ingredients--item p {
   font-size: 16px;
   margin: 0;
   text-align: center;
   width: 100%;
}

.svg--wrapper {
   width: 100%;
   max-width: 100%;
   height: 40px;
   max-height: 40px;
}

.ingredients--wrapper--items>.ingredients--item:nth-child(1) {
   z-index: 5;
}

.ingredients--wrapper--items>.ingredients--item:nth-child(2) {
   z-index: 4;
}

.ingredients--wrapper--items>.ingredients--item:nth-child(3) {
   z-index: 3;
}

.ingredients--wrapper--items>.ingredients--item:nth-child(4) {
   z-index: 2;
}

@media screen and (max-width: 600px) {
   .svg--desktop {
      display: none;
   }

   .ingredients--wrapper--items {
      justify-content: space-around;
      align-items: stretch;
      flex-wrap: wrap;
      z-index: 2;
      position: relative;
      margin-top: -.3rem;
   }

   .ingredients--item {
      width: 100%;
   }

   .ingredients--item {
      margin-top: 1.2rem;
   }

   .ingredients--wrapper--items>.ingredients--item::after {
      content: '';
      height: 2rem;
      width: 1px;
      background-color: #1e4f97;
      display: block;
      position: absolute;
      bottom: 100%;
   }
}

/* ingredients */

/* image-9 */

.image-9 {
   position: relative;
   overflow: hidden;
}

.image-9 .image-9-text div {
   position: absolute;
   font-family: "Poppins", sans-serif;
   font-size: clamp(8px, 2.5vw, 14px);
   line-height: 1.2;
   font-weight: 600;
   width: 28%;
   display: flex;
   align-items: center;
   justify-content: flex-start;
}

.image-9 .image-9-text div:nth-child(1) {
   bottom: 48%;
   left: 2%;
}

.image-9 .image-9-text div:nth-child(2) {
   bottom: 13.5%;
   left: 5.3%;
   width: 30%;
}

.image-9 .image-9-text div:nth-child(3) {
   bottom: 57%;
   right: 3%;
}

.image-9 .image-9-text div:nth-child(4) {
   bottom: 41%;
   right: 3%;
}

.image-9 .image-9-text div:nth-child(5) {
   bottom: 13.5%;
   right: 5%;
   width: 26%;
}


/* image-9 */