.sr-only {
    position: absolute;
    white-space: nowrap;
    clip: rect(0 0 0 0);
}

.sidebar-toggle {
    opacity: 1;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
    filter: brightness(0);
}

.sidebar-toggle:hover {
    opacity: 1;
}

.sidebar-toggle.rotated {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: var(--sidebar-color) !important;
    width: 268px;
    padding: 20px 15px 7px 6px;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    transition: 0.5s all;
    min-height: 100vh;
    z-index: 98;
    padding-top: 84px;
}

.sidebar a:focus {
    outline: none;
}

.sidebar-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(113, 109, 102, 0.1);
}

.logo-text,
.logo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.logo-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.logo {
    margin-right: 9px;
}

.logo-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #716d66;
}

.logo-subtitle,
.logo-title {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .86px;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 500;
    line-height: 2.42;
}

.comp__logo {
    max-height: 56px;
    padding: 0 0.65rem 0 1.5rem;
}

.sidebar-body {
    padding-top: 0px;
}

.sidebar-body-menu li {
    position: relative;
}

.sidebar-body-menu a {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: start;
    padding: 10px 0 10px 12px;
    color: var(--body-font-color);
    font-size: 1rem;
    line-height: 1.25rem;
}

.sidebar-body-menu a i {
    margin-right: 0.65rem;
}

.sidebar-body-menu a::after {
    position: absolute;
    content: '';
    height: 22px;
    width: 3px;
    right: -11px;
    border-radius: 10px;
    background-color: #716d66;
    opacity: 0;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
}

.sidebar-body-menu a:hover {
    opacity: 1;
    background-color: #f5f5f5;
    color: var(--theme-color);
}

.sidebar-body-menu a:hover::after {
    opacity: 1;
}

.sidebar-body-menu a.active {
    opacity: 1;
    transition: color .2s ease;
    color: var(--theme-color);
    /*
    background-color: var(--theme-color);
    border-radius: var(--bs-btn-border-radius);
*/
}

.sidebar-body-menu a.active::after {
    opacity: 0;
}

.sidebar-body-menu a>.icon {
    margin-right: 10px;
}

.transparent-btn {
    background-color: transparent;
    border: 2px solid transparent !important;
    padding-left: 0;
}

.category__btn,
.gray-circle-btn,
.ligt-circle-btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
}

.category__btn {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    right: 0;
    top: 13px;
    z-index: 1;
}

.category__btn .bi,
.category__btn i,
.category__btn .fa {
    font-size: 0.9rem;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.category__btn.rotated .bi,
.category__btn.rotated i,
.category__btn.rotated .fa {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.cat-sub-menu {
    padding-left: 0;
    height: 0;
}

.cat-sub-menu.visible {
    height: auto;
    margin-bottom: 1rem;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.cat-sub-menu.visible li {
    margin-left: 2rem;
}

.cat-sub-menu a {
    opacity: 0;
    visibility: hidden;
    padding-left: 38px;
}

.cat-sub-menu.visible a {
    opacity: .9;
    visibility: visible;
    padding: 0.5rem 0 0.5rem 0.75rem;
}

.cat-sub-menu.visible a.active {
    opacity: 1;
}

.cat-sub-menu.visible a:before {
    content: '';
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    margin-right: 0.5rem;
    margin-top: 0.6rem;
    width: 4px;
    height: 4px;
    border-radius: 100% !important;
    background-color: #716d66;
}

.cat-sub-menu.visible a.active:before {
    background-color: #fff;
}

.msg-counter {
    position: absolute;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: #f26464;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px !important;
    color: #fff;
}

.msg-counter,
.system-menu__title {
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: .75px;
}

.system-menu__title {
    display: inline-block;
    margin-top: 13px;
    margin-bottom: 2px;
    margin-left: 4px;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(0, 0, 0, .5);
}

.sidebar-user {
    border-radius: 10px;
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: rgba(113, 109, 102, 0.1);
}

.sidebar-user-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-right: 8px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    overflow: hidden;
    background-color: #fff;
}

.sidebar-user-img picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.sidebar-user-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.sidebar-user__title {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.75px;
    color: rgb(113, 109, 102);
}

.sidebar-user__subtitle {
    font-weight: 500;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.86px;
    color: rgba(113, 109, 102, 0.5);
}

.sidebar-body-menu li {
    position: relative;
    border-bottom: solid 1px #eee;
}

.sidebar-body-menu li ul li {
    border-bottom: none;
}

.main-nav--bg {
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    background-color: #fff;
    width: 100%;
    z-index: 99;
    position: fixed;
    top: 0;
    background: transparent !important;
    padding: 0 !important;
}

.main-nav {
    height: 64px;
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: var(--sidebar-color)!important;
}

.main-nav-start {
    font-weight: 700;
    font-size: 1.75em;
    align-items: center;
    justify-content: center;
    display: flex;
}

.main-nav-start a {
    display: flex;
    align-items: center;
    color: var(--body-font-color);
}

.main-nav-start div {
    border-left: solid 2px #888;
    padding: 0.25rem 0 0.25rem 0.75rem;
    margin-left: 0.25rem;
}

.main-nav-end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: end;
}

.main-nav-end>* {
    margin-left: 15px;
}

.category__btn,
.gray-circle-btn,
.ligt-circle-btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
}

