@charset "UTF-8";

/* =========================================================
   CANCEL PAGE
   CORE / LAYOUT
========================================================= */

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--kk-dark);
    background: var(--kk-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.70);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 1);
    z-index: 9999;
}

body.loading #loading-screen {
    display: flex;
}

body:not(.loading) #loading-screen {
    display: none;
}

#loading-screen img {
    background: transparent;
    width: 40px;
    height: 40px;
}

.cancel-page {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.cancel-shell {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.cancel {
    width: 100%;
    max-width: 560px;
    padding: 140px 20px 200px;
    background-color: transparent;
    transition: all 0.6s linear;
    box-sizing: border-box;
}

.cancel form {
    width: 100%;
}

.cancel-title {
    margin-bottom: 20px;
    text-align: center;
}

/* =========================================================
   CANCEL PAGE
   FORM STRUCTURE
========================================================= */

.cancel-row {
    display: flex;
    gap: 1.1%;
    width: 100%;
    margin-bottom: 5px;
}

.cancel-col {
    width: 49.45%;
}

.cancel .form_fields,
.cancel .form_fields_datum,
.cancel .form_fields_email,
.cancel input#phone_number {
    text-transform: none;
    font-family: 'pol_kam_extra_light';
    font-size: 18px;
    color: rgba(200, 200, 200, 0.80);
}

.cancel .form_fields_email {
    font-size: 16px;
}

.cancel input#phone_number {
    padding-left: 15px;
}

/* =========================================================
   CANCEL PAGE
   HELPERS / HIDDEN / SPACERS
========================================================= */

.cancel-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
}

.cancel-hidden {
    display: none !important;
}

.cancel-spacer-5 {
    height: 5px;
}

.cancel-spacer-15 {
    height: 15px;
}

.session-countdown-note-cancel {
    display: none;
    font-size: 14px;
    color: rgba(200, 200, 200, 0.60);
    text-align: center;
}

/* =========================================================
   CANCEL PAGE
   SUBMIT
========================================================= */

.submit-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.cancel-submit-container {
    margin-top: 20px;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(100, 155, 255, 0.25);
    z-index: -1;
    border: none;
    border-radius: 5px;
    transition: width 1s linear;
}

.submit-btn-cancel {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background: rgba(100, 155, 255, 0.15);
    cursor: pointer;
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-family: 'special_eliteregular';
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.70);
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.80);
    text-decoration: none;
    font-weight: normal;
    animation: fadein 2s;
    appearance: none;
    -webkit-appearance: none;
}

.submit-btn-cancel:hover,
.submit-btn-cancel:focus {
    background: rgba(100, 155, 255, 0.22);
    outline: none;
}

.cancel p.lock {
    margin-top: 30px !important;
    text-align: center;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

/* =========================================================
   CANCEL PAGE
   PLACEHOLDER FIX
========================================================= */

.cancel #new_date::placeholder,
.cancel #first_name::placeholder,
.cancel #last_name::placeholder,
.cancel #phone_number::placeholder,
.cancel #email::placeholder {
    font-family: 'special_eliteregular', sans-serif !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.70) !important;
    opacity: 1 !important;
}

/* =========================================================
   CANCEL PAGE
   MOBILE
========================================================= */

@media screen and (max-width: 600px) {
    .cancel-page {
        align-items: center;
        padding-top: 60px;
    }

    .cancel-shell {
        padding: 0 12px;
    }

    .cancel {
        max-width: 100%;
        padding: 80px 12px 200px;
    }

    .cancel .form_fields,
    .cancel .form_fields_datum,
    .cancel .form_fields_email,
    .cancel input#phone_number {
        min-height: 54px;
    }

    .cancel p.lock {
        margin-bottom: 90px;
        font-size: 15px;
        line-height: 1.3;
    }
}

@media screen and (max-width: 320px) {
    .cancel {
        padding: 60px 20px 160px;
    }
}
