/* =====================================================
   ITESKUL COURSE DEMO POPUP
   Clean Spanish Demo Reference Style
===================================================== */


/* Overlay */
.iteskul-demo-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.4);

    z-index: 999999;

    box-sizing: border-box;
}

.iteskul-demo-modal.active {
    display: flex;
}


/* =====================================================
   POPUP BOX
===================================================== */

.iteskul-demo-modal .iteskul-demo-box {
    position: relative;

    width: 100%;
    max-width: 450px;

    background: #ffffff;

    border: 1px solid #d9d6cc;
    border-radius: 0;

    padding: 20px 20px 20px;

    box-sizing: border-box;

    max-height: 95vh;
    overflow-y: auto;

    box-shadow: none;
}


/* =====================================================
   CLOSE BUTTON
===================================================== */

.iteskul-demo-modal .iteskul-demo-close {
    position: absolute;

    top: 18px;
    right: 20px;

    width: auto;
    height: auto;

    padding: 0;

    border: 0;
    background: transparent;

    color: #a09d94;

    font-size: 25px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;
}

.iteskul-demo-modal .iteskul-demo-close:hover {
    color: #195B2D;
}


/* =====================================================
   HEADER
===================================================== */

.iteskul-demo-modal .iteskul-demo-header {
    margin: 0 0 18px;
    padding: 0;

    text-align: left;
}


