@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,500&display=swap');
html{
    height: 100%;
}
body{
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}
.login{
    background-image: url("../images/DefaultBackground.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.login .loginForm-overlay{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, 0.25);
}
.login .login-form{
    background-color: #FFF;
    width: 420px;
    border-radius: 8px;
    padding: 20px 30px;
    position: relative;
    box-shadow: 0 0 10px;
}

.login .login-form h2{
    text-align: center;
    font-weight: bold;
    color: #01579b;
}
.login .login-form h4{
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
    color: #01579b;
}
.login .login-form form{
    text-align: center;
}
.login .login-form form input,
#forgotusername .modal-body form input,
#forgotusername .modal-body form select,
#forgotpassword .modal-body form input,
#forgotpassword .modal-body form select{
    width: 100%;
    height: 44px;
    border: solid 2px #01579b;
}
.login .login-form form input:focus,
#forgotusername .modal-body form input:focus,
#forgotusername .modal-body form select:focus,
#forgotusername .modal-header button:focus,
#forgotpassword .modal-body form input:focus,
#forgotpassword .modal-body form select:focus,
#forgotpassword .modal-header button:focus{
    box-shadow: none;
    outline: none;
    border: solid 2px #039be5;
}
.login .login-form form input::placeholder{
    color: #000;
    padding: 0 2px;
}
.login .login-form button{
    text-align: center;
    width: 100%;
    border-radius: 8px;
    border: 2px solid #01579b;
    color: #FFF;
    font-weight: bold;
    height: 44px;
    background-color: #01579b;
    font-size: 19px;
}
.login .login-form button:hover{
    background-color: #039be5;
    transition: all 0.4s ease;
}
.login .login-form .login-text{
    margin-top: 22px;
    padding-left: 12px;
    font-weight: bold;
    cursor: pointer;
    width: auto;
    color: #4d4d4d;
}
.login .login-form .login-password{
    padding-left: 12px;
    margin-top: 8px;
    font-weight: bold;
    cursor: pointer;
    color: #4d4d4d;
}
.login .login-form .login-text:hover,
.login .login-form .login-password:hover{
    text-decoration: underline;
}
@media(max-width: 425px){
    .login .login-form{
        width: 90%;
        padding: 15px;
    }
}
.modal-body .submit-btn{
    text-align: center;
    margin: 15px 0;
}
.modal-body .submit-btn button{
    width: 100%;
    height: 45px;
    background-color: #01579b;
    color: #FFF;
    border: none;
    border-radius: 7px;
    font-weight: bold;
    font-size: 19px;
}
.modal-body .submit-btn button:hover{
    background-color: #039be5;
    transition: all 0.4s ease;
    border: solid 2px #039be5;
}
.popupFooterText{
    position: relative;
    margin-top: 15px;
}
.popupFooterText p{
    font-size: 14px;
    color: #4d4d4d;
    margin: 0;
}
.modal-header .modal-title{
    color: #01579b;
}
@media(max-width: 767px){
    .modal-body .country-code{
        margin-bottom: 20px;
    }
}
.outerWrapper{
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
}
.outerWrapper .leftsideBar{
    position: relative;
    width: 300px;
    height: 100%;
    background-image: url("../images/DefaultBackground.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 60% 100%;
}
.outerWrapper .leftsideBar .leftsidebar-Overlay{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0, 0.6);
    height: 100%;
    width: 100%;
}
::-webkit-scrollbar {
    width: 6px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: transparent; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }
.outerWrapper .leftsideBar .userNameSection{
    text-align: center;
    position: relative;
    height: 62px;
    background-color: #039be5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.outerWrapper .leftsideBar .userNameSection h3{
    color: #FFF;
}
.outerWrapper .leftsideBar ul{
    margin: 0;
    padding: 0;
    position: relative;
}
.outerWrapper .leftsideBar ul li{
    list-style: none;
    font-size: 16px;
    margin: 0 0 5px 0;
    /* padding: 12px 0; */
    transition: all 0.5s ease;
}

/* .outerWrapper .leftsideBar ul li.active{
    background-color: #01579b;
    color: #FFF;
    transition: all 0.5s ease;
}
.outerWrapper .leftsideBar ul li:hover{
    background-color: #039be5;
    color: #FFF;
    transition: all 0.5s ease;
}
.outerWrapper .leftsideBar ul li ul li{
    margin-bottom: 5px;
}
.outerWrapper .leftsideBar ul li a{
    text-decoration: none;
    padding: 10px 20px 10px 25px;
    display: block;
    color: #fff;
}
.outerWrapper .leftsideBar ul li a i{
    color: #fff;
}
.outerWrapper .leftsideBar ul li a b{
    font-weight: normal;
}
.outerWrapper .leftsideBar ul li a span{
    color: #FFF;
    padding: 0 0 0 10px;
} */
.outerWrapper .rightSideSection{
    position: relative;
    width: calc(100% - 300px);
    height: 100%;
}
.outerWrapper .leftsideBar .profileUsername{
    position: relative;
}
.outerWrapper .leftsideBar .profileUsername .userProfileChangeButton{
    position: absolute;
    left: 70px;
    right: auto;
    top: auto;
    bottom: 10px;
    cursor: pointer;
}
.outerWrapper .leftsideBar .profileUsername .userProfileChangeButton input{
    width: 100px;
    position: absolute;
    top: -30px;
    left: 50px;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}