.gray-circle-btn,
.ligt-circle-btn {
    width: 40px;
    height: 40px;
    border-width: 0;
}

.gray-circle-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #eff0f6;
}

.sidebar-body ol,
.sidebar-body ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.users-item-dropdown {
    right: 20px;
    top: 60px;
    width: 125px;
}

.main-nav .nav-user-wrapper,
.search-wrapper {
    position: relative;
    align-items: center;
    display: flex;
    gap: 0.5rem;
}

.search-wrapper svg {
    stroke: #d6d7e3;
    position: absolute;
    left: 11px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    z-index: 1;
}

.search-wrapper input {
    width: 200px;
    border-radius: 6px;
    background-color: #eff0f6;
    padding: 3px 8px 3px 42px;
    height: 40px;
    border-width: 0;
}

.main-nav .notification-dropdown {
    right: 0;
    width: 236px;
    padding: 10px;
}

.main-nav .notification,
.main-nav .notification-wrapper {
    position: relative;
}

.main-nav .notification::after {
    display: none;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 50%;
    height: 9px;
    width: 9px;
    border: 1px solid #fff;
    background-color: #f26464;
}

.main-nav .notification.active::after {
    display: initial;
}

.main-nav .notification-dropdown a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 10px;
    padding-top: 15px;
}

.main-nav .notification-dropdown-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.main-nav .notification-dropdown-icon.info {
    background-color: rgba(88, 135, 255, .1);
    color: #5887ff;
}

.main-nav .notification-dropdown-icon.danger {
    background-color: rgba(242, 100, 100, .1);
    color: #f26464;
}

.main-nav .notification-dropdown-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 167px;
}

.main-nav .notification-dropdown__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.22;
    color: #171717;
    margin-bottom: 5px;
}

.main-nav .notification-dropdown__subtitle {
    font-size: 10px;
    line-height: 1.2;
    color: #767676;
}

.main-nav .notification-dropdown a.link-to-page {
    padding-top: 17px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #5887ff;
}

.main-nav .nav-user-img,
.main-nav .nav-user-img picture,
.main-nav .nav-user-wrapper .users-item-dropdown a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-nav .nav-user-img {
    border-radius: 50%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    width: 40px;
    height: 40px;
    background-color: #f5efff;
}

.main-nav .nav-user-img picture {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.main-nav .nav-user-wrapper .users-item-dropdown {
    width: 215px;
    right: 0;
    font-size: 1rem;
}

.main-nav .nav-user-wrapper .users-item-dropdown li {
    list-style: none;
}

.main-nav .nav-user-img,
.main-nav .nav-user-img picture,
.main-nav .nav-user-wrapper .users-item-dropdown a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.25rem 0;
}

.main-nav .nav-user-img img {
    width: 100%;
}

