html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 170px;
}


body {
    padding-right: 0px !important;
    font-size: 17px;
    font-family: 'Poppins', '微軟正黑體', sans-serif;
    letter-spacing: 1px;
}

/* ----basic setting ----- */

:root {
    --main-color: #348cd4;
    --vice-color: #63afed;
    --dark-color: #383D44;
    --darkgray-color: #54575B;
    --gray-color: #CCCCCC;
    --lightgray-color: #E4E4E4;
    --green-color: #83AF78;
    --orange-color: #f39763;
    --red-color: #e74949;
    --yellow-color: #F5B50F;
    --robinblue-color: #28904f;
    --lightgreen-color: #A2CE5A;
    /* light series */
    --main-color-l: rgba(64, 168, 228, 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);
}

::selection {
    background: var(--main-color);
    color: #fff;
}

::-moz-selection {
    background: var(--main-color);
    color: #fff;
}

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;
}

/* ----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: 230px;
    max-height: calc(100vh - 60px);
    position: fixed;
    background-color: var(--main-color);
    z-index: 1;
}

.side-sticky {
    height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
}


.main-ct {
    transition: .3s ease;
    position: sticky;
    margin-left: 230px;
    top: 60px;
    min-height: calc(100vh - 60px);
    width: calc(100% - 230px);
    padding: 30px 30px 80px;
    background-color: #ecf2f5;
}

@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 15px;
    background-color: #fff;
    transition: .3s ease;
    border-radius: 2px;
    margin-bottom: 25px;
    border-radius: 3px;
    box-shadow: rgba(37, 39, 42, 0.1) 1px 1px 5px 1px;
}

@media (max-width: 768px) {
    .content {
        padding: 20px 15px;
    }
}

/* ---- sidenav & main-ct end ----- */

/* ----- header ----- */

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #0757a5;
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: blur(4px);
    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%;
            padding: 0 20px;
            font-size: 25px;
            font-weight: 900;
            color: #fff;
        }


@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 {
        display: none;
    }

    .nav-menu::-webkit-scrollbar-track-piece {
        background: transparent;
    }

    .nav-menu::-webkit-scrollbar-thumb {
        border-radius: 4px;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .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: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2)
        }

            .nav-menu > ul > li > a > i {
                display: inline-block;
                margin-right: 5px;
                width: 30px;
            }


        .nav-menu .drop-down.on > a,
        .nav-menu > ul > li:hover > a {
            color: rgba(255, 255, 255, 1);
            background-color: rgba(255, 255, 255, 0.2);
        }

    .nav-menu > ul > .active > a {
        background-color: rgba(255, 255, 255, 0.4);
        font-weight: 900;
    }

    .nav-menu .drop-down > a {
        display: flex;
        align-items: center;
    }



        .nav-menu .drop-down > a::after {
            display: block;
            content: '\f078';
            margin-left: 15px;
            font-size: 13px;
            font-family: 'Font Awesome 6 Pro';
            transition: .3s ease;
            color: rgba(255, 255, 255, 0.5);
        }

    .nav-menu .drop-down .drop-down > a::after {
        color: rgba(255, 255, 255, 0.8);
    }

    .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);
    }

    .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.3);
        display: none;
    }

    .nav-menu .drop-down.active > ul {
        /* background-color: #FAFAFA; */
    }

    .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 30px;
        word-break: break-all;
        transition: 0.3s ease;
        font-size: 17px;
        text-align: left;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 1);
    }

    .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.7);
    }

    .nav-menu .drop-down > ul > li.active > a {
        color: var(--main-color);
        background-color: rgba(255, 255, 255, 0.8);
        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: var(--main-color);
    }

        .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 ul li:hover a::before,
        .nav-menu .drop-down .drop-down.active ul .active a::before {
            background-color: rgba(90, 144, 206, 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(--main-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(--main-color);
        }

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 18px;
    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(--main-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);
    }

.mobile-nav .mb-admin {
    font-weight: 800;
    color: var(--main-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: var(--main-color-l);
    padding: 5px 15px;
    font-size: 15px;
    color: var(--main-color);
    margin-bottom: 15px;
    border-radius: 0px;
    border-left: 8px solid rgba(64, 168, 228, 0.6);
}

    .status span {
        color: var(--red-color);
    }

.nav-tabs {
    border-bottom: none;
}

    .nav-tabs .nav-link {
        padding: 6px 20px;
        border: none;
        border-radius: 0;
        color: var(--darkgray-color);
        background-color: #e5e5e5;
    }

@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 #ccc;
}

.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;
    }

    .wideModal .modal-dialog {
        max-width: 70% !important;
        margin: 15px auto;
    }
}

