@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;900&family=Roboto:wght@300;400;500;700;900&display=swap');
:root {
    --main-color-1: #252525;
    --main-color-2: #ffffff;
    --main-button: linear-gradient(to bottom, #c3d1f7, #91adf9);
    --main-button-hover: linear-gradient(to bottom, #c3d1f7, #4b77f2);
    --secondary-color-1: #8b8b8b;
    --secondary-color-2: #e4e4e4;
    --secondary-color-3: #aeaeae;
    --accent-color-1: #86210f;
    --accent-color-2: #c1260b;
    --link-color: #4b77f2;
    --link-color-hover: #4b77f2;
    --error-color: #ff7171;

    --theme-color-1: #2865f1;
    --theme-color-2: #32286e;
    --theme-color-3: #c7c3de;
    --theme-success-color: #007d67;
    --theme-error-color: #e88b8b;


    --grey-color-1: #e4e4e4;
    --grey-color-2: #8b8b8b;
    --grey-color-3: #aeaeae;
    --grey-color-4: #f0f0f0;

    --black-color-1: #353535;
    --black-color-2: #252525;

    --blue-color-1: #bacbf7;
    --blue-color-2: #4b77f2;

    --accent-color-1: #97af10;
    --accent-color-2: #8d9e1c;
    --accent-color-3: #ff8206;

    --secondary-button: linear-gradient(to bottom, #91adf9, #c3d1f7);
    --secondary-button-hover: linear-gradient(to bottom, #4b77f2, #c3d1f7);
    --gradient-main: linear-gradient(46deg, #f0f2d3 40%, #d9edfa 80%);
    --gradient-side: linear-gradient(46deg, rgba(247, 228, 220, 0.4), rgba(217, 237, 250, 0.4), rgba(246, 247, 225, 0.4));
}
html {
    height: 100%;
}
body {
    font-family: 'Roboto', 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,
.category a:hover {
    color: var(--blue-color-2);
    text-decoration: none;
}
input,
textarea {
    border: 1px solid var(--grey-color-1);
    outline: none;
    border-radius: 0px;
}
input:not(.site-button):focus,
textarea:focus,
input.text:focus,
input:focus-visible {
    outline: 0px solid transparent;
    border: 1px solid var(--blue-color-1);
}
input:not(:focus):not(:placeholder-shown):invalid  {
    border-color: var(--error-color);
}
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: 38px;
    border: 1px solid var(--grey-color-4);
    padding: 13px;
    color: var(--main-color-1);
    font-size: 14px;
}
input.text::placeholder {
    font-size: 12px;
    letter-spacing: 0.3px;
    color: var(--grey-color-3);
}
.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: 500;
    line-height: 1;
    margin: 42px 0px 28px;
}
.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;
    box-shadow: 0.6px 0.8px 16px 0 rgba(153, 179, 249, 0.29);
    background-image: var(--main-button);
}
.site-button:hover {
    border-color: var(--main-button-hover);
    background-color: var(--main-button-hover);
    color: var(--main-color-2);
}
.site-button:active,
.site-button:focus,
.site-button.active {
    box-shadow: 0.6px 0.8px 16px 0 rgba(153, 179, 249, 0.29);
    background-image: var(--main-button-hover)
}
.site-button.secondary {
    background: var(--secondary-button);
}
.site-button.secondary:hover,
.site-button.secondary:focus,
.site-button.secondary:active
.site-button.secondary {
    background: var(--secondary-button-hover);
}
.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(--main-color-1);
    border-right: 2px solid var(--main-color-1);
    rotate: 45deg;
}
.m--1 {
    margin: 0px -1px;
}
.load-more,
.show-less {
    width: 130px;
    min-width: auto;
    min-height: 38px;
    margin: 4px calc((100% - 130px) / 2);
    display: inline-flex;
    position: relative;
    font-size: 13px;
}
.categories-list .load-more,
.categories-list .show-less {
    margin: 10px 16px;
}
.load-more::after,
.show-less::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 7px;
    margin-left: 15px;
    background: url("../images/more.svg") no-repeat;
    background-size: contain;
}
.show-less::after {
    transform: scaleY(-1);
}
/* HEADER */
#header_breadcrumb {
    font-size: 11px;
    font-weight: 300;
    line-height: 1.64;
    letter-spacing: 3px;
    color: #9d9d9d;
    margin-bottom: 19px;
}
.breadcrumbs a, .breadcrumbs span {
    color: var(--main-color-1);
    letter-spacing: 0.28px;
}
.breadcrumbs a:hover {
    color: var(--link-color-hover);
}
#header {
    margin-bottom: 35px;
}
#header.index::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	--width: 1366px;
	--height: 470px;
	height: var(--height);
	width: 100%;
	z-index: -1;
	--gw: calc(var(--height) * 0.8 + var(--width) * 0.7);
	--gl: calc((100vw - var(--width)) / 2 * 0.72);
	background: linear-gradient(180deg, transparent 50px, #fff var(--height)),
		linear-gradient(
			46deg,
			#f0f2d3 calc(var(--gl) + 0.1 * var(--gw)),
			#fff calc(var(--gl) + 0.71 * var(--gw)),
			#d9edfa calc(var(--gl) + 0.9 * var(--gw)))
		no-repeat;
}
#header.product {
    margin-bottom: 11px;
}
.header-title {
    /* text-transform: uppercase; */
    text-align: center;
    line-height: 1.1;
}
.header-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 68px;
}
.header-left {
    display: flex;
}
.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;
    gap: 10px;
    line-height: 1.1;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.28px;
    color: var(--black-color-1);
    margin-left: 10px;
}
.online-chat {
    max-height: 36px;
    min-height: 36px;
    min-width: 120px;
    color: white;
}
.header-row .online-chat {
    margin-right: 20px;
}
.menu-body .support-phones img {
    height: 28px;
}
.lz_text_link::before {
    content: var(--live-chat);
}
.contact-us .lz_text_link {
    text-align: right;
    display: inline-block;
}
.contact-us .lz_text_link::before {
    content: var(--contact-us-live-chat);
    color: var(--link-color);
}
.contact-us .lz_text_link img {
    display: none;
}
.contact-info-text img {
    width: 100%;
    max-width: 350px;
}
.lz_text_link {
    color: var(--main-color-2);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-direction: row-reverse;
}
.lz_text_link img {
    width: 16px;
    height: 16px;
}
/* header menus */
.main-menu {
    cursor: pointer;
    margin-right: 22px;
}
.cart-menu,
.language-menu,
.currency-menu,
.order-status,
.close-menu {
    align-self: flex-start;
    margin: 9px 0 0 10px;
    cursor: pointer;
}
.main-header {
    position: relative;
}
#header:not(.index) .bottom-header {
    display: none;
}
.bottom-header {
	height: 403px;
	position: relative;
}
.bottom-header img {
    width: 605px;
    height: 402px;
    position: absolute;
    top: 1px;
    right: 47px;
}
.bottom-header .motto {
    max-width: 400px;
    padding-top: 61px;
    margin-left: -3px;
}
.bottom-header h1 {
    font-family: Raleway;
    font-size: 62px;
    font-weight: bold;
    line-height: 1.29;
    letter-spacing: -0.62px;
    color: #353535;
    margin: 0;
}
.bottom-header h3 {
    font-family: Roboto;
    font-size: 23px;
    font-weight: normal;
    line-height: 1.48;
    letter-spacing: -0.23px;
    color: #8d9e1d;
    margin: 27px 0 0 1px;
}

