.student-special-modal-container {
    --bs-body-color: #212529;
    position: fixed;
    top: 0;
    left: 0;
    background-color: hsl(0deg 0% 0% / 50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--body_typography-font-family);
    z-index: 99999;

    .special-popup-box {
        max-width: 700px;
        position: relative;

        .special-popup-close {
            position: absolute;
            /*right: 10px;
            top: 10px;*/
            right: -10px;
            top: -30px;
            width: 26px;
            height: 26px;
            &:before, &:after {
                position: absolute;
                left: 10px;
                top: 3px;
                content: ' ';
                height: 20px;
                width: 2px;
                background-color: #fff;
            }
            &:before {
              transform: rotate(45deg);
            }
            &:after {
              transform: rotate(-45deg);
            }
        }

        .special-popup {
            display: flex;
            min-height: 400px;
            border-radius: 20px;
            overflow: hidden;
            background-color: var(--awb-color1);

            .special-image {
                flex-basis: 50%;
                background-size: cover;
                background-position: center center;
            }

            .special-content {
                flex-basis: 50%;
                padding: 50px 20px;
                box-sizing: border-box;
                display: flex;
                flex-direction: column;
                justify-content: center;

                h1 {
                    /*margin: 0 0 20px 0;*/
                    margin:  0;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    line-height: 0 !important;

                    span {
                        background-color: var(--awb-color4);
                        margin-bottom: 0;
                        padding: 2px 15px;
                        /*font-size: 30px !important;*/
                        font-size: 27px !important;
                        line-height: 1.2;
                        display: inline-block;
                        font-weight: 600;
                        color: var(--awb-color1);
                        font-family: var(--body_typography-font-family);
                        text-transform: uppercase;
                        font-weight: 700;
                        &:first-child {
                            transform: rotate(-3deg);
                        }
                    }
                }

                p {
                    font-size: 14px;
                    color: var(--bs-body-color);
                    margin: 12% 0;
                }

                .special-form {
                    /*margin-bottom: 20px;*/
                    /*margin-top: 20px;*/
                    .gform_wrapper{
                        margin-bottom: 0 !important;
                    }
                    .gform_footer {
                        margin: 0 !important;
                        padding: 0 !important;
                        input[type=submit]{
                            position: absolute;
                            z-index: -1;
                            opacity: 0;
                        }
                    }
                    input[type=email]::placeholder{
                        color: #999;
                    }
                    input[type=email] {
                        width: 100%;
                        padding: 10px !important;
                        color: #333 !important;
                        font-weight: normal;
                        border: 1px solid #7a7a7a !important;
                        box-sizing: border-box;
                        font-size: 16px !important;
                        height: 40px !important;

                        &:focus {
                            outline: none;
                        }
                    }

                    .gform_button {
                        width: 100%;
                        font-size: 14px;
                        padding: 10px;
                        border: 1px solid var(--awb-color4);
                        background: var(--awb-color4);
                        color: var(--awb-color1);
                        cursor: pointer;
                        line-height: 1.2 !important;
                        /*margin-top: 10px;*/
                        height: 37px;
                        max-width: 145px;
                        border-radius: 50px;

                        &:hover {
                            background-color: var(--awb-color4);
                        }
                    }
                }

                .special-disclaimer {
                    font-size: 11px;
                    text-align: center;
                    color: var(--bs-body-color);
                    line-height: 1.2;
                }
            }
        }
    }
}

