:root{
    --skyrim-bg-purple:linear-gradient(#000000 0%, #181920 14.6444%, #251E26 69.4435%, #3A303F 99.7541%);
    --skyrim-header-fc:#FFFFFF;
}
a,
a:hover,
.btn,
.btn:hover{
    color: unset;
    text-decoration: none;
}
.btn:hover{
    background-color: var(--dark_bg);
}
.btn:focus, .btn.focus{
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
html{
    height: 100%;
}
.bg_purple{
    background: var(--skyrim-bg-purple);
    height: 100vh;
    position: relative;
}
.cursor_pointer{
    cursor: pointer;
}
/* scroll bar */
::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-button {
    background: transparent;
    border-radius: 4px;
}
/* 滾動條背景 */
::-webkit-scrollbar-track-piece {
    background: transparent;
}
/* 滾動條 */
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #ccc;
    border: 1px solid slategrey;
}

::-webkit-scrollbar-track {
    box-shadow: transparent;
}
/* modal */
.modal-header{
    border-bottom: 1px solid transparent;
}
.modal-footer{
    border-top: 1px solid transparent;
}
/* btn */
.btn_purple{
    background-color: var(--sidebar_option_bg);
}









/* input */
input[type=checkbox]{
    background-color: white; 
    border: 1px solid #FFF;
    border-radius: 50%; 
    appearance: none;
    -webkit-appearance: none; 
    outline: none; 
    cursor: pointer;
}
input[type=text],
textarea.form-control{
    background-color: #000;
    color: #ccc;
    border: 1px solid #030319;
    border-radius: 30px;
}
input[type=text]:focus,
textarea.form-control:focus{
    color: #fff;
    background-color: #000;
    border-color: #424689;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(66, 70, 137,0.25);
}
/* select custom */
.purple .btn_select{
    background-color: #000;
    border-radius: 18px;
}
.select_custom>.dropdown-menu{
    background-color: var(--dark_bg);
}
.select_custom>.dropdown-menu>.dropdown-item{
    color: #ccc;
}
.select_custom>.dropdown-menu>.dropdown-item:hover{
    background-color: #1a1b36;
}
/* select custom 2 */
.select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}
.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 16px;
}
.select-styled{
    background-color: #000;
    padding: 5px 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.select-options{
    position: absolute;
    background-color: #030319;
    padding: 0;
    margin: 0;
    width: 100%;
    border-radius: 18px;
    min-width: 100px;
    list-style: none;
    display: none;
    z-index: 999;
}
.select-options li{
    padding: 15px;
}
.select-options li:hover{
    background-color: var(--sidebar_option_bg);
}

/* modal */
.modal-content{
    background-color: #25202a;
}

.MachineContents_header{
    position: absolute;
    width: 100%;
}

/* flex */
.flex-1{
    flex:1;
}
.flex-2{
    flex:2;
}
.flex-3{
    flex:3;
}
.inner_container{
    padding: 80px 0 0 100px;
}
/* text */
.text_ccc{
    color: #ccc;
}
.text_999{
    color: #999;
}
.text_green{
    color: #4E9B76;
}
.text_underline{
    text-decoration: underline;
}
.font_20{
    font-size: 20px;
}
/* search and its input */
.right_search{
    position: relative;
}
.right_search>input[type=text]{
    background-color: #000;
    border-radius: 18px;
    border: 1px solid #999;
    height: 35px;
    width: 0px;
    position: absolute;
    right: 60px;
    top: 0;
    display: none;
    transform: all ease 0.3s;
}
.right_search>input[type=text].show{
    width: 150px;
    display: block;
}
/* ===purple==== */
.purple{
    color: #fff;
}
.purple .color_main{
    color: #FFFFFF;
}
.purple input[type=checkbox]:checked{
    background-color: #424689; 
}

div.dataTables_wrapper div.dataTables_filter input {
    background-color: #000;
    color: #ccc;
    border: 1px solid #030319;
    border-radius: 30px;
    margin-left: 0.5em;
    display: inline-block;
    width: auto;
}
div.dataTables_wrapper div.dataTables_filter input:focus {
    color: #fff;
    background-color: #000;
    border-color: #424689;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(66, 70, 137,0.25);
}
div.dataTables_wrapper div.dataTables_filter label {
    font-weight: normal;
    white-space: nowrap;
    text-align: left;
    display: flex;
    align-items: center;
    margin-bottom: 0px;
}

.list-unstyled li{
    white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_length label {
    margin-bottom: 0px;
}

div.dataTables_wrapper div.dataTables_length select {
    width: auto;
    display: inline-block;
    background-color: #000;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff;
    border-radius: 1rem;
}

div.dataTables_wrapper div.dataTables_info {
    padding-top: 0px;
}

div.dataTables_wrapper div.dataTables_length select option{
    position: absolute;
    background-color: #030319;
    padding: 0;
    margin: 0;
    width: 100%;
    color: #fff;
}

.jump-select {
    width: auto;
    display: inline-block;
    background-color: #000;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff;
    border-radius: 1rem;
}

.jump-select option{
    position: absolute;
    background-color: #030319;
    padding: 0;
    margin: 0;
    width: 100%;
    color: #fff;
}

.SkyrimSelect {
    width: 100%;
    background-color: #000;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff;
    border-radius: 1rem;
    border: none;
}

.SkyrimSelect:focus{
    color: #fff;
    background-color: #000;
    border-color: #424689;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(66, 70, 137,0.25);
}

.SkyrimSelect option{
    position: absolute;
    background-color: #030319;
    padding: 0;
    margin: 0;
    width: 100%;
    color: #fff;
}

.AlarmCanvas{
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    position: absolute;
}