html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 170px;
}


body {
    padding-right: 0px !important;
    font-size: 17px;
    font-family: 'Inter', '微軟正黑體', sans-serif;
    letter-spacing: 1px;
}

/* ----basic setting ----- */

:root {
    --website-color: #1b78da;
    --main-color: #1b78da;
    --vice-color: #696C72;
    --dark-color: #383D44;
    --darkgray-color: #54575B;
    --gray-color: #CCCCCC;
    --lightgray-color: #E4E4E4;
    --green-color: #83AF78;
    --orange-color: #F08548;
    --red-color: #dc6e6e;
    --yellow-color: #F5B50F;
    --robinblue-color: #6cbdc2;
    --lightgreen-color: #A2CE5A;
    /* light series */
    --main-color-l: rgba(27, 119, 218, 0.1);
    --green-color-l: rgba(131, 175, 120, 0.1);
    --red-color-l: rgba(224, 72, 72, 0.08);
    --yellow-color-l: rgba(245, 180, 15, 0.08);
	--primary-color: #5bb99d;
	--transparent-color:rgba(255,255,255,0.1);
}

a {
    color: var(--main-color);
    cursor: pointer;
    text-decoration: none;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;

}

a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
    color: var(--main-color);
    cursor: pointer;
}

img {
    border: 0;
    padding: 0;
    margin: 0;
    vertical-align: middle;
    width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
label {
    margin: 0;
    padding: 0;
    list-style: none;
}

.divide-dashed {
    border-top: 1px dashed #ccc;
    margin: 5px 0;
}

/* ----basic setting end ----- */


/* ---- sidenav & main-ct ----- */
.os-flex {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
    min-height: calc(100vh - 60px);
}


.side-nav {
    transition: .3s ease;
    width: 240px;
    max-height: calc(100vh - 60px);
    position: fixed;
    background-color: rgba(24, 130, 243, 0.15);
    z-index: 1;
}

.side-sticky {
    height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
}


.main-ct {
    transition: .3s ease;
    position: sticky;
    margin-left: 240px;
    top: 60px;
    min-height: calc(100vh - 60px);
    width: calc(100% - 240px);
    padding: 20px 30px 50px;
    background-color: #f0f7fe;
}

.content.off {
    display: none;
    opacity: 0;
    /* transition: opacity .7s ease; */
}

.content.on {
    animation: showOff .5s cubic-bezier(.69, .14, .83, .67) 0s 1 both;
}

@keyframes showOff {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 1440px) {
    .main-ct {
        padding: 30px 50px;
    }
}

@media (max-width: 992px) {
    .main-ct {
        margin-left: 0;
        width: 100%;
        padding: 30px 15px;
    }
}

@media (max-width: 576px) {
    .main-ct {
        padding: 30px 15px 80px;
    }
}

.content {
    padding: 30px;
    background-color: #fff;
    transition: .3s ease;
    border-radius: 5px;
    margin-bottom: 15px;
    border-top: 3px solid rgba(27, 119, 218, 0.2);
}

@media (max-width: 768px) {
    .content {
        padding: 20px 15px;
    }
}

/* ---- sidenav & main-ct end ----- */

/* ----- header ----- */

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #0065d0;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

header .logo {
    width: 280px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

header .logo a {
    width: 100%;
}

header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .3s ease;
}

@media (max-width: 576px) {
    header .logo {
        width: 290px;
    }
}

header .logout {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    font-size: 20px;
}

header .logout .admin {
    color: var(--lightgray-color);
    width: 100%;
    text-align: center;
}

header .logout a span {
    display: inline-block;
}

header .logout a {
    text-align: center;
    display: block;
/*    width: 110px;*/
    min-width: 110px;
    font-weight: 800;
    color: var(--lightgray-color);
}

header .logout a i {
    font-size: 20px;
}


.nav-menu {
    overflow-y: scroll;
    margin: 0;
    padding: 0;
    height: 100%;
}


.nav-menu::-webkit-scrollbar {

    width: 7px;

}

.nav-menu::-webkit-scrollbar-button {
    background: transparent;
    border-radius: 4px;

}

.nav-menu::-webkit-scrollbar-track-piece {

    background: transparent;

}

.nav-menu::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(102, 102, 102, 0.2);
}

.nav-menu::-webkit-scrollbar-track {
    box-shadow: transparent;
}

.nav-menu ul {
    padding: 0;
    margin: 0;
}

.nav-menu>ul>li {
    position: relative;
    list-style: none;
}


.nav-menu>ul>li>a {
    display: flex;
    position: relative;
    height: 50px;
    padding: 10px 20px;
    transition: 0.3s;
    font-size: 18px;
    text-align: left;
    letter-spacing: 3px;
    color: #276eb9;
    border-bottom: 1px solid rgba(27, 119, 218, 0.1)
}

