* {
    font-family: 'Satoshi', sans-serif;
    margin: 0;
    color: black;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

.container {
    width: 100%;
    max-width: 980px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: auto;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 57px;
    padding: 0 20px;

    background: black;
}

.header a {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    text-decoration: none;
}

.info {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 53px;
    padding: 0 20px;

    text-align: center;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
}

.countdown {
    background: #F3F3F3;
    padding: 0 20px;
}

.countdown .container {
    max-height: 200px;
    overflow: hidden;
}

.countdown h2 {
    font-size: 32px;
    line-height: 140%;
}

.countdown h2:nth-of-type(1) {
    color: #AE63FF;
    font-weight: 900;
}

.countdown h2:nth-of-type(2) {
    color: #000;
    font-weight: 700;
}


.clock {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 19px;
    min-width: 200px;
    max-width: 289px;
    height: 83px;

    margin-left: 10px;
    padding: 0 12px;
    border-radius: 30px;
}

.flipper {
    position: relative;
    width: 100%;
    min-width: 83px;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1600px;
    background: #3A3A3A;
    border-radius: 100px;
}

.gear {
    position: absolute;
    top: 35px;
    width: 5px;
    height: 12px;
    background: linear-gradient(270deg, #4B4B4B 0%, #F3F3F3 100%);
    z-index: 99;
    transform-style: preserve-3d;
    transform: translateZ(10px);
    perspective: 0;
    left: 0.5px; 
    padding: 0.5px; 
}

.gear div {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #D9D9D9 4.67%, #F5F5F5 22.08%, #FFFFFF 27.46%, #ECECEC 31.01%, #C9C9C9 38.52%, #B0B0B0 45.6%, #A1A1A1 52.05%, #9C9C9C 57.26%, #FFFFFF 80.05%, #ECECEC 81.94%, #C9C9C9 85.91%, #B0B0B0 89.67%, #A1A1A1 93.07%, #9C9C9C 95.83%);
}

.gear:nth-child(2) {
    background: linear-gradient(270deg, #F3F3F3 0%, #4B4B4B 100%);
}

.gear:nth-child(2) {
    right: 0.5px;
    left: unset;
}  

.top:not(.new),
.bottom:not(.new) {
    box-shadow: 2px 2px 3px 0px rgba(76, 76, 76, 0.5);
}

.top.new,
.bottom.new {
	box-shadow: 0px 2px 1px 0px rgba(76, 76, 76, 0.3);
}

.top {
    position: relative;
    width: 100%;
    height: 41px;
    background-image: linear-gradient(180deg, #FCFCFC 0.83%, #ECECEC 2.3%, #E6E6E6 36.98%, #DDD 59.37%, #D9D9D9 81.25%, #CFCFCF 100%);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    margin-bottom: 1px;
}

.bottom {
    position: relative;
    width: 100%;
    height: 41px;
    background-image: linear-gradient(180deg, #E2E2E2 0.83%, #E3E3E3 18.23%, #E7E7E7 45.31%, #E9E9E9 64.58%, #ECECEC 81.25%, #EDEDED 97.42%, #B3B3B3 97.95%);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-top: 1px;
}

.clock .text {
    font-size: 40px;
    font-weight: 900;
    display: block;
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    line-height: 83px;
    text-align: center;
    color: #3A3A3A;
}

.bottom .text {
    line-height: 0 !important;
}

.top.new,
.bottom.new {
    position: absolute;
    left: 0;
    z-index: 12;
}

.top.new {
    top: 0;
    z-index: 1; 
    box-shadow: none;
}

.top.new .text { 
    backface-visibility: hidden; 
}

.bottom.new {
    position: absolute;
    top: 0;
    height: calc(100% - 0px);
    transform: rotateX(0.5turn);
    z-index: 1;
    opacity: 0;
}

.flipper.flipping .top.new {
    transform-origin: bottom center;
    animation: rotate 0.55s 1 ease-in-out forwards;
}

.flipper.flipping .bottom.new {
    animation: rotatebottom 0.55s 1 ease-in-out forwards;
}

@keyframes rotatebottom {
    0% {
        opacity: 0;
    }

    49% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes rotate {
    0% {
        transform: rotateX(0) translateY(0px);
    }

    100% {
        transform: rotateX(-180deg) translateY(-2px);
    }
}

.countdown .doctor {
    margin-right: -27px;
}

.product {
    margin-top: 40px;

    padding: 0 5px;
}

.product .container {
    gap: 48px;
    align-items: flex-start;
}

.product .sliders {
    padding-left: 10px;
}

.product h1 {
    margin-bottom: 15px;

    color: #000;
    font-size: 36px;
    font-weight: 700;
    line-height: 140%;
}

.product .description {
    line-height: 180%;
    margin-bottom: 32px;
}

.customer-reviews {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 25px;
}

.customer-reviews .stars {
    display: flex;
    gap: 6px;
}

.customer-reviews p {
    color: #7A7A7A;
}

.sliders {
    max-width: 390px;
    position: relative;
}

.slider-big {
    background: #F3F3F3;
    border-radius: 20px;
    margin-bottom: 25px;
}

.slider-big img {
	border-radius: 20px;
}

.slider-arrow {
    position: absolute;
    top: 0;
    height: calc(100% - 145px);

    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-big-prev-btn {
    left: -14px;
}

.slider-big-next-btn {
    right: -23px;
}

.slider-big-prev-btn img {
    margin-right: 3px;
}

.slider-big-next-btn img {
    margin-left: 3px;
}

.slider-arrow .helper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;

    border-radius: 100%;
    background: black;
}

.slider-arrow .helper:hover {
    cursor: pointer;
}

.slider-small img {
    background: #F3F3F3;
    border-radius: 20px;
    max-width: 105px;
    margin: 0 16px;
    height: auto;
}

.slider-small img:hover {
	cursor: pointer;
}

.options {
    border-radius: 10px;
    background: #F3F3F3;
}

.option {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 18px;
    border-bottom: 1px solid #D9D9D9;
}

.option:hover {
    cursor: pointer;
}

.option .helper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.option .checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.option .checkbox img {
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

.option .checkbox img:nth-of-type(2) {
    display: none;
}

.option.checked .checkbox img:nth-of-type(1) {
    display: none;
}

.option.checked .checkbox img:nth-of-type(2) {
    display: flex;
}

.option:nth-of-type(3) {
    border-bottom: none;
}

.option .supply p:nth-of-type(1) {
    font-weight: 700;
}

.option .supply p:nth-of-type(2) {
    font-size: 12px;
}

.option .save {
    margin-left: 25px;
}

.option .save p {
    margin: 2px 0;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.option .price p:nth-of-type(1) {
    font-size: 12px;
    text-decoration-line: line-through;

    color: #7A7A7A;
}

.option .price p:nth-of-type(2) {
    font-weight: 700;

}

.option .badge {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 110px;
    height: 24.5px;

    border-radius: 100px;
    background: #AE63FF;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
}

.product .offer { 
    margin-top: 17px;
    margin-bottom: 30px;

    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 180%;
	font-weight: bold;
}

.product .add-to-cart,
.product .claim-discount {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;

    padding: 13px 52px;
    border-radius: 10px;

    color: white;
    background: #AE63FF;
    font-size: 24px;
    font-weight: 900;
    line-height: 140%;
    letter-spacing: 3.36px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.2s all;
}

.product .add-to-cart:hover,
.product .claim-discount:hover {
    background: #762CC6;
}

.product .content.mobile {
    width: 100%;
}

.product .content.mobile h2 {
    display: block;
    text-align: center;
    margin-bottom: 19px;

    font-size: 24px;
}

.product .options-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;  
    align-items: center;
    margin-bottom: 0;

    padding: 18px 14px 12px 14px;
    border: 1px solid #C5C5C5;
}

.product .option-mobile {
    width: 100%;

	border: 2px solid transparent;

    border-radius: 23px;
    background: #F3F3F3;
    cursor: pointer;
}

.product .option-mobile .pack {
    padding: 5px 0;
    border-radius: 20px 20px 0 0;

    background: #AE63FF;
    text-align: center;
}

.product .option-mobile .pack p {
    color: #FFF;
    font-weight: 500;
}

.product .option-mobile .supply-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding: 7px 0 13px 0;

    background-image: url(../img/checkbox.svg);
    background-repeat: no-repeat;
    background-position: 5% 10px;
    background-size: 21px;
}

.product .option-mobile.checked .supply-mobile {
    background-image: url(../img/checkbox-checked.svg);
}

.product .option-mobile .supply-mobile h5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
}

.product .option-mobile .supply-mobile p {
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
}

.product .option-mobile.checked {
    border-color: #ae63ff;
}

.price-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
}

.price-mobile .old {
    color: #7A7A7A;
    font-size: 16px;
    font-weight: 400;
    text-decoration: line-through;
    line-height: 140%;
}

.price-mobile .current, .price-mobile .current span {
    color: #AE63FF;
    font-size: 36px;
    font-weight: 700;
    line-height: 140%;
}

.product .claim-discount {
    font-size: 16px;
    font-weight: 700;
    margin: 0 20px;
    letter-spacing: 0;
    padding: 20px;
}

.help-outer {
    margin-top: 65px;
    background-color: #F3F3F3;
}

.help {
    display: flex;
    overflow: hidden;
    max-width: 1440px;
    margin: auto;

    background-image: url('../img/help-bg.svg');
    background-position: 5%;
    background-repeat: no-repeat;
}

.help .container {
    max-height: 420px;
    align-items: flex-start;
}

.help .text {
    max-width: 100%;
    padding: 40px 50px 47px 58px;

}

.help .text h2 {
    margin-bottom: 32px;
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 140%;
}

.help .text p {
    line-height: 180%;
}

.help .text p span {
    display: inline-block;
    background: #AE63FF;
    font-weight: 700;

    border-radius: 100px;
    padding: 0 5px;
    color: white;
}

.help .helper {
    max-width: 305px;
}

.guarantee {
    background: #0D0D0D;
}

.guarantee .container {
    gap: 57px;
}

.guarantee .helper {
    display: flex;
    justify-content: flex-end;

    max-width: 307px;
}

.guarantee .text {
    max-width: 580px;
    padding: 59px 50px 60px 0;
}

.guarantee h2 {
    margin-bottom: 32px;
    color: white;
    font-size: 28px;
    font-weight: 700;
    line-height: 140%;
}

.guarantee p {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 180%;
}

.features {

    padding: 83px 20px 0 20px;

    background-image: url('../img/stronger-bg.svg');
    background-repeat: no-repeat;
    background-position: center 72px;
}

.features .container {
    flex-direction: column;
}

.features h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 140%;
}

.features sup {
    top: -10px;
    font-size: 16px;
    margin-left: -2px;
}

.features .grid {
    display: flex;
    margin-top: 15px;
}

.features .helper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 34px; 
}

.features .feature {
    flex: 1;
    min-height: 295px;
}

.features .feature img {
    display: block;
    margin-bottom: 16px;
}

.features .feature h4 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 10px;
}

.features .feature p {
    line-height: 160%;
}

.doc {
    display: flex;
    justify-content: center;

    margin-top: 43px;
    padding: 0 68px;
}

.doc .inner {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1305px;
    width: 100%;

    border-radius: 20px;
    background: #000;
}

.doc img {
    margin-left: 69px;
    margin-top: -40px;
}

.doc .text {
    max-width: 620px;
    padding-right: 20px;
}

.doc h2 {
    display: block;
    margin-bottom: 32px;
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    line-height: 140%;
}

.doc p {
    line-height: 180%;
    color: white;
    font-weight: 500;
}

.faq {
    margin: 64px 0 50px 0;
    padding: 0 9px;
}

.faq h2 {
    display: block;
    margin-bottom: 45px;
    text-align: center;

    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 140%;
}

.faqs {
    width: 100%;
    max-width: 780px;

    display: flex;
    flex-direction: column;
    gap: 29px;

    margin: auto;
}

.faqs .question:hover {
    cursor: pointer;
    background: #ededed;
}

.faqs .question {
    transition: 0.2s all;

    position: relative;
    z-index: 10;

    padding: 20px 24px;

    border-radius: 20px;
    border: 1px solid #C5C5C5;
    background: #F3F3F3;
}

.faqs .question .helper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faqs .question .helper p {
    font-size: 16px;
    font-weight: 700;
    line-height: 160%;
}

.faqs .question img:nth-of-type(2) {
    display: none;
}

.faqs .question.active img:nth-of-type(2) {
    display: block;
}

.faqs .question.active .helper img:nth-of-type(1) {
    display: none;
}

.faqs .answer {
    transition: 0.2s all;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.faqs .answer img {
    max-width: 100%;
}

.faqs .answer.collapse {
    margin-top: 20px;
    height: auto;
    opacity: 1;
    visibility: visible;
}

.faq .see-options {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px auto 0 auto;
    z-index: 99;
    position: relative;

    padding: 19px 52px;

    border-radius: 10px;
    background: #AE63FF;

    border: none;

    color: white;
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
}

.faq .see-options:hover {
    background: #AE63FF;
    cursor: pointer;
}

.scroll-up {
    z-index: 9999;
    position: fixed;
    bottom: 45px;
    right: 45px;

    height: 60px;
    width: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 10px;
    background: #AE63FF;

    transition: 0.2s all;
}

.scroll-up:hover {
    cursor: pointer;
    background: #762CC6;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

.disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;
    padding: 0 9px;
}

.disclaimer div {
    max-width: 780px;
    padding: 20px;
    border: 2px solid black;
}


.reviews {
    padding: 65px 20px 0 20px; 
}

.reviews h3 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 140%;
    text-align: center;
}

.reviews .container {
    display: block;
}

@media screen and (max-width: 1199px) {
    .reviews {
        padding:50px 20px 0 20px;
    }
}

.reviews .container-fluid,.reviews .container-lg,.reviews .container-md,.reviews .container-sm,.reviews .container-xl {
    max-width: 1400px
}

.reviews h2 {
    font-size: 34px;
    margin-bottom: 115px;
    text-align: center;
    text-transform: uppercase
}

@media screen and (max-width: 1199px) {
    .reviews h2 {
        margin-bottom:30px
    }
}

.reviews .reviews-top {
    display: flex;
    align-items: stretch;
    position: relative;
    padding: 40px 0 10px
}

@media screen and (max-width: 767px) {
    .reviews .reviews-top {
        flex-direction:column;
        padding: 30px 0
    }
}

.reviews .reviews-top .reviews-top-l {
    display: flex;
    align-items: stretch
}

@media screen and (max-width: 991px) {
    .reviews .reviews-top .reviews-top-l {
        margin:0 0 20px
    }
}

@media screen and (max-width: 767px) {
    .reviews .reviews-top .reviews-top-l {
        flex-direction:column
    }
}

.reviews .reviews-top .reviews-summary {
    width: 170px;
    flex: 0 0 170px;
    border-right: 1px solid #e9ecf1;
    padding: 5px 30px 0 0;
    margin-right: 30px
}

@media screen and (max-width: 767px) {
    .reviews .reviews-top .reviews-summary {
        width:100%;
        flex: auto;
        border-right: none;
        padding: 0 0;
        margin: 0 0
    }

    .reviews-top-l .rating .icon:first-of-type {
        margin-left: 0;
    }
}

.reviews .reviews-top .reviews-summary .rating-block {
    display: block;
    margin-bottom: 15px
}

@media screen and (max-width: 767px) {
    .reviews .reviews-top .reviews-summary .rating-block {
        display:flex
    }
}

.reviews .reviews-top .reviews-summary .rating-block .rating-val {
    font-size: 18px;
    color: #4a4a4a;
    font-weight: 700;
    margin-bottom: 10px
}

@media screen and (max-width: 767px) {
    .reviews .reviews-top .reviews-summary .rating-block .rating-val {
        margin:0 20px 0 0
    }
}

.reviews .reviews-top .reviews-summary .reviews-questions {
    font-size: 18px;
    color: #4a4a4a
}

.reviews .reviews-top .reviews-rates {
    padding: 5px 0 0 0px;
}

.reviews .reviews-top .reviews-rates .reviews-rate {
    margin-top: 10px;
    display: flex;
    align-items: center
}

.reviews .reviews-top .reviews-rates .reviews-rate:first-child {
    margin-top: 0
}

.reviews .reviews-top .reviews-rates .reviews-rate .rating {
    margin: 0 12px 1px 0
}

.reviews .reviews-top .reviews-rates .reviews-rate .num {
    color: #4a4a4a;
    min-width: 35px;
    padding-right: 5px
}

.reviews .reviews-top .reviews-rates .reviews-rate .bar {
    position: relative;
    width: 124px;
    height: 17px;
    background: #e9ecf1;
    margin-top: 1px
}

.reviews .reviews-top .reviews-rates .reviews-rate .bar .curr {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #000;
    z-index: 1
}

.reviews .reviews-top .reviews-actions {
    margin-left: auto;
    display: block;
    padding-top: 14px
}

@media (max-width: 991px) {

}

@media screen and (max-width: 767px) {
    .reviews .reviews-top .reviews-actions {
        margin:0;
        width: 100%;
    }
}

@media screen and (max-width: 575px) {
    .reviews .reviews-top .reviews-actions {
        display:block;
        max-width: 100%
    }
}

.reviews .reviews-top .reviews-actions .btn {
    margin-bottom: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 19px 63px;
    font-weight: 900;
    font-size: 18px;
    line-height: 170%;
    text-align: center;
    background-color: #2e2f30;
    border-color: #2e2f30;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.reviews .reviews-top .reviews-actions .btn:active, .reviews .reviews-top .reviews-actions .btn:focus, .reviews .reviews-top .reviews-actions .btn:hover {
    background-color: #3f3b3b;
    border-color: #3f3b3b;
}

.reviews .reviews-top .reviews-actions .btn strong {
    color: #fff;
    font-weight: 700 !important;
}

.reviews .reviews-top .reviews-actions .btn .icon {
    margin-right: 15px;
    height: 16px;
    position: relative;
    fill: #fff;
}

@media screen and (max-width: 991px) {
    .reviews .reviews-top .reviews-actions .btn {
        margin:0 20px 10px 0
    }
}

.reviews .reviews-list-wrapper .reviews-list-h {
    font-weight: 500;
    border-bottom: 5px solid #545659;
    margin-bottom: 39px;
    display: inline-block;
    padding-bottom: 3px
}

.reviews .reviews-top .reviews-actions {
    margin-left: auto;
    display: block;
    padding-top: 14px;
}

@media screen and (max-width: 991px) {
    .reviews .reviews-list-wrapper .reviews-list-h {
        margin-bottom:20px
    }
}

@media screen and (max-width: 767px) {
    .reviews .reviews-list-wrapper .pagination {
        flex-wrap:wrap
    }
}

.reviews .reviews-list {
    margin-bottom: 20px
}

.reviews .reviews-list .review {
    position: relative;
    padding-top: 15px;
    width: 100%;
    transition: .3s;
    margin-bottom: 10px
}

.reviews .reviews-list .review-inner {
    width: 100%;
    background: #F3F3F3;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex
}

@media screen and (max-width: 575px) {
    .reviews .reviews-list .review-inner {
        padding:20px;
    }
}

.reviews .reviews-list .review-inner .userpic {
    width: 86px;
    flex: 0 0 86px;
    height: 86px;
    position: relative
}

@media screen and (max-width: 575px) {
    .reviews .reviews-list .review-inner .userpic {
        width:40px;
        flex: 0 0 40px;
        height: 40px
    }
}

.reviews .reviews-list .review-inner .userpic .round {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    text-align: center;
    line-height: 86px;
    flex: 40px;
    font-weight: 700;
    font-size: 36px
}

@media screen and (max-width: 575px) {
    .reviews .reviews-list .review-inner .userpic .round {
        width:40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }
}

.reviews .reviews-list .review-inner .userpic .verified-icon {
    position: absolute;
    right: 4px;
    bottom: 1px;
    border: 2px solid #fff;
    background: #2bc187;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 30px;
    height: 30px
}

@media screen and (max-width: 575px) {
    .reviews .reviews-list .review-inner .userpic .verified-icon {
        width:16px;
        height: 16px;
        border-width: 1px;
        right: 0;
        bottom: 0
    }
}

.reviews .reviews-list .review-inner .userpic .verified-icon .icon {
    fill: #fff;
    width: 16px;
    height: 16px
}

@media screen and (max-width: 575px) {
    .reviews .reviews-list .review-inner .userpic .verified-icon .icon {
        width:10px;
        height: 10px
    }
}

.reviews .reviews-list .review-inner .userpic .verified-icon.hidden {
    display: none
}

.reviews .reviews-list .review-inner .review-r {
    flex: 1;
    margin-left: 17px
}

@media screen and (max-width: 575px) {
    .reviews .reviews-list .review-inner .review-r {
        margin-left:10px
    }
}

.reviews .reviews-list .review-inner .review-r .author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.reviews .reviews-list .review-inner .review-r .author .name {
    font-weight: 500;
    margin-right: 13px;
    font-size: 17px
}

.reviews .reviews-list .review-inner .review-r .author .verified-label {
    color: #8c96a2
}

.reviews .reviews-list .review-inner .review-r .author .verified-label.hidden {
    display: none
}

.reviews .reviews-list .review-inner .review-r .rating {
    margin-bottom: 8px;
    margin-top: 8px
}

.reviews .reviews-list .review-inner .review-r .review-t {
    margin-bottom: 7px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

@media screen and (max-width: 479px) {
    .reviews .reviews-list .review-inner .review-r .review-t {
        flex-direction:column;
        align-items: flex-start
    }
}

.reviews .reviews-list .review-inner .review-r .review-t .review-title {
    font-weight: 700;
    color: #000;
    font-size: 22px;
    line-height: 1.2;
    margin-right: 30px
}

.reviews .reviews-list .review-inner .review-r .review-t .review-date {
    color: #4a4a4a
}

.reviews .reviews-list .review-inner .review-r .review-txt {
    margin-bottom: 25px;
    line-height: 1.3
}

.reviews .review-report {
    clear: both;
    display: flex;
    gap: 5px;
    padding-top: 7px;
    margin-bottom: -5px;
    margin-left: -5px
}

.reviews .review-report .helpful {
    padding: 4px 7px;
    font-size: 13px;
    line-height: 16px
}

.reviews .review-report .review-action {
    background: #2e2f30;
    color: #fff;
    display: flex;
    font-weight: 600;
    gap: 4px;
    padding: 4px 7px;
    font-size: 13px;
    line-height: 16px;
    transition: 0.2s all;
}

.reviews .review-report .review-action .dot, .reviews .review-report .review-action .count {
    color: white; 
}

.reviews .review-report .review-action:hover {
    cursor: pointer;
    background: #000;
}


.rating-block {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap
}

.rating-block .rating {
    margin-right: 11px
}

.rating-block .rating-val {
    font-size: 18px;
    font-weight: 500
}

.rating {
    width: 105px;
    height: 16px;
    position: relative
}

.rating .icon {
    margin: 0 2px;
    width: 17px;
    flex: 0 0 17px
}

.rating .current {
    display: flex;
    align-items: stretch;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden
}

.rating .current .icon {
    fill: #000
}

.rating .total {
    display: flex;
    align-items: stretch;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0
}

.rating .total .icon {
    fill: #bbb
}

.rating.rating-lg {
    width: 140px;
    height: 24px
}

.rating.rating-lg .icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px
}

.rating.rating-md {
    width: 115px;
    height: 18px
}

.rating.rating-md .icon {
    width: 19px;
    height: 18px;
    flex: 0 0 19px
}

.rating.rating-o .total .icon,.rating.rating-picker-y .icon,.rating.rating-y .current .icon {
    fill: #fdc52e;
}

footer {
    width: 100%;
    background: #000;
    position: relative;
}

.bottom_footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 20px; 
    width: 100%;
    margin-top: 50px;
}

