/* --------------------------------------
   Layout & Wrappers
----------------------------------------- */
.enrollSection {
    padding: 50px 0;
    background: #f2f0ee;
}

.enrollSection .row:first-of-type {
    /*margin: 0 auto;*/
}

.enrollSection .enrollCont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding: 10px 5px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
    border-radius: 1px;
    margin: 10px;
    background: #fff;
}

.enrollSection .formSection,
.enrollSection .enrollmentOptionListSection {
    margin-bottom: 30px;
}

.enrollSection .stepContent {
    margin: 0 auto;
}

.enrollSection .centerContactSubmitContainer {
    display: flex;
    margin-top: 30px;
    flex-direction: column;
}

.enrollSection .centerContactSubmitContainer button {
    width: 100%;
    display: block;
    margin: 10px auto;
}

.enrollSection .centerContactSubmitContainer .primary-theme-btn {
    border: none;
}

.enrollSection .centerContactSubmitContainer .secondary-theme-btn {
    /*margin-top: 0;*/
}

.enrollSection .centerContactSubmitContainer .secondary-theme-btn:focus-visible {
    border: none;
}

/* --------------------------------------
   Typography (Global)
----------------------------------------- */
.enrollSection a,
.enrollSection strong,
.enrollSection ul li,
.enrollSection p,
.enrollSection .enrollmentOption ul li,
.enrollSection .checkboxCont label {
    font-family: "Nunito Sans", 'Avenir';
    font-size: 16px;
    line-height: 22px;
}

.enrollSection a {
    text-decoration: underline;
}


/* --------------------------------------
   Header
----------------------------------------- */
.enrollSection .headerCont {
    text-align: center;
    margin-bottom: 40px;
}

.enrollSection .headerCont .title {
    font-family: "Nunito Sans", "Avenir";
    font-weight: 900;
    font-size: 28px;
    line-height: 36px;
    text-transform: none;
}

.enrollSection .headerCont .subtitle {
    font-size: 24px;
    line-height: 32px;
    font-weight: 900;
    margin-bottom: 5px;
}


/* --------------------------------------
   Section Titles
----------------------------------------- */
.enrollSection .sectionTitle {
    font-family: "Nunito Sans", "Avenir";
    font-size: 25px;
    line-height: 36px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: initial;
    margin-bottom: 30px;
}

.enrollSection .sectionTitle.sub {
    font-size: 20px;
}

.enrollSection .addStudentCont .sectionTitle {
    font-size: 20px;
}


/* --------------------------------------
   Enrollment Options
----------------------------------------- */
.enrollSection .selectedEO,
.enrollSection .enrollmentOption {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 16px solid #EF3E33;
    padding: 24px 40px 24px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
    border-radius: 1px;
    margin: 20px 0;
}

.enrollSection .enrollmentOptionList {
    margin-right: 0;
    margin-left: 0;
}

.enrollSection .enrollmentOptionList .enrollmentOption {
    border-top: none;
    border-bottom: 1px solid #E7E7E7;
    margin: 0;
    cursor: pointer;
}

.enrollSection .enrollmentOptionList .enrollmentOption:hover {
    background: #f2f0ee;
}

.enrollSection .selectedEO .headerCont,
.enrollSection .enrollmentOption .headerCont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 0;
}

.enrollSection .enrollmentOption .headerCont {
    text-align: left;
}

.enrollSection .enrollmentOption .headerCont p {
    margin-bottom: 0;
}

.enrollSection .selectedEO .headerCont .title,
.enrollSection .selectedEO .headerCont .subtitle,
.enrollSection .enrollmentOption .headerCont .title,
.enrollSection .enrollmentOption .headerCont .subtitle {
    font-family: "Nunito Sans", "Avenir";
    font-weight: 900;
    font-size: 20px;
    line-height: 30px;
}

.enrollSection .changeEnrollmentSession {
    width: 100%;
    max-width: unset;
    color: #000;
    text-decoration: none;
}

.enrollSection .changeEnrollmentSession .enrollmentChevron {
    margin-left: 10px;
}

.enrollSection .selectedEO .headerCont {
    flex-direction: column;
    text-align: left;
}

.enrollSection .selectedEO .headerCont .title {
    margin-bottom: 10px;
}

.enrollSection .selectedEO .headerCont .subtitle {
    font-size: 18px;
}