.nav-menu>ul>li>a>i {
    display: inline-block;
    margin-right: 3px;
    text-align: center;
    width: 30px;
}

.nav-menu>ul>.active>a,
.nav-menu .drop-down.on>a,
.nav-menu>ul>li:hover>a {
    color: rgba(255, 255, 255, .8);
    background-color: #258af4;
}

.nav-menu>ul>.active>a {
    font-weight: 900;
    color: #fff;
}

.nav-menu .drop-down>a {
    display: flex;
    align-items: center;
    position: relative;
}


.nav-menu .drop-down>a::after {
    display: block;
    content: '\f078';
    font-size: 16px;
    font-family: 'Font Awesome 6 Pro';
    transition: .3s ease;
    color: var(--website-color);
    position: absolute;
    right: 15px;
}

.nav-menu .drop-down .drop-down>a::after {
    color: #aaa;
}

.nav-menu .drop-down:hover>a::after {
    color: rgba(255, 255, 255, 0.5);
}

.nav-menu,
.drop-down .drop-down:hover>a::after {
    color: var(--main-color);
}

.nav-menu .drop-down.active>a::after,
.nav-menu .drop-down.on>a::after {
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.5);
}

.nav-menu .drop-down .drop-down.active>a::after,
.nav-menu .drop-down .drop-down.on>a::after {
    color: var(--main-color);
}

.nav-menu .drop-down>ul {
    background-color: rgba(255, 255, 255, 0.5);
}



.nav-menu .drop-down>ul li {
    list-style: none;
    display: block;
}

.nav-menu .drop-down>ul>li a {
    display: flex;
    position: relative;
    padding: 8px 20px 8px 25px;
    word-break: break-all;
    transition: 0.3s ease;
    font-size: 17px;
    text-align: left;
    letter-spacing: 2px;
    color: #888;
}

.nav-menu .drop-down>ul>li>a::before {
    content: '-';
    display: block;
    margin-right: 5px;
}

.nav-menu .drop-down>ul>li.on>a,
.nav-menu .drop-down>ul>li:hover>a {
    color: var(--main-color);
    background-color: rgba(255, 255, 255, 0.45);
}

.nav-menu .drop-down>ul>li.active>a {
    color: var(--main-color);
    background-color: rgba(255, 255, 255, 0.45);
    font-weight: 900;
}

.nav-menu .drop-down .drop-down>a {
    transition: .3s ease;
}


.nav-menu .drop-down .drop-down ul a {
    font-size: 16px;
    display: flex;
    align-items: center;
    color: #aaa;
}

.nav-menu .drop-down .drop-down ul a::before {
    content: '';
    display: block;
    margin-right: 10px;
    width: 5px;
    height: 5px;
    background-color: #a3a3a3;
}

.nav-menu .drop-down .drop-down.active ul .active a {
    font-weight: 500;
}

.nav-menu .drop-down .drop-down.active ul .active a::before {
    background-color: rgba(27, 119, 218, 1);
}

/* ----- header end----- */



/* ----- mobile nav ----- */
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    background: #fafafa;
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: var(--darkgray-color);
    padding: 10px 20px;
    transition: 0.3s;
    border-bottom: 1px solid #eee;
}

.mobile-nav a i {
    margin-right: 10px;
}


.mobile-nav>ul>.active>a,
.mobile-nav>ul>li:hover>a {
    color: var(--website-color);
    text-decoration: none;
    background-color: var(--main-color-l);
}



.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa0";
}



.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
    background-color: #fff;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav .drop-down li a {
    font-size: 15px;
    transition: .3s ease;

}

.mobile-nav .drop-down li.active a,
.mobile-nav .drop-down li:hover a {
    color: var(--website-color);
}

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 13px;
    z-index: 1020;
    border: 0;
    background: none;
    font-size: 25px;
    transition: all 0.3s;
    outline: none !important;
    line-height: 1;
    padding: 0;
}

.mobile-nav-toggle i {
    color: var(--lightgray-color);
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 1010;
    top: 0;
    left: 0;
    position: fixed;
    background: var(--website-color);
    opacity: .8;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: var(--lightgray-color);
}

.mb-admin {
    font-weight: 800;
    color: var(--website-color);
    text-align: center;
    font-size: 20px;
}

.mb-admin i {
    margin-right: 5px !important;
}

.mobile-nav .mb-admin {
    font-weight: 800;
    color: var(--website-color);
    padding: 10px 20px;
}

/* ----- mobile-nav end ----- */


/* ----- component ----- */

h1 {
    font-weight: bold;
    color: var(--dark-color);
    font-size: 30px;
    letter-spacing: 1px;
    transition: .3s ease;
}

h2 {
    font-weight: bold;
    color: var(--darkgray-color);
    font-size: 25px;
    letter-spacing: 1px;
    transition: .3s ease;
}

