@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
    --main-color-1: #050505;
    --main-color-2: #fff;
    --secondary-color-1: #999999;
    --secondary-color-2: #676767;
    --secondary-color-3: #7c7c7c;
    --accent-color-1: #e19c78;
    --accent-color-2: #e19c78;
    --link-color: #86a093;
    --link-color-1: var(--link-color);
    --link-color-2: var(--link-color);
    --error-color: #86210f;

    --theme-color-1: #2865f1;
    --theme-color-2: #f8f8f8;
    --theme-color-3: #2f2f2f;
    --theme-success-color: #007d67;
    --theme-error-color: #e88b8b;
}
* {
    margin: 0; 
    padding: 0;
}
html {
    height: 100%;
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--main-color-1);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
#middle {
    flex: 1 0 auto;
    margin-bottom: 50px;
}
ul li {
    list-style: none;
}
table {
    border-collapse: collapse;
}
a {
    color: var(--link-color-1);
    transition-duration: .3s;
    text-decoration: none;
}
a:hover {
    color: var(--link-color-2);
    text-decoration: none;
}
input,
textarea {
    border: 1px solid #e5ded3;
    outline: none;
    border-radius: 0px;
}
input:focus,
textarea:focus,
input.text:focus,
input:focus-visible {
    outline: 0px solid transparent;
    border: 1px solid var(--accent-color-1);
}
button:focus {
    outline: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type='number'] {
    -moz-appearance: textfield;
}
input.text {
    width: 100%;
    min-height: 40px;
    border: 1px solid var(--secondary-color-2);
    padding: 10px 12px;
    color: var(--main-color-1);
}
.custom-container {
    min-width: 320px;
    max-width: 1230px;
    width: 100%;
    padding: 0px 15px;
    margin: 0px auto;
}
h1 {
    font-size: 36px;
    font-weight: 700;
    color: #e19c78;
    text-align: center;
}
h2.title,
div.title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    padding: 40px 0px 20px;
    border-bottom: 1px solid #e3dbce;
    text-align: center;
    position: relative;
    margin-bottom: 32px;
}
div.title::after,
h2.title::after {
    position: absolute;
    content: '';
    width: 181px;
    height: 2px;
    background-color: #e19c78;
    bottom: -1px;
    left: 50%;
    transform: translate(-50%, 0%);
}
.grey-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary-color-3);
    line-height: 2;
}
.site-button {
    min-width: 160px;
    min-height: 44px;
    max-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #86a093;
    background-color: #86a093;
    color: #fff;
    text-align: center;
    font-weight: 500;
    padding: 5px 10px;
    cursor: pointer;
    transition-duration: .3s;
}
.site-button:hover {
    border: 1px solid #e19c78;
    background-color: #e19c78;
    color: #fff;
}
.site-button:active,
.site-button:focus,
.site-button.active {
    border: 1px solid #e19c78;
    background-color: #e19c78;
    color: #fff;
}
.site-button-accent {
    background-color: var(--accent-color-1);
    border-color: var(--accent-color-1);
    color: var(--main-color-2);
}
.site-button-accent:hover {
    background-color: var(--accent-color-1);
    border-color: var(--accent-color-1);
    color: var(--main-color-2);
}
.site-button-accent:active,
.site-button-accent:focus {
    background-color: var(--accent-color-2);
    border-color: var(--accent-color-2);
    color: var(--main-color-2);
}
.after-arrow {
    position: relative;
    padding-right: 28px;
}
.after-arrow::after {
    position: absolute;
    display: block;
    content: '';
    top: 12px;
    right: 14px;
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--theme-color-3);
    border-right: 2px solid var(--theme-color-3);
    rotate: 45deg;
}
.m--1 {
    margin: 0px -1px;
}
.load-more {
    width: auto;
    margin: 30px auto 0px;
    display: inline-flex;
}
/* HEADER */
.header-title {
    text-transform: uppercase;
    margin-left: 6px;
}
.header-title span{
    color: var(--main-color-1);
}
.header-row {
    display: flex;
    align-items: center;
    height: 51px;
}
.after-header {
    border-bottom: 1px solid #ececec;
}
.after-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.index .breadcrumbs a {
    display: none;
}
.breadcrumbs a {
    display: flex;
    align-items: center;
    color: var(--main-color-1);
    font-weight: 600;
}
.breadcrumbs a::before {
    content: '';
    border-top: 2px solid var(--main-color-1);
    border-left: 2px solid var(--main-color-1);
    transform: rotate(-45deg);
    display: block;
    width: 10px;
    height: 10px;
    font-size: 14px;
    margin-right: 12px;
}
.site-name {
    margin: 0px auto;
}
.site-name a {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.24px;
}
.header-row .support-phones {
    margin-right: 32px;
}
.support-phones img {
    height: 10px;
    filter: brightness(0.1);
}
.mobile-app {
    margin-left: auto;
}
.online-chat {
    margin-right: auto;
}
.online-chat a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main-color-1);
    background-color: var(--main-color-1);
    color: var(--main-color-2);
    min-height: 32px;
    min-width: 116px;
    margin-right: 20px;
    letter-spacing: 0.13px;
    font-size: 13px;
    padding: 5px 10px;
}
.online-chat a:active {
    border: 1px solid var(--accent-color-2);
    background-color: var(--accent-color-2);
}
.lz_text_link::before {
    content: var(--live-chat);
}
.contact-us .lz_text_link::before {
    content: var(--contact-us-live-chat);
}
.lz_text_link img {
    display: none;
}
/* header menus */
.main-menu {
    cursor: pointer;
    margin-right: 32px;
}
.order-status,
.cart-menu,
.go-home{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    height: 100%;
    padding: 0px 15px;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
    font-weight: 600;
}
.go-home {
    margin-left: auto;
    margin-right: -1px;
}
.order-status a,
.go-home a{
    color: var(--main-color-1);
}
.order-status a:hover,
.go-home a:hover,
.cart-menu div:hover {
    text-decoration: underline;
}
.main-header {
    position: relative;
    border-bottom: 1px solid #ececec;
}
.menu-bg {
    display: block;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
    width: 100%;
    min-width: 320px;
    height: 100%;
    margin: 0;
    list-style: none;
    background-color: #00000088;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
    z-index: 1026;
    overflow-y: auto;
}
.active .menu-bg {
    visibility: visible;
    left: 0px;
}
.menu-bg .menu-wrapper {
    margin: 0px;
    padding: 0px;
    background-color: #fff;
}
.categories-menu-body .menu-wrapper {
    max-width: 480px;
}
.categories-menu-body .categories-list {
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: .5rem;
    padding: 1.5rem .5rem;
    background: none;
    width: 100%;
    a {
        color: var(--main-color-1);
        font-size: 15px;
        font-weight: 500;
        &.after-arrow {
            padding: 0;
        }
        &.after-arrow::after {
            display: none;
        }
    }
}
.categories-menu-body .category {
    display: block;
    border: none;
    padding: .25rem;
}
.cart-menu-body .menu-wrapper,
.main-menu-body .menu-wrapper {
    max-width: 320px;
    margin-right: auto;
    min-height: 100%;
    padding-bottom: 25px;
}
.cart-menu-body .menu-wrapper {
    margin-left: auto;
    margin-right: 0px;
}
.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 63px;
    border-bottom: 1px solid #ececec;
    padding: 5px 20px;
    position: relative;
}
.menu-title {
    font-size: 20px;
    font-weight: 500;
    margin-right: 9px;
}
.mobile-menu-item {
    display: none;
    align-items: center;
    padding: 0px 20px 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ececec;
}
.mobile-menu-item .online-chat a {
    margin: 0px;
}
.mobile-menu-item .order-status,
.mobile-menu-item .cart-menu {
    min-width: auto;
    border: none;
    padding: 0px;
    margin-left: auto;
}
.language-menu,
.currency-menu,
.close-menu,
.mobile-menu-item .cart-menu  {
    margin-left: 12px;
    cursor: pointer;
}
.mobile-menu-item.support-phones {
    border-top: 1px solid #ececec;
    padding: 12px;
}
.menu-link {
    font-weight: 500;
    color: var(--main-color-1);
    font-size: 16px;
    line-height: 2.38;
    padding: 0px 20px;
}
.menu-link:hover {
    color: var(--link-color);
}
.main-menu-body .menu-body {
    padding-top: 12px;
}
.language-menu-body .menu-wrapper,
.currency-menu-body .menu-wrapper {
    margin: 10vh auto 0px;
    max-width: 520px;
}
.set-changes {
    padding: 62px 20px 82px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 500;
}
.set-changes > div {
    max-width: 384px;
    width: 100%;
}
.dropdown-container {
    position: relative;
}
.dropdown-container.active .dropdown-title:after,
.gifts-wrapper.active .gifts-title::after {
    rotate: -45deg;
    margin: 3px 0px 0px;
}
.dropdown-container.active .dropdown-options {
    display: block;
}
.product-page .dropdown-container {
    margin-bottom: 30px;
}
.dropdown-title {
    width: 100%;
    min-height: 36px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 5px 15px;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
}
.dropdown-title::after,
.gifts-wrapper .gifts-title::after {
    rotate: 135deg;
    margin-bottom: 3px;
}
.dropdown-title .dropdown-option {
    padding: 0px;
}
.dropdown-options {
    display: none;
    position: absolute;
    top: 36px;
    left: 0px;
    margin-top: 7px;
    width: 100%;
    padding: 5px 0px 10px;
    border: 1px solid #ccc;
    max-height: calc(80vh - 320px);
    min-height: 85px;
    overflow-y: auto;
    background-color: #fff;
    z-index: 2;
}
.dropdown-option {
    padding: 5px 10px;
    text-overflow: ellipsis;
}
.dropdown-option, 
.dropdown-option a {
    color: var(--main-color-1);
}
.dropdown-option:hover a,
.dropdown-option:hover, 
.dropdown-option a:hover,
.dropdown-option.active {
    cursor: pointer;
    color: var(--link-color-1);
}
.set-changes .site-button {
    margin-top: 32px;
    background-color: var(--link-color);
    border-color: var(--link-color);
    color: var(--main-color-2);
}
/* cart */
.cart-page {
    padding-bottom: 30px;
}
.cart-menu {
    position: relative;
    margin-left: -1px;
}
.cart-menu div {
    position: relative;
    cursor: pointer;
}
.edit-cart {
    margin: 15px auto;
    text-align: center;
}
.edit-cart a {
    font-size: 13px;
    font-weight: 400;
    color: var(--link-color-1);
    text-decoration: underline;
}
.cart-count {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color-1);
    color: var(--main-color-2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin-right: auto;
}
.menu-header .cart-count::before {
    display: block;
    content: '';
    position: absolute;
    width: 120px;
    height: 2px;
    background-color: var(--main-color-1);
    bottom: -1px;
    left: 0px;
}
.cart-menu .cart-count {
    position: absolute;
    top: -7px;
    right: -6px;
    font-size: 11px;
    font-weight: 400;
    width: 18px;
    height: 18px;
    line-height: 1;
}
.cart-menu div .cart-count {
    top: -10px;
    right: -18px;
}
.empty-cart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    padding: 120px 0px;
    margin: auto;
}
.cart-preview .empty-cart-container {
    padding: 65px 55px 20px;
}
.cart-preview .empty-cart-text {
    font-size: 14px;
}
.empry-cart-img {
    margin-right: 10px;
}
.empty-cart-text {
    padding: 24px 0px 36px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}
