@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary-color:#b7000b;
    --secondry-color:#e5e5e5;
}

*,p{
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    scroll-behavior: smooth;
    font-size: 1.6rem;
}

html{
    font-size: 62.5%;
}

body{
    max-width: 1920px;
    margin: auto;
    color: #000;
    font-family: 'Rubik', sans-serif;
    background-color: #e9ebf4;
}
.container{
    max-width: 1160px;
}

.fwThin{
    font-weight: 300;
}
.fwRegular{
    font-weight: 400;
}
.fwMedium{
      font-weight: 500;
}
.fwSemiBold{
    font-weight: 600;
}
.fwBold{
    font-weight: 600;
}
.fwExBold{
    font-weight: 800;
}


a,span, button ,input,p,.btn{
    font-size: 1.6rem;
    color: #000;
    text-decoration: none !important;
}

h1{
    font-size: 3.6rem;
}
h2{
    font-size: 3rem;
}
h3{
    font-size: 2.8rem;
}
h4{
    font-size: 2.4rem;
}
h5{
    font-size: 2rem;
}
h6{
    font-size: 1.6rem;
}

.fz10{font-size: 1.0rem;}.fz12{font-size: 1.2rem;}.fz14{font-size: 1.4rem;}.fz16{font-size: 1.6rem;}.fz18{font-size: 1.8rem;}.fz20{font-size: 2.0rem;}.fz22{font-size: 2.2rem;}.fz24{font-size: 2.4rem;}.fz26{font-size: 2.6rem;}.fz28{font-size: 2.8rem;}.fz30{font-size: 3.0rem;}.fz32{font-size: 3.2rem;}.fz34{font-size: 3.4rem;}.fz36{font-size: 3.6rem;}.fz38{font-size: 3.8rem;}.fz40{font-size: 4.0rem;}.fz42{font-size: 4.2rem;}.fz44{font-size: 4.4rem;}.fz46{font-size: 4.6rem;}.fz48{font-size: 4.8rem;}.fz50{font-size: 5.0rem;}

.highlight , .primary-color{
    color: var(--primary-color);
}
.primary-bg{
    background-color: var(--primary-color);
}

button{
    background-color: transparent;
    border:0;
}

.green-color{
    color: #5ec045;
}
.red-color{
    color: #b7000b;
}
.blue-color{
    color: #2e5bff;
}
.form-control{
    height: 40px ;
    font-size: 1.5rem ;
    font-weight: 600 ;
    border-color: #c7c5c5 ;
    -webkit-box-shadow: inset 0 0 11px -8px #3e3838;
            box-shadow: inset 0 0 11px -8px #3e3838;
    color: #000;
    opacity: .8;
}
::-webkit-input-placeholder { /* Edge */
    color: #000 !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: #000 !important;
}

::-moz-placeholder {
color: #000 !important;
}

::-ms-input-placeholder {
color: #000 !important;
}

::placeholder {
color: #000 !important;
}

.custom-checkbox input[type="checkbox"]{
    display:none;
}

.custom-checkbox input[type="checkbox"] + label{
    width: 20px;
    height: 20px;
    display: inline-block;
    border: 2px solid #fff;
    position: relative;
    cursor: pointer;
    padding: 1px;
    margin-bottom: 0;
    vertical-align: bottom;

}
.custom-checkbox input[type="checkbox"] + label:before{
    content: '';
    width: 5px;
    height: 2px;
    display: block;
    background: #fff;
    margin-top: 8px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    margin-left: 2px;
    opacity: 0;
}
.custom-checkbox input[type="checkbox"] + label:after{
    content: '';
    width: 9px;
    height: 2px;
    display: block;
    background: #fff;
    margin-top: -3px;
    -webkit-transform: rotate(-48deg);
        -ms-transform: rotate(-48deg);
            transform: rotate(-48deg);
    margin-left: 4px;
    opacity: 0;
}

