.bdy-layout {
  min-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;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  z-index: 1;
}

.bdy-layout.has-sidebar {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.bdy-layout .header {
  -webkit-transition: width, 0.3s;
  transition: width, 0.3s;
  height: 64px;
  min-height: 64px;
  position: relative;
}

.bdy-layout .sidebar {
  width: 280px;
  min-width: 280px;
  -webkit-transition: width, left, right, 0.3s;
  transition: width, left, right, 0.3s;
}

.bdy-layout .sidebar.collapsed {
  width: 65px;
  min-width: 65px;
}

@media (max-width: 480px) {
  .bdy-layout .sidebar.break-point-xs {
    position: fixed;
    left: -280px;
    height: 100%;
    top: 0;
    z-index: 100;
  }
  .bdy-layout .sidebar.break-point-xs.collapsed {
    left: -80px;
  }
  .bdy-layout .sidebar.break-point-xs.toggled {
    left: 0;
  }
  .bdy-layout .sidebar.break-point-xs.toggled ~ .overlay {
    display: block;
  }
  .bdy-layout .sidebar.break-point-xs ~ .bdy-layout .header {
    width: 100% !important;
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 576px) {
  .bdy-layout .sidebar.break-point-sm {
    position: fixed;
    left: -280px;
    height: 100%;
    top: 0;
    z-index: 100;
  }
  .bdy-layout .sidebar.break-point-sm.collapsed {
    left: -80px;
  }
  .bdy-layout .sidebar.break-point-sm.toggled {
    left: 0;
  }
  .bdy-layout .sidebar.break-point-sm.toggled ~ .overlay {
    display: block;
  }
  .bdy-layout .sidebar.break-point-sm ~ .bdy-layout .header {
    width: 100% !important;
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 768px) {
  .bdy-layout .sidebar.break-point-md {
    position: fixed;
    left: -280px;
    height: 100%;
    top: 0;
    z-index: 100;
  }
  .bdy-layout .sidebar.break-point-md.collapsed {
    left: -80px;
  }
  .bdy-layout .sidebar.break-point-md.toggled {
    left: 0;
  }
  .bdy-layout .sidebar.break-point-md.toggled ~ .overlay {
    display: block;
  }
  .bdy-layout .sidebar.break-point-md ~ .bdy-layout .header {
    width: 100% !important;
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 992px) {
  .bdy-layout .sidebar.break-point-lg {
    position: fixed;
    left: -280px;
    height: 100%;
    top: 0;
    z-index: 100;
  }
  .bdy-layout .sidebar.break-point-lg.collapsed {
    left: -80px;
  }
  .bdy-layout .sidebar.break-point-lg.toggled {
    left: 0;
  }
  .bdy-layout .sidebar.break-point-lg.toggled ~ .overlay {
    display: block;
  }
  .bdy-layout .sidebar.break-point-lg ~ .bdy-layout .header {
    width: 100% !important;
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 1200px) {
  .bdy-layout .sidebar.break-point-xl {
    position: fixed;
    left: -280px;
    height: 100%;
    top: 0;
    z-index: 100;
  }
  .bdy-layout .sidebar.break-point-xl.collapsed {
    left: -80px;
  }
  .bdy-layout .sidebar.break-point-xl.toggled {
    left: 0;
  }
  .bdy-layout .sidebar.break-point-xl.toggled ~ .overlay {
    display: block;
  }
  .bdy-layout .sidebar.break-point-xl ~ .bdy-layout .header {
    width: 100% !important;
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 1600px) {
  .bdy-layout .sidebar.break-point-xxl {
    position: fixed;
    left: -280px;
    height: 100%;
    top: 0;
    z-index: 100;
  }
  .bdy-layout .sidebar.break-point-xxl.collapsed {
    left: -80px;
  }
  .bdy-layout .sidebar.break-point-xxl.toggled {
    left: 0;
  }
  .bdy-layout .sidebar.break-point-xxl.toggled ~ .overlay {
    display: block;
  }
  .bdy-layout .sidebar.break-point-xxl ~ .bdy-layout .header {
    width: 100% !important;
    -webkit-transition: none;
    transition: none;
  }
}
.bdy-layout .footer {
  height: 64px;
  min-height: 64px;
}
.bdy-layout .content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.bdy-layout .overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99;
  display: none;
}
.bdy-layout .sidebar-toggler {
  display: none;
}
@media (max-width: 480px) {
  .bdy-layout .sidebar-toggler.break-point-xs {
    display: initial;
  }
}
@media (max-width: 576px) {
  .bdy-layout .sidebar-toggler.break-point-sm {
    display: initial;
  }
}
@media (max-width: 768px) {
  .bdy-layout .sidebar-toggler.break-point-md {
    display: initial;
  }
}
@media (max-width: 992px) {
  .bdy-layout .sidebar-toggler.break-point-lg {
    display: initial;
  }
}
@media (max-width: 1200px) {
  .bdy-layout .sidebar-toggler.break-point-xl {
    display: initial;
  }
}
@media (max-width: 1600px) {
  .bdy-layout .sidebar-toggler.break-point-xxl {
    display: initial;
  }
}
.bdy-layout.fixed-sidebar {
  height: 100%;
}

.bdy-layout.fixed-sidebar .sidebar {
  height: 100%;
  overflow: auto;
}

.bdy-layout.fixed-sidebar .sidebar.collapsed .menu > ul > .menu-item.sub-menu > .sub-menu-list{
  margin-left:10px !important;
}

.bdy-layout.fixed-sidebar .sidebar:not(.collapsed) .menu .menu-item.sub-menu > .sub-menu-list {
	padding-left:30px !important;;
}

.bdy-layout.fixed-sidebar .sidebar ~ .bdy-layout {
  height: 100%;
  overflow: auto;
}
.bdy-layout.fixed-header .header {
  position: fixed;
  width: 100%;
  z-index: 2;
}
.bdy-layout.fixed-header .header ~ .bdy-layout,
.bdy-layout.fixed-header .header ~ .content {
  margin-top: 64px;
}
.bdy-layout.fixed-header.fixed-sidebar .header {
  width: calc(100% - 280px);
}
.bdy-layout.fixed-header.fixed-sidebar .sidebar.collapsed ~ .bdy-layout .header {
  width: calc(100% - 80px);
}
.bdy-layout.rtl {
  direction: rtl;
}
@media (max-width: 480px) {
  .bdy-layout.rtl .sidebar.break-point-xs {
    left: auto;
    right: -280px;
  }
  .bdy-layout.rtl .sidebar.break-point-xs.collapsed {
    left: auto;
    right: -80px;
  }
  .bdy-layout.rtl .sidebar.break-point-xs.toggled {
    left: auto;
    right: 0;
  }
}
@media (max-width: 576px) {
  .bdy-layout.rtl .sidebar.break-point-sm {
    left: auto;
    right: -280px;
  }
  .bdy-layout.rtl .sidebar.break-point-sm.collapsed {
    left: auto;
    right: -80px;
  }
  .bdy-layout.rtl .sidebar.break-point-sm.toggled {
    left: auto;
    right: 0;
  }
}
@media (max-width: 768px) {
  .bdy-layout.rtl .sidebar.break-point-md {
    left: auto;
    right: -280px;
  }
  .bdy-layout.rtl .sidebar.break-point-md.collapsed {
    left: auto;
    right: -80px;
  }
  .bdy-layout.rtl .sidebar.break-point-md.toggled {
    left: auto;
    right: 0;
  }
}
@media (max-width: 992px) {
  .bdy-layout.rtl .sidebar.break-point-lg {
    left: auto;
    right: -280px;
  }
  .bdy-layout.rtl .sidebar.break-point-lg.collapsed {
    left: auto;
    right: -80px;
  }
  .bdy-layout.rtl .sidebar.break-point-lg.toggled {
    left: auto;
    right: 0;
  }
}
@media (max-width: 1200px) {
  .bdy-layout.rtl .sidebar.break-point-xl {
    left: auto;
    right: -280px;
  }
  .bdy-layout.rtl .sidebar.break-point-xl.collapsed {
    left: auto;
    right: -80px;
  }
  .bdy-layout.rtl .sidebar.break-point-xl.toggled {
    left: auto;
    right: 0;
  }
}
@media (max-width: 1600px) {
  .bdy-layout.rtl .sidebar.break-point-xxl {
    left: auto;
    right: -280px;
  }
  .bdy-layout.rtl .sidebar.break-point-xxl.collapsed {
    left: auto;
    right: -80px;
  }
  .bdy-layout.rtl .sidebar.break-point-xxl.toggled {
    left: auto;
    right: 0;
  }
}

.bdy-layout .header {
  display: flex;
  align-items: center;
  padding: 20px;
}

.bdy-layout .stage_content {
  display: flex;
  flex-direction: column;
}

.bdy-layout .footer {
  text-align: center;
  margin-top: auto;
  margin-bottom: 20px;
  padding: 20px;
}

.sidebar {
  color: #7d84ab;
  overflow-x: hidden !important;
  position: relative;
}

.sidebar::-webkit-scrollbar-thumb {
  border-radius: 4px;
}

.sidebar:hover::-webkit-scrollbar-thumb {
  background-color: #93804c;
}

.sidebar::-webkit-scrollbar {
  width: 6px;
  background-color: #0c1e35;
}

.sidebar .image-wrapper {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: none;
}

.sidebar .image-wrapper > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sidebar.has-bg-image .image-wrapper {
  display: block;
}

.sidebar .sidebar-layout {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #f1f1f1;
  z-index: 1;
  overflow:hidden;
}

.sidebar .sidebar-layout .sidebar-header {
  height: 40px;
  min-height: 40px;
  display: flex;
  align-items: left;
  padding: 0 5px;
  margin-top:4px;
  margin-bottom:0;
}

.sidebar .sidebar-layout .sidebar-header > span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sidebar .sidebar-layout .sidebar-control-box {
  height: auto;
  min-height: auto;
  align-items: left;
  padding: 5px;
  width: 94%;
  margin: 2px 0 auto 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sidebar .sidebar-layout .sidebar-control-box > span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sidebar-control-box .ctbox-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
	padding: 0 5px 2px 4px;
}

.sidebar-control-box .ctbox-title { font-size: 12px; font-weight:bold; }

.sidebar-control-box .ctbox-tog-btn {
    cursor: pointer;
    transition: transform 0.3s ease;
    color: gray;
	margin-top:-1px;
}

.sidebar-control-box .ctbox-tog-btn::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(-45deg);
    margin-right: 4px;
}

.sidebar-control-box .ctbox-tog-btn.rotate {
    transform: rotate(180deg);
}

.sidebar-control-box .ctbox-contents {
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    max-height: auto; /* default open */
    box-sizing: border-box;
	border-top: 1px solid #ccc;
}


.sidebar-control-box .ctbox-fcontainer {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.sidebar-control-box .ctbox-fcontainer:last-child {
  margin-bottom: 0;
}

.sidebar-control-box .ctbox-flabel {
  margin-right: 10px;
  font-size: 10px;
  font-weight: bold;
}

.sidebar-control-box .ctbox-finput {
  flex: 1;
  padding: 5px;
  margin-right: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 11px;
  height:25px;
}

.sidebar-control-box .ctbox-checkbox{
   width: 30px;
   height:25px;
   border-radius: 4px;
   border: 1px solid #ccc;
}

.sidebar-control-box input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 30px;
  height:25px;
  border:none;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: relative;

}

.sidebar-control-box input[type="checkbox"]:checked {
  background-color: #bd9e4d;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 100%;
  height:100%;
}

/* Tick mark inside the checkbox */
.sidebar-control-box input[type="checkbox"]:checked::before {
  content: '\2713'; /* Unicode for checkmark symbol */
  font-size: 14px; /* Adjust size of the tick mark */
  color: #ffffff; /* Color of the tick mark */
  position: absolute;
  font-weight:bold;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
}


.sidebar-control-box .ctbox-button {
  width: 30px;
  height:25px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  text-align: center;
  color: #777;
  padding:3px;
}

.sidebar-control-box .ctbox-button:hover, .ctbox-checkbox:hover {
  background-color: #ffffff;
  border: 1px solid #9f9f9f;
}


.sidebar-control-box .hiddenbox {
    max-height: 0;
    padding: 0 10px;
}








.sidebar .sidebar-layout .sidebar-searchbox {
  display: flex;
  height: auto;
  min-height: auto;
  align-items: left;
  width: 94%;
  margin: 5px 0 auto 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  align-items: center;
  padding: 3px;

}
.sidebar .sidebar-layout .sidebar-searchbox > span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


.sidebar-searchbox .slidebr-searchicon {
    margin-right: 8px;
  	margin-top: 5px;
    color: #777;
}

.sidebar-searchbox .searchinput-field {
    flex: 1;
    border: none;
    font-size: 12px;
  	height:25px;
    border-radius: 4px;
  	margin-right: 4px;
}


.sidebar-content::-webkit-scrollbar-thumb {
  border-radius: 4px;
}
.sidebar-content:hover::-webkit-scrollbar-thumb {
  background-color: #93804c;
}
.sidebar-content::-webkit-scrollbar {
  width: 6px;
  background-color: #0c1e35;
}

.sidebar .sidebar-layout .sidebar-content {
  flex-grow: 1;
  padding: 5px 0;
  margin-top:5px;
  height: calc(100vh - 100px); /* Adjust based on the fixed divs height */
  overflow-y: auto;
  overflow-x: hidden;
}
.sidebar .sidebar-layout .sidebar-footer {
  height: 190px;
  min-height: 190px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  margin: 10px 0 15px;
}
.sidebar .sidebar-layout .sidebar-footer > span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@keyframes swing {
  0%, 30%, 50%, 70%, 100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
}
.bdy-layout .sidebar .menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.bdy-layout .sidebar .menu .menu-header {
  font-weight: 600;
  padding: 5px 10px;
  font-size: 11px;
  letter-spacing: 1px;
  transition: opacity 0.3s;
  opacity: 0.5;
}


.bdy-layout .sidebar .menu .mainmen-item.hidden {
	display: none;
}

.bdy-layout .sidebar .menu .menu-item a {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 15px 0 5px;
  color:  #696969;
	text-transform:capitalize;
}
.bdy-layout .sidebar .menu .menu-item a .menu-icon {
 font-size: 1.5rem;
  width: 35px;
  min-width: 35px;
  height: 38px;
  line-height: 35px;
  text-align: center;
  display: inline-block;
  margin-right: 10px;
  border-radius: 2px;
  transition: color 0.3s;
}

.bdy-layout .sidebar .menu .menu-item a .menu-icon svg{
	width:20px;
	height:20px;
    stroke: #bd9e4d;
	margin-top:9.5px;
}

.bdy-layout .sidebar .menu .menu-item a .sub-menu-icon {
 font-size: 1.1rem;
  width: 35px;
  min-width: 35px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  margin-right: 2px;
  border-radius: 2px;
  transition: color 0.3s;
}

.bdy-layout .sidebar .menu .menu-item a .menu-icon i {
  display: inline-block;
}

.bdy-layout .sidebar .menu .menu-item a .menu-icon i {
  display: inline-block;
}

.bdy-layout .sidebar .menu .menu-item a .menu-title {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-grow: 1;
  transition: color 0.3s;
  text-transform:capitalize !important;
}
.bdy-layout .sidebar .menu .menu-item a .menu-prefix,
.bdy-layout .sidebar .menu .menu-item a .menu-suffix {
  display: inline-block;
  padding: 5px;
  opacity: 1;
  transition: opacity 0.3s;
}
.bdy-layout .sidebar .menu .menu-item a:hover .menu-title {
  color: #bd9e4d;
  font-weight:bold;
  text-transform:uppercase !important;
}
.bdy-layout .sidebar .menu .menu-item a:hover .menu-icon {
  color: #bd9e4d;
}
.bdy-layout .sidebar .menu .menu-item a:hover .sub-menu-icon {
  color: #bd9e4d;
}
.bdy-layout .sidebar .menu .menu-item a:hover .menu-icon i {
  animation: swing ease-in-out 0.5s 1 alternate;
}
.bdy-layout .sidebar .menu .menu-item a:hover::after {
  border-color: #bd9e4d !important;

}
.bdy-layout .sidebar .menu .menu-item.sub-menu {
  position: relative;
}
.bdy-layout .sidebar .menu .menu-item.sub-menu > a::after {
  content: "";
  transition: transform 0.3s;
  border-right: 2px solid currentcolor;
  border-bottom: 2px solid currentcolor;
  width: 7px;
  height: 7px;
  transform: rotate(-45deg);
}
.bdy-layout .sidebar .menu .menu-item.sub-menu > .sub-menu-list {
  padding-left: 0px;
  display: none;
  overflow: hidden;
  z-index: 999;
}
.bdy-layout .sidebar .menu .menu-item.sub-menu.open > a {
  color: #d9ab36;
  font-weight:bold;
  text-transform: uppercase !important;
}
.bdy-layout .sidebar .menu .menu-item.sub-menu.open > a::after {
  transform: rotate(45deg);
}
.bdy-layout .sidebar .menu .menu-item.active > a .menu-title {
  color: #dee2ec;

}
.bdy-layout .sidebar .menu .menu-item.active > a::after {
  border-color: #dee2ec;
}
.bdy-layout .sidebar .menu .menu-item.active > a .menu-icon {
  color: #dee2ec;
}

.bdy-layout .sidebar .menu .menu-item.active > a .sub-menu-icon {
  color: #dee2ec;
}

.bdy-layout .sidebar .menu > ul > .sub-menu > .sub-menu-list {
  background-color: #e7e7e7;
}
.bdy-layout .sidebar .menu.icon-shape-circle .menu-item a .menu-icon, .bdy-layout .sidebar .menu.icon-shape-rounded .menu-item a .menu-icon, .bdy-layout .sidebar .menu.icon-shape-square .menu-item a .menu-icon {
  background-color: #e7e7e7;
}
.bdy-layout .sidebar .menu.icon-shape-circle .menu-item a .menu-icon {
  border-radius: 50%;
}
.bdy-layout .sidebar .menu.icon-shape-rounded .menu-item a .menu-icon {
  border-radius: 4px;
}
.bdy-layout .sidebar .menu.icon-shape-square .menu-item a .menu-icon {
  border-radius: 0;
}
.bdy-layout .sidebar:not(.collapsed) .menu > ul > .menu-item.sub-menu > .sub-menu-list {
  visibility: visible !important;
  position: static !important;
  transform: translate(0, 0) !important;
}
.bdy-layout .sidebar.collapsed .menu > ul > .menu-header {
  opacity: 0;
}
.bdy-layout .sidebar.collapsed .menu > ul > .menu-item > a .menu-prefix,
.bdy-layout .sidebar.collapsed .menu > ul > .menu-item > a .menu-suffix {
  opacity: 0;
}
.bdy-layout .sidebar.collapsed .menu > ul > .menu-item.sub-menu > a::after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: currentcolor;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 50%;
  border: none;
  transform: translateY(-50%);
}
.bdy-layout .sidebar.collapsed .menu > ul > .menu-item.sub-menu > a:hover::after {
  background-color: #bd9e4d;
}
.bdy-layout .sidebar.collapsed .menu > ul > .menu-item.sub-menu > .sub-menu-list {
  transition: none !important;
  width: 200px;
  margin-left: 3px !important;
  border-radius: 4px;
  display: block !important;
}

.bdy-layout .sidebar.collapsed .menu > ul > .menu-item.active > a::after {
  background-color: #dee2ec;
}
.bdy-layout .sidebar.has-bg-image .menu.icon-shape-circle .menu-item a .menu-icon, .bdy-layout .sidebar.has-bg-image .menu.icon-shape-rounded .menu-item a .menu-icon, .bdy-layout .sidebar.has-bg-image .menu.icon-shape-square .menu-item a .menu-icon {
  background-color: rgba(11, 26, 44, 0.6);
}
.bdy-layout .sidebar.has-bg-image:not(.collapsed) .menu > ul > .sub-menu > .sub-menu-list {
/*   background-color: rgba(11, 26, 44, 0.6); */
}
.bdy-layout.rtl .sidebar .menu .menu-item a .menu-icon {
  margin-left: 10px;
  margin-right: 0;
}
.bdy-layout.rtl .sidebar .menu .menu-item.sub-menu > a::after {
  transform: rotate(135deg);
}
.bdy-layout.rtl .sidebar .menu .menu-item.sub-menu > .sub-menu-list {
  padding-left: 0;
  padding-right: 20px;
}
.bdy-layout.rtl .sidebar .menu .menu-item.sub-menu.open > a::after {
  transform: rotate(45deg);
}
.bdy-layout.rtl .sidebar.collapsed .menu > ul > .menu-item.sub-menu a::after {
  right: auto;
  left: 10px;
}
.bdy-layout.rtl .sidebar.collapsed .menu > ul > .menu-item.sub-menu > .sub-menu-list {
  margin-left: -3px !important;
}

.bdy-layout a{ text-decoration: none; }

@media (max-width: 576px) {
  #btn-collapse {
    display: none;
  }
}
.bdy-layout .sidebar .pro-sidebar-logo {
  display: flex;
  align-items: center;
}
.bdy-layout .sidebar .pro-sidebar-logo > div {
  width: 35px;
  min-width: 35px;
  height: 35px;
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
  background-color: #ffffff;
  margin-right: 10px;
  border:1px solid #d9d9d9;
  border-radius: 100%;
}
.bdy-layout .sidebar .pro-sidebar-logo > div img{
	width:12px; height:auto;
}
.bdy-layout .sidebar .pro-sidebar-logo > h5 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  line-height: 30px;
  transition: opacity 0.3s;
  opacity: 1;
  text-transform:uppercase;
}
.bdy-layout .sidebar .footer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8em;
  padding: 10px 0;
  border-radius: 8px;
  width: 80%;
  min-width: 190px;
  margin: 0 auto;
  background-color: #ffffff;
}
.bdy-layout .sidebar .footer-box img.company-logo {
  width: 20px;
  height: auto;
  margin-bottom: 10px;
}
.bdy-layout .sidebar .footer-box a {
  font-weight:bold;
  margin-bottom: 10px;
}
.bdy-layout .sidebar .sidebar-collapser {
  transition: left, right, 0.3s;
  position: fixed;
  left: 240px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #00829f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  transform: translateX(50%);
  z-index: 111;
  cursor: pointer;
  color: white;
  box-shadow: 1px 1px 4px #0c1e35;
}
.bdy-layout .sidebar.collapsed .pro-sidebar-logo > h5 {
  opacity: 0;
}
.bdy-layout .sidebar.collapsed .footer-box {
  display: none;
}

