html {
    font-family: arial, sans-serif;
}

body {
    margin: 0;
    background: #ddd;
    color: #7a7b7c;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    width: 0.5rem;
    background-color: #1436769c;
}

.vscomp-ele {
    max-width: 100%;
}

body>div.container .card {
    min-height: 300px;
}

.modal-dialog.modal-vlg {
    max-width: 1200px;
}

.datatable tfoot {
    display: table-header-group;
}

.container div.items-empty {
    width: 25vw;
    margin-bottom: 20px;
    margin-right: 20px;
    padding-top: 10px;
}

.table th,
.table td {
    vertical-align: middle;
}

#edit_dragArea,
#new_dragArea,
#dragArea {
    position: relative;
    width: 210px;
    border-style: dashed;
    border-width: 0.2rem;
    padding: 0.2rem 0.2rem;
    height: 210px;
    margin: 0 auto;

    background-image: url(/lcs/assets/img/photo-placeholder.jpg);
    background-size: 200px 200px;
    background-repeat: no-repeat;
    background-position: center;
}

#new_uploadImage,
#edit_uploadImage,
#uploadImage {
    width: 210px;
    font-size: 0.8em;
}

#edit_dragArea.dragover,
#new_dragArea.dragover,
#dragArea.dragover {
    border-style: solid;
    border-color: aqua;
}

.upload_label {
    width: 210px;
    margin: 0;
    background: transparent;
    display: table;
    color: black;
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: lightgray;
    text-align: center;
    font-size: 1rem;
}

.upload_label>input[type="file"] {
    display: none;
}

.confirm_modal {
    z-index: 9999;
}

span.clear_btn {
    position: absolute;
    top: -10px;
    right: -10px;
    border: 1px solid black;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    background-color: floralwhite;
    box-shadow: 0px 0px 5px 0px black;
}

span.clear_btn:hover {
    cursor: pointer;
    background-color: cyan;
}


html {
    height: 100%;
    padding-right: 0 !important;
    /*Modal show padding issue*/
}

nav {
    /*padding-right: 10px !important;*/
    /*Modal show padding issue*/
}

.datatable thead {
    background-color: #add4ff;
}

.popover-image {
    display: inline-flex;
    height: 100px;
    width: 100px;
    margin-bottom: 0px;
    z-index: 1;
    position: relative;
    align-items: center;
    justify-content: center;
}

.popover-image[data-Gender="0"] {
    color: dodgerblue;
}

.popover-image[data-Gender="1"] {
    color: hotpink;
}

.popover-image svg {
    font-size: 70px;
}

.popover-image img {
    width: 100%;
    height: 100px;
    border-radius: 50%;
}

.popover-image::before {
    content: "";
    width: 100%;
    height: 0;
    border-radius: 50%;
    background-color: #0579ff;
    position: absolute;
    bottom: 190%;
    right: 0;
    left: 0;
    opacity: 0.5;
}

.popover-image::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #b6d8ff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

tbody button:not(.rounded-circle) {
    /* 等待確認是哪邊用到的 */
    /*min-width: 50px;
    margin: 10px;
    width: 100%;*/
}

.search-wrapper {
    display: inline-flex;
    position: absolute;
    top: -3px;
    margin-left: 10px;
}

@media (max-width: 480px) {
    .search-wrapper {
        position: relative;
        margin: 0;
        width: auto;
    }

    .search-wrapper.active {
        width: 100%;
    }
}

.search-wrapper .input-holder {
    height: 40px;
    width: 40px;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.search-wrapper.active .input-holder {
    position: relative;
    width: 25vw;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.5);
    transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
}

.search-wrapper .input-holder .search-input {
    width: 100%;
    height: 40px;
    padding: 0 50px 0 20px;
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    background: antiquewhite;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-family: "Open Sans", Arial, Verdana;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: black;
    transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition-delay: 0.3s;
}

.search-wrapper.active .input-holder .search-input {
    opacity: 1;
}

