* {
    box-sizing: border-box;
 }
 h1,
 h2,
 h3,
 h4,
 h5,
 p,
 ul,
 ul li {
    margin: 0;
    padding: 0;
 }
 
 ul li {
    list-style: none;
 }
 body {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
 }
 .wrapper {
    display: block;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
 }
 p {
    font-family: "Lato", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 10px;
    color: #000;
 }
 .header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 }
 .header__wrapper {
    display: flex;
    justify-content: space-between;
    padding: 12px;
 }
 .header__logo-img {
    max-height: 26px;
    width: auto;
 }
 .header__block {
    display: flex;
 }
 .header__item {
    height: 28px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
 }
 .header__item:hover {
    background: #8903ab;
    border-radius: 3px;
    cursor: pointer;
 }
 .header__item img {
    width: 16px;
 }
 .tags {
    padding-bottom: 20px;
 }
 .tags__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
 }
 .tags__item {
    padding: 6px 26px 6px 6px;
    margin-right: 10px;
    margin-bottom: 6px;
    background: #eee;
    position: relative;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    text-transform: lowercase;
 }
 .tags__item:after {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    background-size: cover;
    right: 6px;
    top: 9px;
 }
 .tags__item:hover {
    background: #dedddd;
    cursor: pointer;
 }
 .menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #8903ab;
 }
 .menu-ul {
    display: flex;
    flex-direction: row;
    align-items: center;
 }
 .menu-ul li {
    padding: 16px 18px;
    position: relative;
 }
 .menu-ul li:after {
    content: " ";
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background: #fff;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
 }
 .menu-ul li:last-child {
    padding-right: 55px;
 }
 .menu-ul li:last-child:after {
    content: none;
 }
 .menu-ul li a {
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    text-decoration: none;
 }
 .menu-ul li a:hover {
    text-decoration: underline;
 }
 .content {
    padding: 30px 50px;
 }
 .current-category {
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 25px;
    line-height: 29px;
    margin-bottom: 22px;
    color: #8903ab;
 }
 .title {
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 40px;
    line-height: 47px;
    color: #000;
    text-align: center;
 }
 .subtitle {
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 30px;
    line-height: 35px;
    margin: 11px 0;
    color: #000;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
 }
 .subtitle:after {
    position: absolute;
    content: "";
    height: 4px;
    width: 100px;
    background: #8903ab;
    bottom: 0;
    left: calc(50% - 50px);
 }
 .post-date {
    font-family: "Lato", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 31px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #000;
    margin-top: 30px;
 }
 .categories {
    margin-top: 15px;
 }
 .categories ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
 }
 .categories ul li {
    background: silver;
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.15em;
    padding: 5px 14px;
    color: #fff;
    margin-right: 13px;
    margin-bottom: 5px;
 }
 .categories ul li.current {
    background: #8903ab;
 }
 .categories ul li:last-child {
    margin-right: 0;
 }
 .content .image {
    display: block;
    margin: 40px auto;
    border: 4px solid #8903ab;
 }
 .content .image.horizontal {
    width: 100%;
    max-width: 540px;
 }
 .content .image.vertical {
    width: 100%;
    max-width: 410px;
 }
 .social {
    padding: 18px 0;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    margin-bottom: 30px;
 }
 
 h1 {
    font-family: "Lato", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 38px;
    line-height: 46px;
    margin: 35px 0;
    color: #000;
    position: relative;
    padding-bottom: 20px;
 }
 h1:after {
    position: absolute;
    content: "";
    height: 4px;
    width: 160px;
    background: #8903ab;
    bottom: 0;
    left: 0;
 }
 .table-title b {
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 25px;
    line-height: 45px;
    padding: 5px 10px;
    background: #8903ab;
    text-transform: uppercase;
    position: relative;
    color: #fff;
    z-index: 2;
    text-align: center;
 }
 .table-title {
    position: relative;
 }
 .table-title:before {
    content: "";
    display: block;
    height: 5px;
    width: 100%;
    background: #f2f2f2;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
 }
 .graph,
 .label,
 .table-title b {
    display: block;
    width: 100%;
    max-width: 540px;
    margin: 40px auto;
 }
 .label {
    margin: 35px auto;
 }
 .label li {
    font-family: "Lato", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 29px;
    margin-bottom: 25px;
    color: #000;
    display: flex;
    flex-direction: row;
    align-items: center;
 }
 .graph {
    height: 325px;
 }
 .square1,
 .square2 {
    height: 25px;
    width: 25px;
    margin-right: 8px;
    display: inline-block;
 }
 .square1 {
    background-color: #b8b8b8;
 }
 .square2 {
    background-color: #1202f7;
 }
 .graph tbody {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(2em, 1fr));
    column-gap: 10%;
    align-items: end;
    height: 100%;
    margin: 3em 0 1em 2.8em;
    padding: 0;
    border-top: 1px solid #919191;
    border-bottom: 1px solid #919191;
    background: repeating-linear-gradient(
       180deg,
       #f2f2f2 0,
       #f2f2f2 0 1px,
       transparent 1px,
       transparent 20%
    );
 }
 .graph tbody:after,
 .graph tbody:before {
    position: absolute;
    left: -3.2em;
    width: 2.8em;
    text-align: right;
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 32px;
    color: #000;
 }
 .WeightConsistently tbody:before {
    content: "100%";
    top: -1em;
 }
 .WeightConsistently tbody:after {
    content: "0%";
    bottom: -1em;
 }
 .graph tbody th {
    position: absolute;
    top: -3em;
    left: 0;
    width: 100%;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    text-indent: 0;
    transform: rotate(-45deg);
 }
 .graph tr {
    position: relative;
    display: block;
 }
 .graph tr:hover {
    z-index: 999;
 }
 .graph tr:hover {
    opacity: 0.7;
 }
 .graph td,
 .graph th {
    display: block;
    text-align: center;
 }
 .graph td {
    width: 100%;
    height: 100%;
    border-radius: 0.5em 0.5em 0 0;
    transition: background 0.5s;
 }
 .graph td span {
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 36px;
    width: 100px;
    color: #fff;
    transition: opacity 0.5s;
 }
 .AverageMineral tbody:before,
 .AveragePounds tbody:before {
    content: "Pounds";
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 32px;
    color: #000;
    position: absolute;
    top: 46%;
    transform: translate(-50%, -50%);
    transform: rotate(-90deg);
 }
 .AverageWeightLoss tbody:before {
    content: "Average Pounds Lost After 1 Month";
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 32px;
    color: #000;
    width: 325px;
    position: absolute;
    top: 45%;
    text-align: center;
    left: -11em;
    transform: translate(-50%, -50%);
    transform: rotate(-90deg);
 }
 .AverageWeightLossPercentage tbody:before {
    content: "% Who Lost Over 30 Pounds After 1 Month";
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    width: 325px;
    line-height: 32px;
    color: #000;
    position: absolute;
    top: 45%;
    text-align: center;
    left: -11em;
    transform: translate(-50%, -50%);
    transform: rotate(-90deg);
 }
 .SideEffects tbody:before {
    content: "% Who Experienced Side Effects";
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    width: 325px;
    line-height: 32px;
    color: #000;
    position: absolute;
    top: 45%;
    text-align: center;
    left: -11em;
    transform: translate(-50%, -50%);
    transform: rotate(-90deg);
 }
 a {
    cursor: pointer;
    color: #8903ab;
    text-decoration: underline;
 }
 .prod-img {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 40px auto;
 }
 .coupon {
    width: 100%;
    margin: 40px auto 10px;
    position: relative;
 }
 .coupon span {
    display: block;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #000;
    text-align: center;
    background: #fff;
    position: relative;
    z-index: 2;
 }
 .coupon:before {
    content: "";
    display: block;
    height: 0;
    border-bottom: 2px dashed #919191;
    width: 100%;
    background: #f2f2f2;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
 }
 .coupon:after {
    content: " ";
    width: 50px;
    height: 37px;
    background: url(../images/scissors.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: -20px;
    right: 20px;
    z-index: 2;
 }
 .claim-now {
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    color: #8903ab;
    text-align: center;
 }
 .note {
    font-family: "Lato", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 29px;
    text-align: center;
    margin: 20px auto 10px;
    padding: 5px 0;
    background: #ff0;
 }
 .stock-update img {
    width: 18px;
    margin-right: 5px;
 }
 .stock-update {
    border: 1px dotted #000;
    background: #effff7;
    padding: 4px 9px;
    margin: 15px 0;
    display: flex;
    align-items: center;
 }
 .stock-update p {
    margin: 0;
 }
 .stock-update span {
    color: #dc3545;
 }
 .order-block {
    padding: 20px;
    border: 1px dotted #000;
    background: #effff7;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
 }
 .order-block-img {
    width: 30%;
    max-width: 300px;
    margin: 0 auto;
 }
 .order-block-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
 }
 .order-block-text p {
    margin-bottom: 0;
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
 }
 .order-block-text .note {
    margin: 10px 0;
    font-family: "Lato", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 29px;
    text-align: center;
    padding: 5px 15px;
 }
 .button {
    display: block;
    background: #de7474;
    background: linear-gradient(180deg, #de7474 0%, #f72210 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#de7474", endColorstr="#8903ab", GradientType=1);
    text-align: center;
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin: 15px auto;
    color: #fff;
    font-family: "Lato", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 54px;
    text-decoration: none;
    border-radius: 10px;
    padding: 20px 15px;
    color: #fff;
 }
 .checkmark {
    display: inline-block;
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    color: #8903ab;
    text-align: center;
    padding-left: 30px;
    position: relative;
 }
 .checkmark:before {
    content: " ";
    width: 30px;
    height: 29px;
    background: url(../images/checkmark2.png) no-repeat;
    background-size: contain;
    position: absolute;
    left: 5px;
    top: -11px;
 }
 .offer {
    background: url(../images/offer-bg.jpeg);
    background-size: cover;
    background-position: center;
 }
 .offer__wrapper {
    background: rgba(154, 39, 183, 0.3);
    padding: 40px 20px;
 }
 .offer__img {
    max-width: 300px;
    display: block;
    margin: 0 auto;
 }
 .offer__link a:hover {
    text-decoration: none !important;
 }
 .offer__button {
    margin: 40px auto;
    display: block;
    position: relative;
    border: none;
    box-shadow: 0 0 0 0 rgba(232, 76, 61, 0.7);
    border-radius: 20px;
    background-color: #e84c3d;
    padding: 20px 40px;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    background-repeat: no-repeat;
    cursor: pointer;
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
 }
 .offer__button:hover {
    animation: none;
 }
 .offer__button,
 .offer__button:active,
 .offer__button:focus {
    outline: none;
 }
 .offer h2,
 .offer p {
    text-align: center;
 }
 .offer h2 {
    color: #fff;
    font-size: 32px;
    font-family: "Lato", sans-serif;
 }
 .offer .claim-now {
    padding-top: 10px;
 }
 .offer .note {
    background: #abff9c;
 }
 .offer a {
    text-decoration: none;
 }
 @keyframes pulse {
    to {
       box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
 }
 .footer {
    padding: 20px 0;
    border-top: 4px solid #8903ab;
 }
 .footer__logo {
    height: 50px;
    width: 50px;
    display: block;
    margin-right: 20px;
 }
 .footer__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
 }
 .footer__text {
    font-family: "Lato", sans-serif;
 }
 @media (min-width: 600px) {
    .title {
       padding: 30px 0;
       text-align: left;
    }
    .subtitle:after {
       left: 0;
    }
    .subtitle {
       text-align: left;
    }
 }
 @media (min-width: 601px) {
    .header__wrapper {
    }
    .header__logo-img {
       max-height: 400px;
    }
    .header__item {
       height: 36px;
    }
    .header__item img {
       width: 24px;
    }
    .offer h2 {
       font-size: 46px;
    }
 }
 @media screen and (max-width: 1150px) {
    .menu {
       display: none;
    }
 }
 @media screen and (max-width: 750px) {
    .order-block {
       flex-direction: column;
    }
    .order-block-img {
       width: 100%;
       margin-bottom: 20px;
    }
    .order-block-text {
       width: 100%;
    }
 }
 @media screen and (max-width: 600px) {
    .content {
       padding: 129px 15px;
    }
    .current-category {
       display: none;
    }
    .title {
       font-size: 30px;
       line-height: 35px;
    }
    .subtitle {
       font-size: 20px;
       line-height: 25px;
    }
    .post-date {
       font-weight: 300;
       font-size: 14px;
       line-height: 25px;
    }
    .categories ul li {
       font-size: 12px;
       line-height: 14px;
       margin-right: 5px;
       letter-spacing: 0.15em;
    }
    .content .image.horizontal,
    .content .image.vertical {
       max-width: 100%;
    }
    .content .image {
       margin: 35px auto;
       border-top: 4px solid #8903ab;
    }
    .social img {
       width: 27px;
       height: 27px;
       margin-right: 15px;
    }
    .social {
       padding: 12px 0;
    }
    .social span {
       font-size: 15px;
       line-height: 18px;
       margin-right: 20px;
    }
    p {
       font-size: 18px;
       line-height: 32px;
       letter-spacing: -0.02em;
    }
    h1 {
       position: relative;
       font-weight: 800;
       font-size: 28px;
       line-height: 45px;
       letter-spacing: -0.02em;
       padding-bottom: 14px;
    }
    h1:after {
       position: absolute;
       content: "";
       height: 4px;
       width: 100px;
       background: #8903ab;
       bottom: 0;
       left: 0;
    }
    .table-title b {
       font-size: 17px;
       line-height: 31px;
    }
    .table-title:before {
       display: none;
    }
    .graph,
    .label,
    .table-title b {
       max-width: 100%;
       margin: 25px 0;
    }
    .graph {
       margin-top: 0;
       margin-bottom: 35px;
    }
    .graph tbody {
       margin-top: 0;
       margin-left: 2em;
    }
    .table-title {
       margin-top: 35px;
    }
    tbody:after,
    tbody:before {
       font-size: 12px !important;
       line-height: 22px !important;
    }
    .graph td span {
       font-size: 12px;
       line-height: 25px;
    }
    .coupon:after,
    .coupon:before {
       display: none;
    }
    .AverageWeightLossPercentage tbody:before,
    .AverageWeightLoss tbody:before,
    .SideEffects tbody:before {
       left: -15em;
    }
    .label li {
       margin-bottom: 15px;
    }
 }
 @media screen and (max-width: 500px) {
    .stock-update img {
       display: none;
    }
    .button {
       font-size: 24px;
       line-height: 30px;
    }
 }
 @media screen and (max-width: 400px) {
    .note,
    .order-block-text .note {
       font-size: 18px;
       line-height: 32px;
       letter-spacing: -0.02em;
       padding: 5px;
    }
    .button {
       font-size: 24px;
       line-height: 30px;
    }
 }
 * {
    margin: 0;
    padding: 0;
 }
 body {
    font-size: 18px;
    font-family: Helvetica, Arial, sans-serif;
    color: #000;
    background: #f7f7f7;
 }
 a {
    color: #1697ce;
 }
 a:hover {
    color: #b0493b;
 }
 a img {
    border: medium none;
 }
 a:focus {
    outline: medium none;
 }
 h1 {
    font-size: 24px;
    font-weight: 400;
 }
 h2 {
    font-size: 22px;
    font-weight: 400;
 }
 .infla-simple {
    display: inline-block;
    vertical-align: text-top;
 }
 .infla-simple-m {
    vertical-align: middle;
    display: inline-block;
 }
 .infla-s {
    vertical-align: sub;
    display: inline-block;
 }
 .p-n {
    position: relative;
    display: inline-block;
    top: 4px;
 }
 .alex_zevsa_wcih4ECQW {
    position: relative;
    margin: 0 auto;
    width: 960px;
    padding: 0 20px;
 }
 .clearfix:after {
    content: "";
    display: table;
    clear: both;
 }
 .katyakoncakova_FtFDdVex {
    position: relative;
    z-index: 15;
    background: #fff;
 }
 .katyakoncakova_FtFDdVex .Natali0610_RVdHBJiwC {
    margin-bottom: 10px;
    float: left;
    margin-top: 15px;
    width: 360px;
    text-decoration: none;
    color: #000;
    display: block;
    position: relative;
 }
 .katyakoncakova_FtFDdVex .Natali0610_RVdHBJiwC img {
    width: 180px;
 }
 .katyakoncakova_FtFDdVex .Natali0610_RVdHBJiwC h1 {
    font-size: 18px;
    margin-top: 17px;
    margin-left: 18px;
    width: 265px;
    float: left;
    text-transform: uppercase;
    line-height: 1;
 }
 .katyakoncakova_FtFDdVex .vasilusya_rfYcdWbD {
    float: right;
    font-size: 12px;
    margin-top: 5px;
 }
 .text-align-left p {
    text-align: left !important;
    text-indent: 0 !important;
 }
 .katyakoncakova_FtFDdVex .mikstroy_hlTMvYzPJs {
    width: 330px;
    float: right;
    margin-top: 30px;
 }
 .katyakoncakova_FtFDdVex .mikstroy_hlTMvYzPJs .mansurovan_vUZn4RQN {
    text-align: right;
    font-size: 12px;
    text-transform: uppercase;
    float: right;
 }
 .katyakoncakova_FtFDdVex .mansurovan_vUZn4RQN .Dulov_V_V_du3BxPsUO {
    font-weight: 700;
    color: #353746;
 }
 .katyakoncakova_FtFDdVex .mansurovan_vUZn4RQN a {
    color: #353744;
 }
 .katyakoncakova_FtFDdVex .mansurovan_vUZn4RQN a:hover {
    color: #b0493d;
 }
 .katyakoncakova_FtFDdVex .mansurovan_vUZn4RQN .udav_t_slEtc0GR {
    margin: 0 5px;
 }
 .katyakoncakova_FtFDdVex .mikstroy_hlTMvYzPJs .tata_soboleva_XjcqhmYZ7 {
    margin-top: 25px;
    position: relative;
    text-align: right;
 }
 .katyakoncakova_FtFDdVex .puzzle_LTiRtzPGfe {
    margin-top: 10px;
    background: none repeat scroll 0 0 #333541;
    height: 50px;
 }
 .katyakoncakova_FtFDdVex .puzzle_LTiRtzPGfe .main-menu-blk {
    list-style: none outside none;
 }
 .katyakoncakova_FtFDdVex .main-menu-blk > li {
    display: inline-block;
    margin-right: 23px;
    position: relative;
    padding: 17px 10px;
    white-space: nowrap;
 }
 .katyakoncakova_FtFDdVex .puzzle_LTiRtzPGfe a {
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
 }
 .katyakoncakova_FtFDdVex .puzzle_LTiRtzPGfe .submenu-btn {
    color: #cf4f3a;
    font-style: normal;
    margin-left: 4px;
 }
 .alstep54_sglCGFT6q {
    font-size: 12px;
 }
 .renul_seDwyoGn57 h2 {
    font-weight: 700;
    font-size: 36px;
    margin-top: 26px;
 }
 .renul_seDwyoGn57 .dvksub_rYPIQ4ET {
    color: #6c6e7e;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 5px;
 }
 .renul_seDwyoGn57 .Genrik91_k2XdOzZlq1 {
    margin-top: 25px;
    color: #000;
    line-height: 1.5;
    padding-bottom: 15px;
    margin-bottom: 0;
    font-size: 18px;
 }
 .renul_seDwyoGn57 .Genrik91_k2XdOzZlq1 p {
    color: #000;
    margin: 15px 0;
    line-height: 26px;
 }
 .renul_seDwyoGn57 .Genrik91_k2XdOzZlq1 .udalykhnn_av3FDRJhB {
    text-align: center;
 }
 img {
    max-width: 100%;
 }
 .renul_seDwyoGn57 .Genrik91_k2XdOzZlq1 .AGB_yQobO46Dw {
    margin-top: 10px;
    font-size: 13px;
    color: #a1a1a2;
 }
 .renul_seDwyoGn57 .gelat_Bb6MhOHv {
    float: left;
    padding: 0 30px 10px 0;
    color: #a1a1a8;
 }
 .zhanna_86_o5IKudBv {
    background: none repeat scroll 0 0 #fff;
    padding: 27px 40px 17px;
    margin: 0;
    border-radius: 4px;
 }
 .zhanna_86_o5IKudBv h2 {
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: uppercase;
 }
 .zhanna_86_o5IKudBv ul {
    margin-left: 25px;
 }
 .altakansk_YrlOq5h6N {
    font-family: Arial;
    color: #6c6e83;
    margin: 0 5px;
 }
 .dmavrodi_yjLIBb2Q {
    position: relative;
    z-index: 10;
 }
 .web-s {
    font-family: WebSymbols;
    -moz-user-select: none;
 }
 .sazonov66_g9ysODlqt {
    margin-bottom: -340px;
    min-height: 100%;
    position: relative;
    background: no-repeat scroll center top #f7f7f7;
 }
 /* .vk-container {
    font-family: tahoma, arial, verdana, sans-serif, Lucida\Sans;
    font-size: 15px;
    color: #000;
    text-decoration: none;
 }
 .vk-header {
    background: #dae2e8 none repeat scroll 0 0;
    padding: 4px 4px 4px 6px;
    margin-bottom: 10px;
 }
 .vk-logo {
    background: transparent no-repeat scroll 0 0;
    width: 16px;
    height: 16px;
    float: right;
    margin-top: -1px;
 }
 .vk-header-text {
    padding: 2px 3px 1px;
    line-height: 100%;
    color: #45688e;
    font-weight: 700;
 }
 .vk-avatar img {
    float: left;
    margin-right: 10px;
 }
 .vk-comment,
 .vk-comment-load {
    position: relative;
    border-bottom: 1px solid #dae1e8;
    padding: 7px 0;
 }
 .vk-comment:last-child {
    border-bottom: 0 none;
 }
 .gelat_Bb6MhOHv img {
    margin-top: 20px;
 }
 .vk-comment-name {
    color: #2b587a;
    font-weight: 700;
    font-size: 12px;
 }
 .vk-comment-name a {
    text-decoration: none;
    color: inherit;
 }
 center p {
    text-indent: 0 !important;
 }
 .udalykhnn_av3FDRJhB img {
    margin: 0 auto;
 }
 .vk-comment-text {
    margin-left: 60px;
    text-align: justify;
 }
 .vk-comment img {
    max-width: 358px;
    margin-top: 10px;
    width: calc(100% - 58px);
 }
 .vk-avatar img {
    margin-left: 0;
    width: 50px;
    margin-top: 2px;
 }
 .vk-comment-date {
    margin-left: 60px;
    color: #999;
 } */
 .btn {
    color: #fff;
    width: 250px;
    background: #f44336;
    padding: 10px 0;
    box-sizing: border-box;
    border-radius: 20px;
    display: block;
    margin: 20px auto;
    font-size: 20px;
    text-decoration: none;
 }
 .btn:hover {
    color: #fff;
    background: #c02419;
 }
 p .prod-img {
    max-width: 310px;
    width: 100%;
    margin: 0 auto;
 }
 @media screen and (max-width: 1020px) {
    .alex_zevsa_wcih4ECQW {
       width: auto;
    }
    .main-menu-blk {
       width: 100%;
       margin: 0 auto;
    }
    .katyakoncakova_FtFDdVex .main-menu-blk > li {
       margin: 0;
       text-align: center;
       height: 100%;
       padding: 0 5px;
    }
    .katyakoncakova_FtFDdVex .puzzle_LTiRtzPGfe {
       height: auto;
    }
    .katyakoncakova_FtFDdVex .main-menu-blk > li a {
       line-height: 50px;
    }
    .katyakoncakova_FtFDdVex .mikstroy_hlTMvYzPJs {
       width: 180px;
    }
    .alex_zevsa_wcih4ECQW,
    .main-menu-blk {
       height: 100%;
    }
    .web-s {
       display: none;
    }
    body img {
       max-width: 100%;
    }
    center > img {
       max-width: 100%;
    }
 }
 @media screen and (max-width: 999px) {
    .zhanna_86_o5IKudBv {
       padding: 35px 10px 17px;
    }
 }
 @media screen and (max-width: 720px) {
    .katyakoncakova_FtFDdVex .main-menu-blk > li {
       padding: 5px;
    }
    .text-align-left p {
       text-align: justify !important;
    }
    .katyakoncakova_FtFDdVex .mikstroy_hlTMvYzPJs {
       display: none;
    }
    .renul_seDwyoGn57 .gelat_Bb6MhOHv {
       margin: 0 auto;
       padding-right: 0;
       float: none;
       padding-bottom: 0;
    }
    .renul_seDwyoGn57 .gelat_Bb6MhOHv > img {
       display: block;
       margin: 0 auto;
    }
    .for-img {
       text-indent: 0 !important;
       color: #000;
       text-align: justify;
       margin: 15px;
       margin: 0 !important;
       line-height: 31px;
       font-size: 17px;
       text-align: center !important;
    }
    .nonebr {
       display: none !important;
    }
    .katyakoncakova_FtFDdVex .main-menu-blk > li a {
       line-height: 26px;
    }
    .katyakoncakova_FtFDdVex .Natali0610_RVdHBJiwC {
       margin-top: 40px;
       float: none;
       width: 360px;
       text-decoration: none;
       color: #000;
       display: block;
       position: relative;
       margin: 10px auto;
    }
    .renul_seDwyoGn57 .Genrik91_k2XdOzZlq1 p {
       margin: 15px 0;
    }
 }
 @media screen and (max-width: 542px) {
    .main-menu-blk {
       margin: 0 auto;
       text-align: center;
    }
 }
 @media screen and (max-width: 479px) {
    .renul_seDwyoGn57 .Genrik91_k2XdOzZlq1 p {
       text-indent: 0;
       color: #000;
       text-align: left;
       margin: 10px 0;
       line-height: 25px;
    }
    .vk-comment-text {
       margin-left: 60px;
       text-align: left;
    }
    .text-align-left p {
       text-align: left !important;
    }
    p .prod-img {
       max-width: 125px !important;
    }
 }
 @media screen and (max-width: 420px) {
    .zhanna_86_o5IKudBv {
       padding-left: 10px;
       padding-right: 10px;
       padding-top: 20px;
    }
    .katyakoncakova_FtFDdVex .main-menu-blk > li {
       width: 45%;
       padding: 0;
    }
    .udalykhnn_av3FDRJhB img,
    body img {
       max-width: 100%;
    }
    .katyakoncakova_FtFDdVex .Natali0610_RVdHBJiwC {
       width: 320px;
    }
    .katyakoncakova_FtFDdVex .Natali0610_RVdHBJiwC h1 {
       width: 225px;
       font-size: 16px;
    }
    .alex_zevsa_wcih4ECQW {
       padding: 0;
    }
 }
 .for-img {
    text-indent: 0 !important;
    color: #000;
    margin: 15px;
    margin: 5px 0 !important;
    line-height: 31px;
    font-size: 17px;
 }
 .vk-comment-load {
    border-bottom: none !important;
 }
 p .prod-img {
    max-width: 200px;
 }
 .important {
    background: #fff2cc;
    text-align: center;
    font-weight: bold;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #000;
 }
 p i {
    margin-top: 5px;
 }
 :root {
    --color_base: #fff;
    --color_primary: #3a4752;
    --color_secondary: #333;
    --color_red: red;
    --color_border: #ddd;
    --color_input: #f2f2f2;
    --color_btn: #388e3c;
    --color_btn_hover: #2bac31;
    --color_green: #d9ead3;
    --color_yellow: #fff2cc;
    --color_dark: #f3f3f3;
    --color_comments_priamry: #9faeb5;
    --color_comments_secondary: #eeee;
    --color_comments_text: #414141;
    --color_comments_hover: #5f95ad;
 }
 .cta * {
    margin: 0 !important;
    -webkit-margin-before: 0 !important;
    -webkit-margin-end: 0 !important;
    -webkit-margin-after: 0 !important;
    -webkit-margin-start: 0 !important;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
    padding: 0 !important;
    border-style: none !important;
    border-width: 0 !important;
    border-color: transparent !important;
    font-size: 100% !important;
    box-sizing: border-box !important;
 }
 .cenz * {
    margin: 0 !important;
    -webkit-margin-before: 0 !important;
    -webkit-margin-end: 0 !important;
    -webkit-margin-after: 0 !important;
    -webkit-margin-start: 0 !important;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
    padding: 0 !important;
    border-style: none !important;
    border-width: 0 !important;
    border-color: transparent !important;
    font-size: 100% !important;
    box-sizing: border-box !important;
 }
 .cta {
    max-width: 780px !important;
    margin: 25px auto !important;
 }
 .door {
    position: relative !important;
    display: flex !important;
    flex-flow: column !important;
    gap: 15px !important;
    height: 330px !important;
    min-width: 280px !important;
    max-width: 300px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    transition: opacity 0.4s linear, height 0.5s linear 0.6s;
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
 }
 .door.hidden {
    height: 0 !important;
    opacity: 0 !important;
 }
 .door.none {
    display: none !important;
 }
 .door__title {
    padding: 15px !important;
    border-radius: 0.5em !important;
    font: 700 22px/1.3 "PT Sans, sans-serif" !important;
    text-align: center !important;
    text-transform: uppercase !important;
    color: var(--color_base) !important;
    background-color: var(--color_primary) !important;
 }
 .door__container {
    position: relative !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
    -webkit-box-align: center !important;
    -webkit-box-pack: justify !important;
    -ms-flex-align: center !important;
    -ms-flex-pack: justify !important;
 }
 .door__item {
    cursor: pointer !important;
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    height: 200px !important;
    min-width: 85px !important;
    box-shadow: inset -1px -1px 0 1px #191919, inset 1px 1px 0 1px #191919 !important;
    perspective: 500px !important;
 }
 .door__item.open > .door__item-img {
    transform: rotateY(-85deg) !important;
 }
 .door__item-discount {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    display: inline-block !important;
    width: 70px !important;
    border-radius: 100% !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-align: center !important;
    line-height: 70px !important;
    color: var(--color_red) !important;
    transform: translateX(-50%) translateY(-50%) !important;
    vertical-align: baseline !important;
    box-shadow: 0 0 2px 2px #7f7878 !important;
 }
 .door__item-img {
    cursor: pointer !important;
    width: inherit !important;
    height: inherit !important;
    transform: rotateY(0deg) !important;
    transform-origin: 0% 0% !important;
    transition: -webkit-transform 0.75s ease !important;
    transition: transform 0.75s ease !important;
    transition: transform 0.75s ease, -webkit-transform 0.75s ease !important;
 }
 .door__item-img:hover {
    transform: rotateY(-30deg) !important;
 }
 @media all and (min-width: 475px) {
    .door {
       height: 390px !important;
       max-width: 380px !important;
    }
    .door__title {
       font-size: 24px !important;
    }
    .door__item {
       width: 120px !important;
       height: 250px !important;
    }
    .door__item-discount {
       width: 90px !important;
       font-size: 26px !important;
       line-height: 90px !important;
    }
 }
 @media all and (min-width: 576px) {
    .door {
       height: 450px !important;
       max-width: 460px !important;
    }
    .door__title {
       font-size: 26px !important;
    }
    .door__item {
       width: 100% !important;
       height: 300px !important;
    }
    .door__item-discount {
       width: 110px !important;
       font-size: 30px !important;
       line-height: 110px !important;
    }
 }
 @media all and (min-width: 768px) {
    .door {
       height: 540px !important;
       max-width: 560px !important;
    }
    .door__title {
       font-size: 28px !important;
    }
    .door__item {
       width: 100% !important;
       height: 370px !important;
    }
    .door__item-discount {
       width: 120px !important;
       font-size: 34px !important;
       line-height: 120px !important;
    }
 }
 @media all and (min-width: 992px) {
    .door {
       gap: 20px !important;
       max-width: 760px !important;
    }
    .door__item {
       width: 190px !important;
       height: 400px !important;
    }
    .door__item-discount {
       width: 140px !important;
       font-size: 42px !important;
       line-height: 140px !important;
    }
 }
 @media all and (min-width: 1200px) {
    .door {
       max-width: 780px !important;
    }
 }
 .order {
    position: relative !important;
    display: none !important;
    min-width: 270px !important;
    max-width: 450px !important;
    margin: 0 auto !important;
    padding: 15px !important;
    border: 2.5px dashed var(--color_border) !important;
    border-radius: 2.5px !important;
 }
 .order.active {
    display: block !important;
 }
 .order__header {
    display: flex !important;
    flex-flow: column !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-align: center !important;
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
 }
 .order__img {
    width: 100% !important;
    height: auto !important;
    max-width: 350px !important;
    margin: 0 auto !important;
 }
 .order__text {
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 15px !important;
 }
 .order__text:nth-child(2) {
    margin-bottom: 5px !important;
 }
 .order__time {
    font-weight: 700 !important;
    font-size: 24px !important;
    text-align: center !important;
    color: var(--color_red) !important;
 }
 .order__price {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 20px !important;
    -webkit-box-align: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-align: center !important;
    -ms-flex-pack: center !important;
 }
 .order__price-old {
    font-weight: 700 !important;
    text-decoration: line-through !important;
 }
 .order__price-new {
    font-weight: 700 !important;
    color: var(--color_red) !important;
 }
 .order__price-new > .order__price-summ {
    font-size: 24px !important;
 }
 .order__price-new > .order__price-curr {
    font-size: 24px !important;
 }
 .order__price-zero {
    text-transform: uppercase !important;
 }
 .order__body {
    display: flex !important;
    flex-flow: column !important;
    gap: 15px !important;
    width: 100% !important;
    margin-bottom: 15px !important;
    border: none !important;
    text-align: center !important;
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
 }
 .order__input {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 55px !important;
    padding: 15px !important;
    border-style: none !important;
    border-width: 0 !important;
    border-color: transparent !important;
    border-radius: 35px !important;
    outline: none !important;
    background-color: var(--color_input) !important;
 }
 .order__input::placeholder {
    font-size: 16px !important;
    font-weight: 400 !important;
 }
 .order__input--select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    -ms-appearance: none !important;
    -o-appearance: none !important;
    appearance: none !important;
    cursor: pointer !important;
    width: 100% !important;
 }
 .order__input--select::-ms-expand {
    display: none;
 }
 .order__select {
    position: relative !important;
    width: 100% !important;
 }
 .order__select::before,
 .order__select::after {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    right: 20px !important;
    z-index: 10 !important;
    display: block !important;
    width: 10px !important;
    height: 2px !important;
    background-color: #acaaaa !important;
    transform: translate(-3px, -50%) rotate(45deg) !important;
    transition: background-color 0.3s linear !important;
 }
 .order__select::after {
    transform: translate(3px, -50%) rotate(-45deg) !important;
 }
 .order__select:hover.order__select::before {
    background-color: var(--color_btn) !important;
 }
 .order__select:hover.order__select::after {
    background-color: var(--color_btn) !important;
 }
 .order__select.active::before {
    transform: translate(-3px, -50%) rotate(-45deg) !important;
 }
 .order__select.active::after {
    transform: translate(3px, -50%) rotate(45deg) !important;
 }
 .order__input:focus-visible {
    outline: none !important;
    outline-offset: 0 !important;
 }
 .order__btn {
    cursor: pointer !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 100% !important;
    min-height: 55px !important;
    padding: 20px !important;
    border-radius: 35px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--color_base) !important;
    background-color: var(--color_btn) !important;
    transition: background-color 0.2s linear !important;
    box-shadow: none !important;
    -webkit-box-align: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-align: center !important;
    -ms-flex-pack: center !important;
 }
 .order__btn:hover {
    background-color: var(--color_btn_hover) !important;
 }
 .order__footer {
    font-size: 14px !important;
    text-align: center !important;
    color: #888 !important;
 }
 .order__info {
    text-align: center !important;
    line-height: 1.3 !important;
 }
 @media all and (min-width: 475px) {
    .order__header {
       font-size: 22px !important;
    }
    .order__time {
       font-size: 26px !important;
    }
    .order__price {
       font-size: 28px !important;
    }
    .order__btn {
       font-size: 22px !important;
    }
 }
 @media all and (min-width: 576px) {
    .order__footer {
       font-size: 16px !important;
    }
 }
 .spin {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1000 !important;
    display: none !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.2) !important;
 }
 .spin.active {
    display: block !important;
 }
 .spin__content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    z-index: 10 !important;
    width: 300px !important;
    height: auto !important;
    min-width: 270px !important;
    padding: 80px 20px 20px 20px !important;
    border-radius: 10px !important;
    background-color: var(--color_base) !important;
    transform: translateX(-50%) translateY(-50%);
 }
 .spin__content::before {
    content: "";
    position: absolute;
    top: -55px;
    right: 0;
    left: 0;
    width: 110px;
    height: 110px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #71c341;
    animation: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-before;
 }
 .spin__content::after {
    content: "";
    position: absolute;
    top: -20px;
    right: 0;
    left: 0;
    width: 50px;
    height: 20px;
    margin: 0 auto;
    border-style: none none solid solid;
    border-width: medium medium 4px 4px;
    border-color: currentcolor currentcolor #fff #fff;
    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;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
 }
 .spin__title {
    margin-bottom: 15px !important;
    font-size: 30px !important;
    font-weight: 500 !important;
    text-align: center !important;
 }
 .spin__text {
    margin-bottom: 30px !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    text-align: center !important;
    line-height: 1.3 !important;
 }
 .spin__btn {
    cursor: pointer !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 180px !important;
    min-height: 45px !important;
    margin: 0 auto !important;
    padding: 10px !important;
    border-radius: 10px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: var(--color_base) !important;
    background-color: #71c341 !important;
    transition: background-color 0.2s linear !important;
    box-shadow: none !important;
    -webkit-box-align: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-align: center !important;
    -ms-flex-pack: center !important;
 }
 .spin__btn:hover {
    background-color: #53a723 !important;
 }
 @media all and (min-width: 475px) {
    .spin__content {
       width: 400px !important;
    }
 }
 @keyframes pop-up-appear-before {
    0% {
       transform: scale(0);
    }
    100% {
       transform: scale(1);
    }
 }
 @keyframes pop-up-appear-before {
    0% {
       transform: scale(0);
    }
    100% {
       transform: scale(1);
    }
 }
 @keyframes pop-up-appear-after {
    0% {
       opacity: 0;
    }
    100% {
       opacity: 1;
    }
 }
 @keyframes pop-up-appear-after {
    0% {
       opacity: 0;
    }
    100% {
       opacity: 1;
    }
 }
 /* .comments {
    position: relative !important;
    margin: 0 !important;
    margin-bottom: 30px !important;
    box-sizing: border-box !important;
 }
 .comments > * {
    box-sizing: border-box !important;
 }
 .comments__header {
    position: relative !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 5px !important;
    margin: 0 0 30px 0 !important;
    padding: 0 0 !important;
    box-sizing: border-box !important;
    -webkit-box-align: center !important;
    -webkit-box-pack: justify !important;
    -ms-flex-align: center !important;
    -ms-flex-pack: justify !important;
 }
 .comments__header::before {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background-color: var(--color_comments_secondary) !important;
 }
 .comments__left-box {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 10px 0 !important;
    border-bottom: 2px solid var(--color_comments_priamry) !important;
    -webkit-box-align: center !important;
    -webkit-box-pack: justify !important;
    -ms-flex-align: center !important;
    -ms-flex-pack: justify !important;
 }
 .comments__header-count {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--color_comments_text) !important;
    box-sizing: border-box !important;
 }
 .comments__header-title {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: capitalize !important;
    color: var(--color_comments_text) !important;
    box-sizing: border-box !important;
 }
 .comments__right-box {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 25px !important;
    padding: 10px 0 !important;
    -webkit-box-align: center !important;
    -webkit-box-pack: justify !important;
    -ms-flex-align: center !important;
    -ms-flex-pack: justify !important;
 }
 .comments__right-box > a {
    box-shadow: none !important;
 }
 .comments__header-icon path {
    transition: all 0.2s ease-in-out !important;
 }
 .comments__header-icon:hover path {
    fill: var(--color_comments_hover) !important;
 }
 .comments__item-list {
    display: flex !important;
    flex-flow: column !important;
    gap: 30px !important;
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
 }
 .comments__item {
    display: flex !important;
    flex-flow: column !important;
    gap: 10px !important;
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
 }
 .comments__item-header {
    display: flex !important;
    gap: 15px !important;
 }
 .comments__item-header.hidden {
    display: none !important;
 }
 .comments__item-avatar {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    margin: 0 !important;
    border-radius: 100% !important;
    object-fit: cover !important;
 }
 .comments__item-info {
    display: flex !important;
    flex-flow: column !important;
    gap: 7px !important;
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
 }
 .comments__item-name {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    text-align: left !important;
    text-transform: capitalize !important;
    line-height: 1 !important;
    color: var(--color_comments_text) !important;
 }
 .comments__item-data {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-align: left !important;
    text-transform: initial !important;
    line-height: 1 !important;
    color: var(--color_comments_priamry) !important;
 }
 .comments__item-data-now {
    color: #29bb0c !important;
 }
 .comments__item-data.hidden {
    display: none !important;
 }
 .comments__item-body {
    display: flex !important;
    flex-flow: column !important;
    gap: 15px !important;
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
 }
 .comments__item-content {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-align: left !important;
    text-transform: initial !important;
    color: var(--color_comments_text) !important;
 }
 .comments__item-content.hidden {
    display: none !important;
 }
 .comments__item-picture {
    display: block !important;
 }
 .comments__item-picture.active {
    display: block !important;
 }
 .comments__item-picture.hidden {
    display: none !important;
 }
 .comments__item-img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
 }
 .comments__item-video {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
 }
 .comments__item-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    -webkit-box-align: center !important;
    -webkit-box-pack: justify !important;
    -ms-flex-align: center !important;
    -ms-flex-pack: justify !important;
 }
 .comments__item-footer.hidden {
    display: none !important;
 }
 .comments__item-replay {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    text-transform: initial !important;
    color: var(--color_comments_priamry) !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: none !important;
 }
 .comments__item-replay:hover {
    color: var(--color_comments_hover) !important;
 }
 .comments__item-grade {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
 }
 .comments__item-icon {
    cursor: pointer !important;
    width: 20px !important;
    height: 20px !important;
 }
 .comments__item-icon path {
    transition: all 0.2s ease-in-out !important;
 }
 .comments__item-icon[data-type="like"]:hover path {
    fill: #20a114 !important;
 }
 .comments__item-icon[data-type="like"].active path {
    fill: #20a114 !important;
 }
 .comments__item-icon[data-type="dislike"]:hover path {
    fill: #b9211c !important;
 }
 .comments__item-icon[data-type="dislike"].active path {
    fill: #b9211c !important;
 }
 @media all and (min-width: 576px) {
    .comments__item-name {
       margin: 0 !important;
       padding: 0 !important;
       font-size: 22px !important;
       font-weight: 600 !important;
       color: var(--color_comments_text) !important;
    }
    .comments__item-data {
       margin: 0 !important;
       padding: 0 !important;
       font-size: 16px !important;
       font-weight: 500 !important;
       text-align: left !important;
       color: var(--color_comments_priamry) !important;
    }
    .comments__item-content {
       margin: 0 !important;
       padding: 0 !important;
       font-size: 18px !important;
       font-weight: 400 !important;
       color: var(--color_comments_text) !important;
    }
    .comments__item-img {
       display: block !important;
       width: 100% !important;
       height: auto !important;
       max-width: 350px !important;
       margin: 0 !important;
    }
    .comments__item-video {
       display: block !important;
       width: 100% !important;
       height: auto !important;
       max-width: 350px !important;
       margin: 0 !important;
    }
    .comments__item-footer {
       display: flex !important;
       justify-content: space-between !important;
       align-items: center !important;
       max-width: 350px !important;
       -webkit-box-align: center !important;
       -webkit-box-pack: justify !important;
       -ms-flex-align: center !important;
       -ms-flex-pack: justify !important;
    }
 }
 @media all and (min-width: 768px) {
    .comments__header {
       position: relative !important;
       display: flex !important;
       justify-content: space-between !important;
       align-items: center !important;
       gap: 5px !important;
       margin: 0 0 50px 0 !important;
       padding: 0 0 !important;
       box-sizing: border-box !important;
       -webkit-box-align: center !important;
       -webkit-box-pack: justify !important;
       -ms-flex-align: center !important;
       -ms-flex-pack: justify !important;
    }
    .comments__item-name {
       margin: 0 !important;
       padding: 0 !important;
       font-size: 22px !important;
       font-weight: 600 !important;
       color: var(--color_comments_text) !important;
    }
    .comments__item-data {
       margin: 0 !important;
       padding: 0 !important;
       font-size: 16px !important;
       font-weight: 500 !important;
       text-align: left !important;
       color: var(--color_comments_priamry) !important;
    }
    .comments__item-content {
       margin: 0 !important;
       padding: 0 !important;
       font-size: 18px !important;
       font-weight: 400 !important;
       color: var(--color_comments_text) !important;
    }
    .comments__item-img {
       display: block !important;
       width: 100% !important;
       height: auto !important;
       max-width: 350px !important;
       margin: 0 !important;
    }
    .comments__item-footer {
       display: flex !important;
       justify-content: space-between !important;
       align-items: center !important;
       max-width: 350px !important;
       -webkit-box-align: center !important;
       -webkit-box-pack: justify !important;
       -ms-flex-align: center !important;
       -ms-flex-pack: justify !important;
    }
 }
 @media all and (min-width: 992px) {
    .comments__header-count {
       margin: 0 !important;
       padding: 0 !important;
       font-size: 22px !important;
       font-weight: 700 !important;
       text-align: left !important;
       color: var(--color_comments_text) !important;
       box-sizing: border-box !important;
    }
    .comments__header-title {
       margin: 0 !important;
       padding: 0 !important;
       font-size: 22px !important;
       font-weight: 700 !important;
       color: var(--color_comments_text) !important;
       box-sizing: border-box !important;
    }
    .comments__item-name {
       margin: 0 !important;
       padding: 0 !important;
       font-size: 24px !important;
       font-weight: 600 !important;
       color: var(--color_comments_text) !important;
    }
    .comments__item-data {
       margin: 0 !important;
       padding: 0 !important;
       font-size: 18px !important;
       font-weight: 500 !important;
       color: var(--color_comments_priamry) !important;
    }
    .comments__item-content {
       margin: 0 !important;
       padding: 0 !important;
       font-size: 20px !important;
       font-weight: 400 !important;
       color: var(--color_comments_text) !important;
    }
    .comments__item-img {
       display: block !important;
       width: 100% !important;
       height: auto !important;
       max-width: 350px !important;
       margin: 0 !important;
    }
    .comments__item-footer {
       display: flex !important;
       justify-content: space-between !important;
       align-items: center !important;
       max-width: 350px !important;
       -webkit-box-align: center !important;
       -webkit-box-pack: justify !important;
       -ms-flex-align: center !important;
       -ms-flex-pack: justify !important;
    }
 } */
 .my-btn {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: fit-content !important;
    margin: 0 auto !important;
    padding: 15px 30px !important;
    border-radius: 10px !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    color: var(--color_base) !important;
    background-color: #fa3d3d !important;
    transition: all 0.2s ease-in 0s !important;
    -webkit-box-align: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-align: center !important;
    -ms-flex-pack: center !important;
 }
 .my-btn:hover {
    color: var(--color_base) !important;
    background-color: #f52b2b !important;
    transform: scale(1.1) !important;
 }
 .cenz {
    display: flex !important;
    flex-flow: column !important;
    align-items: center !important;
    gap: 30px !important;
    width: 100% !important;
    margin: 20px 0 !important;
    -webkit-box-align: center !important;
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-align: center !important;
 }
 .cenz__item {
    cursor: pointer !important;
    position: relative !important;
    display: flex !important;
    flex-flow: column !important;
    align-items: center !important;
 }
 .cenz__item.active > .cenz__content {
    display: none !important;
 }
 .cenz__item.active > .cenz__img {
    display: block !important;
 }
 .cenz__content {
    display: flex !important;
    flex-flow: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    width: 300px !important;
    height: 300px !important;
    margin-bottom: 15px !important;
    padding: 15px !important;
    border: 5px solid var(--color_red) !important;
    text-align: center !important;
    -webkit-box-align: center !important;
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-pack: center !important;
    -ms-flex-align: center !important;
    -ms-flex-pack: center !important;
 }
 .cenz__age {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 180px !important;
    height: 180px !important;
    border: 10px solid var(--color_red) !important;
    border-radius: 100% !important;
    font-size: 60px !important;
    font-weight: 700 !important;
    -webkit-box-align: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-align: center !important;
    -ms-flex-pack: center !important;
 }
 .cenz__cta {
    cursor: pointer !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px 25px !important;
    border-radius: 10px !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    color: var(--color_base) !important;
    background-color: var(--color_red) !important;
    -webkit-box-align: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-align: center !important;
    -ms-flex-pack: center !important;
 }
 .cenz__img {
    display: none !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 250px !important;
    max-width: 500px !important;
    margin-bottom: 15px !important;
 }
 .cenz__palceholder {
    max-width: 550px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-align: center !important;
 }
 .cenz__palceholder.hidden {
    display: none !important;
 }
 @media (min-width: 992px) {
    .cenz {
       flex-flow: row !important;
       align-items: flex-start !important;
    }
 }
 .quiz_wrap * {
    font-family: "Montserrat";
 }
 
 .quiz_wrap {
    position: relative;
    margin: 20px auto;
    max-width: 344px;
    width: 100%;
    height: 520px;
    border-radius: 10px;
    background: linear-gradient(180deg, #adfbb9 0%, #e4fbad 100%), #e4fbad;
    overflow: hidden;
 }
 .quiz_header {
    background: linear-gradient(180deg, #8840c0 0%, #5a1784 71.67%);
    position: relative;
 }
 .quiz_header:after {
    content: " ";
    display: block;
    position: absolute;
    bottom: -27px;
    background: 0 0 / 100% 100% url(../images/quiz_header-bg.png) no-repeat;
    height: 27px;
    width: 100%;
 }
 .quiz_title {
    padding-top: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 135%;
    text-align: center;
    color: #fff;
 }
 .quiz_title span {
    color: #f64777;
    display: block;
    margin-top: 5px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.7);
    font-weight: 800;
    font-size: 22px;
    line-height: 135%;
 }
 .order_title {
    display: none;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 135%;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.7);
    padding-top: 17px;
 }
 .order_title span {
    color: #e4fbad;
    font-size: 20px;
    display: block;
    margin-top: 4px;
 }
 .quiz_question {
    display: flex;
    align-items: center;
    height: 48px;
    margin: 48px 38px 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    color: #000;
 }
 .quiz_question div {
    display: flex;
 }
 .quiz_question div span {
    display: block;
    padding-right: 8px;
 }
 .quiz_options {
    margin: 0 34px;
 }
 .quiz_option {
    position: relative;
    padding-left: 40px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 21px;
    line-height: 135%;
    cursor: pointer;
    color: #7931b1;
 }
 .quiz_option:before {
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    content: " ";
    display: block;
    background: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #959595;
    position: absolute;
    left: 0;
    top: -2px;
 }
 .quiz_option:after {
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    content: " ";
    display: block;
    background: #7931b1;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    position: absolute;
    left: 6px;
    top: 4px;
    opacity: 0;
 }
 .quiz_option.active:before {
    animation: radial-pulse 0.5s;
 }
 @keyframes radial-pulse {
    0% {
       box-shadow: 0 0 1px 2px #7931b1;
    }
    100% {
       box-shadow: 0 0 4px 5px rgba(0, 0, 0, 0);
    }
 }
 .quiz_option:hover:before,
 .quiz_option.active:before {
    border: 1px solid #7931b1;
 }
 .quiz_option:hover:after,
 .quiz_option.active:after {
    opacity: 1;
 }
 .quiz_nums {
    padding: 0 32px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 65px;
 }
 .quiz_num {
    -webkit-transition: 1s all;
    transition: 1s all;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    background: #e5d2f2;
    border: 1px solid #fff;
    color: #9747ff;
 }
 .quiz_num span {
    -webkit-transition: 1s all;
    transition: 1s all;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 34px;
    background: #fff;
    border-radius: 50%;
 }
 .quiz_num.active {
    background: #e5d2f2;
    border: 1px solid #a260d4;
 }
 .quiz_num.active span {
    background: linear-gradient(180deg, #962dd8 0%, #ad74da 100%), #f64777;
    color: #fff;
 }
 .quiz_nums:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: calc(100% - 64px);
    height: 1px;
    background: #a260d4;
 }
 .quiz_footer {
    width: 100%;
    position: absolute;
    bottom: 20px;
    color: #000;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
 }
 .quiz_footer span {
    font-weight: bold;
    color: #5a1784;
 }
 .quiz_step,
 #prod_img {
    transition: 0.5s all;
    display: none;
    opacity: 0;
    margin-top: -7px;
 }
 .quiz_step.active,
 #prod_img.active {
    opacity: 1;
    margin-top: 0;
 }
 .quiz_timer {
    margin-top: 39px;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #000;
 }
 .quiz_timer div {
    margin-top: 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    text-align: center;
    color: #f64777;
    text-align: center;
 }
 .quiz_timer span {
    display: inline-block;
    width: 32px;
 }
 .quiz_prices {
    margin-top: 16px;
    margin-bottom: 12px;
    text-align: center;
 }
 .quiz_prices .quiz_oldprice {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-decoration-line: line-through;
    color: #000;
 }
 .quiz_prices .quiz_newprice {
    margin-top: 4px;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #5a1784;
 }
 .quiz_form form {
    width: 280px;
    margin: 0 auto;
 }
 .quiz_form form input {
    line-height: 48px;
    padding-left: 24px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    display: block;
    background: #fff;
    border: 1px solid #5a1784;
    border-radius: 24px;
    width: 100%;
    margin-bottom: 16px;
    position: relative;
 }
 .quiz_form form input.active:invalid {
    border: 1px solid red;
 }
 .quiz_form form input.active:valid,
 .quiz_form form input.active:-webkit-autofill:valid,
 .quiz_form form input.active:-webkit-autofill:hover:valid,
 .quiz_form form input.active:-webkit-autofill:focus:valid,
 .quiz_form form input.active:-webkit-autofill:active:valid {
    border: 1px solid #68c853;
    background-color: #fff !important;
    background-image: url(../images/xchecked.png.pagespeed.ic.IPmsrzfpwe.webp) !important;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    background-position: top 50% right 16px;
 }
 .quiz_form form button {
    text-transform: uppercase;
    margin-top: 24px;
    border-radius: 24px;
    height: 48px;
    display: block;
    text-align: center;
    width: 100%;
    background: #f64777;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 48px;
    letter-spacing: 0.03em;
    border: none;
    color: #fff;
    cursor: pointer;
 }
 @media (max-width: 360px) {
    .quiz_question {
       margin: 48px 18px 20px;
    }
    .quiz_options {
       margin: 0 14px;
    }
 }
 html,
 body {
    overflow-x: hidden;
 }
 .content p {
    font-size: 20px;
    margin-bottom: 15px;
 }
 .content li {
    font-size: 20px;
 }
 .wrapper {
    max-width: 860px;
 }
 .alstep54_sglCGFT6q {
    margin-bottom: 10px;
 }
 input {
    outline: none;
 }
 @media screen and (max-width: 600px) {
    .title {
       font-size: 24px;
       line-height: 30px;
    }
 }
 .order {
    position: initial !important;
 }
 #prod_img {
    margin: 20px auto;
 }
 #scroll_point {
    position: absolute;
    bottom: -100px;
    opacity: 0;
 }
 @media (max-width: 600px) {
    #scroll_point {
       bottom: -2px;
    }
 }
 .content .image {
    border: 0;
 }
 .order__input {
    border: 1px #bbb solid !important;
 }
 @media screen and (max-width: 480px) {
    .my-btn {
       padding-left: 5px !important;
       padding-right: 5px !important;
       font-size: 16px !important;
       width: 100% !important;
    }
    .order__btn {
       padding-left: 5px !important;
       padding-right: 5px !important;
       font-size: 16px !important;
       width: 100% !important;
    }
    .main-menu-blk {
       display: none;
    }
    .content {
       padding-top: 10px;
    }
 }
 html,
 body {
    scroll-behavior: smooth;
 }
 .text-alert {
    color: red;
    font-weight: bold;
 }
 .social__wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
 }
 .social__wrap p {
    margin: 0 20px 0 0 !important;
 }
 .social__img {
    max-width: 50px;
    aspect-ratio: 1;
    object-fit: contain;
 }
 .social__link {
    padding: 5px;
    margin: 0 10px;
    transition: all 0.3s;
 }
 .social__link:hover {
    transform: scale(1.1);
 }
 .text-inform {
    background-color: #1697ce !important;
    color: white !important;
    display: inline;
    line-height: 105% !important;
    font-weight: bold;
 }
 .link-prod {
    color: blue !important;
    font-weight: 700 !important;
    text-decoration: none;
 }