@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --main-color-1: #3a3c47;
    --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: #674fff;
    --link-color: var(--link-color-1);
    --link-color-2: var(--link-color-1);
    --error-color: #86210f;

    --theme-color-1: #3a3c47;
    --theme-color-2: #32286e;
    --theme-color-3: #c7c3de;
    --theme-success-color: #007d67;
    --theme-error-color: #e88b8b;
    --cart-menu-mobile: '';
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.6);
}
html {
    height: 100%;
    font-size: 15px;
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--main-color-1);
    position: relative;
    min-width: 360px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
#wrapper {
    flex: 1 0 auto;
}
#header {
    position: relative;
    z-index: 100;
}
ul li {
    list-style: none;
}
table {
    border-collapse: collapse;
}
input:focus,
textarea:focus {
    outline: 1px solid #9cb4e4;
}
input:user-invalid {
    outline: 1px solid #e31d1d;
}
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;
}
.after-arrow {
    position: relative;
}
.after-arrow::after {
    position: absolute;
    content: '';
    display: block;
    top: 50%;
    right: 1.5rem;
    transform: translate(0, -75%) rotate(135deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    width: 10px;
    height: 10px;
}
.after-arrow.open::after {
    transform: translate(0, -25%) rotate(-45deg);
}
.site-input {
    width: 100%;
    padding: .7rem 1.5rem;
    border-radius: 4px;
    background-color: white;
    color: #7a7f87;
    letter-spacing: 0.13px;
    font-size: 13px;
    border: solid 1px #d9d9d9;
    outline: none;
}
.site-input:focus {
    border: solid 1px #9cb4e4;
    outline: none;
}
.site-input:user-invalid {
    border: solid 1px #e94848;
    outline: none;
}
.product-wrapper small.subtitle {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}
/* ---------------------- Menus ---------------------- */
.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 1rem 0 2rem;
    font-size: 15px;
    font-weight: 500;
}
.mobile-menu {
    display: none;
}
.menu-body {
    padding: 1.5rem 1rem 0 2rem;
    height: 100vh;
}
.menu-open {
    color: var(--theme-color-1);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}
.menu-close {
    cursor: pointer;
}
.menu-item {
    color: #3a3c47;
    line-height: 2.43;
    display: flex;
    align-items: center;
    transition: all .3s linear;
}
.menu-item .highlight {
    color: #245bc3;
    text-transform: uppercase;
    transition: all .3s linear;
}
.menu-item.selected,
.menu-item:hover {
    color: #245bc3;
}
.menu-item.selected .highlight,
.menu-item:hover .highlight {
    font-weight: 600;
}
.mobile-menu-categories,
.cart-menu-mobile {
    display: none;
}