.search-wrapper .input-holder .search-icon {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 6px;
    background: #FFF;
    padding: 0px;
    outline: none;
    position: relative;
    z-index: 2;
    float: right;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.search-wrapper.active .input-holder .search-icon {
    width: 40px;
    height: 40px;
    border-radius: 30px;
}

.search-wrapper .input-holder .search-icon span {
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    transform: rotate(45deg);
    transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
}

.search-wrapper.active .input-holder .search-icon span {
    transform: rotate(-45deg);
}

.search-wrapper .input-holder .search-icon span::before,
.search-wrapper .input-holder .search-icon span::after {
    position: absolute;
    content: '';
}

.search-wrapper .input-holder .search-icon span::before {
    width: 4px;
    height: 11px;
    left: 8px;
    top: 17px;
    border-radius: 2px;
    background: #FE5F55;
}

.search-wrapper .input-holder .search-icon span::after {
    width: 20px;
    height: 20px;
    left: 0px;
    top: 0px;
    border-radius: 16px;
    border: 4px solid #FE5F55;
}

.search-wrapper .close {
    position: absolute;
    z-index: 1;
    right: 0;
    width: 25px;
    height: 25px;
    cursor: pointer;
    transform: rotate(-180deg);
    transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    transition-delay: 0.2s;
    display: flex;
    align-self: center;
    opacity: 0 !important;
}

.search-wrapper.active .close {
    right: -30px;
    opacity: 1 !important;
    transform: rotate(45deg);
    transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition-delay: 0.5s;
}

.search-wrapper .close::before,
.search-wrapper .close::after {
    position: absolute;
    content: '';
    background: #FE5F55;
    border-radius: 2px;
}

.search-wrapper .close::before {
    width: 5px;
    height: 25px;
    left: 10px;
    top: 0px;
}

.search-wrapper .close::after {
    width: 25px;
    height: 5px;
    left: 0px;
    top: 10px;
}

.navbar-brand sub {
    bottom: 0;
    color: silver;
}


ul.ks-cboxtags {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.ks-cboxtags li {
    display: inline;
}

ul.ks-cboxtags li label {
    display: inline-block;
    background-color: rgba(255, 255, 255, .9);
    border: 1px solid rgba(139, 139, 139, .3);
    color: black;
    border-radius: 25px;
    white-space: nowrap;
    margin: 3px 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: all .2s;
}

ul.ks-cboxtags li label {
    padding: 8px 12px;
    cursor: pointer;
}

ul.ks-cboxtags li label::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    padding: 2px 6px 2px 2px;
    content: "\f067";
    transition: transform .3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked+label::before {
    content: "\f00c";
    transform: rotate(-360deg);
    transition: transform .3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked+label {
    /*border: 1px solid #1bdbf8;*/
    /*background-color: #12bbd4;*/
    color: #fff;
    transition: all .2s;
}

ul.ks-cboxtags li input[type="checkbox"][value="F"]:checked+label {
    /*border: 1px solid #1bdbf8;*/
    background-color: #28a745;
    color: #fff;
    transition: all .2s;
}

ul.ks-cboxtags li input[type="checkbox"][value="O"]:checked+label {
    /*border: 1px solid #1bdbf8;*/
    background-color: #adb5bd;
    color: #000;
    transition: all .2s;
}

ul.ks-cboxtags li input[type="checkbox"][value="P"]:checked+label {
    /*border: 1px solid #1bdbf8;*/
    background-color: #ffc107;
    color: #fff;
    transition: all .2s;
}

ul.ks-cboxtags li input[type="checkbox"][value="S"]:checked+label {
    /*border: 1px solid #1bdbf8;*/
    background-color: #17a2b8;
    color: #fff;
    transition: all .2s;
}

ul.ks-cboxtags li input[type="checkbox"][value="R"]:checked+label {
    /*border: 1px solid #1bdbf8;*/
    background-color: #007bff;
    color: #fff;
    transition: all .2s;
}

ul.ks-cboxtags li input[type="checkbox"][value="H"]:checked+label {
    /*border: 1px solid #1bdbf8;*/
    background-color: #dc3545;
    color: #fff;
    transition: all .2s;
}

ul.ks-cboxtags li input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

ul.ks-cboxtags li input[type="checkbox"]:focus+label {
    /*border: 1px solid #00a1ff;*/
}

.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #c0c0c0;
    opacity: 1;
    /* Firefox */
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #c0c0c0;
}

.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #c0c0c0;
}

form label[for].input_required {
    color: red;
}

.country-select {
    width: 100%;
}

div[data-tpl] .dataset {
    display: none !important;
}

.alert {
    box-shadow: 0px 5px 10px black;
}

.footer_box {
    font-size: initial;
    position: fixed;
    bottom: 0px;
    color: black;
    background-color: rgb(248 249 250 / 50%);
    width: 100%;
    text-align: right;
    z-index: 1000;
    left: 0;
    padding: 0 10px;
    margin: 0px;
}

.PageTitle {
    display: inline;
}

@media (max-width: 600px) {
    .PageTitle {
        display: block;
    }

    .search-wrapper {
        position: relative;
        top: 0;
        margin: 0;
    }
}

.nav-login-head {
    border-radius: 50%;
    background-color: white;
    width: 40px;
    height: 40px;
    text-align: center;
    overflow: hidden;
    font-size: x-large;
    margin-left: 15px;
    cursor: pointer;
}

.nav-login-head img {
    width: 40px;
    height: 40px;
}

.nav-login-head:hover svg,
.nav-login-head img {
    transform: scale(1.3);
    transition: all 1s;
}

.nav-login-head svg,
.nav-login-head img {
    pointer-events: none;
}

.popover-header {
    text-align: center;
}

#content {
    position: relative;
    padding: 10px 10px 0 10px;
}

.layout_content {
    width: 100%;
    padding: 6px;
    background-color: white;
    border-radius: 20px;
    overflow: auto;
}

.table thead th {
    padding: .5rem;
    background-color: inherit;
}

.table tfoot th {
    position: relative;
    /* datatable filter*/
}

.table tbody td,
.table tfoot th {
    padding: .4rem;
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
    bottom: 0.5em;
}

nav .NavPageTitle {
    align-self: center;
    margin: 0 auto;
    font-size: x-large;
    color: floralwhite;
    user-select: none;
}

.popover-image svg,
.popover-image img
    {
    pointer-events: none;
}

.vscomp-ele.pop-comp-ele.is-invalid {
    border: #dc3545 solid 1px;
}

.vscomp-ele.pop-comp-ele.is-valid {
    border: #28a745 solid 1px;
}

.dataTable thead th {
    background-color: inherit;
}


.background {
    background-color: gray;

}

/*側拉Modal CSS*/
.sidebar.left {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 270px;
    background: #448AFF;
}

.sidebar.right {
    top: 0;
    right: 0;
    bottom: 0;
    width: 270px;
    background: #448AFF;
}

.sidebar.bottom {
    left: 0;
    right: 0;
    bottom: 0;
    height: 270px;
    background: #03A9F4;
}

.sidebar.top {
    left: 0;
    right: 0;
    top: 0;
    height: 270px;
    background: #03A9F4;
}

.sidebars>.sidebar {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.64);
    position: fixed;
    color: white;
    padding: 30px;
    font-size: 2em;
    text-align: center;
}

/*側拉Modal CSS*/


h1 {
    font-size: 34px;
    font-weight: bold;
    margin: 0;
}

h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
}

h3 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

h4 {
    color: #FFFFFF;
}