.empty-cart-add .site-button {
    width: 200px;
    min-height: 40px;
    font-weight: 400;
    background-color: var(--link-color);
    border-color: var(--link-color);
    color: var(--main-color-2);
}
.empty-cart-add .site-button img {
    margin-right: 13px;
}
.cart-body {
    margin-bottom: 28px;
}
.cart-preview-row {
    border-bottom: 1px solid #dadada;
    padding: 12px 20px 12px 5px;
    display: flex;
}
.cart-preview-image {
    min-width: 110px;
}
.cart-preview-info {
    margin-left: 5px;
    width: 100%;
}
.cart-product-name {
    font-size: 16px;
    font-weight: bold;
}
.cart-product-dosage {
    font-size: 13px;
    color: var(--secondary-color-1);
}
.cart-pill-pack-price {
    font-weight: 500;
    white-space: nowrap;
    margin-top: auto;
}
.cart-preview-info .d-flex {
    justify-content: space-between;
}
.cart-remove-btn {
    margin-left: 10px;
}
.cart-pill-quantity {
    display: flex;
    align-items: center;
}
.quantity-btn {
    object-fit: contain;
    background-color: white;
    border: none;
    background-repeat: no-repeat;
    padding: 0px;
    cursor: pointer;
}
.quantity-input {
    width: 32px;
    text-align: center;
    border: none;
    outline: none;
    pointer-events: none;
    font-weight: 500;
}
.cart-preview-bonus {
    text-align: center;
    padding: 20px;
    font-weight: bold;
}
.cart-preview-footer {
    margin-top: -1px;
}
.cart-checkout {
    display: flex;
    justify-content: flex-end;
}
.cart-checkout > div {
    background-color: var(--main-color-1);
    color: var(--main-color-2);
    display: inline-flex;
    align-items: center;
}
.cart-total {
    min-width: 100px;
    width: 100%;
    text-align: center;
    border-right: 1px solid #d1d1d1;
    padding: 3px 10px;
}
.cart-preview .cart-checkout > div {
    display: flex;
    width: 100%;
}
.chechout.site-button {
    min-height: 52px;
    min-width: 200px;
    font-size: 13px;
    font-weight: bold;
    background-color: var(--main-color-1);
    border-color: var(--main-color-1);
}