.custom-checkbox input[type="checkbox"]:checked + label:before , .custom-checkbox input[type="checkbox"]:checked + label:after {
    opacity: 1;
}
.custom-checkbox + span{
    vertical-align: top;
}
.dark-checkbox input[type="checkbox"] + label{
    border-color: #000;
}
.dark-checkbox input[type="checkbox"] + label:before , .dark-checkbox input[type="checkbox"] + label:after{
    background: #000;
}
    
.custom-btn-gray{
    border: 1px solid #d3d4d7;
    border-radius: 4px;
    padding: 5px 20px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    background-color: #f6f7fb;
    outline: none;
}
.custom-btn-green{
    border: 1px solid #5ec045;
    border-radius: 4px;
    color: #fff;
    padding: 5px 20px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    background-color: #5ec045;
    outline: none;
}

.custom-btn-yellow{
    border: 1px solid #e4de16;
    border-radius: 4px;
    color: #fff;
    padding: 5px 20px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    background-color: #c3bb52;
    outline: none;
}

.custom-btn-red{
    border: 1px solid #b7000b;
    border-radius: 4px;
    color: #fff;
    padding: 5px 20px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    background-color: #b7000b;
    outline: none;
}
.custom-btn-gray:hover,.custom-btn-green:hover,.custom-btn-red:hover{
    opacity: .7;
}

/* icons */
.icon {
    background: url(../images/icons-pack.png) no-repeat;
    display: inline-block;
    vertical-align: middle;
}
.icon-email{
    width: 30px;
    height: 18px;
}
.icon-lock{
    width: 30px;
    height: 27px;
    background-position: 0 -24px;
}
.icon-notification{
    width: 32px;
    height: 36px;
    background-position: 0 -55px;
}
.icon-inbox{
    width: 32px;
    height: 25px;
    background-position: 0 -94px;
}

.main-icons {
    background: url(../images/main-icons.png) no-repeat;
    display: inline-block;
    vertical-align: middle;
}
.main-user-icon{
    width: 43px;
    height: 60px;
}

/* login page */

.login-wrapper{
    background:url('../images/login-bg.jpg') no-repeat top right;
    height: 100vh;
    position: relative;
    background-size: cover;
}
.login-logo{
    position: absolute;
    top: 55px;
    left: 50px;
    z-index: 1;

}
.login-form{
    background: var(--primary-color);
    position: absolute;
    right: 0;
    width: 555px;
    padding: 0 70px;
    height: 100%;
}

.form-fields h1{
    font-size: 3.8rem;
    font-weight: 700;
    color: #fff;
}
.form-fields p{
    font-size: 2.3rem;
    font-weight: 400;
    color: #fff;
}
.form-fields h2{
    font-size: 2.5rem;
    color: #fff;
    
}


.form-fields input{
    height: 55px;
    border: 1px solid #fff;
    display: block;
    width: 100%;
    background: transparent;
    padding-left: 70px;
    color: #fff;
    outline: none;
}

.login-form .icon-email{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 20px;
}

.login-form .icon-lock{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 20px;
}

.login-form  ::-webkit-input-placeholder { /* Edge */
    color: #fff !important;
}

.login-form  :-ms-input-placeholder { /* Internet Explorer 10-11 */
color: #fff !important;
}

.login-form  ::-moz-placeholder {
color: #fff !important;
}

.login-form  ::-ms-input-placeholder {
color: #fff !important;
}

.login-form  ::placeholder {
color: #fff !important;
}

.login-form  .login-btn{
    height: 55px;
    width: 100%;
    border: 0;
    font-size: 3rem;
    color: var(--primary-color);
}

.login-form  .login-btn:hover , .login-form  a:hover{
    opacity: .9;
}

/* Dashboard */

header{
    height: 100px;
    padding: 0 15px;
    -webkit-box-shadow: 0 0 12px -5px #000;
     box-shadow: 0 0 12px -5px #000;
    background-color: #fff;
    position: -webkit-sticky;
    position: sticky;
    top:0;
    width: 100%;
    z-index: 3;
}



