@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
:root {
    --main-color-1: #232222;
    --main-color-2: #fff;
    --secondary-color-1: #b1b1b1;
    --secondary-color-2: #d5d5d5;
    --secondary-color-3: #828282;
    --accent-color-1: #ea5a0b;
    --accent-color-2: #c54e0c;
    --link-color-1: #2a65eb;
    --link-color: var(--link-color-1);
    --link-color-2: var(--link-color-1);
    --error-color: #86210f;

    --theme-color-1: #2865f1;
    --theme-color-2: #32286e;
    --theme-color-3: #c7c3de;
    --theme-success-color: #007d67;
    --theme-error-color: #e88b8b;
}
html {
    height: 100%;
}
body {
    font-family: 'Montserrat', 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%;
}
#wrapper {
    flex: 1 0 auto;
}
ul li {
    list-style: none;
}
table {
    border-collapse: collapse;
}
a {
    color: var(--link-color-1);
    transition-duration: .3s;
}
a:hover {
    color: var(--link-color-2);
    text-decoration: none;
}
input,
textarea {
    border: 1px solid var(--secondary-color-2);
    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;
    padding: 0px 15px;
    margin: 0px auto;
}
h2.title,
div.title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    margin: 34px 0px 29px;
}
.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 var(--main-color-1);
    background-color: var(--main-color-2);
    color: var(--main-color-1);
    text-align: center;
    font-weight: 600;
    padding: 5px 10px;
    cursor: pointer;
    transition-duration: .3s;
}
.site-button:hover {
    border: 1px solid var(--main-color-1);
    background-color: var(--main-color-1);
    color: var(--main-color-2);
}
.site-button:active,
.site-button:focus,
.site-button.active {
    border: 1px solid var(--main-color-1);
    background-color: var(--main-color-1);
    color: var(--main-color-2);
}
.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: 12px;
    width: 6px;
    height: 6px;
    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,
.show-less {
    width: auto;
    margin: 0px auto;
    display: inline-flex;
}
.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%;
    .category a {
        color: var(--main-color-1);
        font-size: 15px;
        font-weight: 500;
        &.after-arrow {
            padding: 0;
        }
        &.after-arrow::after {
            display: none;
        }
    }
}
.categories-menu-body .categories-list .category {
    display: block;
    border: none;
    padding: .25rem;
}
.load-more::before {
    content: var(--show-more);
}
.show-less::before {
    content: var(--show-less);
}
.categories-list .site-button.show-less::after {
    rotate: -45deg;
    top: 18px;
}
/* HEADER */
.header-title {
    text-transform: uppercase;
    margin-left: 6px;
}
.header-row {
    display: flex;
    align-items: center;
    height: 80px;
}
.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;
}
.support-phones img {
    height: 10px;
    filter: brightness(0.1);
}
.online-chat a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color-1);
    background-color: var(--accent-color-1);
    color: var(--main-color-2);
    min-height: 36px;
    min-width: 116px;
    margin-right: 20px;
    letter-spacing: 0.13px;
    font-size: 13px;
}
.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: 22px;
}
.cart-menu,
.language-menu,
.currency-menu,
.order-status,
.close-menu {
    margin-left: 10px;
    cursor: pointer;
}
.main-header {
    position: relative;
}
.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;
}
.cart-menu-body .menu-wrapper,
.main-menu-body .menu-wrapper {
    max-width: 320px;
    margin-right: auto;
    min-height: 100%;
    padding-bottom: 25px;
}
.main-menu-body .cart-menu .cart-count {
    top: 0;
}
.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 var(--secondary-color-2);
    padding: 5px 20px;
    position: relative;
}
.menu-title {
    font-size: 20px;
    font-weight: 500;
    margin-right: 9px;
}
.mobile-menu-item {
    display: none;
    padding: 0px 20px 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--secondary-color-2);
}
.mobile-menu-item.support-phones {
    border-top: 1px solid var(--secondary-color-2);
    padding: 12px;
}
.mobile-menu-item,
.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.active .dropdown-title:after,
.gifts-wrapper.active .gifts-title::after {
    rotate: -45deg;
    margin: 3px 0px 0px;
}
.dropdown-container.active .dropdown-options {
    display: block;
}
.dropdown-title {
    min-height: 36px;
    border: 1px solid #ccc;
    padding: 5px 15px;
    cursor: pointer;
    text-overflow: ellipsis;
}
.dropdown-title::after,
.gifts-wrapper .gifts-title::after {
    width: 8px;
    height: 8px;
    rotate: 135deg;
    margin-bottom: 3px;
}
.dropdown-title .dropdown-option {
    padding: 0px;
}
.dropdown-options {
    display: none;
    margin-top: 7px;
    width: 100%;
    padding: 5px 0px 10px;
    border: 1px solid #ccc;
    max-height: calc(80vh - 320px);
    min-height: 85px;
    overflow-y: auto;
}
.dropdown-option {
    padding: 5px 10px;
    text-overflow: ellipsis;
}
.dropdown-option:hover,
.dropdown-option.active {
    cursor: pointer;
    color: var(--link-color-1);
}
.set-changes .site-button {
    margin-top: 32px;
    background-color: var(--main-color-1);
    color: var(--main-color-2);
}
/* cart */
.cart-menu {
    position: relative;
}
.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: 12px;
    width: 18px;
    height: 18px;
}
.empty-cart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    padding: 200px 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;
}
.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: 12px;
    color: var(--secondary-color-1);
}
.cart-pill-pack-price {
    font-weight: bold;
    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: bold;
}
.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(--accent-color-1);
    color: var(--main-color-2);
    display: inline-flex;
    align-items: center;
}
.cart-total {
    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: 54px;
    font-size: 13px;
    font-weight: bold;
}
.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-item .site-button {
    min-width: 100%;
    min-height: 38px;
    width: 100%;
}
.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;
}


