html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.main {
    flex-grow: 1;
}

.logo {
    max-width: 100%;
    display: inline-block;
    flex-shrink: 0;
    transition: all 0.3s;
}
.logo img {
    max-width: 100%;
    display: block;
}
.logo:hover {
    opacity: 0.9;
}

.icon-full {
    font-size: 24px;
}

.icon-inline {
    margin-top: -3px;
    display: inline-block;
    vertical-align: middle;
}

.intro {
    background: #fcfcfc url(../images/intro-bg.png) no-repeat center;
}
.intro-container {
    min-height: 556px;
    padding-top: 64px;
    padding-bottom: 64px;
    display: flex;
    align-items: center;
}
.intro-content {
    max-width: 560px;
    line-height: initial;
}
.intro-title {
    font-size: 74px;
}
.intro-description {
    margin-top: 30px;
    margin-bottom: 50px;
    font-size: 30px;
}

@media screen and (min-width: 1921px) {
    .intro {
        background-size: cover;
    }
}
.offer {
    padding: 40px 0;
}
.offer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    align-items: center;
}
.offer-title {
    font-size: 30px;
    line-height: initial;
}

.countdown {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    text-align: center;
    line-height: initial;
}
.countdown-item {
    position: relative;
}
.countdown-item:last-child .countdown-number::before, .countdown-item:last-child .countdown-number::after {
    display: none;
}
.countdown-label {
    font-size: 16px;
}
.countdown-number {
    position: relative;
    font-size: 48px;
    font-family: monospace;
    font-weight: bold;
}
.countdown-number::before {
    position: absolute;
    top: 35%;
    right: 0;
    transform: translate(100%, -50%);
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: #fff;
}
.countdown-number::after {
    position: absolute;
    top: 65%;
    right: 0;
    transform: translate(100%, -50%);
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: #fff;
}

.product-modal {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.product-modal-image {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    padding: 5px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #f6f7fa;
    border-radius: 10px;
}
.product-modal-image img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}
.product-modal-content {
    flex-grow: 1;
}
.product-modal-remove {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #8791AE;
    text-decoration: none;
}
.product-intable {
    display: flex;
    align-items: center;
    color: #202020;
    font-weight: 500;
    text-decoration: none;
}
.product-intable-image {
    width: 64px;
    height: 64px;
    margin-right: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.product-intable-image img {
    max-width: 100%;
    max-height: 100%;
}
.product-intable-title {
    min-width: 80px;
}
.product-dosage {
    margin: 0 10px 10px 0;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    color: #8791AE;
    text-decoration: none;
    line-height: initial;
}
.product-dosage.selected {
    border-color: #ff8980 !important;
    background: #ff8980;
    color: #fff !important;
}
.product-dosage:hover {
    border-color: #ff8980 !important;
    background: #ff8980;
    color: #fff !important;
}
.product-picker {
    border-right: 1px solid #dbdada;
}
.product-picker-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}
.product-picker-item {
    position: relative;
    padding-right: 20px;
    display: flex;
    align-items: center;
    color: #8791AE;
    text-decoration: none;
}
.product-picker-item:hover {
    color: #8791AE;
}
.product-picker-item.active .h2 {
    color: #1aadbb;
}
.product-picker-item.active::after {
    position: absolute;
    top: 0;
    right: -2px;
    content: "";
    width: 3px;
    height: 100%;
    display: block;
    background-color: #1aadbb;
}
.product-picker-item.active .product-picker-image {
    background-color: #e1f6f8;
}
.product-picker-image {
    width: 70px;
    height: 70px;
    margin-right: 30px;
    background-color: #f6f7fa;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-table-wrapper {
    border: 1px solid #dbdada;
    border-radius: 5px;
}
.cart-table thead th {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #f6f7fa;
    vertical-align: middle;
    color: #8791AE;
}
.cart-table tbody td {
    padding-top: 12px;
    padding-bottom: 12px;
    vertical-align: middle;
}
.cart-table-price {
    min-width: 110px;
}
.cart-table-qty {
    display: flex;
}
.cart-table-qty input {
    width: 42px;
    text-align: center;
    box-shadow: none !important;
}
.cart-table-qty .btn {
    background-color: transparent;
    box-shadow: none !important;
    border-radius: 24px;
    background-color: #f6f7fa;
    border: 0 !important;
}
.cart-table-qty .btn i {
    transition: all 0.3s;
}
.cart-table-qty .btn:hover {
    background-color: #ebeef9;
}
.cart-table-qty .btn:hover i {
    color: #202020;
}
.cart-bar-amount {
    position: absolute;
    top: -2px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #ff8980;
    font-size: 12px;
    color: #fff;
    text-align: center;
    line-height: 16px;
}
.cart-bar-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    cursor: pointer;
    background-color: #f6f7fa;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 20px;
}
.faq-question .btn {
    min-width: initial;
    box-shadow: none;
    border: 0;
}
.faq-question .faq-question-body .icon-question {
    color: #ff8980;
}
.faq-question:not(.collapsed) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.faq-question:not(.collapsed) .btn .icon-down {
    transform: rotate(180deg);
    color: #1aadbb;
}
.faq-question:not(.collapsed) .faq-question-body {
    color: #1aadbb !important;
}
.faq-question:not(.collapsed) .faq-question-body .icon-question {
    color: #1aadbb;
}
.faq-answer.show, .faq-answer.collapsing {
    background-color: #f6f7fa;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.faq-answer::after {
    content: "";
    height: 16px;
    width: 100%;
    display: block;
}