.outerWrapper .leftsideBar .profileUsername .userProfileChangeButton i{
    background-color: #FFF;
    color: #000;
    padding: 4px;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    top: -30px;
    left: 100px;
}
.outerWrapper .leftsideBar .userProfileSection{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  
}
.outerWrapper .leftsideBar .userProfileSection img{
    height: 100px;
    width: 100px;
    margin: 0;
    padding: 0;
    position: relative;
    border: 2px solid #FFF;
    border-radius: 50px;
    margin: 20px 0 ;
}
.outerWrapper .leftsideBar .profile-text input{
    margin: 0 0 22px 20px;
    position: relative;
    color: #fff;
}
.outerWrapper .rightSideSection .dashbaordHeader{
    background-color: #fff;
    height: 62px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    display: flex;
    align-items: center;
}
.outerWrapper .rightSideSection .dashbaordHeader #toggleButtons{
    border: none;
    background-color: transparent;
    color: #01579b;
    font-size: 22px;
    margin-left: 10px;
    display: none;
}
.outerWrapper .rightSideSection .dashbaordHeader #toggleButtons:focus{
    box-shadow: none;
    outline: none;
}
.rightSideSection .dashbaordHeader .schoolLogoName{
    width: calc(100% - 240px);
    text-align: center;
}
.rightSideSection .dashbaordHeader .userInforButton{
    width: 160px;
    text-align: right;
}
.outerWrapper .rightSideSection .dashbaordHeader .dropdown button{
    background-color: #FFF;
    color: #000;
    border: none;
}
.outerWrapper .rightSideSection .dashbaordHeader .dropdown button:focus{
    outline: none;
    box-shadow: none;
}
.rightSideSection .dashbaordHeader .userInforButton .dropdown-menu{
    border: none;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    margin: 0;
    padding: 0;
    border-radius: 5px;
    overflow: hidden;
}
.rightSideSection .dashbaordHeader .userInforButton .dropdown-menu a{
    padding: 10px;
    transition: all 0.5s ease;
}
.rightSideSection .dashbaordHeader .userInforButton .dropdown-menu a:hover{
    background-color: #039be5;
    color: #FFF;
    transition: all 0.5s ease;
}
.rightSideSection .dashbaordHeader .userInforButton .dropdown-menu a i{
    margin-right: 5px;
}
.schoolInformation{
    padding: 9px 0;
}
.schoolInformation .schoolInformation-text{
    text-align: left;
}
.schoolInformation .schoolInformation-text h2{
    margin-bottom: 25px;
    font-weight: bold;
    color: #01579b
}
.schoolInformation form .form-group label{
    margin: 0;
}
.schoolInformation form .form-group input{
    border: 1px solid #01579b;
}
.schoolInformation form .form-group input:focus{
    outline: none;
    box-shadow: none;
}
.schoolInformation form .submit-button{
    text-align: right;
    margin-top: 25px;
}
.schoolInformation form .submit-button button{
    height: 40px;
    width: auto;
    padding: 0px 20px;
    border-radius: 5px;
    background-color: #01579b;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: none;
}
.schoolInformation form .submit-button button:hover{
    background-color: #039be5;
    transition: all 0.4s ease;
}
.schoolInformation form .submit-button button:focus{
    outline: none;
    box-shadow: none;
}

