:root{
    scrollbar-width: none;
}

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; */
    /*background-color: #D32D26;*/
    background-color: #ededed;
    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: hidden;
}

#sidebar{
    flex: 1 1 auto;
    min-width: 170px;
    max-width: 11.3%;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

#sidebar .side-bar-container{
    padding: 10px;
    background-color: #D9D9D9;
    flex: 1 1;
}

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

.container-wp{
    flex: 1 1 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: #AF3030;
}

.side-bar-item.select{
    /* background-color: #AF3030; */
    /* color: #FFFFFF; */
    color: #AF3030;
}