.bottom_footer .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.bottom_footer .container img {
    max-width: 130px;
}

.bottom_footer a, .bottom_footer p {
    font-weight: 300;
    font-size: 16px;
    letter-spacing: .02em;
    color: #fff;
    text-decoration: none;
}

.bottom_footer ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 0;
    list-style-type: none !important;
}

.bottom_footer ul li {
    padding-left: 24px;
}

.bottom_footer ul li:first-child {
    padding-right: 24px;
    padding-left: 0;
}

.bottom_footer ul li a:hover {
    text-decoration: none
}

.bottom_footer ul li:first-child {
    border-right: 1px solid #545659;
}

.bottom_footer .copyright {
    font-size: 14px;
    opacity: 0.5;
}


.opt-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #E2E2E2;
    cursor: pointer;
}

.one-time .opt-heading {
    border-radius: 10px 10px 0 0;
} 
 
.sub .opt-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0 0 10px 10px;
}

.mobile .sub .opt-heading {
    border-radius: 0 0 20px 20px;
}

.sub .opt-heading.active {
    border-radius: 0;
}

.sb-helper {
    display: flex; 
    align-items: center;
    gap: 10px;
}

.opt-heading p {
    color: black;
    font-weight: bold;
    font-size: 18px;
}

.opt-heading p.extra {
    font-size: 16px !important;
}

