

/*Topbar*/

.topbar {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
/*  border-bottom: 1px solid #d7d7d7;*/
  background: #1e1e2d;
  display: flex;
}

.topbar .topbar-left {
  background: var(--top_bar_back_color);    
  height: 45px;
  position: relative;
  width: 200px;
  min-width: 200px;
  z-index: 1;
  height: 100%;
/*  border-radius:0px 0px 10px 0px;*/
  display:flex;
  align-items:center;
  justify-content:center;
/*  border-right: 1px solid #d7d7d7;*/
}

.custom-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    min-height: 45px;
    width: 100%;
}

.topbar .dropdown-toggle .badge {
  position: absolute;
  top: 0px;
  right: 0;
  font-size: 8px;
  padding: 3px;
  background: #3699ff;
} 

.topbar .btn {
  color: #fff;
  background: transparent;
  border: none;
  padding: 5px 10px;
}

.topbar-left .logo img {
  width: 100%;
  padding: 2px 5px;
  max-height: 45px;
  object-fit: contain;
  margin: 0 auto;
} 
.navbar-nav{
  margin: 0;
}
.user-box a.user-link {
  padding: 0 5px !important;
  background-color: transparent !important;
}
.user-box a.user-link:hover{
    background-color: transparent !important;
}
.user-box .user-img {
  position: relative;
  width: 25px;
  height: 25px; 
  background: #fff;
  object-fit: cover;
  padding: 0px;
  border-radius: 100%;
}
.notify-list h5 {
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  margin: 0;
  color: #fff;
  background-color: #1e1e2d;
  text-align: center;
}
.notify-list .all-msgs a {
  color: #313a46;
  padding: 6px 10px;
  display: block;
}

.topbar .mobile-logo img {
    display: none;
}

.topbar .button-menu-mobile {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    left: 5px;
    top: 2px;
    padding: 0px;
    border: inherit;
    background: transparent;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
} 
.topbar .button-menu-mobile svg {
/*    width: 20px;*/
/*    height: 20px;*/
} 

.enlarged .button-menu-mobile { 
    top: -2px;
    left: 5px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

 

/*Sidebar*/
.side-menu{
  width: 200px;
  background: #1e1e2d;    
  position: fixed;  
  top: 0;
  padding-left: 5px;
  padding-top: 60px;
  padding-bottom: 20px;  
  overflow-y: auto;
  height: 100%;
  z-index: 10 !important;
}
.side-menu::-webkit-scrollbar{
  width: 0;
  height: 0;
}

#sidebar-menu { 
  position: relative; 
}
.side-menu ul { 
  padding: 0;
  position: relative; 
} 

.side-menu .menu-title {
  text-transform: uppercase;
  padding: 5px 10px !important;
  cursor: default;
  font-size: 10px;
/*  margin-bottom: 10px;*/
  font-weight: 700; 
  display: inline-block;
  width: 100%;
  color: #fff;
}

.side-menu a { 
  position: relative;
  text-decoration: none;
    display: block;
    padding: 8px 10px;
    margin: 0;
    font-size: 10px;
    border-radius:5px 0 0 5px ;
    margin-top: 1px;
    min-height: 34px;
    line-height: 15px;
    word-wrap: break-word;
}
.side-menu a:hover, .side-menu a.active {
  color: #1e1e2d;
  background-color: #f1f1f1;
  text-decoration: none;
}

.side-menu a i {
  display: inline-block;  
  text-align: center;
  vertical-align: middle;
  width: 15px;
}
.side-menu a span {
  vertical-align: middle;
}

.side-menu ul > li, .side-menu li > a{
  position: relative;
  color: #fff;
}
.side-menu ul > li:before,
.side-menu ul > li:after{
/*    content: "";*/
    position: absolute;
    width: 10px;
    height: 10px;
    display: inline-block;
    right: 0;  
    background-size: contain;
    border-radius: 10px 0px 0px 0px;  
    opacity: 0;
}