h3 {
    font-weight: bold;
    color: var(--main-color);
    font-size: 20px;
    letter-spacing: 1px;
    transition: .3s ease;
}

h3.dark {
    color: var(--darkgray-color);
}

@media (max-width: 768px) {
    h1 {
        font-size: 25px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

}

a.main-link {
    font-size: 15px;
    border-bottom: 1px dashed var(--orange-color);
}

.status {
    background-color: #fff;
    padding: 7px 30px;
    font-size: 15px;
    color: var(--main-color);
    margin-bottom: 15px;
    border-radius: 5px;
}

.status span {
    color: var(--red-color);
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    padding: 6px 20px 5px;
    border: none;
    border-radius: 0;
    color: var(--darkgray-color);
    background-color: #e7ecf0
}

@media (max-width: 576px) {
    .nav-tabs .nav-link {
        padding: 6px 12px;
        font-size: 15px;
    }
}

.nav-tabs .nav-link:not(:last-of-type) {
    border-right: 1px solid #ddd;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border-right: none;
    background-color: var(--main-color);
    color: #fff;
}

.section-page {
    padding: 30px 0;
}

@media (max-width: 992px) {
    .section-page {
        padding: 20px 0;
    }
}


.breadcrumb {
    background-color: transparent;
    padding: 0;
    justify-content: end;
    margin: 5px 0 10px;
    font-size: 14px;
    letter-spacing: 1px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "|";
    color: var(--gray-color);
}

.breadcrumb-item {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    height: fit-content;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: 200px;
}

.breadcrumb-item.active {
    max-width: unset;
}

.breadcrumb-item a {
    color: #aaaaaa;
}

.breadcrumb-item.active a {
    color: var(--main-color);
}

.modal-open {
    padding-right: 0px !important;
}

.modal-open .modal {
    padding-right: 0 !important;
}

.modal {
    padding-right: 0px !important;
    backdrop-filter: blur(4px);
}


@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px !important;
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .modal-dialog {
        max-width: 600px !important;
        margin: 0 auto;
    }
}

.modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.modal-content .modal-header {
    background-color: var(--dark-color);
    color: #fff;
}

.modal-content .modal-header .close {
    position: absolute;
    color: #fff;
    top: 17px;
    right: 17px;
}

.modal-backdrop {
    background-color: var(--main-color);
}



.modal label,
.modal input,
.modal select,
.modal textarea {
    width: 100%;
}



textarea {
    outline: none;
}

input {
    outline: none;
}

select {
    outline: none;
}

input:disabled,
select:disabled,
textarea:disabled {
    opacity: .7;
    background-color: #ebebeb;
    color: var(--darkgray-color);
}

input[type='checkbox'] {
    position: relative;
    width: unset !important;
    height: unset !important;
    height: 25px;
    width: 25px;
}

input[type='checkbox']::before {
    display: block;
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    top: -7px;
    left: -3px;
    border: 1px solid #e6e6e6;
    background-color: #fff;
    border-radius: 3px;
    z-index: 1;
}

input[type='checkbox']::after {
    display: flex;
    justify-content: center;
    align-items: center;
    content: '\f00c';
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    width: 25px;
    height: 25px;
    top: -7px;
    color: var(--red-color);
    left: -3px;
    transition: .3s ease;
    transform: scale(0);
    z-index: 2;
}

input[type='checkbox']:checked::after {
    transform: scale(1);
}

.togglebox {
    display: flex;
    justify-content: start;
    align-items: center;
}

input[type='checkbox'].toggleBtn {
    height: 25px !important;
}

input[type='checkbox'].toggleBtn::before {
    width: 50px;
    border-radius: 50px;
    background-color: #e6e6e6;
    transition: .3s ease;
    top: 0px;
}

input[type='checkbox'].toggleBtn::after {
    transform: none;
    content: '';
    border: 1px solid #e6e6e6;
    background-color: #fff;
    width: 23px;
    height: 23px;
    border-radius: 50px;
    top: 1px;
    left: -2px;
}

input[type='checkbox'].toggleBtn:checked::before {
    background-color: var(--main-color);
}

input[type='checkbox'].toggleBtn:checked::after {
    border: 1px solid var(--main-color);
    left: 23px;
}

.togglebox {
    display: flex;
    justify-content: start;
    align-items: center;
}

input[type='radio'] {
    position: relative;
    width: unset !important;
    height: unset !important;
}

input[type='radio']::after {
    position: absolute;
    display: block;
    width: 25px;
    height: 25px;
    content: '';
    top: -7px;
    left: -3px;
    border: 1px solid #e6e6e6;
    background-color: #fff;
    border-radius: 3px;
    z-index: 1;
}

input[type='radio']::before {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    content: '\f00c';
    font-family: 'Font Awesome 6 Pro';
    top: -7px;
    left: -3px;
    z-index: 2;
    transform: scale(0);
    transition: .3s ease;
    color: var(--red-color);
}