.header-profile , .header-notification, .header-inbox{
    cursor: pointer;
    position: relative;
    margin-right: 21px;
}
.header-notification.active:after, .header-inbox.active:after{
    content: '';
    width: 10px;
    height: 10px;
    background-color: #2196F3;
    display: inline-block;
    border-radius: 50%;
    right: -3px;
    top: -2px;
    position: absolute;
}
.header-notification.active:after{
    right: 3px;
    top: 3px;
}
.header-profile h4 span{
    font-size: 1.6rem;
    font-weight: 400;
    color: #000000b3;
}

.header-profile .dropdown-item{
    font-size: 14px;
}

.header-profile h4 .p-image{
    width: 35px;
    height: 35px;
    font-size: 1.6rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 50%;
    background-color: #000;
    color: #ffffff;    
    -webkit-box-pack: center;    
        -ms-flex-pack: center;    
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}


.dropdown-menu-custom{
    position: absolute;
    background: #fff;
    top:35px;
    width: 100%;
    box-shadow: 0 0 8px -3px #636363;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease;
    right: 0;
    min-width: 170px;
}
.header-profile:hover .dropdown-menu-custom{
    visibility: visible;
    opacity: 1;
    top: 25px;
}

.dropdown-menu-custom-msg  {
    min-width: 320px;}

 .dropdown-menu-custom-bell {
    min-width:200px;
}

@media(max-width:1200px){
    .dropdown-menu-custom-msg  {      
        right: -60px;
    }
  
}





.select2-container .select2-selection--multiple{
    min-height: 40px;
    font-size: 1.5rem;
    font-weight: 600;
    border-color: #c7c5c5;
    -webkit-box-shadow: inset 0 0 11px -8px #3e3838;
    box-shadow: inset 0 0 11px -8px #3e3838;
    color: #000;
    opacity: .8;
}
.select2-container--default.select2-container--focus .select2-selection--multiple{
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}
.select2:after {
    content: "\f107";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'FontAwesome';
    font-weight: 900;
}