.cart-menu-wrapper .menu-body {
    padding: 0;
}
.cart-menu .cart-product-name {
    font-size: 15px;
    font-weight: 600;
}
.cart-menu .cart-product-dosage {
    font-size: 11px;
    line-height: 1.8;
    font-weight: 300;
}
.cart-menu .cart-bonus {
    background-color: #f7f7f7;
    font-size: 12px;
    color: #959595;
    text-align: center;
    padding: 1rem;
    width: 100%;
    margin-bottom: 18px;
}
.cart-menu .cart-button {
    align-self: normal;
    margin: 0 1.45rem;
}
.cart-menu .cart-subtotal {
    font-size: 14px;
    font-weight: 500;
    text-align: right;
    line-height: 1;
    padding: 1.1rem 1rem;
}
a:hover {
    text-decoration: none;
    color: #19191b;
}
.site-button,
input.site-button,
#wrapper_billing .bttn_submit {
    max-width: 400px;
    min-width: 138px;
    width: auto;
    padding: 12px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    overflow: hidden;
    transition-duration: 0.25s;
    cursor: pointer;
    border-radius: 3px;
    background-color: #245bc3;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.14px;
    text-align: center;
    color: #fff;
    border: 2px solid #245bc3;
}
#wrapper_billing .bttn_submit {
    padding: 0;
}
.white-button {
    background-color: white;
    color: #3a3c47;
    border: solid 2px #edf0f6;
    height: 32px;
}
.site-button:hover,
#wrapper_billing .bttn_submit:hover  {
    background-color: #3878f2;
    border: 2px solid #3878f2;
    color: white;
    outline: none;
}
.site-button:active,
.site-button:focus,
#wrapper_billing .bttn_submit:focus {
    background-color: #1549ab;
    border: 2px solid #1549ab;
    color: white;
    outline: none;
}
.banner-button span{
    width: 40px;
    height: 40px;
    background: #fcfcfe;
    border-radius: 50%;
    margin-left: 20px;
    position: relative;
}
.banner-button span::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 15px;
    left: 13px;
    width: 10px;
    height: 10px;
    border-right: 3px solid #725cff;
    border-top: 3px solid #725cff;
    transform: rotate(45deg);
}
.banner-button.site-button{
    background: #725cff;
    color: #ffffff;
    font-size: 16px;
    border-radius: 26px;
    padding: 12px 12px 12px 25px;
}
.site-button span::first-letter,
.mobile-apps-title span::first-letter,
.short-info-bonuses-container span::first-letter {
    text-transform: uppercase;
}
a.short-info-categories {
    font-weight: 600;
}
a.short-info-categories:hover {
    color: white
}
label.site-button {
    white-space: nowrap;
    max-width: none;
    padding: 7px 30px;
}
.load-more {
    text-align: center;
}
.submit-btn {
    border-radius: 3px;
    border: solid 2px #edf0f6;
    color: #3a3c47;
    font-size: 14px;
    background-color: white;
    border-radius: 3px;
}
.submit-btn:hover {
    border: solid 2px #245bc3;
    background-color: white;
    color: #3a3c47;
}
.submit-btn:active {
    border: solid 2px #245bc3;
    background-color: #245bc3;
    color: white;
}
label {
    margin-bottom: 0;
}
.main-title {
    font-size: calc(20px + 13 * ((100vw - 320px) / 1280));
    font-weight: bold;
    letter-spacing: -0.38px;
    color: #21184d;
    margin-bottom: 38px;
}
.main-header {
    min-height: 90px;
    display: flex;
    align-items: center;
    min-width: 100%;
    background: url(../images/banners/top_flag.jpg) no-repeat bottom right;
}
.reviews-page {
    padding-bottom: 5rem;
}
.mobile-toolbar {
    display: none;
}
.toolbar__search.static_page,
.toolbar__search.reviews {
    display: none;
}
.toolbar__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 1rem;
}
.toolbar__categories {
    position: relative;
    width: 33%;
    min-width: 320px;
}
.toolbar__title {
    min-width: 33%;
}
.toolbar__categories-title {
    border-radius: 4px;
    background-color: #213e74;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 14px;
    font-weight: 500;
    color: #fefefe;
    text-transform: uppercase;
    cursor: pointer;
}
.categories-list {
    padding: 0;
    margin: 0;
}
.toolbar__categories-items,
.quickSearchBlock {
    display: none;
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    width: 100%;
    background-color: white;
    max-height: 70vh;
    overflow: hidden;
    overflow-y: auto;
    z-index: 50;
    border-radius: 3px;
    box-shadow: 1.2px 2.8px 21px 0 rgba(0, 0, 0, 0.09);
    border: solid 1px #eee;
}
.toolbar__categories .category a,
.products-categories .category a,
.quickSearchBlock li {
    display: block;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1;
    padding: .8rem 1.5rem;
    color: #3a3c47;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}
.products-categories {
    border: 1px solid #eee;
    align-self: start;
}
.toolbar__categories .category a:hover,
.products-categories .category a:hover,
.products-categories .category.active a,
.searchLiHover {
    background-color: #f7f7f7;
}
.products-wrapper,
.product-page__container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    column-gap: clamp(1rem, -3.742rem + 7.177vw, 2rem);
    align-items: start;
}
.product-page__container {
    grid-template-columns: 273px 1fr;
}
.products-page {
    padding-bottom: 80px;
}
.products-header {
    grid-area: 1 / 1 / 2 / 3;
}
.products-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, -3.742rem + 7.177vw, 2rem);
}
.category.after-arrow::after,
.mobile-menu-categories .after-arrow::after {
    transform: translate(0, -50%) rotate(45deg);
    border-color: #c2c2c2;
    width: 8px;
    height: 8px;
}
.mobile-menu-categories .after-arrow::after {
    right: 0;
}
.category.after-arrow:hover:after {
    border-color: #3a3c47;
}
.favorites-menu {
    position: relative;
    cursor: pointer;
}
.favorites-menu span {
    position: absolute;
    top: -7px;
    right: -6px;
    font-size: 12px;
    width: 18px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #ffb762;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    margin-right: auto;
}
.toolbar__search {
    flex: 1;
    max-width: 780px;
}
.index__banner {
    margin-top: 1.75rem;
}
.banner__wrapper {
    background: linear-gradient(90deg, rgba(229,238,255,1) 40%, rgba(181,203,244,1) 60%);;
}
#myCarousel {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
}
.carousel-indicators {
    position: absolute;
    left: 1rem;
    right: unset;
    top: unset;
    bottom: unset;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    top: 50%;
    transform: translate(0, -50%);
    max-width: 280px;
    width: 100%;
}
.carousel-indicator {
    border-radius: 3px;
    background-color: #f1f6ff;
    padding: 1.3rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    position: relative;
    border-top: 3px solid #f1f6ff;
    /* border-bottom: 3px solid #f1f6ff; */
}
.carousel-indicator.active {
    background-color: #fff;
    /* border-bottom: 3px solid #245bc3; */
    border-top-color: white;
}
.carousel-indicator.active::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 1px solid white;
    transform: rotate(45deg) translate(0, -50%);
    background-color: white;
    position: absolute;
    right: -2px;
    top: 50%;
}
.carousel-indicators-wrapper {
    position: absolute;
    top: 50%;
    width: 100%;
}
.carousel-item .custom-container {
    padding: 0 clamp(22rem, -46.555rem + 95.694vw, 30rem) 0 350px;
    min-height: 500px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
.carousel-item-14,
.carousel-item {
    background:  url(../images/banners/s_im5.jpg) no-repeat center;
}
.carousel-item-15 {
    background:  url(../images/banners/s_im1.jpg) no-repeat center;
}
.carousel-item-5 {
    background: url(../images/banners/s_im2.jpg) no-repeat center;
}
.carousel-item-9 {
    background: url(../images/banners/s_im3.jpg) no-repeat center;
}
.carousel-item-31 {
    background: url(../images/banners/s_im4.jpg) no-repeat center;
}
.carousel-item {
    background-size: cover;
}
.carousel-item h2 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.38;
    color: #2d436b;
    margin-bottom: 0;
}
.carousel-item span {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.67;
    color:#56637c;
    text-shadow: 1px 1px 1px #f1f6ff;
}
.app-section .site-button,
.carousel-item .site-button {
    padding: 1rem 2.5rem;
}
.carousel-indicator {
    position: relative;
    overflow: hidden;
}
.carousel-progress {
    height: 3px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
}
.carousel-progress div {
    background-color: #245bc3;
    height: 3px;
    border-radius: 2px;
    overflow: hidden;
}
.item-layout {
    padding: 80px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, -12.225rem + 21.531vw, 5rem);
}
.app-section .item-banner{
    margin-right: -4rem;
    text-align: end;
}
.item-banner {
    max-width: 540px;
}
.item-info {
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
}
.item-title {
    font-size: 32px;
    font-weight: bold;
    color: #2d436b;
    text-wrap: balance;
}
.item-description {
    font-size: 16px;
}
.item-text {
    font-size: 15px;
    color: #7a7f87;
}
.item-text ol,
.item-text ul {
    list-style-position: inside;
    padding: 0;
}
.item-text li {
    margin-bottom: .75rem;
}
.item-text ul li {
    list-style-type: '* ';
    list-style-position: inside;
}
.item-subtitle {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.22px;
    margin-bottom: 1.5rem;
}


#static_part_product {
    height: 100%;
}
.pill-card {
    border-radius: 3px;
    border: solid 1px #e6e6e6;
    background-color: white;
    height: 100%;

    padding: 0 1.25rem 2rem;
    display: grid;
    grid-template-areas: 
            "a a"
            "b b"
            "c c"
            "d d"
            "e f";
    grid-template-columns: 1fr auto;
    grid-template-rows: repeat(5, auto);
    gap: .75rem;
    position: relative;
    transition: all .3s;
}
.index-bestsellers {
    margin-top: 4rem;
}
.index-page .products-list,
.favorites-page .products-list {
    grid-template-columns: repeat(4, 1fr);
}
.pill-img {
    grid-area: a;
}
.pill-img {
    grid-area: a;
    align-self: center;
    text-align: center;
}
.pill-name {
    grid-area: b;
    white-space: normal;
}
.pill-name h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: 0.45px;
    color: #3a3c47;
    margin: 0;
}
.pill-ingredient,
.pill-content {
    grid-area: c;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.3;
    color: #245bc3;
}
.pill-ingredient span {
    color: #7a7f87;
}
.pill-dosages {
    grid-area: d;
    font-size: 10px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.25px;
    color: #7b7f87;
}
.pill-dosages a {
    color: #7b7f87;
}
.pill-price {
    grid-area: e;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.38px;
    color: #3a3c47;
    white-space: nowrap;
    overflow: hidden;
    align-self: center;
}
.pill-price * {
    overflow: hidden;
    text-overflow: ellipsis;
}
.pill-old-price {
    font-size: 14px;
    color: #c22c38;
    text-decoration: line-through
}
.pill-buy {
    grid-area: f;
    align-self: center;
    text-align: right;
}
.pill-buy .site-button,
.package-button {
    border-radius: 3px;
    border: solid 2px #edf0f6;
    background-color: var(--white);
    min-width: 82px;
    min-height: 32px;
    padding: .2rem .75rem;
    font-size: 14px;
    font-weight: 500;
    color: #3a3c47;
    gap: .5rem;
}
.pill-ed-card {
    grid-template-areas: 
        "a a"
        "b b"
        "c c"
        ". ."
        "e f";
    grid-template-rows: auto auto auto 1fr auto;
    padding-top: 1rem;
}
.pill-content {
    margin-bottom: auto;
}
.package-button {
    min-width: 132px;
}
.product-dosege {
    min-width: 86px;
}
.pill-buy .site-button:hover,
.package-button:hover,
.package-button.active {
    background-color: #245bc3;
    border-color: #245bc3;
    color: white;
}
.pill-buy .site-button:active,
.package-button:active {
    background-color: #1549ab;
    border-color: #1549ab;
    color: white;
}
.pill-buy .site-button:hover img, 
.pill-buy .site-button:active img {
    filter: brightness(2);
}
.pill-favorite {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    width: 24px;
    height: 21px;
    background: url('../images/icons/ic_favorites_product.svg') no-repeat center / 100%;
    transition: all .3s;
}
.pill-ed-card .pill-favorite {
    background: url('../images/icons/ic_favorites_ED_normal.svg') no-repeat center / 100%;
    width: 32px;
    height: 32px;
    right: .7rem;
    top: .7rem;
}
.favorite .pill-favorite {
    background: url('../images/icons/ic_favorites_product_fill.svg') no-repeat center / 100%;
}
.pill-ed-card .pill-favorite:hover {
    background: url('../images/icons/ic_favorites_ED_hover.svg') no-repeat center / 100%;
}

