@font-face {
    font-family: 'vazir';
    src: url('../font/Vazir.ttf');
}

:root {
    --main: #1D1E26;
    --simillar: #262932;
    --text: #bebebe;
    --main2: #16171d;
    --btn-text: #f7f7f7;

    --simillar-light: #ffffff;
    --text-light: #313131;
    --main-light: #f0f0f5;
    --main2-light: #dbdbdb;
    --color-fixed: #313131;

    --bg: #0292f1;
    --hover: #18a3ff;
    --orange: #0896f5;
    --sidebar-menu:  #4077f0;
    --sidebar-sub-menu:  #3b83f656;
    .btn-orange {
        background-color: var(--orange);
        cursor: pointer;
    }

    --border: #38475960;
    --shadow: rgba(0, 0, 0, 0.54);
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'vazir' !important;
}

body {
    direction: rtl;
    overflow-x: hidden;
    background: var(--main);
    color: var(--text);
    font-family: "vazir" !important;
}

body.light-mode {
    --main: var(--main-light);
    --simillar: var(--simillar-light);
    --text: var(--text-light);
    --main2: var(--main2-light);
}

/* start sidebar */
#menu-toggle {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--shadow);
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    z-index: 2;
}

.sidebar {
    width: 280px;
    height: auto;
    padding: 20px 0px;
    position: fixed;
    top: 0;
    right: 8px;
    bottom: 0;
    transition: all 0.5s;
    transform: translateX(0);
    z-index: 3;
}

.sidebar.active {
    transform: translateX(100%);
    right: 0;
}

.sidebar-section {
    width: 100%;
    height: 100%;
    background-color: var(--simillar);
    padding: 5px;
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow-y: auto;
}

.sidebar-section::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.not-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #ccccccd2;
    font-weight: bold;
    border-radius: 10px;
    text-align: center;
    line-height: 24px;
    font-size: 16px;
}

.sidebar-section::-webkit-scrollbar-thumb {
    background-color: var(--border) !important;
}

.brand-name {
    color: var(--bg);
    margin: 10px;
    margin-bottom: 20px;
}

.btn-attendance {
    text-align: center;
    padding: 0 200px;
}

.avatar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding: 8px;
}

.img-avatar img {
    width: 50px;
    height: 50px;
    border: 1px solid var(--bg);
    border-radius: 50%;
}

.sidebar-icon {
    font-size: 14px;
}

.info-avatar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-avatar {
    padding-left: 10px;
}

.sidebar-item {
    margin-top: 30px;
}

.sidebar-item li>a {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    color: var(--text);
    padding: 12px 10px;
    transition: all .3s ease-in;
}

.sidebar-menu > a:hover {
    transition: 0.3s;
    background-color: #7bb3f325;
}
.sidebar-item li.focused>a {
    background-color: var(--sidebar-menu);
    color: var(--btn-text);
    transition: 0.4s;
}

.sidebar-item li .sidebar-arrow {
    transition: 0.3s;
}

.sidebar-item li.focused .sidebar-arrow {
    transform: rotateZ(180deg);
}

.sidebar-dropdown-menu li {
    padding: 10px 20px;
    transition: 0.3s;
    font-size: 15px;
    color: var(--text);
}

.sidebar-dropdown-menu li:hover {
    background-color: #0075fa2d;
}
.sidebar-dropdown-menu {
    margin: 0 auto;
    background-color: #03040525;
    color: #000;
}
.sidebar-menu.focused .sidebar-dropdown-menu {
    display: block !important;
}
.sub-menu-focused{
    background-color: var(--sidebar-sub-menu);
    color: var(--text);
    font-weight: bold;
}
/* end sidebar */

.d-box{
    max-width: 1300px !important;
}
/* kebab */
    .status-dropdown {
        position: relative;
    }

    .dropdown-btn {
        border: none;
        background: transparent;
        cursor: pointer;
        font-size: 20px;
        width: 35px;
    }

    .dropdown-menu {
        position: absolute;
        top: 30px;
        left: 0;
        min-width: 140px;
        background: var(--main);
        border-radius: 6px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .1);

        display: none;
        z-index: 999;
    }

    .dropdown-menu a {
        display: block;
        padding: 10px;
        color: #333;
    }

    .dropdown-menu.show {
        display: block;
    }
    
/* start content */
.content {
    margin-right: 285px;
    padding: 2rem 1.2rem 2rem 1rem;
    transition: all 0.5s;
    /* overflow: hidden !important; */
}

.content.active {
    margin-right: 0;
}

.larg-container {
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0px 35px 50px var(--shadow);
    background-color: var(--simillar);
    border: 1px solid var(--border);
    padding: 30px 20px;
    border-radius: 5px;
    overflow-x: auto;
}

.small-container {
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0px 35px 50px var(--shadow);
    background-color: var(--simillar);
    border: 1px solid var(--border);
    padding: 30px 20px;
    border-radius: 5px;
    overflow-x: auto;
}

