* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
    font-family: 'Raleway', sans-serif;
}

:root {
    --main-font: 'Work Sans', sans-serif;
    --accent-font: 'Raleway', sans-serif;
    --accent-color: #489d3a;
    --bg-section: #87aac31b;

    --max-width: 1920px;
    --section-width: 88%;

    --sect-tb-padding: 65px;
}

/* [COMMON] */

html,
body {
    background-color: #fff;
}

a {
    text-decoration: none;
}

input,
select,
textarea {
    border: none;
    border-bottom: 1px solid #bdbdbd;
    outline: none;
    /* background-color: transparent !important; */
    font-family: var(--accent-font);
    font-style: italic;
    resize: vertical;
    padding: 10px 15px 2px 15px;
    transition: 0.3s ease;
}
input.error,
select.error,
textarea.error {
    border-bottom: 2px solid #fdbfbf !important;
}

.order-section input:not([type='checkbox']):not([type='radio']),
.order-section select,
.order-section textarea {
    background-color: transparent;
    width: 100%;
}

.b-300 {
    font-weight: 300;
}
.b-400 {
    font-weight: 400;
}
.b-500 {
    font-weight: 500;
}
.b-600 {
    font-weight: 600;
}
.b-700 {
    font-weight: 700;
}
.b-800 {
    font-weight: 800;
}
.b-900 {
    font-weight: 900;
}
.pa-t1 {
    padding-top: 1em;
}
.pa-t2 {
    padding-top: 2em;
}
.pa-b1 {
    padding-bottom: 1em;
}
.pa-b2 {
    padding-bottom: 2em;
}
.pa-tb1 {
    padding-top: 1em;
    padding-bottom: 1em;
}
.pa-tb2 {
    padding-top: 2em;
    padding-bottom: 2em;
}
.pa-tb3 {
    padding-top: 3em;
    padding-bottom: 3em;
}
.pa-tb4 {
    padding-top: 4em;
    padding-bottom: 4em;
}
.pa-lr2 {
    padding-left: 2em;
    padding-right: 2em;
}
.pa-lr3 {
    padding-left: 3em;
    padding-right: 3em;
}
.mar-t1 {
    margin-top: 1em;
}
.mar-t2 {
    margin-top: 2em;
}
.mar-t3 {
    margin-top: 3em;
}
.mar-b1 {
    margin-bottom: 1em;
}
.mar-b2 {
    margin-bottom: 2em;
}
.mar-b3 {
    margin-bottom: 3em;
}
.mar-tb1 {
    margin-top: 1em;
    margin-bottom: 1em;
}
.mar-tb2 {
    margin-top: 2em;
    margin-bottom: 2em;
}
.mar-tb3 {
    margin-top: 3em;
    margin-bottom: 3em;
}
.mar-tb4 {
    margin-top: 4em;
    margin-bottom: 4em;
}

.pa-tb-sect {
    padding-top: var(--sect-tb-padding);
    padding-bottom: var(--sect-tb-padding);
}

.text-center {
    text-align: center;
}
.fc-accent {
    color: var(--accent-color);
}
.ttl-w-divider {
    display: block;
    position: relative;
    padding-bottom: 40px;
    color: #333333;
    letter-spacing: 0.05em;
    font-size: 50px;
    font-weight: bold;
    font-family: var(--accent-font);
    /* margin-bottom: 40px; */
}
.ttl-w-divider::after {
    content: '';
    width: 80px;
    height: 5px;
    background-color: var(--accent-color);
    position: absolute;
    top: 100%;
    left: 0;
}
.sect-ttl {
    display: block;
    color: #333333;
    letter-spacing: 0.05em;
    font-size: 50px;
    font-weight: bold;
    font-family: var(--accent-font);
}
.sect-sub-dashed {
    width: max-content;
    max-width: 100%;
    position: relative;
    padding: 0 75px;
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    line-height: 200%;
    text-align: center;
    letter-spacing: 0.16em;
    color: #000000;
    font-family: var(--accent-font);
    margin: 5px auto;
}
.sect-sub-dashed::before {
    content: '';
    width: 60px;
    height: 1px;
    background-color: #bdbdbd;
    position: absolute;
    top: 50%;
    left: 0;
}
.sect-sub-dashed::after {
    content: '';
    width: 60px;
    height: 1px;
    background-color: #bdbdbd;
    position: absolute;
    top: 50%;
    right: 0;
}

.section-block {
    max-width: var(--max-width);
    width: var(--section-width);
    margin: 0 auto;
}
.bg-section {
    background-color: var(--bg-section);
}
.bg-accent {
    background-color: var(--accent-color);
}

.btn {
    display: inline-block;
    width: max-content;
    border: 1px solid #000;
    border-radius: 8px;
    color: #000;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    font-family: var(--accent-font);
    font-size: 18px;
    padding: 15px;
    cursor: pointer;
    outline: none;
    transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    white-space: nowrap;
}
.btn:hover {
    background-color: #489d3a;
    border: 1px solid transparent;
    color: #fff;
}
.btn.btn--small {
    font-size: 14px;
    padding: 10px;
}
.btn.btn--loading {
    /* Make loading animation */
    position: relative;
    overflow: hidden;
}
.btn.btn--loading::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: inherit;
    pointer-events: none;
    user-select: none;
}
.btn.btn--loading::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 5px solid #fff;
    animation: prixClipFix 2s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
    }
    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
    }
    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
    }
    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
    }
    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
    }
}

.btn.accent {
    background-color: var(--accent-color);
    font-weight: 500;
    color: #fff;
    border: none;
    padding: 15px 17px;
}