.thank-you-div {
    min-height: 243px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.thank-you-div .ty-heading {
    font-size: 26px;
}

 .special-modal-container {
    --bs-body-color: #212529;
    position: fixed;
    top: 0;
    left: 0;
    background-color: hsl(0deg 0% 0% / 50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--body_typography-font-family);
    z-index: 99999;

    .special-popup-box {
        background-color: var(--awb-color1);
        max-width: 700px;
        position: relative;

        .special-modal-close {
            position: absolute;
            right: -10px;
            top: -30px;
            width: 26px;
            height: 26px;

            &:before,
            &:after {
                position: absolute;
                left: 10px;
                top: 3px;
                content: ' ';
                height: 20px;
                width: 2px;
                background-color: var(--awb-color1);
            }

            &:before {
                transform: rotate(45deg);
            }

            &:after {
                transform: rotate(-45deg);
            }
        }

        .special-popup {
            display: flex;
            min-height: 380px;
            overflow: hidden;
            background-color: var(--awb-color1);

            .special-image {
                flex-basis: 50%;
                background-size: cover;
                background-position: center center;
                width: 400px;
            }

            .special-content {
                flex-basis: 50%;
                padding: 50px 20px;
                box-sizing: border-box;

                .special-logo{
                    text-align: center;
                    margin-bottom: 20px;
                    img{
                        width: 50px;
                    }
                }

                h1 {
                    margin: 0 0 20px 0;
                    text-align: center;
                    font-size: 30px !important;
                    line-height: 1.2;
                }

                p {
                    font-size: 14px;
                    color: var(--bs-body-color);
                    text-align: center;
                }

                .special-btn {
                        text-align: center;
                    a{
                        width: 100%;
                        font-size: 14px;
                        padding: 8px;
                        border: 1px solid var(--awb-color1);
                        background: var(--awb-color5);
                        color: var(--awb-color1);
                        cursor: pointer;
                        display: inline-block;
                        height: 37px;
                        max-width: 145px;

                        &:hover {
                            --awb-custom_color_3: #d87b57;
                            background-color: var(--awb-custom_color_3);
                        }  
                    }
                }
            }
        }
    }
}

#gform_wrapper_4 {
    display: block !important;
}
.email-signup-modal-container {
    --bs-body-color: #212529;
    position: fixed;
    top: 0;
    left: 0;
    background-color: hsl(0deg 0% 0% / 50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--body_typography-font-family);
    z-index: 99999;

    .special-popup-box {
        background-color: var(--awb-color1);
        /*max-width: 700px;*/
        width: 700px;
        position: relative;
        border-radius: 20px;
        max-height: 100%;

        .email-signup-modal-close {
            position: absolute;
            right: -10px;
            top: -30px;
            width: 26px;
            height: 26px;

            &:before,
            &:after {
                position: absolute;
                left: 10px;
                top: 3px;
                content: ' ';
                height: 20px;
                width: 2px;
                background-color: var(--awb-color1);
            }

            &:before {
                transform: rotate(45deg);
            }

            &:after {
                transform: rotate(-45deg);
            }
        }

        .special-popup {
            display: flex;
            min-height: 380px;
            /*height: 90vh;*/
            overflow: hidden;
            background-color: var(--awb-color1);
            border-radius: 20px;

            .special-image {
                flex-basis: 50%;
                background-size: cover;
                background-position: center center;
            }

            .special-content {
                flex-basis: 50%;
                padding: 20px;
                box-sizing: border-box;

                .special-logo{
                    text-align: center;
                    margin-bottom: 20px;
                    img{
                        width: 50px;
                    }
                }

                h1 {
                    margin: 0 0 20px 0;
                    text-align: center;
                    font-size: 30px !important;
                    line-height: 1.2;
                }

                p {
                    font-size: 14px;
                    color: var(--bs-body-color);
                    text-align: center;
                }


                .special-form {
                    /*margin-bottom: 20px;*/
                    /*margin-top: 20px;*/
                    /*max-height: 400px;*/
                    max-height: 40vh;
                    overflow: auto;
                    .gform_wrapper{
                        margin-bottom: 0 !important;
                    }
                    .gform_fields{
                        grid-row-gap: 8px;
                    }
                    .gform_footer {
                        margin: 0 !important;
                        padding: 0 !important;
                        input[type=submit]{
                            position: absolute;
                            z-index: -1;
                            opacity: 0;
                        }
                    }
                    input[type=email]::placeholder,input[type=text]::placeholder, input[type=tel]::placeholder{
                        color: #999;
                    }
                    input[type=email],input[type=text], input[type=tel] {
                        width: 100%;
                        padding: 10px !important;
                        color: #333 !important;
                        font-weight: normal;
                        border: 1px solid #7a7a7a !important;
                        box-sizing: border-box;
                        font-size: 16px !important;
                        height: 40px !important;
                        border-radius: 20px !important;

                        &:focus {
                            outline: none;
                        }
                    }
                    .name_first{
                        margin-bottom: 0;
                        input[type=text]{
                            margin-bottom: 8px;
                        } 
                    }
                    .name_last{
                        margin-bottom: 0;
                    }
                    .gfield--type-submit{
                        justify-content: center;
                    }
                    input[type=submit] {
                        width: 100% !important;
                        font-size: 14px !important;
                        padding: 10px !important;
                        border: 1px solid var(--awb-color4);
                        background: var(--awb-color4);
                        color: var(--awb-color1);
                        cursor: pointer;
                        line-height: 1.2 !important;
                        height: 37px !important;
                        max-width: 145px;

                        &:hover {
                            background-color: var(--awb-color4);
                        }
                    }
                }

            }
        }
    }
}