body {
    font-size: 20px;
    font-weight: bold;
    font-family: "Microsoft JhengHei", monospace, sans-serif, serif;
    position: relative;
}

nav {
    color: #FFFFFF;
    background: #143676;
    padding: 0.5rem 1rem;
    display: flex;
}

nav .logo {
    display: inline-block;
    margin-right: auto;
}

nav .language {
    font-size: 34px;
    line-height: 40px;
    display: inline-block;
}

.footer {
    width: 100%;
    color: #FFFFFF;
    background: #00a0e9;
    text-align: right;
    padding: 0.5rem;
    position: relative;
    right: 0;
    bottom: 0;
}

/* for index.html */
.account_name {
    color: white;
    font-size: 1.5rem;
    line-height: 40px;
    display: inline-block;
    vertical-align: middle;
}

#Menu_icon {
    color: #FFFFFF;
    background: #143676;
    font-size: 34px;
    line-height: 40px;
    border: 0;
    display: inline-block;

}


/* nav_content */
.nav_content {
    min-width: 0;
    max-height: 80vh;
    color: #FFFFFF;
    background: hsl(0deg 0% 6% / 35%);
    list-style: none;
    padding: 0;
    border-radius: 1rem;
    border: none;
    position: absolute;
    top: 9%;
    display: none;
    overflow-y: auto;
    z-index: 100;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 10px rgb(0 0 0 / 25%);
    right: 5px;
    width: 300px;
}

.nav_content>li>a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 20px;
    display: block;
    border-bottom: 1px solid #666666;
}

.nav_content>li>a:hover {
    color: #00a0e9;
    background: #474747;
}

.nav_content>li>a>i:nth-of-type(1) {
    margin-right: 20px;
}

.nav_content>li>a>i:nth-of-type(2) {
    line-height: 36px;
    float: right;
}

.nav_content>li>ol {
    list-style: none;
    padding: 0;
    display: none;
}

.nav_content>li>ol>li>a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 20px 20px 20px 100px;
    display: block;
    border-bottom: 1px solid #666666;
}

.nav_content>li>ol>li>a:hover {
    color: #00a0e9;
    background: #474747;
}

.nav_content>li>ol>li>a>i {
    margin-right: 20px;
}

.nav_content>li>button {
    width: 80%;
    color: #FFFFFF;
    font-weight: bold;
    background: #00a0e9;
    border: 0;
    border-radius: 0.5rem;
    margin: 20px auto;
    display: block;
}

.nav_content>li>button:hover {
    background: #007fa8;
}


.function_area {
    padding-bottom: 50px;
    padding-top: 5%;
    padding-left: 12%;
    padding-right: 12%;
}

#LayoutContent {
    margin: 0;
    justify-content: center;
}

.menuitem:not([data-url="Home"]):hover .menu-img {
    transform: rotate(20deg);
    transition: 0.2s ease;
}

.container-fluid .tab-content {
    padding-bottom: 1%;
    min-height: 100vh;
}

.container-fluid .tab-content .tab_area {
    list-style: none;
    border-bottom: 1px solid #999999;
    padding: 0 1rem;
    margin: 0;
}

.container-fluid .tab-content .tab_area li {
    display: inline-block;
}

.container-fluid .tab-content .tab_area li a {
    color: #999999;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    display: block;
}

.container-fluid .tab-content .tab_area li a.active {
    color: #143676;
    border-bottom: 3px solid #143676;
}

.container-fluid .tab-content .fnc_button_group {
    padding: 0.5rem 1rem;
}

.container-fluid .tab-content .fnc_button_group a {
    color: #FFFFFF;
    background: #143676;
    text-decoration: none;
    /* display: inline-block; */
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    float: right;
}

.container-fluid .tab-content .fnc_button_group a i {
    margin-right: 10px;
}

.container-fluid .tab-content .list_table {
    padding: 0 1rem;
}

.container-fluid .tab-content .list_table .table {
    min-width: 1600px;
}

.container-fluid .tab-content .list_table .table thead tr th {
    color: #FFFFFF;
    background: #143676;
    text-align: center;
    vertical-align: middle;
}

.container-fluid .tab-content .list_table .table thead tr th span {
    display: inline-block;
    vertical-align: middle;
}

.container-fluid .tab-content .list_table .table thead tr th i {
    vertical-align: middle;
}

.container-fluid .tab-content .list_table .table thead tr th i:nth-child(2) {
    margin-left: 20px;
}

.container-fluid .tab-content .list_table .table tbody tr:nth-child(odd) {
    background: #FFFFFF;
}

.container-fluid .tab-content .list_table .table tbody tr:nth-child(even) {
    background: #C6FEFF;
}

.container-fluid .tab-content .list_table .table tbody tr:first-child {
    background: #dddddd;
}

.container-fluid .tab-content .list_table .table tbody tr td {
    text-align: center;
    vertical-align: middle;
}

.container-fluid .tab-content .list_table .table tbody tr td i {
    margin: 0 10px;
}


@media (min-width: 992px) {
    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 20%;
    }
}


table td,
table th {
    vertical-align: middle !important;
}

.datatable tfoot {
    display: table-header-group;
}

.datatable tfoot th,
.datatable tfoot td {
    position: relative;
}

/* auto hide input placeholder when focus on  supports Firefox 15 and IE 10+*/
table.datatable input:focus::-webkit-input-placeholder {
    color: transparent;
}

table.datatable input:focus:-moz-placeholder {
    color: transparent;
}

/* FF 4-18 */
table.datatable input:focus::-moz-placeholder {
    color: transparent;
}

/* FF 19+ */
table.datatable input:focus:-ms-input-placeholder {
    color: transparent;
}

table.datatable .odd {
    background-color: #e9ecef;
}

table.datatable .even {
    background-color: #ffffff;
}

