/* DCP Header css*/
.header-fixed {
    background: var(--body-bg);
    z-index: 999;
    top: 20px;
    height: 70px;
    position: fixed;
    left: 20px;
    right: 20px;
    display: flex;
    padding: 0px 15px;
    border-radius: 15px;
    border: 1px solid var(--primary-br);
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
    /* box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1); */
    &.header-scroll-fixed{
        top: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        border: 0;
        box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
    }
}
@media (min-width:992px) {
    .header-fixed {
        padding: 0px 20px;
    }
}
.logo-height{
    max-height: 40px;
    max-width: 170px;
}
/* Sidebar Panel */ 
.sidebar {
    width: 60px;
    position: fixed;
    top: 60px;
    height: 100%;
    z-index: 1;
    margin: 0;
    webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    left: -240px;
    background: var(--theme-bg);
    backdrop-filter: blur(15px);
}
.sidebar.sidebar-show {
    width: 220px;
    position: fixed;
    top: 60px;
    height: 100%;
    z-index: 99;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.sidebar.sidebar-show1 {
    left: 0px;
}
.sidebar-menu .mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 2px !important;
}
.sidebar-menu .mCSB_scrollTools {
    width: 7px !important;
}
@media (min-width:992px) {
    .sidebar {
        height: -webkit-calc(100% - 60px);
        height: calc(100% - 60px);
        left: 0px;
    }
    /* .sidebar:hover {
        width: 220px;
        position: fixed;
        top: 60px;
        height: -webkit-calc(100% - 60px);
        height: calc(100% - 60px);
        z-index: 1099;
        margin: 0;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
    } */
    .sidebar.sidebar-show {
        height: -webkit-calc(100% - 60px);
        height: calc(100% - 60px);
    }
}
/* Sidebar Panel End */
/* -- Sidebar Menu --*/
.sidebar-menu {
    position: relative;
    height: calc(100% - 60px);
    overflow-y: auto;
    padding: 20px 0;
}
.sidebar-menu::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 90%;
    border: 1px solid var(--theme-br);
}
.sidebar-menu .padding {
    padding: 30px 10px 0px 10px;
}
.sidebar-menu ul,
.close-sidemenu ul {
    margin: 0px;
    padding: 0px;
}
.sidebar-menu ul li,
.close-sidemenu ul li {
    white-space: nowrap;
    position: relative;
    display: block;
    padding: 0 10px;
    margin-bottom: 5px;
}
.sidebar-menu ul li a.nav-link,
.close-sidemenu ul li a.nav-link {
    display: flex;
    align-items: center;
    padding: 10px 5px;
    position: relative;
    color: var(--theme-text-color);
    transition: none;
    font-weight: 400;
    border-radius: 5px;
    border: 0;
}
.sidebar-menu ul li a:hover,
.sidebar-menu .nav-item .submenu li a:hover {
    color: var(--white-color);
    background: var(--theme-gradient-light);
}
.sidebar-menu ul li.nav-item.active a.nav-link {
    font-weight: 500;
    color: var(--theme-white);
    background: var(--theme-gradient);
}
.sidebar-menu ul li.nav-item.active a.nav-link .size-icon {
   color: var(--theme-white);
}
.sidebar-menu ul li.nav-item.active ul.sub-child1 a.nav-link {
    font-weight: 600;
    border-radius: 0px;
    color: var(--black-color);
    background:transparent;
    border:none;
}
.sidebar-menu ul li.nav-item.active ul.sub-child1 a.nav-link .size-icon{
    color:var(--white-color);
}
.sidebar-menu ul li.nav-item.active ul.sub-child1 a.nav-link:hover{
    background:var(--theme-br);
}
.sidebar-menu ul li.nav-item.active ul.sub-child1 a.nav-link:focus {
    border-left:3px solid var(--theme-br2);
}
.sidebar-menu ul li.close-btn.active a.nav-link {
    font-weight: 600;
    color: var(--black-color);
    background: none;
    border:none;
}
.sidebar-menu ul li a.nav-link span.size-icon,
.close-sidemenu ul li a.nav-link span.size-icon {
    display: inline-block;
    width: 30px;
    min-width: 30px;
    position: relative;
    text-align: center;
    font-size: 14px;
}
.sidebar-menu ul li a.nav-link span.menu-title,
.close-sidemenu ul li a.nav-link span.menu-title {
    display: block;
    width: calc(100% - 40px);
    justify-content: start;
    white-space: nowrap;
    align-items: center;
    font-size: 14px;
    line-height: 19px;
}
@media (min-width:1600px) {
    .sidebar-menu ul li a.nav-link span.menu-title{
        font-size: 14px;
    }
}
.sidebar-menu ul li a.nav-link span.menu-title .value {
    width: calc(100% - 22px);
}
.sidebar-menu ul li.nav-item a.nav-link.collapsed i.down-arrow {
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-size: 10px;
}
.sidebar-menu ul li a.nav-link i.down-arrow {
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
    font-size: 12px;
    webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-size: 10px;
}
.sidebar-menu .nav-item .submenu {
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    background: #f6fbff;
}
.sidebar-menu .nav-item .submenu ul,
.sidebar-menu .nav-item .submenu ul li {
    padding: 0px;
}
.sidebar-menu .nav-item .submenu ul li {
    white-space: nowrap;
    position: relative;
    display: block;
}
.sidebar-menu .nav-item .submenu li a {
    display: flex;
    align-items: center;
    padding: 9px 0px 9px 5px;
    position: relative;
    color: #7f7c88;
    min-height: 39px;
    text-decoration: none;
}
.sidebar-menu .nav-item .submenu li a.active {
    color: #27bcc6;
    font-weight: bold;
}
.sidebar-menu .nav-item .submenu li a i.size-icon {
    display: inline-block;
    width: 60px;
    min-width: 60px;
    z-index: 3;
    position: relative;
    text-align: center;
    webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    font-size: 14px;
}
.sidebar-menu .nav-item .submenu li a span {
    display: block;
    webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    width: calc(100% - 60px);
    justify-content: start;
    white-space: nowrap;
    align-items: center;
    font-size: 14px;
}
.sidebar-menu li.nav-item .submenu.show {
    display: block;
}
.sidebar.highlight .collapse {
    display: none;
}
.sidebar.highlight:hover li.nav-item .collapse.show {
    display: block !important;
}
.sidebar .sidebar-menu .nav-item a.nav-link span.menu-title,
.sidebar .sidebar-menu .nav-item a.nav-link:after {
    display: none;
}
.sidebar.sidebar-show .sidebar-menu .nav-item a.nav-link span.menu-title,
.sidebar.sidebar-show .sidebar-menu .nav-item a.nav-link:after {
    display: flex;
}
/* -- Sidebar Menu End --*/
/* Close Left Menu Toggle */
.close-sidemenu {
    position: fixed;
    left: 0px;
    height: 50px;
    bottom: 0px;
    display: flex;
    align-items: center;
    z-index: 9999;
    width: 220px;
    display: block;
}
.sidebar.highlight+.close-sidemenu .icon-left-menu-close {
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.sidebar.highlight:hover+.close-sidemenu .icon-left-menu-close {
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.sidebar.highlight+.close-sidemenu .menu-title1 {
    display: none;
}
.sidebar.highlight+.close-sidemenu .menu-title2 {
    display: block !important;
}
.sidebar.highlight:hover+.close-sidemenu .menu-title3 {
    display: block !important;
}
/* Close Left Menu Toggle End */
.hamburger {
    height: 32px;
    width: 32px;
    border: solid 2px var(--theme-br);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 5px;
    margin-right: 15px;
}
.hamburger .bar {
    width: 20px;
    height: 3px;
    background: var(--theme-br2);
    border-radius: 65px;
    transition: 0.4s ease;
}
.hamburger .bar:not(:first-child) {
    margin-top: 3px;
}
#side-nav-toggles {
    position: absolute;
    left: -999px;
    top: -999px;
}
#side-nav-toggles:checked+.hamburger .bar:first-child {
    transform: rotate(-45deg);
}
#side-nav-toggles:checked+.hamburger .bar:nth-child(2) {
    opacity: 0;
}
#side-nav-toggles:checked+.hamburger .bar:nth-child(3) {
    margin-top: -9px;
    transform: rotate(45deg);
}
/* Business Name */
a.business-name,
.business-name {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: var(--text-primary);
    text-decoration: none;
}
/* Profile Dropdown */
ul.top-right-items {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
ul.top-right-items li.outer-icons a{
    font-size: 16px;
    color: var(--theme-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--theme-bg);
    border-radius: 5px;
    transition:  all 0.4s;
    &:hover{
        background-color: var(--primary-color);
        color: var(--text-white);
    }
}
ul.top-right-items>li {
    list-style: none;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    /*border:2px solid var(--theme-br);*/
    color:var(--white-color);
}
@media (min-width:768px) {
    ul.top-right-items>li {
        padding-left: 0;
        padding-right: 0;
    }
}
ul.top-right-items>li:first-child:before {
    display: none;
}
ul.top-right-items>li:last-child {
    border: none;
    padding-right: 0px;
}
.profile {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}
.profile .dropdown-menu{
    max-height: 350px !important;
    overflow: hidden;
    overflow-y: auto;
}
.profile .dropdown-toggle::after,
.notification .dropdown-toggle::after {
    border: none;
    margin: 0;
    display: none;
}
.profile .user-name {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.250rem;
    color: var(--theme-text-color);
    white-space: nowrap;
    margin-right: 5px;
}
.profile a.profile-pic {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
    overflow: hidden;
}
.profile .dropdown-menu {
    transform: translate(43px, 50px) !important;
    padding: 10px;
    border-radius: 5px;
    border: 0;
    background: var(--theme-white);
    min-width: 250px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.09);
}
.profile .dropdown-menu .search,.profile .dropdown-menu .search:focus{
    border: 0;
    background: var(--theme-color) !important;
    color : var(--theme-text-color) !important;
}
.top-right-items .profile .dropdown-menu {
    left: unset !important;
    right: 40px !important;
}
.profile .dropdown-menu::-webkit-scrollbar {
    width: 4px;
    border-radius: 2px;
}
.profile .dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}
.profile .dropdown-menu::-webkit-scrollbar-thumb {
    background: #626786;
    border-radius: 2px;
}
.profile .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: radial-gradient(100% 100% at 50.00% 0%, #AA70ED 0%, #5340D7 100%);
}
.profile .dropdown-menu .dropdown-item {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.250rem;
    color: var(--grey-color);
    padding: 8px;
    gap: 15px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    transition : 0.3s;
}
.profile .dropdown-menu .dropdown-item:hover , .profile .dropdown-menu .dropdown-item:active, .profile .dropdown-menu .dropdown-item:focus, .profile .dropdown-menu .dropdown-item:visited{
    background: var(--theme-color);
    /*background: #ffffff;*/
    /*box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);*/
}
}
.businessDropDown .dropdown-item:hover{
    background: transparent !important ;
}
.profile .dropdown-menu .dropdown-item:hover{
    color : var(--white-color);
}
.profile .dropdown-menu .dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid var(--theme-br);
}
/* Profile Dropdown End*/
/* Footer Css */
.footer-design {
    width: calc(100% - 40px);
    color: var(--theme-text-color);
    background: var(--body-bg);
    font-weight: 500;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    font-size: 14px;
    padding: 15px;
    text-align: center;
    border-radius: 15px;
    border: 0;
    display: none;
}
.footer-sticky-height {
    height: 50px;
    display: none;
}
@media (min-width:768px) {
    .footer-sticky-height {
        height: 40px;
    }
    .footer-design {
        padding: 10px 20px;
    }
}
/* Footer Css End */