@media (min-width: 768px) {
    .modal-dialog {
        max-width: 675px !important;
        margin: 0 auto;
    }
}

.modal-content {
    border: none;
    border-radius: 5px;
    overflow: hidden;
}

    .modal-content .modal-header {
        background: rgb(31, 31, 31);
        background: linear-gradient(135deg, rgb(48, 48, 48) 0%, rgb(24, 24, 24) 100%);
        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: 18px;
        height: 18px;
        top: -2px;
        left: 0px;
        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: 18px;
        height: 18px;
        top: -2px;
        color: var(--red-color);
        left: 0px;
        transition: .3s ease;
        transform: scale(0);
        z-index: 2;
    }

    input[type='checkbox']:checked::after {
        transform: scale(1);
    }

    input[type='checkbox']:disabled::after {
        background-color: #e6e6e6;
        color: #999;
    }

.togglebox {
    display: flex;
    justify-content: start;
    align-items: center;
}

input[type='checkbox'].toggleBtn {
    height: 25px !important;
}

    input[type='checkbox'].toggleBtn::before {
        width: 50px !important;
        height: 25px;
        border-radius: 50px;
        background-color: #e6e6e6;
        transition: .3s ease;
        top: 0px;
        left: -3px;
    }

    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;
    }

    input[type='checkbox'].toggleBtn:disabled {
        opacity: 1;
    }

        input[type='checkbox'].toggleBtn:disabled:before {
            background-color: #f8f8f8;
        }

        input[type='checkbox'].toggleBtn:disabled::after {
            border: 1px solid #f8f8f8;
            background-color: #eee;
        }

        input[type='checkbox'].toggleBtn:disabled:checked::before {
            background-color: #a9dbf8;
        }

        input[type='checkbox'].toggleBtn:disabled:checked::after {
            border: 1px solid #a9dbf8;
            background-color: #ecf7fd;
        }

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);
    }

.city .check-box {
    width: 80px;
}

.check-box {
    align-items: center;
    display: inline-flex;
    margin: 0px 10px 2px 0;
    font-size: 16px;
}

.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: 10px;
    }

        .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%;
}