table.datatable tbody {
    background-color: #FFFFFF;
}

table.datatable thead {
    background-color: #143676;
    color: #FFFFFF;
}


::-webkit-scrollbar {
    width: 0.5rem;
    /* height: 16px; */
    background-color: #F5F5F5;
}

/*定义滚动条轨道
 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

/*定义滑块
 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #1436769c;
}

.modal-content {
    border-radius: 1rem;
}

.form-control {
    border-radius: 1rem;
}

.table-btn {
    width: 3rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.table-btn:hover {
    transform: rotate(60deg);
}

.title_row {
    border-bottom-style: double;
    border-color: #143676;
    justify-content: center;
    font-size: 2rem;
}

tfoot>tr>th>input {
    text-align: center;
}

@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1)
    }

    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55)
    }

    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1)
    }
}

.ReportSearch-btn {
    width: 4rem;
    text-align: center;
    border-radius: 1rem;
    border: none;
    background: #22ba7c;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    transition: 0.5s ease;
    outline: none !important;
}

.ReportSearch-btn:hover {
    background: #118b59;
}

.ReportSearch-MainBox {
    background-color: #ffffff;
    border-radius: 2rem;
    box-shadow: 9px 9px 12px rgb(0 0 0 / 35%);
    overflow-y: auto;
    padding: 20px;
    width: 100%;
}

.WMS-Btn-Big {
    display: none;
    width: 200px;
    border-radius: 20px;
    border: none;
    background: #436bec;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 9px 9px 12px rgb(0 0 0 / 35%);
    outline: none !important;
    transition: 0.5s ease;
    margin: 10px;
}

.WMS-Btn-Big:hover {
    background: #2254f5;
    box-shadow: 0px 0px 0px rgb(0 0 0 / 35%);
}

.label__checkbox {
    display: none !important;
}

.label__check {
    display: inline-block;
    border-radius: 50%;
    border: 5px solid rgba(0, 0, 0, 0.1);
    background: white;
    vertical-align: middle;
    /* margin-right: 20px; */
    width: 2em;
    height: 2em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border 0.3s ease;
}

.label__check i.icon {
    opacity: 0.2;
    font-size: calc(1rem + 1vw);
    color: transparent;
    transition: opacity 0.3s 0.1s ease;
    -webkit-text-stroke: 3px rgba(0, 0, 0, 0.5);
}

.label__check:hover {
    border: 5px solid rgba(0, 0, 0, 0.2);
}

.label__checkbox:checked+.label__text .label__check {
    -webkit-animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}

.label__checkbox:checked+.label__text .label__check .icon {
    opacity: 1;
    transform: scale(0);
    color: white;
    -webkit-text-stroke: 0;
    -webkit-animation: icon 0.3s cubic-bezier(1, 0.008, 0.565, 1.65) 0.1s 1 forwards;
    animation: icon 0.3s cubic-bezier(1, 0.008, 0.565, 1.65) 0.1s 1 forwards;
}

