:root {
  --panel-bg: #fff;
  --panel-border: #e6e9ee;
  --panel-shadow: 0 1px 3px rgba(0, 0, 0, .08);

  --group-header-bg: #c3cad6;
  --group-header-color: #2b2e38;
  --group-header-border: #e6e9ee;

  --card-bg: #fff;
  --card-border: #e9edf3;
  --card-hover: #f7fafc;

  --title-color: #1f2532;
  --meta-color: #5b6372;
  --link-color: #3a7bd5;

  --switch-off: #c7cfdb;
  --switch-on: #3a7bd5;

  --radius-12: 12px;
}

.sidebar {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  transition: max-height 1000ms;
  transition: height 1000ms;
  transition: all 500ms;
  max-height: 92%;
  max-width: 100%;
  background: transparent;
  z-index: 2000;
}

.sidebar.collapsed {
  max-height: 120px;
  width: 40px;
  transition: all 500ms;
}

@media (min-width: 768px) {
  .sidebar {
    top: 10px;
    bottom: 10px;
    transition: width 500ms;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .sidebar {
    width: 365px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar {
    width: 365px;
  }
}

@media (min-width: 1200px) {
  .sidebar {
    width: 365px;
  }
}

.sidebar-left {
  left: 0;
}

@media (min-width: 768px) {
  .sidebar-left {
    left: 6px;
  }
}

.sidebar-right {
  right: 0;
}

@media (min-width: 768px) {
  .sidebar-right {
    right: 6px;
  }
}

.sidebar-tabs>li>a,
.sidebar-tabs>ul>li>a {
  padding-top: 10px;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 40px;
  color: #333;
  text-decoration: none;
  text-align: center;
}




.sidebar-tabs {
  top: 0;
  bottom: 0;
  height: 100%;
  background-color: #fff;
}

.sidebar-left .sidebar-tabs {
  left: 0;
}

.sidebar-right .sidebar-tabs {
  right: 0;
}

.sidebar-tabs,
.sidebar-tabs>ul {
  position: absolute;
  width: 40px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.sidebar-tabs>li,
.sidebar-tabs>ul>li {
  width: 100%;
  height: 40px;
  color: #333;
  font-size: 12pt;
  overflow: hidden;
  transition: all 80ms;
}

.sidebar-tabs>li:hover,
.sidebar-tabs>ul>li:hover {
  color: #fff;
  background-color:#b7bcc4;
}

.sidebar-tabs>li.active,
.sidebar-tabs>ul>li.active {
  color: #fff;
  background-color: var(--group-header-bg)
}

.sidebar-tabs>li.disabled,
.sidebar-tabs>ul>li.disabled {
  color: rgba(255, 255, 255, 0.4);
}

.sidebar-tabs>li.disabled:hover,
.sidebar-tabs>ul>li.disabled:hover {
  background: transparent;
}

.sidebar-tabs>li.disabled>a,
.sidebar-tabs>ul>li.disabled>a {
  cursor: default;
}

.sidebar-tabs>ul+ul {
  bottom: 0;
}

.sidebar-content {
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.95);
  overflow-x: hidden;

  overflow-y: auto;
}

.sidebar-left .sidebar-content {
  left: 40px;
  right: 0;
}

.sidebar-right .sidebar-content {
  left: 0;
  right: 40px;
}

.sidebar.collapsed>.sidebar-content {
  overflow-y: hidden;
}

.sidebar-pane {
  display: none;
  left: 0;
  right: 0;
  box-sizing: border-box;
}

.sidebar-pane.active {
  display: block;
}

@media (min-width: 768px) and (max-width: 991px) {
  .sidebar-pane {
    min-width: 295px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar-pane {
    min-width: 295px;
  }
}

@media (min-width: 1200px) {
  .sidebar-pane {
    min-width: 295px;
  }
}

.body {
  font-family: "Roboto", sans-serif !important;
}

.sidebar-header {

  margin-left: -25px;
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    color:  var(--group-header-color) !important;
    text-align: left !important;
    padding: .5rem .25rem;

  background-color: var(--group-header-bg);
}

.sidebar-right .sidebar-header {
  padding-left: 40px;
}

.sidebar-close {
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  padding-top: 10px;
  cursor: pointer;
}

.sidebar-left .sidebar-close {
  right: 0;
}

.sidebar-right .sidebar-close {
  left: 0;
}

.sidebar {
  background-color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .sidebar {
    /* border: 3px solid transparent; */
    border-radius: 4px;
  }
}


.sidebar-tabs {
  overflow: hidden;
}