/* Small "FREE DEMO CLASS" heading */
.iteskul-demo-modal .iteskul-demo-kicker {
    display: block;

    margin: 0 0 14px;

    color: #54b52d;


    font-size: 12px;
    line-height: 1.2;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* Main heading */
.iteskul-demo-modal .iteskul-demo-header h2 {
    margin: 0 0 5px;

    padding: 0;

    color: #07652e;

    font-size: 26px;
    line-height: 1.25;

    font-weight: 600;
}


/* Description */
.iteskul-demo-modal .iteskul-demo-header p {
    margin: 0 0 8px;
    padding: 0;
    color: #8a624c;

    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}

.iteskul-demo-modal .discount-badge {
    color: #fff;
    background: linear-gradient(135deg, #016A04, #5FB138);
    padding: 4px 8px;
    border-radius: 25px;
    display: inline-block;
    font-size:12px;
}


/* Offer */
.iteskul-demo-modal .iteskul-demo-offer {
    display: block;

    margin: 0;
    padding: 0;

    background: transparent;
    border: 0;

    color: #15862f;

    font-size: 14px;
    line-height: 1.5;

    font-weight: 500;
}


/* Bold 2+ levels */
.iteskul-demo-modal .iteskul-demo-offer strong {
    font-weight: 600;
}


/* Divider after header */
.iteskul-demo-modal .iteskul-demo-header::after {
    content: "";

    display: block;

    width: 100%;
    height: 0.5px;

    margin-top: 10px;

    background: #dedbd1;
}


/* =====================================================
   FORM
===================================================== */

.iteskul-demo-modal .iteskul-demo-form {
    width: 100%;

    margin: 0;
    padding: 0;
}


/* Field wrapper */
.iteskul-demo-modal .iteskul-demo-field {
    width: 100%;

    margin-bottom: 19px;
}


/* =====================================================
   LABEL
===================================================== */

.iteskul-demo-modal .iteskul-demo-field label {
    display: block;

    margin: 0 0 10px;
    padding: 0;

    color: #a0a0a0;

    font-size: 10px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    display:none;
}


/* =====================================================
   INPUTS
===================================================== */

.iteskul-demo-modal .iteskul-demo-field input,
.iteskul-demo-modal .iteskul-demo-field select {
    display: block;

    width: 100%;
    height: 36px;

    margin: 0;

    padding: 4px;

    box-sizing: border-box;

    background: transparent;

    border: 1px solid #dedede;

    border-radius: 2px;

    outline: none;

    box-shadow: none;

    color: #676767;

    font-size: 15px;
    line-height: normal;

    transition: border-color 0.2s ease;
}


/* Placeholder */
.iteskul-demo-modal
.iteskul-demo-field
input::placeholder {
    color: #c9c1b5;

    opacity: 1;
}


/* Focus */
.iteskul-demo-modal
.iteskul-demo-field
input:focus,
.iteskul-demo-modal
.iteskul-demo-field
select:focus {
    border-color: #a0a0a0;

    box-shadow: none;
}


/* Normal typed text */
.iteskul-demo-modal
.iteskul-demo-field
input:not([readonly]) {
    color: #333333;
}


/* =====================================================
   COURSE FIELD
===================================================== */

.iteskul-demo-modal
.iteskul-demo-field
input[readonly] {
    background: transparent;

    color: #08642f;

    cursor: default;
}


/* If Course is Select */
.iteskul-demo-modal
.iteskul-demo-field
select {
    color: #08642f;

    cursor: default;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding-right: 28px;

    background-image:
        linear-gradient(45deg, transparent 50%, #999589 50%),
        linear-gradient(135deg, #999589 50%, transparent 50%);

    background-position:
        calc(100% - 10px) 15px,
        calc(100% - 6px) 15px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.iteskul-demo-modal .iteskul-demo-submit {
    display: block;

    width: 100%;

    min-height: 44px;

    margin: 18px 0 0;

    padding: 8px 16px;

    background: linear-gradient(135deg, #016A04, #5FB138);

    border: 1px solid #ffffff00;
    border-radius: 2px;

    color: #ffffff;


    font-size: 14px;
    line-height: 1.4;

    font-weight: 600;

    text-align: center;

    text-transform: none;

    cursor: pointer;

    transition: background 0.2s ease;
}


.iteskul-demo-modal
.iteskul-demo-submit:hover {
    background: #0c572a;
}


.iteskul-demo-modal
.iteskul-demo-submit:disabled {
    opacity: 0.6;

    cursor: not-allowed;
}


/* =====================================================
   SUCCESS / ERROR MESSAGE
===================================================== */

.iteskul-demo-modal .iteskul-demo-message {
    width: 100%;

    margin-top: 12px;

    text-align: center;

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;
    line-height: 1.5;

    font-weight: 600;
}


.iteskul-demo-modal
.iteskul-demo-message.demo-success {
    color: #16833c;
}


.iteskul-demo-modal
.iteskul-demo-message.demo-error {
    color: #d62828;
}


/* =====================================================
   HONEYPOT
===================================================== */

.iteskul-demo-modal .iteskul-demo-honeypot {
    position: absolute !important;

    left: -99999px !important;
    top: -99999px !important;

    width: 1px !important;
    height: 1px !important;

    opacity: 0 !important;

    overflow: hidden !important;

    pointer-events: none !important;
}


/* Prevent page scrolling */
body.iteskul-demo-open {
    overflow: hidden !important;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .iteskul-demo-modal {
        padding: 10px;
    }


    .iteskul-demo-modal
    .iteskul-demo-box {
        max-width: 100%;

        padding: 32px 25px 28px;
    }


    .iteskul-demo-modal
    .iteskul-demo-close {
        top: 18px;
        right: 20px;

        font-size: 24px;
    }


    .iteskul-demo-modal
    .iteskul-demo-kicker {
        font-size: 11px;

        letter-spacing: 1.6px;
    }


    .iteskul-demo-modal
    .iteskul-demo-header h2 {
        font-size: 22px;

        padding-right: 20px;
    }


    .iteskul-demo-modal
    .iteskul-demo-header p {
        font-size: 14px;
    }


    .iteskul-demo-modal
    .iteskul-demo-offer {
        font-size: 13px;
    }


    .iteskul-demo-modal
    .iteskul-demo-field {
        margin-bottom: 17px;
    }


    .iteskul-demo-modal
    .iteskul-demo-field input,
    .iteskul-demo-modal
    .iteskul-demo-field select {
        font-size: 16px;
    }


    .iteskul-demo-modal
    .iteskul-demo-submit {
        margin-top: 26px;

        min-height: 49px;

        font-size: 14px;
    }

}