@-webkit-keyframes icon {
    from {
        opacity: 0;
        transform: scale(0.3);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes icon {
    from {
        opacity: 0;
        transform: scale(0.3);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes check {
    0% {
        width: 1.5em;
        height: 1.5em;
        border-width: 5px;
    }

    10% {
        width: 1.5em;
        height: 1.5em;
        opacity: 0.1;
        background: rgba(0, 0, 0, 0.2);
        border-width: 15px;
    }

    12% {
        width: 1.5em;
        height: 1.5em;
        opacity: 0.4;
        background: rgba(0, 0, 0, 0.1);
        border-width: 0;
    }

    50% {
        width: 2em;
        height: 2em;
        background: #00d478;
        border: 0;
        opacity: 0.6;
    }

    100% {
        width: 2em;
        height: 2em;
        background: #00d478;
        border: 0;
        opacity: 1;
    }
}

@keyframes check {
    0% {
        width: 1.5em;
        height: 1.5em;
        border-width: 5px;
    }

    10% {
        width: 1.5em;
        height: 1.5em;
        opacity: 0.1;
        background: rgba(0, 0, 0, 0.2);
        border-width: 15px;
    }

    12% {
        width: 1.5em;
        height: 1.5em;
        opacity: 0.4;
        background: rgba(0, 0, 0, 0.1);
        border-width: 0;
    }

    50% {
        width: 2em;
        height: 2em;
        background: #00d478;
        border: 0;
        opacity: 0.6;
    }

    100% {
        width: 2em;
        height: 2em;
        background: #00d478;
        border: 0;
        opacity: 1;
    }
}

.flag {
    width: 25px;
    vertical-align: bottom;
    margin-right: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

[fnc="Md"] {
    display: none;
}

.modal-title {
    color: #143676;
    font-size: 1.5rem;
    font-weight: bold;
}

.alert {
    z-index: 999999 !important;
}

.title_maininfo {
    background: rgb(255 255 255 / 35%);
    backdrop-filter: blur(15px);
}

.searchtypegroup select {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    font-size: 20px;
    font-weight: bold;
    padding: 0 1rem;
    outline: none;
    border: none;
    border-right-style: groove;
    cursor: pointer;
}

.searchtypegroup input {
    width: 40%;
    font-size: 1rem;
    border: none;
    outline: none;
}

.searchtypegroup button {
    color: #f47676;
    background: white;
    border: none;
    outline: none;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.FuncTitle {
    border-style: solid;
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 1rem;
}

.AddRowBtn {
    color: #76dea7;
    cursor: pointer;
    transition: 0.2s ease;
}

.AddRowBtn:hover {
    color: #00db67;
}

.Btn-Information {
    cursor: pointer;
    font-size: 2.5rem !important;
    color: #6d7cba;
}

.Btn-Information:hover {
    color: #314ec8;
}

.Btn-DeleteOrder {
    cursor: pointer;
    font-size: 2.5rem !important;
    color: #f4433682;
    transition: 0.3s ease;
}

.Btn-DeleteOrder:hover {
    color: #f44336c9;
}

.fs-option-label {
    text-align-last: auto;
}

.btn-group>.btn-group:not(:first-child),
.btn-group>.btn:not(:first-child) {
    margin-left: 1px;
}

.error_row {
    animation: twinkle 0.5s alternate infinite;
}

@keyframes twinkle {
    from {
        background-color: #fb5c5c40;
    }

    to {
        background-color: #fb5c5ca1;
    }
}


.search-box input {
    width: 15rem;
    background: #d2e2f0;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    outline: none;
}

.search-box select {
    color: white;
    border: none;
    background: #55adfb;
    font-size: 1.2rem;
    font-weight: bold;
    width: 6rem;
    text-align-last: center;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    outline: none;
}

.search-box button {
    background: #d2e2f0;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    border: none;
}

.excel_btn {
    padding: 0rem 1rem;
    transition: 0.3s ease;
    border: none;
    background-color: #4caf50;
    color: #fff;
    font-weight: bold;
    border-radius: 0.5rem;
    text-align: center;
}

.excel_btn:hover {
    background-color: #00bb08;
}

.print_btn {
    padding: 0rem 1rem;
    transition: 0.3s ease;
    border: none;
    background-color: #35b1e8;
    color: #fff;
    font-weight: bold;
    border-radius: 0.5rem;
    text-align: center;
}

.print_btn:hover {
    background-color: #03a9f4;
}

/*發現多處重複 不知道寫在這裡會不會有bug*/
.mimicry-input {
    text-align: center;
    margin-right: 8px;
    box-shadow: inset 2px 2px 5px #BABECC, inset -5px -5px 10px #FFF;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    outline: 0;
    font-size: 1.2rem;
    border-radius: 320px;
    padding: 11px;
    background-color: #EBECF0;
    text-shadow: 1px 1px 0 #FFF;
    font-weight: bold;
}

.form-group input {
    text-align: center;
}

nav .navbar-brand {
    font-size: xx-large;
    font-weight: bold;
    margin: 0;
}

nav .UserInfo {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    margin-left: 10px;
    cursor: pointer;
}

#User_content {
    min-width: 0;
    background: hsl(0deg 0% 6% / 35%);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 10px rgb(0 0 0 / 25%);
    border: none;
    right: 5px;
    width: 300px;
    position: fixed;
    top: 85px
}

#User_content img {
    cursor: pointer;
    width: 150px;
    height: 150px;
    margin-top: 10px;
    border-radius: 75px;
}

.nav_content>li>a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 20px;
    display: block;
    border-bottom: none;
}

.nav-pills .nav-link {
    border: 0;
    font-size: 16pt;
    border-radius: initial;
    font-weight: bold;
    color: #143676;
    background-color: transparent;
}

.nav-pills .nav-link.active {
    background-color: #143676;
    border-bottom: 2px solid #143676;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    color: #ffff;
}

.nav-pills .nav-link:hover {
    border-color: transparent;
    border-bottom: 2px solid #143676;
}

#fnc_button_group>button:nth-child(odd) {
    margin: 0 5px;
}

.nav_back {
    font-size: medium;
    padding: .75rem 1rem;
    margin: 0;
    background-color: #e9ecef;
    position: relative;
    z-index: 100;
    height: 50px;
}

.nav_back .nav_back_btn {
    user-select: none;
    width: auto;
    display: inline-block;
}

.nav_back_btn svg {
    pointer-events: none;
    margin-right: 5px;
}

nav.navbar {
    height: 70px;
    padding: 0px 1rem;
}

/* .fs-label-wrap {
    box-shadow: none;
    background: #ffff;
    font-size: 1rem;
    border: 1px solid #ced4da;
    color: #495057;
    font-weight: 400;
    border-radius: 1rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    line-height: 1.5;
    padding: 7px;
} */
.md_layout_btn {
    background: #d5ebff;
    width: 70%;
    border-radius: 1rem;
    padding: 1%;
    cursor: pointer;
    transition: 0.5s ease;
}
/****************************************原生main.CSS蓋上去***********************************************************************************/







.background {
    background-color: gray;
}

/*側拉Modal CSS*/
.sidebar.left {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 270px;
    background: #448AFF;
}

.sidebar.right {
    top: 0;
    right: 0;
    bottom: 0;
    width: 270px;
    background: #448AFF;
}

.sidebar.bottom {
    left: 0;
    right: 0;
    bottom: 0;
    height: 270px;
    background: #03A9F4;
}

.sidebar.top {
    left: 0;
    right: 0;
    top: 0;
    height: 270px;
    background: #03A9F4;
}

.sidebars>.sidebar {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.64);
    position: fixed;
    color: white;
    padding: 30px;
    font-size: 2em;
    text-align: center;
}

/*側拉Modal CSS*/
h1 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
}

h3 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

h4 {
    color: #FFFFFF;
}

body {
    font-size: 24px;
    font-weight: bold;
    font-family: "Microsoft JhengHei", monospace, sans-serif, serif;
    position: relative;
}