.main-nav .nav-user-wrapper .users-item-dropdown svg,
.main-nav .nav-user-wrapper .users-item-dropdown i {
    margin-right: 13px;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-user-wrapper button {
    cursor: pointer;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    border: 2px solid transparent;
}

.users-item-dropdown {
    right: 20px;
    top: 60px;
    width: 125px;
}

.users-item-dropdown.active {
    opacity: 1;
    visibility: visible;
}

.nav-user-btn {
    background-color: transparent;
    padding: 0;
}

@media (max-width: 767px) {
    .main-nav-end>*:first-child {
        margin-left: 0;
    }
    .search-wrapper {
        order: 3;
    }
    .search-wrapper input {
        width: 100%;
    }
    .sidebar {
        width: 100%;
    }
    .main-nav-end>* {
        margin-left: 10px;
    }
    .main-nav-start div {
        font-size: 1.2rem;
    }
}

@media (max-width: 1199.98px) {
    .sidebar {
        position: fixed;
        z-index: 8;
        overflow-y: auto;
        overflow-x: hidden;
        left: -1000px;
    }
    .sidebar.hidden {
        left: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) and (orientation: landscape) {
    .sidebar {
        position: sticky;
        left: unset;
        width: 60px;
        padding: 84px 50px 7px 0;
        align-items: center;
    }
    .sidebar.hidden {
        position: fixed;
        z-index: 8;
        overflow-y: auto;
        overflow-x: hidden;
        left: unset;
        -webkit-transform: translateX(-300px);
        -ms-transform: translateX(-300px);
        transform: translateX(-300px);
    }
    .sidebar-start {
        width: 40px;
        margin-left: 30px;
    }
    .layer {
        display: none!important;
    }
    .sidebar-body-menu li {
        width: 60px;
    }
    .sidebar-body-menu a {
        font-size: 0;
        padding: 13px 17px 13px 18px;
    }
    .sidebar i.bi.bi-chevron-down {
        display: none;
    }
    .sidebar-body-menu a::after {
        top: 0;
        right: 0;
        height: 50px;
    }
    .cat-sub-menu.visible {
        position: fixed;
        width: 268px;
        background-color: var(--sidebar-color);
        box-shadow: var(--body-box-shadow);
        left: 85px;
        margin-top: -55px;
        border-radius: var(--bs-btn-border-radius);
        padding: 0.5rem 0.25rem;
    }
    .cat-sub-menu.visible::before {
        content: '';
        position: absolute;
        left: -14px;
        top: 18px;
        border-style: solid;
        border-width: 15px 15px 15px 0;
        border-color: transparent #fff transparent;
    }
    .cat-sub-menu.visible li {
        margin-left: 0;
        width: 100%;
    }
    .cat-sub-menu.visible>li>a {
        font-size: 1rem;
        border-bottom: 1px solid #eee;
    }
}

@media (min-width: 1200px) {
    .sidebar.hidden {
        width: 64px;
        padding-right: 14px;
        padding-left: 14px;
    }
    .sidebar.hidden .logo-wrapper {
        display: none;
    }
    .sidebar.hidden * {
        font-size: 0px;
    }
    .sidebar.hidden .bi,
    .sidebar.hidden i,
    .sidebar.hidden .fa {
        font-size: 1.3rem;
    }
    .sidebar.hidden .sidebar-head {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 13px;
        padding-bottom: 20px;
    }
    .sidebar.hidden .sidebar-head .sidebar-toggle {
        height: 24px;
    }
    .sidebar.hidden .category__btn {
        display: none;
    }
    .sidebar.hidden .sidebar-body-menu a {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .sidebar.hidden .sidebar-body-menu a::after {
        right: -4px;
    }
    .sidebar.hidden .sidebar-body-menu a>.icon {
        margin-right: 0;
    }
    .sidebar.hidden .msg-counter {
        right: 10px;
        top: 30%;
    }
    .sidebar.hidden .sidebar-user {
        width: 52px;
        height: 53px;
        margin-right: auto;
        margin-left: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .sidebar.hidden .sidebar-user-img {
        width: 40px;
        height: 40px;
        margin-right: 0;
    }
    .sidebar.hidden .sidebar-user-img img {
        height: 100%;
        width: 100%;
    }
    .sidebar.hidden .cat-sub-menu.visible {
        position: absolute;
        background-color: #ffffff;
        width: 280px;
        left: 68px;
        padding: 5px;
        margin-top: -40px;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    }
    .sidebar.hidden .cat-sub-menu.visible::before {
        content: '';
        position: absolute;
        left: -20px;
        top: 10px;
        border-style: solid;
        border-width: 0 15px 15px;
        border-color: transparent transparent #ffffff;
        transform: rotate(-90deg);
    }
    .sidebar.hidden .cat-sub-menu.visible li {
        margin-left: 0;
        border-bottom: solid 1px #eee;
    }
    .sidebar.hidden .cat-sub-menu.visible a {
        font-size: 1rem!important;
        justify-content: start;
        padding-left: 15px;
    }
    .search-wrapper input {
        width: 271px;
    }
}

.menu-toggle {
    background-image: url(../img/Bulk/Menu-toggle-gray.svg);
    width: 24px;
    height: 24px;
    scale: 125%;
}

.menu-toggle--gray {
    background-image: url(../img/Bulk/Menu-toggle-gray.svg);
    filter: opacity(100%);
    width: 24px;
    height: 24px;
    scale: 125%;
}

.icon {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
}

.sidebar i.bi,
.sidebar i.fa {
    font-size: 1.3rem;
    padding-top: 2px;
}

.sidebar i.bi.bi-chevron-down {
    margin-right: 0;
    font-size: 1rem;
    padding-top: 0;
    margin-top: -1px;
}