html,
body{
    font-family: 'Inter', sans-serif;
    color: #000000;
    font-size: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body.admin-body{
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    overflow: hidden;
}

body.admin-body::-webkit-scrollbar {
    display: none;
    /* Chrome  */
}

header{
    background-color: #323333;
    height: 80px;
    width: 100%;
    z-index: 1000;
    flex: 0 0 auto;
}

header *{
    font-weight: bold;
}

header .logo{
    /* background: #D9D9D9; */
    /* background: #AF3030; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 100%;
    width: 210px;
}

#content-wp{
    display: flex;
    flex: 1 1 auto;
    overflow: auto;
}

#sidebar{
    flex: 1 1 auto;
    padding: 10px;
    min-width: 170px;
    max-width: 11.3%;
    background-color: rgba(1, 1, 1, 1);
}

#content{
    flex: 1 1;
    overflow: auto;
}


.side-bar-item{
    font-weight: bold;
    display: block;
    color: #000000;
    padding: 7px 10px;
    /* border-radius: 5px; */
}

.side-bar-item:hover{
    /* background-color: #AF3030; */
    color: rgb(224, 137, 7) !important;
}

.side-bar-item.select{
    /* background-color: #AF3030; */
    /* color: #FFFFFF; */
    color: rgb(224, 137, 7);
}

.bg-dark-custom {
    background-color: rgba(1, 1, 1, 1);
}

.table .thead-dark th {
    background-color: rgba(1, 1, 1, 1) !important;
    border-color: rgba(1, 1, 1, 1) !important;
    font-weight: normal !important;
}

.text-color-golden {
    color: rgb(221 173 101);
}

#sidebar-toggle {
    display: none;
}

.mobile-select-language{
    display: none;
}

@media screen and (max-width: 500px) {
    #sidebar-toggle {
        display: block;
    }
    #sidebar {
        display: none;
    }
    .pc-select-language {
        display: none !important;
    }
    .mobile-select-language{
        display: block;
    }
}