.fm-group {
    width: 100%;
}

    .fm-group .fm-date {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .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(90, 144, 206, 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(90, 144, 206, 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; */
    line-height: 24px;
    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,
a.small {
    /* height: 28px; */
    line-height: 22px;
    padding: 3px 8px;
    margin-bottom: 3px;
}

button.main,
a.main {
    background-color: var(--main-color);
}

button.main-light,
a.main-light {
    background-color: rgba(24, 128, 231, 0.75);
}

button.back,
a.back {
    background-color: #e4e4e4;
    color: var(--vice-color);
}

button.print,
a.print {
    background-color: var(--green-color);
}

    button.print:hover,
    a.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.view {
    background-color: #aaaaaa;
}

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,
a.ex-dl {
    background-color: var(--robinblue-color);
    color: #fff;
    border: 1px solid var(--robinblue-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 #6cbdc2;
    color: #6cbdc2;
}

    button.trace-finish,
    button.trace.active {
        background-color: #6cbdc2;
        color: #fff;
    }

    button.trace.off {
        background-color: #bbb;
        border-color: #bbb;
        color: #eee;
    }

.fs-14 {
    font-size: 14px;
}

.main-table {
    width: 100%;
}

.table th,
.table td {
    vertical-align: middle !important;
    text-align: center;
    padding: 8px 10px;
    font-weight: normal;
    letter-spacing: 0;
}

.main-table th,
.main-table td {
    vertical-align: middle;
    padding: 8px 5px;
    font-weight: normal;
    letter-spacing: 0;
	box-sizing: content-box;
}

.main-table td {
    padding: 5px 5px;
}

    .main-table td .select2-container {
        width: 100% !important;
    }

.main-table thead {
    background: rgb(31, 31, 31);
    background: linear-gradient(135deg, rgb(48, 48, 48) 0%, rgb(46, 46, 46) 100%);
    color: #fff;
}

.main-table tbody tr {
    border-bottom: 1px solid #eee;
    /*transition: .3s ease;*/
}

    .main-table tbody tr:hover {
        background-color: rgba(64, 168, 228, 0.08)
    }

    .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 tbody tr.total {
    background-color: #f8f8f8;
}

.main-table .total td,
.main-table .total th {
    font-weight: 800;
    font-size: 18px;
}

.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 .main-mark {
    color: var(--main-color);
}

.main-table .func-btn-t {
    text-align: left;
}



.main-table .func-btn {
    width: 100%;
    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 thead {
        display: none;
    }

    .main-table tbody tr {
        border-bottom: 1px solid var(--main-color);
        display: block;
        margin-bottom: 15px;
    }

        .main-table tbody tr.total {
            border-bottom-color: transparent;
        }

        .main-table tbody tr:hover {
            background-color: transparent;
        }

    .main-table td {
        width: 100%;
        display: flex;
        border-bottom: 1px solid #eee;
        transition: .3s ease;
    }

        .main-table td.num {
            font-size: 17px;
            font-weight: 700;
        }

    .main-table .func-btn {
        justify-content: end;
    }

    .main-table td.selectbox {
        padding: 15px;
    }

    .main-table td::before {
        display: block;
        width: 150px;
        min-width: 150px;
        content: attr(data-title);
        color: var(--main-color);
    }

    .main-table td.selectbox::before,
    .main-table td.num::before,
    .main-table td.func-btn::before {
        display: none;
    }

    .main-table td.selectbox.gift::before {
        display: block;
    }


    .main-table.light th,
    .main-table.light td {
        text-align: unset;
    }
}

@media (max-width: 576px) {
    .main-table td {
        flex-wrap: wrap;
        width: 100%;
    }

        .main-table td::before {
            width: 100px;
            min-width: 100px;
            margin-bottom: 5px;
        }
}


.fixed-table {
    table-layout: fixed;
    position: sticky;
    top: 60px;
}

    .fixed-table thead {
        position: sticky;
        top: 0px;
    }

.scroll-table-wrap {
    width: 100%;
    max-height: 800px;
    position: sticky;
    top: 60px;
    margin-bottom: 80px;
    overflow-x: scroll;
    overflow-y: auto;
}

@media (max-width: 576px) {
    .scroll-table-wrap {
        height: 450px;
    }
}

.scroll-table-wrap::-webkit-scrollbar {
    width: 5px;
    height: 8px;
}

.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: 4px;
    background-color: rgba(102, 102, 102, 0.2);
}

.scroll-table-wrap::-webkit-scrollbar-track {
    box-shadow: transparent;
}

.scroll-table {
    width: 100%;
    min-width: 1440px;
}

    .scroll-table.long {
        min-width: 2200px;
    }

    .scroll-table th,
    .scroll-table td {
        vertical-align: middle;
        padding: 8px 5px;
        font-weight: normal;
        letter-spacing: 0;
    }

    .scroll-table td {
        padding: 5px 5px;
    }

        .scroll-table td .select2-container {
            width: 100% !important;
        }

    .scroll-table thead {
        background: rgb(31, 31, 31);
        background: linear-gradient(135deg, rgb(48, 48, 48) 0%, rgb(46, 46, 46) 100%);
        color: #fff;
    }

        .scroll-table thead.light {
            background: transparent;
            color: var(--primary-color);
        }

            .scroll-table thead.light th {
                font-size: 18px;
                font-weight: 700;
            }

    .scroll-table tbody tr {
        border-bottom: 1px solid #eee;
        transition: .3s ease;
    }

        .scroll-table tbody tr:hover {
            background-color: rgba(64, 168, 228, 0.08);
        }

    .scroll-table.border-all td,
    .scroll-table.border-all th {
        border: 1px solid #eee;
    }

    .scroll-table .table-img {
        width: 100px;
        margin: 0 auto;
        padding: 3px;
        display: inline-block;
        border: 1px solid #eee;
    }

@media (max-width: 1200px) {
    .scroll-table .table-img {
        width: 150px;
        margin: 2px 0px;
    }
}

.scroll-table .red-mark {
    color: var(--main-color);
}

.scroll-table .cancel-mark {
    color: #aaa;
}



.scroll-table .func-btn {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
}

    .scroll-table .func-btn button {
        margin: 2px 2px;
    }

.scroll-table .sortable-chosen {
    background-color: rgba(198, 70, 70, 0.07);
}

.scroll-table .drag-btn:hover {
    cursor: pointer;
}



.infobox {
    display: flex;
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
}

    .infobox .info-t {
        width: 150px;
        min-width: 150px;
        color: var(--main-color);
    }

    .infobox .info-ct {
        word-break: break-all;
        color: var(--darkgray-color);
    }

        .infobox .info-ct .red-mark {
            color: var(--red-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-img img {
        width: 100%;
    }
}


.editbox {
    display: flex;
    align-items: center;
}

@media (max-width: 576px) {
    /* .infobox {
        flex-wrap: wrap;
    } */

    .infobox .info-t {
        width: 120px;
        min-width: 120px;
    }
}


.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: 180px;
    border-radius: 5px;
    transition: .3s ease;
}

    .linkbox:hover {
        opacity: .8;
    }

    .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);
        }


.notice-text {
    color: var(--red-color);
    font-size: 15px;
}

.red-mark {
    color: var(--red-color);
}


.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;
    }