.bdy-layout .sidebar.collapsed .sidebar-control-box {
  display: none;
}

.bdy-layout .sidebar.collapsed .sidebar-searchbox {
  display: none;
}

.bdy-layout .sidebar.collapsed .sidebar-collapser {
  left: 60px;
}
.bdy-layout .sidebar.collapsed .sidebar-collapser i {
  transform: rotate(180deg);
}

.bdy-layout .badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  color: #fff;
  background-color: #6c757d;
}
.bdy-layout .badge.primary {
  background-color: #bd9e4d;
}
.bdy-layout .badge.secondary {
  background-color: #079b0b;
}

.bdy-layout .sidebar-toggler {
  position: fixed;
  right: 20px;
  top: 20px;
}

/* --------- Center stage design ----------------------- */
/* This is root name should need to change the terminial access */
/* One more tag line shoiuld connect thte smaple da function */
/* Terminial collectio shoudl be connect the hover function to sytage hover */
:root {
  /** * THEME LIGHT */
  --stage-bg-color-light: rgba(255, 255, 255);
  /* tabs colors */
  --stage-header-bg-color: rgb(231, 234, 236);
  --stage-bg-color: rgb(166, 166, 166,.2);;
  --stage-contentbg-color: #fff;
  --stage-link-hover-color: #d0a432;
  --stage-selected-bg-color: var(--stage-bg-color-light);
  --stage-hover-bg-color: rgb(240, 243, 245);
  --stage-text-color: rgb(88, 92, 95);
  --stage-hover-text-color: rgb(88, 92, 95);
  --stage-selected-text-color: rgb(47, 48, 49);
  --stage-height: 2.2rem;
  
  /** * THEME DARK */
  --main-stage-bg-color-dark: rgb(49, 53, 57);
  /* tabs colors */
  --dark-stage-header-bg-color: rgb(31, 32, 35);
  --dark-stage-bg-color: var(--main-stage-bg-color-dark);
  --dark-stage-selected-bg-color: var(--dark-stage-header-bg-color);
  --dark-stage-hover-bg-color: #25282b;
  --dark-stage-text-color: rgb(134, 136, 138);
  --dark-stage-hover-text-color: rgb(255, 255, 255);
  --dark-stage-selected-text-color: rgb(221, 226, 231);
}