.favorite .pill-ed-card .pill-favorite,
.favorite .pill-ed-card .pill-favorite:hover {
    background: url('../images/icons/ic_favorites_ED_picked.svg') no-repeat center / 100%;
}

.intro-section {
    background-color: #edf3ff;
}
.info-section {
    padding-bottom: 50px;
}
.feature-section {
    background-color: #edf3ff;
    padding: 68px 0 58px;
    margin-top: 75px;
}
.features-items {
    display: flex;
    align-items: center;
    gap: clamp(1rem, -3.742rem + 7.177vw, 2rem);
}
.features-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 0 59px 0 rgba(88, 110, 155, 0.14);
    background-color: #f6f9ff;
    min-height: 230px;
    position: relative;
    padding: 110px clamp(1rem, -3.742rem + 7.177vw, 2rem) 1rem;
    transition: all .3s;
}
.features-image {
    border-radius: 50%;
    border: solid 1px #9fa7c5;
    width: 118px;
    height: 118px;
    position: absolute;
    top: -2rem
}
.features-image > div {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1rem solid #f2f4fd91;
}
.features-image > div div {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.features-title,
.features-description {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71;
    letter-spacing: 0.14px;
    text-align: center;
}
.features-description {
    color: #7a7f87;
}
.pre-header {
    background-color: #f7f7f7;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}
.header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 100%;
    z-index: 1;
    line-height: 1;
}
.custom-container {
    width: 100%;
    height: 100%;
    max-width: 1230px;
    min-width: 320px;
    margin-right: auto;
    margin-left: auto;
    padding: 0px 15px;
}

.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);
}
.my-cart-mobile {
    display: none;
}
.cart-menu {
    position: relative;
}
.cart-menu .empty-cart-container {
    margin-top: 3rem;
}
.cart-menu .menu-content {
    padding-bottom: 1.2rem;
}
.edit-cart {
    margin: 15px auto;
    text-align: center;
}
.edit-cart a {
    color: #245bc3;
    text-decoration: underline;
    font-size: 12px;
    font-weight: 300;
}
.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;
}
.cart-menu .cart-count {
    position: absolute;
    top: -7px;
    right: -6px;
    font-size: 12px;
    width: 18px;
    height: 18px;
}
.empty-cart-container,
.favorites-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    text-align: center;
    margin-top: 180px;
    margin-bottom: 180px;
}
.empty-cart-img {
    margin-top: 40px;
}
.cart-menu .empty-cart-text {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    padding: 1.75rem 1rem 2.5rem;
    line-height: 1.83;
    text-wrap: balance;
}
.cart-preview-row {
    background: #ffffff;
    border-bottom: 1px solid #dadada;
    padding: .5rem 1rem .5rem .1rem;
    display: flex;
}
.cart-preview-image {
    min-width: 100px;
}
.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-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    align-self: center;
}
.cart-preview-info .d-flex {
    justify-content: space-between;
}
.cart-remove-btn {
    margin-left: 10px;
}
.cart-pill-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    overflow: hidden;
}
.quantity-btn {
    object-fit: contain;
    background-color: white;
    border: none;
    background-repeat: no-repeat;
    padding: 0px;
    cursor: pointer;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quantity-input {
    width: 26px;
    text-align: center;
    border: none;
    outline: none;
    pointer-events: none;
    font-size: 11.5px;
    font-weight: 300;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    padding: 4px;
}
.cart-preview-bonus {
    text-align: center;
    padding: 20px;
    font-weight: bold;
}
.cart-preview-footer {
    text-align: center;
}
.cart_buttons {
    display: flex;
    justify-content: flex-end;
    margin-right: 380px;
}
.custom-button {
    color: #fff;
    padding: 15px 20px 15px 24px;
    border-radius: 16px;
    background-color: #fa8f12;
    font-size: 14px;
}
.checkout-button {
    text-transform: uppercase;
    border: none;
    color: #ffffff;
    background: #245bc3;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    -webkit-appearance: button;
    border-radius: 4px;
    height: 44px;
    width: 100%;
    margin: 0 1.5rem;
}
.cart-chechout {
    display: flex;
    align-items: center;
    min-height: 44px;
    background-color: #245bc3;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    transition: all .3s;
}
.cart-chechout:hover {
    background-color: #3878f2;
}
.cart-chechout input {
    color: white;
    border: none;
    background: transparent;
    height: 44px;
    padding: .5rem 1rem;
}
.cart-chechout .divide {
    border-left: 1px solid white;
    height: 22px;
    opacity: 0.52;
}
.support-phones {
    display: flex;
    align-items: center;
}
.support-phones img {
    height: 13px;
    margin-bottom: -2px;
}
.header-title {
    font-size: 28px;
    font-weight: 800;
    text-align: left;
    color: #21184d;
    margin-left: .75rem;
}
.categories-menu__btn {
    padding: 14px 0;
}
.site-name{
    margin: 0 auto 0 1rem;
}
.site-name a{
    display: flex;
    align-items: center;
}
.header-link {
    margin-bottom: 16px;
}
.live-chat-link {
    display: none;
}
.live-chat-link a {
    color: #19191b;
    background-color: #fff;
    margin-left: 0px;
    font-size: 13px;
}

/* short-info */
.short-info-container .button {
    margin-top: 30px;
}
.head-text {
    text-transform: capitalize;
    font-size: 68px;
    font-weight: 800;
    line-height: 1.3;
}
.head-text::first-letter {
    text-transform: uppercase;
}
.head-text span {
    display: block;
    color: #fe5858;
}
.left-block-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.regular-text {
    margin-top: 48px;
    max-width: 310px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.56;
}
/* Live Chat link */
.menu-support-phones {
    display: none;
}
.lz_text_link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.lz_text_link::after {
    content: var(--live-chat);
    font-size: 12px;
    color: #16a219;
    display: inline-block;
    padding-left: 0.3rem;
}
.lz_text_link:hover:after {
    color: #218f22;
}
/* Top Products / Best sellers */

.section-heading {
    display: inline-flex;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 35px;
    overflow: hidden;
}

#itemsCarousel .col {
    margin-top: 20px;
}
.item-card {
    max-width: 350px;
    min-height: 311px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-radius: 16px;
    margin: auto;
    padding: 8px 15px 32px;
    text-align: center;
}
.item-card:hover {
    box-shadow: 4px 5px 29px 0 rgba(182, 179, 205, 0.42);
    transition-duration: .25s;
}
.causel-controls {
    margin: auto;
    margin-top: 24px;
    max-width: 60px;
    position: relative;

}
.shipping-price {
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #d6d6d6;
    padding-left: 16px;
    white-space: nowrap;
    min-height: 100%;
    min-width: 65px;
}
.checked-shipping .shipping-price {
    border-left: 1px solid #5b5b5c;
}