/* start appbar */
.appbar {
    margin-right: 285px;
    padding: 2rem 1.2rem 2rem 2rem;
    transition: all 0.5s;
    position: fixed;
    width: calc(100% - 285px);
    z-index: 2;
}

.appbar.active {
    margin-right: 0;
    width: 100%;
}

.appbar-search {
    border: 1px solid var(--border);
    position: relative;
    margin-right: 50px;
    width: 300px;
}

.search-icon {
    position: absolute;
    left: 0;
    top: 12px;
}

.appbar-item-l {
    margin-left: 0 !important;
}

.msg-events {
    background-color: red;
    padding: 5px;
    position: absolute;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    text-align: center;
    top: 26px;
    left: 154px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.events>span {
    font-size: 12px;
    font-weight: 500;
}

.show-msg-events {
    display: none;
    position: relative;
}

.show-msg-events.active {
    background-color: var(--main2);
    width: 200px;
    height: 300px;
    position: absolute;
    left: 140px;
    top: 60px;
    display: block;
    overflow: hidden;
    overflow-y: auto;
}

.header-msg {
    background-color: var(--simillar);
    width: 194px;
    height: 35px;
    position: fixed;
}

.b-msg {
    background-color: var(--simillar);
    width: 194px;
    height: 35px;
    position: fixed;
    top: 325px;
}

.event-ul-item>a li {
    margin-top: 10px;
    padding: 8px;
    transition: 0.4s;
    cursor: pointer;
    color: var(--text);
}

.event-ul-item>a li:hover {
    background-color: var(--main);
}

.show-msg-events::-webkit-scrollbar {
    width: 6px;
}

.show-msg-events::-webkit-scrollbar-track {
    background: var(--simillar);
}

.show-msg-events::-webkit-scrollbar-thumb {
    background: var(--text);
    border-radius: 2px;
}

.show-msg-events::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* رنگ پس زمینه */
}

/* notifications */
.notification-container {
    position: relative;
    display: inline-block;
}