.timer-slide-in-container {
/*    --bs-body-color: #212529;*/
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    font-family: var(--body_typography-font-family);
    z-index: 99999;
    background-color: var(--awb-color4);

    .timer-slide-in-box {
        width: 100%;
        position: relative;

        .timer-slide-in-popup-close {
            position: absolute;
            right: 20px;
            top: 20px;
            width: 26px;
            height: 26px;
            cursor: pointer;
            z-index: 999;
            color: var(--awb-color1);
            font-size: 14px;
            border: 2px solid var(--awb-color1);
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;

            &:before,
            &:after {
                position: absolute;
                left: 10px;
                top: 3px;
                content: ' ';
                height: 16px;
                width: 2px;
                background-color: var(--awb-color1);
            }

            &:before {
                transform: rotate(45deg);
            }

            &:after {
                transform: rotate(-45deg);
            }
        }

         .timer-slide-in-content {
                max-width: 1497px;
                margin: 0 auto;
                padding: 30px 20px;
                box-sizing: border-box;

                h2 {
                    font-size: 18px;
                    color: var(--awb-color1);
                    line-height: 1.11;
                    padding-right: 30px;
                }

                .timer-slide-in-form {
                    .gform_wrapper{
                        margin-bottom: 0;
                        form {
                            display: flex;
                            align-items: center;
                            .gform-body{
                                flex-basis: 90%;
                            }
                            .gform_footer{
                                flex-basis: 10%;
                            }
                        }
                    }
                    .gform_fields{
                        grid-row-gap: 8px;
                    }
                    .gfmc-column {
                        /*flex-direction: row !important;
                        align-items: start;*/
                        margin-top: 0;
                        .gfmc-container {
                            flex-basis: 90%;
                            padding-bottom: 0;
                            *:not(input){
                               padding-bottom: 0 !important;
                               font-family: var(--bs-body-font-family);
                            }
                            .horizontal-form-align > *{
                                flex: 1;
                            }
                        }
                        .gfield--type-submit {
                            flex-basis: 10%;
                        }

                    }
                    .gform_footer {
                        margin: 0 !important;
                        padding: 0 !important;
                        /*input[type=submit]{
                            position: absolute;
                            z-index: -1;
                            opacity: 0;
                        }*/
                    }
                    input[type=email]::placeholder,input[type=text]::placeholder, input[type=tel]::placeholder{
                        color: #999;
                        font-style: italic;
                    }
                    input[type=email],input[type=text], input[type=tel] {
                        width: 100%;
                        padding: 10px !important;
                        color: #333 !important;
                        font-weight: normal;
                        border: 1px solid var(--awb-color1) !important;
                        box-sizing: border-box;
                        font-size: 14px !important;
                        height: 40px !important;
                        margin-bottom: 5px;

                        &:focus {
                            outline: none;
                        }
                    }
                    .name_first{
                        input[type=text]{
                            margin-bottom: 8px;
                        } 
                    }
                    input[type=submit] {
                        width: 100%;
                        font-size: 14px;
                        padding: 10px;
                        background: var(--awb-color5);
                        color: var(--awb-color1);
                        cursor: pointer;
                        line-height: 1.2 !important;
                        margin-top: 20px;
                        height: 37px;
                        max-width: 145px;

                        &:hover {
                            --awb-custom_color_3: #d87b57;
                            background-color: var(--awb-custom_color_3);
                        }
                    }
                }

            }
    }
}