.side-menu ul > li:hover:before, .side-menu ul > li:hover:after,
.side-menu ul > li:focus:before, .side-menu ul > li:focus:after,
.side-menu ul > li.active:before, .side-menu ul > li.active:after{
  opacity: 1;
}
.side-menu ul > li:before,
.side-menu ul > li:focus:before,
.side-menu ul > li:hover:before{
    top: -10px;
    background: #f1f1f1;
}
.side-menu ul > li:after,
.side-menu ul > li:focus:after,
.side-menu ul > li:hover:after{
    bottom: -10px;    
    transform: rotate(90deg);
    background: #1e1e2d;
}
.side-menu li > a:before,
.side-menu li > a:after{
/*    content: "";*/
    position: absolute;
    width: 10px;
    height: 10px;
    display: inline-block;
    right: 0;  
    background-size: contain;
    border-radius: 0px 0px 10px 0px;
    opacity: 0;
}

.side-menu li > a:hover:before, .side-menu li > a:hover:after,
.side-menu li > a:focus:before, .side-menu li > a:focus:after,
.side-menu li > a.active:before, .side-menu li > a.active:after{
  opacity: 1;
}
.side-menu li > a:before, 
.side-menu li > a:hover:before{
    top: -10px;
    background: #1e1e2d;
}
.side-menu li > a:after, 
.side-menu li > a:focus:after, 
.side-menu li > a:hover:after{
    bottom: -10px;     
    transform: rotate(90deg);
    background: #f1f1f1;    
} 

.side-menu ul li ul:before{
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    display: inline-block;
    right: 0;  
    border-radius: 0px 10px 0px 0px;
    background: #1e1e2d !important;    
}  
.side-menu ul li ul li:first-child a:before{
  opacity:0 ;
}

li.active + li a:hover:before,
li.active + li a:focus:before {
    background: #f1f1f1 !important;
}
li:hover + li.active a:focus:before,
li:hover + li.active a:before {
    background: #f1f1f1 !important;
}

li:hover + li.active li.active a:before{
  background: #1e1e2d !important;
}
li.active + li ul li a:hover:before{
    background: #1e1e2d !important;
}

.side-menu ul ul {
  display: none;
  padding: 0;
    position: relative; 
}

.side-menu ul ul a { 
  margin-left: 20px; 
}