/* aside */
.sidebar-icon{
    /* background: url(../images/sidebar-icons.png) no-repeat; */
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.icon-dashboard{
    width: 35px;
    height: 25px;
    background-position: -566px top;
}
.icon-Student{
    width: 37px;
    height: 37px;
    background-position: -525px 0px;
}
.icon-techers{
    width: 37px;
    height: 37px;
    background-position: -485px 0px;
}
.icon-examiner{
    width: 37px;
    height: 26px;
    background-position: -440px 0px;
}
.icon-Program{
    width: 37px;
    height: 25px;
    background-position: -397px 0px;
}
.icon-courses{
    width: 37px;
    height: 34px;
    background-position: -356px 0px;
}
.icon-fees{
    width: 37px;
    height: 29px;
    background-position: -315px 0px;
}
.icon-management{
    width: 37px;
    height: 33px;
    background-position: -271px 0px;
}
.icon-timetable{
    width: 37px;
    height: 33px;
    background-position: -226px 0px;
}
.icon-assignment{
    width: 37px;
    height: 33px;
    background-position: -185px 0px;
}
.icon-result{
    width: 37px;
    height: 38px;
    background-position: -144px 0px;
}
.icon-attendance{
    width: 37px;
    height: 33px;
    background-position: -104px 0px;
}
.icon-hostel{
    width: 37px;
    height: 24px;
    background-position: -70px 0px;
}
.icon-reports{
    width: 37px;
    height: 34px;
    background-position: -38px 0px;
}
.icon-setup{
    width: 37px;
    height: 29px;
    background-position: -5px 0px;
}
/* .sidebar-icon.active , aside ul li:hover .sidebar-icon , aside ul li.active .sidebar-icon{
    background-position-y:bottom ;
} */

aside{
    position: fixed;
    overflow: auto;
    background-color: #fff;
    max-width: 250px;
    width: 100%;
    top: 100px;
    bottom: 50px;
    border-right: 1px solid #eee;
}

aside::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

aside::-webkit-scrollbar{
	width: 6px;
	background-color: #F5F5F5;
}

aside::-webkit-scrollbar-thumb{
	background-color: #b82925;
}

aside.close-aside{
    width: 75px;
}
aside.close-aside li  span{
    display: none
}
.toggle-bar {
    width: 35px;
    height: 28px;
    position: relative;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;   
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 25px;
}
.toggle-bar span {
    display: block !important;
    height: 3px;
    width: 30px;
    background: #565755;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
        transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.toggle-bar span:nth-child(2) {
   margin-top: 5px;
   margin-bottom: 5px;
}
.toggle-bar span:nth-child(3) {
    width: 20px;
}
.toggle-bar:hover span:nth-child(3){
    width: 30px;
}
 

/* Navigation */
aside ul li{
    cursor: pointer;
  
    overflow: hidden;
}
aside ul li .icon{
    margin-right: 15px;
}

aside > ul  li.active {
    background-color: #b7000b;
    border-top: 1px solid #bd3633;
}  
aside ul li{
    border-top: 1px solid #eee;
    display: block;
    position: relative;
}

aside > ul  li.active > a > span{
    background-color: #b7000b;
    color: #fff;
}

aside ul li a {
    font-size: 1.5rem;
    padding: 8px;    
    font-weight: 400;
    display: block;
    color: #000;
}
aside > ul  > li > a > span{
    font-size: 1.5rem;
}

aside > ul > li   ul{
    background-color: #e9ebf4;
    display: none;
}

aside ul li  ul li a{
    padding: 10px;
    color: #000;
}
aside ul li ul ul{
    background: #fff;
}

aside ul li  ul li  i{
    margin-right: 10px;
}
aside ul  ul ul li a{
    color: #000;
    padding-left: 25px;
}
aside ul  ul ul li a{
    background: #fff !important;
    color: #000 !important;
} 
aside ul  ul ul li a:hover{
    color: var(--primary-color) !important;    
} 

aside ul  ul li:hover > a , aside ul  ul li.active > a{
    background:#111;
    color: #fff;
}
aside ul  li.active > a  i{
    color: #fff;
}

aside ul  ul li li.active > a  i , 
aside ul  ul li li.active > a {   
    color:#b7000b !important;
}
aside ul  li.active > a  i.fa{
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
aside ul  li.active > ul{
    display: block;
}
.sub-menu{
    position: absolute;
    right: 15px;
    top: 18px;
    margin: auto;
}

aside ul li:hover > a span{
    color: #ffff;
}
aside > ul > li:hover > a{
    background: var(--primary-color);
    color: #fff;
}



/* Toggle sidebar css */

aside.active{
    width: 56px;
    overflow: visible;
    z-index: 5;
}
aside.active li  span{
    position: absolute;
    background: #565755 !important;
    left: 120%;
    white-space: nowrap;
    padding: 7px;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
    top: 0;
    bottom: 0;
    height: 31px;
    margin: auto;
    font-weight: 500;
    opacity: 0;  
    visibility: hidden;
}

aside.active li  span::before{
    content: '';
    border-width: 15px;
    border-style: solid;
    border-color: transparent #565755 transparent transparent;
    position: absolute;
    left: -22px;
    top: 0;
    bottom: 0;
    z-index: -1;
}

aside.active > ul > li:hover span{
    opacity: 1;
    visibility: visible;
}

aside.active .sub-child-menu{
    border-right: 2px solid #b7000b;
}

aside.active ul li {
    position: relative;
    overflow: visible;
}
aside.active ul li ul {
    display: none !important;
    /* position: absolute;
    left:100%;
    top: 20px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    background: white;
    z-index: 5;
    box-shadow: 0 0 7px -5px black; */
}
aside.active ul li ul li a{
    white-space: nowrap;
}
aside.active ul > li:hover > ul{
    visibility: visible;
    opacity: 1;
    top: 0;
}
   
aside.active ul  ul ul{
    left: 100%;
}
aside.active ul  ul .sub-menu{
    top: 14px;
}
aside.active  ul   li a i.fa{
    display: none;
}



.toggle-sidebar-btn {
    width: 35px;
    height: 28px;
    position: relative;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
        transform: rotate(0);
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin: 10px;
    z-index: 5;  
}
.toggle-sidebar-btn span {
    display: block;
    position: absolute;
    height: 3px;
    width: 34px;
    background: #575756;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
        transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}
.toggle-sidebar-btn span:nth-child(1) {
    top: 0
}
.toggle-sidebar-btn span:nth-child(2) {
    top: 12px
}
.toggle-sidebar-btn span:nth-child(3) {
    top: 24px;
    width: 20px;
}
.toggle-sidebar-btn.open span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
        transform: rotate(135deg);
    background: #575756
}
.toggle-sidebar-btn.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
    background: #575756
}
.toggle-sidebar-btn.open span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
        transform: rotate(-135deg);
    background: #575756;
    width: 33px;
}