.btn.accent:hover {
    background-color: #39742f;
}

.btn.white {
    color: #fff;
    border: 1px solid #fff;
}
.btn.white:hover {
    background-color: rgba(255, 255, 255, 0.296);
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.grid-2col.max-content {
    grid-template-columns: max-content max-content;
}
.grid-2col.no-gap {
    gap: 0;
}

ul.list-w-checkmarks,
.list-w-checkmarks ul {
    list-style: none;
}
.list-w-checkmarks li {
    position: relative;
    padding: 10px 0 5px 40px;
}

.list-w-checkmarks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    background-image: url(/img/icons/checkmark_green.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.flex {
    display: flex;
}
.align-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}

/* Payment card form */
.payment-card-form__row {
    margin-bottom: 15px;
}
.payment-card-form__row--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.payment-card-form__fieldset {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px dashed #bdbdbd;
}
.payment-card-form__legend {
    font-family: var(--accent-font);
    font-weight: 600;
    margin-bottom: 10px;
}
/* [HEADER MENU] */
.navigation {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 9;
}
.navigation.active .follow-block {
    /* display: none; */
}
.navigation.active {
    top: -40px;
    box-shadow: 0 0 35px -5px rgba(0, 0, 0, 0.563);
}
.head-nav {
    /* position: sticky;
    top: 0; */
    display: grid;
    grid-template-columns: 20% 1fr max-content;
    align-items: flex-end;
    padding: 10px 0;
    z-index: 9;
    /* background-color: #fff; */
}

.hn-logo {
    display: flex;
    min-width: 150px;
}
.hn-logo img {
    max-width: 100%;
    object-fit: scale-down;
}
.hn-menu {
    display: flex;
    margin: 0 5%;
    list-style: none;
}
.hm-right {
    justify-content: flex-end;
    width: 400px;
    display: flex;
    align-items: flex-end;
}
.hmr-account-wrap {
    margin: 0 20px;
}
.hmr-account-wrap a {
    display: flex;
    align-items: flex-end;
}
.hmr-account-wrap a svg,
.hmr-account-wrap a img {
    margin-right: 5px;
}
.hnl-wrap {
    border-top: 5px solid transparent;
    padding: 10px 0px;
    margin: 0 25px;
    margin-right: 5%;
    transition: 0.3s linear;
}
.hnl-wrap:hover {
    border-top: 5px solid var(--accent-color);
}
.hnl-wrap.active {
    border-top: 5px solid var(--accent-color);
    font-weight: 500;
}
.hnl-wrap__submenu {
    list-style: none;
    position: absolute;
    top: calc(100% - 10px);
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition: 0.3s ease;
    box-shadow: 0 35px 35px -35px rgba(0, 0, 0, 0.2);
}
.hnl-wrap__submenu-list {
    list-style: none;
    display: flex;
    justify-content: center;
    column-gap: 30px;
}
.hnl-wrap__submenu .hnl-wrap__submenu-list__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 15px;
    padding: 10px 0;
    color: #000;
    transition: 0.3s ease;
}
.hnl-wrap__submenu a .hnl-wrap__submenu-list__item-image {
    max-width: 200px;
}
.hnl-wrap__submenu a .hnl-wrap__submenu-list__item-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}
.hnl-wrap__submenu .hnl-wrap__submenu-list__item span {
    font-weight: 600;
}
.hnl-wrap__submenu a:hover {
    color: var(--accent-color);
}
.hnl-wrap:hover .hnl-wrap__submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}
.hnl-wrap.active .head-nav-link {
    font-weight: 600;
}
.head-nav-link img {
    width: 20px;
    height: 20px;
}
.head-nav-link {
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.085em;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--accent-font);
    margin-bottom: 10px;
    white-space: nowrap;
}
.accred {
    display: flex;
    max-width: 300px;
    margin-top: 20px;
}
.accred img {
    max-width: 100%;
}
.follow-block {
    display: flex;
    align-items: center;
    /* margin: 10px 0; */
    margin-bottom: 10px;
}
.follow-block svg {
    margin-left: 15px;
}
.follow-block span {
    color: #828282;
    font-size: 14px;
    text-transform: uppercase;
}

.m-menu--open {
    display: none;
}
.m-menu--close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}
.m-menu--close svg {
    max-width: 50%;
}
.m-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c9c9c9;
    z-index: 999;
    display: none;
    place-content: center;
}

.m-menu ul {
    padding: 30px 30px;
    /* margin: 20px; */
    margin: 20px 20px 20px 45px;
    list-style: none;
    box-shadow: -30px 0px 30px -30px #fff;
    transition: 0.3s ease;
    transform-origin: top left;
    border-left: 1px solid rgba(255, 255, 255, 0.33);
}
.m-menu ul li:hover a {
    color: #fff;
    text-shadow: 0 0px 2px black;
}
.m-menu h1 {
    font-family: var(--accent-font);
    font-size: 35px;
}
.m-menu ul li a {
    display: block;
    padding: 10px 0;
    color: #000;
    transition: 0.3s ease;
}

.not-found {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    text-align: center;
    font-size: 30px;
    font-family: var(--accent-font);
    padding: 20px 50px 150px 20px;
}

