@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
    --main-color-1: #121313;
    --main-color-2: #ffffff;
    --main-button: #86210f;
    --main-button-hover: #c1260b;
    --secondary-color-1: #b1b1b1;
    --secondary-color-2: #d5d5d5;
    --secondary-color-3: #828282;
    --accent-color-1: #86210f;
    --accent-color-2: #c1260b;
    --link-color: #86210f;
    --link-color-hover: #c1260b;
    --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: 'Poppins', sans-serif;
    font-size: 14px;
    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);
    transition-duration: .3s;
}
a:hover,
.footer-link a:hover,
.categories-list .category a:hover {
    color: var(--link-color-hover);
    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(--main-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;
    height: 100%;
    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: 14px;
    font-weight: 500;
    line-height: 1.71;
    color: #b1b1b1;
}
.site-button {
    min-width: 160px;
    min-height: 44px;
    max-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main-button);
    background-color: var(--main-button);
    color: var(--main-color-2);
    text-align: center;
    font-weight: 500;
    padding: 5px 10px;
    cursor: pointer;
    transition-duration: .3s;
}
.site-button:hover,
.site-button:active,
.site-button:focus,
.site-button.active{
    border-color: var(--main-button-hover);
    background-color: var(--main-button-hover);
    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-2);
    border-color: var(--accent-color-2);
    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: 30px auto 0px;
    display: inline-flex;
    position: relative;
}
.load-more::before {
    content: var(--show-more);
}
.show-less::before {
    content: var(--show-less);
}
/* HEADER */
#header {
    border-bottom: 1px solid #eee;
    margin-bottom: 14px;
}
#header.index,
#header.product {
    background: url('../images/header_banner.jpg') no-repeat center;
    background-size: cover;
}
#header.index .bottom-header,
#header.product .bottom-header {
    display: flex;
}
.header-title {
    text-transform: uppercase;
    text-align: center;
    line-height: 1.1;
}
.header-row {
    display: flex;
    align-items: center;
    height: 59px;
}
.header-buttons {
    display: flex;
    align-items: center; 
    min-width: 342px;
    justify-content: flex-end;
}
.site-name {
    margin: 0px auto;
}
.site-name a {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 3.36px;
    color: #121313;
}
.support-phones img {
    height: 15px;
    max-width: 300px;
}
.online-chat a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #050505;
    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 {
    background-color: #050505;
}
.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;
}
.bottom-header {
    height: 333px;
    max-width: 550px;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.65;
    letter-spacing: 3.74px;
    text-align: center;
    margin: auto;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
}
.bottom-header div:last-child {
    font-size: 30px;
    font-weight: 500;
    line-height: 2.2;
    letter-spacing: 3px;
    color: #86210f;
}
.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;
}
.categories-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    font-weight: 500;
    color: var(--main-color-1);
    font-size: 16px;
    img {
        filter: brightness(0);
    }
    &:hover {
        color: var(--link-color);
    }
}
.categories-menu-body .menu-wrapper {
    max-width: 480px;
}
.categories-menu-body .categories-list {
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: .5rem;
    padding: 1.5rem .5rem;
    background: none;
    width: 100%;
    li.category {
        display: block;
    }
    a {
        color: var(--main-color-1);
        font-size: 15px;
        font-weight: 500;
        &.after-arrow {
            padding: 0;
        }
        &.after-arrow::after {
            display: none;
        }
        &:hover {
            color: var(--link-color);
        }
    }
}
.categories-menu-body .category {
    display: block;
    border: none;
    padding: .25rem;
}
.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;
}
.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;
    display: flex;
    align-items: center;
}
.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);
}
.set-changes .site-button {
    margin-top: 32px;
    min-height: 40px;
}
/* cart */
.cart-menu {
    position: relative;
}
.edit-cart {
    margin: 15px auto;
    text-align: center;
}
.edit-cart a {
    font-size: 13px;
    font-weight: 400;
    color: #121313;
    text-decoration: underline;
}
.cart-count {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-button);
    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;
    transition-duration: .3s;
}
.cart-checkout > div:hover,
.cart-checkout > div:hover .chechout.site-button {
    background-color: var(--accent-color-2);
    border-color: var(--accent-color-2);
}
.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 0px 10px 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: #676767;
    text-decoration: underline;
}
.pill-titles {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding: 10px 0px 10px 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: 13px 0px 13px 10px;
    border: 1px solid #efefef;
    margin-top: -1px;
}
.shipping-row {
    background-color: #f2f4f5;
}
.insurance-title {
    display: flex;
}
.insurance-title span,
.shipping-title {
    display: block;
    min-width: 180px;
    font-weight: 700;
    padding-left: 10px;
    padding-right: 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');
    cursor: pointer;
}