input[type='radio']:checked::before {
    transform: scale(1);
}

.check-box {
    width: fit-content;
    margin-right: 25px;
    align-items: center;
    display: inline-flex;
    margin: 4px 25px 4px 0;
}

.radio-box {
    width: fit-content;
    margin-right: 25px;
    align-items: center;
    display: inline-flex;
}

.radio-box label,
.check-box label {
    width: fit-content !important;
    min-width: unset !important;
}

.radio-box input,
.check-box input {
    margin-right: 15px;
}

.radio-box input:checked~label,
.check-box input:checked~label {
    color: var(--red-color);
}

input[type=file] {
    height: 40px !important;
    font-size: 15px;
    color: var(--main-color);
    letter-spacing: 1px;
}

input[type=file]::file-selector-button {
    margin-right: 10px;
    border: none;
    background: var(--main-color);
    padding: 2px 20px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: opacity .2s ease;
}

input[type=file]::file-selector-button:hover {
    opacity: .85;
}

.address-box {
    width: 100%;
    display: flex;
}

.address-box>div {
    width: 100% !important;
}

@media (max-width: 576px) {
    .address-box {
        flex-wrap: wrap;
    }
}

.address-box>div .select2-container {
    width: 100% !important;
}

.fm-group .select2-container,
.editbox .select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    padding: 5px 10px;
    height: 35px;
    width: 100%;
}
.w-50{
width: 50%;
}

.fm-group {
    width: 100%;
}

.fm-group label {
    display: block;
    color: #333;
}

.fm-group input,
.fm-group textarea {
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    padding: 5px 10px;
    height: 35px;
    width: 100%;
}

.fm-group textarea {
    height: auto;
}

.fm-group select {
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    padding: 5px 10px;
    height: 35px;
    width: 100%;
}

.fm-button {
    height: 100%;
    display: flex;
    align-items: end;
}

.num-counter {
    display: flex;
    width: 100%;
    align-items: center;
}

.num-counter input {
    width: 80px;
    text-align: center;
    border: 1px solid rgba(27, 119, 218, 0.3);
}

.num-counter input[type=number]::-webkit-outer-spin-button,
.num-counter input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.num-counter input[type=number] {
    -moz-appearance: textfield;
}

.num-counter i {
    display: block;
    width: 35px;
    line-height: 35px;
    text-align: center;
    height: 35px;
    color: var(--dark-color);
    background-color: rgba(27, 119, 218, 0.1);
    border-radius: 3px;
    margin: 0 3px;
}

.num-counter i:hover {
    cursor: pointer;
}

.btn-list {
    display: flex;
    flex-wrap: wrap;
    margin: 5px 0;
    justify-content: end;
}

/* .btn-list .dropdown, */
.btn-list button {
    margin: 2px 0px 2px 5px;

}

button {
    /* height: 35px; */
    color: #fff;
    padding: 4.8px 15px;
    border-radius: 5px;
    outline: none;
    border: none;
    letter-spacing: 1.5px;
    transition: .3s ease;
}

@media (max-width: 576px) {
    button {
        font-size: 15px;
    }
}

button:hover {
    opacity: .85;
}

button:focus {
    outline: none;
}

button.small {
    /* height: 28px; */
    padding: 3px 6px;
    margin-bottom: 3px;
}

button.main {
    background-color: var(--main-color);
}

button.main-light {
    background-color: rgba(87, 147, 216, 0.6);
}

button.back {
    background-color: #d7e1ea;
    color: var(--vice-color);
}

button.print {
    background-color: var(--green-color);
}

button.print:hover {
    color: #fff;
    opacity: .85;
}

.swal2-container button {
    height: unset !important;
}

.dropdown {
    display: inline-block;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--main-color-l);
    color: var(--dark-color);
}

.dropdown-menu {
    border: 1px solid #eee;
}

button.edit {
    background-color: var(--orange-color);
}

button.record {
    background-color: #555;
}

button.delete {
    background-color: var(--red-color);
}

button.stop {
    background-color: var(--red-color);
}

button.view {
    background-color: #868A90;
}

button.file {
    background-color: var(--yellow-color);
}

button.setting {
    background-color: var(--robinblue-color);
}

button.mail {
    background-color: var(--lightgreen-color);
}