/* for login.html */
.container-fluid {
    min-height: 93vh;
    background: -webkit-linear-gradient(left, #2075b9, #143676);
    background: -o-linear-gradient(right, #2075b9, #143676);
    background: -moz-linear-gradient(right, #2075b9, #143676);
    background: linear-gradient(to right, #2075b9, #143676);
    padding: 0 0 0 0;
    position: relative;
    overflow-x:hidden;
}

.header {
    color: #FFFFFF;
    background: #143676;
    padding: 0.5rem 1rem;
    display: flex;
}

.header .logo {
    display: inline-block;
    margin-right: auto;
}

.header .language {
    font-size: 34px;
    line-height: 40px;
    display: inline-block;
}

.footer {
    width: 100%;
    color: #FFFFFF;
    background: #00a0e9;
    text-align: right;
    padding: 0.5rem;
    position: relative;
    right: 0;
    bottom: 0;
}

/* for index.html */
.account_name {
    color: white;
    font-size: 1.5rem;
    line-height: 40px;
    display: inline-block;
    vertical-align: middle;
}

#Menu_icon {
    color: #FFFFFF;
    background: #143676;
    font-size: 34px;
    line-height: 40px;
    border: 0;
    display: inline-block;

}

.nav_content {
    min-width: 350px;
    max-height: 80vh;
    color: #FFFFFF;
    background: #353535;
    list-style: none;
    padding: 0;
    border-radius: 1rem;
    border: 1px solid #666666;
    position: absolute;
    top: 63px;
    display: none;
    overflow-y: auto;
    z-index: 99;
}

.nav_content>li>a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 20px;
    display: block;
    border-bottom: 1px solid #666666;
}

.nav_content>li>a:hover {
    color: #00a0e9;
    background: #474747;
}

.nav_content>li>a>i:nth-of-type(1) {
    margin-right: 20px;
}

.nav_content>li>a>i:nth-of-type(2) {
    line-height: 36px;
    float: right;
}

.nav_content>li>ol {
    list-style: none;
    padding: 0;
    display: none;
}

.nav_content>li>ol>li>a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 20px 20px 20px 100px;
    display: block;
    border-bottom: 1px solid #666666;
}

.nav_content>li>ol>li>a:hover {
    color: #00a0e9;
    background: #474747;
}

.nav_content>li>ol>li>a>i {
    margin-right: 20px;
}

.nav_content>li>button {
    width: 80%;
    color: #FFFFFF;
    font-weight: bold;
    background: #00a0e9;
    border: 0;
    border-radius: 0.5rem;
    margin: 20px auto;
    display: block;
}

.nav_content>li>button:hover {
    background: #007fa8;
}


.function_area {
    padding-bottom: 50px;
    padding-top: 5%;
    padding-left: 12%;
    padding-right: 12%;
}

#LayoutContent {
    margin: 0;
    justify-content: center;
}






.container-fluid .list_area {
    /* padding-bottom: 1%; */
    background: linear-gradient(135deg, #5EFCE8 10%, #736EFE 100%);
    min-height: 100vh;
}

.container-fluid .list_area .tab_area {
    list-style: none;
    border-bottom: 1px solid #999999;
    padding: 0 1rem;
    margin: 0;
}

.container-fluid .list_area .tab_area li {
    display: inline-block;
}

.container-fluid .list_area .tab_area li a {
    color: #999999;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    display: block;
}

.container-fluid .list_area .tab_area li a.active {
    color: #143676;
    border-bottom: 3px solid #143676;
}

.container-fluid .list_area .function_btn {
    padding: 0.5rem 1rem;
}

.container-fluid .list_area .function_btn a {
    color: #FFFFFF;
    background: #143676;
    text-decoration: none;
    /* display: inline-block; */
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    float: right;
}

.container-fluid .list_area .function_btn a i {
    margin-right: 10px;
}

.container-fluid .list_area .list_table {
    padding: 0 1rem;
}

.container-fluid .list_area .list_table .table {
    min-width: 1600px;
}

.container-fluid .list_area .list_table .table thead tr th {
    color: #FFFFFF;
    background: #143676;
    text-align: center;
    vertical-align: middle;
}

.container-fluid .list_area .list_table .table thead tr th span {
    display: inline-block;
    vertical-align: middle;
}

.container-fluid .list_area .list_table .table thead tr th i {
    vertical-align: middle;
}

.container-fluid .list_area .list_table .table thead tr th i:nth-child(2) {
    margin-left: 20px;
}

.container-fluid .list_area .list_table .table tbody tr:nth-child(odd) {
    background: #FFFFFF;
}

.container-fluid .list_area .list_table .table tbody tr:nth-child(even) {
    background: #C6FEFF;
}

.container-fluid .list_area .list_table .table tbody tr:first-child {
    background: #dddddd;
}

.container-fluid .list_area .list_table .table tbody tr td {
    text-align: center;
    vertical-align: middle;
}

.container-fluid .list_area .list_table .table tbody tr td i {
    margin: 0 10px;
}


@media (min-width: 992px) {
    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 20%;
    }
}

table td,
table th {
    vertical-align: middle !important;
}

.datatable tfoot {
    display: table-header-group;
}

.datatable tfoot th,
.datatable tfoot td {
    position: relative;
}

/* auto hide input placeholder when focus on  supports Firefox 15 and IE 10+*/
table.datatable input:focus::-webkit-input-placeholder {
    color: transparent;
}

table.datatable input:focus:-moz-placeholder {
    color: transparent;
}

/* FF 4-18 */
table.datatable input:focus::-moz-placeholder {
    color: transparent;
}

/* FF 19+ */
table.datatable input:focus:-ms-input-placeholder {
    color: transparent;
}

table.datatable .odd {
    background-color: #e9ecef;
}

table.datatable .even {
    background-color: #ffffff;
}

table.datatable tbody {
    background-color: #FFFFFF;
}

table.datatable thead {
    background-color: #2352ab;
    color: #FFFFFF;
}

tbody .form-control{
    border-radius: 0.5rem;
}

tfoot>tr>th>input {
    text-align: center;
}

::-webkit-scrollbar {
    width: 16px;
    height: 16px;
    background-color: #F5F5F5;
}