/* mobile apps */
.mobile-apps {
    background-image: linear-gradient(to right, #e0ebfd, #fff5f4, #fff5e3);
    margin-top: 90px;
}
.mobile-apps-container {
    height: 100%;
    display: flex;
    align-items: center;
}
.mobile-apps-info {
    width: 50%;
    padding: 100px 0px 100px 50px;
}
.mobile-apps-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.37;
    letter-spacing: -0.95px;
    margin-bottom: 38px;
}
.mobile-apps-title span {
    display: block;
    color: #fe5858;
}
.mobile-apps-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.56;
    margin-bottom: 75px;
}
.mobile-apps-links {
    display: flex;
}
.mobile-apps-links a {
    margin-right: 15px;
}
.mobile-apps-bunners {
    position: relative;
    display: flex;
    width: 50%;
}
.mobile-apps-bunners > img {
    max-width: 100%;
    width: 600px;
}
.mobile-apps-bunners .first-img {
    position: absolute;
    top: 78px;
    left: -5px;
}
.mobile-apps-bunners .second-img {
    position: absolute;
    top: 30px;
    right: 140px;
    animation-duration: 2.9s;
}
.mobile-apps-bunners .third-img {
    position: absolute;
    bottom: 5px;
    left: 143px;
    animation-duration: 2.95s;
}
/* FOOTER */
.footer {
    background-color: #697fb7;
    margin-top: clamp(2rem, -0.429rem + 7.286vw, 5.4rem);
}
.footer-container .custom-container {
    max-width: 1000px;
    margin: auto;
    padding: 5rem 1rem 3rem;
}
.footer-items {
    display: grid;
    grid-template-columns: 1fr auto;
    margin-bottom: 3.5rem;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    line-height: 1.2;
    gap: 1rem;
    white-space: nowrap;
}
.footer-text {
    text-align: center;
    color: #d9e6fedc;
    font-size: 12px;
    font-weight: 300;
    line-height: 2;
}
.footer-link a,
.footer-label {
    font-size: 14px;
    font-weight: 400;
    color: white;
}
.footer-copyright {
    text-align: center;
    background: #213e74;
    font-size: 12px;
    letter-spacing: 0.12px;
    text-align: center;
    padding: 1rem;
}
.footer-copyright *,
.footer-copyright *:hover {
    color: #e5eafa;
    line-height: 1;
}
:focus-visible {
    outline: none;
}
form#subscribe_to_news_form input  {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: var(--white);
    border: none;
    padding: .75rem 1rem;
    line-height: 1;
    font-size: 14px;
    min-width: 210px;
}
.footer-label {
    margin-bottom: 1rem;
}
form#subscribe_to_news_form {
    display: flex;
    align-items: stretch;
}
.subscribe-bookm {
    position: relative;
}
.subscribe-bookm .errors,
.subscribe-bookm .success {
    position: absolute;
    bottom: -2.2rem;
    font-size: 10px;
    color: white;
}
#subscribe_to_news {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    min-width: 44px;
    border: none;
    background-color: #213e74;
}
/* breadcrumbs */
#breadcrumbs {
    line-height: 1;
    font-size: 13px;
}
.breadcrumbs a {
    color: #7a7f87;
}
.breadcrumbs span {
    color: #245bc3;
}
.breadcrumbs__container {
    padding: 1.25rem 0 1.5rem;
}
/* product page */
.product__container {
    width: 100%;
}
.products-page,
.products-header {
    background-color: #fff;
}
.products-page .toolbar__categories{
    display: none;
}
.search-page .products-page .toolbar__categories {
    display: block;
}
.mobile-search {
    display: none;
}

.products-header__search {
    width: 100%;
}
.side_search form {
    display: flex;
    justify-content: space-between;
}
.side_search input:focus {
    outline: none;
}
.side_search .bttn {
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    border: none;
    padding: 0 1rem;
    cursor: pointer;
}
.side_search {
    border-radius: 3px;
    border: solid 2px #e6e6e6;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.side_search input {
    border: none;
    font-size: 14px;
    color: #adadad;
    padding: 0px 18px;
    border-radius: 20px;
    height: 47px;
    flex: 1;
}
/* product page categories__container */
.categories__container {
    min-width: 233px;
    padding-right: 14px;
    margin-bottom: 10px;
}
.categories-title {
    display: none;
}

#quickSearch {
    list-style-type: none;
    padding-inline-start: 0;
    margin-bottom: 0;
}
/* cart page */
.cart-page {
    padding-bottom: 80px;
}
.cart-gifts-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    border: solid 1px #e6e6e6;
    border-radius: 4px;
    margin: 18px 0px 28px;
}
.cart-gifts-wrapper.open .free-pills-list {
    display: flex;
    flex-wrap: wrap;
}
.free-pills-list {
    display: none;
    width: 100%;
    padding: 16px 14px 0px;
    z-index: 99999;
    order: 2;
}
.gift-btn {
    width: 100%;
    margin-top: 24px;
}
.gift-title {
    cursor: pointer;
    display: block;
    width: 100%;
    font-size: 13px;
    letter-spacing: 0.14px;
    z-index: 1;
    border-radius: 4px;
    color: #3a3c47;
    font-weight: 400;
    padding: 11px 13px;
    padding-right: 45px;
    position: relative;
    order: 1;
}

.gift-title:after {
    border-right: 2px solid #b4b4b4;
    border-top: 2px solid #b4b4b4;
    content: '';
    display: block;
    position: absolute;
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 13px;
    top: 14px;
    width: 9px;
    height: 9px;
}
.open .gift-title:after {
    -moz-transform: rotate(315deg);
    -o-transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    top: 20px;
}
.gift-name {
    font-weight: 500;
    color: #245bc3;
}
.free-pill-img {
    height: 100%;
    text-align: center;
}
.cart-product-name {
    padding-top: 17px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    color: #3a3c47;
}
.cart-product-dosage {
    line-height: 1;
    font-size: 13px;
    font-weight: 300;
    color: #a9a9a9;
    padding-top: 7px;
}
.new-package-save {
    padding-top: 4px;
}
.new-package-save a {
    font-size: 13px;
    line-height: 1;
    font-weight: 300;
    color: #4c8c3d;
    text-decoration: underline;
}
.no-gifts-block .cart-product-name {
    margin-top: 14px;
    padding-bottom: 14px;
    text-align: center;
}
.cart-gifts-wrapper .cart-product-name {
    padding-top: 5px;
}
.free-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min-content;
    padding: 15px;
    margin-bottom: 15px;
    border: solid 1px transparent;
    transition: all .3s;
    flex: 1 1 0;
    min-width: 150px;
    max-width: 200px;
}
.free-pill:hover {
    border-radius: 12px;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.05);
    border: solid 1px #f0f0f0;
}

.free-pill .select-container {
    width: 100%;
}