.pill-row {
    display: flex;
    align-items: center;
    grid-template-columns: 120px 42.6% 90px 90px 90px 42px;
    border: solid 1px #efefef;
    border-bottom: none;
    padding: 10px;
}
.product-img {
    margin-bottom: 10px;
}
.product-packages {
    padding: 59px 120px 59px 71px;
    background-color: #fdf9f2;
}
.product-column {
    padding-left: 10px;
    width: 45%;
    padding: 10px;
}
.quantity-column {
    width: 110px;
    margin-right: auto; 
    padding: 10px;
}
.price-column, 
.total-column {
    margin: 0px auto;
    width: 110px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}
.remove-column {
    margin-right: 16px;
    padding: 10px;
}
.pill-row:last-child {
    border-bottom: 1px solid #efefef;
}
.new-package-save a {
    font-size: 12px;
    font-weight: 500;
    color: var(--link-color);
    text-decoration: underline;
}
.pill-titles {
    font-size: 15px;
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding: 15px 10px;
    font-weight: bold;
    background-color: #fdf9f2;
}
.pill-titles > div:nth-child(1),
.insurance-title {
    width: calc(45% + 111px);
    order: 1;
    padding-left: 13px;
}
.pill-titles > div:nth-child(2),
.insurance-check {
    width: 110px;
    padding: 0px 10px;
    margin-right: auto;
    text-align: center;
    order: 2;
}
.pill-titles > div:nth-child(3),
.insurance-price {
    width: 110px;
    padding: 0px 10px;
    margin: auto;
    text-align: center;
    order: 3;
    font-weight: 700;
}
.pill-titles > div:nth-child(4),
.insurance-total {
    width: 110px;
    padding: 0px 10px;
    margin: auto;
    text-align: center;
    order: 4;
    font-weight: 700;
    white-space: nowrap;
}
.pill-titles > div:nth-child(5),
.insurance-row > div:last-child {
    width: 36px;
    padding: 0px 10px;
    margin-right: 16px;
    order: 5;
}
.insurance-row,
.shipping-row {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    border: 1px solid #efefef;
    margin-top: -1px;
}
.shipping-row {
    background-color: #fdf9f2;
    border: none;
    border-top: 1px solid #efefef;
}
.insurance-title {
    display: flex;
}
.insurance-title span,
.shipping-title {
    display: block;
    min-width: 180px;
    font-weight: 700;
}
.shipping-title {
    padding-left: 13px;
}
.shipping_methods {
    display: flex;
    align-items: center;
}
.shipping_methods .site-button,
.gifts-wrapper .site-button {
    margin-right: 16px;
    margin-bottom: 0px;
    background-color: transparent;
    border: 2px solid #86a093;
    color: #86a093;
}
.shipping_methods .site-button:hover, 
.shipping_methods .checked-shipping .site-button,
.gifts-wrapper .site-button:hover,
.gifts-wrapper .remove-gifts-btn {
    background-color: #86a093;
    color: #fff;
}
.insurance-check input {
    display: none;
}
.insurance-check label {
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
}
.insurance-check label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #e9e9e9;
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 3px;
}
.insurance-check input:checked+label:after {
    content: url(../images/apply.svg);
    display: block;
    position: absolute;
    top: 2px;
    left: 4px;
}
.gifts-wrapper {
    border: 1px solid #efefef;
    display: flex;
    flex-direction: column;
}
.gifts-title {
    order: 1;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 25px 8px 20px;
}
.gifts-chosen {
    margin: 0px auto 0px 0px;
    color: var(--accent-color-1);
    font-weight: 700;
}
.gifts-body {
    display: none;
    order: 2;
    padding: 0px 20px;
}
.gifts-wrapper.active .gifts-body {
    display: block;
}
.gifts-items {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 0px 28px;
}
.gifts-item {
    border: 1px solid #efefef;
    padding: 1px 15px 15px;
    margin-right: 20px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 170px;
    width: 100%;
}
.gifts-dropdown {
    position: relative;
}
.gift-options {
    position: absolute;
    top: 40px;
    background-color: white;
}
.gift-item {
    white-space: nowrap;
    overflow: hidden;
}
.remove-gifts-btn,
.remove-gifts-btn:hover {
    background-color: var(--main-color-1);
    color: var(--main-color-2);
}
.gifts-name {
    font-weight: bold;
    margin-bottom: 26px;
}
.gifts-dropdown {
    width: 100%;
}
.gift-title {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 22px 6px 10px;
    margin-bottom: 16px;
}
.gift-title::after {
    top: 11px;
}
.gifts-wrapper .site-button {
    min-width: 100%;
    min-height: 38px;
    width: 100%;
    margin: 0px;
}
.gifts-wrapper ::after {
    border-color: var(--secondary-color-3);
}
.no-gifts-block {
    justify-content: space-between;
}
.no-gifts-block .gifts-img {
    padding-top: 47px;
}
.no-gifts-block .site-button {
    width: 100%;
}
.gifts-img {
    margin-bottom: auto;
}