.testimonials {
    position: relative;
}

.testimonial-prev, .testimonial-next {
    position: absolute;
    top: calc(50% - 18px);
    transform: translateY(-50%);
    font-size: 30px;
    color: #ff8980;
    text-decoration: none;
    z-index: 2;
    cursor: pointer;
}
.testimonial-prev[aria-disabled=true], .testimonial-next[aria-disabled=true] {
    color: #8791AE;
}
.testimonial-prev {
    left: -40px;
}
.testimonial-next {
    right: -40px;
}
.testimonial-header {
    margin-bottom: 16px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.testimonial-body {
    position: relative;
    padding: 20px 30px;
    background-color: #f6f7fa;
    border-radius: 10px;
    box-sizing: border-box;
    min-height: 200px;
    display: flex;
    align-items: center;
}
.testimonial-body::after {
    position: absolute;
    left: 48px;
    bottom: -10px;
    content: "";
    width: 20px;
    height: 10px;
    display: block;
    background-color: #f6f7fa;
    -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.testimonial-author {
    margin: 15px 30px 0 30px;
    display: flex;
    align-items: center;
}
.testimonial-author-avatar {
    width: 56px;
    height: 56px;
    margin: 0 20px 0 0;
    border-radius: 30px;
    overflow: hidden;
    flex-shrink: 0;
}
.testimonial-author-avatar img {
    display: block;
    width: 100%;
    height: 100%;
}

.hfs {
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    background: #f6f7fa url(../images/hfs-bg.png) no-repeat right center;
    color: #202020;
    text-decoration: none;
}
.hfs:hover {
    color: #202020;
}
.hfs-title {
    padding: 40px;
    max-width: 850px;
    box-sizing: border-box;
    font-size: 36px;
    line-height: initial;
    text-transform: uppercase;
    font-weight: 800;
}
.hfs-info {
    position: absolute;
    left: 0;
    bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.hfs-more {
    position: relative;
    padding: 12px 22px 12px 40px;
    background-color: #1aadbb;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}
.hfs-more::after {
    position: absolute;
    top: 0;
    right: -40px;
    bottom: 0;
    width: 40px;
    content: "";
    display: block;
    background-color: #1aadbb;
    -webkit-clip-path: polygon(50% 50%, 0 0, 0 100%);
    clip-path: polygon(50% 50%, 0 0, 0 100%);
}
.hfs-logo {
    margin: 10px 0 10px 40px;
}

.about {
    position: relative;
    display: inline-block;
}
.about-image {
    max-width: 208px;
    display: block;
}
.about-pills {
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.about-pill {
    width: 70px;
    height: 70px;
    background-color: #f6f7fa;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-badge {
    margin-bottom: -20px;
}

.footer .text-muted {
    color: #b2b3b8 !important;
}
.footer-links a {
    color: #b2b3b8;
    text-decoration: none;
    line-height: 24px;
}
.footer-links a:hover {
    color: #fff;
}
.footer-nav {
    margin: 0;
    padding: 0;
}
.footer-nav li {
    margin: 0 0 0.5rem 0;
    padding: 0;
    list-style: none;
}
.footer-nav li .icon-inline {
    color: #fff;
}
.footer-nav-cols {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.payment-methods {
    max-width: 100%;
    min-width: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.payment-methods > div {
    margin-right: 10px;
    flex-shrink: 1;
}
.payment-methods > div:last-child {
    margin-right: 0;
}
.payment-methods > div img {
    width: 100%;
    max-width: 40px;
    display: block;
}

@media screen and (max-width: 1199px) {
    .testimonial-prev {
        left: -5px;
    }
    .testimonial-next {
        right: -5px;
    }
    .hfs-title {
        max-width: 640px;
        font-size: 30px;
    }
}
@media screen and (max-width: 991px) {
    .intro {
        background-size: cover;
    }
    .intro-container {
        min-height: initial;
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .intro-content {
        max-width: 50%;
    }
    .intro-title {
        font-size: 3rem;
    }
    .intro-description {
        margin-top: 20px;
        margin-bottom: 30px;
        font-size: 20px;
    }
    .offer-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        text-align: center;
    }
    .cart-table-qty {
        align-items: center;
    }
    .cart-table-qty input {
        width: 32px;
        height: 32px;
        padding: 0;
    }
    .cart-table-qty .btn {
        width: 24px;
        min-width: 24px;
        height: 24px;
        padding: 0;
        line-height: 24px;
    }
    .cart-table-qty .btn .icon-full {
        font-size: 18px;
    }
    .hfs-title {
        padding: 20px;
    }
    .hfs-info {
        bottom: 10px;
    }
    .hfs-more {
        padding-left: 20px;
    }
    .product-picker {
        border: 0;
        margin-bottom: 30px;
    }
    .product-picker-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .product-picker-item {
        padding-right: 0;
    }
    .product-picker-item.active::after {
        top: auto;
        right: auto;
        left: 0;
        bottom: -15px;
        width: 100%;
        height: 3px;
    }
    .product-dosage {
        padding: 12px 14px;
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    .intro-container {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .intro-content {
        max-width: 60%;
    }
    .intro-title {
        font-size: 36px;
    }
    .intro-description {
        margin-top: 10px;
        margin-bottom: 20px;
        font-size: 16px;
    }
    .offer {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .offer-title {
        font-size: 20px;
    }
    .countdown-number {
        font-size: 40px;
    }
    .cart-table thead th {
        padding: 8px 6px;
    }
    .cart-table-wrapper {
        border: 0;
    }
    .faq-question {
        font-size: 16px;
    }
    .faq-question-body {
        padding-top: 2px;
    }
    .hfs {
        padding-bottom: 300px;
        background-position: right bottom;
    }
    .hfs-title {
        font-size: 24px;
    }
    .hfs-info {
        position: static;
    }
    .hfs-more {
        padding: 0 0 20px 20px;
        background-color: transparent;
        color: #202020;
        font-size: 18px;
    }
    .hfs-more::after {
        display: none;
    }
    .hfs-logo {
        width: 100%;
        margin: 0;
        padding: 12px 0;
        background-color: #ebeef9;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .product-picker-item {
        padding-right: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .product-picker-image {
        margin: 0 0 10px 0;
    }
}
@media screen and (max-width: 575px) {
    .cart-table th {
        font-size: 12px;
        white-space: nowrap;
    }
    .cart-table-price {
        min-width: 90px;
    }
    .product-intable {
        flex-direction: column;
        align-items: flex-start;
        font-size: 12px;
    }
    .product-modal{
        padding: 26px 16px;
    }
    .product-modal-remove {
        top: 10px;
        right: 10px;
    }
}

.error_message {
    font-size: 13px;
    color: rgba(248,3,0,0.8);
    margin-left: 7px;
}

.alert_error {
    position: fixed;
    top: -150px;
    left: 50%;
    transform: translate(-50%, 0);
    color: #721c24;
    background-color: #f8d7da;
    border: 2px solid #f5c6cb;
    border-radius: 5px;
    z-index: 9999;
    text-align: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    transition: top 0.5s ease;
}

.alert_error.active {
    top: 100px;
    opacity: 1;
}

.loading {
    display: none;
    justify-content: center;
    cursor: initial;
    padding: 11px;
}
.loading .dot {
    position: relative;
    width: 10px;
    height: 10px;
    margin: 0.4em 0.9em;
    border-radius: 50%;
}
.loading .dot::before {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: wave 2s ease-out infinite;
}
.loading .dot:nth-child(1) {
    background: #7ef9ff;
}
.loading .dot:nth-child(1)::before {
    animation-delay: 0.2s;
}
.loading .dot:nth-child(2) {
    background: #89cff0;
}
.loading .dot:nth-child(2)::before {
    animation-delay: 0.4s;
}
.loading .dot:nth-child(3) {
    background: #4682b4;
}
.loading .dot:nth-child(3)::before {
    animation-delay: 0.6s;
}
.loading .dot:nth-child(4) {
    background: #0f52ba;
}
.loading .dot:nth-child(4)::before {
    animation-delay: 0.8s;
}

@keyframes wave {
    50%, 75% {
        transform: scale(2.5);
    }
    80%, 100% {
        opacity: 0;
    }
}

.cart-table tbody tr:hover td:not(.spacer) {
    background-color: #eef0f9;
}

@media (min-width: 992px) {
    .modal-m{
        --bs-modal-width: 600px;
    }
}