.free-pill.open .select-container,
.free-pill.open .select-free-pill {
    display: flex;
}
.select-container::after {
    right: 12px;
    top: 50%;
    transform: translate(0, -60%) rotate(45deg);
    width: 8px;
    height: 9px;
    border-right: 2px solid #3b405e;
    border-bottom: 2px solid #3b405e;
}
.select-container {
    position: relative;
}
.free-pill-select {
    display: block;
    font-size: 12px;
    padding: 8px 25px 8px 12px;
    font-weight: 400;
    position: relative;
    z-index: 99;
    color: #3a3c47;
    outline: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #dfdfdf;
    border-radius: 6px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    cursor: pointer;
}
.remove-free-pill,
.select-free-pill {
    height: 32px;
    width: 100%;
    min-width: auto;
    margin-top: 20px;
    font-size: 14px;
    text-transform: capitalize;
}
.empty-cart-add,
.favorites-empty-add {
    text-transform: capitalize;
}
.select-free-pill {
    border: solid 2px #edf0f6;
    background-color: var(--white);
    color: #3a3c47;
}
.remove-free-pill {
    display: none;
}
.free-pill.active .remove-free-pill {
    display: flex;
}

.free-pill.active .select-free-pill {
    display: none;
}
.gift-ico {
    width: 85;
    height: 85px;
}
.cart-header *{
    font-size: 15px !important;
    font-weight: 600;
}
.cart-item-row {
    display: grid;
    align-items: center;
    grid-template-columns: 100px 3fr repeat(3, 1fr) 20px;
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    border-bottom: 1px solid #e5e5e5;
    padding: .5rem .9rem .5rem 0;
}
    
.cart-item-img { grid-area: 1 / 1 / 2 / 2; }
.cart-item-info { grid-area: 1 / 2 / 2 / 3; }
.cart-item-quantity { grid-area: 1 / 3 / 2 / 4; justify-self: center;}
.cart-item-price { grid-area: 1 / 4 / 2 / 5; justify-self: center; font-weight: 500;}
.cart-item-total { grid-area: 1 / 5 / 2 / 6; justify-self: center; font-weight: 600; white-space: nowrap;}
.cart-item-remove { grid-area: 1 / 6 / 2 / 7; }

.cart-item-quantity .cart-pill-quantity {
    transform: scale(1.25);
}
.cart-item-name {
    font-size: 15px;
    font-weight: 600;
}
.cart-item-dosage {
    font-size: 13px;
    font-weight: 300;
    color: #808080;
}
.cart-item-update a {
    font-size: 12px;
    font-weight: 200;
    color: #245bc3;
    text-decoration: underline;
}
.cart-item-price,
.cart-item-total {
    font-size: 14px;
}

.shipping-title {
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: #3a3c47;
    padding-bottom: 1.5rem;
}
.shipping-row {
    margin-top: 1.7rem;
}
.shipping-row .cart-item-row {
    padding-bottom: 1.5rem;
    padding-top: 0;
}
.shipping_methods {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.shipping_methods {
    grid-area: 1 / 1 / 2 / 5;
}
.delivery-button {
    border-radius: 4px;
    border: solid 1px #eee;
    height: 52px;
    min-width: 262px;
    color: #959595;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 1rem;
}
.delivery-img {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
}
.delivery-img.delivery_1 {
    background-image: url("../images/icons/international_unregistered_mail.svg");
}
.checked-shipping .delivery-img.delivery_1 {
    background-image: url("../images/icons/international_unregistered_mail_blue.svg");
}
.delivery-img.delivery_2 {
    background-image: url("../images/icons/trackable_courier_service.svg");
}
.checked-shipping .delivery-img.delivery_2 {
    background-image: url("../images/icons/trackable_courier_service_blue.svg");
}
.delivery-button:hover {
    border-color: #245bc3;
}
.checked-shipping .delivery-button {
    border-radius: 4px;
    box-shadow: 1.2px 2.8px 10px 0 rgba(0, 0, 0, 0.09);
    border: solid 1px #245bc3;
    background-color: #f1f3ff;
    color: #3a3c47;
}
.mobile-delivery-price {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.54;
    letter-spacing: 0.33px;
    color: #808080;
}
.minus-quantity,
.plus-quantity {
    width: 26px;
    height: 26px;
    object-fit: contain;
    background-color: white;
    border: none;
    background-repeat: no-repeat;
    padding: 0px;
}
.cart-pill-quantity {
    display: flex;
    align-items: center;
    width: fit-content;
}
#cart_insurance .cart-item-row {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.insurance-info {
    grid-area: 1 / 1 / 2 / 3;
    display: flex;
    align-items: center;
    gap: .7rem;
    padding-left: .9rem;
    font-size: 15px;
}
.insurance-info img {
    margin-right: 0.5rem;
}
.insurance-title {
    font-weight: 600;
}
.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: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 7px;
    width: 6px;
    height: 12px;
    border: solid #83ba75;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.cart-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
}
.cart-sum {
    padding: .5rem 1rem;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}
a.continue-shopping  {
    min-height: 44px;
    white-space: nowrap;
    padding: .5rem 2rem;
    font-size: 14px;
    font-weight: 600;
}

.cart-preview {
    display: none;
    padding: 0px 12px 12px 12px;
    width: 287px;
    min-height: 120px;
    background: #ffffff;
    position: absolute;
    right: -93px;
    top: 38px;
    z-index: 4;
    border-radius: 12px;
    box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.07);
}
.cart-preview-info > div{
    padding-left: 10px;
}
.cart-preview.active {
    display: block;
    z-index: 1000;
}
.cart-preview:before {
    content: '';
    position: absolute;
    border: 8px solid transparent;
    border-bottom: 8px solid white;
    top: -15px;
    right: 93px;
}

.quantity-btn {
    cursor: pointer;
}
.cart-preview .quantity-btn {
    width: 20px;
    height: 20px;
    display: flex; 
    align-items: center;
}
.cart-preview .quantity-btn img {
    width: 100%;
    height: auto;
}
.cart-preview .quantity-input {
    font-size: 12px;
}
.cart-preview-controls {
    margin-left: auto;
    text-align: right;
}
.cart-preview-controls {
    padding-right: 5px;
}
.cart-preview .cart-product-name {
    padding-top: 10px;
    padding-bottom: 8px;
    font-size: 12px;
    font-weight: bold;
}
.cart-preview .cart-product-dosage {
    font-size: 12px;
    font-weight: 400;
    color: #3a3c47;
    padding-top: 0;
    padding-bottom: 8px;
}
.cart-pill-pack-price {
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}
.cart-preview-total,
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border-radius: 12px;
    border: solid 1px #e8e8e8;
    overflow: hidden;
    font-size: 12px;
    font-weight: bold;
}
.checkout-button input {
    min-width: 180px;
    background-color: #83ba75;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: 0px;
    padding: 10px;
    cursor: pointer;
}
.checkout-button input {
    padding: 12px 10px;
}
.cart-preview-totel-val {
    width: 100%;
    text-align: center;
}
.cart-preview-footer {
    margin-top: 12px;
}
.cart-preview-bonus {
    text-align: center;
    padding: 0px 0px 12px;
    font-size: 12px;
    font-weight: 600;
}
.cart-preview-cart {
    padding-top: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: normal;
}
.cart-preview-cart a {
    color: #4c8c3d;
    text-decoration: underline;
}
.cart-bonuses {
    display: flex;
    justify-content: space-between;
    margin-top: 72px;
}
.cart-bonuses-item {
    display: flex;
    align-items: center;
    word-break: break-word;
    width: 48.75%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.16px;
    color: #3a3c47;
    border-radius: 12px;
    background-color: #e5f4e1;
}
.cart-bonuses-item:last-child {
    background-color: #fff6de;
}
.cart-bonuses-item img {
    margin-right: 13px;
}
.empty-cart-text,
.favorites-empty-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.71;
    letter-spacing: 0.14px;
    font-size: 13px;
    padding: 1.5rem;
}
input.checkout,
input.quantity-input {
    display: block;
}
span.cart-count:hover {
    color: white;
}


