/* FB Agol Regular */
@font-face {
    font-family: 'regular';
    src: url('./assets/fonts/fbagol-regularwebfont.eot');
    src: url('./assets/fonts/fbagol-regularwebfont.eot?#iefix') format('embedded-opentype'),
        url('./assets/fonts/fbagol-regularwebfont.woff') format('woff'),
        url('./assets/fonts/fbagol-regularwebfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* FB Agol Bold */
@font-face {
    font-family: 'bold';
    src: url('./assets/fonts/fbagol-boldwebfont.eot');
    src: url('./assets/fonts/fbagol-boldwebfont.eot?#iefix') format('embedded-opentype'),
        url('./assets/fonts/fbagol-boldwebfont.woff') format('woff'),
        url('./assets/fonts/fbagol-boldwebfont.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary-color: white;
    --secondary-color: #2eccd4;
    --form-container-color: #212621;
    --font-stack: 'regular', sans-serif;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-stack);
    color: var(--primary-color);
}

h1 {
    font-size: 2rem;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 360px;
}

.content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.swiper {
    width: 100%;
}

.bg {
    width: 100%;
    object-fit: cover;
}

.strip {
    width: 100%;
    padding: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.level-strip {
    width: 54vw;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    background-color: var(--form-container-color);
    padding: 0 0 2rem 0;
}

.form-header {
    width: 100%;
    padding: 1rem;
    text-align: center;
    background-color: var(--secondary-color);
}

.arrows {
    width: 2rem;
}

.masqyoo-text {
    font-size: 1.5rem;
    text-align: center;
    padding-inline: 3rem;
}

.masqyoo-text a {
    color: inherit;
}

/* TO CHANGE */

.form {
    width: 100%;
    background-color: #212621;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 6.35vw;
    gap: 2vw;
}

.notification-container {
    margin: 0 !important;
}

div[data-form-id] .columnContainer {
    width: 100% !important;
    /* Allows the item to grow and shrink as needed */
    flex: 1 1 auto !important;
}

form p,
form span {
    color: white !important;
}

.marketingForm .consent {
    display: flex !important;
    flex-direction: row-reverse !important;
    align-items: flex-start !important;
}

.marketingForm .consent>.columnContainer:not(.narrowContainer) {
    width: auto !important;
}

.marketingForm .consent>.columnContainer.narrowContainer {
    width: auto !important;
    flex: 0 0 auto !important;
}

div[data-editorblocktype="SubmitButton"] {
    padding: unset !important;
}

.submitButtonWrapper {
    margin: unset !important;
}

.text-3 {
    font-size: 4.6vw;
    font-family: 'regular';
    text-align: center;
    font-weight: 700;
}

.text-3 a {
    color: inherit;
}

.onFormSubmittedFeedback {
    background-color: #212621 !important;
    width: 100% !important;
    height: unset !important;
}

.onFormSubmittedFeedbackMessage,
.onFontSubmittedFeedbackButton {
    color: white !important;
    font-family: 'regular' !important;
    display: flex !important;
    flex-direction: column !important;
}

.onFormSubmittedFeedbackIcon {
    display: none !important;
}

.thanks-text-1 {
    font-size: 9vw;
    font-family: 'bold';
    line-height: 1;
    color: white;
}

.thanks-text-2 {
    font-size: 9vw;
    font-family: 'regular';
    line-height: 1;
    color: #2ECCD4;
}

/*----------------*/

.form-logo {
    width: 40%;
}

dialog {
    border: none;
    margin: auto;
    background-color: var(--secondary-color);
    color: white;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: visible;
}

dialog::backdrop {
    background-color: rgb(251 251 251 / 60%);
}

.dialog-quit {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: clamp(2rem, 3vw, 3rem);
    z-index: 12;
    cursor: pointer;
}

.dialog-title {
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-family: 'bold';
}

.dialog-logo {
    width: clamp(9rem, 22vw, 24rem);
}

.dialog-text {
    font-size: clamp(1.5rem, 3.8vw, 4rem);
    font-family: 'regular';
    font-weight: 600;
}

.dialog-terms {
    font-size: clamp(0.6rem, 1.5vw, 1.4rem);
    font-family: 'regular';
    font-weight: 600;
    color: black;
    text-align: start;
    position: absolute;
    bottom: 3px;
    right: 5px;
}

.dialog-button {
    background-color: black;
    color: white;
    padding: 0.5em 0.5em 0.3em 0.5em;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    font-size: clamp(1rem, 2.3vw, 2.2rem);
    font-family: 'bold';
    line-height: 1;
}

.mobile {
    display: flex;
}

.desktop {
    display: none;
}

@media (min-width: 768px) {
    .container {
        display: grid;
        grid-template-columns: 1fr 30%;
        grid-template-rows: 1fr auto;
        grid-template-areas:
            "content form-container"
            "strip form-container";
    }

    .content {
        grid-area: content;
        overflow: hidden;
        height: 100%;
    }

    .swiper-slide {
        height: 100%;
    }

    .strip {
        grid-area: strip;
    }

    .level-strip {
        width: 35vw;
    }

    .form-container {
        grid-area: form-container;
        justify-content: unset;
        overflow-x: hidden;
    }

    /* TO CHANGE */

    .form {
        padding: 0 3.35vw;
    }

    .text-3 {
        font-size: 1.5vw;
    }

    .thanks-text-1 {
        font-size: 3vw;
    }

    .thanks-text-2 {
        font-size: 3vw;
    }

    /*----------------*/

    .mobile {
        display: none;
    }

    .desktop {
        display: flex;
    }
}