@media (max-width: 600px) {
    .pagination li {
        padding: 0px;
    }
}

.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)
}


.drag-control {
    color: #aaa;
    display: block;
}

    .drag-control:hover {
        cursor: pointer;
    }


.chartRank {
    height: 100% !important;
    max-height: 500px;
}

@media (max-width: 576px) {
    .chartRank {
        max-height: 350px;
    }
}


.progress {
    flex-wrap: wrap;
    height: auto;
    min-height: 30px;
    background-color: #fff;
}

.progress-bar {
    height: 35px;
    font-size: 14px;
    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(90, 144, 206, 0.2);
}

.progress-bar.active {
    color: #fff;
    border-right-color: var(--main-color);
    background-color: var(--main-color);
}

/* ----- 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.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}


.login-box {
    width: 380px;
    height: auto;
    background: rgb(59, 188, 236);
    background: linear-gradient(230deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 35px 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 5px;
}

@media (max-width: 992px) {
    .login-box {
        backdrop-filter: blur(4px);
    }
}

@media (max-width: 420px) {
    .login-box {
        width: 100%;
        margin: 0 15px;
    }
}

.login-box .fm-group label {
    letter-spacing: 2px;
    color: #fff;
}

.login-box .fm-group input {
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 3px 0;
}

.login-box .notice-text {
    color: var(--red-color);
    letter-spacing: 2px;
}

.login-logotext {
    text-align: center;
}

    .login-logotext h1 {
        color: #fff;
        font-size: 25px;
        margin-bottom: 10px;
    }

@media (max-width: 992px) {
    .login-logotext h1 {
        font-size: 22px;
    }
}

.login-logotext h6 {
    font-size: 13px;
    color: #fff;
}

.recaptcha {
    width: 280px;
    margin: 0 auto;
}

.login-box button {
    width: 100%;
    background-color: var(--main-color);
}

/* ----- login end ----- */

/* ----- animation ----- */

@keyframes slideDown {
    0% {
        height: 0px;
    }

    100% {
        height: auto;
    }
}

@keyframes slideUp {
    0% {
        height: auto;
    }

    100% {
        height: 0px;
    }
}

.slideUp {
    animation: slideUp .3s linear 0ms 1 both;
}

.slideDown {
    display: flex !important;
    animation: slideDown .3s linear 0ms 1 both;
}

/* ----- animation end ----- */


/* ---- footer ---- */


footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

    footer .copyright {
        font-size: 14px;
        text-align: center;
        color: rgba(107, 107, 107, 0.5);
        padding-bottom: 5px;
        opacity: .6;
    }


.hidden {
    display: none !important;
}

.tagsinput {
    width: 100% !important;
}

.green {
    color: green;
}

.red {
    color: red;
}

.orange {
    color: orange;
}

.bootstrap-table .fixed-table-container .fixed-table-header {
    overflow: hidden
}