.short_descr_cat {
    padding: 0px 15px 30px;
    font-size: 14px;
    line-height: 1.71;
    color: #5a5d68;
}
.ed-pack-card .pill-image {
    margin-top: 18px;
    padding-top: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #ddd;
}
.ed-pack-card .pill-name {
    padding: 10px 0px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.56;
    letter-spacing: -0.18px;
}
.ed_content {
    position: relative;
    font-size: clamp(0.667rem, 0.524rem + 0.429vw, 0.867rem);
    font-weight: 300;
    line-height: 1.38;
    letter-spacing: 0.13px;
    height: clamp(2.813rem, 2.277rem + 1.714vw, 3.563rem);
    width: 100%;
    color: #7a7f87;
}
.ed_content-text {
    position: absolute; 
    top: 0;
    left: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
}
.ed_content.open .ed_content-text {
    background-color: white;
    box-shadow: 0 0 21px 0 rgba(142, 144, 147, 0.2);
    padding: 10px;
    border-radius: 12px;
    z-index: 1;
    text-overflow: ellipsis;
    overflow: visible;
    display: block !important;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    white-space: normal;
}
.ed-pack-card .pill-buy {
    margin-bottom: 0;
}
.ed-pack-card .price_prep_val {
    padding-bottom: 10px;
    padding-top: 15px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
}
.pill-show-more {
    display: inline-block;
}
.pill-show-more a {
    font-size: clamp(0.733rem, 0.638rem + 0.286vw, 0.867rem);
    line-height: 1.5;
    font-weight: 400;
    color: #245bc3;
}
.product-info {
    padding-left: 14px;
}
.product-header {
    display: flex;
}
.product-header {
    padding-bottom: 35px;
    flex-wrap: nowrap;
}
.packages-wrapper {
    display: none;
}
.packages-wrapper.active {
    display: table;
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}
.product-wrapper strong {
    font-size: 18px;
    font-weight: 500;
}
.product-wrapper small {
    font-size: 11px;
    font-weight: 300;
    color: #7a7f87;
}
.product-wrapper strong.subtitle {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}
.package-wrapper small.red {
    font-size: 12px;
    font-weight: 400;
    color: #c22c38;
    line-height: 1;
}
.package-price small.red {
    text-decoration: line-through;
    line-height: 1;
}
small.bonus {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.67;
    white-space: normal;
}
#cart_bonuses {
    background: #edf3ff;
    padding: clamp(1.667rem, 1.152rem + 2.143vw, 2.867rem) clamp(1rem, -2.571rem + 14.881vw, 9.333rem);
    margin-top: 3.5rem;
    border-radius: 4px;
}

.bonuses_title {
    text-align: center;
    font-size: clamp(0.933rem, 0.819rem + 0.476vw, 1.2rem);
    font-weight: 600;
}

.bonuses-row {
    display: flex;
    gap: clamp(0.8rem, 0rem + 3.333vw, 2.667rem);
    margin-top: clamp(1.333rem, 0.762rem + 2.381vw, 2.667rem);
}

