.class-head {
    border: 0 none;
    font-size: 2em;
    font-weight: 400;
    color: #fff;
    margin: 0;
    padding: 10px 0 10px;
    line-height: 50px;
}
/* mask modal */
#mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: block;
    animation: fead 1.5s ease-in-out forwards;
    padding-top: 2rem;
    z-index: 20000;
    display: none;
}
#close-pop-up {
    color: #006977;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    right: 5%;
    top: 4%;
}

@keyframes fead {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
#SubjectTable{
    height:50%;
    margin:auto;
    padding: 25px !important;
    text-align: center !important;
}
#SubjectTable th{
    text-align: center !important;
}



/* #mainnav-menu>.active-sub>a,
#mainnav-menu>.active-sub>a:hover {
    background-color: rgba(241, 112, 156, .2);
    color: #25476A;
} */


#mainnav-menu li i {
    /* color: #0294d8; */
    font-weight: bold;
}



/* courses progress in dashboard */

.scrolling {
    display: flex;
    overflow-x: scroll;
    scrollbar-width: none;
    margin: 0 2rem;
    scroll-behavior: smooth;
    
}

 /* ::-webkit-scrollbar {
    display: none;
} */

/* .card {
    margin: 0 5rem;
    background-color: transparent;
    border-radius: 0.5rem;
    width: 21rem;
    height: 14rem;
    text-align: center;
    height: 17rem;
} */

.circular {
    height: 100px;
    width: 100px;
    position: relative;
    background-color: lightgray;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.circular .inner {
    position: absolute;
    z-index: 6;
    top: 50%;
    left: 50%;
    height: 80px;
    width: 80px;
    margin: -40px 0 0 -40px;
    background: white;
    border-radius: 100%;
}

.circular .number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 18px;
    font-weight: bold;
    color: #25476A;
}

.circular .bar {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-border-radius: 100%;
    clip: rect(0px, 100px, 100px, 49px);
}

.circle .bar .progress {
    position: absolute;
    height: 100%;
    width: 100%;
    -webkit-border-radius: 100%;
    background: #E9C46A;
}

.circle .left .progress {
    z-index: 1;
    margin: 0;
}


/* @keyframes left {
    100% {
        transform: rotate(180deg);
    }
} */

.circle .right {
    transform: rotate(180deg);
    z-index: 3;
}

.circle .right .progress {
    /* animation: right 4s linear both; */
    /* animation-delay: 4s; */
    margin: 0;
}


/* @keyframes right {
    100% {
        transform: rotate(180deg);
    }
} */


/* today tasks in dashboard */

section {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.today-Tasks-conatiner {
    height: 20rem;
    overflow: auto;
    scroll-behavior: smooth;
}

/* ::-webkit-scrollbar {
    display: none;
} */

.task {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    cursor: pointer;
    padding: .5rem 1.5rem;
    border-radius: 10px;
}

.task:hover {
    background-color: #ECF0F5;
}

.task p {
    font-size: 1.5rem;
}

.task-name {
    color: #25476A;
    font-weight: bold;
}

.task .fa-check-square {
    color: #8BC34A;
}

.task .fa-window-close {
    color: #F44336;
}

.task p {
    margin: 0 0 0 !important;
}

.task img {
    border-radius: 30%;
}

@media (max-width:1200px) {
    .calendar-conatiner {
        margin-top: 2.5rem;
    }
}
#login input{
    outline: none;
    background-color: #EDE7F6;
    padding: 2.5rem 5rem;
    border-radius: 10px;
    border: none;
}
#login input::placeholder{
    color: #546e88 !important;
    font-weight: bold;
    
}
.login-container{
    display: flex;height:100vh;padding:10vh 10rem;background-color:white
}
.login-form{
    width:30%;
    margin-right: 10%;
}
.login-img{
    width:60%;
    display:flex;justify-content:flex-end;align-items:center
}

@media (max-width:1200px) {
    .login-form{
        width:40%;
    }
    .login-img{
        width:60%;
    }
}
@media (max-width:800px) {
    .login-form{
        width:80%;
        margin:auto;
    }
    .login-img{
        display: none;
    }
}
@media (max-width:550px) {
    .login-container{
        padding: 1rem;
    }
    .login-form{
        width:100%;
        margin:auto;
    }
    
}