.side-menu ul li .menu-arrow {
  -webkit-transition: -webkit-transform 0.15s;
  -o-transition: -o-transform 0.15s;
  transition: transform 0.15s;
  position: absolute;
  right: 5px;
  display: inline-block;
  font-family: "Material Design Icons";
  text-rendering: auto;
  line-height: 16px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.side-menu ul li .menu-arrow:before {
  content: "\F415";
}
.side-menu .badge {
  margin-top: 2px;
}

.side-menu .subdrop {
  color: #1e1e2d;
  background-color: #f1f1f1;
} 
.side-menu .subdrop .menu-arrow:before {
  content: "\F374";
}
.side-menu .subdrop .menu-arrow {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.side-menu .logout-btn{
    color: #ff0000 !important;
    font-weight: 600;
}


/*page content*/
.content-page {
  margin-left: 200px;
  overflow: hidden;
}
.content-page .content {
  padding: 0;
  margin-top: 45px;
  min-height: calc(100vh - 115px);
  position: relative;
}
.content-page .content:before, .content-page .content:after{
/*  content: "";*/
  position: fixed;
  width: 15px;
  height: 15px;
  display: inline-block;
  left: 0;  
  background-size: contain;
  border-radius: 0px 0px 0px 10px;  
    top: 45px;      
    left: 200px;
}
.content-page .content:before{
    background: #1e1e2d;
} 
.content-page .content:after{
    background: #f1f1f1;
    transform: rotate(90deg);
}
.enlarged .content-page .content:before,  .enlarged .content-page .content:after{
  left: 45px;
}



/*page Title*/
.page-title-box {
  padding: 10px;
  border-radius: 5px;
  box-shadow: none;
  margin: 16px 0;
  background: #4bb2f1;
}
.page-title-box .page-title {
  margin-bottom: 5px;
  font-size: 14px;
  margin-bottom: 5px;
  margin-top: 0;
  font-weight: 600;
  color: #000;
} 

.page-title-box .breadcrumb {
  font-size: 10px;
  background-color: transparent !important;
  color: #000;
}
.page-title-box .breadcrumb > li + li:before {
  padding: 0;
  color: #000;
}
.breadcrumb>li, .breadcrumb li a, .breadcrumb> .active{
  color: #000;
}

/*Sidebar sm*/
.enlarged .topbar .topbar-left{
  width: 45px;
  min-width: 45px;
  min-height: 45px;
}

.enlarged .side-menu a:hover, 
.enlarged .side-menu a.active, 
.enlarged .side-menu .subdrop, 
.enlarged .side-menu ul li a.active, 
.enlarged .side-menu .active ul ul li a.active,
.enlarged .side-menu li:hover ul,
.enlarged .side-menu li:hover ul a 
{  
/*    box-shadow: 0px 0px 30px 2px rgb(82 63 105 / 22%)*/
}
.enlarged .side-menu ul > li.has_sub:hover:before, .enlarged .side-menu ul > li.has_sub:hover:after,
.enlarged .side-menu ul > li.has_sub.active:before, .enlarged .side-menu ul > li.has_sub.active:after{
  right: inherit;
  left: 30px;
}
.enlarged .side-menu li > a:hover:before, .enlarged .side-menu li > a:hover:after,
.enlarged .side-menu li > a.active:before, .enlarged .side-menu li > a.active:after{
  right: inherit;
  left: 30px;
}
 
.enlarged .side-menu{
    width: 45px;
    z-index: 1;
}
.enlarged .side-menu a i{
  width: auto;
}
.enlarged .side-menu ul > li {
  white-space: nowrap;
}

.enlarged .side-menu ul ul li a {
  margin-left: 0;
}  

.enlarged .side-menu ul > li:hover > a {
  position: relative;
  width: 240px;
}
.enlarged .side-menu ul > li:hover a span {
/*  display: inline;*/
}
.enlarged .side-menu ul > li > a span {
  display: none;
}
.enlarged .side-menu > ul > li > a:active,
.enlarged .side-menu > ul > li > a:focus,
.enlarged .side-menu > ul > li > a:hover {
  background-color: #f2f2f2;
}

.enlarged .side-menu ul > li:hover > ul {
  display: block;
  left: 50px;
  position: absolute;
  width: 190px; 
  border-radius: 5px;
  padding: 5px; 
} 

.enlarged .side-menu ul > li:hover > ul a {
  box-shadow: none;
  position: relative;
  width: 100%;
  z-index: 6;
  white-space: normal;
} 

.enlarged .side-menu .badge {
  display: inline-block !important;
  padding: 2px 5px;
  margin-top: -16px;
  margin-left: -8px;
} 

 
.enlarged .content-page {
  margin-left: 45px;
}
.enlarged .help-box {
/*  display: none !important;*/
}
.enlarged .menu-arrow {
  display: none !important;
}
.enlarged .menu-title {
/*  display: none !important;*/
    padding-left: 0 !important;
    padding-right: 0 !important;
}







/*Right bar*/

.right-bar {
  background: #fff !important;
  z-index: 999 !important;
}
.right-bar h4 {
  text-transform: uppercase;
  border-bottom: 1px solid rgba(152, 152, 152, 0.5);
  padding: 4px 10px 10px 18px;
  font-size: 14px;
  letter-spacing: 0.03em;
}
.right-bar .right-bar-toggle {
  float: right;
  line-height: 46px;
  font-size: 20px;
  color: #333;
  padding: 0 10px;
}
.right-bar .setting-list {
  padding: 0 20px 20px;
}

.side-bar {
  height: 100%;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  background-color: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
  display: block;
  float: left;
  position: fixed;
  transition: all 0.2s ease-out;
  width: 240px;
} 

/*Other*/

.button-menu-mobile {
  background: 0 0;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  display: inline-block;
}
.button-menu-mobile i {
  font-size: 24px;
  line-height: 60px;
}
.button-menu-mobile:hover {
  color: #fff;
}
.user-details {
  min-height: 80px;
  padding-top: 15px;
  position: relative;
  background: url(../images/small/img-1.jpg);
  background-size: cover;
}
.user-details img {
  position: relative;
  z-index: 9999;
}
.user-details .user-info {
  color: #fff;
  position: relative;
  z-index: 99999;
}
.user-details a.dropdown-toggle {
  margin-top: 15px !important;
  color: #fff !important;
  background-color: rgba(49, 58, 70, 0.5) !important;
  display: block;
  font-weight: 600;
  padding: 6px 15px !important;
}
.user-details a.dropdown-toggle span.mdi {
  float: right;
  line-height: 20px;
  font-size: 20px;
  -webkit-transition: -webkit-transform 0.15s;
  -o-transition: -o-transform 0.15s;
  transition: transform 0.15s;
}
.user-details a.dropdown-toggle.subdrop {
  color: #fff !important;
}
.user-details a.dropdown-toggle.subdrop span.mdi {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.user-details .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(49, 58, 70, 0.65);
  left: 0;
  top: 0;
}

#setting-dropdown .dropdown-menu {
  width: 100%;
  z-index: 9;
  box-shadow: none;
  margin-bottom: 20px !important;
}
#setting-dropdown .dropdown-menu a {
  padding: 8px 16px !important;
}
#setting-dropdown .dropdown-menu a i {
  font-size: 16px;
}