.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: rgb(0 0 0 / 25%);
    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;
}
.cart-menu-body .menu-wrapper {
    margin-left: auto;
    margin-right: 0px;
}
.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding: 5px 24px;
    position: relative;
}
.cart-menu-body .menu-header,
.main-menu-body .menu-header,
.categories-menu-body .menu-header {
    min-height: 64px;
    padding: 5px 20px;
    position: relative;
    background: var(--gradient-main);
}
.cart-menu-body .menu-header {
    padding-left: 23px;
}
.menu-title {
    font-size: 15px;
    font-weight: bold;
}
.main-menu-body .menu-title,
.cart-menu-body .menu-title,
.categories-menu-body .menu-title {
    font-size: 18px;
}
.cart-menu-body .close-menu,
.main-menu-body .close-menu,
.categories-menu-body .close-menu {
    margin: 0 2px 2px 0;
    align-self: center;
}
.cart-menu-body .close-menu img,
.main-menu-body .close-menu img,
.categories-menu-body .close-menu img {
    width: 16px;
    filter: brightness(0);
}
.mobile-menu-item {
    display: none;
}
.mobile-menu-item.support-phones {
    padding: 5px 20px 14px;
    border-bottom: 1px solid var(--secondary-color-2);
}
.menu-link {
    font-weight: normal;
    color: var(--main-color-1);
    font-size: 16px;
    line-height: 2.5;
    padding: 0px 20px;
}
.menu-link:hover {
    color: var(--link-color);
}
.main-menu-body .menu-body {
    padding-top: 10px;
}
.categories-menu {
    cursor: pointer;
}
.categories-menu::after {
    content: '';
    display: block;
    background: url(../images/arrow_newsletter.svg) no-repeat;
    background-size: contain;
    filter: invert(1) opacity(.18);
    margin-top: 9px;
    width: 7px;
    height: 13px;
    float: right;
}
.language-menu-body .menu-wrapper,
.currency-menu-body .menu-wrapper {
    margin: 24vh auto 0px;
    max-width: 360px;
    box-shadow: 1.3px 1.6px 27px 0 rgba(0, 0, 0, 0.1);
}
.categories-menu-body .menu-header {
    padding: 5px 14px;
}
.categories-menu-body .menu-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.categories-menu-body .main-menu {
    color: var(--blue-color-2);
    cursor: pointer;
    margin: -3px -20px 0 -5px;
    display: flex;
    align-items: center;
    gap: 1ch;
}
.categories-menu-body .menu-body {
    overflow: auto;
}
.categories-menu-body ul {
    background: none;
    display: block;
    width: auto;
    padding: 12px 20px;
    columns: 140px auto;
    column-gap: 100px;
}
.categories-menu-body ul a {
    font-size: 14px;
    line-height: 2;
}
.set-changes {
    padding: 9px 24px 73px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    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: 38px;
    border: 1px solid #dadada;
    padding: 5px 18px;
    cursor: pointer;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
}
.dropdown-title::after,
.gifts-wrapper .gifts-title::after {
    right: 16px;
    width: 7px;
    height: 7px;
    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 18px;
    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: 10px auto;
    text-align: center;
}
.edit-cart a {
    font-size: 13px;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--blue-color-1);
}
.cart-count {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color-3);
    color: var(--main-color-2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 auto 0 9px;
}
.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: 60px 55px 20px;
}
.cart-preview .empty-cart-text {
    font-size: 15px;
    line-height: 1.6;
}
.empry-cart-img {
    margin-right: 10px;
}
.empry-cart-img img {
    width: 78px;
    height: 66px;
}
.empty-cart-text {
    padding: 14px 0px 24px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}