.tt-stage-display {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  margin: 0;
  padding-top: 0.075rem;
  position: relative;
  background: #e0e0e0;
  height: 100%;
  width:100%;
}

.tt-stage-display[dark] {
  background-color: var(--dark-stage-bg-color);
}

.tt_humb-toggle-box{
  position: absolute;  	
  top:0;
  left:0;
  display: block;
  width: 25px;
  height: 30px;
  cursor: auto;
  padding: 0;
  z-index: 9999;
}

.tt_humb-toggle-box i{
  position: absolute;  	
  top:0;
  left:0;
  display: block;
  font-size:25px;
  padding-left: 5px;
  padding-top: 4px;
  width: 35px;
  height: 30px;
  z-index:100;
}

.tt_humb-em-box{
  position: relative;
  top:0;
  left:0;
  display: block;
  width: 25px;
  height: 30px;
  cursor: auto;
  padding: 0;
}

.tt_humb-toggle-box:hover{
  color: var(--stage-link-hover-color);
}

.sd-tab-radio {
  position: absolute;
  opacity: 0;
}
.tt-stage-display > .sd-tab-label {
  background-color: var(--stage-bg-color);
  padding: 3px 5px 5px 10px;
  display: flex;
  align-items: center;
  min-width: 0;
  width: 90%;
  border-radius: 5px 5px 0 0;
  position: relative;
  z-index: 2;
  max-height: var(--stage-height);
  /* transition: background-color ease .2s, box-shadow ease .2s;
  */
  cursor: pointer;
  flex: 1;
}
.tt-stage-display[dark] > .sd-tab-label {
  background-color: var(--dark-stage-bg-color);
}
.tt-stage-display > .sd-tab-label:hover {
  background-color: var(--stage-hover-bg-color);
  color: var(--stage-hover-text-color);
  z-index: 3;
}
.tt-stage-display[dark] > .sd-tab-label:hover {
  background-color: var(--dark-stage-hover-bg-color);
  color: var(--dark-stage-hover-text-color);
}
.tt-stage-display > .sd-tab-radio:checked .sd-tab-label {
  z-index: 4;
}
.tt-stage-display > .sd-tab-label::after,
.tt-stage-display > .sd-tab-label::before {
  content: " ";
  pointer-events: none;
  position: absolute;
  display: block;
  height: 80%;
  width: 100%;
  bottom: 0px;
  z-index: -1;
  opacity: 0;
}
.tt-stage-display > .sd-tab-radio:not(:checked) + .sd-tab-label:not(:hover) {
  box-shadow: -8px 0px 0 -7px rgba(0, 0, 0, 0.25);
  color: var(--stage-text-color);
}
.tt-stage-display[dark] > .sd-tab-radio:not(:checked) + .sd-tab-label:not(:hover) {
  color: var(--dark-stage-text-color);
}
.tt-stage-display > .sd-tab-radio:checked .sd-tab-label + .sd-tab-label,
.tt-stage-display > .sd-tab-label:hover + .sd-tab-radio:not(:checked) + .sd-tab-label {
  box-shadow: -8px 0px 0 -7px rgba(0, 0, 0, 0);
}
.tt-stage-display > .sd-tab-radio:checked + .sd-tab-label:hover {
  /* transition: opacity ease .2s, box-shadow ease .2s;
  */
}
.tt-stage-display > .sd-tab-radio + .sd-tab-label:hover::before,
.tt-stage-display > .sd-tab-radio:checked + .sd-tab-label::before {
  left: -100%;
  border-radius: 0 0 10px 0;
  opacity: 1;
  /* transition: opacity ease .2s, box-shadow ease .2s;
  */
}
.tt-stage-display > .sd-tab-radio:checked + .sd-tab-label::before {
  box-shadow: 14px 0.25em 0 -4px var(--stage-selected-bg-color);
}
.tt-stage-display[dark] > .sd-tab-radio:checked + .sd-tab-label::before {
  box-shadow: 14px 0.25em 0 -4px var(--dark-stage-selected-bg-color);
}
.tt-stage-display > .sd-tab-radio + .sd-tab-label:hover::after,
.tt-stage-display > .sd-tab-radio:checked + .sd-tab-label::after {
  right: -100%;
  border-radius: 0 0 0 10px;
  opacity: 1;
  /* transition: opacity ease .2s, box-shadow ease .2s;
  */
}
.tt-stage-display > .sd-tab-radio:checked + .sd-tab-label::after {
  box-shadow: -14px 0.25em 0 -4px var(--stage-selected-bg-color);
}
.tt-stage-display[dark] > .sd-tab-radio:checked + .sd-tab-label::after {
  box-shadow: -14px 0.25em 0 -4px var(--dark-stage-selected-bg-color);
}
.tt-stage-display > .sd-tab-radio:checked + .sd-tab-label:hover,
.tt-stage-display > .sd-tab-radio:checked + .sd-tab-label {
  background-color: var(--stage-selected-bg-color);
  color: var(--stage-selected-text-color);
  z-index: 4;
}
.tt-stage-display[dark] > .sd-tab-radio:checked + .sd-tab-label:hover,
.tt-stage-display[dark] > .sd-tab-radio:checked + .sd-tab-label {
  background-color: var(--dark-stage-selected-bg-color);
  color: var(--dark-stage-selected-text-color);
  z-index: 4;
  font-weight:600px;
}
.tt-stage-display > .sd-tab-radio:not(:checked) + .sd-tab-label:hover::before {
  box-shadow: 14px 0.25em 0 -4px var(--stage-hover-bg-color);
  opacity: 1;
  transition: all .2s;
}
.tt-stage-display[dark] > .sd-tab-radio:not(:checked) + .sd-tab-label:hover::before {
  box-shadow: 14px 0.25em 0 -4px var(--dark-stage-hover-bg-color);
}
.tt-stage-display > .sd-tab-radio:not(:checked) + .sd-tab-label:hover::after {
  box-shadow: -14px 0.25em 0 -4px var(--stage-hover-bg-color);
  transition: all .2s;
}
.tt-stage-display[dark] > .sd-tab-radio:not(:checked) + .sd-tab-label:hover::after {
  box-shadow: -14px 0.25em 0 -4px var(--dark-stage-hover-bg-color);
}
:root .tt-stage-display > .sd-tab-radio + .sd-tab-label:first-of-type {
  box-shadow: -8px 0px 0 -7px rgba(0, 0, 0, 0);
}
.tt-stage-display > .sd-tab-content {
  flex-basis: 100%;
  display: none;
  padding: 0;
  background-color: var(--stage-contentbg-color);
  box-shadow: inset 0px 0px 0 1px var(--stage-selected-bg-color);
  flex-direction: column;
  border-radius: 0 0 5px 5px;
  width: 100%;
  height: calc(100% - var(--stage-height));
  overflow: auto;
}
.tt-stage-display > .break {
  background-color: #bd9e4d;
  flex-basis: 100%;
}
.tt-stage-display[dark] > .sd-tab-content {
  background-color: var(--dark-stage-hover-bg-color);
  color: var(--dark-stage-text-color);
  box-shadow: inset 0px 0px 0 1px var(--dark-stage-selected-bg-color);
}
.tt-stage-display > .sd-tab-radio:checked + .sd-tab-label + .sd-tab-content {
  display: block;
}
.tt-stage-display > .sd-tab-label .sd-tab-desc {
  display: block;
  margin: 7px 5px 5px 2px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
  font-size: 0.75rem;
  flex: 1 1 0%;
}
.tt-stage-display > .sd-tab-label .sd-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 20px;
  height:20px;
  padding: 3px 4px;
}

