.admin-info-box {
    max-width: 30rem;
    padding: 0.5rem 1rem;
    border: 1px solid #054371;
    border-radius: 1rem;
    background-color: #4c69c2;
    color: white;
    margin-block: 1rem;
}

.admin-success-box {
    border: 1px solid #035c26;
    background-color: #4caf50;
}

.admin-error-box {
    border: 1px solid #5c0303;
    background-color: #af4c4c;
}

html,
body {
    height: auto;
    min-height: 100%;
    font-family: 'Inter', sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

html.tb-modal-open {
    overflow: hidden;
}

.main-sub-header {
    display: none !important;
}

a.lang-en.is-active,
a.lang-nl.is-active {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

body.oxygen-builder-body .main-sub-header {
    display: flex !important;
}

@media (min-width: 768px) {
    .main-sub-header.is-visible {
        display: flex !important;
        position: fixed;
        z-index: 9999;
        transform: translateY(0);
        transition: transform 180ms ease, opacity 180ms ease;
        opacity: 1;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(8px);
    }
}

@media (max-width: 767px) {
    .main-sub-header,
    .main-sub-header.is-visible {
        display: none !important;
    }
}

.ct-div-block.heading-logo-div {
    max-width: clamp(5rem, 30vw, 8rem) !important;
}

.header-main-bttns-div {
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: end;
}

.tb-ham-menu{
    display: none !important;
    width: 3.5rem;
    height: 2rem;
    cursor: pointer;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    position: relative;
    --x-pad: 0.68rem;
    --line-h: 3px;
    --gap: 0.42rem;
    --line: linear-gradient(
            90deg,
            #0e7c66,
            #2bd48f
    );
    background-image: var(--line);
    background-repeat: no-repeat;
    background-position: center;
    background-size: calc(100% - (var(--x-pad) * 2)) var(--line-h);
    -webkit-tap-highlight-color: transparent;
}

.tb-ham-menu::before,
.tb-ham-menu::after{
    content:"";
    position:absolute;
    left: var(--x-pad);
    right: var(--x-pad);
    height: var(--line-h);
    border-radius: 999px;
    background: var(--line);
    transition:
            transform 220ms cubic-bezier(.2,.8,.2,1),
            top 220ms cubic-bezier(.2,.8,.2,1),
            opacity 180ms ease;
}

.tb-ham-menu::before{
    top: calc(50% - var(--gap) - (var(--line-h) / 2));
}
.tb-ham-menu::after{
    top: calc(50% + var(--gap) - (var(--line-h) / 2));
}

.tb-ham-menu:hover::before{ transform: translateX(-5px); }
.tb-ham-menu:hover::after { transform: translateX( 5px); }

:root{
    --ophuis-menu-x-shift: 4.5rem;
}

html.tb-mobile-menu-open .tb-ham-menu{
    background-image: none;
    transform: translateX(calc(-1 * var(--ophuis-menu-x-shift)));
    transition: transform 220ms cubic-bezier(.2,.8,.2,1);
}

.tb-ham-menu{
    transition: transform 220ms cubic-bezier(.2,.8,.2,1);
}

html.tb-mobile-menu-open .tb-ham-menu::before{
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

html.tb-mobile-menu-open .tb-ham-menu::after{
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 630px) {
    .header-main-bttns-div {
        display: none !important;
    }

    .tb-ham-menu {
        display: block !important;
    }
}

:root{
    --drawer-w: min(62vw, 15rem);
    --drawer-pad-x: 1.4rem;
    --drawer-x-offset: 6rem;
}

.main-header-row .tb-ham-menu-open{
    width: var(--drawer-w);
    padding: 2.2rem var(--drawer-pad-x) 2rem;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: calc(1rem + env(safe-area-inset-top));
    gap: 1.5rem;
    border-radius: 0;
    background:
            radial-gradient(circle at 85% 15%, rgba(45,110,170,0.15), transparent 55%),
            radial-gradient(circle at 80% 90%, rgba(43,212,143,0.18), transparent 65%),
            linear-gradient(
                    180deg,
                    #4a5583 0%,
                    #404974 25%,
                    #3a4268 50%,
                    #353c5f 75%,
                    #313856 100%
            );
    box-shadow: -18px 0 40px rgba(0,0,0,0.28);
    z-index: 10001;
    opacity: 0;
    transform: translateX(18px);
    pointer-events: none;
    transition:
            opacity 180ms ease,
            transform 220ms cubic-bezier(.2,.8,.2,1);
}

.main-header-row .tb-ham-menu-open::before{
    content:"";
    position:absolute;
    inset: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(43,212,143,0.45);
    pointer-events: none;
    box-shadow:
            inset 0 0 0 1px rgba(43,212,143,0.35),
            0 0 0 1px rgba(255,255,255,0.08);
}

.main-header-row .tb-ham-menu-open.is-open{
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.main-header-row .tb-ham-menu-open a{
    margin-left: auto;
    margin-right: auto;
}

.main-header-row .tb-ham-menu-open a:first-of-type{
    margin-top: auto;
}
.main-header-row .tb-ham-menu-open a:last-of-type{
    margin-bottom: auto;
}

.tb-lang-sel {
    justify-content: end !important;
}

@media (max-width: 630px) {
    .header-main-bttns-div {
        display: none !important;
    }

    .tb-lang-sel {
        justify-content: center !important;
        margin-block: 0.3rem !important;
    }
}

.sticky-row {
    background-color: white;
}

.hero-card {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    border-radius: 1rem;
    padding: clamp(1.2rem, 2vw, 2rem) clamp(1.3rem, 2vw, 3rem);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    border-top: 1px solid rgba(0,115,255);
    border-bottom: 1px solid rgba(0,115,255);
}

.footer-div {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    gap: clamp(5rem, 7vw, 14rem) !important;
    max-width: 120rem !important;
    margin: 0 auto !important;
}

@media (max-width: 900px) {
    .footer-div {
        justify-content: center !important;
        gap: clamp(1rem, 4vw, 6rem) !important;
    }
}

@media (max-width: 499px) {
    .footer-div {
        flex-direction: column !important;
    }
}

.footer-icon {
    max-width: clamp(1.7rem, 1rem + 1vw, 3rem) !important;
}

.ct-div-block.footer-logo-div {
    max-width: clamp(10rem, 9vw, 15rem) !important;
}

@media (max-width: 352px) {
    .ct-div-block.legal-pages {
        justify-content: center !important;
    }
}

.primary-color {
    background-color: #313856;
}

.secondary-color {
    background-color: #7dfd90;
}

.accent-color {
    background-color: #0024ff;
}

.white {
    background-color: #ffffff;
}

@media (max-width: 319px) {
    #main-header,
    #main-sub-header,
    #main-header-section,
    #main-footer-section,
    #inner_content-413-37,
    #demo-booking {
        width: 320px !important;
    }
}

.sec-p-default {
    > .ct-section-inner-wrap {
        padding:  clamp(1.5rem, 0.75rem + 1.8vw, 3rem) clamp(1rem, 0.5rem + 1.2vw, 2rem);
    }

    &.sec-p-none > .ct-section-inner-wrap {
        padding: 0 !important;
    }

    &.sec-pt-none > .ct-section-inner-wrap {
        padding-top: 0 !important;
    }

    &.sec-pb-none > .ct-section-inner-wrap {
        padding-bottom: 0 !important;
    }

    &.sec-pt-shp-divider > .ct-section-inner-wrap {
        padding-top: clamp(2rem, 10vw, 7rem) !important;
    }

    &.sec-pt-lg-shp-divider > .ct-section-inner-wrap {
        padding-top: 10rem !important;
    }

    &.sec-pb-shp-divider > .ct-section-inner-wrap {
        padding-bottom: 7rem !important;
    }

    &.sec-pb-lg-shp-divider > .ct-section-inner-wrap {
        padding-bottom: 10rem !important;
    }
}

.sec-flex-hor-center > .ct-section-inner-wrap {
    display: flex  !important;
    flex-direction: column  !important;
    align-items: center  !important;
}

.sec-page-width > .ct-section-inner-wrap {
    max-width: 1120px !important;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.sec-full-width > .ct-section-inner-wrap {
    max-width: none !important;
    width: 100% !important;
    margin: 0;
}

.sec-bg-img-default,
.sec-bg-img-dark,
.sec-bg-img-default-primary,
.sec-bg-img-default-secondary {
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center;
    background-attachment: fixed;
}

.sec-bg-img-default::before,
.sec-bg-img-dark::before,
.sec-bg-img-default-primary::before,
.sec-bg-img-default-secondary::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.sec-bg-img-default > *,
.sec-bg-img-dark > *,
.sec-bg-img-default-primary > *,
.sec-bg-img-default-secondary > * {
    position: relative;
    z-index: 2;
}

.sec-bg-img-dark {
    overflow: hidden;
}

.sec-bg-img-dark::before {
    background-color: rgba(0,0,0,0.9);
}

.sec-bg-img-default::before {
    background-image: linear-gradient(
            rgba(9, 12, 9, 0.80),
            rgba(9, 12, 9, 0.80)
    );
}

.sec-bg-img-default-primary::before {
    opacity: 0.92;
    background: linear-gradient(
            180deg,
            rgb(90, 112, 160) 0%,
            rgb(78, 98, 144) 12%,
            rgb(66, 84, 126) 27%,
            rgb(54, 65, 97) 56%,
            #313856 75%
    );
}

.sec-bg-img-default-secondary::before {
    background: linear-gradient(
            190deg,
            #000000 0%,
            #050402 20%,
            #1a1507 50%,
            #3a2f0e 75%,
            #b8942c 100%);
}

.sec-flex-hor-center > .ct-section-inner-wrap {
    display: flex  !important;
    flex-direction: column  !important;
    align-items: center  !important;
}

.sec-page-width > .ct-section-inner-wrap {
    max-width: 1120px !important;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.sec-full-width > .ct-section-inner-wrap {
    max-width: none !important;
    width: 100% !important;
    margin: 0;
}

.sec-bg-img-default {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    overflow: hidden;
}

.sec-bg-img-default::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
            rgba(9, 12, 9, 0.80),
            rgba(9, 12, 9, 0.80)
    );
    z-index: 1;
    pointer-events: none;
}

.sec-bg-img-default > * {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .sec-bg-img-default {
        background-size: auto, cover;
        background-attachment: scroll !important;
    }
}

@media (max-width: 480px) {
    .sec-p-default > .ct-section-inner-wrap {
        padding-inline: 1rem !important;
    }
}

.mod-default {
    background-color: rgba(0, 0, 0, 0.85) !important;
    flex-direction: column !important;
    display: flex;
    align-items: center !important;
    border: 2px solid #0024ff;
    border-radius: 0.5rem 0 0 0.5rem;
    position: relative;
    padding: 2.5rem;
    width: 60rem !important;
    max-height: 90% !important;
    margin-block: 3rem;
    box-shadow: 4px 4px 9px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .mod-default {
        max-width: 95% !important;
    }
}

@media (max-width: 768px) {
    .mod-default {
        padding-inline: 1rem;
    }
}

@media (max-width: 480px) {
    .mod-default {
        max-width: 98% !important;
        padding-inline: 0.7rem;
        padding-top: 4rem;
    }
}

@font-face {
    font-family: 'Inter';
    src: url('/wp-content/uploads/fonts/InterVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Comfortaa';
    src: url('/wp-content/uploads/fonts/Comfortaa-VariableFont_wght.woff2') format('woff2');
    font-weight: 300 700;
    font-display: swap;
}

.txt-card-hd {
    font-weight: 700;
    line-height: 1.2;
    font-size: 1.2rem;
    color: #ffffff;

    &.txt-card-price {
        font-size: 2rem !important;
    }
}

.txt-alt-color {
    color: #000000 !important;
}

.txt-link-color {
    color: #004ac9 !important;
}

.txt-primary {
    font-family: 'Inter', sans-serif !important;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    color: #ffffff;
    font-size: clamp(1rem, 0.9vw, 1.15rem);

    &.txt-xs {
        font-size: clamp(0.65rem, 0.7vw, 0.85rem) !important;
    }

    &.txt-sm {
        font-size: clamp(0.75rem, 0.8vw, 1rem) !important;
    }

    &.txt-md {
        font-size: clamp(1.05rem, 1vw, 1.3rem) !important;
    }

    &.txt-lg {
        font-size: clamp(1.1rem, 1.2vw, 1.5rem) !important;
        font-weight: 400 !important;
    }

    &.txt-err {
        color: red;
    }
}

h1, h2, h3, h4, h5, h6,
.tb-button,
.tb-link,
.font-comfortaa {
    font-family: 'Comfortaa', 'Inter', sans-serif !important;
}

.font-inter {
    font-family: 'Inter', sans-serif !important;
}

.hd-h1-primary,
.hd-h2-primary,
.hd-h3-primary,
.hd-h4-primary,
.hd-h5-primary {
    font-weight: 500;
    line-height: 1.1;
    color: #ffffff;
    text-align: center;

    &.hd-gradient {
        background: linear-gradient(270deg, #c9f7e6 60%, #2bd48f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    &.hd-gradient-reverse {
        background: linear-gradient(90deg, #c9f7e6 60%, #2bd48f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.hd-h1-primary {
    font-size: clamp(2.1rem, 2vw, 3rem) !important;
}

.hd-h2-primary {
    font-size: clamp(1.8rem, 1.9vw, 2.5rem) !important;
}

.hd-h3-primary {
    font-size: clamp(1.35rem, 1.4vw, 1.75rem) !important;
}

.hd-h4-primary {
    font-size: clamp(1.15rem, 1.1vw, 1.45rem) !important;
}

.hd-h5-primary {
    font-size: clamp(1rem, 1vw, 1.25rem) !important;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    margin-bottom: 0.4rem;
    line-height: 1.5;
    font-size: inherit;
    padding-left: 1.8rem;
}

.check-list li::before {
    content: '';
    position: absolute;
    top: 0.15rem;
    left: 0;
    width: 1.2rem;
    height: 1.2rem;
    background: linear-gradient(135deg, #7aff8e, #2E7D32);
    mask: url('data:image/svg+xml;utf8,<svg fill="none" stroke="black" stroke-width="4.5" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M5 13l4 4L19 7"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg fill="none" stroke="black" stroke-width="4.5" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M5 13l4 4L19 7"/></svg>') no-repeat center;
}

.check-list.icon-lg li::before {
    width: 2rem;
    height: 2rem;
    top: 0.05rem;
}

.check-list.space-loose li {
    padding-left: 2.5rem;
}

.check-list.text-lg li {
    font-size: 1.5rem;
}

.check-list.text-md li {
    font-size: 1.3rem;
}

.fill-screen-height {
    height: calc(100vh - 500px);
}

.cmplz-fmail-domain { display: none; }

.cmplz-message {
    text-align: center;
}

#cmplz-manage-consent button.cmplz-btn,
.cmplz-cookiebanner {
    border: 1px solid rgba(0,0,0,.25) !important;
    box-shadow: 0 -2px 5px rgba(0,0,0,.18) !important;
}

.cmplz-cookiebanner {
    bottom: 0;
}

@media (max-width: 768px) {
    #cmplz-cookiebanner-container .cmplz-cookiebanner{
        width: auto !important;
        max-width: 420px !important;
        box-sizing: border-box !important;
    }

    #cmplz-manage-consent {
        position: fixed !important;
        left: 0% !important;
        bottom: -2rem !important;
        transform: translateX(-50%);
        -webkit-tap-highlight-color: transparent;
    }

    #cmplz-manage-consent .cmplz-btn {
        transition: bottom 0.25s ease;
    }

    #cmplz-manage-consent:hover,
    #cmplz-manage-consent:focus-within {
        bottom: 0 !important;
    }
}

@media (max-width: 425px) {
    #cmplz-cookiebanner-container .cmplz-cookiebanner{
        width: 100vw !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }

    .cmplz-cookiebanner .cmplz-header .cmplz-title,
    .cmplz-cookiebanner .cmplz-header [class*="title"] {
        display: block !important;
        white-space:nowrap;
        overflow: hidden;
    }

    #cmplz-manage-consent {
        left: -5% !important;
    }
}

@media (max-width: 319px){
    #cmplz-cookiebanner-container{
        width: 320px !important;
        max-width: 320px !important;
    }

    #cmplz-cookiebanner-container .cmplz-cookiebanner{
        width: 320px !important;
        max-width: 320px !important;
        box-sizing: border-box !important;
        left: 0 !important;
        right: auto !important;
        margin: 0 !important;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