/* FOOTER */
.payment-methods.order_status,
.payment-methods.contact_us,
.payment-methods.static_page {
    display: none;
}
.payment-methods {
    margin: 50px auto -30px;
}
.footer {
    background-color: var(--theme-color-2);
    margin-top: 80px;
}
.footer-copyright {
    text-align: center;
    height: 72px;
    border-top: 1px solid #ebebeb;
}
.footer-copyright .custom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.footer-copyright-text * {
    font-size: 11px;
    font-weight: 300;
    color: #aba6c6;
}
.footer-copyright-sitename a {
    display: flex;
    align-items: center;
}
.footer-copyright-sitename .header-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--accent-color-1);
}
.footer-link a,
.footer-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-color-2);
    margin-bottom: 12px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
}
.footer-link {
    width: 33.33333%;
    margin-bottom: 12px;
}
.footer-items {
    display: flex;
    padding: 50px 0px 72px;
}
.footer-subscribe {
    margin-left: auto;
}
.errors {
    color: var(--accent-color-1);
}
.success {
    color: var(--theme-success-color);
}
.subscribe-form .errors, 
.subscribe-form .success {
    color: #fff;
    margin-top: 5px;
    font-size: 9px;
}
#subscribe_to_news_form {
    width: 290px;
    display: flex;
    align-items: center;
}
#subscribe_to_news_form [name="email"] {
    width: 100%;
    min-height: 32px;
    outline: 0px;
    padding: 0px 12px;
    font-size: 13px;
    border: solid 1px #e8e8e8;;
}
#subscribe_to_news_form [name="email"]:focus {
    border-color: var(--main-color-1);
}
#subscribe_to_news {
    width: 48px;
    height: 32px;
    background-color: var(--main-color-1);
    outline: 0px;
    border: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.footer-container__payments {
    margin: 0px auto;
}
/* Products page */
.side_search form {
    display: flex;
    max-height: 40px;
}
.side_search .site-button {
    min-height: 40px;
    min-width: 120px;
}
.side_search .site-button img {
    margin-right: 10px;
}
.products-search {
    margin-bottom: 20px;
}
#quickSearch {
    width: calc(100% - 20px);
    border: 1px solid #efefef;
    padding: 5px 10px 15px;
    position: absolute;
    top: 50px;
    left: 20px;
    background-color: white;
    z-index: 1;
}
#quickSearch li {
    font-size: 13px;
    color: var(--main-color-1);
    line-height: 2.3;
    font-weight: 500;
    cursor: pointer;
}
#quickSearch li:hover {
    color: var(--link-color-1);
}
.search-not-found {
    font-size: 12px;

    color: var(--accent-color-1);
}
.products-page .custom-container {
    padding-right: 0px;
    margin-top: 20px;
}
.products-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.main-banner {
    background: linear-gradient(#f8f8f8, #ffffff);
    max-height: 580px;
    height: 40vw;
    margin: 0px auto 0px;
}
.main-bg {
    background: url("../images/main_banner.jpg") no-repeat center top;
    background-size: auto 100%;
    height: 100%;
}
.main-banner .custom-container {
    height: 100%;
}
.main-banner-body {
    max-width: 410px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.main-banner-button .site-button {
    background-color: #e19c78;
    border-color: #e19c78;
    display: inline-flex;
}
.main-banner-title {
    color: var(--main-color-1);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
}
.main-banner-title span {
    display: block;
    color: var(--link-color);
    font-size: 48px;
    letter-spacing: -0.24px;
    line-height: 1.8;
}
h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
}
.products-subtitle h3 {
    margin-top: 20px;
}
.main-banner img {
    width: 100%;
    object-fit: contain;
}
.products-container {
    padding-right: 0px;
    padding-left: 20px;
}
.products-items {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
}
.products-item {
    width: 100%;
    max-width: 33.333333%;
    padding: 0px 10px 16px;
    display: none;
}
.item-card {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ededed;
    padding: 8px 15px 17px 0px;
    height: 100%;
    width: 100%;
    min-width: 285px;
    margin: auto;
}
.item-card:hover {
    border: 1px solid var(--accent-color-1);
}
.discount-icon {
    position: absolute;
    top: 10px;
    right: 10px;
}
.pill-name {
    margin-top: 10px;

}
.pill-name a {
    color: var(--main-color-1);
    font-size: 17px;
    font-weight: 700;
    margin-top: 8px;
}
.top-products .pill-ingredient {
    line-height: 2;
    padding-left: 23px;
    color: var(--secondary-color-1);
}
.pill-total {
    color: var(--accent-color-1);
    font-size: 16px;
    font-weight: 600;
    margin-top: auto;
    padding: 0px 15px 0px 23px;
    line-height: 1.7;
}
.pill-doses a {
    font-size: 12px;
    font-weight: 300;
    color: var(--secondary-color-3);
    margin-left: 10px;
    line-height: 1.5;
}
.pill-doses {
    text-align: center;
    line-height: 1;
}
.top-products .pill-buy {
    text-align: right;
    padding: 0px;
}
.top-products .pill-buy a,
.top-products .pill-buy a:hover {
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    font-weight: 500;
}
/* Product page */
.product-page {
    margin-top: 60px;
}
.product-page .dropdown-title,
.product-page .site-button {
    min-height: 40px;
    max-height: 40px;
}
.product-page .site-button {
    margin-top: 28px;
}
.product-bonuses {
    padding: 73px 208px 72px 100px;
    background-color: #fdf9f2;
    margin-top: 100px;
}
.product-bonuses > div {
    display: flex;
    align-items: center;
    margin-bottom: 31px;
    white-space: nowrap;
}
.product-bonuses .product-bonuses-1::before,
.product-bonuses .product-bonuses-2::before,
.product-bonuses .product-bonuses-3::before {
    display: block;
    margin-right: 20px;
    content: '';
    min-width: 80px;
    min-height: 80px;
    background: url('../images/shipping_worldwide.svg') no-repeat;
    background-size: 100% 100%; 
}
.product-bonuses .product-bonuses-2::before {
    background-image: url('../images/package_delivery.svg');
}
.product-bonuses .product-bonuses-3::before {
    background-image: url('../images/orders_discount.svg');
}
.product-bonuses .product-bonuses-1:hover:before {
    background-image: url('../images/shipping_worldwide_hover.svg');
}
.product-bonuses .product-bonuses-2:hover:before {
    background-image: url('../images/package_delivery_hover.svg');
}
.product-bonuses .product-bonuses-3:hover:before {
    background-image: url('../images/orders_discount_hover.svg');
}
.product-descr {
    margin-top: 100px;
    padding-left: 59px;
}
.product-descr-body {
    line-height: 1.71;
    height: 365px;
    overflow: hidden;
    position: relative;
}
.product-descr-body.active {
    height: auto;
    overflow: visible;
}
.gradient-bg {
    position: absolute;
    bottom: 0px;
    height: 83px;
    width: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.75) 50%, rgba(255,255,255,1) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.gradient-bg div::before {
    display: block;
    content: url('../images/arrow_less.svg');
    cursor: pointer;
}
.product-descr-body.active .gradient-bg {
    background: none;
    bottom: -40px;
    height: 40px;
}
.product-descr-body.active .gradient-bg div::before {
    content: url('../images/arrow_more.svg');
}
h2 {
    font-size: 24px;
    font-weight: bold;
}
.product-description {
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
}
.package-doses-title {
    width: 100%;
    font-weight: 600;
    line-height: 1;
    color: #999;
    margin: 0px 0px 12px;
}
.product-ingredient {
    font-weight: 600;
}
.product-info {
    margin-top: 30px;
    text-align: center;
    color: #676767;
    line-height: 1.71;
}
.package-doses-button {
    min-width: 120px;
    min-height: 40px;
    max-height: 40px;
    margin: 0px 8px 8px 0px;
    color: var(--secondary-color-2);
    border: solid 1px var(--secondary-color-2);
    background-color: var(--main-color-2);
}
.package-doses-button.active {
    border: 1px solid var(--accent-color-1);
    background-color: var(--accent-color-1);
    color: var(--main-color-2);
}
.product_table {
    display: none;
}
.product_table.active {
    display: block;
}
.package-row {
    display: flex;
    align-items: center;
    padding: 14px 23px 10px 30px;
    border: solid 1px #efefef;
    margin: 6px 0px;
}
.package-row:hover {
    border-color: var(--accent-color-1);
}
.package-pill-size {
    width: 10.2%;
    white-space: nowrap;
    margin-right: 10px;
}
.package-pill-image {
    width: 13.6%;
    margin-right: 10px;
}
.package-pill-price {
    width: 20.8%;
    white-space: nowrap;
}
.package-pill-buy {
    margin-left: auto;
    text-align: center;
}
.package-pill-dose,
.package-current-price {
    font-size: 16px;
    font-weight: bold;
}
.package-old-price,
.package-save {
    font-size: 12px;
    font-weight: 500;
    color: var(--error-color);
}
.package-save {
    text-align: center;
    line-height: 2;
}
.package-pill-price,
.package-pill-bonus {
    font-size: 12px;
    font-weight: 500;
    margin-right: 10px;
}
.add-to-cart-btn img {
    display: none;
}
.product-descr-menu {
    margin-top: 40px;
}
.descr-menu {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}
.descr-menu .site-button {
    width: 33.3333333%;
    min-width: 100px;
    min-height: 40px;
    max-height: 40px;
    color: var(--secondary-color-2);
    border: solid 1px var(--secondary-color-2);
    background-color: var(--main-color-2);
}
.descr-menu .site-button.active {
    border: 1px solid var(--accent-color-1);
    background-color: var(--accent-color-1);
    color: var(--main-color-2);
}
.descr-item,
.descr-item.testimonials-container {
    display: none;
    font-weight: 500;
}
.descr-item.active {
    display: block;
}
.product_detaled_title {
    font-size: 16px;
    font-weight: 700;
}
.product_detaled_text br {
    display: none;
}
table.shedule-tbl {
    width: 100%;
}
table.shedule-tbl td {
    border: 1px solid var(--secondary-color-2);
    padding: 5px;
    text-align: center;
}
.hide-column, 
.shedule-tbl-header,
.view-description {
    font-size: 13px;
    color: var(--secondary-color-3);
}
.package-view {
    display: flex;
    text-align: center;
    align-items: flex-end;
    margin-bottom: 15px;
}
.example-view {
    margin-right: 20px;
}
.package-ourbonus {
    display: flex;
    margin-top: 15px;
}
.package-example {
    width: 470px;
}
.delivery-title {
    font-weight: 700;
    line-height: 2;
    margin-bottom: 5px;
}
.ourbonus-block {
    margin-top: 30px;
}
.ourbonus-block ul li:before {
    content: url(../images/check.svg);
    display: block;
    padding-top: 4px;
    margin-right: 6px;
}
.ourbonus-block ul li {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}
/* pagination */
.pagination {
    display: none;
    padding-left: 0;
    list-style: none;
    border-radius: 0px;
    justify-content: center;
    margin-top: 11px;
}
.pagination.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.pagination .prev,
.pagination .next,
.pagination .page {
    font-weight: 600;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px var(--secondary-color-1);
    cursor: pointer;
}
.pagination .prev:hover,
.pagination .next:hover,
.pagination .page:hover {
    border-color: var(--theme-color-1);
    color: var(--theme-color-1);
}
.pagination .prev::after,
.pagination .next::after {
    border-color: var(--main-color-1);
    width: 7px;
    height: 7px;
    top: 15px;
    left: 14px;
}
.pagination .prev:hover:after,
.pagination .next:hover:after {
    border-color: var(--theme-color-1);
}
.pagination .prev::after {
    margin-right: 0px;
    margin-left: 3px;
    rotate: 225deg;
}
.page.active {
    border: none;
}
/* reviews */
.testimonials-container,
.testimonials-container.active {
    display: flex;
    flex-direction: column;
}
.review-block {
    margin-bottom: 18px;
    display: none;
}
.review-title {
    font-weight: 700;
}
.review-date,
.review-star {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: var(--secondary-color-3);
    margin-bottom: 5px;
}
.review-star * {
    margin-right: 3px;
}
/* our_policy */
div.title + div.title {
    display: none;
}
.custom-container:has(.about_us) {
    display: flex;
}
.custom-container:has(.about_us)::before {
    display: block;
    content: url('../images/about_image.jpg');
    margin-top: 55px;
}
.static-page:has(.about_us) {
    padding-left: 5%;
}
.info-pages div.title {
    display: none;
}
.our_policy * {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}
.our_policy p {
    margin-bottom: 0px;
}
.contact-us {
    display: flex;
    flex-wrap: wrap;
}
.contact-us-banner {
    width: 100%;
    margin-bottom: 66px;
}
.contact-us-body {
    margin-top: 30px;
}
.contact-us-descr {
    margin-top: 20px;
}
.order-banner {
    width: 100%;
    margin-bottom: 38px;
}
.contact-us-banner img,
.order-banner img {
    width: 100%;
}
.contact-us-info {
    max-width: 520px;
    font-weight: 500;
    min-height: auto;
}
#contact_note {
    font-weight: 400;
    margin-top: 25px;
}
.contact-info-block {
    margin-bottom: 25px;
}
.contact-info-title {
    font-weight: 700;
}
.form-field {
    width: 100%;
    margin-bottom: 18px;
}
.form-field input, 
.form-field textarea {
    width: 100%;
    min-height: 36px;
    padding: 5px;
}
.contact-us-fields {
    max-width: 384px;
}
.contact-us-titles div,
.order-titles div,
.form-field-title {
    line-height: 2.55;
    margin-bottom: 18px;
    text-align: right;
    font-weight: 700;
}
.captcha-field {
    display: flex;
    align-items: center;
}
.captcha-field .errors {
    width: 100%;
    text-align: right;
    margin-top: 5px;
}
.captcha-row {
    margin-bottom: 20px;
}
.captcha-row img {
    margin-right: 20px;
}
.captcha-row-input {
    width: calc(100% - 160px);
    margin-bottom: 0px;
    max-width: 130px;
}
.captcha-row-img {
    margin-right: 21px;
    margin-left: auto;
}
.submit-btn {
    min-height: 40px;
    width: 100%;
    margin-top: 20px;
}
.contact-info-text img {
    filter: brightness(0.1);
    max-height: 11px;
    width: 100%;
    max-width: 367px;
}
.contact-info-text {
    font-size: 12px;
    font-weight: 300;
    color: #999;
}
.order-block {
    max-width: 580px;
    margin: auto;
}
.order-block form {
    max-width: 420px;
    margin: 0px auto;
}
.order-status-description {
    font-weight: 300;
    margin-bottom: 35px;
}
.order-status-bunner,
.contact-us-img  {
    margin-top: 60px;
}
.order-status-bunner img,
.contact-us-img img { 
    width: 100%;
}
.form-field-title {
    display: none;
}
/* faq */
.ontop {
    display: none;
}
.faq_caption,
.question{
    font-size: 16px;
    font-weight: 700;
}
.faq_cont ul {
    padding: 0px;
}
.anchor {
    line-height: 2;
    text-decoration: underline;
}
.faq_let,
.faq_let + p {
    display: inline;
}
.faq_descr {
    margin-bottom: 20px;
}
.faq_let {
    font-weight: 700;
}
/* landing page */
.landing_page input {
    background-color: #fff;
}
.landing_page .submit-btn {
    color: #1c1c1c;
    background-color: #fff;
    display: inline-flex;
    margin: 0px auto;
    max-width: 260px;
}
.bgLandFooter {
    z-index: 1;
    background-color: #69696c;
    height: 45px;
    position: fixed;
    width: 100%;
    bottom: 0px;
    padding-right: 30px;
    box-sizing: border-box;
    border-top: 1px solid #fff;
}