/* end Toggle sidebar css */
/* Navigation end*/
main{
    width: calc(100% - 250px );
    padding: 30px;
    padding-bottom: 85px;
    margin-left: auto;
    /* margin-bottom: 100px; */
    overflow: auto;
    height: 100%;
}
main.active{
    width: calc(100% - 75px );
}

/* table */

table tr th , table tr td{
    font-size: 14px;
    font-weight: 400;
}

.action-icons{
    background: url(../images/main-icons.png) no-repeat;
    display: inline-block;
}
.view-icon{
    width: 25px;
    height: 17px;
    background-position-x: -476px;
}
.edit-icon{
    width: 20px;
    height: 17px;
    background-position-x: -455px;
}
.remove-icon{
    width: 15px;
    height: 17px;
    background-position-x: -440px;
}
.action-icons:hover{
    background-position-y:bottom ;
}

.dataTables_wrapper .dataTables_paginate span .paginate_button{
    width: 30px;
    height: 30px;
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: no-repeat;
    font-size: 14px;
    border-radius: 4px;
    color: #9ba9b6 !important;
    border-color: #9ba9b6 !important;
    margin:0 5px;
}
.dataTables_wrapper .dataTables_paginate  span .paginate_button.current , .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
    background: #b7000b !important;
    color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous{
    height: 30px;
    width: 30px;
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: no-repeat;
    font-size: 14px;
    border-radius: 4px;
    color: #9ba9b6 ;
    border-color: #9ba9b6 !important;
    font-size: 0;
    vertical-align: middle;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.previous:before{
    content: '\f104';
    font-family: fontAwesome;
    font-size: 20px;
  
}
.dataTables_wrapper .dataTables_paginate .paginate_button.next:before{
    content:'\f105' ;
    font-family: fontAwesome;
    font-size: 20px;
   
}

.dataTables_wrapper .dataTables_paginate .paginate_button.next{
    height: 30px;
    width: 30px;
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: no-repeat;
    font-size: 14px;
    border-radius: 4px;
    color: #9ba9b6 !important;
    border-color: #9ba9b6 !important;
    font-size: 0;
    vertical-align: middle;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
    background: #5fbf45 !important;
    color: #fff !important;
}
.dataTables_wrapper .dataTables_paginate{
    padding-top: 0.755em;
}
.fc-icon{
    color: #fff;
}
.datepicker{
    background: url(../images/calender-icon.png) no-repeat;
    background-position: right 10px center;  
}
.ui-datepicker{
    min-width: 250px;
}
footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 1px;
    z-index: 2;
    background: #fff;
    -webkit-box-shadow: 0 0 12px -5px #000;
            box-shadow: 0 0 12px -5px #000;
}

/* in-main-profile  */

.in-main-profile{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    padding: 1px;
    border: 1px solid #fff;
}
.in-main-profile img{
    border-radius: 50%;
}

.student-form label{
    font-size: 1.4rem;
}

header .dropdown-menu {
	position: absolute;
	top: 100%;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 10rem;
	padding: .5rem 0;
	font-size: .875rem;
	text-align: left;
	list-style: none;
	background-clip: padding-box;
	border: 1px solid;
	border-radius: .25rem;
	color: #3c4b64;
	background-color: #fff;
	border-color: #d8dbe0
}