.empty-cart-add .site-button {
    min-width: 138px;
    min-height: 38px;
    font-size: 13px;
}
.empty-cart-add .site-button img {
    margin-right: 13px;
}
.cart-body {
    margin-bottom: 28px;
    box-shadow: 1.3px 1.6px 27px 0 rgba(181, 195, 233, 0.42);
}
.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: 17px;
    line-height: 1;
    font-weight: bold;
    margin: 11px 0px 9px;
}
.cart-product-dosage,
.price-column,
.total-column,
.insurance-price,
.insurance-total {
    font-size: 15px;
}
.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: center;
}
.cart-checkout > div {
    background-image: linear-gradient(to bottom, #c3d1f7, #91adf9);
    color: var(--main-color-2);
    display: inline-flex;
    align-items: center;
    transition-duration: .3s;
}
.cart-checkout > div:focus-within {
    background-image: linear-gradient(to bottom, #c3d1f7, #4b77f2);
}
.cart-total {
    width: 100%;
    text-align: center;
    border-right: 1px solid #fff;
    padding: 3px 10px;
}
.cart-preview .cart-checkout > div {
    display: flex;
    width: 100%;
}
#header .cart-preview-row {
    padding-bottom: 21px;
    border-color: var(--grey-color-4);
}
#header .cart-preview-image {
    min-width: 80px;
}
#header .cart-preview-info {
    margin: 0;
}
#header .cart-product-name {
    font-size: 16px;
    margin: 8px 0px 5px;
}
#header .cart-remove-btn {
    margin-top: 3px;
}
#header .cart-remove-btn img {
    width: 8px;
}
#header .cart-product-dosage {
    font-size: 13px;
    margin: 0 0 10px 2px;
}
#header .quantity-input {
    width: 34px;
}
#header .cart-pill-pack-price {
    font-size: 15px;
    margin: 3px 2px 0;
    align-self: center;
}
#header .cart-checkout {
    font-size: 15px;
    font-weight: 500;
}
#header .cart-checkout > div {
    justify-content: space-evenly;
}
#header .cart-checkout > div::after {
    content: "";
    display: block;
    height: 20px;
    border-right: 1px solid #fff;
}
#header .cart-total {
    width: auto;
    border: none;
    padding: 0;
}
#header .cart-btn {
    order: 1;
}
#header .chechout.site-button {
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    min-height: 48px;
}