.bootstrap-table .fixed-table-container .fixed-table-body {
    overflow-x: auto;
    overflow-y: auto;
    height: 100%
}

    .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading {
        align-items: center;
        background: #fff;
        display: none;
        justify-content: center;
        position: absolute;
        bottom: 0;
        width: 100%;
        z-index: 1000
    }

        .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap {
            align-items: baseline;
            display: flex;
            justify-content: center
        }

            .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .loading-text {
                font-size: 2rem;
                margin-right: 6px
            }

            .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap {
                align-items: center;
                display: flex;
                justify-content: center
            }

                .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-dot,
                .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::after,
                .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::before {
                    content: "";
                    animation-duration: 1.5s;
                    animation-iteration-count: infinite;
                    animation-name: LOADING;
                    background: #212529;
                    border-radius: 50%;
                    display: block;
                    height: 5px;
                    margin: 0 4px;
                    opacity: 0;
                    width: 5px
                }

.bootstrap-table .fixed-table-container .table thead th .sortable {
    cursor: pointer;
    background-position: right;
    background-repeat: no-repeat;
    padding-right: 15px !important
}

.bootstrap-table .fixed-table-container .table thead th .both {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAQAAADYWf5HAAAAkElEQVQoz7X QMQ5AQBCF4dWQSJxC5wwax1Cq1e7BAdxD5SL+Tq/QCM1oNiJidwox0355mXnG/DrEtIQ6azioNZQxI0ykPhTQIwhCR+BmBYtlK7kLJYwWCcJA9M4qdrZrd8pPjZWPtOqdRQy320YSV17OatFC4euts6z39GYMKRPCTKY9UnPQ6P+GtMRfGtPnBCiqhAeJPmkqAAAAAElFTkSuQmCC")
}

.bootstrap-table .fixed-table-container .table thead th .asc {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZ0lEQVQ4y2NgGLKgquEuFxBPAGI2ahhWCsS/gDibUoO0gPgxEP8H4ttArEyuQYxAPBdqEAxPBImTY5gjEL9DM+wTENuQahAvEO9DMwiGdwAxOymGJQLxTyD+jgWDxCMZRsEoGAVoAADeemwtPcZI2wAAAABJRU5ErkJggg==)
}

.bootstrap-table .fixed-table-container .table thead th .desc {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZUlEQVQ4y2NgGAWjYBSggaqGu5FA/BOIv2PBIPFEUgxjB+IdQPwfC94HxLykus4GiD+hGfQOiB3J8SojEE9EM2wuSJzcsFMG4ttQgx4DsRalkZENxL+AuJQaMcsGxBOAmGvopk8AVz1sLZgg0bsAAAAASUVORK5CYII=)
}



@media (min-width:1200px) {

    .modal-lg,
    .modal-xl {
        max-width: 1240px !important;
    }
}

.hidden {
    display: none !important;
}

.contents {
    display: contents !important;
}

/*----print-----*/

.print-t {
    text-align: center;
    letter-spacing: 3px;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    color: #666;
    margin: 10px 0;
}

    .print-t::before,
    .print-t::after {
        content: '';
        border-bottom: 1px solid #ccc;
        flex: 1 1;
        margin: auto;
    }

    .print-t::before {
        margin-right: 5px;
    }

.printbox {
    display: flex;
}

    .printbox .printbox-t {
        width: 170px;
        min-width: 170px;
        color: #555;
    }

    .printbox .printbox-ct {
        word-break: break-all;
        color: #555;
    }

/*----等待中樣式-----*/
@media (min-width: 576px) {
    #loadingModal .modal-dialog {
        max-width: 300px !important;
    }
}

.loader {
    width: 15px;
    aspect-ratio: 1;
    border-radius: 50%;
    animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
    0% {
        box-shadow: 20px 0 #000, -20px 0 #0002;
        background: #000
    }

    33% {
        box-shadow: 20px 0 #000, -20px 0 #0002;
        background: #0002
    }

    66% {
        box-shadow: 20px 0 #0002, -20px 0 #000;
        background: #0002
    }

    100% {
        box-shadow: 20px 0 #0002, -20px 0 #000;
        background: #000
    }
}
/*----等待中樣式-----*/

/*-- 拖曳不會跑版 --*/
.ui-sortable {
    overflow: auto
}
.ui-sortable-helper {
    overflow: auto;
    display: flex;
}
.ui-sortable-placeholder > td:not(:first-child) {
    display: none;
}
@media print {
    @page {
        size: auto;
    }
}