/* [HOME] */
.h-video-section {
    background-color: #f2f0f4;
    background-image: url(/img/misc/dna_3.png);
    background-image: url(/img/misc/dna_3.png), linear-gradient(to right, #f2f0f4, transparent); /* W3C */
    background-position: center left;
    background-size: 50% contain;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.h-video-block {
    /* position: relative; */
    /* height: 84vh; */
    height: 50vw;
    min-height: 400px;
    max-height: 84vh;
}
.hero-video-bg {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}
.hero-video-bg video {
    width: 50%;
    height: 100%;
    object-fit: cover;
}
.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 0 2%;
    max-width: 1000px;
    z-index: 1;
}
.ttl-w-divider.hero-ttl {
    font-size: 80px;
    line-height: 100%;
    color: #ffffff;
    letter-spacing: initial;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    font-size: calc(20px + 3vw);
}
.ttl-w-divider.hero-ttl::after {
    width: 110px;
}
.hero-sub-ttl {
    margin-top: 40px;
    margin-bottom: 45px;
    font-weight: 500;
    font-size: calc(16px + 1.5vw);
    letter-spacing: 0.05em;
    color: #4f4f4f;
    font-family: var(--accent-font);
}

.h-test-card-wrap h3 {
    font-size: 32px;
    line-height: 130%;
    text-align: center;
    letter-spacing: 0.085em;
    text-transform: uppercase;
}
.h-test-card {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 440px;
    border-radius: 15px;
}
.h-test-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        79.75% 185.89% at 12% 17.56%,
        rgba(128, 143, 150, 0.29) 0%,
        rgba(255, 255, 255, 0) 59.51%,
        rgba(128, 143, 150, 0.4) 99.51%
    );
}
.h-test-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.h-test-card-text {
    position: absolute;
    left: 0;
    top: calc(100% - 150px);
    width: 100%;
    padding: 30px;
    /* height: 100px; */
    height: 150px;
    max-height: 150px;
    transform-origin: bottom;
    background-color: rgba(255, 255, 255, 0.775);
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.h-test-card-text p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-style: italic;
    font-size: 18px;
    line-height: 200%;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #000000;
    transition: 0.3s ease;
}
.h-test-card:hover .h-test-card-text {
    height: 100%;
    max-height: 100%;
    top: 0;
}
.h-test-card:hover .h-test-card-text p {
    line-clamp: initial;
    -webkit-line-clamp: initial;
}
.lmaot {
    width: max-content;
    padding: 40px 0 20px 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    font-size: 26px;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    color: #000000;
    transition: 0.3s ease;
}
.lmaot:hover {
    letter-spacing: initial;
    color: var(--accent-color);
}
.lmaot:hover img {
    margin-left: 20px;
}
.lmaot img {
    transition: 0.3s ease;
    margin-left: 15px;
}

.h-wcd {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.action-block {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.action-block h1 {
    font-family: var(--accent-font);
    font-size: 32px;
    letter-spacing: 0.085em;
    text-transform: uppercase;
}

.action-block a {
    margin: 0 30px;
}

.how-steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 23px;
    margin: 25px 0 40px 0px;
}
.how-steps-item {
    position: relative;
    background-color: #87aac319;
    border-radius: 50%;
    width: 100%;
    text-align: center;
    overflow: hidden;
}
.how-steps-item::after {
    content: '';
    display: block;
    padding-bottom: 100%;
}
.how-steps-item > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.how-steps-item:hover .how-steps-item-center {
    box-shadow: 0 0 15px 2px #fff inset, 0 0 25px -18px #000, 0 0 50px 50px #87aac345;
}
.how-steps-item:hover span {
    z-index: 1;
}

.how-steps-item:hover img {
    transform: translate(-50%, -50%) scale(1.2);
}
.how-steps-item-center {
    background-color: #87aac345;
    position: relative;
    width: 75%;
    margin: 10% auto;
    transition: 0.3s ease;
    border-radius: 50%;
}
.how-steps-item-center::after {
    content: '';
    display: block;
    padding-bottom: 100%;
}
.how-steps-item-center img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
}
.how-steps-list span {
    display: block;
}
.how-steps-list span:first-of-type {
    align-self: center;
    font-family: var(--accent-font);
    font-size: 32px;
    letter-spacing: 0.085em;
    text-transform: uppercase;
}
.how-steps-list span:last-of-type {
    align-self: center;
    font-family: var(--accent-font);
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    font-size: calc(12px + 0.3vw);
    /* line-height: 200%; */
    letter-spacing: 0.16em;
    max-width: 250px;
    grid-row: 3/5;
}

.tab-btns {
    display: flex;
    justify-content: center;
    margin: 20px 0 60px 0;
}
.account .tab-btns {
    margin: 0;
    margin-top: 45px;
}
.tab-btn {
    font-size: 18px;
    letter-spacing: 0.085em;
    font-weight: 300;
    text-transform: uppercase;
    color: #282828;
    margin: 0px 10px;
    padding: 10px;
    border-radius: 7px;
    background-color: rgb(243, 243, 243);
    border: 1px solid #828282;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease;
    position: relative;
}
.tab-btn.active {
    background-color: var(--accent-color);
    color: #fff;
    border: 1px solid var(--accent-color);
}
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 1px;
    border: 5px solid var(--accent-color);
    background-color: var(--accent-color);
    transform: translateY(5px) rotate(45deg);
}
.tab-btn:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.tab-content {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 90px;
}
.tab-content-img img {
    max-width: 100%;
    border-radius: 15px;
}
.tab-content-txt {
    position: relative;
    padding: 0px 0;

    max-width: 900px;
}
.tab-content-txt p {
    line-height: 150%;
}
.tab-content-txt .ttl-w-divider {
    margin-bottom: 30px;
}
.tab-content-txt.styled::before {
    content: '';
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.breadcrumbs-wrapper {
    background-image: url(/img/misc/bread_dna.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    padding: 5vw 0;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}
.breadcrumbs-link {
    display: inline-block;
    color: #000;
    padding-left: 20px;
    position: relative;
}
.breadcrumbs-links.breadcrumbs-link:first-of-type {
    margin-left: 0;
}
.breadcrumbs-link.current {
    color: var(--accent-color);
}
.breadcrumbs-link:not(:first-of-type)::before {
    content: '/';
    position: absolute;
    top: 0;
    left: 5px;
    width: 20px;
    height: 100%;
    color: #000;
}

#login-popup {
    padding: 70px;
}
#login-popup form {
    width: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
}
#login-popup .lp-form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
#login-popup .lp-form-row small {
    margin-top: 5px;
    margin-left: auto;
}
#login-popup .lp-form-row small a {
    color: var(--accent-color);
}