.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;
    border-bottom: solid 1px #efefef;
    padding: 10px 20px 20px;
}
.pill-row > .new-package-save,
.insurance-check span {
    display: none;
}
.product-img {
    margin-right: 15px;
}
.product-column {
    display: flex;
    width: 45%;
}
.quantity-column {
    width: 110px;
    margin-right: auto;
    padding: 10px;
}
.price-column,
.total-column {
    margin: 0px 0px 0px auto;
    width: 110px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}
.remove-column {
    margin: 0px 1.35%;
    padding: 10px;
}
.remove-column .total-column {
    display: none;
}
.pill-row:last-child {
    border-bottom: 1px solid #efefef;
}
.new-package-save a {
    font-size: 13px;
    color: #97af10;
    text-decoration: underline;
}
.pill-titles {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding: 15px 20px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}
.pill-titles > div:nth-child(1),
.insurance-title {
    width: 45%;
    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: 0px 0px 0px auto;
    text-align: center;
    order: 3;
}
.insurance-price,
.insurance-total {
    font-weight: 700;
}
.pill-titles > div:nth-child(4),
.insurance-total {
    width: 110px;
    padding: 0px 10px;
    margin: 0px 1.35% 0px auto;
    text-align: center;
    order: 4;
    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: 19px 20px;
    border-bottom: 1px solid #efefef;
}
.insurance-title {
    display: flex;
}
.insurance-title,
.shipping-title {
    display: block;
    min-width: 170px;
    font-weight: 700;
}
.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: 1px solid #e9e9e9;
    width: 22px;
    height: 22px;
    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;
}
.footer-copyright {
    text-align: center;
    height: 61px;
}
.footer-copyright .custom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.footer-copyright-text * {
    font-size: 12px;
    font-weight: 300;
    color: var(--grey-color-2);
}
.footer-copyright-sitename a {
    display: flex;
    gap: 8px;
    align-items: center;
}
.footer-copyright-sitename img {
    width: 31px;
    height: 31px;
}
.footer-copyright-sitename .header-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.22px;
    color: var(--black-color-1);
}
.footer-link a,
.footer-label {
    font-weight: normal;
    color: var(--main-color-1);
    margin-bottom: 12px;
}
.footer-links {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
}
.footer-link {
    width: 29%;
    margin-bottom: 12px;
}
.footer-items {
    display: flex;
    padding: 43px 0px 15px;
}
.footer-subscribe {
    margin-left: auto;
}
.footer .pay-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin: 0 auto 20px;
}
.errors {
    color: var(--error-color);
}
.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: 36px;
    outline: 0px;
    padding: 0px 12px;
    font-size: 12px;
}
#subscribe_to_news_form [name="email"]:not(:focus) {
    border-color: #e9e9e9;
}
#subscribe_to_news {
    width: 34px;
    height: 36px;
    background-color: var(--main-color-1);
    outline: 0px;
    border: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    min-width: auto;
    min-height: auto;
}
.footer-container__payments {
    margin: 0px auto;
}