.c-legacy-theme .bg-light {
	background-color: #f0f3f5!important
}
.c-legacy-theme .dropdown-header {
	color: #73818f
}
.c-header-nav .dropdown-item {
	min-width: 180px
}
.c-legacy-theme .dropdown-item {
	color: #23282c
}
.c-legacy-theme .dropdown-item:hover,
.c-legacy-theme .dropdown-item:focus {
	color: #181b1e;
	background-color: #f0f3f5
}


.c-avatar {
    position: relative;
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    border-radius: 50em;
    width: 36px;
    height: 36px;
    font-size: 14.4px;
}
.c-avatar-img {
    width: 100%;
    height: auto;
    border-radius: 50em;
}

/* dashboard */
.dashboard-items-wrap .item{
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    outline: none;
    min-height: 122px;
}
.dashboard-items-wrap .item h4{
    font-weight: 400;
}
.dashboard-items-wrap .item:hover{
    background-color: var(--primary-color)
}
.dashboard-items-wrap a:hover{
    color:#fff;
}
.dashboard-items-wrap .item:hover .dashboard-icons{
    background-position-y:bottom;
}
.dashboard-icons{
    background:url(../images/dashboard-icons.png) no-repeat;
    vertical-align: middle;
    display: block;
    margin-bottom: 10px;
}
.d-faculty-icons{
    width: 61px;
    height: 63px;
    background-position-x: -98px;
}
.d-examiner-icons{
    width: 56px;
    height: 63px;
    background-position-x: -161px;
}
.d-program-icons{
    width: 75px;
    height: 63px;
    background-position-x: -278px;
}
.d-course-icons{
    width: 51px;
    height: 63px;
    background-position-x: -221px;
}
.d-fee-icons{
    width: 66px;
    height: 63px;
    background-position-x: -358px;
}
.d-fee-icons{
    width: 66px;
    height: 63px;
    background-position-x: -358px;
}
.d-management-icons{
    width: 75px;
    height: 63px;
    background-position-x: -430px;
}
.d-assignment-icons{
    width: 67px;
    height: 63px;
    background-position-x: -514px;
}
.d-attendance-icons{
    width: 67px;
    height: 63px;
    background-position-x: -588px;
}
.d-hostel-icons{
    width: 63px;
    height: 63px;
    background-position-x: -659px;
}
.d-reports-icons{
    width: 50px;
    height: 63px;
    background-position-x: -725px;
}
.d-setup-icons{
    width: 62px;
    height: 63px;
    background-position-x: -782px;
}


.print-form-wrapper{
    max-width: 800px;
    margin: auto;
    background: white;
 
}
.print-form-wrapper .inner-header h2{
    font-size: 20px;
    font-weight: 600;
    margin-top: 5px;
}
.print-form-wrapper .inner-header h3{    font-size: 18px;}
.print-form-wrapper .inner-header h4{    font-size: 18px; display: inline-block; text-decoration: underline; margin-bottom: 0;}
.print-form-wrapper .inner-header p{    font-size: 12px;}
.print-form-wrapper .border-0{
    font-size: 14px;
}
.print-form-wrapper .border-0:focus{
    outline: none
}