@media (max-width: 1300px){
    .timer-slide-in-form .gfmc-column .horizontal-form-align{
        flex-wrap: wrap!important;
        align-items: flex-start !important;
    }
    .timer-slide-in-form .gfmc-column .horizontal-form-align > * {
        width: 32.2% !important;
        flex: none !important;
    }
    .timer-slide-in-form form {
        align-items: flex-start !important; 
    }
}

@media (max-width: 767px){
    .student-special-modal-container {
        .special-popup-box {
                max-width: 500px;
                margin: 0 20px;
            .special-popup {
                flex-direction: column;
                .special-image {
                    flex-basis: auto;
                    height: 200px;
                }
                .special-content {
                    padding: 30px 20px;
                }
            }
        }
    }
    .special-modal-container {
        .special-popup-box {
                max-width: 500px;
                margin: 0 20px;
            .special-popup {
                flex-direction: column;
                .special-image {
                    flex-basis: auto;
                    height: 250px;
                    width: 100%;
                }
                .special-content {
                    padding: 30px 20px;
                    .special-logo {
                        display: none;
                    }
                }
            }
        }
    }
    .email-signup-modal-container {
        .special-popup-box {
                max-width: 500px;
                margin: 0 20px;
            .special-popup {
                flex-direction: column;
                max-height: 90vh;
                .special-image {
                    flex-basis: auto;
                    height: 160px;
                }
                .special-content {
                    padding: 20px;
                    height: calc(100% - 160px);
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    .special-logo {
                        display: none;
                    }
                    .special-form{
                        height: 100%;
                        margin-bottom: 0;
                    }
                }
            }
        }
    }
    .timer-slide-in-container {
         .timer-slide-in-form[class] {
            .gform_wrapper{
                form {
                    display: block !important;
                }
            }
            .gfmc-column[class] {
                flex-direction: column !important;
                align-items: initial;
                margin-top: 0;
               .gfmc-container {
                    flex-basis: 100%;
                    .ginput_container--name{
                        .name_first{
                            margin-right: 5px;
                        }
                        .name_last{
                            margin-left: 5px;
                        }
                    }
                }
                .gfield--type-submit {
                    flex-basis: 100%;;
                }
               .gfmc-container {
                *:not(.gchoice) {
                    margin-right: 0;
                    margin-bottom: 2px;
                }
            }
          }
          input[type=submit] {
                margin-top: 10px !important;
            }
        }
    }
    .timer-slide-in-form .gfmc-column .horizontal-form-align > * {
        width: 100% !important;
    }
}

@media (max-width: 640px){
    .timer-slide-in-container {
        bottom: 44px;
    }
}

.gform_confirmation_message_6{
    color: white;
}

.special-form form {
    opacity: 1 !important;
}

.popup-form-opt-in-checkbox[class] .ginput_container label:before {
    left: -15px !important;
}

#gform_wrapper_5 {
    display: block !important;
}

.no-scroll {
  overflow: hidden;
}