button.main-border {
    background-color: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

button.red-border {
    background-color: #fff;
    color: var(--red-color);
    border: 1px solid var(--red-color);
}

button.ex-dl {
    background-color: #fff;
    color: var(--green-color);
    border: 1px solid var(--green-color);
}

button.cancel {
    background-color: var(--gray-color);
}

button.addLesson.active {
    background-color: #aaa;
}

button:disabled {
    background-color: #ccc;
    color: #eee;
    border: none;
}

button.trace {
    background-color: #fff;
    border: 1px solid #96d1c4;
    color: #96d1c4;
}

button.trace-finish,
button.trace.active {
    background-color: #96d1c4;
    color: #fff;
}

button.trace.off {
    background-color: #bbb;
    border-color: #bbb;
    color: #eee;
}

/* mark state */

.mark-state {
    padding: 2px 5px;
    min-width: 70px;
    width: 70px;
    text-align: center;
    font-size: 15px;
    background-color: #fff9d8;
    margin: 0 10px 0 0;
    transition: .3s ease;
}


.mark-red {
    background-color: rgb(255, 236, 236);
}

.mark-blue {
    background-color: rgb(214, 238, 252);
}

.mark-lightblue {
    background-color: rgb(234, 246, 253);
}

.mark-green {
    background-color: rgb(236, 255, 242);
}

.mark-gray {
    background-color: rgb(236, 236, 236);
}

.mark-darkgray {
    background-color: rgb(177, 177, 177);
    color: #fff;
}

.mark-orange {
    background-color: rgb(255, 229, 211);
}

@media (min-width: 1200px) {
    tr:hover .mark-state {
        background-color: #fff;
        color: #000;
    }

    tr:hover .mark-red {
        background-color: #fff;
        color: rgb(231, 136, 136);
    }

    tr:hover .mark-blue {
        background-color: #fff;
        color: rgb(88, 158, 216);
    }

    tr:hover .mark-lightblue {
        background-color: #fff;
        color: rgb(136, 188, 231);
    }

    tr:hover .mark-green {
        background-color: #fff;
        color: rgb(106, 156, 121);
    }

    tr:hover .mark-gray {
        background-color: #fff;
        color: rgb(134, 134, 134);
    }

    tr:hover .mark-darkgray {
        background-color: #fff;
        color: rgb(87, 87, 87);
    }

    tr:hover .mark-orange {
        background-color: #fff;
        color: rgb(240, 154, 93);
    }
}


/* mark state end */


.main-table {
    width: 100%;
}

.main-table th,
.main-table td {
    vertical-align: middle;
    padding: 5px 10px;
    font-weight: normal;
    font-size: 16px;
    word-break: break-all;
}

.main-table td .select2-container {
    width: 100% !important;
}

.main-table thead {
    background-color: var(--dark-color);
    color: #fff;

}

.main-table tbody tr {
    border-bottom: 1px solid #eee;
   /* transition: .3s ease;*/
}


@media (min-width: 1200px) {
    .main-table tbody tr:hover {
        background-color: var(--main-color-l) !important;
    }
}

.main-table tbody tr.lightgray-bg {
    background-color: #f7f7f7;
}


.main-table.light thead {
    font-weight: 800;
    color: var(--main-color);
    background-color: var(--main-color-l);
}

.main-table.light tbody tr:hover {
    background-color: transparent;
}

.main-table.light th,
.main-table.light td {
    text-align: center;
}

.main-table .total td,
.main-table .total th {
    font-weight: 800;
    font-size: 18px;
    background-color: #fff;
}

.main-table .abs-total td,
.main-table .abs-total th {
    background-color: var(--main-color-l);
}

.main-table .table-img {
    width: 100px;
    margin: 0 2px;
    display: inline-block;
    border: 1px solid #eee;
}

.main-table .red-mark {
    color: var(--red-color);
}

.main-table .func-btn-t {
    text-align: left;
}

.main-table .tract-state.timeout {
    color: var(--red-color)
}

.main-table .func-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
}

.main-table .func-btn button {
    margin: 2px 2px;
}


