/* @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Kaushan+Script&family=Open+Sans:wght@300&family=Poppins:ital,wght@0,100;0,200;0,300;1,100;1,200&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300;400&display=swap');
/* important colors */

:root {
    --primary: #94B8FF;
    --warning: #FFB803;
    --danger: #FF0032;
    --success: #3EC70B;
    --basic-black: #212529;
    --light: #C5C7D3;
}

.text-basic-blue {
    color: var(--primary);
}

.text-basic-yellow {
    color: var(--warning);
}

.text-basic-black {
    color: var(--basic-black);
}

.text-basic-gray {
    color: var(--light);
}


/* background */

.bg-basic-blue {
    background-color: var(--primary);
}

.bg-basic-yellow {
    background-color: var(--warning);
}

.bg-basic-black {
    background-color: var(--basic-black);
}

.bg-basic-gray {
    background-color: var(--light);
}

.btn-basic-outline-blue {
    background: #fff;
    padding-top: 8px;
    border-radius: 8.89091px;
    border: 1px solid var(--primary);
}

.btn-basic-outline-blue:hover {
    color: #fff;
    background-color: var(--primary);
}

.btn-basic-outline-blue:hover svg path {
    fill: #fff;
}

.btn-basic-blue {
    background: var(--primary);
    border-radius: 8.89091px;
    margin-top: 2px;
    border: 1px solid var(--primary);
}

.border-bottom-basic-blue {
    border-bottom: 1px solid var(--primary);
}

/* end colors */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Signika Negative', sans-serif;
    /* font-weight: 300; */
    transition: all 0.3s ease-in-out;
}

/* Track */
::-webkit-scrollbar {
    width: 6px;
    border: 0.2px solid #fff;
    border-radius: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 15px;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: #F6F6F6;
    color: var(--basic-black);
    overflow-x: hidden;
    overflow-y: auto;
}

a {
    text-decoration: none;
}

nav {
    position: fixed;
    top: 0;
    display: flex;
    z-index: 99;
    width: 120px;
    height: 100vh;
    background-color: #fff;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.05);
    border-radius: 0px 15px 15px 0px;
    flex-direction: column;
    align-content: center;
    overflow-y: auto;
}

nav ul {
    margin-top: 20px;
    list-style: none;
    padding: 0;
    min-height: 600px;
}

nav ul li {
    margin: 20px;
    width: 70px;
    height: 70px;
    padding: 18px;
    border-radius: 50%;
    border: 1px solid var(--light);
}

nav ul li svg {
    width: 34px;
    height: 34px;
}

nav ul li svg path {
    fill: var(--light);
}

nav ul li i {
    font-size: xx-large;
    color: var(--light);
}

nav ul li:hover,
nav ul li.active {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
}

nav ul li:hover i,
nav ul li.active i {
    color: #fff;
}

nav ul li:hover svg path,
nav ul li.active svg path {
    fill: #fff;
}





main {
    max-width: 2500px;
    margin: auto;
    padding: 40px 40px 100px 150px;
}

main h1 {
    font-weight: 600;
}

main .about-page {
    display: flex;
    justify-content: space-between;
}

