a {
    color: #23869b;
    text-decoration: none;
}

a.active,
a:hover {
    color: #4f9eaf
}

body {
    scrollbar-width: thin;
    scrollbar-color: #aaa;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(170, 170, 170, 0.5);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(170, 170, 170, 1);
}

.container {
    display: flex;
}

.container__main-menu {
    max-width: 65px;
    min-width: 65px;
    flex: 1;
    margin-right: 5px;
}

.container__sidebar-menu {
    max-width: 230px;
    min-width: 230px;
    flex: 1;
    margin-right: 5px;
}

.container__content {
    flex: 1;
}

.loadingDiv {
    display: none;
}

.loadingDiv:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    opacity: 0.4 !important;
    background: #000;
}

.loadingDiv:after {
    content: "";
    display: block;
    position: fixed;
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    z-index: 11;
    margin-top: -75px;
    margin-left: -75px;
    background: url("/img/loading2.gif") no-repeat #fff center;
    border-radius: 50%;
}