/* ======================================
--> 3. SIDEBAR NAVIGATION
========================================= */
.sidebar .nav > li > a:after {
  content: '';
  clear: both;
  display: table;
}

.left-sidebar {
  position: fixed;
  display: flex;
  flex-direction: column;
  transform: translateX(-250px);
  top: 0;
  bottom: 0;
}

@media (min-width: 768px) {
  .left-sidebar {
    transform: translateX(0);
    width: 250px;
    position: relative;
    z-index: 1;
  }
}

.sidebar {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  z-index: 1050;
  min-height: 100vh;
  position: relative;
}

.sidebar .sidebar-inner {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  margin-top: 1.9rem;
}

@media (min-width: 768px) {
  .sidebar .sidebar-inner {
    margin-top: 1rem;
  }
}

@media (min-width: 1200px) {
  .sidebar .sidebar-inner {
    margin-top: 2.5rem;
  }
}

.sidebar .sidebar-inner > li {
  position: relative;
  font-weight: 600;
}

.sidebar .sidebar-inner > li > a {
  padding: 1.25rem 1.56rem;
  line-height: 20px;
  color: var(--gray1);
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

.sidebar .sidebar-inner > li.active > a {
  position: relative;
  z-index: 10;
  color: #002F91;
}

.sidebar .sidebar-inner > li.active > a:before {
  opacity: 1;
}

.sidebar .sidebar-inner > li > a:before {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: .19rem;
  height: 100%;
  background: var(--mnulogo);
  opacity: 0;
}

.sidebar .sidebar-inner .section-title {
  padding: 1.25rem 1.56rem 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(138, 144, 157, 0.7);
  letter-spacing: 1.2px;
}

.sidebar .sidebar-inner .sub-menu .section-title {
  padding: 1.25rem .94rem 0.625rem;
}

.sidebar .nav > li.active > a:before {
  opacity: 1;
}

/* App brand */
.app-brand {
  position: relative;
  display: block;
  background-color: var(--mnulogo);
}

.app-brand ~ div{
  background-color: var(--white);
}
.app-brand a {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 72px;
  line-height: 72px;
  width: 250px;
  transition: width 0.3s ease-in-out;
  justify-content:center;
}

@media (prefers-reduced-motion: reduce) {
  .app-brand a {
    transition: none;
  }
}

@media (min-width: 768px) {
  .app-brand a {
    overflow: hidden;
  }
}

.app-brand a img {
  /*max-width: 80px;*/
  vertical-align: middle;
}

.app-brand .brand-name {
  color: #ffffff;
  font-size: 1.12rem;
  max-width: 170px;
}

/*  Nav menus Icon Styles */
.sidebar .nav > li > a i {
  float: left;
  margin-right: 0.94rem;
  width: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 1.5rem;
}

.sidebar .nav > li.active > a i {
  color: var(--mnulogo);
}

/* Caret styles */
.sidebar li > a .caret {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 1.25rem;
  border: none;
}

.sidebar li > a .caret:before {
  content: '\e315';
  display: block;
  text-align: center;
  transition: all .2s linear;
  opacity: .5;
}

.sidebar li > a .caret:before {
  font-family: "Material Icons" !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;f
text-rendering: auto;
}

.sidebar li.active > a .caret:before,
.sidebar li.expand > a .caret:before,
.sidebar li.expanding > a .caret:before {
  transform: rotate(0);
}

.sidebar li.active.expand > a .caret:before,
.sidebar li.expand > a .caret:before,
.sidebar li.expanding > a .caret:before {
  transform: rotate(90deg);
  color: var(--mnulogo);
}

.sidebar li.active > a .caret:before {
  opacity: 1;
}

.sidebar li.closed > a .caret:before,
.sidebar li.closing > a .caret:before {
  transform: rotate(0);
}

/*  sub-menu dropdowns */
.sidebar .sub-menu {
  list-style-type: none;
  padding: .625rem 0 .625rem 2.81rem;
  margin: 0;
  position: relative;
}

.sidebar .sub-menu > li > a {
  padding: 0.625rem 1.25rem 0.625rem 0.94rem;
  display: block;
  text-decoration: none;
  position: relative;
  font-size: 0.88rem;
}

.sidebar .sub-menu > li .sub-menu {
  padding-left: 2.18rem;
}

.sidebar .sub-menu > li .sub-menu > li > a {
  position: relative;
  font-size: .81rem;
  padding-left: 0;
  text-overflow: ellipsis;
}

.sidebar .sub-menu > li .sub-menu > li > a:after {
  position: absolute;
  content: '';
  top: 20px;
  left: -20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 10px;
}

.sidebar .has-sub.active.expand > .sub-menu {
  display: none;
}

.sidebar .has-sub .has-sub .caret {
  top: 12px;
}

.sidebar .sidenav-item-link {
  display: flex !important;
  flex-grow: 1;
  align-items: center;
}

.sidebar .sidenav-item-link .nav-text {
  font-weight: 600;
  margin-right: auto;
  overflow: hidden;
  max-width: 130px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar .sidenav-item-link .badge {
  padding: .4em .6em;
}

.sidebar .sub-menu > li > a .nav-text {
  white-space: pre-line;
}

.sidebar .sub-menu .has-sub .nav-text {
  white-space: nowrap;
}

/* Sidebar for Mobile */
.sidebar-mobile-in .left-sidebar {
  transform: translateX(0px) !important;
  z-index: 1050;
  transition: transform .3s ease-in-out;
}

@media (min-width: 768px) {
  .sidebar-mobile-in .left-sidebar {
    transform: translateX(-250px) !important;
  }
}

.sidebar-mobile-out .left-sidebar {
  transform: translateX(-250px) !important;
  z-index: 1050;
}

@media (min-width: 768px) {
  .sidebar-mobile-out .left-sidebar {
    transform: translateX(0px) !important;
  }
}

/* Sidebar Minified */
.sidebar-minified .left-sidebar {
  width: 250px;
  z-index: 1050;
  transform: translateX(0);
  transition: transform .3s ease-in-out;
}

@media (min-width: 768px) {
  .sidebar-minified .left-sidebar {
    width: 75px;
    transition: width .3s ease-in;
  }
}

@media (min-width: 768px) {
  .sidebar-minified .left-sidebar .app-brand .brand-name {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .sidebar-minified .left-sidebar .app-brand .brand-name {
    transition: none;
  }
}

.sidebar-minified .left-sidebar .sidebar .sub-menu {
  padding-top: 0;
  padding-bottom: 0;
}

.sidebar-minified .left-sidebar .nav > li > a > .caret,
.sidebar-minified .left-sidebar .nav > li > a > span {
  opacity: 1;
}

@media (min-width: 768px) {
  .sidebar-minified .left-sidebar .nav > li > a > .caret,
  .sidebar-minified .left-sidebar .nav > li > a > span {
    opacity: 0;
  }
}

.sidebar-minified .left-sidebar .nav > li > a > .caret {
  right: 15px;
}

.sidebar-minified .left-sidebar .nav li.has-sub .collapse > .sub-menu {
  left: 0;
  top: 0;
  width: 100%;
  margin: 0;
}

.sidebar-minified .left-sidebar .nav li.has-sub.expand .collapse > .sub-menu {
  height: 0;
}

.sidebar-minified .left-sidebar .nav li.has-sub.expand .collapse > .sub-menu li {
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 767.98px) {
  .sidebar-minified .left-sidebar .nav li.has-sub.expand .collapse > .sub-menu {
    transition: opacity 0.3s ease-in-out;
    display: block !important;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .sidebar-minified .left-sidebar .nav li.has-sub.expand .collapse > .sub-menu {
    transition: none;
  }
}

.sidebar-minified .left-sidebar .separator {
  border-top-width: 0;
}

@media (min-width: 768px) {
  .sidebar-minified .left-sidebar .sidebar-footer {
    height: 0;
  }
}

@media (min-width: 768px) {
  .sidebar-minified .left-sidebar .sidebar-footer-content {
    visibility: hidden;
    opacity: 0;
  }
}

.sidebar-minified .left-sidebar .sidebar-scrollbar {
  overflow: unset !important;
}

/* Sidebar Minified Hover */
@media (min-width: 768px) {
  .sidebar-minified .left-sidebar:hover {
    width: 250px;
    margin-right: -10.94rem;
  }
}

.sidebar-minified .left-sidebar:hover .nav li.has-sub.expand .collapse > .sub-menu {
  transition: opacity 0.3s ease-in-out;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-minified .left-sidebar:hover .nav li.has-sub.expand .collapse > .sub-menu {
    transition: none;
  }
}

.sidebar-minified .left-sidebar:hover .nav li.has-sub.expand .collapse > .sub-menu li {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-out 0.25s;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-minified .left-sidebar:hover .nav li.has-sub.expand .collapse > .sub-menu li {
    transition: none;
  }
}

.sidebar-minified .left-sidebar:hover .nav > li > a > .caret,
.sidebar-minified .left-sidebar:hover .nav > li > a > span {
  opacity: 1;
  transition: opacity 0.3s ease-in;
  transition-delay: 0.15s;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-minified .left-sidebar:hover .nav > li > a > .caret,
  .sidebar-minified .left-sidebar:hover .nav > li > a > span {
    transition: none;
  }
}

.sidebar-minified .left-sidebar:hover .brand-name {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-minified .left-sidebar:hover .brand-name {
    transition: none;
  }
}

@media (min-width: 768px) {
  .sidebar-minified .left-sidebar:hover .app-brand .brand-name {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s;
  }
}

.sidebar-minified .left-sidebar:hover .sidebar .sub-menu {
  padding-top: .625rem;
  padding-bottom: .625rem;
}

.sidebar-minified .left-sidebar:hover .separator {
  border-top-width: 1px;
}

@media (min-width: 768px) {
  .sidebar-minified .left-sidebar:hover .sidebar-footer {
    height: auto;
  }
}

.sidebar-minified .left-sidebar:hover .sidebar-footer-content {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in-out 0.15s;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-minified .left-sidebar:hover .sidebar-footer-content {
    transition: none;
  }
}

.sidebar-minified .left-sidebar:hover .sidebar-scrollbar {
  overflow: hidden !important;
}

/* Sidebar Minified Not transition */
@media (min-width: 768px) {
  .sidebar-minified:not(.left-sidebar) .left-sidebar {
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-property: margin-left, margin-right, width;
  }
}

/* Sidebar Static With Minified */
.sidebar-static.sidebar-minified .page-wrapper .main-header {
  transition: padding-left 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-static.sidebar-minified .page-wrapper .main-header {
    transition: none;
  }
}

@media (min-width: 768px) {
  .sidebar-static.sidebar-minified.header-fixed .page-wrapper .main-header {
    padding-left: 4.69rem;
  }
}

.sidebar-static.sidebar-minified-out .left-sidebar {
  transition: width 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-static.sidebar-minified-out .left-sidebar {
    transition: none;
  }
}

.sidebar-static.sidebar-minified-out .page-wrapper .main-header {
  transition: padding-left 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-static.sidebar-minified-out .page-wrapper .main-header {
    transition: none;
  }
}

/* Sidebar Fixed With Minified Layout Container */
@media (min-width: 768px) {
  .sidebar-fixed.sidebar-minified .page-wrapper {
    padding-left: 4.69rem;
    transition: padding-left 0.3s ease-in-out;
  }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .sidebar-fixed.sidebar-minified .page-wrapper {
    transition: none;
  }
}

@media (min-width: 768px) {
  .sidebar-fixed.sidebar-minified.header-fixed .page-wrapper .main-header {
    padding-left: 4.69rem;
    transition: padding-left 0.3s ease-in-out;
  }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .sidebar-fixed.sidebar-minified.header-fixed .page-wrapper .main-header {
    transition: none;
  }
}

/* Sidebar Minified Out */
.sidebar-minified-out {
  /* Sidebar Fixed With Sidebar Minified Out */
}

.sidebar-minified-out .left-sidebar {
  z-index: 10000;
  transform: translateX(-250px);
  transition: transform .3s ease-in-out !important;
}

@media (min-width: 768px) {
  .sidebar-minified-out .left-sidebar {
    transform: translateX(0px);
    transition: width 0.3s ease-in-out !important;
  }
}

.sidebar-minified-out .sidebar .sub-menu {
  padding-bottom: .625rem;
  padding-top: .625rem;
}

.sidebar-minified-out .sidebar .nav > li > a span {
  transition: opacity 0.3s ease-in-out 0.3s;
  visibility: visible;
  opacity: 1;
}

.sidebar-minified-out .sidebar li > a .caret {
  transition: opacity 0.3s ease-in-out 0.3s;
  visibility: visible;
  opacity: 1;
}

.sidebar-minified-out .nav li.has-sub.expand .collapse > .sub-menu {
  height: auto;
}

.sidebar-minified-out .nav li.has-sub.expand .collapse > .sub-menu li {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-out 0.25s;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-minified-out .nav li.has-sub.expand .collapse > .sub-menu li {
    transition: none;
  }
}

.sidebar-minified-out .sidebar-footer-content {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in-out 0.15s;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-minified-out .sidebar-footer-content {
    transition: none;
  }
}

.sidebar-minified-out .left-sidebar {
  transition: width 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-minified-out .left-sidebar {
    transition: none;
  }
}

.sidebar-minified-out .page-wrapper {
  transition: padding-left 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-minified-out .page-wrapper {
    transition: none;
  }
}

.sidebar-minified-out .page-wrapper .main-header {
  transition: padding-left 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-minified-out .page-wrapper .main-header {
    transition: none;
  }
}

/* Sidebar Fixed And Offcanvas */
@media (min-width: 768px) {
  .sidebar-fixed-offcanvas .left-sidebar,
  .sidebar-fixed .left-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
  }
}

@media (min-width: 768px) {
  .sidebar-fixed-offcanvas .page-wrapper,
  .sidebar-fixed .page-wrapper {
    padding-left: 15.6rem;
  }
}

@media (min-width: 768px) {
  .sidebar-fixed-offcanvas .main-header,
  .sidebar-fixed .main-header {
    padding-left: 15.6rem;
  }
}

.sidebar-fixed-offcanvas.header-static .main-header,
.sidebar-fixed.header-static .main-header {
  position: relative;
}

@media (min-width: 768px) {
  .sidebar-fixed-offcanvas.header-static .main-header,
  .sidebar-fixed.header-static .main-header {
    padding-left: 0;
  }
}

.sidebar-fixed-offcanvas .sidebar-with-footer,
.sidebar-fixed .sidebar-with-footer {
  padding-bottom: 260px;
}

@media (min-width: 768px) {
  .sidebar-fixed-offcanvas .sidebar-with-footer,
  .sidebar-fixed .sidebar-with-footer {
    padding-bottom: 284px;
  }
}

.sidebar-fixed-offcanvas .sidebar-with-footer .sidebar-footer,
.sidebar-fixed .sidebar-with-footer .sidebar-footer {
  position: absolute;
  bottom: 0;
}

.sidebar-fixed-offcanvas.sidebar-collapse .page-wrapper {
  padding-left: 0;
}

@media (min-width: 768px) {
  .sidebar-fixed-offcanvas.sidebar-collapse .sidebar-footer {
    left: -250px;
  }
}

@media (min-width: 768px) {
  .sidebar-fixed-offcanvas.sidebar-collapse-out .sidebar-footer {
    left: 0px;
    transition: left 0.3s ease-in-out;
  }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .sidebar-fixed-offcanvas.sidebar-collapse-out .sidebar-footer {
    transition: none;
  }
}

/* Sidebar Collapse */
@media (min-width: 768px) {
  .sidebar-collapse .left-sidebar {
    margin-left: -15.6rem;
    transition: margin-left 0.3s ease-in-out;
  }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .sidebar-collapse .left-sidebar {
    transition: none;
  }
}

@media (min-width: 768px) {
  .sidebar-collapse .page-wrapper {
    transition: padding-left 0.3s ease-in-out;
  }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .sidebar-collapse .page-wrapper {
    transition: none;
  }
}

/* Sidebar Out Collapse */
@media (min-width: 768px) {
  .sidebar-collapse-out .left-sidebar {
    margin-left: 0px;
    transition: margin-left 0.3s ease-in-out;
  }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .sidebar-collapse-out .left-sidebar {
    transition: none;
  }
}

@media (min-width: 768px) {
  .sidebar-collapse-out .page-wrapper {
    transition: padding-left 0.3s ease-in-out;
  }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .sidebar-collapse-out .page-wrapper {
    transition: none;
  }
}

.sidebar-collapse.header-fixed .page-wrapper .main-header {
  padding-left: 0;
  transition: padding-left 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-collapse.header-fixed .page-wrapper .main-header {
    transition: none;
  }
}

.sidebar-collapse-out .page-wrapper .main-header {
  transition: padding-left 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-collapse-out .page-wrapper .main-header {
    transition: none;
  }
}

/* Sidebar Static With Footer */
.sidebar-static .sidebar.sidebar-with-footer .slimScrollDiv,
.sidebar-static-offcanvas .sidebar.sidebar-with-footer .slimScrollDiv {
  height: 100%;
}

@media (min-width: 768px) {
  .sidebar-static .sidebar.sidebar-with-footer .slimScrollDiv,
  .sidebar-static-offcanvas .sidebar.sidebar-with-footer .slimScrollDiv {
    height: auto !important;
  }
}

@media (min-width: 768px) {
  .sidebar-static.header-fixed .main-header,
  .sidebar-static-offcanvas.header-fixed .main-header {
    padding-left: 15.6rem;
  }
}

/* Mobile Sticky Body Overlay */
.mobile-sticky-body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  z-index: 1045;
  transition: opacity 0.3s ease-in-out 0s;
  background-color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .mobile-sticky-body-overlay {
    display: none;
  }
}

/* Sidebar Bg Dark */
.sidebar-dark .left-sidebar {
  background-color: #232a39;
}

.sidebar-dark .sidebar .sub-menu {
  background: var(--mnulogo);
}

.sidebar-dark .sidebar .sub-menu > li > a {
  color: var(--gray2);
}

.sidebar-dark .sidebar .sub-menu > li > a .nav-text {
  white-space: pre-line;
}

.sidebar-dark .sidebar .sub-menu .has-sub .nav-text {

  white-space: nowrap;
}

.sidebar-dark .sidebar .sub-menu > li.active > a,
.sidebar-dark .sidebar .sub-menu > li.active > a:focus,
.sidebar-dark .sidebar .sub-menu > li.active > a:hover,
.sidebar-dark .sidebar .sub-menu > li > a:focus,
.sidebar-dark .sidebar .sub-menu > li > a:hover {
  color: #ffffff;
}

.sidebar-dark .sidebar .nav > li.active > a {
  color: var(--mnulogo);
}

.sidebar-dark .separator {
  border-color: rgba(229, 233, 242, 0.2);
}

.sidebar-dark .sidebar-footer {
  background-color: #212a39;
}

/* Sidebar Light */
.sidebar-light .left-sidebar {
  background-color: #ffffff;
}

.sidebar-light .sidebar {
  border-right: 1px solid #e5e9f2;
}

.sidebar-light .sidebar .sub-menu {
  background-color: #ffffff;
}

.sidebar-light .sidebar .sub-menu > li > a {
  color: #8a909d;
}

.sidebar-light .sidebar .sub-menu > li.active > a,
.sidebar-light .sidebar .sub-menu > li.active > a:focus,
.sidebar-light .sidebar .sub-menu > li.active > a:hover,
.sidebar-light .sidebar .sub-menu > li > a:focus,
.sidebar-light .sidebar .sub-menu > li > a:hover {
  color: #4c515b;
}

.sidebar-light .sidebar .nav > li.active > a {
  color: #4c515b;
}

.sidebar-light .sidebar .separator {
  border-color: #e5e9f2;
}

.sidebar-light .sidebar-footer {
  background-color: #ffffff;
}

.sidebar-light .sidebar .sub-menu > li .sub-menu > li > a:after {
  border: 1px solid #8a909d;
}

/* Sidebar Footer Content*/
.sidebar-footer-content {
  padding: 0 1.9rem;
  padding-top: 1.56rem;
  padding-bottom: .75rem;
  width: 250px;
}

@media (min-width: 1200px) {
  .sidebar-footer-content {
    padding-top: 2.81rem;
    padding-bottom: 2rem;
  }
}

.sidebar-footer-content > h6 {
  color: #b7c0cd;
  font-size: 0.81rem;
  margin-top: 0.69rem;
  margin-bottom: 0.69rem;
  white-space: nowrap;
}

.sidebar-footer-content .progress {
  height: 15px;
  margin-bottom: 1.88rem;
  overflow: hidden;
  background-color: #e4eaec;
  border-radius: 0.215rem;
}

.sidebar-footer-content .progress-xs {
  height: 4px;
  border-radius: .06rem;
}

.sidebar-footer-content .progress-xs .progress-bar {
  line-height: 4px;
}

.sidebar-footer-content .progress-xs .progress-bar.progress-bar-warning {
  background: #fec400;
}

/* App Logo Fill Color */
.logo-fill-blue {
  fill: #7DBCFF;
}

.logo-fill-white {
  fill: #ffffff;
}

/* Right Sidebar Toogler Add */
.right-sidebar-toggoler-in .right-sidebar {
  right: 0;
  transition: right .3s ease-in-out;
}

.right-sidebar-toggoler-in .right-sidebar .btn-right-sidebar-toggler {
  right: 60px;
  transition: right .3s ease-in-out;
}

.right-sidebar-toggoler-in .right-sidebar .btn-right-sidebar-toggler i {
  transform: rotate(180deg);
  transition: transform .3s ease-in-out;
}

.right-sidebar-toggoler-out .right-sidebar {
  transition: right .3s ease-in-out;
}

.right-sidebar-toggoler-out .right-sidebar .btn-right-sidebar-toggler {
  transition: right .3s ease-in-out;
}

.right-sidebar-toggoler-out .right-sidebar i {
  transform: rotate(0deg);
  transition: transform .3s ease-in-out;
}

/* Right Sidebar */
.right-sidebar {
  width: 60px;
  min-height: 100vh;
  position: fixed;
  right: -60px;
  top: 0;
  z-index: 1;
  transition: right .3s ease-in-out;
  /* From Group Label */
}

@media (min-width: 1200px) {
  .right-sidebar {
    right: 0;
    transition: right .3s ease-in-out;
  }
}

.right-sidebar .btn-right-sidebar-toggler {
  position: fixed;
  top: 135px;
  right: 0;
  background-color: #ffffff;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  width: 35px;
  height: 30px;
  border: 1px solid #e5e9f2;
}

.right-sidebar .btn-right-sidebar-toggler i {
  line-height: 28px;
  margin-left: 5px;
  font-size: 1.25rem;
  display: inline-block;
}

@media (min-width: 1200px) {
  .right-sidebar .btn-right-sidebar-toggler {
    display: none;
  }
}

.right-sidebar .form-group label {
  line-height: 1.3;
}

/* Nav Right Sidebar */
.nav-right-sidebar {
  flex-direction: column;
  position: relative;
}

.nav-right-sidebar .nav-item {
  margin: auto;
  margin-bottom: 0.75rem;
}

.nav-right-sidebar .nav-link {
  font-size: 1.5rem;
}

.nav-right-sidebar .nav-link:focus {
  background-color: rgba(138, 144, 157, 0.1);
}

/* Nav Container */
.right-nav-container {
  position: relative;
  z-index: 100;
  background-color: #ffffff;
  min-height: 100vh;
  border-left: 1px solid #e5e9f2;
}

.right-nav-container .nav-right-sidebar {
  padding-top: 120px;
}

/* Right Sidebar Tab Content */
.right-sidebar-tab {
  position: fixed;
  top: 76px;
  right: -375px;
  width: 315px;
  min-height: 100%;
  background-color: #ffffff;
  border-left: 1px solid #e5e9f2;
}

.right-sidebar-tab .tab-content {
  position: relative;
  z-index: 10;
}


/* Right Sidebar Content Out */
@media (min-width: 1200px) {
  .right-sidebar-out .content-wrapper {
    margin-right: 60px;
    transition: margin-right .3s ease-in-out;
  }
}

.right-sidebar-out .right-sidebar-tab {
  right: -315px;
  transition: right .3s ease-in-out;
}

/* Right Sidebar Content IN */
@media (min-width: 1200px) {
  .right-sidebar-in .content-wrapper {
    margin-right: 375px;
    transition: margin-right .3s ease-in-out;
  }
}

.right-sidebar-in .right-sidebar-tab {
  right: 60px;
  transition: right .3s ease-in-out;
}

/* Nav Icon Small */
.icon-sm {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  padding: 0;
  text-align: center;
}

/* Card Right Sidebar */
.card-right-sidebar {
  border: none;
}

.card-right-sidebar .card-header {
  background-color: transparent;
  padding: 1rem;
  padding-top: 1.5rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
  color: #1b223c;
}

.card-right-sidebar .card-header .close {
  width: 30px;
  height: 30px;
  line-height: 1;
  border-radius: 50%;
  margin-top: -5px;
}

.card-right-sidebar .card-header .close:hover {
  background-color: rgba(138, 144, 157, 0.1);
}

.card-right-sidebar .card-header .card-title {
  margin-bottom: 0;
  font-size: 0.94rem;
}

/* Dark Version  */
.right-sidebar-dark .right-nav-container {
  background-color: #212a39;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* Right Sidebar 2 */
.right-sidebar-container-2 {
  right: 0;
  top: 0;
  width: 315px !important;
  display: block;
  z-index: 555555;
  position: fixed;
  background: #212a39;
  border-radius: 0;
  height: 100%;
  transform: translateX(100%);
  transition: all 0.3s ease;
  /* Theme Button */
  /* Reset Button */
  /* Theme Button Active */
  /* Slelect box */
  /* Theme Subtitle */
}

.right-sidebar-container-2 .btn-close-right-sidebar-2 {
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  margin-left: -40px;
  min-width: 40px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  font-size: 1.25rem;
  color: #ffffff;
}

.right-sidebar-container-2 h2 {
  font-size: 1.25rem;
  font-weight: 200;
  color: #ffffff;
}

.right-sidebar-container-2 .right-sidebar-2-header {
  padding: 18.5px 30px;
  border-radius: 0 0 !important;
  display: block;
  color: #1b223c;
  position: relative;
  background-color: #4c84ff;
}

.right-sidebar-container-2 .right-sidebar-2-header p {
  font-size: .75rem;
  color: #ffffff;
}

.right-sidebar-container-2 .btn-right-sidebar-2 {
  color: #8a909d;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 200;
  border: solid 1px #8a909d;
  border-radius: 4px !important;
  padding: 4px 10px;
  width: 48%;
  text-align: center;
  margin-right: 10px;
  text-decoration: none;
  line-height: 21px;
}

.right-sidebar-container-2 .btn-right-sidebar-2:last-child {
  margin-right: 0;
}

.right-sidebar-container-2 .btn-reset {
  background-color: #fec400;
  border: 0;
  color: #1b223c;
  width: auto;
  cursor: pointer;
}

.right-sidebar-container-2 .btn-right-sidebar-2.btn-right-sidebar-2-active {
  background-color: #8a909d;
  color: #ffffff;
  text-decoration: none;
}

.right-sidebar-container-2 .right-sidebar-2-select {
  width: 100%;
  height: 31px;
  border-radius: 4px;
  padding-left: 10px;
  padding-right: 10px;
}

.right-sidebar-container-2 .right-sidebar-2-subtitle {
  color: #a6aab4;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
  margin-top: 10px;
}

/* Theme Option Visibile */
.right-sidebar-2-visible {
  transform: translateX(0);
}

/* Style Swticher Body */
.right-sidebar-2-body {
  padding-top: 27px;
  padding-bottom: 25px;
  padding-right: 30px;
  padding-left: 30px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  height: calc(100vh - 100px);
}

.right-sidebar-2-body .no-col-space {
  margin-bottom: 32px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  align-items: center;
}

.right-sidebar-2-body hr {
  margin: 11px 0;
  border-color: #454545;
}

/* Simplebar */
.simplebar-scrollbar::before {
  background-color: rgba(153, 153, 153, 0.8);
  width: 5px;
  left: 6px;
  right: 6px;
}