#login-popup input {
    padding: 18px 20px;
    border: none;
}
.login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.lp-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 55px;
    max-width: 500px;
    background-color: rgba(72, 157, 58, 0.05);
    position: relative;
    overflow: hidden;
}
#login-popup #lp-form-2 {
    display: none;
    /* position: absolute;
    top: 0;
    left: 100%; */
}
.lp-section > div {
    width: 100%;
}
.lp-section h2 {
    font-family: var(--accent-font);
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    color: #000;
}
.lp-section em {
    font-family: var(--accent-font);
    letter-spacing: 0.16em;
}

.contact-form {
    display: flex;
    flex-direction: column;
}
.contact-form h2 {
    color: var(--accent-color);
    margin-bottom: 40px;
}
.contact-form > input {
    margin-bottom: 30px;
}

.contact-form .btn {
    margin-top: 50px;
}
.conatct-map {
    min-height: 666px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.conatct-map a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.contact-item h5,
.contact-item .follow-block span {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.contact-item .follow-block span {
    margin: 0;
}
.contact-item > *:not(h5) {
    font-size: 18px;
    line-height: 150%;
    color: #070b30;
}
.accordion-item-header {
    position: relative;
    background-color: var(--bg-section);
    padding: 22px 44px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
}
.accordion-item-header::before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: 26px;
    left: 15px;
    background-color: var(--accent-color);
}
.accordion-item-header::after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 15px;
    background-image: url(/img/icons/dna_plus.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.3s ease;
}
.accordion-item.active .accordion-item-header::after {
    background-image: url(/img/icons/dna_minus.png);
}
.accordion-item-content {
    /* padding: 25px; */
    margin: 25px;
    line-height: 150%;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 100px;
    transition: 0.3s ease;
}
.accordion-item.active .accordion-item-content {
    display: block;
    height: max-content;
    max-height: 100vh;
}
.accordion-item-footer {
    text-decoration: underline;
    color: var(--accent-color);
    padding: 0 25px;
    font-weight: 600;
    cursor: pointer;
}
.accordion-item-footer::before {
    content: 'Read more';
}
.accordion-item.active .accordion-item-footer::before {
    content: 'Read less';
}

/* [TESTS] */

.t-article {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 40px 0;
    margin: 0 20px;
    border-bottom: 1px solid #e0e0e0;
}

.t-article__title-1 {
    color: #000;
    font-size: clamp(20px, 2vw, 32px);
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 2.72px;
    text-transform: uppercase;
}

.t-article__title-2 {
    color: var(--accent-color);
    font-size: clamp(20px, 2vw, 32px);
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 2.72px;
    text-transform: uppercase;
}

.t-article__image {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

.t-article__image img {
    max-width: 100%;
}

.t-article__text {
    text-align: center;
    font-size: clamp(16px, 2vw, 18px);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 2.88px;
    overflow: hidden;
    margin-bottom: 20px;
}

.t-article__text-container {
    --max-lines: 4;
    overflow: hidden;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--max-lines);
}

.t-article__link {
    display: inline-block;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    line-height: 200%;
    letter-spacing: 2.88px;
    text-decoration-line: underline;
}

.t-test {
    padding: 65px;
}
.t-test ul {
    list-style: none;
    column-count: 2;
}
.t-test ul li {
    position: relative;
    padding: 10px 0 5px 20px;
    display: inline-block;
    min-width: 50%;
}
.t-test ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
}
.t-test > p {
    margin: 20px 0;
    line-height: 150%;
}
.t-test > img {
    display: block;
    max-width: 100%;
    margin: 20px auto;
}
.t-test h2 {
    display: block;
    margin-top: 30px;
    font-weight: 300;
    font-size: 46px;
    letter-spacing: 0.1em;
    color: #333333;
    margin-bottom: 30px;
}