@media (max-width: 1200px) {
    .main-table:not(.scroll) .func-btn {
        width: 100%;
        justify-content: end;
    }

    .main-table:not(.scroll) thead {
        display: none;
    }

    .main-table:not(.scroll) tbody tr {
        border-bottom: 1px solid #c2e0ff;
        display: block;
        margin-bottom: 15px;
    }

    .main-table:not(.scroll) tbody tr.total {
        border-bottom-color: transparent;
    }

    .main-table:not(.scroll) tbody tr:hover {
        background-color: transparent;
        cursor: pointer;
    }

    .main-table:not(.scroll) td {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 1px solid #eee;
        transition: .3s ease;
        padding: 8px 0;
    }

    .main-table:not(.scroll) td[data-first-title] {
        font-size: 18px;
        font-weight: 700;
        color: var(--darkgray-color);
        justify-content: space-between;
    }

    .main-table:not(.scroll) td[data-first-title]::after {
        content: '\f0d7';
        font-family: 'Font Awesome 6 Pro';
        transition: .3s ease;
        color: var(--darkgray-color);
    }

    .main-table:not(.scroll) td[data-first-title].active::after {
        transform: rotate(180deg);
    }

    .main-table:not(.scroll) td[data-title] {
        display: none;
        transform-origin: top;
    }


    .main-table:not(.scroll) td[data-title].active {
        display: flex;
        animation: tdCtShow .3s ease 0ms 1 both;
    }

    @keyframes tdCtShow {
        from {
            opacity: 0;
            transform: scaleY(0);
        }

        to {
            opacity: 1;
            transform: scaleY(1);
        }

    }

    .main-table:not(.scroll) td.num {
        font-size: 17px;
        font-weight: 700;
    }

    .main-table:not(.scroll) td.func-btn {
        justify-content: end;
    }

    .main-table:not(.scroll) td.selectbox {
        padding: 15px;
    }

    .main-table:not(.scroll) td[data-title]::before {
        display: block;
        width: 100px;
        font-size: 15px;
        min-width: 100px;
        content: attr(data-title);
        color: var(--main-color);
    }

    .main-table:not(.scroll) td.selectbox::before,
    .main-table:not(.scroll) td.num::before,
    .main-table:not(.scroll) td.func-btn::before {
        display: none;
    }

    .main-table:not(.scroll) td.selectbox.gift::before {
        display: block;
    }


    .main-table:not(.scroll).light th,
    .main-table:not(.scroll).light td {
        text-align: unset;
    }

}

.scroll-table-wrap {
    height: fit-content;
    max-height: 70vh;
}

.scroll-table-wrap::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

@media (max-width: 768px) {
    .scroll-table-wrap::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

}

.scroll-table-wrap::-webkit-scrollbar-button {
    display: none;
}

.scroll-table-wrap::-webkit-scrollbar-track-piece {
    background: transparent;
}

.scroll-table-wrap::-webkit-scrollbar-thumb {
    border-radius: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.scroll-table-wrap::-webkit-scrollbar-track {
    box-shadow: transparent;
}

.main-table.scroll {
    table-layout: fixed;
    width: 100%;
}

.main-table.scroll thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: var(--dark-color);
}

.main-table.scroll tbody td {
    z-index: 1;
}

@media (max-width: 1600px) {
    .scroll-table-wrap.long {
        overflow-x: scroll;
    }

    .main-table.scroll.long {
        min-width: 1500px;
    }
}

@media (max-width: 1440px) {
    .scroll-table-wrap {
        overflow-x: scroll;
    }

    .main-table.scroll {
        min-width: 1020px;
    }


}

.infobox {
    display: flex;
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
}

.infobox .info-t {
    width: 120px;
    min-width: 120px;
    color: var(--main-color);
}

.infobox .info-ct {
    word-break: break-all;
    color: var(--darkgray-color);
}



.infobox-img {
    padding: 20px 10px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    width: 100%;
}

.infobox-img-t {
    text-align: center;
    margin-bottom: 10px;
    color: var(--main-color);
}

.infobox-img img {
    display: block;
    margin: 0 auto;
    width: 85%;
    height: 200px;
    object-fit: contain;
    transition: .3s ease;
}

@media (max-width: 576px) {
    .infobox {
        flex-wrap: wrap;
    }

    .infobox .info-t {
        font-size: 15px;
    }

    .infobox-img img {
        width: 100%;
    }
}


.editbox {
    display: flex;
    align-items: center;
}

@media (max-width: 576px) {}


.editbox label {
    display: block;
    width: 150px;
    min-width: 150px;
    color: var(--darkgray-color);
    font-size: 16px;
}

.editbox input,
.editbox textarea {
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    padding: 5px 10px;
    height: 35px;
    width: 100%;
    transition: .3s ease;
}

.editbox textarea {
    height: auto;
}

.editbox input:focus,
.editbox textarea:focus {
    border-color: var(--main-color);
}

.editbox select {
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    padding: 5px 10px;
    height: 35px;
    width: 100%;
}

@media (max-width: 480px) {
    .editbox {
        flex-wrap: wrap;
    }

    .editbox label {
        width: 100%;
        min-width: 100%;
        margin-bottom: 3px;
    }
}


.editbox-img {
    padding: 20px 10px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    width: 100%;
    height: 200px;
}

.editbox-img img {
    display: block;
    margin: 0 auto;
    width: 85%;
    height: 100%;
    object-fit: contain;
    transition: .3s ease;
}

@media (max-width: 576px) {
    .editbox-img img {
        width: 100%;
    }
}

.linkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color-l);
    padding: 20px;
    height: 140px;
    border-radius: 5px;
    transition: .3s ease;
}

.linkbox .box-ct {
    text-align: center;
    letter-spacing: 1.5px;
}