.labding-footer {
    height: 45px;
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 1180px;
    min-width: 300px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    background: url(../images/app.png) no-repeat left bottom;
}

.labding-footer td {
    padding-left: 55px;
}
.captcha-row img {
    margin: 0px 0px 15px;
}

.labding-footer a {
    font-size: 14px;
    color: #232323;
    background-color: #fff;
    display: inline-block;
    padding: 3px 20px;
    text-decoration: none;
    margin-left: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.landind-side {
    position: relative;
    float: left;
    margin-top: 3px;
}

.landind-side .categories_list {
    border: 1px solid #dbdbdb;
    border-top: 0px;
}

.side_title {
    background: url("../images/conponent_header.png") no-repeat scroll;
    height: 42px;
    width: 190px;
    display: table-cell;
    vertical-align: middle;
    color: #383333;
    font: bold 16px Trebuchet MS;
    padding-left: 15px;
    line-height: 15px;
}

.banner-wrapper {
    position: relative;
    background: url(../images/banner_big.jpg) no-repeat;
    width: 100%;
    height: 244px;
}

.banner-wrapper-txt {
    color: #3e3f4a;
    font-size: 20px;
    padding-left: 30px;
    padding-top: 40px;
    width: 330px;
    font-weight: lighter;
}

.banner-wrapper-txt div {
    padding-top: 15px;
    font-size: 17px;
}

a.bannerLanding_btn {
    position: absolute;
    left: 30px;
    bottom: 15px;
    width: 165px;
    height: 64px;
    background: url(../images/bannerLanding_btn.png) no-repeat;
    color: #fff;
    font-size: 18px;
    line-height: 64px;
    padding-left: 70px;
    text-decoration: none;
}

.lan_corner,
#landCornerFull {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 999;
}