.tests-grid {
    display: grid;
    /* grid-template-areas:
        't-tag t-tag t-tag'
        't-item t-item t-item'; */
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2px;
}
.tests-grid > .btn {
    grid-column: 1/-1;
    margin: 30px auto;
}
.tests-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 20px;
}
@media (max-width: 1400px) {
    .tests-grid-new {
        grid-template-columns: 1fr 1fr;
        column-gap: 15px;
    }
}
@media (max-width: 410px) {
    .tests-grid-new {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
}
.tests-grid-new img {
    max-width: 100%;
}
.test-item-new {
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    background-color: #479d3a10;
    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.tests-grid-new > .btn {
    grid-column: 1/-1;
    margin: 30px auto;
}
.test-item-new:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 15px 2px #fff inset, 0 0 25px -18px #000, 0px 25px 15px -15px #479d3a1a;
    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.test-item-new__title {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    padding: 15px 10px;
}
#test-order-popup {
    padding: 0;
}
.tests-order-form {
}
.tests-order-form__image img {
    max-width: 100%;
}
.tests-order-form__content {
    padding: 20px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.tests-order-form__qty {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    /* padding-top: 20px; */
}

.tests-order-form__qty label {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.085em;
    text-transform: uppercase;
}
.tests-order-form__qty select {
    margin: 0 10px;
    padding: 17px 40px;
    min-width: 150px;
    font-size: 16px;
    padding: 5px 10px;
    border: 1px solid #00000026;
}
.tests-order-form__title {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    padding: 0 10px 0 10px;
}
.t-tag {
    background-color: var(--accent-color);
    font-family: var(--accent-font);
    padding: 15px;
    text-align: center;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    color: #ffffff;
}
.tests-grid > .test-item:nth-child(5) {
    background-color: #479d3a12;
}
.tests-grid > .test-item:nth-child(6) {
    background-color: #479d3a2a;
}
.tests-grid > .test-item:nth-child(7) {
    background-color: #479d3a64;
}
.tests-grid > .test-item:nth-child(8) {
    background-color: #479d3a9b;
}

.test-item:nth-child(3) {
    background-color: #479d3a7c;
}
.test-item {
    padding: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font-family: var(--accent-font);
}
.t-divider {
    border-top: 3px solid var(--accent-color);
    width: 80px;
    height: 40px;
    margin: 10px auto;
}
.t-divider.discount {
    background-color: #4f4f4f;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    width: max-content;
    padding: 10px 15px;
    margin: 10px auto;
    border: none;
}
.test-item > div:not(:first-of-type) {
    margin-bottom: 30px;
}

.test-item .t-head h2 {
    font-weight: 300;
    font-size: 32px;
    line-height: 130%;
    text-align: center;
    letter-spacing: 0.085em;
    text-transform: uppercase;
}
.test-item .t-head h2:last-of-type {
    font-weight: 600;
}
.t-price {
    padding: 20px 0;
    text-align: center;
}
.test-item .t-price p {
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    letter-spacing: 0.085em;
}
.test-item .t-price h3 {
    font-family: var(--accent-font);
    font-weight: 600;
    font-size: 28.8px;
    line-height: 110%;
    text-align: center;
    letter-spacing: 0.085em;
    text-transform: uppercase;
}
.test-item .t-qty {
    text-align: center;
}

.test-item .t-qty select {
    margin-top: 10px;
    padding: 17px 40px;
    min-width: 150px;
    font-size: 16px;
}

/* [ORDER] */
.order-ttl {
    padding: 50px 0;
    position: relative;
}
.order-ttl::before {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 50%;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    transform: translateX(-50%);
}
.order-ttl h2 {
    font-family: var(--accent-font);
    font-weight: bold;
    font-size: 32px;
    line-height: 130%;
    text-align: center;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.order-section {
    border-radius: 20px;
    background: #479d3a10;
    padding: 60px 50px;
}

.os-ttl {
    font-family: var(--accent-font);
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.os-2col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 100px;
}
.billing-info-separator {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px dashed #bdbdbd;
}
.billing-info-separator--with-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 10px;
}
.billing-copy-toggle {
    font-family: var(--accent-font);
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: none;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.billing-copy-toggle input[type='checkbox'] {
    width: 16px;
    height: 16px;
}
@media (max-width: 650px) {
    .billing-info-separator--with-toggle {
        flex-direction: column;
        align-items: flex-start;
    }
    .billing-copy-toggle {
        font-size: 14px;
    }
}
.billing-ttl {
    font-family: var(--accent-font);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}
.os-3col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px 50px;
}

@media (max-width: 1400px) {
    .os-3col-grid {
        grid-template-columns: 1fr 1fr;
    }
    .os-3col-grid > :nth-child(1) {
        grid-column: 1 / -1;
    }
}
@media (max-width: 650px) {
    .os-3col-grid {
        grid-template-columns: 1fr;
    }
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

@media (max-width: 650px) {
    .checkout-actions .btn.accent {
        padding: 10px 12px;
        font-size: 16px;
    }
}
.order-row {
    display: grid;
    grid-template-columns: minmax(200px, 20%) 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.order-row > * {
    font-family: var(--accent-font);
}
.order-row-shipping {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.order-row-edit {
    display: flex;
    align-items: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #828282;
}
button.order-row-edit {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--accent-font);
    cursor: pointer;
}
#edit-shipping-info {
    /* ensure nice spacing inside modal */
    padding: 10px 0;
}
#edit-shipping-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
    background-color: #479d3a10;
    border-radius: 15px;
}
/* #edit-shipping-form input:not([type='checkbox']) {
    padding: 15px 20px;
    border: none;
    border-bottom: 2px solid #bdbdbd;
    background-color: transparent;
    font-family: var(--accent-font);
    font-size: 16px;
    transition: border-bottom-color 0.3s ease;
} */
#edit-shipping-form select {
    width: 100%;
}
/* Address full-width row */
#edit-shipping-form input:nth-child(1), #edit-shipping-form div:last-child {
    grid-column: 1 / -1;
}
/* Improve focus and placeholder styling */
#edit-shipping-form input:focus,
#edit-shipping-form select:focus {
    border-bottom-color: var(--accent-color);
}

/* Select2 compatibility if initialized */
#edit-shipping-form .select2-container {
    width: 100% !important;
}
@media (max-width: 650px) {
    #edit-shipping-form {
        grid-template-columns: 1fr;
    }
}
.order-section hr {
    width: 98%;
    margin: 40px auto;
}

