input,
textarea,
select,
button {
    font-family: 'sahel', sans-serif;
}

input,
select {
    border: none;
    outline: none;
}

input:disabled,
select:disabled,
textarea:disabled {
    opacity: 0.8;
    background-color: #fafafa !important;
    border-color: #eee !important;
    cursor: not-allowed !important;
}

.-f-sh-0 {
    flex-shrink: 0;
}

.-h-40px {
    height: 40px;
}

.-wh-17px {
    height: 17px;
    width: 17px;
}

.-pt-50px {
    padding-top: 50px;
}

.-mt--100 {
    margin-top: -100px;
}

.-brd-r-50px {
    border-radius: 50px;
}

.-w-40px {
    width: 40px;
}

.-mn-h-40px {
    min-height: 40px;
}

.-mn-w-40px {
    min-width: 40px;
}

.-li-h-36 {
    line-height: 36px;
}

.-ovf-a {
    overflow: auto;
}

.-mn-w-150px {
    min-width: 150px;
}

.-mn-w-300px {
    min-width: 300px;
}

.-w-300px {
    width: 300px;
}

.-h-50px {
    min-height: 50px;
}

.-h-100px {
    height: 100px;
}

.-f-sh-0 {
    flex-shrink: 0;
}

.-word-break-all{
    word-break: break-all;
}

table tr:nth-of-type(2n-1) {
    background-color: var(--gray-1);
}

table td,
table th {
    border: 1px solid #eee;
    padding: 5px;
    box-sizing: border-box;
    vertical-align: middle;
}

table th {
    color: white;
    white-space: nowrap;
    background-color: var(--gray-8);
    border: 1px solid var(--black);
    padding: 15px 10px 10px 15px;
    box-sizing: border-box;
}

#admin_panel .navigation {
    width: 200px;
    position: relative;
    transition: all 0.3s;
}

#admin_panel .content {
    width: calc(100% - 200px);
    min-height: calc(100vh - 80px);
    height: auto;
}

#admin_panel main {
    width: 100%;
}

#admin_panel .menu_button {
    width: 50px;
    height: 50px;
    border-radius: 50px 0 0 50px;
    position: absolute;
    right: calc(100% + 1px);
    bottom: 30px;
}

#admin_panel .close_menu {
    position: fixed;
    top: 0;
    left: -200%;
    width: calc(100% - 200px);
    background-color: #000000;
    opacity: 0.6;
    height: 100vh;
    transition: all 0.3s;
    z-index: 99;
}

@media all and (max-width: 970px) {

    table td,
    table th {
        min-width: 150px;
    }

    table tr td:first-child,
    table tr th:first-child {
        min-width: auto;
    }

    #admin_panel .navigation {
        position: fixed;
        top: 0;
        right: -200px;
        height: 100vh;
        z-index: 100;
    }

    #admin_panel .navigation.active {
        right: 0;
    }

    #admin_panel .content,
    #admin_panel main {
        width: 100%;
        min-height: calc(100vh - 80px);
        height: auto;
    }

    #admin_panel .close_menu.active {
        left: 0;
    }

}

@media all and (max-width: 810px) {
    .-w3-pos-sta {
        position: static;
    }
}