input[type="radio"]:checked + span::before {
    content: url('../images/radio_b_on.svg');
}
/* FOOTER */
.footer {
    margin-top: 80px;
    border-top: 1px solid #e2e2e2;
}
.footer-copyright {
    text-align: center;
    height: 53px;
    border-top: 1px solid #e2e2e2;
}
.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: #b3b3b3;
}
.footer-copyright-sitename a {
    display: flex;
    align-items: center;
}
.footer-copyright-sitename .header-title {
    font-size: 18px;
    font-weight: 500;
    color: #121313;
}
.footer-link a,
.footer-label {
    font-weight: 500;
    color: #121313;
    margin-bottom: 12px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
}
.footer-link {
    width: 33.33333%;
    margin-bottom: 12px;
}
.footer-items {
    display: flex;
    padding: 43px 0px 33px;
}
.footer-subscribe {
    margin-left: auto;
}
.errors {
    color: var(--accent-color-1);
}
.success {
    color: var(--theme-success-color);
}
.subscribe-form .errors, 
.subscribe-form .success {
    margin-top: 5px;
    font-size: 10px;
}
#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 #e8e8e8;
    padding: 0px 12px;
    font-size: 13px;
}
#subscribe_to_news_form [name="email"]:focus {
    border-color: #121313;
}
#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;
}
/* categories list */
/* .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;
    padding: 20px 24px;
    background-color: #f2f4f5;
    display: flex;
    flex-direction: column;
}
.categories-list .category {
    display: none;
}
.categories-list .category a {
    font-size: 13px;
    line-height: 2;
    display: block;
    color: #121313;
    font-weight: 500;
}
.categories-menu-body .categories-list .category a {
    font-size: 15px;
}
/* Products page */
.products-by-ingredient {
    display: none;
}
.side_search form {
    display: flex;
    max-height: 40px;
}
.side_search .site-button {
    background-color: var(--main-color-1);
    border: 1px solid var(--main-color-1);
    min-height: 40px;
    min-width: 120px;
    font-size: 13px;
    font-weight: 300;
}
.side_search .site-button img {
    margin-right: 10px;
}
.products-search {
    margin-bottom: 16px;
}
#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);
}
.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-title {
    width: 100%;
}
.products-title h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 3.3;
    letter-spacing: 0.2px;
    margin: 0px;
    
}
.products-subtitle {
    border-bottom: 1px solid #ddd;
    margin-bottom: 8px;
}
.products-subtitle h3 {
    font-size: 22px;
    font-weight: bold;
    line-height: 2.82;
    margin: 0px;
}
.products-container {
    padding-right: 0px;
    padding-left: 24px;
}
.products-items {
    display: flex;
    flex-wrap: wrap;
}
.products-item {
    width: 100%;
    max-width: 100%;
    padding: 0px 10px 16px;
    display: none;
}
.item-card {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    padding: 0px 20px 28px;
    height: 100%;
    text-align: center;
}
.item-card:hover {
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.13);
    border: solid 1px #e2e2e2;
}
.pill-info{
    text-align: left;
}
.discount-icon {
    position: absolute;
    top: 10px;
    right: 10px;
}
.pill-image {
    min-width: 140px;
}
.pill-name a {
    color: var(--main-color-1);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.09;
}
.pill-ingredient {
    color: var(--main-color-1);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-top: 10px;
    margin-bottom: 16px;
}
.pill-text {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.69;
    color: #676767;
}
.pill-description{
    font-size: 13px;
    font-weight: 300;
    color: #676767;
    line-height: 1.69;
}
.pill-price {
    color: var(--link-color);
    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;
}
/* Product page */
.product-title {
    font-size: 22px;
    font-weight: 600;
}
.product-info-ingredient {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}
.product-title span {
    font-size: 20px;
    font-weight: 300;
}
.product-container {
    padding-right: 0px;
    padding-left: 23px;
}
.product-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.product-description {
    display: flex;
    align-items: center;
}
.package-doses-list {
    display: flex;
    flex-wrap: wrap;
}
.package-doses-title {
    width: 100%;
    margin-bottom: 3px;
    font-size: 15px;
    font-weight: 600;
    margin: 28px 0px 15px;
}
.package-doses-title.grey-title {
    margin: 20px 0px 10px;
    font-size: 14px;
    font-weight: 500;
}
.package-doses-button {
    font-size: 14px;
    min-width: 80px;
    min-height: 32px;
    max-height: 32px;
    margin: 0px 8px 8px 0px;
    color: #676767;
    border: solid 1px var(--secondary-color-2);
    background-color: var(--main-color-2);
}
.package-doses-button.active {
    border: 1px solid var(--main-color-1);
    background-color: var(--main-color-1);
    color: var(--main-color-2);
}
.product_table {
    display: none;
}
.product_table.active {
    display: block;
}
.package-row {
    display: flex;
    align-items: center;
    padding: 11px 21px 11px 10px;
    border: solid 1px #efefef;
    margin: 12px 0px;
}
.package-row:hover {
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.13);
    border: solid 1px #e2e2e2;
}
.package-pill-size {
    width: 14.5%;
    white-space: nowrap;
    margin-right: 10px;
}
.package-pill-image {
    margin-right: 18px;
}
.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: 10px;
    font-weight: 500;
    color: var(--error-color);
}
.package-save {
    text-align: center;
    line-height: 2;
}
/* .package-hitsate {
    width: 44px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #efefef;
    background-color: #fff;
}
.package-hitsate.selected {
    background-color: #f6f6f6;
} */
.package-pill-bonus,
.package-per-pill-price {
    color: #676767;
}
.package-pill-price,
.package-pill-bonus {
    font-size: 12px;
    font-weight: 500;
    margin-right: 10px;
}
.add-to-cart-btn {
    min-height: 40px;
}
.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(--main-color-1);
    background-color: var(--main-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 {
    padding: 10px 0px;
    display: none;
}
.review-title {
    font-weight: 700;
    margin-bottom: 3px;
}
.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;
    font-weight: 300;
}
/* our_policy */
.info-pages div.title {
    display: none;
}
.our_policy * {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}
.our_policy p {
    margin-bottom: 0px;
}
.contact-us {
    background-image: url('../images/contact_us.jpg');
    background-repeat: no-repeat;
    background-position: top 15px right 0px;
}
.contact-us h2.title {
    margin-bottom: 12px;
}
.contact-us-wrapper {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    opacity: 0.91;
    padding: 24px 24px 24px 0px;
}
.order-banner {
    width: 100%;
    margin-bottom: 38px;
}
.contact-us-banner img,
.order-banner img {
    width: 100%;
}
.contact-us-form {
    width: 64%;
}
.contact-us-info {
    width: 36%;
    padding: 0px 15px;
}
#contact_note {
    font-size: 11px;
    font-weight: 300;
    line-height: 1.55;
    color: #676767;
    margin-top: 24px;
}
.custom-input::-webkit-input-placeholder {
    color: #fff;
    font-size: 12px;
}
.custom-input::-moz-placeholder {
    color: #fff;
    font-size: 12px;
}
.custom-input:-ms-input-placeholder {
    color: #fff;
    font-size: 12px;
}
.custom-input:-moz-placeholder {
    color: #fff;
    font-size: 12px;
}
.custom-input::placeholder {
    color: #fff;
    font-size: 12px;
}
.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: 30px;
    padding: 0px 5px;
}
.contact-us-titles div,
.order-titles div {
    line-height: 2.43;
    margin-bottom: 18px;
    text-align: right;
    font-size: 13px;
    font-weight: 400;
}
.captcha-field {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}
.captcha-field .errors {
    width: 100%;
    text-align: center;
    margin-top: 5px;
}
.captcha-row {
    margin-bottom: 20px;
}
.captcha-row img {
    margin-right: 20px;
}
.captcha-row-input {
    margin-bottom: 0px;
    width: 140px;
    margin-top: 20px;
}
.submit-btn,
.submit-btn:hover {
    border: 1px solid var(--main-color-1);
    background-color: var(--main-color-1);
    color: var(--main-color-2);
    width: 100%;
    margin-top: 20px;
}
.contact-info-text {
    font-size: 13px;
    line-height: 1.54;
    margin-bottom: 40px;
}
.contact-info-text img {
    height: 15px;
    width: 100%;
    width: calc(100% + 35px);
}
.order-container {
    background-image: url('../images/order_status.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-block {
    max-width: 600px;
    margin: auto;
    background-color: #ffffffee;
    padding: 10px 41px 56px;
}
.order-block form {
    max-width: 400px;
    margin: 0px auto;
}
.order-block .submit-btn {
    margin-top: 0px;
    border-color: var(--main-button);
    background-color: var(--main-button);
    min-height: 40px;
}
.order-block .title {
    text-align: center;
}
.order-status-description {
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 35px;
    text-align: center;
}
.custom-container:has(.about_us) {
    background-image: url('../images/about_us.jpg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top 15px right 0px;
    height: 616px;
}
.about_us {
    max-width: 700px;
    padding: 26px 47px 76px 0;
    opacity: 0.91;
    background-color: #fff;
}
/* faq */
.ontop {
    display: none;
}
.faq_caption,
.question{
    font-size: 16px;
    font-weight: 700;
}
.faq_cont ul {
    padding: 0px;
}
.anchor, 
.anchor:hover {
    line-height: 2;
    font-weight: 500;
    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;
}

.bottom-banner {
    margin-bottom: -80px;
    margin-top: 100px;
}
.bottom-bg {
    height: 43.3vw;
    background-image: url('../images/app_banner.jpg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}
.bottom-button .site-button,
.bottom-button .site-button:hover {
    display: inline-flex;
    background-color: var(--main-color-1);
    border-color: var(--main-color-1);
}
.bottom-button .site-button img {
    margin-right: 10px;
}
.bottom-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    height: 100%;
}
.bottom-text {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.79;
    letter-spacing: 0.56px;
}
.bottom-accent-text {
    margin: 3% auto 6% 0px;
}
.bottom-accent-text span {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.9;
    letter-spacing: 0.32px;
    color: var(--accent-color-1);
    border-bottom: 2px solid var(--accent-color-1);
}

.products-item {
    /* display: none; */
    position: relative;
    padding: 12px 22px 15px 2px;
    border: solid 1px transparent;
    background-color: #fff;
    z-index: 0;
    width: 100%;
}
.products-item:hover {
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.13);
    border: solid 1px #e2e2e2;
    z-index: 1;
}
.products-item .pill-buy {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 150px;
    margin-left: auto;
}
.products-item .site-button {
    font-size: 13px;
    font-weight: 500;
    min-width: 150px;
    min-height: 36px;
    max-width: 200px;
}
.pill-dosages-list a {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.71;
    color: var(--main-color-1);
    margin-right: 3px;
}
.pill-dosages-list a:hover {
    color: var(--link-color-hover);
}
.pill-total-ptice {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    color: #121313;
}
.pill-descr {
    padding-right: 40px;
    padding-left: 21px;
}
.pill-buy-btn {
    margin-top: auto;
}
.pill-dosages-title,
.pill-total-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71;
    color: #b1b1b1;
}
.pill-dosages,
.pill-total {
    margin-bottom: 12px;
}
.discount-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 70px;
    height: 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    background-image: url('../images/discount_black.svg');
}
.products-item:hover .discount-icon {
    background-image: url('../images/discount_red.svg');
}