.nav-tabs li{
    margin-right: 10px;
}
.nav-tabs .nav-link{
    background-color: grey;
    color: #fff;
    border: 0;    
    padding-left: 25px;
}
.nav-tabs .nav-link.active{
    background: #b82925;
    color: #fff;
}
.arrow-tab-styling{
    margin-bottom: 0;
    border: 0;
}
.arrow-tab-styling .nav-item {
    margin-bottom: 10px;
}
.arrow-tab-styling li a{
    position: relative;     
    border-radius: 0 !important;
}
.arrow-tab-styling li a:before{
    content: '';
    width: 30px;
    display: inline-block;
    position: absolute;
    border-width: 18px;
    border-style: solid;
    border-color: transparent transparent transparent #e9ebf4;
    left: 0px;
    top: 0;
}
.arrow-tab-styling li:first-child a{
    padding-left: 10px;
}
.arrow-tab-styling li:first-child a::before{
    content: none;
}
.arrow-tab-styling li a:after{
    content: '';
    width: 30px;
    display: inline-block;
    position: absolute;
    border-width: 17px;
    border-style: solid;
    border-color: transparent transparent transparent grey;
    right: -34px;
    top: 0px;
    z-index: 1;
}
.arrow-tab-styling li a.active:after{
    border-color: transparent transparent transparent #b82925;
}
.arrow-tab-styling li.addGreen a{
    background: #28a745;
}
.arrow-tab-styling li.addGreen a:after{
    border-color: transparent transparent transparent #28a745;
}
.arrow-tab-styling li.addGreen a.active:after{
    border-color: transparent transparent transparent #b82925;
}
.form-group label span,.fieldmandatory {
    color: red;
}
.mandatory{
    text-align: right;
    margin: 10px 0;
    color: red;
}

.data-table thead tr input , .data-table thead tr select{
    width: 100%;
}

.data-table thead tr select{
    height: 25px;
}

table.dataTable thead th, table.dataTable thead td {
    padding: 10px;
}
.checkavail 
{
    color:red;
}

img.img2 {
    width: 150px;
    height: auto;
    max-height: 150px;
    border: 5px #CCC groove;
    padding: 5px !important;
    margin-top: 5px;
}

img.img3 {
    width: 100px;
    height: auto;
    max-height: 100px;
    border: 2px #CCC groove;
    padding: 2px !important;
    margin-top: 2px;
}
.error {
    color: red;
}
.notemsg {
    color: red;
    font-size:11px;
}
.errormsg
{
    color: red;
    font-size:12px;
}
.studentpaymentrow 
{
    font-size:20px;
}
.hidden {
    display: none !important;
}
.year-tabs > li {
    padding-left: 25px;
    padding-right: 25px;
}
.year-tabs {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px !important;
}
.year-tabs.nav-pills .nav-link.active, .year-tabs.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #b82925;
    border-radius: 0;
}
.year-tabs .nav-link {
    font-size: 19px;
}
.nav-link {
    display: block;
    padding: .5rem 1rem;
}
.nestedtab .nav-item > .active {
    color: #bc121e;
    background: transparent;
    border-bottom: 2px solid #bc121e;
}
.nestedtab .nav-item > a {
    font-size: 19px;
    font-weight: 600;
    color: #333;
    padding: 0 12px;
    border-radius: 0;
    border-bottom: 2px solid #ccc;
}
.nav-pills .nav-link {
    border-radius: .25rem;
}
.nav-link {
    display: block;
    padding: .5rem 1rem;
}
.nav {
    list-style: none;
}
.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nestedtab > .nav > li {
    padding: 10px 15px;
}
.uplod_box {
    background: #e5ffe5;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #9fed9f;
    margin-bottom:10px;
}
.uplod_box a {
    color: #2378e1;
}


/* ssb 11-7-21 */

.checkavail{
    text-align:left !important;
}

#username_availability_result{
    margin-left:0 !important;
}

#username_availability_result *{
    font-size: 14px;
    font-weight:400;
    color:#fff;
}

#username_availability_result .is_not_available {
    color: red;
}
/* ssb 7-7-21 */

.nestedtab > .nav > li{
	padding:10px 15px;
}
.nestedtab .nav-item > a{
	font-size:19px;
	font-weight:600;
	color:#333;
	padding:0 12px;
	border-radius:0;
	border-bottom:2px solid #ccc;
}
.nestedtab .nav-item > .active{
	color:#bc121e;
	background:transparent;
	border-bottom:2px solid #bc121e;
}

.uplod_box{
	background:#e5ffe5;
	padding:15px;
	border-radius:4px;
	border:1px solid #9fed9f;
}
.uplod_box a{
	color:#2378e1;
}

textarea.remark{
	width:100%;
	height:90px;
	padding:15px;
	color:#666;
}