.tt-stage-display > .sd-tab-label .sd-tab-icon svg{
  width:12px;
  height:12px;
  font-size:12px;
  line-height:10px;
}
.tt-stage-display > .sd-tab-label .sd-tab-icon:not(.sd-tab-close) {
  width: 20px;
}
.tt-stage-display > .sd-tab-label[icon-only] .sd-tab-icon:not(.sd-tab-close) {
  width: 24px;
  margin: 0 auto;
}
.tt-stage-display > .sd-tab-label .sd-tab-close:hover {
  background-color: #4c4c4c33;
}
.tt-stage-display > .sd-tab-label .sd-tab-close {
  margin-left: auto;
}
.tt-stage-display > .sd-tab-label::after,
.tt-stage-display > .sd-tab-label::before {
  visibility: hidden;
}

.tt_addtab-btn{
  position: absolute;  	
  top:3px;
  right:0;
  display: block;
  width:30px;
  height: 30px;
  z-index:10;
  margin-left: 8px;
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-bottom: none;
  padding: 5px 5px;
  cursor: pointer;
  border-radius: 15%;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  transition: all 0.5s ease;
}
.tt_addtab-btn:hover{ background-color: #fff; border-radius: 100%; }

@media (min-width: 600px) {
  .sd-tab-content {
    order: 999;
  }
  .tt-stage-display {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .sd-tab-label {
    max-width: 150px;
    width: 150px;
    border-radius: 10px 10px 0 0;
  }
  .tt-stage-display > .sd-tab-label::after,
  .tt-stage-display > .sd-tab-label::before {
    visibility: visible;
  }
  .tt-stage-display > .sd-tab-label:first-of-type {
    margin-left: 14px;
  }
}








/*-------------    Right Side Bar ------------------------------*/
.righticonbar {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 60px;
  background: #e0e0e0;
  padding: 9px 10px;
  z-index: 999;
  transition: all 0.5s ease;
  direction: rtl;
}
.righticonbar.open {
  width: 250px;
}
.righticonbar .rm-user-details {
  direction: ltr;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  margin-top:-7px;
}

.righticonbar .rm-user-details .ruser-icon{
  position: relative;
  padding:6px;
  width: 30ox;
  height:30px;
  opacity: 0;
  transition: all 0.5s ease;
  background: #ffffff;
  border-radius:100%;
  margin-right: 8px;
}

.righticonbar .rm-user-details .ruser-icon svg{
  width: 20ox;
  height:20px;
  stroke: #333333 !important;
  
}

.righticonbar .rm-user-details .ruser_name {
  color: #333333;
  font-size: 13px;
  font-weight: bold;
  opacity: 0;
  transition: all 0.5s ease;
  line-height: 13px;
}

.righticonbar .rm-user-details .ruser_name span{
  color: #333333;
  font-size: 10px;
  font-weight: normal;
}

.righticonbar.open .rm-user-details .ruser-icon,
.righticonbar.open .rm-user-details .ruser_name {
  opacity: 1;
}
.righticonbar .rm-user-details #right-menu-tog-btn {
  position: absolute;
  top: 42%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.4s ease;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
  color: #333333;
padding-left:10px;
}
.righticonbar.open .rm-user-details #right-menu-tog-btn {
  text-align: center;
}