/*定义滚动条轨道
 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

/*定义滑块
 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #555;
}

.modal-content {
    border-radius: 1rem;
}

.form-control {
    border-radius: 1rem;
}

.table-btn {
    width: 3rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.table-btn:hover {
    transform: rotate(60deg);
}

.title_row {
    border-bottom-style: groove;
    justify-content: center;
    font-size: 2rem;
}



@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1)
    }

    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55)
    }

    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1)
    }
}

.waveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    bottom: -1px;
    /* background-image: linear-gradient(to top, #3666c1 20%, #a8a8c7 80%); */
    background: linear-gradient(135deg, #5EFCE8 10%, #736EFE 100%);
}

.bgTop {
    z-index: 15;
    opacity: 0.5;
}

.bgMiddle {
    z-index: 10;
    opacity: 0.75;
}

.bgBottom {
    z-index: 5;
}

.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}

.waveTop {
    background-size: 50% 100px;
}

.waveAnimation .waveTop {
    animation: move-wave 3s;
    -webkit-animation: move-wave 3s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.waveMiddle {
    background-size: 50% 120px;
}

.waveAnimation .waveMiddle {
    animation: move_wave 10s linear infinite;
}

.waveBottom {
    background-size: 50% 100px;
}

.waveAnimation .waveBottom {
    animation: move_wave 15s linear infinite;
}

.ReportSearch-btn {
    width: 115px;
    border-radius: 20px;
    border: none;
    background: #22ba7c;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    transition: 0.5s ease;
    outline: none !important;
    margin-top: 30%;
    box-shadow: 5px 5px 12px rgb(0 0 0 / 35%);
}

.ReportSearch-btn:hover {
    background: #118b59;
    box-shadow: 0px 0px 0px rgb(0 0 0 / 35%);
}

.ReportSearch-MainBox {
    background-color: #ffffff;
    border-radius: 2rem;
    box-shadow: 9px 9px 12px rgb(0 0 0 / 35%);
    overflow-y: auto;
    padding: 20px;
    width: 100%;
}

.WMS-Btn-Big {
    display: none;
    width: 200px;
    border-radius: 20px;
    border: none;
    background: #436bec;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 9px 9px 12px rgb(0 0 0 / 35%);
    outline: none !important;
    transition: 0.5s ease;
    margin: 10px;
}

.WMS-Btn-Big:hover {
    background: #2254f5;
    box-shadow: 0px 0px 0px rgb(0 0 0 / 35%);
}

.label__checkbox {
    display: none;
}

.label__check {
    display: inline-block;
    border-radius: 50%;
    border: 5px solid rgba(0, 0, 0, 0.1);
    background: white;
    vertical-align: middle;
    /* margin-right: 20px; */
    width: 2em;
    height: 2em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border 0.3s ease;
}

.label__check i.icon {
    opacity: 0.2;
    font-size: calc(1rem + 1vw);
    color: transparent;
    transition: opacity 0.3s 0.1s ease;
    -webkit-text-stroke: 3px rgba(0, 0, 0, 0.5);
}

.label__check:hover {
    border: 5px solid rgba(0, 0, 0, 0.2);
}

.label__checkbox:checked+.label__text .label__check {
    -webkit-animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
    animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}

.label__checkbox:checked+.label__text .label__check .icon {
    opacity: 1;
    transform: scale(0);
    color: white;
    -webkit-text-stroke: 0;
    -webkit-animation: icon 0.3s cubic-bezier(1, 0.008, 0.565, 1.65) 0.1s 1 forwards;
    animation: icon 0.3s cubic-bezier(1, 0.008, 0.565, 1.65) 0.1s 1 forwards;
}

@-webkit-keyframes icon {
    from {
        opacity: 0;
        transform: scale(0.3);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes icon {
    from {
        opacity: 0;
        transform: scale(0.3);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes check {
    0% {
        width: 1.5em;
        height: 1.5em;
        border-width: 5px;
    }

    10% {
        width: 1.5em;
        height: 1.5em;
        opacity: 0.1;
        background: rgba(0, 0, 0, 0.2);
        border-width: 15px;
    }

    12% {
        width: 1.5em;
        height: 1.5em;
        opacity: 0.4;
        background: rgba(0, 0, 0, 0.1);
        border-width: 0;
    }

    50% {
        width: 2em;
        height: 2em;
        background: #00d478;
        border: 0;
        opacity: 0.6;
    }

    100% {
        width: 2em;
        height: 2em;
        background: #00d478;
        border: 0;
        opacity: 1;
    }
}

@keyframes check {
    0% {
        width: 1.5em;
        height: 1.5em;
        border-width: 5px;
    }

    10% {
        width: 1.5em;
        height: 1.5em;
        opacity: 0.1;
        background: rgba(0, 0, 0, 0.2);
        border-width: 15px;
    }

    12% {
        width: 1.5em;
        height: 1.5em;
        opacity: 0.4;
        background: rgba(0, 0, 0, 0.1);
        border-width: 0;
    }

    50% {
        width: 2em;
        height: 2em;
        background: #00d478;
        border: 0;
        opacity: 0.6;
    }

    100% {
        width: 2em;
        height: 2em;
        background: #00d478;
        border: 0;
        opacity: 1;
    }
}

.flag {
    width: 25px;
    vertical-align: bottom;
    margin-right: 10px;
}

.switch {
    line-height: initial;
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

[fnc="Md"],
[fnc="Adminonly"] {
    display: none;
}

.loading-overlay {
    z-index: 999999 !important;
}

.title_togglebtn {
    cursor: pointer;
    width: 10rem;
    border-radius: 10px;
    border: none;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    color: #ffff;
    background: hsl(0deg 0% 6% / 35%);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 10px rgb(0 0 0 / 25%);
    transition: 0.3s ease;
}

.title_togglebtn:hover {
    background: #00d1b6;
}

.title_togglebtn i {
    transition: 0.2s ease;
    transform: rotate(180deg);
}

.btn-submit {
    width: 35%;
    font-size: 1.5rem;
    font-weight: bold;
    background: #23b597;
    color: white;
    outline: none;
}

.btn-submit-inTableLast {
    width: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    background: #23b597;
    color: white;
    outline: none;
}
@media screen and (min-width: 1550px){
    .btn-submit-inTableLast {
        font-size: 1.5rem;
    }
  }
.searchtypegroup select {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    font-size: 20px;
    font-weight: bold;
    padding: 0 1rem;
    outline: none;
    border: none;
    border-right-style: groove;
    cursor: pointer;
}

.searchtypegroup input {
    width: 40%;
    font-size: 1rem;
    border: none;
    outline: none;
}

.searchtypegroup button {
    color: #f47676;
    background: white;
    border: none;
    outline: none;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.modal-backdrop {
    background: linear-gradient(135deg, #5EFCE8 10%, #736EFE 100%);
    opacity: 1 !important;
}

.modal-title {
    color: #143676;
    font-size: 1.5rem;
    font-weight: bold;
}

.btn_CEN{
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 1rem;
    padding: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border: none;
    background: #f43636;
    color: white;
}

.btn-group>.btn-group:not(:first-child),
.btn-group>.btn:not(:first-child) {
    margin-left: 1px;
}

.alert{
    z-index: 999999 !important;
}

.StartModal .btn{
    font-size: 1.5rem;
    font-weight: bold;
}

.StartModal .modal-body label{
    font-size: 2rem
}

.title_maininfo .back{
    font-size: 1.2rem;
    font-weight: bold;
}

.btn-times{
    color: red;
    font-size: 2rem !important;
}

.StartModal select{
    text-align-last: center;
}

.TitleLabel{
    padding: 0.3rem 1rem;
    border-radius: 1rem;
    color: #fff;
    min-width: 20rem;
    text-align: center;
    margin-top: 0.5rem;
    font-weight: bold;
    font-size: 1.5rem;
    background-image: linear-gradient( 135deg, #3C8CE7 10%, #22c9d8 100%);
}

.error_row{
    animation: twinkle 0.5s alternate infinite;
}

@keyframes  twinkle {
    from {
        background-color: #fb5c5c40;
    }
    to {
        background-color: #fb5c5ca1;
    }
}



.search-box input{
    width: 15rem;
    background: #d2e2f0;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    outline: none;
}

.search-box select{
    color: #e1eaef;
    border: none;
    background: linear-gradient( 135deg, #3C8CE7 10%, #22c9d8 100%);
    font-size: 1.5rem;
    font-weight: bold;
    width: 6rem;
    text-align-last: center;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    outline: none;
}

.search-box button{
    color: #e1eaef;
    background: linear-gradient( 135deg, #3C8CE7 10%, #22c9d8 100%);
    font-size: 1.2rem;
    border: none;
}

.title_maininfo {
    background: rgb(255 255 255 / 35%);
    backdrop-filter: blur(15px);
    padding: 0.5rem;
}

[fnc="RealCount"]{
    font-size: 1.3rem;
    font-weight: bold;
}

.Btn-Information {
    cursor: pointer;
    font-size: 2.5rem !important;
    color: #6d7cba;
}

.Btn-Information:hover {
    color: #314ec8;
}

/* .menu_container {
    overflow: visible;
} */

.nav_back .PageNavTitle {
    /*pointer-events: none;*/
    display: inline;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 30px;
    color: black;
    line-height: 1;
}

.hide_column{
    display: none;
}

.RackRoll {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    right: 1%;
    background-image: url(../img/Rackroll.png);
    background-size: 80% 80%;
    cursor: pointer;
    background-color: #efffff;
    background-repeat: no-repeat;
    background-position: center;
    border: #e8b80e 3px solid;
}

.RackRoll:hover {
    width: 55px;
    height: 55px;
    box-shadow: 4px 5px 13px #343a40;
}

.BtnContainer {
    display: flex;
    justify-content: space-around;
} 


.PrevHaveTaskSide, .NextHaveTaskSide {
    font-size: 150px;
}

.PrevHaveTaskSide i {
    cursor: pointer;
    text-shadow: 0 -0.1em 0.1em #2a798f;
}

.NextHaveTaskSide i {
    cursor: pointer;
    text-shadow: 0 0.1em 0.1em #2a798f;
}

.DirectChoose {
    width: 45%;
    min-height: 200px;
    text-align: center;
    padding-top: 40px;
}

.SideNumContainer {
    width: 90%;
    height: 165px;
    margin-bottom: 40px;
    border-radius: 15px;
    font-size: 100px;
    text-align: center;
    border: 11px solid palegoldenrod;
}

.RotateSub {
    width: 50%;
    height: 40px;
    border-radius: 15px;
    border: none;
    margin-bottom: 20px;
    box-shadow: 0em 0.3em 0.3em #1f7949;
}

.NextHaveTaskSide i:active {
    text-shadow: unset;
    transform: translateY(10px);
}

.PrevHaveTaskSide i:active {
    text-shadow: unset;
    transform: translateY(10px) rotate(180deg);
}

.RotateSub:active {
    box-shadow: unset;
    transform: translateY(10px);
    outline: none;
}

.RotateSub:focus, .SideNumContainer:focus {
    outline: none;
}

.List_NowRotating {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
    background: beige;
}

.List_NowRotating-pic {
    width: 600px;
    height: 600px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/RackBtnPrevAni.gif);
}
.List_NowRotating p {
    font-size: 2em;
    text-align: center;
    margin-top: -3em;
}

.reportBtn {
    cursor: pointer;
}