main .about-page .about-user {
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    width: 450px;
    height: 60px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

main .about-page .about-user i {
    font-size: xx-large;
    color: var(--primary);
    margin-right: 10px;
}

main .about-page .about-user span {
    color: #212529;
    font-size: large
}

main .page-content {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

main .page-content .basic-card {
    width: 100%;
    height: 90%;
    padding: 40px;
    margin: 25px;
    color: #fff;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main .page-content .gradient-card {
    width: 100%;
    height: 95%;
    padding: 40px;
    margin: 25px;
    color: #fff;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    background: linear-gradient(192.05deg, #47BFDF 0%, #4A91FF 100%);
}

main .page-content .gradient-card h1 {
    font-weight: 500;
}

main .page-content .basic-card h3 {
    font-weight: 600;
}

main .page-content .basic-card.bg-blue {
    background-color: var(--primary);
}

main .page-content .basic-card.bg-yellow {
    background-color: var(--warning);
}




.gradient-card .wheather ul.active {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.gradient-card .weekly-weather {
    height: 80%;
    padding: 0 15px;
    list-style: none;
    overflow-y: auto;
}

.gradient-card .weekly-weather::-webkit-scrollbar {
    width: 5px;
    margin-left: 5px;
}

.gradient-card .weekly-weather li {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-bottom: 10px;
    border-bottom: 0.5px solid #C5C7D3;
}

.gradient-card .weekly-weather li span {
    font-size: x-large;
}



@media (max-width:1400px) {
    nav {
        width: 105px;
    }

    nav ul li {
        margin: 20px;
        width: 60px;
        height: 60px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav ul li svg {
        width: 30px;
        height: 30px;
    }

    main .page-content .basic-card {
        font-size: medium;
        height: 250px;
        margin: 5px;
    }

    main .page-content .basic-card h2 {
        font-size: large;
    }

    main .page-content .basic-card h3 {
        font-size: medium;
    }

    main .page-content .gradient-card {
        height: 520px;
        margin-top: 10px;
    }

    main .page-content .gradient-card .inform h2 {
        font-size: larger;
    }

    main .page-content .gradient-card .inform h3 {
        font-size: large;
    }

    main .page-content .gradient-card .wheather {
        margin-top: 15px;
        padding-bottom: 5px;
    }

    main .page-content .gradient-card .wheather ul li {
        font-size: medium;
    }

    main .page-content .gradient-card .wheather ul li img {
        width: 35px;
        height: 35px;
    }

    main .page-content .gradient-card h1 {
        font-size: x-large;
    }


    main .page-content .gradient-card ul li span {
        font-size: medium;
    }

    main .page-content .gradient-card ul li img {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 1100px) {
    main .page-content .basic-card h2 {
        font-size: medium;
    }

    main .page-content .basic-card h3 {
        font-size: large;
    }
}

@media (max-width:990px) {
    main .page-content .basic-card {
        font-size: medium;
        width: 100%;
        height: 250px;
        margin: 5px;
    }

    main .page-content .basic-card h2 {
        font-size: large;
    }

    main .page-content .basic-card h3 {
        font-size: medium;
    }

    main .page-content .gradient-card {
        height: 520px;
        margin-left: 0px;
    }

    main .page-content .gradient-card .inform h2 {
        font-size: larger;
    }

    main .page-content .gradient-card .inform h3 {
        font-size: large;
    }

    main .page-content .gradient-card .wheather {
        margin-top: 15px;
        padding-bottom: 5px;
    }

    main .page-content .gradient-card .wheather ul li {
        font-size: large;
    }

    main .page-content .gradient-card .wheather ul li img {
        width: 45px;
        height: 45px;
    }

    main .page-content .gradient-card h1 {
        font-size: xx-large;
    }


    main .page-content .gradient-card ul li span {
        font-size: large;
    }

    main .page-content .gradient-card ul li img {
        width: 45px;
        height: 45px;
    }
}

footer {
    position: fixed;
    width: 100%;
    height: 70px;
    padding: 0 40px 0 130px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    z-index: 98;
    bottom: 0;
    left: 0;
}

footer .content {
    font-size: 20px;
}

footer .logo a {
    width: 34px;
    height: 34px;
}

footer .logo svg {
    width: 24px;
    height: 24px;
    margin: 10px;
}


/* ADD student  */

/* order page  */
.submit {
    width: 80%;
    max-width: 300px;
    height: 50px;
    background: var(--primary);
    font-size: 24px;
    border-radius: 10px;
    color: #fff;
}

main .about-student {
    margin: 40px 30px;
    padding: 60px;
    background-color: #fff;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

main .about-student .row {
    justify-content: space-between;
}

main .about-student h2 {
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
}

main .about-student .col-md-6 {
    padding: 15px;
}

main .about-student select:focus,
main .about-student select,
main .about-student input:focus,
main .about-student input {
    -webkit-appearance: none;
    padding: 15px;
    width: 100%;
    text-align: start;
    border: 2px solid var(--primary);
    background-color: transparent;
    color: #333;
    border-radius: 10px;
    margin: 10px 0;
    outline: 1px solid var(--primary);
    text-overflow: ellipsis;
    font-weight: 500;
    font-size: 24px;
}

main .about-student select option {
    font-weight: 500;
    font-size: 15px;
}

main .about-student textarea {
    padding: 15px;
    width: 100%;
    text-align: start;
    border: 2px solid var(--primary);
    color: #333;
    border-radius: 10px;
    margin: 10px 0;
    outline: #var(--warning);
    text-overflow: ellipsis;
}

main .about-student select option {
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    color: #333;
    margin: 15px 0 0 80px;
}

.about-student .extra {
    -webkit-appearance: textfield;
    width: 100%;
    height: 430px;
    padding: 15px 25px !important;
}

.about-student .extra::-webkit-scrollbar {
    /* display: none; */
}

.about-student .extra option {
    font-weight: 500;
    font-size: 30px;
    line-height: 24px;
    color: #333;
    margin: 10px 0 0 80px;
}






main .about-student .about-order {
    display: flex;
    width: 100%;
    min-height: 525px;
    padding: 10px;
    border: 2px solid var(--primary);
    border-radius: 10px;
    flex-direction: column;
}

main .about-student .about-order.edit {
    min-height: 220px;
}

main .about-student .about-order>* {
    margin-top: 10px;
}

main .about-student .about-order img {
    width: 35%;
    height: auto;
    margin: 5px 20%;
}

main .about-student .about-order div img {
    width: 70px;
    margin-right: -2px;
}

main .about-student .about-order span {
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    text-transform: capitalize;
}

main .about-student .about-order ul {
    list-style: none;
}

main .about-student .about-order ul li {
    margin-top: 8px;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
}

main .about-student .about-order .number-block {
    border: 2px solid #333333;
    border-radius: 5px;
    padding: 2px;
    margin: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

main .about-student .about-order .number-block .country-code {
    margin-top: -15px !important;
    border-right: 2px solid #333;
    padding-right: 5px;
}

main .about-student .about-order .tel-number {
    border: 2px solid #333333;
    border-radius: 5px;
    padding: 0px 5px;
    margin: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

main .about-student .about-order .tel-number a {
    color: #333;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}

.about-order ul li .btn {
    background: #BED4FF;
    border-radius: 29px;
    padding: 3px 11px;
    color: #fff;
    border-radius: 29px;
    margin: 5px;
}

.about-order ul li strong {
    margin-right: 15px;
}

.about-order h4 strong {
    margin-right: 5px;
}





/* TEACHER Page  */


.teacher.card {
    width: 100%;
    min-height: 300px;
    max-height: 390px;
    height: 100%;
    padding: 20px 0;
    margin-bottom: 20px;
    border-radius: 20px;
    border: #c8ccd4;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.06);
}

.sms-icon {
    width: 20px;
}

.teacher.card .buttons a:last-child:hover {
    background-color: transparent;
    color: #F6F6F6;
}

@media screen and (max-width: 1390px) {

    .teacher.card .buttons a {
        font-size: smaller;
    }
}

/* Settings page  */


nav {
    height: 100%;
}

footer {
    width: 100%;
}

.page-content .setting-block {
    width: 100%;
    height: calc(100vh - 250px);
    background-color: var(--primary);
    color: #fff;
    padding: 35px 70px;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
}

.page-content .setting-block a {
    font-size: larger;
    padding: 8px 20px;
    color: var(--primary);
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

.page-content .setting-card {

    width: 100%;
    height: 500px;
    margin: 15px 0;
    padding: 40px 30px 20px 0;
    color: #fff;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.bg-image {
    margin: 10px;
    background: url(../images/html_table.jpg) center / cover;
    border-radius: 15px;
    overflow: hidden;
    padding: 0;
}

.bg-image .setting-card {
    margin: 0;
    backdrop-filter: blur(10px);
}

.page-content .setting-card h1 {
    font-weight: 800;
    margin-bottom: 25px;
}

.page-content .setting-card center a {
    font-size: large;
    padding: 10px 22px;
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

.setting-card.bg-basic-yellow center a {
    color: #var(--warning);
}

.setting-card.bg-basic-blue center a {
    color: var(--primary);
}

.page-content .setting-card .scroll {
    margin-top: 40px;
    height: 280px;
    overflow-y: auto;
    overflow-x: none
}

.page-content .setting-card .row {
    margin: 0 10px 20px 30px;
}

.page-content .setting-card .row p {
    font-size: x-large;
    width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1400px) {
    main .page-content {
        padding: 40px;
    }

    .page-content .setting-block a {
        font-size: medium;
    }

    .page-content .setting-card h1 {
        font-size: xx-large;
    }
}

@media (max-width: 1040px) {
    .page-content {
        padding: 0;
    }

    .page-content .setting-block {
        width: 780px;
        margin-left: -40px;
        margin-right: 15px;
    }
}




.cbx {
    position: relative;
    top: 1px;
    width: 27px;
    height: 27px;
    border: 1px solid #c8ccd4;
    border-radius: 3px;
    vertical-align: middle;
    transition: background 0.1s ease;
    cursor: pointer;
    display: block;
}

.cbx:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 8px;
    width: 7px;
    height: 14px;
    opacity: 0;
    transform: rotate(45deg) scale(0);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transition: all 0.3s ease;
    transition-delay: 0.15s;
}

.lbl {
    margin-left: 5px;
    vertical-align: middle;
    cursor: pointer;
}

.cntr.active .cbx {
    border-color: transparent;
    background: var(--warning);
    animation: jelly 0.6s ease;
}

.cntr.active .cbx:after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.cntr {
    position: relative;
}

@keyframes jelly {
    from {
        transform: scale(1, 1);
    }

    30% {
        transform: scale(1.25, 0.75);
    }

    40% {
        transform: scale(0.75, 1.25);
    }

    50% {
        transform: scale(1.15, 0.85);
    }

    65% {
        transform: scale(0.95, 1.05);
    }

    75% {
        transform: scale(1.05, 0.95);
    }

    to {
        transform: scale(1, 1);
    }
}

.hidden-xs-up {
    display: none !important;
}

.s-none {
    all: unset;
}

.group.card {
    width: 600px;
    min-height: 300px;
    max-height: 480px;
    height: 100%;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    border: #c8ccd4;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.06);
    background-color: var(--primary);
    display: flex;
    align-items: center;
}

.input-group {
    display: flex;
    width: 90%;
    font-size: x-large;
    border: 1px solid var(--color);
    margin: 10px auto;
    padding: 10px;
    border-radius: 12px;
    justify-content: space-around;
    align-items: center;
}

.input-group i {
    color: var(--color);
    font-size: xx-large;
}

.input-group input,
.input-group select,
.input-group textarea {
    color: var(--text);
    width: 80%;
    border: none;
    outline: none;
    background-color: transparent;
}

.input-group select[multiple] {
    height: 400px;
}

.input-group select[multiple] option {
    background-color: var(--color);
    border-radius: 5px;
    color: #2D2A43;
    padding: 5px;
    margin: 10px;
}

.input-group option {
    color: #fff;
    background-color: var(--primary);
}
.input-group select:invalid{
    color: var(--text);
}

.input-group h3 {
    color: var(--color);
}

/* .input-group input::placeholder { 
    color: var(--color);
    opacity: 1; 
}
.input-group input:-ms-input-placeholder { 
    color: var(--color);
}
.input-group input::-ms-input-placeholder  { 
    color: var(--color);
} */
.input-group {
    --color: #efefef;
    --text: #eee;
}

.input-group.is-warning {
    --color: var(--warning);
    --text: var(--basic-black);
}
.input-group.is-disabled{
    --color: #7C7C7C ;
    --text: #7C7C7C ;
}

.input-group.is-success {
    --color: var(--success);
    --text: var(--basic-black);
}
.input-group.is-dark {
    --color: var(--basic-black);
    --text: var(--basic-black);
}

.input-group.is-primary {
    --color: var(--primary);
    --text: var(--basic-black);
}
.input-group.is-danger {
    --color: var(--danger);
    --text: var(--basic-black);
}

.button {
    background-color: transparent;
    border: 2px solid;
    color: #F6F6F6;
    padding: 10px 15px;
    font-size: x-large;
    border-radius: 15px;
}

.button.is_primary {
    background-color: var(--primary);
    border: 2px solid #F6F6F6;
    color: #F6F6F6;
}

.button.is_warning {
    background-color: var(--warning);
    border: 2px solid #F6F6F6;
    color: #F6F6F6;
}
.button.is_danger {
    background-color: var(--danger);
    border: 2px solid #F6F6F6;
    color: #F6F6F6;
}
.button.is_success {
    background-color: var(--danger);
    border: 2px solid #F6F6F6;
    color: #F6F6F6;
}

.inputs-primary .input-group {
    background-color: var(--success);
    color: #F6F6F6;
    max-width: 400px;
    padding: 15px 0;
}

.inputs-primary .input-group option {
    background-color: var(--warning);
}

.card-custom {
    max-width: 2500px;
    margin: 40px 30px;
    padding: 60px;
    background-color: #fff;
    box-shadow: 0px 15px 20px rgb(0 0 0 / 5%);
    border-radius: 20px;
}

form {
    margin: 10px 30px;
}

.list-style {
    list-style: none;
}

.list-style li {
    margin-top: 15px;
    color: var(--primary);
    font-size: xx-large;
}

.list-style strong {
    font-size: x-large;
    color: var(--warning);
    margin: 0 15px;
}

.text-dark input,
.text-dark select {
    color: #333;
}

.scroll-students {
    height: 500px;
    overflow-y: auto;
}

.students {
    width: 100%;
    font-size: x-large;
    padding: 15px;
    margin: 15px 0;
    box-shadow: 0px 0 2px 1px #eee;
    border-radius: 15px;
}

.students i {
    margin: 0 5px;
    padding: 5px;
    font-size: x-large;
}

.students a:nth-child(1) i,
.table td a:nth-child(1) i {
    color: var(--success);
}

.students a:nth-child(2) i,
.table td a:nth-child(2) i {
    color: var(--primary);
}

.students a:nth-child(3) i,
.table td a:nth-child(3) i {
    color: var(--danger);
}

.overflow-ellipse {
    width: 99%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1400px) {
    .students {
        font-size: medium;
    }

    .students i {
        font-size: medium;
        margin: 0;
    }

    .update-group select {
        font-size: medium;
    }

}

@media (max-width: 1200px) {
    .students {
        font-size: x-large;
    }

    .students i {
        font-size: x-large;
        margin: 0;
    }
}

.register-card {
    --status: var(--warning);
    border: 1px solid var(--status);
    border-radius: 15px;
    padding: 10px 0 0 0;
    margin-top: 10px;
    align-items: center;
}

.register-card ul {
    list-style: none;
}

.register-card ul li:nth-child(2) {
    font-weight: 800;
    color: var(--status);
}

.register-card a,
.control a {
    font-size: x-large;
    margin: 0 5px;
}

.register-card>div:last-child {
    text-align: end;
}

.register-card a:nth-child(1),
.control a:nth-child(1) {
    color: var(--success);
}

.register-card a:nth-child(2),
.control a:nth-child(2) {
    color: var(--primary);
}

.register-card a:nth-child(3),
.control a:nth-child(3) {
    color: var(--danger);
}

.register-card.primary {
    --status: var(--primary)
}

.register-card.danger {
    --status: var(--danger)
}

.register-card.warning {
    --status: var(--warning)
}
.register-card.dark {
    --status: var(--basic-black);
}

.scroll-content {
    height: calc(100vh - 450px);
    min-height: 500px;
    overflow-y: auto;
    padding: 20px;
}

.scroll-content::-webkit-scrollbar {
    width: 8px;
    background-color: var(--primary);
    border-radius: 5px;
}

/* Track */
.scroll-content::-webkit-scrollbar-track {
    border-radius: 5px;
}

/* Handle */
.scroll-content::-webkit-scrollbar-thumb {
    background: var(--warning);
    border-radius: 15px;
}

@media (max-width: 1000px) {

    .register-card h5,
    .register-card li {
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

}

.tab-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

/* .tab-list li a{
    color: var(--warning);
    font-size: larger;
} */
.tab-list li {
    margin: 10px;
}

.tab-list li::before {
    color: var(--success);
    content: "/";
    font-weight: 900;
    margin: 0 10px;
}

.tab-list li a {
    font-size: larger;
}

.tab-list li i {
    margin: 0 10px;
}

.tab-list li.active a {
    color: #eee;
    background-color: var(--success);
    border-color: var(--success);
}

.data-list {
    list-style: none;
    font-size: x-large;
}

.data-list li {
    color: var(--danger);
    margin: 15px 0;
}

.data-list strong {
    color: var(--success);
    margin: 0 10px;
}



.table {
    /* background: url(../images/html_table.jpg) center / cover; */
    height: 90vh;
    background-color: #fff5;
    overflow: hidden;
}

.table__header {
    width: 100%;
    background-color: #fff4;
    height: 80px;
    padding: .8rem 1rem;
    border-radius: 15px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table__header .search-group {
    display: flex;
    width: 350px;
    height: 100%;
    background-color: #fff5;
    padding: 0 .8rem;
    border-radius: 2rem;
    border: 1px solid var(--primary);

    display: flex;
    justify-content: space-evenly;
    align-items: center;

    transition: .2s;
}
.table__header .search-group i {
    color: var(--primary);
}

.table__header .search-group:hover {
    width: 450px;
    background-color: #fff9;
    box-shadow: 0 .1rem .4rem #0002;
}

.table__header .search-group img {
    all: unset;
    width: 1.2rem;
    height: 1.2rem;
}

.table__header .search-group input,
.table__header .search-group select
 {
    width: 80%;
    padding: 0 .5rem 0 .3rem;
    font-size: larger;
    background-color: transparent;
    border: none;
    outline: none;
}

.table__body {
    width: 95%;
    max-height: calc(89% - 1.6rem);
    background-color: #fffb;

    margin: .8rem auto;
    border-radius: .6rem;

    overflow: auto;
    overflow: overlay;
}

.table__body::-webkit-scrollbar{
    width: 0.5rem;
    height: 0.5rem;
}
#item-grade::-webkit-scrollbar{
    background-color: #0004;
}
.table::-webkit-scrollbar-thumb{
    border-radius: .5rem;
    background-color: #0004;
    visibility: hidden;
}
#item-grade::-webkit-scrollbar-thumb{
    border-radius: .3rem;
    background-color: var(--primary);
    visibility: visible;
}
.table:hover::-webkit-scrollbar-thumb,
#item-grade:hover::-webkit-scrollbar-thumb{
    visibility: visible;
}

table {
    width: 100%;
}

td img {
    width: 36px;
    height: 36px;
    margin-right: .5rem;
    border-radius: 50%;

    vertical-align: middle;
}

table,
th,
td {
    border-collapse: collapse;
    padding: 1rem;
    text-align: center;

}

thead th {
    position: sticky;
    top: 0;
    left: 0;
    background-color: #d5d1defe;
    cursor: pointer;
    text-transform: capitalize;
}

tbody tr:nth-child(even) {
    background-color: #0000000b;
}

tbody tr:hover {
    background-color: #fff6 !important;
}

.status {
    padding: .4rem 0;
    border-radius: 2rem;
    text-align: center;
}

.status.is-success {
    background-color: #86e49d;
    color: #006b21;
}

.status.is-danger {
    background-color: #d893a3;
    color: #b30021;
}

.status.pending {
    background-color: #ebc474;
}

.status.is-primary {
    background-color: #6fcaea;
}


@media (max-width: 1000px) {
    td:not(:first-of-type) {
        min-width: 12.1rem;
    }
}

thead th span.icon-arrow {
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    border: 1.4px solid transparent;

    text-align: center;
    font-size: 1rem;

    margin-left: .5rem;
    transition: .2s ease-in-out;
}

thead th:hover span.icon-arrow {
    border: 1.4px solid #6c00bd;
}

thead th:hover {
    color: #6c00bd;
}

.export__file {
    position: relative;
}

.export__file .export__file-btn {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: #fff6 url(../images/export.png) center / 80% no-repeat;
    border-radius: 50%;
    transition: .2s ease-in-out;
}

.export__file .export__file-btn:hover {
    background-color: #fff;
    transform: scale(1.15);
    cursor: pointer;
}

.export__file input {
    display: none;
}

.export__file .export__file-options {
    position: absolute;
    right: 0;

    width: 12rem;
    border-radius: .5rem;
    overflow: hidden;
    text-align: center;

    opacity: 0;
    transform: scale(.8);
    transform-origin: top right;

    box-shadow: 0 .2rem .5rem #0004;

    transition: .2s;
}

.export__file input:checked+.export__file-options {
    opacity: 1;
    transform: scale(1);
    z-index: 100;
}

.export__file .export__file-options label {
    display: block;
    width: 100%;
    padding: .6rem 0;
    background-color: #fff;

    display: flex;
    justify-content: space-around;
    align-items: center;

    transition: .2s ease-in-out;
}

.export__file .export__file-options label:first-of-type {
    padding: 1rem 0;
    background-color: #86e49d !important;
}

.export__file .export__file-options label:hover {
    transform: scale(1.05);
    background-color: #f2f2f2;
    cursor: pointer;
}

.export__file .export__file-options img {
    width: 2rem;
    height: auto;
}

table tr div.uncome {
    border: 1px solid var(--danger);
    background-color: var(--danger);
    color: #fff;
    font-size: medium;
    padding: 5px 15px;
    border-radius: 15px;
    width: 125px;
}

table tr div.wait {
    border: 1px solid var(--warning);
    background-color: var(--warning);
    color: #fff;
    font-size: medium;
    padding: 5px 15px;
    border-radius: 15px;
    width: 125px;
}

table tr div.come {
    border: 1px solid var(--success);
    background-color: var(--success);
    color: #fff;
    font-size: medium;
    padding: 5px 15px;
    border-radius: 15px;
    width: 125px;
}

table tr span.wait{
    border: 1px solid var(--warning);
    background-color: var(--warning);
    color: #fff;
    font-size: larger;
    padding: 5px 15px;
    border-radius: 15px;
}
table tr input {
    width: 20px;
    height: 20px;
}

table tr input:nth-child(1) {
    accent-color: var(--success);
    color: #fff;
}

table tr input:nth-child(2) {
    accent-color: var(--danger);
    background-color: var(--danger);
    color: #fff;
}

/* Hide the default checkbox */
.checker input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    border-radius: 5px;
}

.checker {
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-size: 30px;
    margin: 0 10px;
    user-select: none;
    border-radius: 5px;
    box-shadow: 2px 2px 0px rgb(183, 183, 183);
}
.checker:nth-child(1) .checkmark{
    background-color: var(--success);
}
.checker:nth-child(2) .checkmark{
    background-color: var(--danger);
}

/* Create a custom checkbox */
.checkmark {
    position: relative;
    top: 0;
    left: 0;
    height: 1.3em;
    width: 1.3em;
    border-radius: 5px;
}

/* When the checkbox is checked, add a blue background */
.checker input:checked~.checkmark {
    box-shadow: 3px 3px 0px rgb(183, 183, 183);
    transition: all 0.2s;
    opacity: 1;
    background: var(--warning);
}

.checker input~.checkmark {
    transition: all 0.2s;
    opacity: 1;
    box-shadow: 1px 1px 0px rgb(183, 183, 183);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    opacity: 0;
    transition: all 0.2s;
}

/* Show the checkmark when checked */
.checker input:checked~.checkmark:after {
    opacity: 1;
    transition: all 0.2s;
}

/* Style the checkmark/indicator */
.checker .checkmark:after {
    left: 0.45em;
    top: 0.25em;
    width: 0.25em;
    height: 0.5em;
    border: solid white;
    border-width: 0 0.15em 0.15em 0;
    transform: rotate(45deg);
}



.notification{
    transition: all 1s;
    position: fixed;
    z-index: 91;
    top: 80px;
    right: 50px;
}
.alert{
    transition: all 1s ease-in-out;
    background-color: #fff;
    margin:20px auto;
    padding:30px;
    border-radius:5px;
    box-shadow: 0 .2rem .5rem #0004;
    font-size: x-large;
}
.alert span{
    margin-right: 15px;
}
.close{
    position:absolute;
    width:30px;
    height:30px;
    opacity:0.5;
    border-width:1px;
    border-style:solid;
    border-radius:50%;
    right:10px;
    top:25px;
    text-align:center;
    cursor:pointer;
}
.alert.success-alert{
    border-left: 5px solid #42b983;
}
.alert.fade-right{
    transform: translateX(300px);
}
.bg-image {
    width: clamp(80px, 100%, 150px);
    border-radius: 50%;
    background-color: var(--primary);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin: auto;
    box-shadow: inset 0 0 20px 1px #ffffff30;
}

table tr span.uncome.warning {
    background: orange !important;
    border: none
}