.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-right: 15px;
}
.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 {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding: 10px;
    font-weight: bold;
}
.pill-titles > div:nth-child(1),
.insurance-title {
    width: calc(45% + 111px);
    order: 1;
}
.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: 10px;
    border: 1px solid #efefef;
    margin-top: -1px;
}
.insurance-title {
    display: flex;
}
.insurance-title span,
.shipping-title {
    display: block;
    min-width: 180px;
    font-weight: 700;
    padding: 0px 10px;
}
.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;
}
.shipping_methods {
    display: flex;
    align-items: center;
}
.shipping_methods * {
    line-height: 1;
}
.shipping_methods .shipping-name {
    display: flex;
    align-items: center;
}
.shipping_method {
    margin-right: 28px;
    white-space: nowrap;
}
.shipping_methods label {
    margin-bottom: 0px;
}
input[type="radio"] + span::before {
    display: block;
    margin-right: 7px;
    content: url('../images/radio_b_off.svg');
}

input[type="radio"]:checked + span::before {
    content: url('../images/radio_b_on.svg');
}
/* FOOTER */
.payment-methods.order_status,
.payment-methods.contact_us,
.payment-methods.static_page,
.payment-methods.reviews {
    display: none;
}
.payment-methods {
    margin: 50px auto -30px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.payment-methods img {
    min-height: 25px;
    max-height: 30px;
}
.footer {
    background-color: var(--theme-color-2);
    margin-top: 80px;
}
.footer-copyright {
    text-align: center;
    height: 72px;
    border-top: 1px solid #494565;
}
.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: #aba6c6;
}
.footer-link a,
.footer-label {
    font-weight: 400;
    color: #fff;
    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;
    border: 1px solid #fff;
    padding: 0px 12px;
    font-size: 13px;
}
#subscribe_to_news_form [name="email"]:focus {
    border-color: var(--accent-color-1);
}
#subscribe_to_news {
    width: 48px;
    height: 32px;
    background-color: var(--accent-color-1);
    outline: 0px;
    border: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-container__payments {
    margin: 0px auto;
}
/* categories list */
.categories-list .site-button {
    background-color: transparent;
    border-color: var(--theme-color-3);
    color: var(--main-color-2);
    font-weight: 300;
    margin-top: 20px;
    position: relative;
    width: 100%;
}
.categories-list .site-button::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 15px;
    width: 7px;
    height: 7px;
    rotate: 135deg;
    border-top: 2px solid var(--theme-color-3);
    border-right: 2px solid var(--theme-color-3);
}
.categories-list {
    width: 280px;
    background-color: #32286e;
    padding: 10px 20px 20px;
    .category {
        display: none;
        padding: 8px 0px;
        border-bottom: 1px solid #494565;
    }
    .category a {
        font-size: 13px;
        font-weight: 300;
        color: var(--main-color-2);
        display: block;
    }
    .category .after-arrow::after {
        top: 5px;
        right: 1px;
        width: 7px;
        height: 7px;
    }
}
/* 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;
}
.products-banner {
    display: none;
    background: url("../images/products_banner.jpg") no-repeat center top;
    background-size: cover;
    max-height: 520px;
    height: 40vw;
    align-items: center;
    margin-bottom: 20px;
}
.products-landing-banner {
    display: none;
    background: url('../images/landing-banner.png') no-repeat left top;
    max-height: 600px;
    height: 600px;
    max-width: 1366px;
    margin: 83px auto 0px;
}
.products-banner .custom-container {
    width: 100%;
}
.products-landing-banner .custom-container {
    padding-top: 40px;
    padding-left: 83px;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0px;
    max-width: 100%;
}
.products-landing-title-1 {
    font-size: 28px;
    font-weight: 500;
    color: var(--theme-color-2);
    margin-bottom: 24px;
}
.products-landing-title-1 span {
    font-weight: 700;
}
.products-landing-title-2 {
    font-size: 16px;
    color: #646074;
    max-width: 620px;
}
.products-landing-button{
    background-color: transparent;
    margin: auto auto 0px;
    display: inline-flex;
    border-color: var(--link-color-1);
    color: var(--link-color-1);
    font-size: 16px;
    min-width: 220px;
}
.products-landing-button:hover{
    background-color: var(--link-color-1);
    color: var(--main-color-2);
}
.products-landing-card {
    position: absolute;
    width: 240px;
    height: 240px;
    background-color: var(--main-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0.8;
    padding: 10px;
}
.products-landing-card:hover{
    box-shadow: 6px 6px 16px 0 rgba(153, 146, 186, 0.07);
    opacity: 1;
}
.products-landing-card p.products-landing-text {
    font-size: 14px;
    font-weight: 400;
    margin-top: 28px;
    padding: 0px 10px;
    color: var(--main-color-1);
}
.products-landing-card-1 {
    top: 189px;
    left: 83px;
}
.products-landing-card-2 {
    top: 236px;
    left: 343px;
}
.products-landing-card-3 {
    top: 189px;
    left: 603px;
}
.products-landing-card-4 {
    top: 50px;
    left: 865px;
    width: 174px;
    height: 100px;
    opacity: 1;
}
.products-landing-card-5 {
    top: 135px;
    left: 1094px;
    width: 174px;
    height: 100px;
    opacity: 1;
}
.products-landing-card-4 div,
.products-landing-card-5 div {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.products-landing-card p {
    margin-bottom: 0px;
    font-size: 13px;
    font-weight: 600;
    color: var(--link-color-1);
    text-align: center;
}
.products-landing-card .stars img {
    margin: 1.5px;
}
.products-landing-card-4 div::after,
.products-landing-card-5 div::after {
    content: '';
    position: absolute;
    border: 12px solid transparent;
    border-top: 12px solid white;
    bottom: -34px;
    right: 64px;
}




.index .products-banner,
.index .products-landing-banner {
    display: flex;
}
.products-banner-title-1 {
    color: var(--theme-color-2);
    font-size: calc(10px + 3vw);
}
.products-banner-title-2 {
    color: var(--theme-color-1);
    font-size: calc(16px + 5vw);
    font-weight: 800;
    line-height: 1.2;
}
.products-banner,
.products-landing-banner,
.products-title {
    width: 100%;
}
h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
}
.products-subtitle h3 {
    margin-top: 20px;
}
.products-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-direction: column;
    align-items: center;
    border: 1px solid transparent;
    padding: 0px 20px 28px;
    height: 100%;
    text-align: center;
}
.item-card:hover {
    border: 1px solid var(--theme-color-1);
}
.discount-icon {
    position: absolute;
    top: 10px;
    right: 10px;
}
.pill-image {
    min-height: 120px;
}
.pill-name a {
    color: var(--main-color-1);
    font-size: 17px;
    font-weight: 700;
}
.pill-ingredient {
    color: var(--secondary-color-3);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 16px;
}
.pill-price {
    color: var(--link-color-1);
    font-size: 15px;
    font-weight: bold;
    margin-top: auto;
    padding: 12px 0px 10px;
}
.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;
}
.ed-packs-page .item-card {
    padding-top: 16px;
}
.ed-packs-page .pill-name a {
    padding: 10px 0;
    display: block;
}
/* Product page */
.product-container {
    padding-right: 0px;
    padding-left: 19px;
}
.product-wrapper {
    display: flex;
    flex-wrap: wrap;
}
h2 {
    font-size: 24px;
    font-weight: bold;
}
.product-description {
    display: flex;
    align-items: center;
}
.package-doses-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.package-doses-title {
    width: 100%;
    margin-bottom: 3px;
}
.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 {
    border: 1px solid #efefef;
    padding: 16px 21px 16px;
    margin-bottom: 8px;
    display: none;
}
.review-title {
    font-weight: 700;
    margin-bottom: 8px;
}
.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;
}
.review-text {
    margin-bottom: 7px;
}
/* our_policy */
.info-pages div.title {
    display: none;
}
.our_policy * {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}
.our_policy p {
    margin-bottom: 0px;
}
.about_us {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-image: url('../images/about_us.jpg');
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 11vw;
}
.about_us p {
    order: 2;
}
.about_us p:last-child {
    width: 50%;
    padding: 0px 0px 0px 24px;
    font-size: 13px;
    font-weight: 600;
    order: 1;
    margin: 0px 30% 90px 0px;
}
.about_us br {
    display: none;
    order: 2;
}
.about_us p {
    width: 30%;
    font-weight: 500;
    line-height: 1.57;
    letter-spacing: 0.14px;
    margin: 0px auto;
    order: 2;
}
.contact-us {
    display: flex;
    flex-wrap: wrap;
}
.contact-us-banner {
    width: 100%;
    margin-bottom: 66px;
}
.order-banner {
    width: 100%;
    margin-bottom: 38px;
}
.contact-us-banner img,
.order-banner img {
    width: 100%;
}
.contact-us-form {
    width: 40%;
    min-width: 450px;
    margin-right: 5%;
}
.contact-us-info {
    max-width: 520px;
    font-weight: 500;
    min-height: auto;
}
#contact_note {
    font-weight: 400;
}
.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: 34px;
    padding: 5px;
}
.contact-us-titles div,
.order-titles div {
    line-height: 2.43;
    margin-bottom: 18px;
    text-align: right;
    font-weight: 700;
}
.captcha-field {
    display: flex;
    flex-wrap: wrap;
    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,
.submit-btn:hover {
    background-color: var(--main-color-1);
    color: var(--main-color-2);
    width: 100%;
    margin-top: 20px;
}
.contact-info-text img {
    filter: brightness(0.1);
    max-height: 11px;
}
.order-block {
    max-width: 580px;
    margin: auto;
}
.order-block form {
    max-width: 420px;
    margin: 0px auto;
}
.order-status-description {
    font-weight: 500;
    margin-bottom: 35px;
    text-align: center;
}
/* faq */
.ontop {
    display: none;
}
.faq_caption,
.question{
    font-size: 16px;
    font-weight: 700;
}
.faq_cont ul {
    padding: 0px;
}
.anchor {
    line-height: 2;
    font-weight: 500;
}
.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;
}