.categories-container > h3 {
    font-family: Raleway;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: -0.18px;
    text-align: left;
    color: var(--main-color-1);
    margin: 20px 0 22px;
}
/* categories list */
.categories-list {
    width: 240px;
    padding: 20px 24px;
    background: var(--gradient-side);
    display: flex;
    flex-direction: column;
}
/* .categories-list .category {
    display: none;
} */
.categories-list li a {
    font-size: 13px;
    font-weight: normal;
    line-height: 2.23;
    color: var(--main-color-1);
}
/* Products page */
.products-by-ingredient {
    display: none;
}
.side_search form {
    display: flex;
    max-height: 38px;
    position: relative
}
.side_search .site-button {
    background-color: var(--main-color-1);
    min-height: 38px;
    min-width: 120px;
}
.side_search .site-button img {
    margin-right: 10px;
}
.products-search {
    width: 100%;
    padding: 0 max(15px, calc(50% - 466px));
    margin-bottom: 10px;
}
#middle.index .products-search {
    width: 100%;
    padding: 0 max(15px, calc(50% - 466px));
    margin-bottom: 10px;
}
#quickSearch {
    width: 100%;
    border: 1px solid var(--grey-color-1);
    border-top: none;
    padding: 5px 10px 5px;
    position: absolute;
    top: 100%;
    left: 0;
    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, #quickSearch .searchLiHover {
    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: 18px;
    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: 20px;
}
.products-container h3 {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    color: #8b8b8b;
}
.products-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
}
.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 {
    height: 75px;
}
.pill-image img {
    height: 100%;
    width: auto;
}
.pill-name a {
    color: var(--main-color-1);
    font-size: 17px;
    font-weight: bold;
    line-height: 1.65;
}
.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: 12px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--grey-color-2);
    margin-top: 12px;
}
.pill-description{
    font-size: 13px;
    font-weight: 300;
    color: #676767;
    line-height: 1.69;
}
.pill-price {
    color: var(--accent-color-2);
    font-size: 18px;
    font-weight: bold;
    line-height: 1.56;
    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-info {
    padding-top: 13px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.71;
}
.product-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.17;
    margin-top: 23px;
}
.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: 20px;
}
.product-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.product-description {
    display: flex;
    align-items: flex-start;
    padding-bottom: 40px;
}
.product-img {
    width: 100px;
    flex-shrink: 0;
    margin-right: 19px;
}
.product-img img {
    width: 100%;
    height: auto;
}
.pill-show-more, .open + .pill-show-more {
    display: none;
}
.pill-show-more img {
    width: 7px;
    height: 4px;
    opacity: 0.4;
    vertical-align: baseline;
}
.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;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 26px 28px;
    margin: 2px 1px 2px -1px;
    box-shadow: 1.3px 1.6px 27px 0 rgba(181, 195, 233, 0.42);
    background-color: #fff;
    position: relative;
}
.package-row:hover {
    outline: 2px solid var(--blue-color-1);
    z-index: 1;
}
.package-hitsate {
    position: absolute;
    left: 28px;
}
.package-hitsate img {
    width: 32px;
    height: 32px;
}
.package-pill-size {
    white-space: nowrap;
    margin-left: 55px;
}
.package-pill-image {
    margin-right: 18px;
}
.package-pill-price {
    white-space: nowrap;
}
.package-pill-buy {
    text-align: center;
}
.package-pill-buy .site-button {
    min-width: 148px;
    font-size: 15px;
    line-height: 1;
    box-shadow: 0px 4px 18px 0 rgba(177, 193, 236, 0.41);
}
.package-row:not(:hover) .package-pill-buy .site-button {
    color: var(--main-color-1);
    background: var(--main-color-2);
    border: solid 1px #e0e8fb;
}
.package-pill-dose,
.package-current-price {
    font-size: 16px;
    font-weight: bold;
}
.package-save {
    font-size: 15px;
    font-weight: normal;
}
.package-pill-bonus,
.package-per-pill-price {
    font-size: 12px;
    font-weight: 300;
    color: var(--accent-color-1);
}
.package-per-pill-price {
    color: var(--grey-color-2);
}
.add-to-cart-btn {
    min-height: 44px;
}
.product-descr-menu {
    margin-top: 50px;
}
.product-descr-menu h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56;
    margin-bottom: 15px;
}
.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;
}
.descr-item,
.descr-item.testimonials-container {
    display: none;
}
.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,
.testimonials {
    padding: 20px 24px;
    display: none;
    border: dashed 1px #bacbf7;
    margin-bottom: 20px;
}
.testimonials {
    display: block;
}
.review-title,
.testi_caption {
    font-size: 15px;
    font-weight: 500;
    color: var(--link-color);
    margin-bottom: 6px;
}
.review-date,
.review-star {
    display: none;
    align-items: center;
    font-size: 12px;
    color: var(--secondary-color-3);
    margin-bottom: 5px;
}
.review-star * {
    margin-right: 3px;
}
.review-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.71;
}
/* 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 h2.title {
    margin-bottom: 12px;
}
.contact-us-wrapper {
    width: 100%;
    display: flex;
}
.order-banner {
    width: 100%;
    margin-top: -37px;
}
.contact-us-banner img,
.order-banner img {
    width: 100%;
    max-width: 458px;
}
.contact-us-form,
.order-block {
    width: 100%;
    max-width: 600px;
    box-shadow: 1.3px 1.6px 27px 0 rgba(181, 195, 233, 0.42);
    padding: 34px 52px 40px 32px;
    margin-bottom: 45px;
}
.order-banner {
    width: 100%;
    max-width: 600px;
    padding-left: 8.1%;
}
.contact-us-info {
    padding: 0px 15px 0px 62px;
    max-width: 400px;
}
#contact_note {
    font-size: 11px;
    font-weight: 300;
    line-height: 1.45;
    color: var(--secondary-color-1);
    margin: 0px;
}
.custom-input::-webkit-input-placeholder,
.custom-textarea::-webkit-input-placeholder {
    color: var(--secondary-color-3);
    font-size: 11px;
}
.custom-input::-moz-placeholder,
.custom-textarea::-moz-placeholder {
    color: var(--secondary-color-3);
    font-size: 11px;
}
.custom-input:-ms-input-placeholder,
.custom-textarea:-ms-input-placeholder {
    color: var(--secondary-color-3);
    font-size: 11px;
}
.custom-input:-moz-placeholder,
.custom-textarea:-moz-placeholder {
    color: var(--secondary-color-3);
    font-size: 11px;
}
.custom-input::placeholder,
.custom-textarea::placeholder {
    color: var(--secondary-color-3);
    font-size: 11px;
}
.contact-info-block {
    margin-bottom: 25px;
}
.contact-info-title {
    font-weight: 700;
}
.form-field {
    width: 100%;
    margin-bottom: 16px;
    position: relative;
}
.form-field::after {
    position: absolute;
    content: '*';
    top: 10px;
    right: -10px;
    color: var(--secondary-color-3);
}
.contact-us:has(.errors) .captcha-row-input:after,
.form-field:has(input:invalid)::after {
    color: var(--error-color);
}
.form-field input,
.form-field textarea {
    width: 100%;
    min-height: 36px;
    padding: 5px 14px;
}
.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-wrap: wrap;
}
.captcha-field .errors {
    width: 100%;
    text-align: left;
    margin-top: -18px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 300;
}
.captcha-row {
    margin-bottom: 20px;
}
.captcha-row img {
    margin-right: 20px;
}
.captcha-row-input {
    margin: 0px;
    width: 100%;
    max-width: 155px;
    margin-left: 13px;
    margin-right: auto;
    padding-right: 15px;
}
.captcha-row-input::after {
    right: 5px;
}
.submit-btn,
.submit-btn:hover {
    background-color: var(--main-color-1);
    color: var(--main-color-2);
    max-width: 136px;
    min-height: 38px;
    max-height: 38px;
    margin-bottom: 22px;
}
.contact-info-text {
    font-size: 14px;
    line-height: 1.54;
    margin-bottom: 24px;
}
.captcha-row-img img {
    width: 111px;
}
.captcha-row-img,
.captcha-row-input {
    margin-bottom: 24px;
}
.order-container {
    display: flex;
    align-items: flex-start;
}
.order-block .submit-btn {
    margin-left: auto;
    margin-top: 24px;
}
.order-status-description {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.71;
    margin-top: 45px;
}
.custom-container:has(.about_us) {
    background: linear-gradient(to bottom left, #D9EDFA 5%, #FFFFFF 31%, #F0F2D3 81%);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.71;
    padding: 40px 64px 35px 39px;
    max-width: 1200px;
}
.custom-container:has(.about_us) h2.title {
    margin-top: 0px;
    margin-bottom: 35px;
}
.about_us::before {
    content: "";
    background-image: url(../images/about_us.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top;
    float: right;
    display: block;
    width: 598px;
    height: 386px;
    margin-left: 50px;
    margin-top: -35px;
}
.about_us p {
    margin-bottom: 24px;
}
/* faq */
.faq_descr {
    overflow: hidden;
    background-color: #fff;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 1.3px 1.6px 13px 0 rgba(181, 195, 233, 0.34);
    padding: 23px 28px;
}
.question {
    font-size: 17px;
    font-weight: bold;
    color: #4b77f2;
}
.answer {
    display: none;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.71;
    margin-top: 8px;
}
.faq_descr:before {
    background-repeat: no-repeat;
    cursor: pointer;
    animation: rotation 0.5 linear;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    content: '';
    display: block;
    height: 8px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 32px;
    top: 34px;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 8px;
}
.faq_descr.faq-active::before {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.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 {
    position: relative;
    padding: 12px 0 28px;
    border: solid 1px transparent;
    background-color: #fff;
    z-index: 0;
    width: 220px;
    text-align: center;
}
.products-item > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.products-item:hover {
    box-shadow: 1.3px 1.6px 27px 0 rgba(181, 195, 233, 0.42);
    z-index: 1;
}
.products-item .pill-buy {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 138px;
}
.products-item .site-button {
    font-size: 13px;
    font-weight: 500;
    color: var(--main-color-1);
    min-width: 138px;
    min-height: 38px;
    max-width: 200px;
    box-shadow: 0px 4px 18px 0 rgba(177, 193, 236, 0.41);
    border: solid 1px #e0e8fb;
    background: #fff;
}
.products-item:hover .site-button {
    color: var(--main-color-2);
    box-shadow: 0.6px 0.8px 16px 0 rgba(153, 179, 249, 0.29);
    border: none;
    background: var(--main-button);
}
.products-item .site-button:active {
    background: var(--main-button-hover);
}
.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: 18px;
    font-weight: bold;
    line-height: 1.56;
    color: var(--accent-color-1);
}
.pill-descr {
    padding-top: 16px;
    padding-right: 10px;
    padding-left: 10px;
    flex-grow: 1;
}
.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: 15px;
}
.discount-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 56px;
    height: 56px;
    font-size: 15px;
    font-weight: bold;
    line-height: 3.6;
    text-align: center;
    color: #fff;
    background-image: url('../images/discount.svg');
    background-size: contain;
}

@keyframes fadeL {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        -ms-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}
.fadeL {
    -webkit-animation-name: fadeL;
    animation-name: fadeL;
    animation-duration: 1s;
    animation-fill-mode: both;
}