.bonus-container {
    flex: 1;
    display: flex;
    align-items: center;
    padding: clamp(1rem, 0.829rem + 0.714vw, 1.4rem);
    border-radius: 6px;
    box-shadow: 0 0 59px 0 rgba(88, 110, 155, 0.14);
    background-color: #f6f9ff;
    gap: clamp(1rem, 0.743rem + 1.071vw, 1.6rem);
    line-height: 1.71;
}
.bonus-title {
    font-weight: bold;
    font-size: clamp(0.867rem, 0.81rem + 0.238vw, 1rem);
}
.bonus-text {
    font-size: clamp(0.733rem, 0.648rem + 0.357vw, 0.933rem);
    color: #7a7f87;
}
.bonus-img img {
    width: clamp(1.867rem, 1.41rem + 1.905vw, 2.933rem);
}
.bonus-img {
    border-radius: 50%;
    border: solid 1px #9fa7c5;
    padding: clamp(0.667rem, 0.524rem + 0.595vw, 1rem);
}
.bonus-img div {
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.05);
    padding: clamp(1rem, 0.829rem + 0.714vw, 1.4rem);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.package-wrapper {
    display: table-row;
    width: 100%;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    white-space: nowrap;
}
.package-buy,
.package-price, 
.package-image,
.package-dose,
.package-bonus {
    display: table-cell;
    vertical-align: middle;
    padding: .5rem;
}
.package-buy {
    padding-right: 0;
}
.package-dose {
    padding-left: 0;
}
.package-bonus {
    padding-left: 3rem;
}
.package-image {
    padding: .5rem 1rem .5rem 3rem;
}
.package-buy,
.package-price > div, 
.package-dose > div,
.bonus-items {
    display: flex;
    flex-direction: column;
}
.product-intro {
    display: flex;
    gap: 1.4rem;
}
.product-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.product-title span {
    font-weight: 400;
}
.product-intro-text {
    font-size: 13px;
    color: #7a7f87;
    line-height: 1.54;
    letter-spacing: 0.13px;
}
.product-dosages-wrapper {
    margin-left: 181px;
    margin-top: 1.4rem;
    margin-bottom: 2.3rem;
}
.product-dosages {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.product-packages {
    margin-top: 1.3rem;
}
.bonus-wrapper {
    display: flex;
    align-items: center;
    gap: .9rem;
}
.package-buy {
    align-items: center;
    width: min-content;
    display: flex;
    margin: 1rem 0 0 auto;
}
.product_info .card {
    padding: 5px 20px 5px 24px;
    border-radius: 16px;
    box-shadow: 1px 2px 8px 0 rgba(194, 190, 227, 0.36);
    background-color: #fff;
    margin-bottom: 20px;
}
.product_info .btn {
    padding: 9px 0;
    color: #0a1e39;
    font-weight: 600;
    font-size: 14px;
    word-wrap: break-word;
    text-align: left;
    white-space: normal;
    width: 100%;
    position: relative;
}
.product_info .btn.collapsed:after {
    border-right: 2px solid #0a1e39;
    content: '';
    display: block;
    position: absolute;
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #0a1e39;
    transition: all 0.5ms;
}
.product_info .btn:after {
    border-right: 2px solid #0a1e39;
    content: '';
    display: block;
    position: absolute;
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #0a1e39;
    transition: all 0.5ms;
}
.product_table,
.product-descr-block {
    display: none;
}
.product-descr-block.active {
    display: block;
}
.package-row {
    display: flex;
    align-items: center;
    border-radius: 16px;
    box-shadow: 0 0 9px 0 rgba(102, 102, 102, 0.11);
    margin: 16px 0px;
    padding: 5px 27px;
}
.package-row:hover {
    box-shadow: 0 0 21px 0 rgba(147, 106, 214, 0.17);
}
.add-to-cart-package {
    margin: 10px 0px 5px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.add-to-cart-btn {
    white-space: nowrap;
    padding: 10px 12px;
    min-width: 152px;
}
.add-to-cart-btn div {
    display: none;
}
.package-save {
    padding-top: 5px;
    font-size: 12px;
    color: #e31d1d;
}
.package-old-price {
    font-size: 12px;
    color: #e31d1d;
    text-decoration: line-through;
}
.package-current-price,
.package-pill-dose {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
}
.package-pill-price,
.package-pill-type {
    font-size: 12px;
    color: #828282;
}
.packege-wishlist {
    width: 20%;
    height: 44px;
}
.package-dosage-size {
    min-width: 75px;
}
.package-pill-image {
    padding: 0px 32px 0px 0px;
    min-width: 100px;
}
.product-descr-title {
    color: #091d38;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
}
.product-descr-title span{
    font-weight: normal;
}
.product_info {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.product-header {
    display: flex;
    margin-bottom: 70px;
}
.pic_side img {
    padding: 40px;
    margin-right: 50px;
}
.product-info-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}
.package-doses-list {
    display: inline-block;
    margin-left: -3px;
    margin-bottom: 25px;
}
.package-doses-row a {
    padding: 10px 10px;
    border-radius: 18px;
    min-width: 80px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 2px 5px 5px 3px;
    font-size: 13px;
    color: #0a1e39;
    font-weight: 500;
    box-shadow: 1px 2px 8px 0 rgba(194, 190, 227, 0.36);
}
.package-doses-row a.active,
.package-doses-row a:hover{
    background-color: #725cff;
    color: #ffffff;
}
.product-descr {
    margin-top: 1.5rem;
    margin-bottom: 80px;
}
.product-description-title {
    border-bottom: 1px solid #eee;
    margin-bottom: 1.5rem;
}
.product-description-title a {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #3a3c47;
    padding: 15px 0px 7px;
    margin-bottom: -1.5px;
}
#p2 {
    margin-right: 20px;
    margin-left: 20px;
}
.product-description-title a.active {
    border-bottom: 2px solid #787bfe;
}
.product-descr-block {
    font-size: 13px;
    line-height: 1.54;
    color: #707070;
}
.review-block {
    margin-bottom: 2rem;
    color: #707070;
    display: none;
}
.review-name {
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 5px;
}
.review-name span {
    font-weight: 700;
    text-transform: capitalize;
    color: #000;
}
.review-text {
    font-style: italic;
    color: #7a7f87;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.05px;
}
.review-star {
    margin-top: 1rem;
    font-size: 14px;
    display: flex;
    align-items: center;
    font-weight: 200;
}
.review-star img {
    margin-bottom: 5px;
}
.review-star-capt {
    margin-right: 10px;
}
.review-star-count {
    color: #222222;
    margin-left: 3px;
}
.package-example {
    background-color: #f7f7f7;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0px;
    border: 1px solid #e6e9eb;
}
.delivery-view {
    width: 100%;
}
.delivery-title {
    font-size: 15px;
    color: #222222;
    margin-bottom: 20px;
}
.package-view {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.example-view {
    margin-right: 25px;
}
img {
    border: none;
}

img {
    vertical-align: middle;
    border-style: none;
}
.delivery-desccription {
    font-size: 12px;
}
.shedule-tbl {
    width: 100%;
    border: 1px solid #e6e9eb;
}
.shedule-tbl td {
    border: 1px solid #e6e9eb;
    text-align: center;
    padding: 5px;
    font-weight: 300;
    color: #222222;
}
.shedule-tbl-header td {
    color: #808080;
    font-size: 12px;
    font-weight: 200;
}
.ourbonus-block {
    display: flex;
    margin-top: 25px;
    flex-wrap: wrap;
}
.ourbonus-block ul {
    margin-right: 40px;
    margin-bottom: 0;
    padding-inline-start: 0px;
}
.ourbonus-block ul li {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}
.ourbonus-block ul li:before {
    content: url(../images/icons/ic_check.svg);
    display: block;
    padding-top: 4px;
    margin-right: 5px;
}
.view-description {
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    color: #808080;
    margin-top: 8px;
}
/* about us */
.about_us {
    max-width: 950px;
    margin: 0 auto;
    padding-bottom: 5rem;
}
.about_us p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.15px;
    color: #3a3c47;
    display: flex;
    align-items: center;
    gap: clamp(1rem, -2.067rem + 8vw, 3rem);
    padding: clamp(1.5rem, -2.067rem + 8vw, 3rem) 0;
    margin: 0;
}
.about_us p:nth-child(1) {
    text-align: center;
}
.about_us p:nth-child(2),
.about_us p:nth-child(3) {
    border-bottom: 1px solid #e5e5e5;
}
.about_us p:nth-child(2)::before {
    display: block;
    content: '';
    background-image: url(../images/banners/im_about2.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-width: calc(50% - clamp(1rem, -2.067rem + 8vw, 3rem) / 2);
    flex: 1;
    aspect-ratio: 446 / 221;
} 
.about_us p:nth-child(3)::after {
    /* border-bottom: 1px solid #e5e5e5; */

    display: block;
    content: '';
    background-image: url('../images/banners/im_about3.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-width: calc(50% - clamp(1rem, -2.067rem + 8vw, 3rem) / 2);
    flex: 1;
    aspect-ratio: 446 / 221;
}
.about_us p:nth-child(4)::before {
    display: block;
    content: '';
    background-image: url('../images/banners/im_about4.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-width: calc(50% - clamp(1rem, -2.067rem + 8vw, 3rem) / 2);
    flex: 1;
    aspect-ratio: 446 / 221;
}

/* order status */
#wrapper:has(.order-status) #middle,
#wrapper:has(.order-status) #container,
#wrapper:has(.order-status) #content,
.order-status {
    height: 100%;
}
.order-status form {
    display: flex;
    flex-direction: column;
}
.order-status {
    display: flex;
    flex-direction: column;
    background-image: url(../images/bg_order_status.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 120px;
}
.order-status-wrapper {
    margin: 1.25rem auto;
    max-width: 560px;
    padding: clamp(1.75rem, -1.393rem + 11.786vw, 4.5rem) clamp(2rem, 0.476rem + 5.714vw, 3.333rem);
    background-color: #f2f3f5;
    border-radius: 4px;
    box-shadow: 0px 5px 16px 0 rgba(0, 0, 0, 0.11);
}
.order-status-title {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.75rem;
}
.order-status .site-input {
    margin-bottom: 1.333rem;
}
.order-status .submit-btn {
    margin: 4px auto;
}
.order-status .errors {
    margin: -1rem 0 1rem;
}
h2.title,
div.title {
    font-size: clamp(1.6rem, 1.091rem + 1.818vw, 2rem);
    font-weight: bold;
    margin: 0;
}
h2.title span {
    display: inline-block;
    width: auto;
}
.title.faq {
    text-transform: uppercase;
}
.contact-us {
    display: flex;
    gap: clamp(1rem, -3.148rem + 8.102vw, 3.333rem);
    margin-top: 2rem;
}
.contact-us-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.63;
    margin-bottom: 30px;
}
.contact-us-info {
    padding: 0px;
    margin-bottom: 20px;
}
.captcha-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.contact_form {
    width: clamp(24rem, 11.556rem + 24.306vw, 31rem);
}
.contact_form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-us .lz_text_link {
    display: inline-flex;
}
.contact-info {
    flex: 1;
    font-size: 14px;
    font-weight: 300;
    color: #7a7f87;
    line-height: 1.57;
}
.contact-info-block {
    margin-bottom: 1rem;
}
.contact-info-title {
    font-size: 15px;
    font-weight: 500;
    color: #245bc3;
}
.contact-info-text img {
    height: 11px;
}
#contact_note {
    font-size: 14px;
    font-weight: 300;
    color: #7a7f87;
    line-height: 1.57;
}
.custom-textarea {
    height: 150px;
    margin-bottom: 20px;
    border: none;
}
.errors {
    color: #ff5352;
    font-size: 10px;
}
.success {
    color: #16a219;
    font-size: 10px;
}
.form-field-group {
    display: flex;
}
.form-field-group > div {
    width: 50%;
}
.form-field-group > div:first-child {
    margin-right: 28px;
}
.form-field-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 13px;
}
.order-status-description {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.83;
    text-align: center;
    margin: 2rem -1rem 0
}
.image-background {
    padding-left: 80px;
    padding-top: 48px;
}
.image-background img {
    width: 100%;
    height: auto;
}
.faq.custom-container,
.terms.custom-container {
    padding-bottom: 5rem;
}
.faq .title{
    display: none;
}
.faq_descr {
    background-color: #fff;
    padding: 0 1.4rem;
    box-shadow: 0px 1px 6px 0 rgba(219, 219, 219, 0.71);
    background-color: #f9f9f9;
    position: relative;
    margin-bottom: 1rem;
    border-radius: 3px;
}
.faq_descr:before {
    content: url(../images/icons/ic_faq_more.svg);
    position: absolute;
    right: 1rem;
    top: .8rem;
    cursor: pointer;
}
.faq_descr.faq-active::before {
    content: url(../images/icons/ic_faq_less.svg);
}
.question {
    padding: 1rem 2.75rem 1rem 0;
    font-size: 16px;
    font-weight: 500;
}
.answer {
    display: none;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.57;
    color: #707070;
    margin: 0;
    padding-bottom: 1px;
}
.our_policy p {
    font-size: 15px;
    line-height: 1.6;
    color: #2c2c2c;
}
.our_policy br {
    display: none;
}
.our_policy strong {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.56;
    letter-spacing: -0.18px;
    color: #3a3c47;
    margin-top: 1rem;
    display: inline-block;
}
.review-title {
    font-size: 14px;
}
.review-text {
    font-size: 13px;
}
/* landing page */
/* landing page */
.toolbar {
    display: none;
}
.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;
}

.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;
    gap: .5rem;
}
.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%;
    margin-bottom: clamp(0rem, -25.289rem + 38.278vw, 5.333rem);
}

