/* DCP Header css*/

.header-fixed {
    background: var(--theme-color);
    z-index: 2;
    height: 60px;
    position: fixed;
    left: 0px;
    right: 0px;
    display: flex;
    padding: 0px 15px;
    align-items: center;
    justify-content: space-between;
}

@media (min-width:992px) {
    .header-fixed {
        padding: 0px 25px;
    }
}

.logo-height{max-height: 50px; max-width:170px;}
/* Sidebar Panel */ 

.sidebar {
    width: 70px;
    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-color);
    backdrop-filter: blur(15px);
}

.sidebar.sidebar-show {
    width: 220px;
    position: fixed;
    top: 60px;
    height: 100%;
    z-index: 1;
    margin: 0;
}

.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;
}

.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;
    margin-bottom: 15px;
}

.sidebar-menu ul li a.nav-link,
.close-sidemenu ul li a.nav-link {
    display: flex;
    align-items: center;
    padding: 13px 0px;
    position: relative;
    color: var(--black-color);
    transition: none;
    min-height: 50px;
    font-weight: 400;
}

.sidebar-menu ul li a:hover,
.sidebar-menu .nav-item .submenu li a:hover {
    border-radius: 10px;
    color: var(--black-color);
    background: var(--theme-color2);
}

.sidebar-menu ul li.nav-item.active a.nav-link {
    font-weight: 600;
    border-radius: 10px;
    color: var(--white-color);
    background: var(--blue-gradient);
}
.sidebar-menu ul li.close-btn.active a.nav-link {
    font-weight: 600;
    border-radius: 10px;
    color: var(--black-color);
    background: 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: 50px;
    min-width: 50px;
    position: relative;
    text-align: center;
    font-size: 18px;
}

.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: 1rem;
    line-height: 19px;
}

@media (min-width:1600px) {
    .sidebar-menu ul li a.nav-link{
        min-height: 60px;
    }
    .sidebar-menu ul li a.nav-link span.menu-title{
        font-size: 1rem;
    }
}

.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(--white-color);
    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(--white-color);
    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;
}

ul.top-right-items>li {
    list-style: none;
    padding-left: 8px;
    padding-right: 8px;
    position: relative;
}

@media (min-width:768px) {
    ul.top-right-items>li {
        padding-left: 20px;
        padding-right: 20px;
    }
}



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;
    gap: 20px;
}

.profile .dropdown-toggle::after,
.notification .dropdown-toggle::after {
    border: none;
    margin: 0;
}

.profile .user-name {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.250rem;
    color: var(--black-color);
    white-space: nowrap;
}

.profile a.profile-pic {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
    overflow: hidden;
    margin-left:auto;
}

.profile .dropdown-menu {
    transform: translate(43px, 50px) !important;
    padding: 10px;
    border-radius: 0px 0px 10px 10px;
    border: 1px solid var(--theme-br);
    background: var(--theme-bg2);
    backdrop-filter: blur(15px);
    min-width: 20rem
}
.top-right-items .profile .dropdown-menu {
    left: unset !important;
    right: 0px !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: 1rem;
    line-height: 1.250rem;
    color: var(--black-color);
    padding: 10px;
    gap: 15px;
    display: flex;
    align-items: center;
    border-radius: 6px;
}

.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-color2);
}

.profile .dropdown-menu .dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid var(--primary-color6);
}


/* Profile Dropdown End*/

/* Footer Css */

.footer-design {
    width: 100%;
    color: #909090;
    font-weight: 400;
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 1rem;
    line-height: 1.1875rem;
    padding: 15px;
}

.footer-sticky-height {
    height: 68px;
}

@media (min-width:768px) {
    .footer-sticky-height {
        height: 59px;
    }
    .footer-design {
        padding: 20px 30px;
    }
}


/* Footer Css End */