/* --------------------------------------
   Checklist Inside Enrollment Option
----------------------------------------- */
.enrollSection .selectedEO .timePeriod,
.enrollSection .enrollmentOption .timePeriod {
    margin-bottom: 20px;
}

.enrollSection .selectedEO .timePeriod p,
.enrollSection .enrollmentOption .timePeriod p {
    margin: 0;
}

.enrollSection .selectedEO .checkList,
.enrollSection .enrollmentOption .checkList {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.enrollSection .selectedEO .checkList li,
.enrollSection .enrollmentOption .checkList li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.enrollSection .selectedEO .checkList li::before,
.enrollSection .enrollmentOption .checkList li::before {
    font-family: FontAwesome;
    content: "\f00c";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #000;
}


/* --------------------------------------
   Add Container
----------------------------------------- */
.enrollSection .addStudentCont,
.enrollSection .addGuardianCont {
    border-bottom: 1px solid #E7E7E7;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* --------------------------------------
   Checkbox Container
----------------------------------------- */
.enrollSection .checkboxCont {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.enrollSection .checkboxCont input {
    height: 20px;
    width: 20px !important;
    margin: 0 20px 0 0;
    padding: 0;
    cursor: pointer;
}

.enrollSection .checkbox-warning,
.enrollSection .error-message {
    font-family: "Nunito Sans", "Avenir";
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: initial;
    color: #B5121B;
    display: block;
    margin-bottom: 10px;
}

/* --------------------------------------
   Terms & Conditions
----------------------------------------- */
.enrollSection .termSection {
    margin-bottom: 30px;
}

.enrollSection .termSection .content {
    max-height: 300px;
    overflow-y: auto;
    padding: 20px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.enrollSection .termSection h3 {
    font-family: "Nunito Sans", "Avenir";
    font-weight: 900;
    font-size: 20px;
    line-height: 36px;
    text-transform: none;
    margin: 20px 0;
}

.enrollSection .termSection ul li {
    margin-bottom: 10px;
}

/*
.enrollSection .mathnasiumInformedConsentStatement {
    border-bottom: 1px solid #8A8A8A;
    padding-bottom: 20px;
}
*/

.enrollSection .termSection h4 {
    font-family: "Nunito Sans", "Avenir";
    font-weight: 900;
    font-size: 24px;
    line-height: 32px;
    text-transform: none;
}

.enrollSection .centerInformation p {
    margin-bottom: 0;
}

.enrollSection .centerInformation a {
    display: block;
}

.enrollSection .learningCenterGuidelines .title {
    text-align: center;
    margin: 30px 0 40px;
    font-size: 28px;
}

/* --------------------------------------
   Student Pricing Section
----------------------------------------- */
.enrollSection .studentPricingSection {
    border: 1px solid #E0E0E0;
    border-radius: 2px;
    padding: 20px;
}

.enrollSection .studentPricingSection .enrollmentDetailsBlock .headerCont {
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 20px;
}

.enrollSection .studentPricingSection .enrollmentDetailsBlock .headerCont .sectionTitle {
    margin-bottom: 0;
}

.enrollSection .studentPricingSection .enrollmentDetailsBlock .costBreakdown .cInfoCont {
    display: flex;
    justify-content: space-between;
}

.enrollSection .studentPricingSection .enrollmentDetailsBlock .costBreakdown .cInfoCont .total {
    font-weight: 800;
}

.enrollSection .studentPricingSection .infoCont {
    margin-bottom: 20px;
}

.enrollSection .studentPricingSection p {
    margin-bottom: 0;
}

.enrollSection .studentPricingSection p.label {
    font-weight: 900;
}

/* --------------------------------------
   Payment Details Section
----------------------------------------- */
.enrollSection .paymentDetailsContainer,
.enrollSection .pricingCont {
    border: 1px solid #E0E0E0;
    border-radius: 2px;
    padding: 20px;
}

.enrollSection .paymentDetailsContainer .headerCont,
.enrollSection .pricingCont .headerCont {
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 20px;
    text-align: unset;
}
.enrollSection .pricingCont {
    margin-bottom: 30px;
}

.enrollSection .pricingCont .costBreakdown .cInfoCont {
    display: flex;
    justify-content: space-between;
}

.enrollSection .pricingCont .costBreakdown .cInfoCont .total {
    font-weight: 800;
}

.enrollSection .pricingCont .costBreakdown .cInfoCont p {
    margin-bottom: 0;
}

.enrollSection .pricingCont .costBreakdown .cInfoCont.total {
    margin: 10px 0;
}

.enrollSection .pricingCont .costBreakdown .cInfoCont.total p {
    font-family: "Nunito Sans", "Avenir";
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: initial;
    color: #B5121B;
}

.enrollSection #enrollmentAgreementContainer {
    margin: 20px 0 0;
}

.enrollSection #enrollmentAgreementContainer .checkboxCont {
    margin: 20px 0;
}

.enrollSection #stax-errors {
    font-size: 18px;
    font-weight: 800;
}

.enrollSection #stax-card-number,
.enrollSection #stax-cvv {
    width: 100%;
    display: block;
    height: 50px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.5);
    border-radius: 1px;
    padding: 15px 24px;
    border: none;
    margin-bottom: 10px;
}