#landCornerFull {
    background: url(../images/land_corner_full.png) no-repeat;
    width: 599px;
    height: 599px;
    text-decoration: none;
}

.corner-titl {
    color: #fff;
    display: block;
    font-size: 26px;
    line-height: 28px;
    padding-left: 110px;
    padding-right: 245px;
    padding-top: 50px;
    text-align: right;
}

.features {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 1000px;
    margin: 20px auto;
    font-size: 14px;
    line-height: 1.57;
    color: #707070;
}
.features-btn-title {
    color: #1c1c1c;
}
.features-btn {
    max-width: 370px;
    box-sizing: border-box;
    padding-left: 38px;
}

.features-btn-item.active,
.features-btn-item.active:hover {
    border-color: #dfdfdf;
    box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.03);
}

.features-btn-item>img {
    position: absolute;
    width: 68px;
    top: calc(50% - 34px);
    left: -34px;
    filter: drop-shadow(0px 0px 5px #d2d2d291);
}

.features-btn-txt {
    line-height: 18px;
}

.features-img img {
    display: none;
    width: 230px;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.features-img img:first-child {
    display: inline;
}

.features-btn-item {
    padding: 15px 15px 18px 45px;
    border: 1px solid #fff;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    margin-bottom: 15px;
    background-color: #fff;
}

.landing-title {
    font-size: 18px;
    font-weight: 500;
    color: #222222;
    margin-bottom: 15px;
}

.download-switcher {
    display: inline-flex;
    padding: 5px;
}
.download-switcher span.site-button:nth-child(2) {
    margin: 0px 10px;
}
.landing-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 30px;
    text-align: center;
}
.download-pc {
    margin: 30px auto;
    max-width: 560px;
    box-sizing: border-box;
    text-align: center;
    margin-top: 40px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email-caption {
    margin-top: 20px;
    font-size: 16px;
    line-height: 25px;
    font-weight: bold;
}

.email-sub-caption {
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 20px;
}

.qr-code p,
.save-link p {
    font-size: 16px;
    padding: 20px 0px;
}

.landing-bottom-box {
    font-size: 13px;
    width: 30%;
}

.landing-bottom-box img {
    width: 45px;
}

.landing-bottom-box div {
    font-weight: bold;
    padding: 10px 0;
    color: #000;
}

.download-stage {
    display: none;
}

.download-stage.active {
    display: block;
}

.devForm input[type='text']:focus {
    border-color: #578aae;
}




.top-products-title {
    font-size: 24px;
    margin-bottom: 26px;
    font-weight: 700;
}
.slick-list {
    margin: 0px -10px;
}
.slick-slide {
    margin: 0px 10px;
}
.slick-prev,
.slick-next {
    position: absolute;
    top: 40%;
    left: 0px;
    z-index: 1;
    background-color: var(--main-color-1);
    width: 44px;
    height: 30px;
    outline: none;
    border: 1px solid var(--main-color-1);
    font-size: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.slick-prev::before,
.slick-next::before {
    display: block;
    content: url('../images/arrow_white.svg');
}
.slick-prev::before {
    transform: rotate(180deg);
}
.slick-next {
    left: auto;
    right: 0px;
}

/* #################  main page   ################### */
.main-page-title {
    padding-top: 48px;
    margin-bottom: 55px;
}
.products-by-ingredient {
    margin: 55px auto;
}
.ingredients-wrapper {
    max-width: 805px;
    margin: auto;
}
.ingredients-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 37px;
}
.ingredients-menu-item {
    width: 33.33333%;
    padding: 22px 15px 23px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    font-weight: 500;
    color: #676767;
    margin-bottom: -2px;
}
.ingredients-menu-item span {
    cursor: pointer;
}
.ingredients-menu-item.active {
    color: #050505;
    border-bottom: 2px solid #050505;
}
.ingredients-body-item {
    display: none;

}
.ingredient-item-wrapper {
    display: none;
    padding: 2px 16px 16px 0;
    border: solid 2px transparent;
    background-color: #fff;
    margin-bottom: 21px;
}
.ingredient-item-wrapper:hover {
    border-color: #e2ebe6;
}
.ingredients-body-item.active {
    display: flex;
    flex-direction: column;
}
.ingredients-wrapper .pill-descr {
    padding-right: 40px;
}
.ingredients-wrapper .pill-name a {
    font-size: 22px;
    font-weight: 600;
    line-height: 2;
}
.ingredients-wrapper .pill-ingredient {
    margin-bottom: 8px;
}
.ingredients-wrapper .pill-ingredient a {
    font-size: 14px;
    font-weight: 600;
}
.ingredients-wrapper .pill-text {
    line-height: 1.83;
    color: #676767;
    font-size: 12px;
    font-weight: 300;
}
.ingredients-wrapper .pill-total {
    padding: 0px;
    margin: 0px;
}
.ingredients-wrapper .pill-total-title,
.pill-dosages-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.71;
    color: #999;
}
.ingredients-wrapper .pill-total-title {
    font-weight: 400;
}
.ingredients-wrapper .pill-total-price {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.71;
}
.ingredients-wrapper .pill-buy {
    padding-top: 25px;
    display: flex;
    flex-direction: column;
}
.ingredients-wrapper .site-button {
    font-size: 12px;
    min-width: 152px;
    min-height: 36px;
    max-width: 200px;
}
.pill-dosages,
.ingredients-wrapper .pill-total {
    margin: 0px 0px 18px 0px;
}
.pill-dosages-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 160px;
}
.pill-dosages-list a {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.71;
    color: #050505;
}
.ingredients-wrapper .load-more {
    margin-top: 40px;
    font-size: 14px;
    min-width: 152px;
    min-height: 40px;
    max-width: 200px;
    background-color: #fff;
    border: 2px solid #86a093;
    color: #86a093;
}
.ingredients-wrapper .load-more:hover {
    background-color: #86a093;
    border-color: #86a093;
    color: #fff;
}
.main-page-info {
    background-color: #fdf9f2;
    padding: 20px 0px 78px;
}
.info-title.title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.73;
    letter-spacing: 0.3px;
    max-width: 804px;
    margin: 0px auto 32px;
}
.info-body-text {
    max-width: 982px;
    margin: 0px auto;
    text-align: center;
    font-size: 14px;
    line-height: 1.71;
}
.info-body .row .col-4 {
    max-width: 320px;
    margin: 0px auto;
}
.info-item-img-1,
.info-item-img-2,
.info-item-img-3 {
    margin: 60px auto 0px;
    width: 80px;
    height: 80px;
    background-image: url('../images/time.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
.info-item-img-2 {
    background-image: url('../images/lightning.svg');
}
.info-item-img-3 {
    background-image: url('../images/star.svg');
}
.info-item-img-1:hover {
    background-image: url('../images/time_hover.svg');
}
.info-item-img-2:hover {
    background-image: url('../images/lightning_hover.svg');
}
.info-item-img-3:hover {
    background-image: url('../images/star_hover.svg');
}
.info-item-text {
    margin-top: 27px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.85;
}
.captcha-row {
    display: flex;
    align-items: center;
    gap: .5rem;
}