.linkbox h3 {
    color: var(--main-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.linkbox h6 {
    font-size: 15px;
    color: var(--darkgray-color);
}

.linkbox h6 span {
    color: var(--red-color);
}

.linkbox.green {
    background-color: var(--green-color-l);
}

.linkbox.green h3 {
    color: var(--green-color);
}

.linkbox.red {
    background-color: var(--red-color-l);
}

.linkbox.red h3 {
    color: var(--red-color);
}

.linkbox.yellow {
    background-color: var(--yellow-color-l);
}

.linkbox.yellow h3 {
    color: var(--yellow-color);
}

.dashboard-list {}

.dashboard {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 0 30px 0 0;
}

.dashboard h3 {
    text-align: left;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.dashboard h6 {
    text-align: right;
    color: #666;
}

.dashboard h6 span {
    color: var(--red-color);
}

.notice-text {
    color: var(--red-color);
    font-size: 15px;
}





.pagination {
    justify-content: center;
    margin: 25px 0 0;
}

.pagination li {
    display: block;
    padding: 2px 10px;
    margin: 0 5px;
    text-align: center;
    border-bottom: 1px solid #eee;
    transition: .3s ease;
}

.pagination li:hover,
.pagination li.active {
    border-bottom-color: var(--main-color);

}

.pagination li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #aaa;
}

.pagination li.active a,
.pagination li:hover a {
    color: var(--main-color)
}


.process-step {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    counter-reset: step-counter;
    padding: 0 0 25px;
}

.process-step li {
    counter-increment: step-counter;
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.process-step li a {
    color: #999;
    font-size: 18px;
    letter-spacing: 2px;
}

.process-step li.active a {
    font-weight: 900;
    color: var(--main-color)
}

.process-step li.inactive a {
    color: rgba(27, 119, 218, 0.6);
}

.process-step li::before {
    content: counter(step-counter);
    display: block;
    font-size: 20px;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 27px;
    border-radius: 10px;
    margin-right: 10px;
    border: 2px solid #eee;
    color: #ccc;
}

.process-step li.active::before {
    border-color: rgba(27, 119, 218, 0.3);
    color: rgba(27, 119, 218, 0.6);
}

.process-step li.inactive::before {
    border-color: rgba(27, 119, 218, 0.2);
    color: rgba(27, 119, 218, 0.3);
}

.process-step li:not(:last-of-type):after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
    border-color: #ccc;
    transform: rotate(45deg) translateY(-2px);
}

.process-step li:not(:last-of-type).active:after {
    border-color: rgba(66, 125, 189, 0.6);
}

.process-step li:not(:last-of-type).inactive:after {
    border-color: rgba(66, 125, 189, 0.3);
}


@media (max-width: 992px) {
    .process-step {
        align-items: start;
    }

    .process-step li {
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-step li a {
        width: 100%;
        text-align: center;
    }

    .process-step li::before {
        margin-right: 0;
    }

    .process-step li:not(:last-of-type):after {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-step li {
        margin: 0 10px;
    }

    .process-step li a {
        width: 100%;
        font-size: 15px;
        margin-top: 5px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .process-step li::before {
        font-size: 15px;
    }

    .process-step li a {
        font-size: 14px;
        letter-spacing: -.5px;
    }
}

.item-desc {
    margin-right: 5px;
}

.item-desc .item-desc-t {
    padding: 3px 15px;
    justify-content: center;
    display: flex;
    align-items: center;
    color: #aaa;
}

.item-desc .item-desc-t:hover {
    cursor: pointer;
}

.item-desc .item-desc-t i {
    transition: .3s ease;
    display: block;
    margin: 0 10px;
}

.item-desc .item-desc-t.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.item-desc .item-desc-ct {
    font-size: 15px;
}

.drag-control {
    color: #aaa;
    display: block;
}

.drag-control:hover {
    cursor: pointer;
}

.monthLedgersChart,
.monthLedgersChart2 {
    height: 100% !important;
    max-height: 350px;
    margin-bottom: 20px;
}

#orderReport {
    height: 100% !important;
    max-height: 450px;
}

#income-chart {
    height: 100% !important;
    min-height: 250px;

}

#expenditure-chart {
    height: 100% !important;
    min-height: 250px;
}

#expenditure-month-chart {
    height: 100% !important;
    min-height: 250px;
}

#income-month-chart {
    height: 100% !important;
    min-height: 250px;
}

#incomeOverviewChart,
#expOverviewChart,
#ledgersOverviewChart {
    height: 100% !important;
    max-height: 350px;
    margin-bottom: 20px;
}

#abs-chart {
    height: 100% !important;
    min-height: 350px;
}

@media (max-width: 992px) {
    #abs-chart {
        min-height: 300px;
    }
}

.order-itemList {
    font-size: 15px;
    color: var(--dark-color);
}

.order-itemList .fa-solide,
.order-itemList .fa-light {
    color: #ccc;
}

.order-itemList .fa-circle-check {
    color: var(--main-color);
}

.progress {
    flex-wrap: wrap;
    height: auto;
    min-height: 30px;
    background-color: #fff;
}