.order-section__action {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}
.orders-table-wrapper {
    border-radius: 15px !important;
    overflow: hidden;
}
.orders-table-actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    column-gap: 30px;
}
.orders-table-actions input {
    width: 100%;
    max-width: 300px;
}
/* .orders-table .select2-container{
    max-width:200px;
} */
.add-client-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.orders-table thead th,
.dcf-table thead th {
    text-align: left;
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 400;
    padding: 15px;
}
.orders-table thead th.shrink-toggle-all {
    text-align: center;
}
/* .orders-table thead th:first-of-type {
    border-top-left-radius: 15px;
}
.orders-table thead th:last-of-type {
    border-top-right-radius: 15px;
} */
.orders-table tbody td {
    padding: 15px;
    background-color: rgba(72, 157, 58, 0.05);
}
.orders-table tbody td input[type='checkbox'] {
    width: auto;
}
.orders-table tbody td a {
    color: var(--accent-color);
    text-decoration: underline;
}

.orders-table .orders-table-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
    margin: 0;
}

.orders-table .orders-table-actions a.edit {
    color: var(--accent-color);
    text-decoration: underline;
}

.orders-table .orders-table-actions a.delete {
    color: #ff6347;
    text-decoration: underline;
}

.orders-table.orders-table--min {
    max-width: 1200px;
}
.order-section__total-price {
    max-width: 800px;
    margin: 15px 0;
    text-align: right;
    display: flex;
    justify-content: space-between;
}
.order-section__total-price span {
    font-weight: 400;
}