.guide-remarks{
	background:#f3e51e;
	padding:15px;
	border-radius:4px;
	border:1px solid #d5c813;
}
.fellow-remarks{
	background:#aff3b1;
	padding:15px;
	border-radius:4px;
	border:1px solid #8cdf8e;
}
.remarks_c .remarks .tx02{
	font-weight:700;
}
.dashboard-items-wrap .item2{
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    outline: none;
    min-height: 122px;
	height: 100%;
}
.item2 a{
	font-size:15px;
    border-radius: 3px;
    padding: 5px 17px;
	display:block;
	width:auto;
	text-align:center;
	min-width: 130px;
}

.dashpopup .close {
    position: absolute;
    z-index: 10;
    top:6px;
    right: 9px;
    
}

.dashpopup .close span{
	font-size:20px;
}

.dashpopup .modal-dialog {
    max-width: 805px;
}

.dashpopup .mxh{
	max-height:500px;
	overflow-x:hidden;
	overflow-y:auto;
}


.item2 .det-blk{
	font-size:22px;
	display:inline-block;
	width:40%;
	margin-right:10px;
}
.item2 .det-blk b{
	font-size:20px;
}

/* ssb 8-7-21 */

.news_blk{
	overflow:hidden;
}
.news_blk > div{
	float:left;
}

.news_blk .hed{
	font-weight:700;
	width:130px;
}

.news_blk .marquee{
	width:calc(100% - 130px);
	overflow:hidden;
}
.news_blk .marquee a{
	font-size:14px;
	padding-left:6px;
	padding-right:6px;
	font-weight:400;
	color:#2C3E50;
}
.news_blk .marquee a:hover{
	text-decoration:underline !important;
}
input.underline_style {
    border: 0px;
    border-bottom: 1px solid;
    outline: none;
}

/* ssb 11-8-21 */
.data-table thead tr input[type=radio]{
    width:auto;
}
body .select2-container .select2-selection--single{ /* overwrite */
    height:auto;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow b{/* overwrite */
    border-color:transparent;
}

/* ssb 12-8-21 */

header .header-navigation .topmenu ul li a{
    white-space: normal;
    line-height: 1.2;
}

.topmenu > li.active,.topmenu > li.active > a { /* Moved from header file */
    background-color: #b7000b;
    border-top: 1px solid #bd3633;
    color: #fff!important;
}

body .header-navigation > ul > li > a { /* Moved from header file */
    padding: 8px 8px;
}
.label { /* Moved from header file */
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: .25em;
}

.label-default { /* Moved from header file */
    background-color: #777;
    border-radius: 100%;
    margin-right: 2px;
    font-size: 60%;
}

.label-danger { /* Moved from header file */
    background-color: #d9534f;
    border-radius: 100%;
    margin-right: 2px;
    font-size: 60%;
}

.label-success { /* Moved from header file */
    background-color: #5cb85c;
    border-radius: 100%;
    margin-right: 2px;
    font-size: 60%;
}

.form-group {
    word-break: break-all;
}

.view_pg img.preview_thumbnail {
    border: 1px solid #CCC;
}

.view_pg .student-form h4,
.view_pg .view-template h4 {
    font-size:17px;
    border-bottom:0;
    background: #f0f0f0;
    padding:12px;
    margin-top:30px;
    margin-bottom:12px;
}

.stdnt_fee th{
    font-size:17px;
    background:#B82925;
    color:#fff;
}
@media (min-width:768px){
   
}
#researchlevelstatusModal {
    width:100%;
}
#researchlevelstatusModal thead th{
        background-color: #cf535c;
        color: white;
        font-weight: 500;
    }
#researchlevelstatusModal thead th,#researchlevelstatusModal tbody td {
        text-align:center!important;
    }
    
.bg-light-approved {
    background-color: #d6f0d2  !important;
}

.statusapproved
{
    color:green;
    margin-left: 5px;
}
.statuspending
{
    color:red;
    margin-left: 5px;
}
.statuslabel
{
    font-size: 16px;
}