* {
    margin: 0;
    padding: 0;
}

body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(194, 194, 194);
    border-radius: 5px;
}

/* -------------------------- Drop down menu style start -------------------  */
.dropdown-menu i {
    margin-right: 5px;
}

.dropdown-menu .fa-edit {
    color: #4d94ff;
}

.dropdown-menu .fa-eye {
    color: #4d94ff;
}

.dropdown-menu .fa-book-medical {
    color: #4d94ff;
}

.dropdown-menu .fa-download {
    color: #4d94ff;
}

.dropdown-menu .fa-user {
    color: #4d94ff;
}

.dropdown-menu .fa-trash-alt {
    color: #ff3333;
}

.dropdown-menu .fa-user-plus {
    color: #4d94ff;
}

/* -------------------------- Drop down menu style End-------------------  */

/* ---------------------------- Password Eye start-----------------------------  */
.pass-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(-10px, -50%);
}



/* ---------------------------- Password Eye end-----------------------------  */


/* ----------------------------- Profile image viewer start---------------- */

#image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;

    background-color: rgba(0, 0, 0, 0.329);
}

.image-modal-content {
    margin: auto;
    display: block;
    max-width: 700px;
    max-height: 100vh;
    animation-name: zoom;
    animation-duration: 0.6s;
}

.image-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

/* The Modal (background) */
#profile-image-viewer {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;

    background-color: rgba(0, 0, 0, 0.329);
}

.profile-modal-content {
    margin: auto;
    display: block;
    max-width: 700px;
    max-height: 100vh;
}

.profile-modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

#profile-image-viewer .profile-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

#profile-image-viewer .profile-close:hover,
#profile-image-viewer .profile-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.pagination-btn {
    display: flex;
    justify-content: right;
    align-items: center;

}

.pagination-btn .pagi-btn {
    border: none;
    background-color: #4e72dfd3;
    color: #FFFFFF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
}










@media only screen and (max-width: 700px) {
    .profile-modal-content {
        max-width: 350px;
    }
}


/* ----------------------------- Profile image viewer end---------------- */





/* ---------------------------------- Academic Calendar End---------------- */
/* ----------------------------------- For All ----------------------- */
.internet-status {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100000;
    background-color: rgba(0, 0, 0, 0.76);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 0 10px;

}

.int-status-content {
    max-width: 500px;
    width: 100%;
    transition: .4s;
    animation: zoom .4s linear;
}

@keyframes zoom {
    0% {
        opacity: 0;
        transform: scale(0, 0);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}



.pro-card {
    position: relative;
}

.pro-card div {
    transition: .5s;

}

.pro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    transition: .5s;
}

.pro-card-warning::before {
    background-color: #f6c23e
}

.pro-card-primary::before {
    background-color: #4e73df
}

.pro-card-success::before {
    background-color: #1cc88a
}

.pro-card-info::before {
    background-color: #36b9cc
}


.pro-card:hover::before {
    width: 100%;
}

.pro-card:hover div {
    color: #FFFFFF !important;
}


.pro-add-card {
    height: 300px;

}

.pro-add-card-body-primary {
    overflow-y: auto;
}

.pro-add-card-body-primary::-webkit-scrollbar {
    width: 5px;
}

.pro-add-card-body-primary::-webkit-scrollbar-thumb {
    width: 5px;
    background-color: #4e73df;
}

.pro-add-card-body-success {
    overflow-y: auto;
}

.pro-add-card-body-success::-webkit-scrollbar {
    width: 5px;
}

.pro-add-card-body-success::-webkit-scrollbar-thumb {
    width: 5px;
    background-color: #1cc88a;
}

.pro-add-card-body-info {
    overflow-y: auto;
}

.pro-add-card-body-info::-webkit-scrollbar {
    width: 5px;
}

.pro-add-card-body-info::-webkit-scrollbar-thumb {
    width: 5px;
    background-color: #36b9cc;
}

.pro-add-card-body-warning {
    overflow-y: auto;
}

.pro-add-card-body-warning::-webkit-scrollbar {
    width: 5px;
}

.pro-add-card-body-warning::-webkit-scrollbar-thumb {
    width: 5px;
    background-color: #f6c23e;
}




.pro-table tr td {
    font-size: 13px;
}

.pro-table tr td:nth-child(2) {
    text-align: center;
}

.pro-table tr td a {
    transition: .4s;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    padding: 8px 15px;
    border-radius: 50px;

}

