/*==================================================
ONLINE ADMISSION
==================================================*/

body{
    background:#f5f6fa;
    font-family:Arial,Helvetica,sans-serif;
    color:#333;
}

.online-admission-page{
    width:100%;
    direction:ltr;
    text-align:left;
}

/*==================================================
HEADER
==================================================*/

.oa-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 35px;
    background:#fff;
    border-bottom:1px solid #ddd;
}

.oa-header-left{
    display:flex;
    align-items:center;
}

.oa-logo{
    width:80px;
    margin-right:20px;
}

.oa-title-box h1{
    margin:0;
    color:#1d4d9b;
    font-size:52px;
    font-weight:700;
}

.oa-header-right .btn{
    margin-left:10px;
    padding:12px 22px;
}

/*==================================================
SECTION TITLE
==================================================*/

.oa-section-title{
    background:#efefef;
    padding:15px 20px;
    border:1px solid #ddd;
    font-size:24px;
    font-weight:700;
    color:#555;
}

/*==================================================
INSTRUCTIONS
==================================================*/

.oa-instruction-box{

    background:#fff;

    border:1px solid #ddd;

    padding:25px;

    margin:20px 0;
}

.oa-instruction-box h3{

    margin-top:0;

    color:#d73b3b;

    font-weight:bold;

}

/*==================================================
STEP
==================================================*/

.oa-step{
    display:flex;
    margin-top:25px;
    position:relative;
}

.oa-step-number{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#1d73d4;
    color:#fff;
    text-align:center;
    line-height:50px;
    font-size:22px;
    font-weight:bold;
    margin-right:20px;
    flex-shrink:0;
}

.oa-step-box{
    flex:1;
}

.oa-step-header{
    background:#efefef;
    border:1px solid #ddd;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.oa-step-header h3{
    margin:0;
    font-size:22px;
    font-weight:600;
}

.oa-step-body{
    border:1px solid #ddd;
    border-top:none;
    background:#fff;
    padding:20px;
}

/*==================================================
SUMMARY
==================================================*/

.summary-table{
    width:100%;
}

.summary-table td{
    padding:8px 0;
}

.summary-title{
    font-weight:bold;
    width:220px;
}

.summary-value{
    color:#1d4d9b;
}

/*==================================================
BUTTONS
==================================================*/

.btn-primary{
    background:#5b5675;
    border-color:#5b5675;
}

.btn-primary:hover{
    background:#4a4564;
}

.btn-success{
    padding:10px 35px;
}

.btn-secondary{
    background:#ccc;
}

/*==================================================
MODAL
==================================================*/

.modal-header{
    background:#1d4d9b;
    color:#fff;
}

.modal-title{
    font-weight:600;
}

.modal-footer{
    background:#fafafa;
}

/*==================================================
FORM
==================================================*/

.form-group{
    margin-bottom:18px;
}

.form-group label{
    font-weight:600;
}

.form-control{
    border-radius:4px;
    height:40px;
}

textarea.form-control{
    height:auto;
}

/*==================================================
TABLE
==================================================*/

.table thead th{
    background:#efefef;
}

/*==================================================
DROPIFY
==================================================*/

.dropify-wrapper{
    border:1px solid #ddd;
}

/*==================================================
TERMS
==================================================*/

#agreeTerms{
    margin-right:10px;
}

#btnSubmitAdmission{
    min-width:250px;
}

/*==================================================
COMPLETED STEP
==================================================*/

.oa-complete .oa-step-number{
    background:#28a745;
}

.oa-complete .oa-step-number:before{
    content:"✓";
    font-size:22px;
}

/*==================================================
DISABLED STEP
==================================================*/

.oa-disabled{
    opacity:.6;
}

.oa-disabled .btn{
    pointer-events:none;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

    .oa-step{
        flex-direction:column;
    }

    .oa-step-number{
        margin-bottom:15px;
    }

    .oa-step-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .oa-step-header .btn{
        margin-top:15px;
    }

}

@media(max-width:768px){

    .oa-title{
        font-size:26px;
    }

    .oa-header{
        text-align:center;
    }

    .oa-top-buttons{
        margin-top:20px;
    }

    .oa-top-buttons .btn{
        margin:5px;
    }

}
/* Force Online Admission to LTR */
.online-admission-page{
    direction:ltr !important;
    text-align:left !important;
}

.online-admission-page *{
    direction:ltr !important;
    text-align:left !important;
}

/* Header */
.oa-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.oa-header-left{
    display:flex;
    align-items:flex-start;
    gap:20px;
}

.oa-header-right{
    text-align:right !important;
}

/* Instructions */
.oa-instruction-box{
    text-align:left !important;
}

.oa-instruction-box h3,
.oa-instruction-box h4,
.oa-instruction-box p,
.oa-instruction-box ol,
.oa-instruction-box li{
    text-align:left !important;
}

/* Step boxes */
.oa-step-header{
    text-align:left !important;
}

.oa-step-body{
    text-align:left !important;
}

.summary-table{
    text-align:left !important;
}

.summary-table td{
    text-align:left !important;
}

/* Forms */
.form-group label,
.form-control,
select,
textarea{
    text-align:left !important;
}

/* Buttons */
.oa-top-buttons{
    display:flex;
    gap:10px;
}