.righticonbar i {
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}
.righticonbar .nav-list {
  margin-top: 5px;
  height: 100%;
}

.righticonbar.open .nav-list{
 overflow-Y:auto;
}

.righticonbar .nav-list .rght-menu-tag{
  opacity: 1;
  transition: opacity 0.3s ease;
}

.righticonbar .nav-list .rght-menu-tag.hidden{
  opacity: 0;
  display:none;
}

.righticonbar .nav-list::-webkit-scrollbar {
  width: 0;
  background-color: transparent;
}

.righticonbar li {
  position: relative;
  margin: 0px 0;
  list-style: none;
  margin-bottom:10px;
}

.righticonbar li:nth-last-child(2) {
  position: relative;
  margin: 0px 0;
  list-style: none;
  margin-bottom:70px;
}

.righticonbar li .tooltip {
  position: absolute;
  top: -20px;
  right: calc(100% - 90px);
  z-index: 3;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
  z-index:10000;

}
.righticonbar li:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: -10%;
  transform: translateY(-294%);
}
.righticonbar.open li .tooltip {
  display: none;
}
.righticonbar input {
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  outline: none;
  height: 40px;
  width: 100%;
  width: 40px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background:  #797979;
}

.righticonbar input::placeholder {
  color: #cbcbcb;
}
.righticonbar.open input {
  padding: 0 20px 0 10px;
  width: 100%;
  direction: ltr;
  text-align: left;
}
.righticonbar .searchicn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 15px;
  background:  #797979;
  color: #fff;
  cursor: pointer;
  width:40px;
  border-radius: 12px;
}
.righticonbar.open .searchicn:hover {
  background:  #797979;
  color: #fff;
}
.righticonbar .searchicn:hover {
  background: #fff;
  color: #171717;
}