.menu-parent { 
    color: #ffffff;
    text-align: left;
    height: calc(100% - 202px);
    overflow: hidden;
    overflow-y: auto;
}
.menu-parent.style3 { }
.menu-parent .menu-child.active{
    background-color: #01579b;
}
.menu-parent ul.menu li ul li a{
    padding: 6px 0px 6px 40px;
}
.menu-parent ul.menu li ul li a i{
    padding-right: 5px;
}
.menu-parent ul.menu li ul li ul li a{
    padding-left: 60px;
}
.menu-parent * { margin: 0; padding: 0;}
.menu-parent li { list-style: none;}
.menu-parent ul ul { display: none;}
.menu-parent li.active>ul { display: block;}
.menu-parent > ul > li > a { position: relative; display: block;  padding: 0 30px; font-size: 16px; line-height: 40px; color: #ffffff; text-decoration: none;}
.menu-parent > ul > li > a:hover,
.menu-parent ul.menu li ul li a:hover{
    background-color: #039be5;
}
.menu-parent > ul > li > a .fa { margin-right: 8px;}
.menu-parent ul ul li a { color: #ffffff; text-decoration: none; font-size: 16px; display: block; padding: 0 30px; position: relative;}
.menu-parent ul ul li a:hover { transition: all 0.4s ease;}
.menu-parent ul ul ul { background: rgba(0,0,0,.1); padding: 0;}
.menu-parent a:not(:only-child):after { position: absolute; right: 20px; content: "\f107"; top: 0px; font-size: 20px; font-family: FontAwesome;}
.menu-parent .active>a:not(:only-child):after { content: "\f106"; top: 0px; font-size: 20px; font-family: FontAwesome;}
/* .classSectionTable{
    position: relative;
    width: 100%;
} */
.tagsinput,.tagsinput *{box-sizing:border-box}
.tagsinput{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;background:#fff;font-family:sans-serif;font-size:14px;line-height:20px;color:#556270;padding:5px 5px 0;border:1px solid #e6e6e6;border-radius:2px}
.tagsinput.focus{border-color:#ccc}
.tagsinput .tag{position:relative;background:#01579b;display:block;max-width:100%;word-wrap:break-word;color:#fff;padding:3px 10px;border-radius:2px;margin:0 5px 5px 0}
.tagsinput .tag .tag-remove{position:absolute;background:0 0;display:none;width:30px;height:30px;top:0;right:0;cursor:pointer;text-decoration:none;text-align:center;color:#ff6b6b;line-height:30px;padding:0;border:0}
.tagsinput .tag .tag-remove:after,.tagsinput .tag .tag-remove:before{background:#ff6b6b;position:absolute;display:block;width:10px;height:2px;top:14px;left:10px;content:''}
.tagsinput .tag .tag-remove:before{-webkit-transform:rotateZ(45deg);transform:rotateZ(45deg)}
.tagsinput .tag .tag-remove:after{-webkit-transform:rotateZ(-45deg);transform:rotateZ(-45deg)}
.tagsinput div{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}
.tagsinput div input{background:0 0;display:block;width:100%;font-size:14px;line-height:20px;padding:5px;border:0;margin:0 5px 5px 0}
.tagsinput div input:focus{outline: none; box-shadow: none;}
.tagsinput div input.error{color:#ff6b6b}
.tagsinput div input::-ms-clear{display:none}
.tagsinput div input::-webkit-input-placeholder{color:#ccc;opacity:1}
.tagsinput div input:-moz-placeholder{color:#ccc;opacity:1}
.tagsinput div input::-moz-placeholder{color:#ccc;opacity:1}
.tagsinput div input:-ms-input-placeholder{color:#ccc;opacity:1}
.classSubSectionButton{
    position: relative;
    text-align: right;
}
.classSubSectionButton button{
    height: 44px;
    padding: 0 30px;
    border: none;
    background-color: #01579b;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
}
.classSubSectionButton button:hover{
    background-color: #039be5;
    transition: all 0.4s ease;
}
.classSubSectionButton button:focus{
    outline: none;
    box-shadow: none;
}

thead input {
	width: 100%;
	padding: 3px;
	box-sizing: border-box;
}
.MemberSection{
    position: relative;
    padding: 30px 0;
}
.MemberSection .MemberSection-studentList h2{
    color: #01579b;
    font-weight: bold;
}
.MemberSection .MemberSection-btn{
    text-align: center;
}
.MemberSection .MemberSection-btn button{
    border: none;
    background-color: #01579b;
    color: #fff;
    padding: 0 15px;
    height: 40px;
}
table tbody tr td img{
    height: 50px;
    width: 50px;
}
/*****************************
Dashboard responisve class
**********************************/
.rightSideOverlay{
    display: none;
}
body.leftSideToggle .outerWrapper .leftsideBar{
    display: none;
}
body.leftSideToggle .outerWrapper .rightSideSection{
    width: 100%;
}
@media(max-width: 991px){
    .outerWrapper .rightSideSection .dashbaordHeader #toggleButtons{
        display: block;
    }
}

@media(max-width: 767px){
    .outerWrapper .leftsideBar{
        position: fixed;
        left: 0;
        top: 0;
        z-index: 999;
        display: none;
    }
    .outerWrapper .rightSideSection{
        width: 100%;
    }
    body.leftSideToggle .rightSideOverlay{
        position: absolute;
        display: block;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0, 0.25);
        z-index: 9;
    }
    .rightSideOverlay{
        display: none;
    }
    body.leftSideToggle .outerWrapper .leftsideBar{
        display: block;
    }
}
@media(max-width: 767px){
    .outerWrapper .leftsideBar{
        width: 80%;
    }
}
.classSecSub{
    padding: 20px 0;
}
.classSecSub h2{
    color: #01579b;
    font-weight: bold;
    margin-bottom: 25px;
}