.enrollSection #stax-card-number iframe input,
.enrollSection #stax-cvv iframe input {
    font-size: 16px;
}

/* --------------------------------------
   Confirmation Page
----------------------------------------- */
.enrollSection.confirmationSection {
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 1) 60%),
        url("/themes/mathnasium/assets/images/bg-num-whtp.gif") no-repeat top center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-color: #FFF;
}


.enrollSection.confirmationSection .stepContent .confirmationCont {
    position: relative;
    border-top: 16px solid #EF3E33;
    padding: 24px 40px 24px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
    border-radius: 1px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFF;
}

.enrollSection.confirmationSection .stepContent .confirmationCont img {
    height: 150px;
    width: 220px;
}

.enrollSection.confirmationSection .stepContent .confirmationCont .title {
    margin: 30px 0;
    color: #EF3E33;
}

.enrollSection.confirmationSection .stepContent .confirmationCont .content {
    text-align: center;
}

.enrollSection.confirmationSection .stepContent .actionCont {
    margin: 20px 0;
}

.enrollSection.confirmationSection .stepContent .actionCont a {
    text-decoration: none;
}

/*#stax-card-number,*/
/*#stax-expiration-date,*/
/*#stax-cvv {*/
/*    min-height: 45px;*/
/*    padding: 10px;*/
/*    border: 1px solid #ccc;*/
/*    border-radius: 4px;*/
/*    background-color: white;*/
/*    margin-bottom: 15px;*/
/*}*/

/*#stax-card-number iframe,*/
/*#stax-expiration-date iframe,*/
/*#stax-cvv iframe {*/
/*    width: 100% !important;*/
/*    height: 100% !important;*/
/*}*/


@media (min-width: 768px) {
    .enrollSection .sectionTitle {
        font-size: 38px;
        line-height: 50px;
    }

    .enrollSection .enrollCont {
        padding: 24px 40px 24px;
    }

    .enrollSection .selectedEO .headerCont .title,
    .enrollSection .selectedEO .headerCont .subtitle,
    .enrollSection .enrollmentOption .headerCont .title,
    .enrollSection .enrollmentOption .headerCont .subtitle {
        font-family: "Nunito Sans", "Avenir";
        font-weight: 900;
        font-size: 28px;
        line-height: 36px;
    }

    .enrollSection .selectedEO .headerCont .subtitle {
        font-size: 26px;
    }

    .enrollSection .selectedEO .headerCont .subtitle p {
        margin-bottom: 0;
    }

    .enrollSection .sectionTitle.sub {
        font-size: 28px;
    }

    .enrollSection .addStudentCont .sectionTitle {
        font-size: 28px;
    }

    .enrollSection .pricingCont .costBreakdown .cInfoCont.total p {
        font-size: 28px;
    }

    .enrollSection .termSection h3 {
        font-size: 28px;
    }

}

@media (min-width: 992px) {
    .enrollSection strong,
    .enrollSection ul li,
    .enrollSection a,
    .enrollSection p,
    .enrollSection .enrollmentOption ul li,
    .enrollSection .checkboxCont label {
        font-size: 19px;
        line-height: 29px;
    }

    .enrollSection .learningCenterGuidelines .title {
        text-align: center;
        margin: 30px 0 60px;
        font-size: 38px;
    }

    .enrollSection .centerContactSubmitContainer {
        flex-direction: row;
    }
}




