@media only screen and (max-width: 1280px) {}

@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 768px) {}

@media only screen and (max-width: 480px) {}

@media screen and (orientation: portrait) {}

/*==================================================*/
/*==================================================*/
/*==================================================*/
/*==================================================*/
/*==================================================*/
/*==================================================*/
/*::-moz-selection,::selection {
    color: #fff;
    background: #22772d;
}
::-webkit-scrollbar-track{
    background-color: #999;
}
::-webkit-scrollbar-thumb{
    background-color: #22772d;
}
::-webkit-scrollbar-corner{
    background-color: #999;
}*/
body {
    background-color: rgb(26, 23, 19);
}

.loading {
    color: #22772d;
    background-color: rgba(255, 255, 255, 0.5);
}

a {
    color: #98834b;
}

caption {
    background-color: #98834b;
    color: #fff;
}

table,
th,
td,
hr,
[contenteditable],
input,
fieldset,
select,
textarea {
    border-color: #ccc;
}

input[type="checkbox"]:checked+i,
input[type="radio"]:checked+i {
    color: #22772d;
}

[contenteditable]:focus,
input:focus,
select:focus,
textarea:focus {
    border-color: #98834b;
    border-width: 3px;
}

input[type="reset"],
input[type="button"],
input[type="submit"] {
    border-color: transparent;
    background-color: #98834b;
    color: #fff;
}

input[type="reset"]:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
    background-color: #8f8787;
}

.btn {
    border-color: transparent;
    background-color: #98834b;
    color: #fff;
}

.btn-group.merge .btn {
    border-right-color: #333333;
}

.btn-group.merge .btn:last-child {
    border-right-color: transparent;
}

.btn:hover {
    background-color: #8f8787;
}

.input-group label {
    border-color: #ccc;
    background-color: #e2e3e5;
}

.checkbox-group .checkbox {
    border: solid 1px #ccc;
}

.checkbox-group dl,
.checkbox-group dt,
.file-group dl {
    border-color: #ccc;
}

.checkbox-group input[type="checkbox"]:checked+dl,
.checkbox-group input[type="radio"]:checked+dl {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.checkbox-group input[type="checkbox"]:checked+dl dt,
.checkbox-group input[type="radio"]:checked+dl dt {
    border-color: #c3e6cb;
}

.file-group dt {
    border-color: #ccc;
    background-color: #e2e3e5;
}

/*------*/
.alert {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.alert-ok {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

/*-----fnfreezex-*/
table.fnfreezex tr,
table.fnfreezex th,
table.fnfreezex td {
    transition-property: background-color;
    transition-duration: 0.5s;
    transition-timing-function: ease;
}

table.fnfreezex th.freezex,
table.fnfreezex td.freezex {
    background-color: #ccc;
    border-color: #555;
}

table.fnfreezex th.freezex.last,
table.fnfreezex tr td.freezex.last {}

table.fnfreezex tr:hover,
table.fnfreezex tr:hover th.freezex,
table.fnfreezex tr:hover td.freezex {
    background-color: #eee;
}

.row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.row>.col-2 {
    margin: 0 5px 0 5px;
}

#container {
    padding: 10px;
}

.font_150 {
    font-size: 150%;
}

.pick {
    color: white;
    background-color: #98834b;
}

.pagination>a:hover {
    background-color: #E6E6E6;
    color: #98834b;
}

.table_border th {
    font-size: 24px;
    padding: 10px 0 10px 0;
    color: rgba(255, 255, 255, 0.9);
}

.index_container {
    margin: 20px;
    padding: 10px;
    border: solid 2px rgba(255, 255, 255, 0.9);
    border-radius: 10px;
}

.index_container .row {
    padding: 10px;
}

.onclick {
    background-color: rgb(126, 113, 100);
}


main .tips {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 200px;
    max-width: 500px;
    transform: translate(-50%, -50%);
    z-index: 99999;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
}

.tips-success {
    color: #3c763d;
    background-color: #dff0d8d5;
    border-color: #3c763d;
}


#sidebar_btn {
    position: absolute;
    left: 300px;
    background-color: #FFFFF6;
    color: black;
    width: 20px;
    height: 70px;
    text-align: center;
    line-height: 65px;
    top: 415px;
    cursor: pointer;
}

.flip_btn {
    animation-name: example;
    animation-fill-mode: both;
    animation-duration: 0.5s;
}

@keyframes example {
    to {
        transform: rotateY(180deg);
    }
}