/* BUTTON */
/*#quickContactBtn {
    position: fixed;
    right: 0;
    top: 45%;
    background: #c9151b;
    color: #fff;
    padding: 12px 14px;
    cursor: pointer;
    font-weight: bold;
    z-index: 9999;
}*/
#quickContactBtn {
    position: fixed;
    right:-48px;
    top: 40%;
    background: #c4161c;
    color: #fff;
    padding: 12px 14px;
    cursor: pointer;
    font-weight: bold;
    z-index: 9999;
	transform:rotate(-90deg);
}

/* PANEL */
#quickContactPanel {
    position: fixed;
    right: -380px;
    top: 50%;
    transform: translateY(-50%);
    width: 360px;
    max-height: 90vh;
    background: #c9151b;
    transition: right 0.4s ease;
    z-index: 10000;
    border-radius: 6px 0 0 6px;
    overflow-y: auto;
}

#quickContactPanel.open {
    right: 0;
}

/* HEADER */
#quickContactPanel h4 {
    margin: 0;
    padding: 14px;
    background: #a81015;
    color: #fff;
    text-align: center;
    font-size: 16px;
    position: relative;
}

/* CLOSE */
#qcClose {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 22px;
    cursor: pointer;
}

/* FORM */
#quickContactForm {
    padding: 15px;
}

#quickContactForm input,
#quickContactForm select,
#quickContactForm textarea {
    width: 100%;
    padding: 9px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
}

#quickContactForm textarea {
    resize: none;
    height: 70px;
}

#quickContactForm button {
    width: 100%;
    padding: 11px;
    background: #fff;
    color: #c9151b;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

/* SPINNER */
#qcSpinner {
    text-align: center;
    padding: 30px;
    color: #fff;
}

.qc-loader {
    border: 4px solid #fff;
    border-top: 4px solid transparent;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* THANK YOU */
#qcThankYou {
    text-align: center;
    padding: 30px;
    color: #fff;
}

/* Apply Now Addmission */

.apply-wrap{
    margin:20px auto 70px;
    max-width:720px;
   
    background:#ffffff;
    padding:35px;
    border-radius:10px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-top:15px solid #0d47a1;
}

.apply-wrap h2{
    text-align:center;
    margin-bottom:25px;
    color:#0d47a1;
    font-weight:600;
}

/* INPUTS */
.apply-wrap input,
.apply-wrap select,
.apply-wrap textarea{
    width:100%;
    padding:10px;
    margin-bottom:16px;
    border:1px solid #d0d7e2;
    border-radius:6px;
    font-size:14px;
    transition:all .3s ease;
}

.apply-wrap input:focus,
.apply-wrap select:focus,
.apply-wrap textarea:focus{
    border-color:#0d47a1;
    box-shadow:0 0 0 2px rgba(13,71,161,.1);
    outline:none;
}

/* BUTTON */
.apply-wrap button{
    width:100%;
    background:#0d47a1;
    color:#fff;
    border:none;
    padding:14px;
    font-size:16px;
    cursor:pointer;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.apply-wrap button:hover{
    background:#08306b;
}
.apply-subtext{
     text-align:center;
    font-size:18px;
    color:#666;
    margin-bottom:15px;
    color:#0d3b8e;
     
}
.apply-subtext:before{
    content:"";
    display:block;
    height:1px;
    background:#d0d0d0;
    margin:8px auto;
    width:100%;
}
/* Mobile Responsive */
@media (max-width:768px){
    .apply-wrap{
        margin:15px 15px 50px;
        padding:30px 22px;
    }

    .apply-wrap h2{
        font-size:24px;
    }
}