/* || REPORT || */
.tb-reports .tab-btn {
    padding: 10px 15px;
    font-size: 14px;
}
.tc-report {
    display: block;
    overflow: hidden;
}
.tab-report {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
.tab-report .ttl-w-divider {
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.tab-report-innerWrapper {
    padding: 50px;
    border-radius: 20px;
}
.report-summary .report-diagram {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 10px 50px;
    width: 100%;
    max-width: 1000px;
}
.report-summary .report-diagram .progress-bar {
    width: 100%;
    height: 20px;
    background-color: transparent;
}
.report-summary .report-diagram .progress-bar .progress-bar-fill {
    height: 20px;
    background-color: #fff;
    transition: width 0.5s ease-in-out;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}
.report-summary .report-diagram .progress-bar .progress-bar-fill .percents {
    position: absolute;
    top: 0;
    right: -50px;
    font-size: 12px;
    font-weight: bold;
    color: #000;
    text-align: center;
    line-height: 20px;
}
.report-summary-text {
    margin-top: 70px;
}
.report-summary-text h1 {
    font-weight: normal;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 20px;
}

.gene-block {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 40px 0;
    padding: 40px 0;
}
.gene-logo {
    position: relative;
    width: 100%;
    /* min-height: 190px; */
    padding: 0 20px;
    margin-bottom: 30px;
}
.gene-logo img {
    display: block;
    max-width: 100%;
    padding: 30px 0 80px 0;
}
.gene-logo > div {
    width: 150px;
    height: 150px;
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 30px;
    text-align: center;
    letter-spacing: 0.085em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gene-about {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 27px 70px;
    border-left: 1px solid #bdbdbd;
}
.gene-number {
    border-top: 1px solid #bdbdbd;
    /* border-left: 1px solid #bdbdbd; */
    padding: 27px 70px;
}
.gene-other {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.gene-other div {
    width: 100%;
    border-top: 1px solid #bdbdbd;
    border-right: 1px solid #bdbdbd;
    padding: 27px 70px;
}
.gene-other div:first-of-type {
    border-left: 1px solid #bdbdbd;
}
.gene-other div:last-of-type {
    border-right: none;
}
.gene-effect {
    background-color: #d3c89f;
    color: #fff;
    height: 100%;
    padding: 27px 70px;
}
.gene-effect-text {
    background-color: #73726f;
    color: #fff;
    padding: 27px 70px;
}

/* [FOOTER START] */
footer {
    background-color: var(--bg-section);
}
.f-top {
    padding: 55px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}
.f-top .f-logo-sec > .follow-block span {
    color: #000;
}
.f-top .f-logo-sec > a {
    display: block;
}
.f-top .f-logo-sec > a > img {
    max-width: 100%;
}
.f-top .f-logo-sec > div a {
    display: flex;
    margin-left: 10px;
    transition: 0.3s ease;
}
.f-top .f-logo-sec > div a:hover {
    transform: scale(1.1);
}
.f-top .f-contact-sec > a {
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 150%;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 10px;
}
.f-top .f-contact-sec > a img {
    margin-right: 10px;
}
.f-top .f-contact-sec > div {
    display: flex;
    align-items: flex-start;
    font-weight: 300;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.f-top .f-location-sec > *:not(.f-ttl) {
    line-height: 150%;
}
.f-top ul {
    list-style: none;
}
.f-top ul a {
    font-size: 18px;
    line-height: 28px;
    color: #000;
    text-decoration: none;
    transition: 0.3s ease;
    text-transform: uppercase;
}
.f-top ul a:hover {
    color: #828282;
}
.f-ttl {
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: var(--accent-font);
}
.f-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 35px 0;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    line-height: 14px;
    color: #828282;
}
.f-bottom a {
    font-size: 14px;
    line-height: 14px;
    color: #828282;
}
/* [FOOTER END] */

.pretty .state {
    position: relative;
}

.promo-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    max-width: 400px;
    margin-bottom: 20px;
}

.shipping-options {
    display: flex;
    flex-direction: column;
}

.shipping-option {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 20px;
}

.user-hold-at-fedex {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 20px;
    padding-left: 40px;
}
.user-hold-at-fedex input[type='checkbox'] {
    width: auto;
}

.shipping-option input {
    width: auto;
}

.price-table td {
    padding: 5px 10px;
}
.price-table tr > *:nth-child(2) {
    padding-left: 20px;
}

/* KIT ORDER START */
.kit-order {
}

.kit-order__row {
    display: grid;
    grid-template-columns: 300px 50px;
    column-gap: 15px;
    margin-bottom: 5px;
}

@media only screen and (max-width: 600px) {
    .kit-order__row {
        grid-template-columns: 1fr 50px;
    }
}

.kit-order__row input {
    padding: 5px 0;
}

.kit-order__row.kit-order__row--span input {
    grid-column: 1 / -1;
}

.kit-order .btn {
    margin-top: 30px;
}
/* KIT ORDER END */

.login-msg {
    grid-column: 1/-1;
    margin: 30px auto;
    padding: 20px 20px 0;
    font-size: 20pt;
    text-align: center;
}

.js-TrackingInfo {
    display: none;
}

@media only screen and (max-width: 1650px) {
    .hnl-wrap {
        margin: 0 10px;
    }
}

@media only screen and (max-width: 1450px) {
    /* [OLD HERO STYLE] */
    /* .h-video-block {
        min-height: 400px;
        height: 40vw;
    }
    .hero-video-bg {
        filter: blur(7px);
        overflow: hidden;
    }
    .hero-video-bg video {
        width: 100%;
    }
    .hero-content {
        padding: 0 5%;
        background-color: #d3d3d364;
        max-width: 100%;
    }
    .h-video-block {
        width: 100%;
        overflow: hidden;
    } */
    .hn-logo img {
        margin-bottom: 10px;
    }
    .h-test-card-text p {
        line-height: 120%;
    }

    .tab-content {
        gap: 20px;
    }
    .test-item .t-head h2,
    .t-tag {
        font-size: 20px;
    }
}
@media only screen and (max-width: 1450px) {
    .head-nav-link {
        font-size: 12px;
    }
    .hm-right {
        width: auto;
    }
    .t-test {
        padding: 35px;
    }
    .hmr-account-wrap {
        margin: 0 10px;
    }
}
@media only screen and (max-width: 1180px) {
    .how-steps-list span:first-of-type {
        font-size: 20px;
    }
    .how-steps-list span:last-of-type {
        line-height: 100%;
    }
}
@media only screen and (max-width: 1150px) {
    .head-nav-link span {
        display: none;
    }

    .f-logo-sec {
        flex: 1 0 100%;
    }
    .os-2col-grid {
        gap: 25px;
    }
}

@media only screen and (max-width: 1065px) {
    .tb-reports .tab-btn {
        font-size: 12px;
        margin: 0 3px;
    }
}

@media only screen and (max-width: 1000px) {
    .how-steps-list {
        grid-template-columns: 1fr 1fr;
    }
    .order-ttl h2 {
        font-size: 22px;
    }
    .test-item {
        padding: 20px;
    }
}
@media only screen and (max-width: 950px) {
    .grid-2col {
        display: flex;
        flex-direction: column;
    }
    .tab-content {
        grid-template-columns: 1fr;
    }
}
@media only screen and (max-width: 900px) {
    .hm-right > div,
    .hn-menu {
        display: none;
    }
    .navigation.active {
        top: 0;
    }
    .m-menu--open {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        cursor: pointer;
    }
    .m-menu--open > svg {
        max-width: 80%;
        color: var(--accent-color);
    }
    .test-item .t-head h2,
    .test-item .t-price h3 {
        font-size: 16px;
    }
    .t-divider.discount {
        font-size: 14px;
    }
    .test-item .t-price p {
        font-size: 14px;
    }

    .gene-about,
    .gene-other div,
    .gene-effect-text,
    .gene-number,
    .gene-effect {
        padding: 20px 30px;
    }
    .gene-logo > div {
        width: 100px;
        height: 100px;
        font-size: 22px;
    }
}
@media only screen and (max-width: 870px) {
    .tb-reports .tab-btns {
        flex-direction: column;
    }
    .tb-reports .tab-btn {
        border-radius: 0;
    }
    .tb-reports .tab-btn.active::after {
        z-index: 1;
        top: 50%;
        left: 100%;
        transform: translateX(-5px) translateY(-5px) rotate(45deg);
    }
}
@media only screen and (max-width: 780px) {
    .os-2col-grid {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 780px) {
    .sect-ttl,
    .ttl-w-divider,
    .t-test h2 {
        font-size: calc(18px + 2vw);
    }
    .sect-sub-dashed {
        font-size: calc(14px + 1vw);
        line-height: 150%;
    }
    .lmaot {
        font-size: 16px;
    }
    .h-test-card-wrap h3 {
        font-size: calc(15px + 1vw);
    }
    .login-grid {
        grid-template-columns: 1fr;
    }
    #login-popup {
        padding: 30px;
    }
    .t-test {
        padding: 30px 15px;
    }
}

@media only screen and (max-width: 765px) {
    .h-video-section {
        background-image: none;
    }
    .h-video-block {
        width: 100%;
    }
    .hero-video-bg {
        position: initial;
    }
    .hero-video-bg video {
        width: 100%;
    }
    .h-video-block {
        height: auto;
    }
    .hero-content {
        padding: 20px 5% 30px 5%;
        background-image: url(/img/misc/dna_3.png), linear-gradient(to right, #f2f0f4, transparent);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .ttl-w-divider.hero-ttl {
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 700px) {
    .tests-grid {
        grid-template-columns: 1fr;
    }
    .t-tag {
        grid-row: 7;
    }

    .report-summary .report-diagram {
        grid-template-columns: 1fr;
    }
}
@media only screen and (max-width: 600px) {
    .order-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    .pretty {
        font-size: 12px;
    }

    .t-test ul {
        column-count: unset;
    }

    .gene-block {
        display: block;
    }
    .gene-about,
    .gene-other div,
    .gene-other div:first-of-type,
    .gene-effect-text,
    .gene-number,
    .gene-effect {
        border: none;
    }
}

@media only screen and (max-width: 500px) {
    .h-test-card-text p {
        font-size: 14px;
        line-height: 150%;
    }
    .lmaot {
        font-size: 12px;
    }
    .how-steps-list {
        grid-template-columns: 1fr;
    }
    .tab-btns {
        flex-direction: column;
    }
    .tab-btn {
        border-radius: 0;
    }
    .tab-btn.active::after {
        z-index: 1;
        top: 50%;
        left: 100%;
        transform: translateX(-5px) translateY(-5px) rotate(45deg);
    }
    .lp-section {
        padding: 20px;
    }
    .order-section {
        padding: 50px 20px;
    }
}

/* PAYMENT CARDS - BEM METHODOLOGY */
.payment-cards {
    margin-top: 30px;
}

.payment-cards__add-section {
    margin-bottom: 30px;
    /* text-align: center; */
}

.payment-cards__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.payment-cards__empty {
    text-align: center;
    padding: 40px 20px;
    color: #828282;
    font-style: italic;
    background-color: rgba(72, 157, 58, 0.05);
    border-radius: 15px;
}

/* Payment Card Component */
.payment-card {
    background: linear-gradient(45deg, var(--accent-color), #5cb050);
    border-radius: 15px;
    padding: 25px;
    color: white;
    box-shadow: 0 8px 20px rgba(72, 157, 58, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(72, 157, 58, 0.4);
}

.payment-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.payment-card__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-card__brand-logo {
    width: 40px;
    height: 25px;
    object-fit: contain;
    background: white;
    border-radius: 4px;
    padding: 2px;
}

.payment-card__brand-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-card__actions {
    display: flex;
    gap: 8px;
}

.payment-card__action {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.payment-card__action:hover {
    background: rgba(255, 255, 255, 0.3);
}

.payment-card__action--edit:hover {
    background: rgba(255, 193, 7, 0.3);
}

.payment-card__action--delete:hover {
    background: rgba(220, 53, 69, 0.3);
}

.payment-card__body {
    position: relative;
    z-index: 1;
}

.payment-card__number {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.payment-card__details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.payment-card__holder {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.payment-card__expiry {
    font-size: 14px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.payment-card__nickname {
    font-size: 12px;
    opacity: 0.8;
    font-style: italic;
    margin-top: 5px;
}

/* Payment Card Form Modal */
.payment-card-form {
    max-width: 500px;
    /* width: 100%; */
    /* padding: 30px; */
}

.payment-card-form__title {
    font-family: var(--accent-font);
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.payment-card-form__form {
    display: flex;
    flex-direction: column;
    column-gap: 20px;
    row-gap: 0;
}

.payment-card-form__row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.payment-card-form__row--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.payment-card-form__row label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-card-form__row input,
.payment-card-form__row select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.payment-card-form__row input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(72, 157, 58, 0.1);
    outline: none;
}

.payment-card-form__row input.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.payment-card-form__actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
}

.payment-card-form__actions .btn {
    min-width: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-cards__list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .payment-card {
        padding: 20px;
    }

    .payment-card__number {
        font-size: 16px;
    }

    .payment-card-form {
        /* padding: 20px; */
        margin: 0 10px;
    }

    .payment-card-form__row--grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .payment-card-form__actions {
        flex-direction: column;
    }

    .payment-card-form__actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .payment-card__actions {
        /* flex-direction: column; */
        gap: 5px;
    }

    .payment-card__header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* PAYMENT METHOD SELECTION - CHECKOUT */
.payment-method-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-method-option {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.payment-method-option:hover {
    border-color: #c0c0c0;
}

.payment-method-option input[type='radio'] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method-option input[type='radio']:checked + .payment-method-label {
    border-color: var(--accent-color);
    background-color: rgba(72, 157, 58, 0.05);
}

.payment-method-option input[type='radio']:checked + .payment-method-label::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='white' d='m13.854 3.646-8 8a.5.5 0 0 1-.708 0l-4-4a.5.5 0 1 1 .708-.708L5.5 10.293l7.646-7.647a.5.5 0 0 1 .708.708z'/%3e%3c/svg%3e");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.payment-method-label {
    display: block;
    padding: 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
}

/* Saved Card Info */
.saved-card-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-icon {
    width: 40px;
    height: 25px;
    object-fit: contain;
}

.card-type {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-number {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    font-family: monospace;
    letter-spacing: 1px;
}

.card-name {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.card-expiry {
    font-size: 13px;
    color: #999;
}

/* Add New Card Info */
.add-new-card-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.add-card-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.payment-method-option input[type='radio']:checked + .payment-method-label .add-card-icon {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.add-card-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Responsive adjustments for payment method selection */
@media (max-width: 600px) {
    .saved-card-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .card-brand {
        align-self: stretch;
    }

    .payment-method-label {
        padding: 15px;
    }

    .add-new-card-info {
        gap: 12px;
    }
}