.opt-heading .checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.opt-heading .checkbox img {
    width: 24px;
    height: 24px;
    margin-top: 1px;
} 

.opt-heading p.extra {
    color: #AE63FF;
}

.opt-heading .checkbox img:nth-of-type(2) {
    display: none;
}

.opt-heading.active .checkbox img:nth-of-type(2) {
    display: block;
}

.opt-heading.active .checkbox img:nth-of-type(1) {
    display: none;
}

.sub-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; 
    list-style: none;
    padding-left: 0;
}

.sub-features li {
    display: flex;
    gap: 5px;
    align-items: center;
}

.sub-features li p {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 180%;
}

.sub-features li img {
    max-width: 20px;
}

.faqs .container{width:100%;max-width:980px;display:flex;align-items:center;justify-content:space-between;margin:auto;}
.faqs{width:100%;max-width:780px;display:flex;flex-direction:column;gap:29px;margin:auto;}
.faqs .question:hover{cursor:pointer;background:#3e451e1a;}
.faqs .question{transition:0.2s all;position:relative;z-index:10;padding:20px 24px;border-radius:20px;border:1px solid #C5C5C5;background:#3e451e0a;}
.faqs .question .helper{display:flex;justify-content:space-between;align-items:center;}
.faqs .question .helper p{font-size:16px;font-weight:700;line-height:160%;color:#000;}
.faqs .question img:nth-of-type(2){display:none;}
.faqs .question.active img:nth-of-type(2){display:block;}
.faqs .question.active .helper img:nth-of-type(1){display:none;}
.faqs .answer{transition:0.2s all;height:0;opacity:0;visibility:hidden;overflow:hidden;}
.faqs .answer.collapse{margin-top:20px;height:auto;opacity:1;line-height:1.7;visibility:visible;}
.popup-container{display:flex;padding:15px;z-index:99999;position:fixed;top:0;bottom:0;left:0;right:0;height:100%;width:100%;overflow:auto;background:rgba(0, 0, 0, 0.58);}
.popup-container .popup{display:block;max-width:750px;border-radius:20px;width:100%;background:#000000;color:white;box-shadow:0 3px 6px rgba(0,0,0,0.16);}
.popup-container .popup h2{font-size:28px;font-weight:bold;line-height:110%;color:#AE63FF;margin-bottom:5px;} 
.popup-container .popup h1{font-size:50px;font-weight:bold;line-height:115%;margin-bottom:16px;color:white;}
.popup-container .popup .inner{padding:30px;}
.popup-container .popup .inner .text{display:flex;align-items:center;justify-content:center;gap:50px;}
.popup-container .popup .inner .text img{max-width:275px;}
.popup{position:relative;}
.popup .close{position:absolute;top:15px;right:18px;cursor:pointer;}
.popup-container .faqs .question{background:#000;}
.popup-container .faqs .question .helper p,.popup-container .faqs .answer,.popup .faqs .answer a{
    color:white!important;
    font-size: 20px;
} 

.popup .faqs .answer a {
    color: #ae63ff !important;
}

.popup-container .faqs{gap:10px;}
@media (max-width: 991px){
.popup-container .popup{max-width:600px;}
.popup-container .popup h2{font-size:24px;}
.popup-container .popup h1{font-size:40px;}
.popup-container .popup .inner .text img{max-width:200px;}
}
@media (max-width: 767px){
.popup-container .popup .inner .text{gap:0;justify-content:space-between;}
.faqs{gap:20px;}
.faqs .question{padding:20px 9px;}
.popup .faqs .question{padding:20px;}
.faqs .question .helper p{padding-right:30px;}
}
@media (max-width: 600px){
.popup-container .popup .inner .text{flex-direction:column;}
.popup-container .popup h2,.popup-container .popup h1{text-align:center;}
.popup-container .popup h1 br{display:none;}
.popup-container .popup h2{margin-bottom:8px;}
.popup-container .popup .inner{padding:50px 30px 30px;}
.popup-container .popup .inner .text img{max-width:250px;padding-left:30px;}
}
@media (max-width: 550px){
.popup-container .popup h2{font-size:20px;}
.popup-container .popup h1{font-size:32px;}
.popup-container .popup .inner{padding:50px 15px 15px;}
}
@media (max-width: 380px){
.popup-container .faqs .question .helper p,.popup-container .faqs .answer{font-size:14px;}
}
@media (max-width: 350px){
.popup-container{padding:10px;}
.popup-container .popup,.popup-container .faqs .question{border-radius:10px;}
.popup-container .faqs .question .helper p{padding-right:10px;}
.popup .faqs .question{padding:15px;}
.popup .close{top:10px;right:10px;max-width:20px;}
}

@media (max-width: 1300px) {
    .help .helper {
        max-width: 370px;
    }
}

@media (max-width: 1199px) {
    .help {
        background-image: none;
    }

    .help .text {
        padding: 40px 40px 0 0;
    }

    .help .helper {
        max-width: 430px;
    }

    .guarantee .container {
        gap: 30px;
    }

    .guarantee .helper {
        max-width: 400px;
    }

    .guarantee .text {
        padding: 20px;
    }

    .doc .inner {
        gap: 0;
        align-items: flex-end;
    }

    .doc .text {
        padding: 40px 40px 40px 0; 
    }

    .doc img {
        max-width: 300px;
        margin-left: 20px;
    }
}

@media (max-width: 1024px) {
    .product .container {
        gap: 20px;
        align-items: flex-start;
    }

    .sliders {
        max-width: 330px;
    }

    .slider-arrow {
        height: calc(100% - 141px);
    }

    .slider-small img {
        max-width: 95px;
        margin: 0 8px;
    }

    .slider-arrow .helper {
        width: 40px;
        height: 40px;
    }

    .slider-big-next-btn {
        right: -12px;
    }

    .slider-big-prev-btn {
        left: -1px;
    }

    .customer-reviews .stars {
        gap: 4px;
    }

    .customer-reviews p {
        font-size: 14px;
    }

    .option {
        padding: 10px 8px;
    }

    .option .save {
        margin-left: 0;
    }

    .product .offer {
        font-size: 12px;
		font-weight: bold;
    }

    .help .helper {
        display: none;
    }

    .help .text {
        padding: 40px 40px;
    }

    .guarantee .container {
        gap: 0;
    }

    .guarantee .text {
        padding: 10px;
    }

    .guarantee h2 {
        margin-bottom: 10px;
    }

    .features {
        background-position: center 84px;
        background-size: 60%;
    }

    .features .main-img {
        display: flex;
        align-items: center;

        max-width: 350px;
        width: 100%;
    }

    .features .main-img img {
        width: 100%;
    }

    .doc {
        padding: 0;
    }

    .doc .inner {
        border-radius: 0;
    }

    .doc .text {
        padding: 20px 20px 20px 0;
    }
}


@media screen and (max-width: 767px) {
    .opt-heading:nth-of-type(1) {
        border-radius: 20px 20px 0 0;
    }

    .sub.options-mobile { 
        border-radius: 0 0 20px 20px;
    }

    .product .claim-discount {
        margin-top: 16px;
    }

    .opt-heading p {
        font-size: 18px !important;
    }
}

@media (max-width: 767px) {
    .popup-container .faqs .question .helper p, .popup-container .faqs .answer, .popup .faqs .answer a {
        font-size: 18px;
    }  
    
    .sub-features li p {
        font-size: 12px;
    }

    .sub-features {
        margin-top: 15px;
    }

    .bottom_footer ul li {
        padding-left: 10px;
    }

    .bottom_footer ul li:first-child {
        padding-right: 10px;
    }

    .bottom_footer .container {
        gap: 10px;
    }

    .bottom_footer .copyright {
        font-size: 12px;
    }

    .bottom_footer a, .bottom_footer p {
        font-size: 14px;
    }

    .reviews h3 {
        font-size: 24px;
    }

    .reviews {
        padding: 50px 9px 0 9px; 
    }

    .reviews .reviews-top {
        padding-bottom: 5px;
    }

    .reviews .reviews-top .reviews-actions .btn {
        font-size: 16px;
    }

    .reviews .reviews-top .reviews-actions .btn .icon {
        margin-right: 8px;
    }

	.features .feature {
	    flex: 1;
	    min-height: auto;
	}

    .features sup {
        top: -7px;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .header a {
        font-size: 16px;
    }

    .header img {
        max-width: 137px;
    }

    .info {
        font-size: 14px;
    }

    .countdown {
        background-image: url('../img/countdown-mobile.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
    }

    .countdown .container {
        flex-direction: column;
        overflow: hidden;
        max-height: 100%;
        padding-top: 23px;
    }

    .countdown .text {
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .countdown .text h2 {
        font-size: 18px;
    }

    .countdown .text p {
        margin-top: 8px;
        font-size: 14px;
    }

    .countdown .clock {
        max-width: 100%;
        margin: 20px 0 25px 0;
    }

    .countdown .doctor {
        display: none;
    }

    .product {
        margin-top: 16px;
    }

    .product .sliders {
        display: none;
    }

    .product .add-to-cart {
        display: none;
    }

    .help .text {
        padding: 20px;
    }

    .guarantee h2 {
        margin-bottom: 32px;
    }

    .guarantee .container {
        flex-direction: column;
        gap: 45px;
    }

    .guarantee img {
        max-width: 100%;
    }

    .guarantee .text {
        max-width: 100%;
        padding: 0 20px 45px 20px;
    }

    .features {
        padding-top: 46px;
        background-position: center 48px;
    }

    .features .grid {
        flex-direction: column;
    }

    .feature-heading {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .features .feature img {
        background: #F3F3F3;
        padding: 6px;
        border-radius: 100%;
        max-width: 60px;
        margin-bottom: 7px;
    }

    .features .main-img {
        margin: auto;
    }

    .doc .inner {
        flex-direction: column-reverse;
        align-items: center;
    }

    .doc .text {
        padding: 40px 20px;
    }

    .doc img {
        max-width: 100%;
        margin: 0;
    }

    .product .mobile .info {
        height: auto;
        margin-top: 10px;
        padding: 0;  
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 600;
    }

    .help-outer {
        margin-top: 30px;
    }

    .help .text {
        padding: 20px 20px 30px 20px;
    }

    .help .text h2 {
        font-size: 24px;
    }

    .help .text p {
        font-size: 14px;
    }

    .help .text p span {
        padding: 0 3px;
    }

    .guarantee h2 {
        font-size: 24px;
    }

    .guarantee p {
        font-size: 14px;
    }

    .features {
        padding-top: 53px;
        background-position: center 50px;
        background-size: 95%;
    }

    .features h2 {
        font-size: 24px;
    }

    .features .grid {
        margin-top: 45px;
    }

    .feature-heading {
        gap: 13px;
    }

    .features .main-img img {
        margin: 8px 0;
        padding: 0 20px;
    }

    .doc {
        margin-top: 45px;
    }

    .doc h2,
    .faq h2 {
        font-size: 24px;
    }

    .faq {
        margin-top: 46px;
    }

    .faq h2 {
        margin-bottom: 23px;
    }

    .faqs .question {
        padding: 20px 9px;
    }

    .faqs .question .helper p {
    	padding-right: 30px;
    }

    .faq .see-options {
        margin-top: 50px;
        padding-left: 70px;
        padding-right: 70px;
    }

    .scroll-up {
        right: 20px;
        bottom: 20px;
    }

    .clock {
        grid-column-gap: 14px;
        height: 48px;
        max-width: 100%;

        margin-left: 0;
        padding: 0 17px;
        border-radius: 30px;
    }

    .flipper {
        min-width: 24px;
        height: 100%;
    }

    .gear {
        top: 18.5px;
        left: 0;
        padding: 0.5px;
    }

    .gear:nth-child(2) {
        right: 0;
    }

    .top {
        height: 24px;
    }

    .bottom {
        height: 24px;
    }

    .clock .text {
        font-size: 20px;
        line-height: 49px;
    }

    .help .container {
    	max-height: 100%;
	}

    .opt-heading {
        padding: 15px 10px;
    }
}


@media (min-width: 768px) and (max-width: 991px) {
    .sub-features {
        grid-template-columns: 1fr;
        max-width: 235px;
        margin: auto;
    }

    .product .offer {
        margin-bottom: 17px;
		font-weight: bold;
    }

    .sub-features li p {
        font-size: 12px;
    }
}

@media (max-width: 520px) {
     .sub-features {
        grid-template-columns: 1fr;
     }
}

@media (max-width: 500px) {
    .opt-heading p.extra {
        font-size: 14px !important;
    }

    .opt-heading p {
        font-size: 16px !important;
    }

    .opt-heading .checkbox img {
        width: 20px;
        height: 20px;
    }

    .opt-heading, .sb-helper {
        gap: 5px;
    }

    .popup-container .faqs .question .helper p, .popup-container .faqs .answer, .popup .faqs .answer a {
        font-size: 16px;
    } 
}

@media (max-width: 350px) {
    .opt-heading, .sb-helper {
        gap: 5px;
    }

    .opt-heading p {
        font-size: 14px !important;
    }

    .opt-heading p.extra {
        font-size: 12px !important;
    }

    .opt-heading .checkbox img {
        width: 18px;
        height: 18px;
    }

    .reviews .reviews-list .review-inner .review-r {
        margin-left: 0;
    }

    .reviews .reviews-list .review-inner .userpic {
        display: none;
    }
}