.pro-table-primary tr td a {
    color: #4e73df;
}

.pro-table-primary tr td a:hover {
    background-color: #4e73df;
    color: #FFFFFF !important;
}

.pro-table-success tr td a {
    color: #1cc88a;
}

.pro-table-success tr td a:hover {
    background-color: #1cc88a;
    color: #FFFFFF !important;
}

.pro-table-warning tr td a {
    color: #f6c23e;
}

.pro-table-warning tr td a:hover {
    background-color: #f6c23e;
    color: #FFFFFF !important;
}

.pro-table-info tr td a {
    color: #36b9cc;
}

.pro-table-info tr td a:hover {
    background-color: #36b9cc;
    color: #FFFFFF !important;
}

.img-priview {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.img-priview img {
    margin: 10px;
}


.textarea {
    resize: none;
}

.label-color {
    color: #008080;
}

.bg-color {
    background-color: #008080;
}

.table-pro-pic {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #eee;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.150);
}

.stu-profile-table {
    font-size: 15px;
}

.stu-profile-table tr:nth-child(1) th {
    padding: 0;
}


.tab-table-data tr td:nth-child(odd) {
    color: #008080;
    font-weight: 600;

}

.back-btn {
    color: #36b9cc;
    transition: .4s;
}

.back-btn:hover {
    color: #f6c23e;
}



.multiple-select-box {
    position: relative;
}
 .mul-sele-options input{
    margin-right: 5px;
 }
.multiple-select-box label {
    width: 100%;
    cursor: pointer;
}

.mul-sele-options {
    padding: 10px 20px;
    height: 200px;
    overflow: auto;
}

.mul-sele-options::-webkit-scrollbar {
    width: 5px;
}

.mul-sele-options::-webkit-scrollbar-thumb {
    background-color: #797979;
}

.mul-sele-options label {
    padding: 5px 10px;
}

.mul-sele-options label:hover {
    background-color: #eee;
}

.sr-no{
    max-width: 80px;
    min-width: 50px;
}
 
.order-table tr td{
    font-size: 13px;
}


/* --
------------------------------- Media Query start----------------------- */

@media screen and (max-width:768px) {
    #academic_calendar_embed {
        display: none;
    }

    #academic_calendar_down_btn {
        display: block;
    }

    #profile-img-box {
        height: 300px;
    }
}





/* --------------------------------- Media Query End----------------------- */








  
.outerContainer {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: radial-gradient(71.62% 71.62% at 59.46% 21.62%, #ddd 0, hsla(0, 0%, 92.9%, .88) 62.5%, hsla(0, 0%, 92.9%, .99) 79.19%, hsla(0, 0%, 92.9%, .81) 86.85%, #d6d6d6 100%), radial-gradient(39.19% 39.19% at 64.41% 30.18%, #e4e4e4 0, #ececec 100%);
    z-index: -1;
    /* padding: 10px; */
    border-radius: 50%;
    margin: 6px;
  }
  
  .innerContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 28px;
    height: 28px;
    z-index: 2;
    /* padding: 8px; */
    border-radius: 50%;
  }
  
  .innerContainer a {
    color: #111;
    text-decoration: none;
  }
  
  
  .select_num_active {
    background: radial-gradient(71.62% 71.62% at 59.46% 21.62%, #baffae 0, rgba(11, 209, 7, .88) 62.5%, rgba(7, 209, 112, .99) 79.19%, rgba(72, 209, 7, .81) 86.85%, #07d158 100%), radial-gradient(39.19% 39.19% at 64.41% 30.18%, #fff 0, #00b611 100%);
  }
  



  .selected_number_class {
    background: radial-gradient(71.62% 71.62% at 59.46% 21.62%, #baffae 0, rgba(11, 209, 7, .88) 62.5%, rgba(7, 209, 112, .99) 79.19%, rgba(72, 209, 7, .81) 86.85%, #07d158 100%), radial-gradient(39.19% 39.19% at 64.41% 30.18%, #fff 0, #00b611 100%);
  }
  
  .select_number_class_in_hundred {
    background: red !important;
  }
  
  .select_number_class_in_hundred a {
    color: red !important;
  }



  .not_selected_number{
    background: red;
  }

  .not_selected_number a{
    color: red;
  }
  

  .videos-iframe-box iframe{
    width: 100%;
    height: 100%;
}