.help-box {
  color: rgba(49, 58, 70, 0.7);
  padding: 20px;
  margin: 20px;
  border: 1px solid rgba(49, 58, 70, 0.15);
  border-radius: 3px;
  font-size: 13px;
  background-color: rgba(49, 58, 70, 0.05);
}
.right-bar-enabled .right-bar {
  right: 0;
}
.right-bar-enabled .left-layout {
  left: 0;
}
.side-bar.right-bar {
  float: right !important;
  right: -266px;
  top: 0;
} 

.wl-logos{
  display: none;
}



.sidebar-users-menu .sidebar-users{
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;    
    padding: 5px 10px 5px 5px;  
    background: #f1f1f1;
    border-radius: 5px 0 0 5px;
}
.sidebar-users-menu .sidebar-users .sidebar-user-icon{
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
}
.sidebar-users-menu .sidebar-users i{
    margin: 0;
}
.sidebar-users-menu .sidebar-users span{
    margin-right: auto;
}
.sidebar-users-menu .dropdown-menu.sidebar-users-dropdown {
    position: fixed;
    left: 205px;
    z-index: 999;
    top: 58px;
    padding: 10px;
    background: #fff;
}
.sidebar-users-menu .dropdown-menu.sidebar-users-dropdown a{
    padding: 5px;
    min-height: auto;
    display: flex;
    align-items: center;
    border-radius: 5px;
    color: #000 !important;
    border: 1px solid #f1f1f1;
    gap: 10px;
} 
.sidebar-users-menu .dropdown-item .user-icon{
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    overflow: hidden;
}
.sidebar-users-menu .dropdown-item .user-icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-users-menu .dropdown-menu .dropdown-item .user-icon i{
    color: #000 !important;
}



/*Responsive*/

@media screen and (max-width: 1366px) {
  .topbar .topbar-left {
    width: 200px;
  }
  .side-menu {
    width: 200px;
  }
  .content-page {
    margin-left: 200px;
  }
  .side-menu a{
    min-height: 26px;
    line-height: 16px;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 768px) {
  .topbar .topbar-left {
    display: none;
  }
  .topbar .btn{
    font-size: 0;
  }
  .topbar .btn span{
    font-size: 14px;
  }
  .custom-top-bar{
/*    justify-content: start;*/
    gap: 10px;
  }
}


@media screen and (min-width: 1367px) {
  .side-menu a{
    font-size: 12px;   
  }
}