.progress-bar {
    height: 30px;
    width: auto;
    padding: 0 25px;
    background-color: #f8f8f8;
    color: #aaa;
}

.progress-bar:not(:last-of-type) {
    border-right: 1px solid #ccc;
}

@media (max-width: 768px) {
    .progress-bar {
        width: 100%;
    }

    .progress-bar:not(:last-of-type) {
        border-right: none;
    }
}

.progress-bar.inactive {
    background-color: var(--main-color-l);
    color: var(--main-color);
    border-right-color: rgba(27, 119, 218, 0.2);
}

.progress-bar.active {
    color: #fff;
    border-right-color: var(--main-color);
    background-color: var(--main-color);
}

.scorll-block {
    background-color: #f8f8f8;
    padding: 30px 20px;
    height: 450px;
    overflow-y: scroll;
}

@media (max-width: 768px) {
    .scorll-block {
        padding: 30px 15px;
    }
}

.scorll-block::-webkit-scrollbar {
    width: 7px;
}

@media (max-width: 768px) {
    .scorll-block::-webkit-scrollbar {
        width: 5px;
    }

}

.scorll-block::-webkit-scrollbar-button {
    background: transparent;
    border-radius: 4px;
    display: none;
}

.scorll-block::-webkit-scrollbar-track-piece {
    background: transparent;
}

.scorll-block::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(102, 102, 102, 0.1);
}

.scorll-block::-webkit-scrollbar-track {
    box-shadow: transparent;
}


.timeline {
    display: block;
}

.timeline li {
    padding: 10px;
    border-radius: 0px;
    background-color: #fff;
    display: flex;
    position: relative;
    margin-bottom: 20px;
}

.timeline li:not(:last-of-type):after {
    display: block;
    content: '';
    width: 5px;
    height: 50px;
    position: absolute;
    bottom: -50px;
    left: calc(50% - 2.5px);
    background-color: #eee;
}

.timeline li.timeline-mark {
    background-color: #f8f8f8;
    justify-content: center;
}

.timeline li.timeline-mark .mark-text {
    font-size: 18px;
    color: #888;
    font-weight: 900;
}

.timeline .timeline-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    font-size: 14px;
    border-radius: 5px;
    background-color: var(--gray-color);
    color: #fff;
    margin-right: 10px;
}

.timeline .timeline-icon.reply {
    background-color: var(--main-color);
}

.timeline .timeline-icon.manager {
    background-color: var(--red-color);
}

.timeline .timeline-ct {
    font-size: 15px;
    width: 100%;
}

.timeline .timeline-ct .timeline-t {
    font-size: 16px;
    font-weight: 900;
    margin: 0px 0px 5px;
}

.timeline .timeline-ct .timeline-text {
    line-height: 26px;
    letter-spacing: .6px;
    color: #666;
}

.timeline .timeline-time {
    position: absolute;
    right: 10px;
    color: #ddd;
    top: 10px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .timeline li:not(.timeline-mark) {
        padding-bottom: 40px;
    }

    .timeline .timeline-time {
        top: unset;
        bottom: 10px;
    }
}

/* ----- component end ----- */

/* ----- login ----- */




.login-flex {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/login-bg.webp);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}


.login-box {
    width: 420px;
    height: auto;
    border: 1px solid #fff;
    box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.6);
    padding: 15px 20px;
    border-radius: 15px;
}

@media (max-width: 992px) {
    .login-box {
        width: 400px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 5px;
        backdrop-filter: blur(4px);
        padding: 20px 15px 40px;
    }
}

@media (max-width: 420px) {
    .login-box {
        width: 100%;
        margin: 0 15px;
    }
}

.login-logo {
    width: 125px;
    margin: 0 auto;
}

.login-logo img {
    width: 100%;
}

@media (max-width: 992px) {
    .login-logo {
        width: 120px;
    }
}

.login-logotext {
    text-align: center;
}

.login-logotext h1 {
    font-size: 22px;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .login-logotext h1 {
        font-size: 22px;
    }
}

.login-logotext h6 {
    font-size: 13px;
    color: var(--main-color);
}

.recaptcha {
    width: 280px;
    margin: 0 auto;
}

/* ----- login end ----- */



/* ---- footer ---- */


footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

footer .copyright {
    font-size: 14px;
    text-align: center;
    color: rgba(27, 119, 218, 0.6);
    padding-bottom: 5px;
    opacity: .6;
}

/* ---- footer end---- */

.hidden {
    display: none !important;
}

.ui-sortable-helper {
    overflow: auto;
    display: flex;
}
.ui-sortable-placeholder>td:not(:first-child){
    display:none;
}

.holiday-cell .fc-daygrid-day-top {
    color: red !important;
}

.fc-event-red {
    color: red !important;
}
.lunar-date{
	font-size:15px;
}
