@import "./components.css";
@import "./dependencies.css";

@font-face {
    font-family: 'Eames Century Modern';
    src: url("../fonts/EamesCenturyModernB.woff2") format('woff2');
    font-display: auto;
}

@font-face {
    font-family: 'Eames Century Modern';
    src: url("../fonts/EamesCenturyModernB.woff2") format('woff2');
    font-display: auto;
    font-weight: bold;
}

@font-face {
    font-family: "Rebrand";
    src: url("../fonts/RebrandRegular.otf") format("opentype");
    font-display: auto;
    font-weight: normal;
}

@font-face {
    font-family: "Rebrand";
    font-weight: 500;
    src: url("../fonts/RebrandSemiBold.otf") format("opentype");
    font-display: auto;
}

@font-face {
    font-family: "Rebrand";
    font-weight: 700;
    src: url("../fonts/RebrandBold.otf") format("opentype");
    font-display: auto;
}

@font-face {
    font-family: "Rebrand";
    font-weight: 900;
    src: url("../fonts/RebrandBlack.otf") format("opentype");
    font-display: auto;
}

@font-face {
    font-family: "Roboto";
    font-weight: 500;
    src: url("../fonts/Roboto-Medium.otf") format("opentype");
    font-display: auto;
}

:root {
    --color-surface: #f7f8f4;
    --color-green: #338e45;
    --color-lime-green: #95CA57;
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-small: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px -1px rgba(0, 0, 0, 0.06);
    --section-padding-left: 40px;
    --section-padding-right: 40px;
    --container-width: calc(1285px + var(--section-padding-left) + var(--section-padding-right));
    /* The heigherHeight and appNavigationHeight variables are set dynamically via JS */
    --headerHeight: 0px;
    --appNavigationHeight: 0px;
    --safe-area: calc(100dvh - var(--headerHeight) - var(--appNavigationHeight));
}


@media (max-width: 800px) {
    :root {
        --section-padding-left: 20px;
        --section-padding-right: 20px;
    }
}

*, *:before, *:after {
    box-sizing: border-box;
}

body {
    background-color: var(--color-surface);
    font-family: 'Rebrand', sans-serif;
    font-size: 18px;
    margin: 0;
    padding: 0;
}

body.modalOpen {
    touch-action: none; /* helps block background gestures */
    overflow: hidden;
}

body.noScroll {
    overflow: hidden;
}

main {

}

a, button {
    touch-action: manipulation; /** Disable double-tap to zoom on iOS **/
    -webkit-text-fill-color: currentColor; /* iOS fix */
    -webkit-tap-highlight-color: transparent;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

img,
picture,
video {
    display: block;
    height: auto;
    width: 100%;
}

input,
optgroup,
select,
textarea {
    font: inherit;
    color: inherit;
    background-color: transparent;
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
    border: none;
}

.contentLinkButton {
    padding: 10px 25px 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: #FFF;
    border-radius: 100vh;
    background-color: #000;
    letter-spacing: 2px;
    display: inline-block;
}

.visuallyHidden {
    display: none !important;
}

@media (max-width: 800px) {
    .contentLinkButton {
        padding: 8px 20px 12px;
        font-size: 14px;
    }
}

@media (max-width: 620px) {
    .kl-teaser-VWqG8t {
        display: none !important;
    }

    .contentLinkButton {
        padding: 4px 16px 8px;
    }
}

.popupMessage .swal2-title {
    color: var(--color-green);
    line-height: 1.2;
    font-weight: 500;
    font-family: "Eames Century Modern", serif;
}

.popupMessage .swal2-actions {
    flex-direction: column;
    width: 100%;
    padding: 1em 1.6em 0.3em;
    gap: 12px;
}

.popupMessage .swal2-confirm {
    background-color: var(--color-green);
    border: 2px solid var(--color-green);
    color: #FFFFFF;
    min-height: 51px;
    display: block;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
    letter-spacing: 0.5px;
    font-family: "Rebrand", sans-serif;
    margin: 0;
    width: 100%;
}

.popupMessage .swal2-cancel {
    background-color: #eeeeee;
    color: #3c3c3c;
    border: 2px solid #eeeeee;
    min-height: 51px;
    display: block;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
    letter-spacing: 0.5px;
    font-family: "Rebrand", sans-serif;
    margin: 0;
    width: 100%;
}

.popupMessage .swal2-footer {
    font-weight: 500;
}

.popupMessage .swal2-footer code {
    background-color: rgb(247, 246, 249);
    color: rgb(187, 58, 61);
    padding: 2px 4px;
}

.hideScrollbar {
    scrollbar-width: none;
}

.hideScrollbar::-webkit-scrollbar {
    display: none;
}

@media (max-width: 490px) {
    #ot-sdk-btn-floating {
        display: none;
    }
}