@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');
:root{
    --sidebar-width: 240px;
    --sidebar-color: #fff;
    --sidebar-color-dark: #254336;
}
html, body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Nunito', sans-serif;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*body.admission {*/
/*background: #1A4F6E;*/
/*background: linear-gradient(45deg,rgba(26, 79, 110, 1) 0%, rgba(26, 79, 110, 1) 65%, rgba(245, 166, 35, 1) 65%, rgba(245, 166, 35, 1) 100%);*/
/*  font-family: 'Nunito', sans-serif;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*}*/
/*.admission-wrapper{*/
/*    width: min(1100px, 95%);*/
/*    height: 80vh;*/
/*    background: #262626;*/
/*    border-radius: 20px;*/
/*    overflow: hidden;*/
/*}*/
/*.admission-logo{*/
/*    width: 100px;*/
/*    height: auto;*/
/*}*/
/*.admission-banner{*/
/*    height: 100%;*/
/*    width: auto;*/
/*}*/
/*.admission-wrapper h4{*/
/*    font-weight: 600;*/
/*    font-size: 40px;*/
/*    color: #f5a623;*/
/*}*/
/*.admission-wrapper h4 span{*/
/*    font-weight: 800;*/
/*    font-size: 70px;*/
/*    color: #fff;*/
/*}*/
/*.admission-wrapper h5{*/
/*    font-weight: 600;*/
/*    font-size: 20px;*/
/*    color: #f2f2f2;*/
/*}*/
/*.login-box-card{*/
/*    width: 95%;*/
/*    max-width: 400px;*/
/*}*/
/*Sidebar*/
.side-panel{
    background: var(--sidebar-color);
    min-height: 100vh;
    width: var(--sidebar-width);
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: var(--bs-box-shadow);
    transition: width 0.3s ease;
}
.side-panel h4{
    color: #fff;
    height: 70px;
    background: var(--sidebar-color-dark);
    vertical-align: middle;
    line-height: 70px;
    padding-top: 28px;
}
.side-panel ul li a i{
    width: 25px;
    font-size: 15px;
}
.side-panel ul{
    margin-top: 30px;
}
.side-panel ul li a{
    padding: 16px;
    transition: 0.1s all ease-in;
    color: #000;
    font-weight: 600;
}
.side-panel.collapsed .menu-text {
    display: none;
}

.side-panel.collapsed .nav-link {
    display: flex;
    justify-content: center;
}
.side-panel ul li a.active, .side-panel ul li a:hover{
    background: #75A47F;
    border-right: 5px solid var(--sidebar-color-dark);
    color: #fff;
}
.top-header{
    height: 70px;
    background: var(--sidebar-color-dark);
    padding: 0 30px 0 0;
    margin: 0;
    position: fixed;
    top: 0;
    right: 0;
    left: var(--sidebar-width);
    z-index: 9;
}
.top-header h4{
    font-size: 16px;
    margin-top: 10px;
}
.main-content{
    width: calc(100% - var(--sidebar-width));
    background: #eff1f3;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}
.main-content:nth-child(2){
    margin-top: 70px;
}



@keyframes slide {
    from { transform: translateX(20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}



/*media query*/
@media all and (max-width: 540px){
    .admission-wrapper h4 span{
        font-size: 45px;
    }
}