.righticonbar:not(.open) .searchicn:hover i{
  color: #171717;
}
.righticonbar li a {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  background: #797979;
}
.righticonbar li a:hover {
  background: #fff;
}
.righticonbar li a .links_name {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.righticonbar.open li a .links_name {
  opacity: 1;
  pointer-events: auto;
}
.righticonbar li a:hover .links_name,
.righticonbar li a:hover i {
  transition: all 0.5s ease;
  color: #11101d;
}

.righticonbar .ri-nav-icon{
  color: #fff;
  height: 40px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height:30px;
}

.righticonbar .ri-nav-icon svg{
  width: 18ox;
  height: 18px;
  stroke: #ffffff;
  padding-left: 10px;
}

.righticonbar li a:hover .ri-nav-icon svg, 
.righticonbar .ri-nav-icon:hover svg {
  transition: all 0.5s ease;
  stroke: #11101d;
}

.righticonbar li i {
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  border-radius: 12px;
  padding-left:8px;
  text-align:center;
}

.righticonbar li.profile {
  position: fixed;
  height: 60px;
  width: 60px;
  right: 0;
  bottom: -11px;
  padding: 10px 14px;
  background: #c0a76d;
  transition: all 0.5s ease;
  overflow: hidden;
  margin-top: 100px; 
  cursor:pointer;
}

.righticonbar li.profile:hover, .righticonbar .profile #log_out:hover{
  background: #d6b363;
}


.righticonbar.open li.profile {
  width: 250px;
}
.righticonbar li .profile-details {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.righticonbar li.profile .name,
.righticonbar li.profile .job {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}
.righticonbar li.profile .job {
  font-size: 12px;
}
.righticonbar .profile #log_out {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #797979;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 0px;
  transition: all 0.5s ease;
}
.righticonbar.open .profile #log_out {
  width: 50px;
  background: none;
}
.home-section {
  position: relative;
  background: #e4e9f7;
  min-height: 100vh;
  top: 0;
  right: 78px;
  width: calc(100% - 78px);
  transition: all 0.5s ease;
  z-index: 2;
}
.righticonbar.open ~ .home-section {
  right: 250px;
  width: calc(100% - 250px);
}
.home-section .text {
  display: inline-block;
  color: #11101d;
  font-size: 25px;
  font-weight: 500;
  margin: 18px;
}
@media (max-width: 420px) {
  .righticonbar li .tooltip {
    display: none;
  }
}