.notification-dropdown {
    position: absolute;
    left: -5px;
    width: 190px;
    max-height: 250px;
    background: var(--simillar);
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;

    /* انیمیشن نمایش */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.notification-container:hover .notification-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* لیست نوتیف‌ها */
.notification-list {
    flex: 1;
    overflow-y: auto;
}

.notification-item {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.notification-item:hover {
    background-color: #33425373;
    ;
}

.notification-list::-webkit-scrollbar {
    width: 2px;
}

.notification-list::-webkit-scrollbar-thumb {
    background: var(--hover);
    border-radius: 10px;
}

.notification-footer-wrapper {
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.notification-footer {
    display: block;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
    transition: 0.4s;
}

.notification-footer:hover {
    background: #f1f1f133;
}

/* end notife */

.other-events {
    background-color: #e90202;
    padding: 5px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    top: -12px;
    left: 10px;
    font-size: 13px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.other-events>span {
    font-size: 12px;
    font-weight: 500;
}

/* setting start */
.setting {
    width: 250px;
    height: 100vh;
    background-color: var(--simillar);
    position: fixed;
    left: -260px;
    top: 0;
    transition: 0.4s;
    padding: 10px !important;
    z-index: 5;
}

.mode {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    align-items: center;
    cursor: pointer;
}

.setting.active-left-menu {
    transform: translateX(100%);
}

#left-menu-active {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--shadow);
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

#left-menu-active.left-menu-active {
    opacity: 1;
    visibility: visible;
    position: fixed;
    z-index: 4;
}

.ml-50 {
    margin-left: 50px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 19px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #999999;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--hover);
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(15px);
}

.slider {
    transition: background-color 0.4s;
}

.slider:before {
    transition: transform 0.4s;
}

/* end appbar */

.report {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

.report-item {
    width: calc(33% - 20px);
    padding: 30px;
    display: flex;
    background-color: var(--bg);
    border-image: linear-gradient(#f6b73c, #4d9f0c) 30;
    min-height: 3em;
    resize: both;
    border-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cstyle%3Epath%7Banimation:stroke 5s infinite linear%3B%7D%40keyframes stroke%7Bto%7Bstroke-dashoffset:776%3B%7D%7D%3C/style%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%232d3561' /%3E%3Cstop offset='25%25' stop-color='%23c05c7e' /%3E%3Cstop offset='50%25' stop-color='%23f3826f' /%3E%3Cstop offset='100%25' stop-color='%23ffb961' /%3E%3C/linearGradient%3E %3Cpath d='M1.5 1.5 l97 0l0 97l-97 0 l0 -97' stroke-linecap='square' stroke='url(%23g)' stroke-width='3' stroke-dasharray='388'/%3E %3C/svg%3E") 1;
    height: 120px;
    border-width: 1px;
    border-style: solid;
    box-shadow: -1px 11px 28px -7px var(--shadow);
}

.report .report-item .report-icon {
    padding-left: 15px;
}

.report-item .report-icon svg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--hover);
    color: var(--main);
    padding: 10px;
}

.report-text span {
    color: var(--text);
    font-size: 18px;
}

.rfb-img {
    top: 150px;
    left: 50%;
    z-index: 9999;
    transform: translateX(-50%);
    background-color: red;
}

/* main content title evry pages */
.content-title {
    width: 100%;
    color: var(--text);
    font-size: 20px;
    font-weight: 500;
    margin-right: 20px;
}

/* point */
.twinkle-b {
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    margin: 0 0.3em;
    background: #3bb900c7;
    border-radius: 50%;
    box-shadow: 0 0 5px #3bb900c7, 0 0 10px #3bb900c7;
    animation: twinkleAnim-b 1.5s infinite ease-in-out;
}

@keyframes twinkleAnim-b {
    0% {
        opacity: 0.2;
        transform: scale(0.5);
        box-shadow: 0 0 3px #3bb900c7, 0 0 6px #3bb900c7;
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 10px #3bb900c7, 0 0 20px #3bb900c7;
    }

    100% {
        opacity: 0.2;
        transform: scale(0.5);
        box-shadow: 0 0 3px #3bb900c7, 0 0 6px #3bb900c7;
    }
}

.twinkle-s {
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    margin: 0 0.5em;
    background: #ec0134c7;
    border-radius: 50%;
    box-shadow: 0 0 5px #ec0134c7, 0 0 10px #ec0134c7;
    animation: twinkleAnim-s 1.5s infinite ease-in-out;
}

@keyframes twinkleAnim-s {
    0% {
        opacity: 0.2;
        transform: scale(0.5);
        box-shadow: 0 0 3px #ec0134c7, 0 0 6px #ec0134c7;
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 10px #ec0134c7, 0 0 20px #ec0134c7;
    }

    100% {
        opacity: 0.2;
        transform: scale(0.5);
        box-shadow: 0 0 3px #ec0134c7, 0 0 6px #ec0134c7;
    }
}

/* input insert page */
.insert {
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 5px;
}

.insert>div {
    text-align: right;
    margin-right: 5.5%;
    margin-bottom: 4px;
}

.insert input {
    background-color: var(--main);
    border: none;
    width: 90%;
    height: 35px;
    padding: 8px;
    border-radius: 3px;
    color: var(--text);
    font-size: 16px;
    outline: none;
    border: 1px solid var(--bg);
    margin-bottom: 25px;
}

.insert select {
    background-color: var(--main);
    border: none;
    width: 90%;
    height: 35px;
    padding: 4px;
    border-radius: 3px;
    color: var(--text);
    font-size: 16px;
    outline: none;
    border: 1px solid var(--bg);
}

.insert select option {
    font-size: 16px;
}

.insert input:focus {
    outline: none !important;
    border: 1px solid var(--hover);
    box-shadow: 0 0 8px var(--hover);
}
.no-change{
    pointer-events: none;
}
.inputs {
    width: 90%;
    margin: 20px auto !important;
    position: relative;
}

.one {
    width: 100% !important;
}

.one>input {
    width: 99%;
    margin-bottom: 0 !important;
}

.one>textarea {
    width: 99%;
    margin-bottom: 0 !important;
    background-color: var(--main);
    border: 1px solid var(--bg);
    height: 100px;
    color: var(--text);
    padding: 7px;
    font-size: 16px !important;
    min-height: 100px;
    resize: vertical;
}

.max-width {
    max-width: 370px;
    min-width: 370px;
}

.one>select {
    width: 99%;
}

.label-form {
    text-align: right;
    margin-right: 10px;
}

.img {
    width: 120px !important;
}

/* title line */
.title-line {
    width: 90%;
    text-align: right;
}

/* table page */
.fl-table {
    border-radius: 5px;
    font-size: 12px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: var(--simillar);
}
.fl-table th {
    color: var(--btn-text);
}

.fl-table td, .fl-table th {
    text-align: center;
    padding: 8px;
}

.fl-table td {
    font-size: 14px;
}

.fl-table td svg {
    font-size: 20px;
    color: var(--text);
}

.fl-table thead th {
    background: var(--bg);
}

.fl-table tr:nth-child(odd) {
    background-color: var(--main);
}

.fl-table tr:hover {
    background-color: rgba(106, 95, 232, 0.171);
}

/* start invoice table */
.invoice-table {
    border-radius: 5px;
    font-size: 12px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: #fff;
}
.invoice-table th {
    color: var(--btn-text);
}

.invoice-table td, .fl-table th {
    text-align: center;
    padding: 8px;
}

.invoice-table td {
    font-size: 14px;
}

.invoice-table td svg {
    font-size: 20px;
    color: var(--text);
}

.invoice-table thead th {
    background: var(--bg);
    border-bottom: 2px solid black !important;
}

.invoice-table tr:nth-child(odd) {
    background-color: #dbdbdb;
}

.invoice-table tr:hover {
    background-color: rgba(106, 95, 232, 0.171);
}
/* end invoice table */

.paginate-section {
    padding: 4px;
    position: relative;
}

.table-info {
    position: absolute;
    right: 10px;
}

.show_details-table {
    width: 90%;
    margin: 0 auto;
}

.bg-main {
    background-color: var(--main);
}

.details-culomn-table {
    background-color: var(--main);
    margin: 5px auto;
    width: 96%;
    height: auto;
    justify-content: space-between;
    padding: 3px 10px;
    transition: 0.3s;
}

.tbl-small {
    width: 96% !important;
    margin: 0 auto !important;
}

/* paginations */
.demo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.paginate-item {
    padding: 2px 7px;
    background-color: var(--main);
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    margin: 3px;
    box-shadow: var(--shadow);
    transition: 0.4s;
}

.paginate-item:hover {
    background-color: var(--hover);
}

/* details */
.details {
    width: 90%;
    height: auto;
    border: 1px solid var(--border);
    margin: 0 auto;
}

.details-status {
    width: 90%;
    height: auto;
    margin: 0 auto;
}

/* accourdion */
.accordion-title {
    background: var(--main);
    font-size: 16px;
    padding: 5px;
    color: var(--text);
    border: 1px solid #303030;
    cursor: pointer;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.accordion-title:hover {
    background: var(--border);
}

.accordion-content {
    width: 90%;
    background: var(--main);
    height: 0;
    overflow: hidden;
    margin: 0 auto;
    transition: all .3s ease-in-out;
}

.child-accordioin {
    width: 100%;
}


/* single btn */
.btns {
    display: flex;
    padding: 20px;
    flex-wrap: wrap;
}

.single-btn {
    color: var(--text);
    background-color: var(--bg);
    border-radius: 5px;
    padding: 7px 11px;
    margin: 10px auto !important;
    border: 1px solid var(--bg);
    transition: 0.3s;
}

.single-btn:hover {
    background-color: var(--main);
    border: 1px solid var(--bg);
}

/* help */
.modal-content-help {
    background-color: var(--main);
    margin: 15% auto;
    padding: 6px 10px 10px 10px;
    border: 1px solid var(--border);
    width: 38%;
}

/* box */
    .legend-box {
        display: flex;
        gap: 15px;
        align-items: center;
        margin-bottom: 10px;
    }

    .legend-item {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
    }

    .color-box {
        width: 10px;
        height: 10px;
        border-radius: 2px;
        display: inline-block;
    }

    .b-blue {
        background: #3498db;
    }

    .b-orange {
        background: #f39c12;
    }

    .b-green {
        background: #2ecc71;
    }

/* login & register */
.login {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 90px;
    position: relative;
}

.avatar-login {
    margin-top: 50px;
}

.avatar-login img {
    width: 90px;
    border: 1px solid var(--border);
    border-radius: 50%;
}

.login-form {
    width: 350px;
    height: auto;
    background-color: var(--simillar);
    color: var(--text);
    position: relative;
    border: 1px solid var(--border);
    border-radius: 5px;
    padding-bottom: 30px;
    border: 1px solid var(--hover);
    position: relative;
}

.login-form h3 {
    margin-top: 10px;
}

.login-form span {
    font-size: 12px;
    position: absolute;
    right: 36px;
}

.login-form input {
    padding: 5px;
    background-color: var(--main);
    border: 1px solid var(--hover);
    width: 280px;
    height: 35px;
    border-radius: 5px;
    color: var(--text);
    font-size: 14px;
    transition: 0.5s;
    outline: none;
}

.login-form input:focus {
    outline: none !important;
    border: 1px solid var(--hover);
    box-shadow: 0 0 8px var(--hover);
    transition: 0.5s;
}

.btn-custom {
    margin: 5px;
    cursor: pointer;
    font-weight: bold;
    background-color: var(--bg) !important;
}

.btn-custom:hover {
    background-color: var(--main) !important;
}

.remember-checkbox {
    margin: 0 !important;
    width: 15px !important;
    height: 17px !important;
}

.check-title {
    margin-right: 6px;
}

.remember-login {
    display: flex;
    text-align: center;
    align-items: center;
    width: 80%;
    margin: 20px auto 15px auto;
    font-size: 13px;
}

.label-input {
    text-align: right;
    margin: 5px 35px 5px 0;
}

.other-auth {
    text-align: right;
    margin-right: 35px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 400;
}

.other-auth a {
    color: #e2ae02;
    text-decoration: underline;
    font-size: 13px;
}

.forget-pass {
    margin-bottom: 10px;
}

.input-error {
    color: red;
    margin-top: 38px;
    font-size: 10px !important;
}

.border-error {
    border: 1px solid red !important;
    box-shadow: 0 0 8px red !important;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    50% {
        transform: translateX(4px);
    }

    75% {
        transform: translateX(-4px);
    }

    100% {
        transform: translateX(0);
    }
}

.shake {
    animation: shake 0.2s ease-in-out;
}

/* end auth */

/* sweetAlert */
div:where(.swal2-container) div:where(.swal2-popup) {
    background-color: var(--simillar) !important;
}

.swal2-title {
    color: #b6b6b6;
}

.swal2-html-container {
    color: #b6b6b6 !important;
}

/* search spinner */
.spinner-border {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border: 0.15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 1s linear infinite;
    vertical-align: text-bottom;
    margin: 0 auto;
    text-align: center;
    color: var(--hover) !important;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* end speaner spinner */

/* my alert */
.alert {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    background-color: rgb(194, 39, 0);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    transition: bottom 0.5s ease-in-out;
    border-radius: 7px;
    z-index: 999999 !important;
}

.alert.success {
    background-color: green;
}

.added-alert {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 230px;
    background-color: rgb(194, 39, 0);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    transition: bottom 0.2s ease-in-out;
    border-radius: 7px;
    z-index: 999999 !important;
}

.added-alert.success {
    background-color: green;
}

.time-title {
    margin-bottom: 14px;
    display: flex;
    color: var(--bg);
}

.time-change {
    font-size: 14px;
    margin-right: 20px;
}

.ral {
    position: relative !important;
    text-align: right !important;
}

.text-check {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.checkbox {
    position: absolute;
    bottom: -6px;
    width: 13px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important
}
.checkbox-b0 {
    position: absolute;
    bottom: 0px !important;
    width: 13px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important
}
.checkbox:focus {
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
}

.checkbox-age {
    width: 13px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important
}

.checkbox-select {
    width: 18px !important;
    height: 18px !important;
}

.checkbox-age:focus {
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
}

.checkbox-permission {
    position: absolute;
    right: 5px;
    width: 24px !important;
    height: 24px !important;
}

.checkbox-permission:checked {
    background-color: #009688;
    color: rgb(245, 8, 8);
}

.custom-input[disabled] {
    color: #999;
}

.check-child {
    width: 80%;
    padding: 5px;
    margin-right: 20px;
    margin: 0 auto;
}

.grayed-out {
    opacity: 0.4;
}

.checkSelectErr {
    right: 5px;
    position: absolute;
    top: 64px;
}

/* live search back */
.search-back {
    width: 99.5%;
    height: auto;
    max-height: 380px;
    background-color: var(--main);
    position: absolute;
    top: 65px;
    border-radius: 10px;
    overflow-y: auto;
    transition: 0.9s;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-left: 1px solid var(--border);
    border-top: none;
    z-index: 1000 !important;
    text-align: center;
    display: none;
    list-style-type: none;
    padding: 0;
}

.item-search-back {
    width: 99.5%;
    height: auto;
    max-height: 380px;
    background-color: var(--main);
    position: absolute;
    top: 40px;
    border-radius: 10px;
    overflow-y: auto;
    transition: 0.9s;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-left: 1px solid var(--border);
    border-top: none;
    z-index: 1000 !important;
    text-align: center;
    display: none;
    list-style-type: none;
    padding: 0;
}
.top40{
    top: 40px !important;
}
.search-item {
    text-align: right !important;
}

.search-item {
    padding: 7px 10px;
    cursor: pointer;
}

.search-item:hover {
    background-color: var(--border);
}

.selected {
    background-color: var(--border);
}

.edit-btn {
    width: 50px !important;
    padding: 2px 4px;
    position: absolute;
    left: 6px;
    background-color: var(--bg) !important;
    color: var(--btn-text) !important;
    transition: all .3s ease-in;
    border-radius: 3px !important;
    border: 1px solid var(--bg);
}

.edit-btn:hover {
    background-color: var(--main) !important;
    color: var(--text) !important;
    border: 1px solid var(--orange);
}

::-webkit-scrollbar {
    width: 8px !important;
}

::-webkit-scrollbar-track {
    background-color: var(--simillar);
}

::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.option {
    font-size: 25px !important;
}

/* start loading */
.loader {
    margin-top: 45px !important;
    margin-bottom: 25px !important;
    width: 30px;
    --b: 5px;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 1px;
    background: conic-gradient(#0000 10%, var(--bg)) content-box;
    -webkit-mask:
        repeating-conic-gradient(#0000 0deg, #000 1deg 20deg, #0000 21deg 36deg),
        radial-gradient(farthest-side, #0000 calc(100% - var(--b) - 1px), #000 calc(100% - var(--b)));
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
    animation: l4 1s infinite steps(10);
}

@keyframes l4 {
    to {
        transform: rotate(1turn)
    }
}

.a-spiner {
    margin: 20px auto 0 auto;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* start progress terms */
.progress_term {
    width: 200px;
    height: 10px;
    border-radius: 20px;
    -webkit-appearance: none;
    appearance: none;
}

.progress_term::-webkit-progress-bar {
    background-color: #f3f3f3;
    border-radius: 10px;
}

.progress_term::-webkit-progress-value {
    background-color: #4caf50;
    border-radius: 10px;
    animation: colorChange 2s infinite alternate;
}

.progress_term::-moz-progress-bar {
    background-color: #4caf50;
    border-radius: 10px;
    animation: colorChange 2s infinite alternate;
}

@keyframes colorChange {
    0% {
        background-color: #4caf50;
    }

    100% {
        background-color: #ff9800;
    }
}

.waiting_progress_term {
    width: 200px;
    height: 10px;
    border-radius: 20px;
    -webkit-appearance: none;
    appearance: none;
}

.waiting_progress_term::-webkit-progress-bar {
    background-color: #f3f3f311;
    border-radius: 10px;
}

.waiting_progress_term::-webkit-progress-value {
    background-color: #f3f3f349;
    border-radius: 10px;
    animation: colorChange 2s infinite alternate;
}

.waiting_progress_term::-moz-progress-bar {
    background-color: #f3f3f349;
    border-radius: 10px;
    animation: colorChange 2s infinite alternate;
}

@keyframes colorChange {
    0% {
        background-color: #4caf50;
    }

    100% {
        background-color: #ff9800;
    }
}

/* end loading */
/* end progress terms */

/* modals */
.modalInfo {
    display: none;
    position: fixed;
    z-index: 6;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.modalClose {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.modalClose:hover,
.modalClose:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.show-modal-img {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover,
.close:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
}

/* end show modal img */

.modal {
    display: none;
    position: fixed;
    z-index: 6;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.596);
    text-align: center;
}

.modal-content {
    background-color: var(--main);
    margin: 15% auto;
    padding: 6px 10px 10px 10px;
    border: 1px solid var(--border);
    width: 30%;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 22px;
    font-weight: bold;
}

.close:hover {
    color: red;
    text-decoration: none;
    cursor: pointer;
}

.content-area {
    background-color: var(--main);
    padding: 10px;
    width: 97%;
    max-width: 97%;
    height: 110px;
    color: var(--text);
    font-size: 14px;
}

/* invoice print */
.invoice-print {
    display: flex;
    gap: 6px;
}

.invoice-print input {
    width: 16px !important;
    height: 16px;
    margin: 0 !important;
}

/* content flex */
.content-flex {
    display: flex !important;
    justify-content: space-between !important;
}

/* show price */
.show-eye {
    position: absolute;
    width: 20px;
    color: var(--text) !important;
    left: 10px;
    line-height: 15px;
    top: 35px;
}

/* pagination */
.page-item>a {
    color: var(--text);
    margin: 2px;
    padding: 2px 7px;
    background-color: var(--main);
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s;
}

.page-item>a:hover {
    color: var(--main);
    background-color: var(--orange);
}

/* detailes page */
.detailes-culomn {
    margin: 5px auto;
    width: 96%;
    height: auto;
    background-color: var(--simillar);
    justify-content: space-between;
    padding: 3px 10px;
    transition: 0.3s;
}

.detailes-culomn:hover {
    background-color: var(--border);
}

.label-term {
    text-align: center !important;
}

.radio-term {
    height: 20px !important;
}

/* tooltip cost add-student */
.tooltip {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    z-index: 1000;
}

.tool-c {
    position: absolute;
    display: inline-block;
    cursor: pointer;
}
.check-time{
    position: absolute;
    width: 13px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    right: 0px;
    bottom: 32px;
}
.check-active{
    position: absolute;
    width: 13px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    right: 0px;
    bottom: -3px;
}
.check-time-lable {
    font-size: 14px;
    margin-right: 8px;
}
.input-disabled {
    background: #e5e5e5;
    cursor: not-allowed;
    opacity: .7;
}
.tool-t {
    visibility: hidden;
    width: max-content;
    max-width: 350px;
    background-color: #141414;
    color: #fff;
    text-align: center;
    padding: 8px 12px;
    border-radius: 5px;
    position: absolute;
    z-index: 10000;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    font-size: 14px;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.tool-arrow {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #141414;
}

.tool-c:hover .tool-t {
    visibility: visible;
    opacity: 1;
}

/* end tooltip for all sections */

/* start help */
.help-left {
    left: 2px;
    top: 2px;
}

.help {
    opacity: 0.6;
    transition: 0.3s;
}

.help:hover {
    opacity: 1;
}

/* radio in attendance */
.input-radio {
    margin: 0 auto 0 auto !important;
    line-height: 20px;
    width: 20px !important;
    height: 20px !important;
    display: flex;
}

/* accourdion menu employees */
.accordion-select {
    width: 100% !important;
    margin: 6px auto 20px auto !important;
    direction: rtl;
}

.accordion-item-select {
    border-radius: 5px;
    border: 1px solid var(--hover);
    margin: 5px 0 !important;
}

.accordion-button-select {
    border-radius: 5px;
    background-color: var(--main);
    border: none;
    width: 100%;
    text-align: right;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    position: relative;
    transition: 0.4s;
}

.accordion-button-select:hover {
    background-color: var(--hover);
}

.accordion-button-select::before {
    content: none;
}

.accordion-content-select {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-right: 10px;
}

.accordion-content-select.open {
    max-height: 500px;
    text-align: center !important;
}

.accordion-content-select label {
    display: block;
    margin: 10px 0;
    padding-right: 30px;
}

.main-checkbox-select {
    display: none;
}

.checkbox-container {
    display: flex !important;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    right: 0;
    height: 20px !important;
    width: 20px !important;
    background-color: #ccc !important;
    border-radius: 50% !important;
    transform: translateY(-50%);
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--bg) !important;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    right: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.permision {
    padding: 50px 10px;
    height: 500px;
    overflow-y: scroll;
}
.ho{
    max-height: 200px !important;
    overflow: auto;
}
.hover {
    padding: 5px !important;
}

.hover:hover {
    background-color: var(--border);
}

.bb {
    border-bottom: 1px solid var(--orange);
}

.generate-pdf {
    padding: 7px 15px;
    background-color: var(--bg);
    color: var(--btn-text);
    border: none;
    border-radius: 5px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    transition: 0.4s;
    border: 1px solid var(--bg);
}

.btn-icon {
    width: 117px;
    height: 30px;
    text-align: center;
    margin: 0 auto;
    justify-content: space-around;
}

.back-sale {
    padding: 7px 15px;
    background-color: var(--bg);
    color: var(--btn-text);
    border: none;
    border-radius: 5px;
    position: fixed;
    bottom: 80px;
    left: 20px;
    transition: 0.4s;
    border: 1px solid var(--bg);
}

/* search database infos */
.search-database {
    background-color: var(--main);
    border: 1px solid var(--border);
    position: relative;
    width: 90% !important;
}

.search-icon-database {
    position: absolute;
    left: 0;
    top: 1px;
    z-index: 2;
}

/* end accourdion menu employees */
.img-text {
    justify-content: space-around !important;
    align-items: center !important;
}

/* start take photo student  */
.student_photo {
    width: 230px;
    height: 300px;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.student_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.capture-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg);
    padding: 5px 10px;
    cursor: pointer;
    display: block;
    width: 80%;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--btn-text);
    font-weight: bold;
    font-size: 17px;
}

.modal-student {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 1000;
}

.modal-student.active {
    display: block;
}

.video-wrapper {
    width: 100%;
    position: relative;
    padding-top: 133.33%;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.overlay-photo {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.overlay-photo.active {
    display: block;
}

.take-photo {
    background-color: var(--bg);
    padding: 4px 10px;
    border-radius: 5px;
    color: var(--text);
    width: 40%;
}

.cancel-take-photo {
    background-color: var(--orange);
    padding: 5px 10px;
    border-radius: 5px;
    color: var(--main2);
    width: 40%;
}

/* end take photo stduent */

/* custom tooltip */
.ctc {
    position: fixed;
    display: inline-block;
}

.ct {
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    z-index: 99999 !important;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    white-space: normal;
    word-wrap: break-word;
    max-width: 200px;
    box-sizing: border-box;
    height: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ctc:hover .ct {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(10px);
}

/* tooltip details discount */
.tool-discount {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.tool-discount[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(12, 10, 10, 0.89);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    max-width: 200px !important;
    width: max-content;
    word-wrap: break-word;
    white-space: normal;
    font-size: 14px;
    opacity: 1;
    visibility: visible;
    z-index: 100;
    text-align: justify;
    line-height: 1.5;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.tool-discount[data-tooltip]:hover::before {
    min-width: 150px;
    max-width: 380px;
    word-break: break-word;
}

.tool-discount[data-tooltip="تخفیف ثبت نشده"] {
    cursor: default;
}

.tool-discount[data-tooltip="تخفیف ثبت نشده"]:hover::before {
    display: none;
}

.teacher-select {
    background-color: var(--main);
    border: none;
    width: 200px;
    height: 30px;
    padding: 4px;
    border-radius: 4px;
    color: var(--text);
    font-size: 14px;
    outline: none;
    border: 1px solid var(--bg);
}

.teacher-select option {
    font-size: 16px;
}

.scroll-attendance {
    overflow: auto !important;
}

.reason_vocation {
    width: 50px !important;
    background-color: var(--main);
    border: none;
    height: 30px;
    padding: 4px;
    border-radius: 3px;
    color: var(--text);
    font-size: 16px;
    transition: 0.5s;
    outline: none;
    border: 1px solid var(--bg);
}

.reason_vocation:focus {
    outline: none !important;
    border: 1px solid var(--hover);
    box-shadow: 0 0 8px var(--hover);
    transition: 0.5s;
    width: 300px !important;
}

.disabled-input {
    border: 1px solid rgba(53, 53, 53, 0.925);
    cursor: not-allowed;
}

.attendance-checkbox {
    width: 20px;
    height: 20px;
}

.attendance-checkbox:checked:disabled {
    background-color: rgba(35, 35, 255, 0.966) !important;
    appearance: none;
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
}

.attendance-checkbox:checked:disabled::after {
    content: "✔";
    color: white;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.select-error {
    background-color: rgba(255, 8, 8, 0.199) !important;
}

.select-error option {
    background-color: var(--main) !important;
}

/* print */
.form-container {
    width: 210mm;
    height: 297mm;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    font-size: 12pt;
    background-color: #fff;
}

/* start invoice form for print */
.top-inv {
    justify-content: space-between;
}

.color-print {
    color: black !important;
}

.top-inv-logo img {
    width: 110px;
}

.top-desc-one {
    justify-content: space-between;
}

.top-desc-two {
    justify-content: space-between;
}

.table-print>tbody>tr>.num {
    width: 40px;
    text-align: center !important;
    background-color: #ffe699;
}

/* tabel print */
.table-print {
    background-color: #1a191946;
    border-collapse: collapse;
}

.color-culomn {
    background-color: #83828213 !important;
}

.table-print>thead>tr>th,
.table-print>tbody>tr>td {
    border: 1px solid #000;
}

.table-print>tbody>tr>td {
    padding-right: 3px;
    height: 30px;
}

.table-print>th {
    background-color: #f4c542;
    font-weight: bold;
}

.table-print>tbody>tr {
    background-color: #fff;
}

/* end invoice form for print */

/* end pring */

/* search database infos */
.search-database {
    background-color: var(--main);
    position: relative;
    width: 99%;
}

.search-icon-database {
    position: absolute;
    left: 0;
    top: 29px;
    z-index: 2;
}

.search-database-s {
    background-color: var(--main);
    position: relative;
    width: 30%;
}

.search-icon-database-s {
    position: absolute;
    left: 0;
    top: 2px;
    z-index: 2;
}

.search-filter {
    width: 70% !important;
}

/* active page */
.active-page {
    background-color: #ff9800 !important;
    color: #1b1a1a !important;
    border-radius: 4px;
    font-weight: bold;
}

/* media query */
@media screen and (max-width: 1200px) {
    .report .report-item {
        width: calc(50% - 20px);
        margin-top: 20px;
    }

    .search-content {
        width: 100% !important;
    }
}

@media screen and (max-width: 1300px) {
    .mini-container {
        width: 70% !important;
    }
}
@media screen and (max-width: 630px) {
    .content-container-k {
        overflow-x: auto;
    }
}

@media screen and (max-width: 1572px) {
    .search-back {
        font-size: 15px;
    }

    .edit-btn {
        font-size: 11px !important;
        width: 40px !important;
    }
}

@media screen and (max-width: 1500px) {
    .search-database-s {
        width: 50%;
    }
}

@media screen and (max-width : 992px) {
    .sidebar {
        transform: translateX(100%);
        right: 0;
    }

    .content {
        margin-right: 0;
    }

    .appbar {
        margin-right: 0;
        width: 100%;
    }

    .sidebar.active {
        transform: translateX(0%);
    }

    #menu-toggle.active {
        opacity: 1;
        visibility: visible;
    }

    .mini-container {
        width: 100% !important;
        padding: 20px !important;
    }
}

@media screen and (max-width: 576px) {
    .report .report-item {
        width: 100%;
    }

    .search-back {
        font-size: 13px;
    }

    .edit-btn {
        font-size: 9px !important;
        width: 36px !important;
    }

    .table-info {
        position: sticky !important;
        width: 100% !important;
        font-size: 12px !important;
    }

    .waiting_progress_term {
        display: none;
        visibility: hidden;
    }

    .progress_term {
        display: none;
        visibility: hidden;
    }

    .d576-none {
        display: none;
        visibility: hidden;
    }

    .class_infos {
        display: block !important;
        text-align: center !important;
    }
}

/* appbar */
@media screen and (max-width: 770px) {
    .appbar-search {
        display: none !important;
    }

    .mm0 {
        margin: 0 !important;
    }

    .content-container {
        width: 100% !important;
    }

    .box-container {
        width: 100% !important;
        padding: 20px !important;
    }

    .mini-container {
        width: 100% !important;
        padding: 20px !important;
    }

    .search-content {
        width: 100% !important;
        padding: 20px !important;
    }

    .inputs {
        display: block !important;
    }

    .modal-content-help {
        width: 90%;
    }

    .modal-content {
        width: 90%;
    }

    .search-database-s {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .tool-t {
        position: fixed !important;
        top: 15% !important;
        left: 50% !important;
        bottom: auto !important;
        transform: translateX(-50%) !important;
        max-width: 90vw;
        padding: 12px 16px;
        text-align: center;
        border-radius: 8px;
    }

    .tool-arrow {
        display: none;
    }
}