.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;
}



.status_success {
    color: green;
    padding: 10px 0;
}

.status_error {
    color: red;
    padding: 10px 0;
}

.directLink {
    color: #505050;
    font-size: 14px;
    padding-top: 20px;
}

.dev_icon {
    display: inline-block;
    height: 80px;
}

.dev_icon img {
    position: relative;
}

.dev_title {
    margin-top: 5px;
    padding: 5px 0;
    border: 1px solid #fff;
}

.iosPhone .dev_icon img,
.androidPhone .dev_icon img {
    margin-top: 12px;
}

.dev_curr {
    display: inline-block;
    background: url('../images/landing/_dot.png') center;
    width: 7px;
    height: 7px;
    position: relative;
    top: 9px;
}

.devMailTitle {
    border-bottom: 1px solid #d5d5d5;
    color: #578aae;
    font-size: 16px;
    text-align: center;
}

.devMailTitle>div {
    background-color: #fff;
    display: inline-block;
    padding: 0 20px;
    position: relative;
    top: 10px;
}

.devMailTip {
    color: #505050;
    font-size: 14px;
    text-align: center;
    padding: 40px 0;
}

.devfeatureTip {
    color: #505050;
    font-size: 14px;
    text-align: center;
    padding: 40px 0 30px;
}

.devForm {
    text-align: center;
    padding-bottom: 30px;
    max-width: 460px;
    width: 100%;
    margin: 0px auto;
}

.devForm * {
    vertical-align: middle;
}

.devBenefits {
    width: 100%;
    height: 140px;
    border-collapse: collapse;
    font-size: 14px;
}

.devBenefits td {
    width: 33%;
    vertical-align: top;
    text-align: center;
    padding: 3px
}

.devBenefits div {
    padding: 10px;
    font-weight: bold;
}

.devBenefits p {
    color: #505050;
}

.slideScreen {
    padding: 30px 0;
    position: relative;
}

.carousel {
    margin: 0 auto;
}

.slideScreen .next {
    cursor: pointer;
    position: absolute;
    right: 10%;
    top: 50%;
    margin-top: -18px;
}

.slideScreen .prev {
    cursor: pointer;
    position: absolute;
    left: 10%;
    top: 50%;
    margin-top: -18px;
}

.slideScreen .disabled {
    opacity: 0.3;
}

.slideScreenDev {
    padding: 50px 5%;
    position: relative;
}

.screen_android {
    background: url('../images/landing/_android2.jpg') center right 3% no-repeat;
}

/*fst load*/
.screen_tablet {
    background: url('../images/landing/_tablet2.jpg') center right 3% no-repeat;
    display: none;
}

.stage1,
.stage2,
.stage3 {
    width: 37%;
    padding: 10px 0 10px 65px;
    background: url('../images/landing/_stage.png') center left no-repeat;
    min-height: 65px;
    position: relative;
    color: #578aae;
    cursor: pointer;
}

.slideScreenDev>div.activeStage {
    background: url('../images/landing/_stage_active.png') center left no-repeat;
    color: #fff;
}

.sepStage {
    height: 60px;
    margin-left: 24px;
    border-left: 2px solid #578aae;
}

.stageTitle {
    font-size: 14px;
    padding-bottom: 5px;
    color: #578aae;
}

.stageText {
    color: #828282;
}

.slideScreenDev span {
    position: absolute;
    top: 50%;
    left: 21px;
    font-size: 16px;
    line-height: 16px;
    margin-top: -8px;
}

.status_success {
    color: green;
    padding: 10px 0;
}

.status_error {
    color: red;
    padding: 10px 0;
}

.directLink {
    color: #505050;
    font-size: 14px;
    padding-top: 20px;
}

#link {
    color: #999;
}
.search-errors {
    max-width: 725px;
    margin: auto;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.13px;
    color: #eb0f0f;
}
#wrapper_billing {
    margin-bottom: clamp(1.4rem, -5rem + 12.5vw, 5rem) !important;
}


.anim {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@keyframes Zoom {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        -ms-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

.Zoom {
    -webkit-animation-name: Zoom;
    animation-name: Zoom
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeR {
    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
    }
}

.fadeR {
    -webkit-animation-name: fadeR;
    animation-name: fadeR
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@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
}

.list-benefits-item.secure {
    animation-delay: .2s
}

.list-benefits-item.bonus-pills {
    animation-delay: .4s
}

.page-title .heading-text {
    display: inline-block
}

.floating {  
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    from { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    to   { transform: translate(0, -0px); }    
}