html,
body {
  background: #ecedf0;
  width: 100%;
}

html {
  font-size: 10px;
  overflow-x: hidden !important;
  overflow-y: scroll !important;
}

body {
  color: #777;
  font-family: "Signika", sans-serif;
  line-height: 22px;
  margin: 0;
  font-size: 14px;
}

a {
  color: #ccc;
}

a:hover,
a:focus {
  color: #d9d9d9;
}

a:active {
  color: #bfbfbf;
}

/* Layout Base - Main Wrapper */
.body {
  min-height: 100vh;
  width: 100%;
}

/* Layout Base - Header */
.header {
  height: 60px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/* Header Logo And Quick Menu */
.header .logo-env {
  float: left;
  height: 59px;
  width: 300px;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  min-width: 200px !important;
  background: linear-gradient(to right, #063944 0%, #313131 100%);
}

html.sidebar-light:not(.dark) .header .logo-env {
  #background: linear-gradient(to right, rgb(130, 225, 234) 0%, #fff 100%);
  background: linear-gradient(
    to right,
    var(--theme-primary) 0%,
    var(--theme-primary) 100%
  );
}

/* Layout Base - Shortcut Menu */
.header .menu-icon-grid {
  width: 220px;
  padding: 0 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header .menu-icon-grid > a {
  display: inline-flex;
  width: 96px;
  flex-direction: column;
  align-items: center;
  padding: 12px 12px;
  color: #746c6c;
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
}

html.dark .header .menu-icon-grid > a {
  color: #746c6c;
}

.header .menu-icon-grid > a i {
  font-size: 25px;
  margin-bottom: 4px;
}

.header .menu-icon-grid > a:hover {
  background: var(--theme-primary);
  color: #fff;
}

html.dark .header .menu-icon-grid > a:hover {
  color: #fff;
  background: #ff685c;
}

/* Layout Base - Inner Wrapper */
.inner-wrapper {
  display: table;
  min-height: 100vh;
  padding-top: 60px;
  table-layout: fixed;
  overflow: hidden;
  width: 100%;
}

/* Layout Base - Content Body */
.content-body {
  display: table-cell;
  padding: 18px;
  position: relative;
  vertical-align: top;
}

html.fixed .content-body {
  -webkit-transition: margin-left 0.25s ease-in-out;
  -moz-transition: margin-left 0.25s ease-in-out;
  -o-transition: margin-left 0.25s ease-in-out;
  transition: margin-left 0.25s ease-in-out;
}

.content-body > .row + .row {
  padding-top: 10px;
}

/* Layout Base - Page Header */
.page-header {
  background: #313131;
  border-bottom: none;
  box-shadow: 1px 2px 4px 5px #cccccc;
  height: 50px;
  margin: -18px -18px 18px -18px;
  padding: 0;
  -webkit-transition: left 0.25s ease-in-out;
  -moz-transition: left 0.25s ease-in-out;
  -o-transition: left 0.25s ease-in-out;
  transition: left 0.25s ease-in-out;
}

/* Layout Base - Sidebar Left */
.sidebar-left {
  color: #777;
  display: table-cell;
  position: relative;
  vertical-align: top;
  width: 300px;
  z-index: 1010;
  -webkit-transition: width 0.25s ease-in-out;
  -moz-transition: width 0.25s ease-in-out;
  -o-transition: width 0.25s ease-in-out;
  transition: width 0.25s ease-in-out;
}

.sidebar-left .nav-main a span {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/* Layout Base - Sidebar Left Opened ( Larger than mobile ) */
@media only screen and (min-width: 768px) {
  html.sidebar-left-collapsed .sidebar-left {
    width: 73px;
  }
}
/* Layout Base - Sidebar Right */
.sidebar-right {
  background: #171717;
  bottom: 0;
  margin-right: -300px;
  min-height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
}

/* Layout Base - Sidebar Right Opened ( Larger than mobile ) */
@media only screen and (min-width: 768px) {
  html.sidebar-right-opened .header {
    margin-left: -300px;
    margin-right: 300px;
  }

  html.sidebar-right-opened .inner-wrapper {
    margin-left: -300px;
  }

  html.sidebar-right-opened .sidebar-right {
    margin-right: 0;
  }

  html.sidebar-right-opened.has-top-menu .inner-wrapper {
    margin-left: 0;
    padding-right: 300px;
  }
}
/* Layout Base - Sidebar Right Opened - Has Top Horizontal Menu ( Ipad ) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html.sidebar-right-opened.has-top-menu .content-body {
    right: 300px;
  }
}
/* Layout Base - Flexbox supported */
@media only screen and (min-width: 768px) {
  html.flexbox .inner-wrapper,
  html.flexboxlegacy .inner-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }

  html.flexbox .sidebar-left,
  html.flexbox .content-body,
  html.flexboxlegacy .sidebar-left,
  html.flexboxlegacy .content-body {
    display: block;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    flex-shrink: 0;
    -ms-flex-negative: 0;
  }

  html.flexbox .content-body,
  html.flexboxlegacy .content-body {
    -webkit-box-flex: 2;
    -moz-box-flex: 2;
    box-flex: 2;
    -webkit-flex: 2;
    -moz-flex: 2;
    -ms-flex: 2;
    flex: 2;
    min-width: 1px;
  }
}
/* Layout Fixed */
@media only screen and (min-width: 768px) {
  /* Layout Fixed - Reseting Styles */
  html.fixed .inner-wrapper,
  html.fixed .sidebar-left,
  html.fixed .content-body {
    display: block;
  }

  /* Layout Fixed - Header */
  html.fixed .header {
    position: fixed;
    z-index: 1020;
  }

  /* Layout Fixed - Inner Wrapper */
  html.fixed .inner-wrapper {
    padding-top: 110px;
  }

  /* Layout Fixed - Content Body */
  html.fixed .content-body {
    margin-left: 300px;
  }

  html.fixed .content-body.has-toolbar {
    padding-top: 92px;
  }

  html.fixed.has-top-menu .content-body {
    margin-left: 0;
  }

  /* Layout Fixed - Page header */
  html.fixed .page-header {
    left: 300px;
    margin: 0;
    position: fixed;
    right: 0;
    top: 60px;
  }

  html.fixed.has-top-menu .page-header {
    left: 0;
  }

  /* Layout Fixed - Sidebar Left */
  html.fixed .sidebar-left {
    bottom: 0;
    left: 0;
    padding-bottom: 50px;
    position: fixed;
    top: 60px;
  }

  html.fixed .sidebar-left .nano-content {
    padding-bottom: 50px;
  }

  /* Layout Fixed - Sidebar Left Collapsed */
  html.fixed.sidebar-left-collapsed .page-header {
    left: 73px;
  }

  html.fixed.sidebar-left-collapsed .content-body {
    margin-left: 73px;
  }

  /* Layout Fixed - Sidebar Right Opened */
  html.fixed.sidebar-right-opened .page-header {
    left: 0;
    margin-right: 300px;
  }

  html.fixed.sidebar-right-opened .sidebar-left {
    left: -300px;
  }

  /* Layout Fixed - Sidebar Left Collapsed & Sidebar Right Opened */
  html.fixed.sidebar-left-collapsed.sidebar-right-opened .page-header {
    left: -300px;
  }
}

@media only screen and (max-width: 767px) {
  html,
  body {
    background: #ecedf0;
  }

  html.mobile-device .sidebar-left,
  html.mobile-device .sidebar-right {
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  body {
    min-height: 100vh;
  }

  .inner-wrapper,
  .sidebar-left,
  .content-body {
    display: block;
  }

  .body {
    min-height: 0;
    overflow: visible;
  }

  .header {
    background: none;
    border: none;
    height: auto;
    position: static;
  }

  .header .logo-env {
    position: fixed;
    width: 100%;
    height: 60px;
  }

  .header .header-right {
    background: #fff;
    float: none !important;
    height: 60px;
    margin-top: 60px;
    width: 100%;
    display: block;
  }

  .inner-wrapper {
    min-height: 0;
    padding-top: 0;
  }

  .content-body {
    padding: 0 15px 15px;
  }

  .page-header {
    margin: 0 -15px 20px;
  }

  .sidebar-left {
    bottom: 0;
    left: -100%;
    min-height: 0;
    min-width: 100%;
    min-width: 100vw;
    padding-top: 60px;
    padding-bottom: 50px;
    position: fixed;
    overflow: hidden;
    top: 0;
    z-index: 98 !important;
  }

  .sidebar-right {
    bottom: 0;
    left: auto;
    right: -100%;
    min-height: 0;
    margin-right: 0;
    min-width: 100%;
    min-width: 100vw;
    top: 0;
    z-index: 100;
  }

  html.csstransforms .sidebar-left,
  html.csstransforms .sidebar-right {
    /* performs better but native android browser
		has problems with translate and percentage
		@include transition-property(transform);
		*/
    -webkit-transition-property: margin;
    -moz-transition-property: margin;
    transition-property: margin;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    transition-delay: 0;
  }

  html.csstransforms .sidebar-left {
    /* performs better but native android browser
		has problems with translate and percentage
		@include transform( translateX(0) );
		*/
    margin-left: -25px;
  }

  html.csstransforms .sidebar-right {
    /* performs better but native android browser
		has problems with translate and percentage
		@include transform( translateX(0) );
		*/
    margin-right: -25px;
  }

  /* If desktop is seeing mobile res, fix scrollbars */
  html.no-mobile-device body {
    min-height: 0;
  }

  html.no-mobile-device .body {
    min-height: 100vh;
    overflow: hidden;
  }

  html.no-mobile-device .inner-wrapper {
    overflow-y: auto;
  }

  html.no-mobile-device.sidebar-left-opened,
  html.no-mobile-device.sidebar-left-opened body,
  html.no-mobile-device.sidebar-right-opened,
  html.no-mobile-device.sidebar-right-opened body {
    overflow: hidden;
  }

  /* Layout Mobile - Sidebar Left Opened */
  html.sidebar-left-opened.no-csstransforms .sidebar-left {
    left: 0;
  }

  html.sidebar-left-opened.csstransforms .sidebar-left {
    /* performs better but native android browser
		has problems with translate and percentage
		@include transform( translateX(100%) );
		*/
    margin-left: 100%;
  }

  /* Layout Mobile - Sidebar Right Opened */
  html.sidebar-right-opened.no-csstransforms .sidebar-right {
    right: 0;
  }

  html.sidebar-right-opened.csstransforms .sidebar-right {
    /* performs better but native android browser
		has problems with translate and percentage
		@include transform( translateX(-100%) );
		*/
    margin-right: 100%;
  }

  /* Layout Mobile - Sidebar Left Collapsed & Sidebar Right Opened */
  html.sidebar-left-collapsed.sidebar-right-opened .sidebar-left {
    margin-left: -300px;
  }
}
/* iOS10 Content Width Fix */
@media (min-width: 768px) {
  html.mobile-device.flexbox .content-body {
    width: calc(100vw - 230px) !important;
  }
}
/* Content With Menu - Boxed Layout Fixing Spacement on Bottom */
@media only screen and (min-width: 1200px) {
  html.boxed .content-with-menu {
    margin-bottom: -40px;
  }
}
/* Content With Menu - Container */
@media only screen and (min-width: 768px) {
  .content-with-menu-container {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
}
/* Content With Menu - Menu Faux Column for Scroll and Boxed Layouts */
@media only screen and (min-width: 768px) {
  html.scroll .content-with-menu:before,
  html.boxed .content-with-menu:before {
    bottom: -47px;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    top: 54px;
    width: 300px;
  }

  html.scroll .content-with-menu:after,
  html.boxed .content-with-menu:after {
    bottom: -46px;
    content: "";
    display: block;
    left: -1px;
    position: absolute;
    top: 54px;
    width: 1px;
    z-index: 3;
  }

  html.boxed .content-with-menu:before {
    bottom: 0;
  }

  html.boxed .content-with-menu:after {
    bottom: 2px;
  }
}

.content-with-menu {
  margin: -20px -15px 0;
}

/* Content With Menu - Responsive */
@media only screen and (max-width: 767px) {
  .content-with-menu {
    clear: both;
  }

  .inner-body {
    padding: 40px 15px 0;
  }
}
/* Content With Menu - Menu and Body */
@media only screen and (min-width: 768px) {
  .content-with-menu {
    border-top: 110px solid transparent;
    margin: -150px -40px -53px -40px;
    min-height: 100vh;
  }

  .inner-menu {
    display: table-cell;
    vertical-align: top;
  }

  .inner-body {
    display: table-cell;
    vertical-align: top;
    padding: 40px;
  }

  .inner-toolbar {
    height: 52px;
    overflow: hidden;
  }

  .content-with-menu-has-toolbar .inner-menu-toggle {
    border-radius: 0;
  }

  .content-with-menu-has-toolbar .inner-toolbar {
    padding-left: 140px;
  }
}
/* Content With Menu - Flexbox supported */
@media only screen and (min-width: 768px) {
  html.flexbox .content-with-menu-container,
  html.flexboxlegacy .content-with-menu-container {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }

  html.flexbox .inner-menu,
  html.flexbox .inner-body,
  html.flexboxlegacy .inner-menu,
  html.flexboxlegacy .inner-body {
    display: block;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    flex-shrink: 0;
    -ms-flex-negative: 0;
  }

  html.flexbox .inner-body,
  html.flexboxlegacy .inner-body {
    -webkit-box-flex: 2;
    -moz-box-flex: 2;
    box-flex: 2;
    -webkit-flex: 2;
    -moz-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }
}
/* Content With Menu + Layout Fixed */
@media only screen and (min-width: 768px) {
  html.fixed .content-with-menu-container,
  html.fixed .inner-menu,
  html.fixed .inner-body {
    display: block;
  }

  html.fixed .content-with-menu-container {
    position: relative;
  }

  html.fixed .inner-menu-toggle {
    position: absolute;
    top: 114px;
    border-radius: 0 0 5px 0;
    width: 140px;
    z-index: 1002;
  }

  html.fixed .inner-menu {
    bottom: 0;
    display: block;
    left: 300px;
    position: fixed;
    margin: 0;
    top: 114px;
    width: 300px;
    padding: 35px;
    z-index: 1002;
  }

  html.fixed .inner-menu-content {
    display: block;
  }

  html.fixed .inner-body {
    margin-left: 300px;
    border-top: 113px solid transparent;
    margin-top: -110px;
    min-height: 100vh;
    position: relative;
  }

  html.fixed .content-with-menu-has-toolbar .inner-body {
    border-top-width: 165px;
  }
}
/* Content With Menu + Layout Scroll & Boxed */
@media only screen and (min-width: 768px) {
  html.scroll .inner-menu,
  html.scroll .inner-body,
  html.boxed .inner-menu,
  html.boxed .inner-body {
    display: block;
  }

  html.scroll .content-with-menu-container,
  html.boxed .content-with-menu-container {
    position: relative;
  }

  html.scroll .inner-menu-toggle,
  html.boxed .inner-menu-toggle {
    position: absolute;
    top: 0;
    border-radius: 0 0 5px 0;
    width: 140px;
    z-index: 3;
  }

  html.scroll .inner-menu,
  html.boxed .inner-menu {
    display: block;
    position: relative;
    margin: 0;
    width: 300px;
    padding: 35px;
  }

  html.scroll .inner-menu-content,
  html.boxed .inner-menu-content {
    display: block;
  }

  html.scroll .inner-body,
  html.boxed .inner-body {
    margin-left: 0;
    min-height: 100vh;
    position: relative;
  }

  html.scroll.flexbox .content-with-menu-container,
  html.scroll.flexboxlegacy .content-with-menu-container,
  html.boxed.flexbox .content-with-menu-container,
  html.boxed.flexboxlegacy .content-with-menu-container {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
/* Content With Menu + Layout Fixed + Sidebar Left Collapsed */
@media only screen and (min-width: 768px) {
  html.fixed.sidebar-left-collapsed .inner-menu,
  html.fixed.sidebar-left-collapsed .inner-menu-toggle,
  html.fixed.sidebar-left-collapsed .inner-toolbar {
    left: 73px;
  }

  html.fixed.sidebar-left-collapsed.inner-menu-opened .inner-menu-toggle,
  html.fixed.sidebar-left-collapsed.inner-menu-opened .inner-toolbar {
    left: 373px;
  }
}
/* Content With Menu + Layout Fixed + Sidebar Right Opened */
@media only screen and (min-width: 768px) {
  html.fixed.sidebar-right-opened .inner-menu,
  html.fixed.sidebar-right-opened .inner-menu-toggle,
  html.fixed.sidebar-right-opened .inner-toolbar {
    left: 0px;
  }

  html.fixed.sidebar-right-opened .inner-toolbar {
    margin-right: 300px;
  }

  html.fixed.sidebar-right-opened.inner-menu-opened .inner-menu-toggle,
  html.fixed.sidebar-right-opened.inner-menu-opened .inner-toolbar {
    left: -300px;
  }
}
/* Content With Menu + Layout Fixed + Sidebar Left Collapsed + Sidebar Right Opened */
@media only screen and (min-width: 768px) {
  html.fixed.sidebar-left-collapsed.sidebar-right-opened .inner-menu,
  html.fixed.sidebar-left-collapsed.sidebar-right-opened .inner-menu-toggle,
  html.fixed.sidebar-left-collapsed.sidebar-right-opened .inner-toolbar {
    left: -227px;
  }

  html.fixed.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened
    .inner-menu-toggle,
  html.fixed.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened
    .inner-toolbar {
    left: -527px;
  }
}
/* Resolution gt 767 and lt 1366 - Hide Inner Menu */
@media only screen and (min-width: 768px) and (max-width: 1365px) {
  html.fixed .inner-menu,
  html.scroll .inner-menu,
  html.boxed .inner-menu {
    display: none;
  }

  html.fixed .inner-menu-toggle,
  html.scroll .inner-menu-toggle,
  html.boxed .inner-menu-toggle {
    display: block;
  }

  html.fixed .inner-body,
  html.scroll .inner-body,
  html.boxed .inner-body {
    margin-left: 0;
  }

  html.fixed .content-with-menu-has-toolbar .inner-toolbar,
  html.scroll .content-with-menu-has-toolbar .inner-toolbar,
  html.boxed .content-with-menu-has-toolbar .inner-toolbar {
    padding-left: 140px;
  }

  html.fixed.inner-menu-opened .inner-menu,
  html.scroll.inner-menu-opened .inner-menu,
  html.boxed.inner-menu-opened .inner-menu {
    display: block;
  }

  html.fixed.inner-menu-opened .inner-menu-toggle,
  html.scroll.inner-menu-opened .inner-menu-toggle,
  html.boxed.inner-menu-opened .inner-menu-toggle {
    display: none;
  }

  html.fixed.inner-menu-opened .inner-body,
  html.scroll.inner-menu-opened .inner-body,
  html.boxed.inner-menu-opened .inner-body {
    margin-right: -300px;
  }

  html.fixed.inner-menu-opened .content-with-menu-has-toolbar .inner-toolbar,
  html.scroll.inner-menu-opened .content-with-menu-has-toolbar .inner-toolbar,
  html.boxed.inner-menu-opened .content-with-menu-has-toolbar .inner-toolbar {
    padding-left: 0;
  }

  html.fixed.inner-menu-opened .inner-body {
    margin-left: 300px;
  }

  html.scroll .content-with-menu:before,
  html.boxed .content-with-menu:before {
    display: none;
  }

  html.scroll.inner-menu-opened:before,
  html.boxed.inner-menu-opened:before {
    display: block;
  }
}
/* Resolution gt 1366 - Show Inner Menu */
@media only screen and (min-width: 1366px) {
  html.fixed .inner-menu,
  html.scroll .inner-menu,
  html.boxed .inner-menu {
    display: block;
  }

  html.fixed .inner-menu-toggle,
  html.fixed .inner-menu-toggle-inside,
  html.scroll .inner-menu-toggle,
  html.scroll .inner-menu-toggle-inside,
  html.boxed .inner-menu-toggle,
  html.boxed .inner-menu-toggle-inside {
    display: none;
  }

  html.fixed .inner-body,
  html.scroll .inner-body,
  html.boxed .inner-body {
    margin-right: 0;
  }

  html.fixed .content-with-menu-has-toolbar .inner-toolbar,
  html.scroll .content-with-menu-has-toolbar .inner-toolbar,
  html.boxed .content-with-menu-has-toolbar .inner-toolbar {
    padding-left: 0;
  }

  html.fixed.inner-menu-opened .inner-body {
    margin-left: 300px;
  }

  html.fixed .content-with-menu .inner-toolbar,
  html.fixed.inner-menu-opened .content-with-menu .inner-toolbar {
    left: 600px;
  }

  html.fixed .inner-menu-toggle,
  html.fixed .inner-menu,
  html.fixed.inner-menu-opened .inner-menu-toggle,
  html.fixed.inner-menu-opened .inner-menu {
    left: 300px;
  }

  html.fixed.sidebar-right-opened .content-with-menu .inner-toolbar {
    left: 300px;
  }

  html.fixed.sidebar-right-opened .inner-menu,
  html.fixed.sidebar-right-opened .inner-menu-toggle {
    left: 0px;
  }

  html.fixed.sidebar-left-collapsed .content-with-menu .inner-toolbar,
  html.fixed.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened
    .content-with-menu
    .inner-toolbar,
  html.fixed.sidebar-left-collapsed.inner-menu-opened
    .content-with-menu
    .inner-toolbar {
    left: 373px;
  }

  html.fixed.sidebar-left-collapsed .inner-menu-toggle,
  html.fixed.sidebar-left-collapsed .inner-menu,
  html.fixed.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened
    .inner-menu-toggle,
  html.fixed.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened
    .inner-menu,
  html.fixed.sidebar-left-collapsed.inner-menu-opened .inner-menu-toggle,
  html.fixed.sidebar-left-collapsed.inner-menu-opened .inner-menu {
    left: 73px;
  }

  html.fixed.sidebar-left-collapsed.sidebar-right-opened
    .content-with-menu
    .inner-toolbar {
    left: 73px;
  }

  html.fixed.sidebar-left-collapsed.sidebar-right-opened .inner-menu,
  html.fixed.sidebar-left-collapsed.sidebar-right-opened .inner-menu-toggle {
    left: -227px;
  }
}
/* Fix IE Scrollbar Overlaying content */
@-ms-viewport {
  width: auto !important;
}
/* ------------------------------------------------------------------------------------------------------------------------------------------
BOOTSTRAP EXTEND
------------------------------------------------------------------------------------------------------------------------------------------ */
/* Add New Grid Tier FOR NON BOXED LAYOUT */
html.scroll,
html.fixed {
  /* UNDO original bootrap LG helper classes*/
  /* Helper classes for XL */
}

@media (min-width: 1600px) {
  html.scroll .container,
  html.fixed .container {
    width: 1570px;
  }
}

html.scroll .col-xl-1,
html.scroll .col-xl-2,
html.scroll .col-xl-3,
html.scroll .col-xl-4,
html.scroll .col-xl-5,
html.scroll .col-xl-6,
html.scroll .col-xl-7,
html.scroll .col-xl-8,
html.scroll .col-xl-9,
html.scroll .col-xl-10,
html.scroll .col-xl-11,
html.scroll .col-xl-12,
html.fixed .col-xl-1,
html.fixed .col-xl-2,
html.fixed .col-xl-3,
html.fixed .col-xl-4,
html.fixed .col-xl-5,
html.fixed .col-xl-6,
html.fixed .col-xl-7,
html.fixed .col-xl-8,
html.fixed .col-xl-9,
html.fixed .col-xl-10,
html.fixed .col-xl-11,
html.fixed .col-xl-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 1600px) {
  html.scroll .col-xl-1,
  html.scroll .col-xl-2,
  html.scroll .col-xl-3,
  html.scroll .col-xl-4,
  html.scroll .col-xl-5,
  html.scroll .col-xl-6,
  html.scroll .col-xl-7,
  html.scroll .col-xl-8,
  html.scroll .col-xl-9,
  html.scroll .col-xl-10,
  html.scroll .col-xl-11,
  html.scroll .col-xl-12,
  html.fixed .col-xl-1,
  html.fixed .col-xl-2,
  html.fixed .col-xl-3,
  html.fixed .col-xl-4,
  html.fixed .col-xl-5,
  html.fixed .col-xl-6,
  html.fixed .col-xl-7,
  html.fixed .col-xl-8,
  html.fixed .col-xl-9,
  html.fixed .col-xl-10,
  html.fixed .col-xl-11,
  html.fixed .col-xl-12 {
    float: left;
  }

  html.scroll .col-xl-12,
  html.fixed .col-xl-12 {
    width: 100%;
  }

  html.scroll .col-xl-11,
  html.fixed .col-xl-11 {
    width: 91.66666667%;
  }

  html.scroll .col-xl-10,
  html.fixed .col-xl-10 {
    width: 83.33333333%;
  }

  html.scroll .col-xl-9,
  html.fixed .col-xl-9 {
    width: 75%;
  }

  html.scroll .col-xl-8,
  html.fixed .col-xl-8 {
    width: 66.66666667%;
  }

  html.scroll .col-xl-7,
  html.fixed .col-xl-7 {
    width: 58.33333333%;
  }

  html.scroll .col-xl-6,
  html.fixed .col-xl-6 {
    width: 50%;
  }

  html.scroll .col-xl-5,
  html.fixed .col-xl-5 {
    width: 41.66666667%;
  }

  html.scroll .col-xl-4,
  html.fixed .col-xl-4 {
    width: 33.33333333%;
  }

  html.scroll .col-xl-3,
  html.fixed .col-xl-3 {
    width: 25%;
  }

  html.scroll .col-xl-2,
  html.fixed .col-xl-2 {
    width: 16.66666667%;
  }

  html.scroll .col-xl-1,
  html.fixed .col-xl-1 {
    width: 8.33333333%;
  }

  html.scroll .col-xl-pull-12,
  html.fixed .col-xl-pull-12 {
    right: 100%;
  }

  html.scroll .col-xl-pull-11,
  html.fixed .col-xl-pull-11 {
    right: 91.66666667%;
  }

  html.scroll .col-xl-pull-10,
  html.fixed .col-xl-pull-10 {
    right: 83.33333333%;
  }

  html.scroll .col-xl-pull-9,
  html.fixed .col-xl-pull-9 {
    right: 75%;
  }

  html.scroll .col-xl-pull-8,
  html.fixed .col-xl-pull-8 {
    right: 66.66666667%;
  }

  html.scroll .col-xl-pull-7,
  html.fixed .col-xl-pull-7 {
    right: 58.33333333%;
  }

  html.scroll .col-xl-pull-6,
  html.fixed .col-xl-pull-6 {
    right: 50%;
  }

  html.scroll .col-xl-pull-5,
  html.fixed .col-xl-pull-5 {
    right: 41.66666667%;
  }

  html.scroll .col-xl-pull-4,
  html.fixed .col-xl-pull-4 {
    right: 33.33333333%;
  }

  html.scroll .col-xl-pull-3,
  html.fixed .col-xl-pull-3 {
    right: 25%;
  }

  html.scroll .col-xl-pull-2,
  html.fixed .col-xl-pull-2 {
    right: 16.66666667%;
  }

  html.scroll .col-xl-pull-1,
  html.fixed .col-xl-pull-1 {
    right: 8.33333333%;
  }

  html.scroll .col-xl-pull-0,
  html.fixed .col-xl-pull-0 {
    right: auto;
  }

  html.scroll .col-xl-push-12,
  html.fixed .col-xl-push-12 {
    left: 100%;
  }

  html.scroll .col-xl-push-11,
  html.fixed .col-xl-push-11 {
    left: 91.66666667%;
  }

  html.scroll .col-xl-push-10,
  html.fixed .col-xl-push-10 {
    left: 83.33333333%;
  }

  html.scroll .col-xl-push-9,
  html.fixed .col-xl-push-9 {
    left: 75%;
  }

  html.scroll .col-xl-push-8,
  html.fixed .col-xl-push-8 {
    left: 66.66666667%;
  }

  html.scroll .col-xl-push-7,
  html.fixed .col-xl-push-7 {
    left: 58.33333333%;
  }

  html.scroll .col-xl-push-6,
  html.fixed .col-xl-push-6 {
    left: 50%;
  }

  html.scroll .col-xl-push-5,
  html.fixed .col-xl-push-5 {
    left: 41.66666667%;
  }

  html.scroll .col-xl-push-4,
  html.fixed .col-xl-push-4 {
    left: 33.33333333%;
  }

  html.scroll .col-xl-push-3,
  html.fixed .col-xl-push-3 {
    left: 25%;
  }

  html.scroll .col-xl-push-2,
  html.fixed .col-xl-push-2 {
    left: 16.66666667%;
  }

  html.scroll .col-xl-push-1,
  html.fixed .col-xl-push-1 {
    left: 8.33333333%;
  }

  html.scroll .col-xl-push-0,
  html.fixed .col-xl-push-0 {
    left: auto;
  }

  html.scroll .col-xl-offset-12,
  html.fixed .col-xl-offset-12 {
    margin-left: 100%;
  }

  html.scroll .col-xl-offset-11,
  html.fixed .col-xl-offset-11 {
    margin-left: 91.66666667%;
  }

  html.scroll .col-xl-offset-10,
  html.fixed .col-xl-offset-10 {
    margin-left: 83.33333333%;
  }

  html.scroll .col-xl-offset-9,
  html.fixed .col-xl-offset-9 {
    margin-left: 75%;
  }

  html.scroll .col-xl-offset-8,
  html.fixed .col-xl-offset-8 {
    margin-left: 66.66666667%;
  }

  html.scroll .col-xl-offset-7,
  html.fixed .col-xl-offset-7 {
    margin-left: 58.33333333%;
  }

  html.scroll .col-xl-offset-6,
  html.fixed .col-xl-offset-6 {
    margin-left: 50%;
  }

  html.scroll .col-xl-offset-5,
  html.fixed .col-xl-offset-5 {
    margin-left: 41.66666667%;
  }

  html.scroll .col-xl-offset-4,
  html.fixed .col-xl-offset-4 {
    margin-left: 33.33333333%;
  }

  html.scroll .col-xl-offset-3,
  html.fixed .col-xl-offset-3 {
    margin-left: 25%;
  }

  html.scroll .col-xl-offset-2,
  html.fixed .col-xl-offset-2 {
    margin-left: 16.66666667%;
  }

  html.scroll .col-xl-offset-1,
  html.fixed .col-xl-offset-1 {
    margin-left: 8.33333333%;
  }

  html.scroll .col-xl-offset-0,
  html.fixed .col-xl-offset-0 {
    margin-left: 0;
  }
}

html.scroll .visible-xl,
html.fixed .visible-xl {
  display: none !important;
}

html.scroll .visible-xl-block,
html.scroll .visible-xl-inline,
html.scroll .visible-xl-inline-block,
html.fixed .visible-xl-block,
html.fixed .visible-xl-inline,
html.fixed .visible-xl-inline-block {
  display: none !important;
}

@media (min-width: 1200px) and (max-width: 1599px) {
  html.scroll .visible-lg,
  html.fixed .visible-lg {
    display: block !important;
  }

  html.scroll table.visible-lg,
  html.fixed table.visible-lg {
    display: table;
  }

  html.scroll tr.visible-lg,
  html.fixed tr.visible-lg {
    display: table-row !important;
  }

  html.scroll th.visible-lg,
  html.scroll td.visible-lg,
  html.fixed th.visible-lg,
  html.fixed td.visible-lg {
    display: table-cell !important;
  }

  html.scroll .visible-lg-block,
  html.fixed .visible-lg-block {
    display: block !important;
  }

  html.scroll .visible-lg-inline,
  html.fixed .visible-lg-inline {
    display: inline !important;
  }

  html.scroll .visible-lg-inline-block,
  html.fixed .visible-lg-inline-block {
    display: inline-block !important;
  }

  html.scroll .hidden-lg,
  html.fixed .hidden-lg {
    display: none !important;
  }
}

@media (min-width: 1600px) {
  html.scroll .visible-lg-block,
  html.fixed .visible-lg-block {
    display: none !important;
  }

  html.scroll .visible-lg-inline,
  html.fixed .visible-lg-inline {
    display: none !important;
  }

  html.scroll .visible-lg-inline-block,
  html.fixed .visible-lg-inline-block {
    display: none !important;
  }
}

@media (min-width: 1600px) {
  html.scroll .visible-xl,
  html.fixed .visible-xl {
    display: block !important;
  }

  html.scroll table.visible-xl,
  html.fixed table.visible-xl {
    display: table;
  }

  html.scroll tr.visible-xl,
  html.fixed tr.visible-xl {
    display: table-row !important;
  }

  html.scroll th.visible-xl,
  html.scroll td.visible-xl,
  html.fixed th.visible-xl,
  html.fixed td.visible-xl {
    display: table-cell !important;
  }

  html.scroll .visible-xl-block,
  html.fixed .visible-xl-block {
    display: block !important;
  }

  html.scroll .visible-xl-inline,
  html.fixed .visible-xl-inline {
    display: inline !important;
  }

  html.scroll .visible-xl-inline-block,
  html.fixed .visible-xl-inline-block {
    display: inline-block !important;
  }

  html.scroll .hidden-xl,
  html.fixed .hidden-xl {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }

  .table-responsive > .table {
    margin-bottom: 0;
  }

  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }

  .table-responsive > .table-bordered {
    border: 0;
  }

  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }

  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }

  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
/* Fix img-thumbnail - IE10 and below */
.img-thumbnail {
  width: auto \9;
}

/* Header */
.header {
  background: var(--navbar-bg, #ffffff);
  border-bottom: 1px solid #e9e9e6;
  z-index: 1000;
}

.header .logo {
  display: block;
  text-align: center;
  margin-top: 8px;
}

.header .logo img {
  color: transparent;
}

.header .separator {
  background-color: #f6f6f6;
  height: 20px;
  margin: 0 16px 0;
  width: 2px;
}

.header .search {
  width: 220px;
}

.header .toggle-sidebar-left {
  border-radius: 4px;
  color: #4c4e51;
  height: 30px;
  line-height: 30px;
  position: absolute;
  right: 15px;
  text-align: center;
  top: 14px;
  width: 30px;
  border: 1px solid #e4e4e4;
}

html.dark .header .toggle-sidebar-left {
  color: #fff;
  border-color: #404142;
}

.header-right,
.header-left {
  height: 59px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-right {
  float: right;
}

.header-left {
  float: left;
}

/* Header Mobile */
@media only screen and (max-width: 767px) {
  .header .logo-env {
    background-color: #f6f6f6;
    border-bottom: 1px solid #e9e9e6;
    border-top: 3px solid #ededed;
  }

  .header .logo-env .logo {
    text-align: left;
    margin-left: 10px;
  }

  .header .search {
    display: block;
    width: 150px;
  }
  .header .separator {
    display: none;
  }
}
/* Header Dark */
html.dark .header,
html.header-dark .header {
  background: #313131;
  border-bottom-color: #404142;
}

@media only screen and (max-width: 767px) {
  html.dark .header .logo-env,
  html.header-dark .header .logo-env {
    background: #313131;
    border-bottom-color: #404142;
    border-top-color: #313131;
  }

  html.dark .header .header-right,
  html.header-dark .header .header-right {
    background: #313131;
  }
}

html.dark .header .separator,
html.header-dark .header .separator {
  background-color: #404142;
}

html.dark .header .input-search input,
html.dark .header .input-search input:focus,
html.header-dark .header .input-search input,
html.header-dark .header .input-search input:focus {
  background: #383838;
  border-color: #505254;
  color: #fff;
}

html.dark .header .input-search .input-group-btn .btn-default,
html.header-dark .header .input-search .input-group-btn .btn-default {
  background: transparent;
  color: #c3c3c3;
}

@media only screen and (min-width: 768px) {
  html.header-fixed .header {
    border-radius: 0;
    border-top-color: transparent;
    left: 0;
    position: fixed;
    right: 0;
    top: -3px;
    z-index: 2000;
    margin: 0;
  }

  html.header-fixed .inner-wrapper {
    padding-top: 0;
    margin-top: 60px;
  }
}
/* Header Nav Menu */
.header.header-nav-menu {
  /* Header Nav Main */
  /* Header Nav Main Mobile */
}

@media only screen and (min-width: 768px) {
  .header.header-nav-menu .logo {
    position: relative;
    padding: 0 20px 0 5px;
  }

  .header.header-nav-menu .logo:after {
    content: "";
    display: block;
    position: absolute;
    top: -13px;
    right: 0;
    height: 60px;
    border-right: 1px solid #e9e9e6;
  }
}

@media (min-width: 992px) {
  .header.header-nav-menu .header-nav-main {
    float: right;
    margin: 8px 0 0;
    min-height: 45px;
  }

  .header.header-nav-menu .header-nav-main nav > ul > li:first-child {
    margin-left: 10px;
  }

  .header.header-nav-menu .header-nav-main nav > ul > li > a {
    display: inline-block;
    border-radius: 4px;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    padding: 10px;
    text-transform: uppercase;
  }

  .header.header-nav-menu .header-nav-main nav > ul > li > a:focus {
    background: transparent;
    color: #ccc;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li
    > a.dropdown-toggle
    .fa-caret-down {
    display: none;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li
    > a.dropdown-toggle:after {
    border-color: #ccc transparent transparent transparent;
    border-style: solid;
    border-width: 4px;
    content: " ";
    float: right;
    margin-top: 7px;
    margin-left: 4px;
  }

  .header.header-nav-menu .header-nav-main nav > ul > li.open > a,
  .header.header-nav-menu .header-nav-main nav > ul > li:hover > a,
  .header.header-nav-menu .header-nav-main nav > ul > li.active > a {
    background: #ccc;
    color: #fff;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown
    .dropdown-menu {
    top: -10000px;
    display: block;
    opacity: 0;
    left: auto;
    border-radius: 0 4px 4px;
    border: 0;
    border-top: 5px solid #ccc;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    margin: -3px 0 0 0;
    min-width: 200px;
    padding: 5px;
    text-align: left;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown
    .dropdown-menu
    li
    a {
    border-bottom: 1px solid #f4f4f4;
    color: #777;
    font-size: 0.9em;
    font-weight: 400;
    padding: 8px 20px 8px 8px;
    position: relative;
    text-transform: none;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown
    .dropdown-menu
    li.dropdown-submenu {
    position: relative;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown
    .dropdown-menu
    li.dropdown-submenu
    > a
    .fa-caret-down {
    display: none;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown
    .dropdown-menu
    li.dropdown-submenu
    > a:after {
    border-color: transparent transparent transparent #ccc;
    border-style: solid;
    border-width: 4px 0 4px 4px;
    content: " ";
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown
    .dropdown-menu
    li.dropdown-submenu
    > .dropdown-menu {
    display: block;
    margin-top: -10px;
    margin-left: -1px;
    border-radius: 4px;
    opacity: 0;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown
    .dropdown-menu
    li.dropdown-submenu:hover
    > .dropdown-menu {
    top: 0;
    opacity: 1;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown
    .dropdown-menu
    li:last-child
    a {
    border-bottom: 0;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown.open
    li.dropdown-submenu
    > .dropdown-menu,
  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown:hover
    li.dropdown-submenu
    > .dropdown-menu {
    left: 100%;
  }

  .header.header-nav-menu .header-nav-main nav > ul > li.dropdown.open > a,
  .header.header-nav-menu .header-nav-main nav > ul > li.dropdown:hover > a {
    padding-bottom: 15px;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown.open
    > .dropdown-menu,
  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown:hover
    > .dropdown-menu {
    top: auto;
    display: block;
    opacity: 1;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown-reverse
    .dropdown-menu
    li
    a {
    padding-right: 8px;
    padding-left: 20px;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown-reverse
    .dropdown-menu
    li.dropdown-submenu
    > a:after {
    border-width: 4px 4px 4px 0;
  }

  .header.header-nav-menu .header-nav-main nav > ul > li.dropdown-mega {
    position: static;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown-mega
    > .dropdown-menu {
    border-radius: 4px;
    left: 15px;
    right: 15px;
    width: auto;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown-mega
    .dropdown-mega-content {
    padding: 20px 30px;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown-mega
    .dropdown-mega-sub-title {
    color: #333333;
    display: block;
    font-size: 1em;
    font-weight: 600;
    margin-top: 20px;
    padding-bottom: 5px;
    text-transform: uppercase;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown-mega
    .dropdown-mega-sub-title:first-child {
    margin-top: 0;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown-mega
    .dropdown-mega-sub-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown-mega
    .dropdown-mega-sub-nav
    > li
    > a {
    border: 0 none;
    border-radius: 4px;
    color: #777;
    display: block;
    font-size: 0.9em;
    font-weight: normal;
    margin: 0 0 0 -8px;
    padding: 3px 8px;
    text-shadow: none;
    text-transform: none;
    text-decoration: none;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown-mega
    .dropdown-mega-sub-nav
    > li:hover
    > a {
    background: #f4f4f4;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown-mega
    .dropdown-mega-sub-nav
    .mega-sub-nav-toggle {
    width: 20px;
    text-align: center;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown-mega
    .dropdown-mega-sub-nav
    .mega-sub-nav-toggle:before {
    content: "\f0d8";
    font-family: "Font Awesome 5 Free";
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown-mega
    .dropdown-mega-sub-nav
    .mega-sub-nav-toggle.toggled:before {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    > li.dropdown-mega
    .dropdown-mega-sub-nav
    .dropdown-mega-sub-nav {
    padding-left: 15px;
  }

  .header.header-nav-menu
    .header-nav-main.header-nav-main-square
    nav
    > ul
    > li
    > a {
    border-radius: 0;
  }

  .header.header-nav-menu
    .header-nav-main.header-nav-main-square
    nav
    > ul
    > li.dropdown
    .dropdown-menu {
    margin-top: 0;
    border-radius: 0;
  }

  .header.header-nav-menu
    .header-nav-main.header-nav-main-square
    nav
    > ul
    > li.dropdown
    .dropdown-menu
    li.dropdown-submenu
    > .dropdown-menu {
    border-radius: 0;
  }

  .header.header-nav-menu
    .header-nav-main.header-nav-main-square
    nav
    > ul
    > li.dropdown-mega
    > .dropdown-menu {
    border-radius: 0;
  }

  .header.header-nav-menu
    .header-nav-main.header-nav-main-square
    nav
    > ul
    > li.dropdown-mega
    .dropdown-mega-sub-nav
    > li
    > a {
    border-radius: 0;
  }

  .header.header-nav-menu
    .header-nav-main
    .dropdown-reverse
    a
    > .thumb-info-preview {
    transform: translate3d(20px, 0, 0);
    right: 100%;
    left: auto;
    padding-left: 0;
    margin-right: 10px;
  }

  .header.header-nav-menu
    .header-nav-main
    .dropdown-reverse
    a:hover
    > .thumb-info-preview {
    transform: translate3d(0, 0, 0);
  }

  .header.header-nav-menu .header-nav {
    float: left;
  }

  .header.header-nav-menu .header-nav.header-nav-dark-dropdown {
    margin-bottom: -9px;
  }

  .header.header-nav-menu
    .header-nav.header-nav-dark-dropdown
    nav
    > ul
    > li
    > a,
  .header.header-nav-menu
    .header-nav.header-nav-dark-dropdown
    nav
    > ul
    > li:hover
    > a {
    background: transparent;
    color: #444;
    padding: 65px 13px 24px;
    margin: 0;
  }

  .header.header-nav-menu
    .header-nav.header-nav-dark-dropdown
    nav
    > ul
    > li
    > a.dropdown-toggle:after {
    border-color: #444 transparent transparent transparent;
  }

  .header.header-nav-menu
    .header-nav.header-nav-dark-dropdown
    nav
    > ul
    > li.dropdown
    li
    a {
    border-bottom-color: #2a2a2a;
  }

  .header.header-nav-menu
    .header-nav.header-nav-dark-dropdown
    nav
    > ul
    > li.dropdown
    .dropdown-menu {
    background: #1e1e1e;
  }

  .header.header-nav-menu
    .header-nav.header-nav-dark-dropdown
    nav
    > ul
    > li.dropdown
    .dropdown-menu
    > li
    > a {
    color: #969696;
  }

  .header.header-nav-menu
    .header-nav.header-nav-dark-dropdown
    nav
    > ul
    > li.dropdown
    .dropdown-menu
    > li
    > a:hover,
  .header.header-nav-menu
    .header-nav.header-nav-dark-dropdown
    nav
    > ul
    > li.dropdown
    .dropdown-menu
    > li
    > a:focus {
    background: #282828;
  }

  .header.header-nav-menu
    .header-nav.header-nav-dark-dropdown
    nav
    > ul
    > li.dropdown.dropdown-mega
    .dropdown-mega-sub-title {
    color: #ababab;
  }

  .header.header-nav-menu
    .header-nav.header-nav-dark-dropdown
    nav
    > ul
    > li.dropdown.dropdown-mega
    .dropdown-mega-sub-nav
    > li:hover
    > a {
    background: #282828;
  }

  .header.header-nav-menu
    .header-nav.header-nav-dark-dropdown
    .header-social-icons {
    margin-top: 70px;
  }

  .header.header-nav-menu .header-nav {
    display: block !important;
  }

  .header.header-nav-menu .header-nav-main {
    display: block !important;
    height: auto !important;
  }

  .header.header-nav-menu .header-nav-bar {
    background: #f4f4f4;
    padding: 0 10px 5px;
    margin-bottom: 0;
  }

  .header.header-nav-menu .header-nav-bar .header-nav-main {
    float: left;
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .header.header-nav-menu
    .header-nav-main.header-nav-main-light
    nav
    > ul
    > li
    > a {
    color: #fff;
  }

  .header.header-nav-menu
    .header-nav-main.header-nav-main-light
    nav
    > ul
    > li
    > a.dropdown-toggle:after {
    border-color: #fff transparent transparent transparent;
  }

  .header.header-nav-menu
    .header-nav-main.header-nav-main-light
    nav
    > ul
    > li.open
    > a,
  .header.header-nav-menu
    .header-nav-main.header-nav-main-light
    nav
    > ul
    > li:hover
    > a {
    background: #fff;
  }

  .header.header-nav-menu
    .header-nav-main.header-nav-main-light
    nav
    > ul
    > li.open
    > a.dropdown-toggle:after,
  .header.header-nav-menu
    .header-nav-main.header-nav-main-light
    nav
    > ul
    > li:hover
    > a.dropdown-toggle:after {
    border-color: #ccc transparent transparent transparent;
  }

  .header.header-nav-menu
    .header-nav-main.header-nav-main-light
    nav
    > ul
    > li.open
    > .dropdown-menu,
  .header.header-nav-menu
    .header-nav-main.header-nav-main-light
    nav
    > ul
    > li:hover
    > .dropdown-menu {
    border-top-color: #fff;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.05);
  }

  .header.header-nav-menu
    .header-nav-main.header-nav-main-light
    nav
    > ul
    > li.open
    > .dropdown-menu
    .dropdown-submenu:hover
    > .dropdown-menu,
  .header.header-nav-menu
    .header-nav-main.header-nav-main-light
    nav
    > ul
    > li:hover
    > .dropdown-menu
    .dropdown-submenu:hover
    > .dropdown-menu {
    border-top-color: #fff;
  }

  .header.header-nav-menu
    .header-nav-main.header-nav-main-light
    nav
    > ul
    > li.active
    > a {
    background: #fff;
  }

  .header.header-nav-menu
    .header-nav-main.header-nav-main-light
    nav
    > ul
    > li.active
    > a.dropdown-toggle:after {
    border-color: #ccc transparent transparent transparent;
  }

  .header.header-nav-menu
    .header-nav-main.header-nav-main-light
    .dropdown-menu
    > li
    > a:hover,
  .header.header-nav-menu
    .header-nav-main.header-nav-main-light
    .dropdown-menu
    > li
    > a:focus {
    background: #f5f5f5;
  }
}

@media (min-width: 992px) {
  .header.header-nav-menu
    .header-nav-main-effect-1
    nav
    > ul
    > li.dropdown
    .dropdown-menu
    li
    a,
  .header.header-nav-menu
    .header-nav-main-effect-1
    nav
    > ul
    > li.dropdown
    .dropdown-mega-sub-nav
    li
    a {
    -webkit-transition: -webkit-transform 0.2s ease-out;
    -moz-transition: -moz-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transform: translate3d(0, -5px, 0);
  }

  .header.header-nav-menu
    .header-nav-main-effect-1
    nav
    > ul
    > li.dropdown:hover
    > .dropdown-menu
    li
    a,
  .header.header-nav-menu
    .header-nav-main-effect-1
    nav
    > ul
    > li.dropdown:hover
    .dropdown-mega-sub-nav
    li
    a {
    transform: translate3d(0, 0, 0);
  }

  .header.header-nav-menu
    .header-nav-main-effect-1
    nav
    > ul
    > li.dropdown
    .dropdown-menu {
    -webkit-transition: -webkit-transform 0.2s ease-out;
    -moz-transition: -moz-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transform: translate3d(0, -5px, 0);
  }

  .header.header-nav-menu
    .header-nav-main-effect-1
    nav
    > ul
    > li.dropdown:hover
    > .dropdown-menu {
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 992px) {
  .header.header-nav-menu
    .header-nav-main-effect-2
    nav
    > ul
    > li.dropdown
    .dropdown-menu {
    -webkit-transition:
      -webkit-transform 0.2s ease-out,
      opacity 0.2s ease-out;
    -moz-transition:
      -moz-transform 0.2s ease-out,
      opacity 0.2s ease-out;
    transition:
      transform 0.2s ease-out,
      opacity 0.2s ease-out;
    transform: translate3d(0, -5px, 0);
    opacity: 0;
  }

  .header.header-nav-menu
    .header-nav-main-effect-2
    nav
    > ul
    > li.dropdown:hover
    > .dropdown-menu {
    transform: translate3d(0, -1px, 0);
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .header.header-nav-menu
    .header-nav-main-effect-3
    nav
    > ul
    > li.dropdown
    .dropdown-menu {
    -webkit-transition: -webkit-transform 0.2s ease-out;
    -moz-transition: -moz-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transform: translate3d(0, 10px, 0);
  }

  .header.header-nav-menu
    .header-nav-main-effect-3
    nav
    > ul
    > li.dropdown:hover
    > .dropdown-menu {
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 992px) {
  .header.header-nav-menu
    .header-nav-main-sub-effect-1
    nav
    > ul
    > li.dropdown
    .dropdown-menu
    li.dropdown-submenu
    > .dropdown-menu {
    -webkit-transition:
      -webkit-transform 0.2s ease-out,
      opacity 0.2s ease-out;
    -moz-transition:
      -moz-transform 0.2s ease-out,
      opacity 0.2s ease-out;
    transition:
      transform 0.2s ease-out,
      opacity 0.2s ease-out;
    transform: translate3d(-20px, 0, 0);
    opacity: 0;
  }

  .header.header-nav-menu
    .header-nav-main-sub-effect-1
    nav
    > ul
    > li.dropdown
    .dropdown-menu
    li.dropdown-submenu:hover
    > .dropdown-menu {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  .header.header-nav-menu
    .header-nav-main-sub-effect-1
    nav
    > ul
    > li.dropdown.dropdown-reverse
    .dropdown-menu
    li.dropdown-submenu
    > .dropdown-menu {
    -webkit-transition:
      -webkit-transform 0.2s ease-out,
      opacity 0.2s ease-out;
    -moz-transition:
      -moz-transform 0.2s ease-out,
      opacity 0.2s ease-out;
    transition:
      transform 0.2s ease-out,
      opacity 0.2s ease-out;
    transform: translate3d(20px, 0, 0);
    left: auto;
    right: 100%;
    opacity: 0;
  }

  .header.header-nav-menu
    .header-nav-main-sub-effect-1
    nav
    > ul
    > li.dropdown.dropdown-reverse
    .dropdown-menu
    li.dropdown-submenu:hover
    > .dropdown-menu {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .header.header-nav-menu .header-nav {
    clear: both;
    float: none;
  }

  .header.header-nav-menu .header-nav-main {
    background: #fff;
    padding: 10px;
    max-height: 350px;
    overflow-x: hidden;
    overflow-y: auto;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .header.header-nav-menu .header-nav-main {
    position: relative;
    top: 12px;
  }
}

@media (max-width: 991px) {
  .header.header-nav-menu .header-nav-main.collapsing {
    overflow: hidden;
  }

  .header.header-nav-menu .header-nav-main nav {
    margin: 0 0 6px;
  }

  .header.header-nav-menu .header-nav-main nav > ul li {
    border-bottom: 1px solid #e8e8e8;
    clear: both;
    display: block;
    float: none;
    margin: 0;
    padding: 0;
    position: relative;
  }

  .header.header-nav-menu .header-nav-main nav > ul li a {
    font-size: 13px;
    font-style: normal;
    line-height: 20px;
    padding: 7px 8px;
    margin: 1px 0;
    border-radius: 4px;
  }

  .header.header-nav-menu .header-nav-main nav > ul li a .fa-caret-down {
    line-height: 35px;
    min-height: 38px;
    min-width: 30px;
    position: absolute;
    right: 5px;
    text-align: center;
    top: 0;
  }

  .header.header-nav-menu .header-nav-main nav > ul li.dropdown .dropdown-menu {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 13px;
    box-shadow: none;
    border-radius: 0;
    border: 0;
    clear: both;
    display: none;
    float: none;
    position: static;
    border-top: 0 !important;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    li.dropdown
    .dropdown-menu
    li.dropdown-submenu.opened
    > .dropdown-menu {
    display: block;
    margin-left: 20px;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    li.dropdown.opened
    > .dropdown-menu {
    display: block;
    margin-left: 20px;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    li.dropdown-mega
    .dropdown-mega-sub-title {
    margin-top: 10px;
    display: block;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    li.dropdown-mega
    .dropdown-mega-sub-nav {
    margin: 0 0 0 20px;
    padding: 0;
    list-style: none;
  }

  .header.header-nav-menu
    .header-nav-main
    nav
    > ul
    li.dropdown-mega
    .dropdown-mega-sub-nav
    > li
    > a {
    display: block;
    text-decoration: none;
    color: #333;
  }

  .header.header-nav-menu .header-nav-main nav > ul li:last-child {
    border-bottom: 0;
  }

  .header.header-nav-menu .header-nav-main nav > ul > li > a {
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .header.header-nav-menu .header-nav-main nav > ul > li.active > a,
  .header.header-nav-menu .header-nav-main nav > ul > li.active > a:focus,
  .header.header-nav-menu .header-nav-main nav > ul > li.active > a:hover {
    color: #fff;
  }

  .header.header-nav-menu .header-nav-main nav .not-included {
    margin: 0;
  }

  .header.header-nav-menu .header-nav-main a > .thumb-info-preview {
    display: none !important;
  }

  .header.header-nav-menu .header-btn-collapse-nav {
    outline: 0;
    float: right;
    margin-top: 10px;
    margin-right: 15px;
  }

  .header.header-nav-menu .header-btn-collapse-nav:hover,
  .header.header-nav-menu .header-btn-collapse-nav:focus {
    color: #fff;
  }

  .header.header-nav-menu .header-nav-bar {
    margin: 0 auto;
  }

  .header.header-nav-menu .header-nav-bar .header-btn-collapse-nav {
    margin-top: 14px;
  }

  .header.header-nav-menu.header-transparent .header-nav-main {
    padding: 10px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 4px;
  }

  .header.header-nav-menu.header-semi-transparent .header-nav-main {
    padding: 10px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 4px;
  }

  .header.header-nav-menu.header-semi-transparent-light .header-nav-main {
    padding: 10px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 4px;
  }
}

.header.header-nav-menu
  .header-nav-main
  nav
  > ul
  > li:not(.dropdown-mega).active
  ul.dropdown-menu
  li:hover
  > a {
  background-color: #f4f4f4;
}

.header.header-nav-menu
  .header-nav-main
  nav
  > ul
  > li:not(.dropdown-mega).active
  ul.dropdown-menu
  li
  a {
  background: transparent;
}

.header.header-nav-menu
  .header-nav-main
  nav
  > ul
  > li.dropdown-mega.active
  ul.dropdown-mega-sub-nav
  li:hover
  a {
  background-color: #f4f4f4;
}

.header.header-nav-menu
  .header-nav-main
  nav
  > ul
  > li.dropdown-mega.active
  ul.dropdown-mega-sub-nav
  li
  a {
  background: transparent;
}

.header.header-nav-menu .not-included {
  color: #b7b7b7;
  display: block;
  font-size: 0.8em;
  font-style: normal;
  margin: -4px 0;
  padding: 0;
}

.header.header-nav-menu .tip {
  display: inline-block;
  padding: 0 5px;
  background: #171717;
  color: #fff;
  text-shadow: none;
  border-radius: 3px;
  margin-left: 8px;
  position: relative;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
}

.header.header-nav-menu .tip:before {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(23, 23, 23, 0);
  border-right-color: #171717;
  border-width: 5px;
  margin-top: -5px;
}

.header.header-nav-menu .tip.skin {
  color: #171717;
}

.header.header-nav-menu .search-toggle {
  color: #ccc;
}

.header.header-nav-menu .search-toggle:focus,
.header.header-nav-menu .search-toggle:active {
  box-shadow: none;
}

@media (min-width: 992px) {
  .header.header-nav-menu.header-nav-stripe {
    height: initial;
    border-bottom: 0;
  }

  .header.header-nav-menu.header-nav-stripe nav > ul > li > a,
  .header.header-nav-menu.header-nav-stripe nav > ul > li:hover > a {
    background: transparent;
    padding: 18px 13px 19px;
    margin: 0;
  }

  .header.header-nav-menu.header-nav-stripe nav > ul > li > a {
    color: #444;
  }

  .header.header-nav-menu.header-nav-stripe
    nav
    > ul
    > li
    > a.dropdown-toggle:after {
    border-color: #444 transparent transparent transparent;
  }

  .header.header-nav-menu.header-nav-stripe nav > ul > li:hover > a {
    color: #fff;
  }

  .header.header-nav-menu.header-nav-stripe nav > ul > li.dropdown:hover > a,
  .header.header-nav-menu.header-nav-stripe nav > ul > li.dropdown.open > a {
    padding-bottom: 19px;
  }

  .header.header-nav-menu.header-nav-top-line {
    height: initial;
    border-bottom: 0;
  }

  .header.header-nav-menu.header-nav-top-line nav > ul > li > a,
  .header.header-nav-menu.header-nav-top-line nav > ul > li:hover > a {
    background: transparent !important;
    color: #444;
    padding: 18px 13px 19px;
    margin: 0;
  }

  .header.header-nav-menu.header-nav-top-line nav > ul > li > a:before,
  .header.header-nav-menu.header-nav-top-line nav > ul > li:hover > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    left: -5px;
    opacity: 0;
    background: #ccc;
  }

  .header.header-nav-menu.header-nav-top-line nav > ul > li.active > a,
  .header.header-nav-menu.header-nav-top-line nav > ul > li:hover > a {
    color: #ccc;
  }

  .header.header-nav-menu.header-nav-top-line nav > ul > li.active > a:before,
  .header.header-nav-menu.header-nav-top-line nav > ul > li:hover > a:before {
    opacity: 1;
  }

  .header.header-nav-menu.header-nav-top-line
    nav
    > ul
    > li.active
    > a.dropdown-toggle:after,
  .header.header-nav-menu.header-nav-top-line
    nav
    > ul
    > li:hover
    > a.dropdown-toggle:after {
    border-color: #ccc transparent transparent transparent;
  }

  .header.header-nav-menu.header-nav-top-line
    nav
    > ul
    > li
    > a.dropdown-toggle:after {
    border-color: #444 transparent transparent transparent;
  }

  .header.header-nav-menu.header-nav-top-line nav > ul > li.dropdown:hover > a,
  .header.header-nav-menu.header-nav-top-line nav > ul > li.dropdown.open > a {
    padding-bottom: 19px;
  }

  .header.header-nav-menu.header-nav-stripe .header-nav-main,
  .header.header-nav-menu.header-nav-top-line .header-nav-main {
    margin-top: 0;
  }
}

@media only screen and (max-width: 1199px) {
  .header.header-nav-menu .separator {
    margin: 0px 14px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .header.header-nav-menu .search {
    position: absolute;
    top: 50px;
    left: -66px;
  }

  .header.header-nav-menu .search.active {
    display: block !important;
  }

  .header.header-nav-menu .search:before {
    content: "";
    display: block;
    position: absolute;
    top: -7px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media only screen and (min-width: 992px) {
  .header.header-nav-menu .header-right {
    position: relative;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-nav-menu .header-right {
    position: absolute;
    top: 0;
    right: 60px;
  }
}

.sidebar-left {
  z-index: 999;
}

.sidebar-left .sidebar-header {
  background: #fff;
  position: relative;
  color: #777;
  height: 50px;
  display: flex;
  justify-content: center;
}

.sidebar-left .sidebar-header .sidebar-title {
  color: #465162;
  padding: 15px;
  font-size: 1.3rem;
}

.sidebar-left hr.separator {
  background: none;
  margin: 20px 10px 20px;
}

@media only screen and (max-width: 767px) {
  .sidebar-left {
    background: #313131;
  }
}

html.mobile-device .sidebar-left {
  background: #313131;
}

/* Unstyle nano for non fixed layouts */
@media only screen and (min-width: 768px) {
  html.scroll .sidebar-left,
  html.boxed .sidebar-left,
  html.sidebar-left-big-icons .sidebar-left {
    min-height: 100vh;
  }

  html.scroll .sidebar-left .sidebar-header,
  html.boxed .sidebar-left .sidebar-header,
  html.sidebar-left-big-icons .sidebar-left .sidebar-header {
    margin-bottom: -3px;
  }

  html.scroll .sidebar-left .nano,
  html.boxed .sidebar-left .nano,
  html.sidebar-left-big-icons .sidebar-left .nano {
    position: static;
    overflow: visible;
    width: 100%;
  }

  html.scroll .sidebar-left .nano .nano-content,
  html.boxed .sidebar-left .nano .nano-content,
  html.sidebar-left-big-icons .sidebar-left .nano .nano-content {
    margin-right: 0 !important;
    position: relative;
    overflow: visible;
    margin-top: 3px;
  }

  html.scroll .sidebar-left .nano .nano-pane,
  html.boxed .sidebar-left .nano .nano-pane,
  html.sidebar-left-big-icons .sidebar-left .nano .nano-pane {
    display: none !important;
  }

  html.boxed .sidebar-left .nano > .nano-content,
  html.scroll .sidebar-left .nano > .nano-content,
  html.sidebar-left-big-icons .sidebar-left .nano > .nano-content {
    overflow: visible !important;
  }

  html.boxed .sidebar-left .nano {
    padding-bottom: 10px;
  }

  html.scroll .sidebar-left .nano,
  html.sidebar-left-big-icons .sidebar-left .nano {
    padding-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) {
  html.sidebar-left-collapsed .sidebar-left .nano {
    background: #313131;
    box-shadow: -5px 0 0 #2f3139 inset;
  }

  html.sidebar-left-collapsed .sidebar-left .nav-main > li > a {
    overflow: hidden;
    text-overflow: clip;
  }

  html.sidebar-left-collapsed .sidebar-left .nav-main li.nav-parent a:after {
    display: none;
  }

  html.sidebar-left-collapsed
    .sidebar-left
    .nav-main
    li.nav-parent
    > ul.nav-children {
    display: none;
  }

  html.sidebar-left-collapsed .sidebar-left .nav-main a span {
    opacity: 0;
    visibility: hidden;
  }

  html.sidebar-left-collapsed .sidebar-left .sidebar-widget,
  html.sidebar-left-collapsed .sidebar-left .separator {
    display: none;
  }

  html.sidebar-left-collapsed .sidebar-left .nano:hover {
    width: 230px;
  }

  html.sidebar-left-collapsed
    .sidebar-left
    .nano:hover
    .nav-main
    .nav-expanded
    > ul.nav-children {
    display: block;
  }

  html.sidebar-left-collapsed
    .sidebar-left
    .nano:hover
    .nav-main
    li.nav-parent
    a:after {
    display: inline-block;
  }

  html.sidebar-left-collapsed .sidebar-left .nano:hover .nav-main li a span {
    opacity: 1;
    visibility: visible;
  }

  html.sidebar-left-collapsed .sidebar-left .nano:hover .sidebar-widget,
  html.sidebar-left-collapsed .sidebar-left .nano:hover .separator {
    display: block;
  }

  html.sidebar-left-collapsed.sidebar-left-opened .sidebar-left .nano {
    width: 300px;
  }

  html.sidebar-left-collapsed.sidebar-left-opened
    .sidebar-left
    .nano
    .nav-main
    .nav-expanded
    > ul.nav-children {
    display: block;
  }

  html.sidebar-left-collapsed.sidebar-left-opened
    .sidebar-left
    .nano
    .nav-main
    li.nav-parent
    a:after {
    display: inline-block;
  }

  html.sidebar-left-collapsed.sidebar-left-opened
    .sidebar-left
    .nano
    .nav-main
    li
    a
    span {
    visibility: visible;
  }

  html.sidebar-left-collapsed.sidebar-left-opened
    .sidebar-left
    .nano
    .sidebar-widget,
  html.sidebar-left-collapsed.sidebar-left-opened
    .sidebar-left
    .nano
    .separator {
    display: block;
  }
}

html.sidebar-light:not(.dark) .sidebar-left .sidebar-header .sidebar-title {
  background: #fff;
  color: var(--theme-primary);
}

html.sidebar-light:not(.dark) .sidebar-left .nano {
  box-shadow: -5px 0 0 #f6f6f6 inset;
  background: #fff;
}

html.sidebar-light:not(.dark).sidebar-left-collapsed .sidebar-left .nano {
  box-shadow: -5px 0 0 #f6f6f6 inset;
  background: #fff;
}

@media only screen and (max-width: 767px) {
  html.sidebar-light .sidebar-left {
    background: #fff;
  }
}

html.mobile-device.sidebar-light .sidebar-left {
  background: #fff;
}

@media only screen and (min-width: 768px) {
  html.sidebar-left-big-icons .sidebar-left,
  html.sidebar-left-big-icons .logo-env {
    width: 152px;
  }

  html.sidebar-left-big-icons .sidebar-left .nano {
    box-shadow: none !important;
  }

  html.sidebar-left-big-icons .sidebar-left .nano .nav-main {
    margin-right: 0;
  }

  html.sidebar-left-big-icons
    .sidebar-left
    .nano
    .nav-main
    > li:hover
    > ul.nav-children {
    display: block;
  }

  html.sidebar-left-big-icons .sidebar-left .nano .nav-main > li:hover > a {
    background: #303030;
  }

  html.sidebar-left-big-icons
    .sidebar-left
    .nano
    .nav-main
    > li:last-child
    > a {
    border-top: 1px solid #303030;
    border-bottom: 1px solid #303030;
  }

  html.sidebar-left-big-icons
    .sidebar-left
    .nano
    .nav-main
    > li.nav-active
    > a {
    background: #303030;
  }

  html.sidebar-left-big-icons .sidebar-left .nano .nav-main > li > a {
    text-align: center;
    padding: 12px 10px;
    border-top: 1px solid #303030;
  }

  html.sidebar-left-big-icons .sidebar-left .nano .nav-main > li > a:after {
    content: none;
  }

  html.sidebar-left-big-icons .sidebar-left .nano .nav-main > li > a i {
    margin-right: 0;
    font-size: 2.8rem;
  }

  html.sidebar-left-big-icons .sidebar-left .nano .nav-main > li > a span {
    display: block;
  }

  html.sidebar-left-big-icons
    .sidebar-left
    .nano
    .nav-main
    > li
    > a
    span.label {
    position: absolute;
    top: 2px;
    left: 60%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  html.sidebar-left-big-icons
    .sidebar-left
    .nano
    .nav-main
    > li
    > a
    .not-included {
    display: block;
  }

  html.sidebar-left-big-icons
    .sidebar-left
    .nano
    .nav-main
    > li
    ul.nav-children {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 210px;
    border-left: 3px solid #2f3139;
    background: #303030;
  }

  html.sidebar-left-big-icons
    .sidebar-left
    .nano
    .nav-main
    > li
    ul.nav-children
    li:hover
    > ul.nav-children {
    display: block;
  }

  html.sidebar-left-big-icons
    .sidebar-left
    .nano
    .nav-main
    > li
    ul.nav-children
    li:hover
    > a {
    color: #fff;
  }

  html.sidebar-left-big-icons
    .sidebar-left
    .nano
    .nav-main
    > li
    ul.nav-children
    li:hover
    > a:hover {
    background: transparent;
  }

  html.sidebar-left-big-icons
    .sidebar-left
    .nano
    .nav-main
    > li
    ul.nav-children
    li
    a {
    padding: 6px 15px;
    overflow: visible;
  }

  html.sidebar-left-big-icons
    .sidebar-left
    .nano
    .nav-main
    > li
    ul.nav-children
    li.nav-parent
    > a {
    padding-right: 30px;
  }

  html.sidebar-left-big-icons
    .sidebar-left
    .nano
    .nav-main
    > li
    ul.nav-children
    li.nav-parent
    > a:after {
    content: "\f105";
    padding: 6px 10px;
    right: 5px;
  }

  html.sidebar-left-big-icons
    .sidebar-left
    .nano
    .nav-main
    > li
    ul.nav-children
    ul.nav-children {
    padding: 10px 0;
  }

  html.sidebar-left-big-icons
    .sidebar-left
    .nano
    .nav-main
    li.nav-parent:hover
    > a:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -3px;
    bottom: 0;
    border-right: 4px solid #303030;
    z-index: 1;
  }

  html.sidebar-left-big-icons
    .sidebar-left
    .nano
    .nav-main
    li.nav-parent.nav-expanded
    > ul.nav-children {
    display: none;
  }

  html.sidebar-left-big-icons
    .sidebar-left
    .nano
    .nav-main
    li.nav-parent.nav-expanded:hover
    > ul.nav-children {
    display: block;
  }

  html.sidebar-left-big-icons .sidebar-left .nano .sidebar-widget {
    display: none;
  }

  html.sidebar-left-big-icons.sidebar-left-collapsed .sidebar-left {
    width: 55px;
  }

  html.sidebar-left-big-icons.sidebar-left-collapsed .sidebar-left .nano:hover {
    width: 55px;
  }

  html.sidebar-left-big-icons.sidebar-left-collapsed
    .sidebar-left
    .nano:hover
    .sidebar-widget {
    display: none;
  }

  html.sidebar-left-big-icons.sidebar-left-collapsed
    .sidebar-left
    .nano
    .nav-main
    > li
    > a {
    overflow: visible;
  }

  html.sidebar-left-big-icons.sidebar-left-collapsed
    .sidebar-left
    .nano
    .nav-main
    > li
    > a
    span {
    display: none;
  }

  html.sidebar-left-big-icons.sidebar-left-collapsed
    .sidebar-left
    .nano
    .nav-main
    > li
    > a
    > i {
    font-size: 2.1rem;
  }

  html.sidebar-left-big-icons.sidebar-light
    .sidebar-left
    .nano
    .nav-main
    > li:hover
    > a {
    background: #fafafa;
  }

  html.sidebar-left-big-icons.sidebar-light
    .sidebar-left
    .nano
    .nav-main
    > li:last-child
    > a {
    border-top: 1px solid #fafafa;
    border-bottom: 1px solid #fafafa;
  }

  html.sidebar-left-big-icons.sidebar-light
    .sidebar-left
    .nano
    .nav-main
    > li.nav-active
    > a {
    background: #fafafa;
  }

  html.sidebar-left-big-icons.sidebar-light
    .sidebar-left
    .nano
    .nav-main
    > li
    > a {
    border-top: 1px solid #fafafa;
  }

  html.sidebar-left-big-icons.sidebar-light
    .sidebar-left
    .nano
    .nav-main
    > li
    ul.nav-children {
    border-left: 3px solid #f1f1f1;
    background: #fafafa;
  }

  html.sidebar-left-big-icons.sidebar-light
    .sidebar-left
    .nano
    .nav-main
    > li
    ul.nav-children
    li:hover
    > a {
    color: #000;
  }

  html.sidebar-left-big-icons.sidebar-light
    .sidebar-left
    .nano
    .nav-main
    > li
    ul.nav-children
    li:hover
    > a:hover {
    background: transparent;
  }

  html.sidebar-left-big-icons.sidebar-light
    .sidebar-left
    .nano
    .nav-main
    li.nav-parent:hover
    > a:before {
    border-right: 4px solid #fafafa;
  }
}

@media only screen and (max-width: 767px) {
  /* Layout Mobile - Sidebar Left Collapsed & Sidebar Right Opened */
  html.sidebar-left-sm.sidebar-left-collapsed.sidebar-right-opened
    .sidebar-left {
    margin-left: -230px;
  }
}

@media only screen and (min-width: 768px) {
  /* Layout Base - Sidebar Left */
  html.sidebar-left-sm .sidebar-left,
  html.sidebar-left-sm .logo-env {
    width: 230px;
    font-size: 1.2rem;
  }

  html.sidebar-left-sm .sidebar-left ul.nav-main li i {
    font-size: 1.6rem;
  }

  html.sidebar-left-sm .sidebar-left ul.nav-main li a {
    font-size: 1.34rem;
    font-weight: 600;
  }

  html.sidebar-left-sm .sidebar-left .sidebar-widget .widget-header h6 {
    font-size: 1.2rem;
  }

  html.sidebar-left-sm.sidebar-left-collapsed.fixed .sidebar-left .nano:hover {
    -webkit-transition: width 0.25s ease-in-out;
    -moz-transition: width 0.25s ease-in-out;
    -o-transition: width 0.25s ease-in-out;
    transition: width 0.25s ease-in-out;
    width: 230px;
  }

  /* Layout Base - Sidebar Left Opened ( Larger than mobile ) */
  html.sidebar-left-sm.sidebar-left-collapsed .sidebar-left {
    width: 73px;
  }

  /* Layout Fixed - Content Body */
  html.fixed.sidebar-left-sm .content-body {
    margin-left: 230px;
  }

  /* Layout Fixed - Page header */
  html.fixed.sidebar-left-sm .page-header {
    left: 230px;
  }

  /* Layout Fixed - Sidebar Right Opened */
  html.fixed.sidebar-left-sm.sidebar-right-opened .page-header {
    left: 0;
  }

  html.fixed.sidebar-left-sm.sidebar-right-opened .sidebar-left {
    left: -230px;
  }

  /* Layout Fixed - Sidebar Left Collapsed */
  html.fixed.sidebar-left-collapsed .page-header {
    left: 73px;
  }

  html.fixed.sidebar-left-collapsed .content-body {
    margin-left: 73px;
  }

  /* Layout Fixed - Sidebar Left Collapsed & Sidebar Right Opened */
  html.fixed.sidebar-left-sm.sidebar-left-collapsed.sidebar-right-opened
    .page-header {
    left: -230px;
  }

  /* Content With Menu + Layout Fixed */
  html.fixed.sidebar-left-sm .inner-menu {
    left: 230px;
  }

  /* Content With Menu + Layout Fixed + Sidebar Left Collapsed */
  html.fixed.sidebar-left-sm.sidebar-left-collapsed .inner-menu,
  html.fixed.sidebar-left-sm.sidebar-left-collapsed .inner-menu-toggle,
  html.fixed.sidebar-left-sm.sidebar-left-collapsed .inner-toolbar {
    left: 73px;
  }

  html.fixed.sidebar-left-sm.sidebar-left-collapsed.inner-menu-opened
    .inner-menu-toggle,
  html.fixed.sidebar-left-sm.sidebar-left-collapsed.inner-menu-opened
    .inner-toolbar {
    left: 373px;
  }

  /* Content With Menu + Layout Fixed + Sidebar Right Opened */
  html.fixed.sidebar-left-sm.sidebar-right-opened .inner-menu,
  html.fixed.sidebar-left-sm.sidebar-right-opened .inner-menu-toggle,
  html.fixed.sidebar-left-sm.sidebar-right-opened .inner-toolbar {
    left: -50px;
  }

  html.fixed.sidebar-left-sm.sidebar-right-opened.inner-menu-opened
    .inner-menu-toggle,
  html.fixed.sidebar-left-sm.sidebar-right-opened.inner-menu-opened
    .inner-toolbar {
    left: -350px;
  }

  /* Content With Menu - Toolbar + Layout Fixed */
  html.fixed.sidebar-left-sm.inner-menu-opened {
    left: 550px;
  }

  html.fixed.sidebar-left-sm .inner-menu-toggle {
    left: 230px;
  }
}
/* Resolution gt 1366 - Show Inner Menu */
@media only screen and (min-width: 1366px) {
  html.fixed.sidebar-left-sm .content-with-menu .inner-toolbar,
  html.fixed.sidebar-left-sm.inner-menu-opened
    .content-with-menu
    .inner-toolbar {
    left: 550px;
  }

  html.fixed.sidebar-left-sm .inner-menu-toggle,
  html.fixed.sidebar-left-sm .inner-menu,
  html.fixed.sidebar-left-sm.inner-menu-opened .inner-menu-toggle,
  html.fixed.sidebar-left-sm.inner-menu-opened .inner-menu {
    left: 230px;
  }

  html.fixed.sidebar-left-sm.sidebar-right-opened
    .content-with-menu
    .inner-toolbar {
    left: 230px;
  }

  html.fixed.sidebar-left-sm.sidebar-right-opened .inner-menu,
  html.fixed.sidebar-left-sm.sidebar-right-opened .inner-menu-toggle {
    left: -50px;
  }

  html.fixed.sidebar-left-sm.sidebar-left-collapsed
    .content-with-menu
    .inner-toolbar,
  html.fixed.sidebar-left-sm.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened
    .content-with-menu
    .inner-toolbar,
  html.fixed.sidebar-left-sm.sidebar-left-collapsed.inner-menu-opened
    .content-with-menu
    .inner-toolbar {
    left: 373px;
  }

  html.fixed.sidebar-left-sm.sidebar-left-collapsed .inner-menu-toggle,
  html.fixed.sidebar-left-sm.sidebar-left-collapsed .inner-menu,
  html.fixed.sidebar-left-sm.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened
    .inner-menu-toggle,
  html.fixed.sidebar-left-sm.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened
    .inner-menu,
  html.fixed.sidebar-left-sm.sidebar-left-collapsed.inner-menu-opened
    .inner-menu-toggle,
  html.fixed.sidebar-left-sm.sidebar-left-collapsed.inner-menu-opened
    .inner-menu {
    left: 73px;
  }

  html.fixed.sidebar-left-sm.sidebar-left-collapsed.sidebar-right-opened
    .content-with-menu
    .inner-toolbar {
    left: 73px;
  }

  html.fixed.sidebar-left-sm.sidebar-left-collapsed.sidebar-right-opened
    .inner-menu,
  html.fixed.sidebar-left-sm.sidebar-left-collapsed.sidebar-right-opened
    .inner-menu-toggle {
    left: -227px;
  }
}

@media only screen and (max-width: 767px) {
  /* Layout Mobile - Sidebar Left Collapsed & Sidebar Right Opened */
  html.sidebar-left-xs.sidebar-left-collapsed.sidebar-right-opened
    .sidebar-left {
    margin-left: -200px;
  }
}

@media only screen and (min-width: 768px) {
  /* Layout Base - Sidebar Left */
  html.sidebar-left-xs .sidebar-left,
  html.sidebar-left-xs .logo-env {
    width: 200px;
    font-size: 1.1rem;
  }

  html.sidebar-left-xs .sidebar-left ul.nav-main li i {
    font-size: 1.4rem;
  }

  html.sidebar-left-xs .sidebar-left ul.nav-main li a {
    font-size: 1.1rem;
  }

  html.sidebar-left-xs .sidebar-left .sidebar-widget .widget-header h6 {
    font-size: 1.1rem;
  }

  html.sidebar-left-xs.sidebar-left-collapsed.fixed .sidebar-left .nano:hover {
    width: 200px;
  }

  /* Layout Base - Sidebar Left Opened ( Larger than mobile ) */
  html.sidebar-left-xs.sidebar-left-collapsed .sidebar-left {
    width: 73px;
  }

  /* Layout Fixed - Content Body */
  html.fixed.sidebar-left-xs .content-body {
    margin-left: 200px;
  }

  /* Layout Fixed - Page header */
  html.fixed.sidebar-left-xs .page-header {
    left: 200px;
  }

  /* Layout Fixed - Sidebar Right Opened */
  html.fixed.sidebar-left-xs.sidebar-right-opened .page-header {
    left: 0;
  }

  html.fixed.sidebar-left-xs.sidebar-right-opened .sidebar-left {
    left: -200px;
  }

  /* Layout Fixed - Sidebar Left Collapsed */
  html.fixed.sidebar-left-collapsed .page-header {
    left: 73px;
  }

  html.fixed.sidebar-left-collapsed .content-body {
    margin-left: 73px;
  }

  /* Layout Fixed - Sidebar Left Collapsed & Sidebar Right Opened */
  html.fixed.sidebar-left-xs.sidebar-left-collapsed.sidebar-right-opened
    .page-header {
    left: -200px;
  }

  /* Content With Menu + Layout Fixed */
  html.fixed.sidebar-left-xs .inner-menu {
    left: 200px;
  }

  /* Content With Menu + Layout Fixed + Sidebar Left Collapsed */
  html.fixed.sidebar-left-xs.sidebar-left-collapsed .inner-menu,
  html.fixed.sidebar-left-xs.sidebar-left-collapsed .inner-menu-toggle,
  html.fixed.sidebar-left-xs.sidebar-left-collapsed .inner-toolbar {
    left: 73px;
  }

  html.fixed.sidebar-left-xs.sidebar-left-collapsed.inner-menu-opened
    .inner-menu-toggle,
  html.fixed.sidebar-left-xs.sidebar-left-collapsed.inner-menu-opened
    .inner-toolbar {
    left: 373px;
  }

  /* Content With Menu + Layout Fixed + Sidebar Right Opened */
  html.fixed.sidebar-left-xs.sidebar-right-opened .inner-menu,
  html.fixed.sidebar-left-xs.sidebar-right-opened .inner-menu-toggle,
  html.fixed.sidebar-left-xs.sidebar-right-opened .inner-toolbar {
    left: -100px;
  }

  html.fixed.sidebar-left-xs.sidebar-right-opened.inner-menu-opened
    .inner-menu-toggle,
  html.fixed.sidebar-left-xs.sidebar-right-opened.inner-menu-opened
    .inner-toolbar {
    left: -400px;
  }

  /* Content With Menu - Toolbar + Layout Fixed */
  html.fixed.sidebar-left-xs.inner-menu-opened {
    left: 500px;
  }

  html.fixed.sidebar-left-xs .inner-menu-toggle {
    left: 200px;
  }
}
/* Resolution gt 1366 - Show Inner Menu */
@media only screen and (min-width: 1366px) {
  html.fixed.sidebar-left-xs .content-with-menu .inner-toolbar,
  html.fixed.sidebar-left-xs.inner-menu-opened
    .content-with-menu
    .inner-toolbar {
    left: 500px;
  }

  html.fixed.sidebar-left-xs .inner-menu-toggle,
  html.fixed.sidebar-left-xs .inner-menu,
  html.fixed.sidebar-left-xs.inner-menu-opened .inner-menu-toggle,
  html.fixed.sidebar-left-xs.inner-menu-opened .inner-menu {
    left: 200px;
  }

  html.fixed.sidebar-left-xs.sidebar-right-opened
    .content-with-menu
    .inner-toolbar {
    left: 200px;
  }

  html.fixed.sidebar-left-xs.sidebar-right-opened .inner-menu,
  html.fixed.sidebar-left-xs.sidebar-right-opened .inner-menu-toggle {
    left: -100px;
  }

  html.fixed.sidebar-left-xs.sidebar-left-collapsed
    .content-with-menu
    .inner-toolbar,
  html.fixed.sidebar-left-xs.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened
    .content-with-menu
    .inner-toolbar,
  html.fixed.sidebar-left-xs.sidebar-left-collapsed.inner-menu-opened
    .content-with-menu
    .inner-toolbar {
    left: 373px;
  }

  html.fixed.sidebar-left-xs.sidebar-left-collapsed .inner-menu-toggle,
  html.fixed.sidebar-left-xs.sidebar-left-collapsed .inner-menu,
  html.fixed.sidebar-left-xs.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened
    .inner-menu-toggle,
  html.fixed.sidebar-left-xs.sidebar-left-collapsed.sidebar-right-opened.inner-menu-opened
    .inner-menu,
  html.fixed.sidebar-left-xs.sidebar-left-collapsed.inner-menu-opened
    .inner-menu-toggle,
  html.fixed.sidebar-left-xs.sidebar-left-collapsed.inner-menu-opened
    .inner-menu {
    left: 73px;
  }

  html.fixed.sidebar-left-xs.sidebar-left-collapsed.sidebar-right-opened
    .content-with-menu
    .inner-toolbar {
    left: 73px;
  }

  html.fixed.sidebar-left-xs.sidebar-left-collapsed.sidebar-right-opened
    .inner-menu,
  html.fixed.sidebar-left-xs.sidebar-left-collapsed.sidebar-right-opened
    .inner-menu-toggle {
    left: -227px;
  }
}
/* Sidebar Right */
.sidebar-right {
  z-index: 1010;
}

.sidebar-right .sidebar-right-wrapper {
  padding: 20px;
}

.sidebar-right h6 {
  margin: 0;
  color: #777;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
}

.sidebar-right .mobile-close {
  background: #000;
  color: #999;
  left: 0;
  line-height: 50px;
  padding-left: 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: left;
  text-decoration: none;
}

.sidebar-right .mobile-close i {
  margin-left: 5px;
  vertical-align: middle;
}

.sidebar-right .mobile-close:after {
  box-shadow: 0 0px 3px 0 rgba(255, 255, 255, 0.7);
  bottom: -1px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}

/* If desktop is seeing mobile res, fix scrollbars */
@media only screen and (max-width: 767px) {
  html.no-mobile-device.custom-scroll .sidebar-right .nano > .nano-content {
    overflow: scroll;
    overflow-x: hidden;
  }
}
/* Content With Menu - Menu Faux Column for Scroll and Boxed Layouts Colors */
@media only screen and (min-width: 768px) {
  html.scroll .content-with-menu:before,
  html.boxed .content-with-menu:before {
    background: #313131;
  }

  html.scroll .content-with-menu:after,
  html.boxed .content-with-menu:after {
    background: #000;
    box-shadow: 0px 0 4px 2px rgba(0, 0, 0, 0.5);
  }
}
/* Unstyle nano for non fixed layouts */
html.scroll .inner-menu .nano,
html.scroll.no-overflowscrolling.custom-scroll .inner-menu .nano,
html.boxed .inner-menu .nano,
html.boxed.no-overflowscrolling.custom-scroll .inner-menu .nano {
  position: static;
  height: auto;
  overflow: visible;
  width: auto;
}

html.scroll .inner-menu .nano > .nano-content,
html.scroll.no-overflowscrolling.custom-scroll
  .inner-menu
  .nano
  > .nano-content,
html.boxed .inner-menu .nano > .nano-content,
html.boxed.no-overflowscrolling.custom-scroll
  .inner-menu
  .nano
  > .nano-content {
  position: static;
  overflow: visible;
}

@media only screen and (max-width: 767px) {
  html.fixed .inner-menu .nano {
    position: static;
    height: auto;
    overflow: visible;
    width: auto;
  }

  html.fixed .inner-menu .nano .nano-content {
    margin-right: 0;
    position: static;
    overflow: visible;
  }
}
/* Fix padding when fixed */
@media only screen and (min-width: 768px) {
  html.fixed .inner-menu {
    padding: 0;
  }

  html.fixed .inner-menu .nano-content {
    padding: 35px;
  }

  html.fixed .inner-menu .nano-content:after {
    display: block;
    content: "";
    height: 35px;
  }
}
/* Content With Menu - Inner Menu Style */
.inner-menu {
  background: #313131;
  border-right: 1px solid #242830;
  color: #abb4be;
  padding: 0;
  margin: 0;
}

.inner-menu .title {
  color: #465162;
  font-weight: 600;
  margin: 10px 0;
  padding: 0;
  text-transform: uppercase;
}

.inner-menu hr.separator {
  background-image: -webkit-linear-gradient(
    left,
    transparent,
    rgba(0, 0, 0, 0.4),
    transparent
  );
  background-image: -moz-linear-gradient(
    left,
    transparent,
    rgba(0, 0, 0, 0.4),
    transparent
  );
  background-image: -ms-linear-gradient(
    left,
    transparent,
    rgba(0, 0, 0, 0.4),
    transparent
  );
  background-image: -o-linear-gradient(
    left,
    transparent,
    rgba(0, 0, 0, 0.4),
    transparent
  );
  margin: 20px -35px 20px;
}

.inner-menu a,
.inner-menu a:hover {
  color: #abb4be;
}

.inner-menu a.menu-item {
  color: #abb4be;
  display: block;
  margin: 0 -35px 0 -35px;
  padding: 10px 50px 10px 50px;
  text-decoration: none;
}

.inner-menu a.menu-item:hover {
  background: #303030;
  color: #abb4be;
  text-decoration: none;
}

.inner-menu a.menu-item.active {
  background: #383838;
}

.inner-menu a.menu-item .label {
  font-weight: normal;
  font-size: 10px;
  font-size: 1rem;
  padding: 0.3em 0.7em 0.4em;
  margin: 0.2em -1em 0 0;
}

html.sidebar-light:not(.dark) .inner-menu {
  background: #fff;
  border-right-color: #e2e3e6;
  color: #777;
}

html.sidebar-light:not(.dark) .inner-menu .title {
  color: #465162;
}

html.sidebar-light:not(.dark) .inner-menu hr.separator {
  background-image: -webkit-linear-gradient(
    left,
    transparent,
    rgba(0, 0, 0, 0.1),
    transparent
  );
  background-image: -moz-linear-gradient(
    left,
    transparent,
    rgba(0, 0, 0, 0.1),
    transparent
  );
  background-image: -ms-linear-gradient(
    left,
    transparent,
    rgba(0, 0, 0, 0.1),
    transparent
  );
  background-image: -o-linear-gradient(
    left,
    transparent,
    rgba(0, 0, 0, 0.1),
    transparent
  );
}

html.sidebar-light:not(.dark) .inner-menu a.menu-item {
  color: #777;
}

html.sidebar-light:not(.dark) .inner-menu a.menu-item:hover {
  background: #e2e3e6;
  color: #777;
}

html.sidebar-light:not(.dark) .inner-menu a.menu-item.active {
  background: #e2e3e6;
}

/* Content With Menu - Toggle */
.inner-menu-toggle,
.inner-menu .inner-menu-toggle-inside {
  background: #000;
  color: #999;
  left: 0;
  line-height: 52px;
  position: relative;
  overflow: hidden;
  text-align: left;
  text-decoration: none;
}

.inner-menu-toggle:after,
.inner-menu .inner-menu-toggle-inside:after {
  box-shadow: 0 0px 3px 0 rgba(255, 255, 255, 0.7);
  bottom: -1px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}

.inner-menu-toggle a,
.inner-menu .inner-menu-toggle-inside a {
  display: block;
  padding-left: 20px;
  text-decoration: none;
}

.inner-menu-toggle a i,
.inner-menu .inner-menu-toggle-inside a i {
  vertical-align: middle;
}

.inner-menu-toggle .inner-menu-collapse,
.inner-menu .inner-menu-toggle-inside .inner-menu-collapse {
  display: none;
}

html.sidebar-light:not(.dark) .inner-menu-toggle,
html.sidebar-light:not(.dark) .inner-menu .inner-menu-toggle-inside {
  background: #e2e3e6;
  color: #777;
}

html.sidebar-light:not(.dark) .inner-menu-toggle > a,
html.sidebar-light:not(.dark) .inner-menu .inner-menu-toggle-inside > a {
  color: #777;
}

.inner-menu-toggle a i {
  margin-left: 5px;
}

.inner-menu-toggle-inside {
  margin: -35px -35px 15px -35px;
}

.inner-menu-toggle-inside .inner-menu-collapse i {
  margin-right: 5px;
}

.inner-menu-toggle-inside .inner-menu-expand i {
  margin-left: 5px;
}

/* Content With Menu - Toggle - Outside */
.inner-menu-toggle {
  display: none;
}

/* Content With Menu - Inner Menu Content */
.inner-menu-content {
  display: none;
}

html.inner-menu-opened
  .inner-menu
  .inner-menu-toggle-inside
  .inner-menu-collapse {
  display: block;
}

html.inner-menu-opened .inner-menu-expand {
  display: none;
}

html.inner-menu-opened .inner-menu-content {
  display: block;
}

/* Content With Menu - Responsive */
@media only screen and (max-width: 767px) {
  .inner-menu .hidden-xs-inline {
    display: none;
  }

  .inner-menu .inner-menu-content {
    padding: 20px;
  }

  .inner-menu-toggle-inside {
    margin: 0;
  }
}
/* Content With Menu - Toolbar + Layout Fixed */
@media only screen and (min-width: 768px) {
  html.fixed.inner-menu-opened {
    left: 600px;
  }

  html.fixed .inner-menu-toggle {
    position: fixed;
    left: 300px;
  }
}

html.dark .inner-menu-toggle:after,
html.dark .inner-menu .inner-menu-toggle-inside:after {
  box-shadow: none;
}

ul.nav-main {
  margin-right: 5px;
}

ul.nav-main > li > a {
  padding: 12px 25px;
}

ul.nav-main > li > a:hover,
ul.nav-main > li > a:focus {
  background-color: rgba(62, 70, 75, 0.301);
}

ul.nav-main > li.nav-active > a {
  box-shadow: 2px 0 0 #ccc inset;
}

ul.nav-main > li.nav-active > a:hover {
  color: #abb4be;
}

ul.nav-main > li.nav-active > i {
  color: #ccc;
}

ul.nav-main > li.nav-expanded > a {
  background: rgba(62, 70, 75, 0.301);
}

ul.nav-main li a {
  font-size: 1.3rem;
  color: #6b6b6b;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 500;
}

ul.nav-main li a i {
  color: var(--primary-color, var(--theme-primary));
}

html.dark ul.nav-main li a i {
  color: var(--primary-color, var(--theme-primary));
}

ul.nav-main li a span.label {
  font-weight: normal;
  font-size: 1rem;
  padding: 0.3em 0.7em 0.4em;
  margin: 0.4em -1em 0 0;
}

ul.nav-main li a .not-included {
  font-style: normal;
  color: #505b67;
  display: inline-block;
  padding: 0 0 0 6px;
}

ul.nav-main li span {
  vertical-align: middle;
}

ul.nav-main li i {
  font-size: 1.8rem;
  width: 1.1em;
  margin-right: 0.5em;
  text-align: center;
  vertical-align: middle;
}

ul.nav-main li .nav-children span i {
  margin-right: 0.1em;
}

ul.nav-main li.nav-parent {
  position: relative;
}

ul.nav-main li.nav-parent > a {
  cursor: pointer;
}

ul.nav-main li.nav-parent > a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f067";
  color: var(--primary-color, var(--theme-primary));
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
  font-size: 0.9rem;
  line-height: 1;
}

ul.nav-main li.nav-parent.nav-expanded > a:after {
  content: "\f068";
}

ul.nav-main li.nav-parent.nav-expanded > ul.nav-children {
  display: block;
}

ul.nav-main li .nav-children {
  background: #2d2d2d;
  box-shadow: 0px -3px 3px -3px rgba(33, 31, 31, 0.7) inset;
  display: none;
  padding: 10px 0;
}

ul.nav-main li .nav-children li a {
  padding: 6px 15px 6px 34px;
  overflow: hidden;
}

ul.nav-main li .nav-children li a:hover,
ul.nav-main li .nav-children li a:focus {
  background: #2d2d2d;
}

ul.nav-main li .nav-children li a:after {
  padding: 6px 25px;
}

ul.nav-main li .nav-children .nav-children {
  box-shadow: none;
  padding: 0;
}

ul.nav-main li .nav-children .nav-children li a {
  padding: 6px 15px 6px 50px;
}

ul.nav-main li .nav-children .nav-children .nav-children li a {
  padding: 6px 15px 6px 97px;
}

/* Sidebar Light - Menu */
html.sidebar-light:not(.dark) ul.nav-main {
  margin-top: 3px;
}

html.sidebar-light:not(.dark) ul.nav-main > li > a:hover,
html.sidebar-light:not(.dark) ul.nav-main > li > a:focus {
  background-color: #fafafa;
}

html.sidebar-light:not(.dark) ul.nav-main > li.nav-expanded > a {
  background: #fafafa;
}

html.sidebar-light:not(.dark) ul.nav-main li .nav-children {
  background: #f6f6f6;
  box-shadow: 0 -3px 3px -3px rgba(0, 0, 0, 0.1) inset;
}

html.sidebar-light:not(.dark) ul.nav-main li .nav-children li a:hover,
html.sidebar-light:not(.dark) ul.nav-main li .nav-children li a:focus {
  background: #fff;
}

html.sidebar-light:not(.dark)
  ul.nav-main
  li.nav-parent.nav-expanded
  > ul.nav-children
  > li
  > a,
html.sidebar-light:not(.dark)
  ul.nav-main
  li.nav-parent.nav-expanded
  > ul.nav-children
  > li
  > a
  span,
html.sidebar-light:not(.dark)
  ul.nav-main
  li.nav-parent.nav-expanded
  > ul.nav-children
  > li
  > a
  i {
  color: var(--primary-color, var(--theme-primary)) !important;
}

/* Page Header */
.page-header {
  z-index: 998;
}

.page-header h2 {
  color: #fff;
  border-bottom: 4px solid #ccc;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  display: inline-block;
  float: left;
  height: 50px;
  font-size: 2rem;
  letter-spacing: normal;
  line-height: 50px;
  margin: 0 0 0 -1px;
  padding: 0 22px 0 10px;
}

.page-header .right-wrapper {
  float: right;
}

.page-header .breadcrumbs {
  display: inline-block;
  font-size: 0;
  line-height: 50px;
  margin: 0;
  padding: 0;
}

.page-header .breadcrumbs li {
  color: #c3c3c3;
  display: inline-block;
  font-weight: 300;
}

.page-header .breadcrumbs li:after {
  content: "/";
  display: inline-block;
  font-size: 1.4rem;
  margin: 0 10px;
  vertical-align: middle;
}

.page-header .breadcrumbs li:last-child:after {
  display: none;
}

.page-header .breadcrumbs .fa-home {
  font-size: 2rem;
}

.page-header .breadcrumbs i {
  vertical-align: middle;
}

.page-header .breadcrumbs a,
.page-header .breadcrumbs span {
  color: #c3c3c3;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 20px;
  vertical-align: middle;
}

/* Header Dark - Page Header */
html.dark .page-header {
  box-shadow: 1px 2px 4px 3px #2d2d2d;
}

/* Sidebar Light- Page Header */
html.sidebar-light:not(.dark) .page-header {
  border-left-color: #e6e6e6;
  background: #fff;
  box-shadow: 1px 2px 4px 4px rgba(204, 204, 204, 0.55);
}

html.sidebar-light:not(.dark) .page-header h2 {
  color: #333;
}

html.sidebar-light:not(.dark) .page-header .breadcrumbs a,
html.sidebar-light:not(.dark) .page-header .breadcrumbs span {
  color: #333;
}

html.sidebar-light:not(.dark) .page-header .sidebar-right-toggle i {
  color: #333;
}

html.sidebar-right-opened .page-header .sidebar-right-toggle i:before {
  content: "\f054";
}

/* Page Header - Mobile */
@media only screen and (max-width: 767px) {
  .page-header {
    padding-right: 80px;
  }

  .page-header .breadcrumbs {
    display: none;
  }

  .page-header h2 {
    font-size: 16px;
    padding: 0 15px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
  }

  .page-header .sidebar-right-toggle {
    position: absolute;
    right: 0;
    top: 0;
  }
}
/* Headings */
h1,
h2,
h3,
.h1,
.h2,
.h3 {
  letter-spacing: -1px;
}

h1,
.h1 {
  font-size: 3.6rem;
}

h2,
.h2 {
  font-size: 3rem;
}

h3,
.h3 {
  font-size: 2.4rem;
}

h4,
.h4 {
  font-size: 1.8rem;
}

h5,
.h5 {
  font-size: 1.4rem;
}

h6,
.h6 {
  font-size: 1.2rem;
  letter-spacing: 0;
}

/* Alternative Font Style */
.alternative-font {
  color: #ccc;
  font-family: "Shadows Into Light", cursive;
  font-size: 1.6em;
}

/* Shadow Style 1 */
.shadow-style-1 {
  box-shadow: 10px 10px 74px -15px rgba(74, 74, 74, 0.1);
  -webkit-transition: ease box-shadow 300ms;
  -moz-transition: ease box-shadow 300ms;
  transition: ease box-shadow 300ms;
}

.shadow-style-1:hover {
  box-shadow: 10px 10px 74px -15px rgba(74, 74, 74, 0.4);
}

/* Shadow Style 2 */
.shadow-style-2 {
  box-shadow: 10px 10px 74px -15px rgba(74, 74, 74, 0.4);
}

/* Drop Caps */
p.drop-caps:first-child:first-letter {
  float: left;
  font-size: 75px;
  line-height: 60px;
  padding: 4px;
  margin-right: 5px;
  margin-top: 5px;
  font-family: Georgia;
  color: #171717;
}

p.drop-caps.secondary:first-child:first-letter {
  background-color: #171717;
  color: #fff;
  padding: 6px;
  margin-right: 5px;
  border-radius: 4px;
}

p.drop-caps.colored:first-child:first-letter {
  color: #ccc;
}

p.drop-caps.colored.secondary:first-child:first-letter {
  background-color: #ccc;
  color: #fff;
}

/* Blockquote */
blockquote {
  font-size: 1em;
}

/* Hightlight */
.highlight {
  background-color: #ccc;
  color: #fff;
  padding: 3px 6px;
}

/* Divider Line */
hr {
  border: 0;
  height: 1px;
  background-image: -webkit-linear-gradient(
    left,
    transparent,
    rgba(0, 0, 0, 0.2),
    transparent
  );
  background-image: -moz-linear-gradient(
    left,
    transparent,
    rgba(0, 0, 0, 0.2),
    transparent
  );
  background-image: -ms-linear-gradient(
    left,
    transparent,
    rgba(0, 0, 0, 0.2),
    transparent
  );
  background-image: -o-linear-gradient(
    left,
    transparent,
    rgba(0, 0, 0, 0.2),
    transparent
  );
  margin: 22px 0 22px 0;
}

hr.short {
  margin: 11px 0 11px 0;
}

hr.tall {
  margin: 44px 0 44px 0;
}

hr.taller {
  margin: 66px 0 66px 0;
}

hr.light {
  background-image: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  background-image: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  background-image: -ms-linear-gradient(
    left,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  background-image: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
}

hr.dotted {
  height: 0;
  border-bottom: 1px dotted #ddd;
}

hr.solid {
  height: 0;
  border-bottom: 1px solid #ddd;
}

/* Buttons Icon */
.btn-icon i {
  margin-right: 10px;
}

.btn-icon-right i {
  margin-right: 0;
  margin-left: 10px;
}

/* Form Elements */
input {
  outline: none;
}

label {
  font-weight: normal;
}

textarea {
  resize: vertical;
}

textarea[data-toggle="autosize"] {
  -webkit-transition: height 0.15s ease-in;
  -moz-transition: height 0.15s ease-in;
  transition: height 0.15s ease-in;
}

select {
  border: 1px solid #e5e7e9;
  border-radius: 6px;
  height: 46px;
  padding: 12px;
  outline: none;
}

/* Forms Validations */
label.valid {
  display: inline-block;
  text-indent: -9999px;
}

label.error {
  color: #c10000;
  font-size: 0.9em;
  margin-top: -5px;
  padding: 0;
}

span.error {
  color: #b94a48;
  font-size: 0.9em;
  padding: 0;
}

span.error p {
  margin: 2px 0 2px !important;
}

/* Miscellaneous */
body a,
body a:focus,
body a:hover,
body a:active,
body a:visited {
  outline: none !important;
}

.center {
  text-align: center;
}

.popover .btn {
  margin-right: 5px;
}

.popover .btn:last-child {
  margin-right: 0;
}

ul,
ol {
  margin-bottom: 0;
  padding-left: 27px;
}

blockquote.primary {
  border-color: #ccc;
}

blockquote.success {
  border-color: #47a447;
}

blockquote.warning {
  border-color: #ed9c28;
}

blockquote.danger {
  border-color: #d2322d;
}

blockquote.info {
  border-color: #5bc0de;
}

blockquote.dark {
  border-color: #171717;
}

.well.primary {
  background: #ccc;
  border-color: #b3b3b3;
  color: #fff;
}

.well.success {
  background: #47a447;
  border-color: #388038;
  color: #fff;
}

.well.warning {
  background: #ed9c28;
  border-color: #d18211;
  color: #fff;
}

.well.danger {
  background: #d2322d;
  border-color: #a82824;
  color: #fff;
}

.well.info {
  background: #5bc0de;
  border-color: #31b0d5;
  color: #fff;
}

.well.dark {
  background: #171717;
  border-color: black;
  color: #fff;
}

/* Arrows */
.arrow {
  background: transparent url(../images/arrows.png) no-repeat 0 0;
  width: 47px;
  height: 120px;
  display: inline-block;
  position: relative;
}

.arrow.arrow-light {
  background-image: url(../images/arrows-dark.png);
}

.arrow.vtl {
  background-position: 0 0;
  width: 47px;
  height: 96px;
}

.arrow.vtr {
  background-position: -101px 0;
  width: 47px;
  height: 96px;
}

.arrow.vbl {
  background-position: 0 -144px;
  width: 47px;
  height: 96px;
}

.arrow.vbr {
  background-position: -101px -144px;
  width: 47px;
  height: 96px;
}

.arrow.hlt {
  background-position: -209px 0;
  width: 120px;
  height: 47px;
}

.arrow.hlb {
  background-position: -209px -101px;
  width: 120px;
  height: 47px;
}

.arrow.hrt {
  background-position: -353px 0;
  width: 120px;
  height: 47px;
}

.arrow.hrb {
  background-position: -353px -101px;
  width: 120px;
  height: 47px;
}

.img-thumbnail {
  border-radius: 8px;
  position: relative;
}

.img-thumbnail .zoom {
  display: block;
  position: absolute;
  right: 8px;
  bottom: 8px;
  height: 30px;
  width: 30px;
  padding: 6px;
  font-size: 14px;
  line-height: 18px;
  background: #ccc;
  border-radius: 100%;
  color: #fff;
  text-align: center;
}

.img-thumbnail .zoom i {
  position: relative;
  top: -1px;
  left: -1px;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
  list-style: none;
  margin: 10px 0;
  padding: 0;
}

.thumbnail-gallery .img-thumbnail,
.thumbnail-gallery .thumbnail {
  margin: 10px 10px 0 0;
}

/* Navs */
ul.nav-list.primary > li {
  margin: 0;
  padding: 0;
}

ul.nav-list.primary > li:last-child a {
  border-bottom: transparent !important;
}

ul.nav-list.primary > li a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background-position: 9px 16px;
  background-repeat: no-repeat;
  border-bottom: 1px solid #ededde;
  padding: 8px 20px;
}

.changelog h4 {
  display: inline-block;
  color: #000;
  font-size: 1em;
  font-weight: 600;
}

.changelog .release-date {
  color: #999;
  font-size: 0.9em;
}

.changelog .label {
  display: inline-block;
  min-width: 100px;
}

.scrollable {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.scrollable .scrollable-content {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 18px 0 0;
  overflow-x: hidden;
  overflow-y: scroll;
  outline: none;
}

.scrollable .scrollable-content::-webkit-scrollbar {
  visibility: hidden;
}

.scrollable .scrollable-pane {
  bottom: 0;
  opacity: 0.01;
  position: absolute;
  right: 5px;
  top: 0;
  transition: all 0.2s ease 0s;
  width: 4px;
}

.scrollable .scrollable-slider {
  border-radius: 5px;
  background: none repeat scroll 0 0 #ccc;
  margin: 0;
  position: relative;
  transition: opacity 0.2s ease 0s;
  opacity: 0;
}

html.dark .scrollable .scrollable-slider {
  background-color: #ff685c;
}

.scrollable.scrollable-padding .scrollable-content {
  padding: 10px 24px 10px 10px;
}

.scrollable:hover .scrollable-slider,
.scrollable.visible-slider .scrollable-slider {
  opacity: 1;
}

.text-right {
  text-align: right !important;
}

.text-xs {
  font-size: 1rem;
}

.text-sm {
  font-size: 1.2rem;
}

.text-md {
  font-size: 1.6rem;
}

.text-lg {
  font-size: 1.9rem;
}

.text-xl {
  font-size: 2.2rem;
}

.text-xlg {
  font-size: 2.4rem;
}

.text-muted {
  color: #999 !important;
}

html.dark .text-muted {
  color: #505461 !important;
}

.text-primary {
  color: #ccc !important;
}

.text-secondary {
  color: #e36159 !important;
}

.text-tertiary {
  color: #2baab1 !important;
}

.text-quaternary {
  color: #734ba9 !important;
}

.text-success {
  color: #47a447 !important;
}

.text-warning {
  color: #ed9c28 !important;
}

.text-danger {
  color: #d2322d !important;
}

.text-info {
  color: #5bc0de !important;
}

.text-dark {
  color: #171717 !important;
}

.text-primary-inverse {
  color: #fff !important;
}

.text-secondary-inverse {
  color: #fff !important;
}

.text-tertiary-inverse {
  color: #fff !important;
}

.text-quaternary-inverse {
  color: #fff !important;
}

.text-success-inverse {
  color: #fff !important;
}

.text-warning-inverse {
  color: #fff !important;
}

.text-danger-inverse {
  color: #fff !important;
}

.text-info-inverse {
  color: #fff !important;
}

.text-dark-inverse {
  color: #fff !important;
}

/* weights */
.text-weight-light {
  font-weight: 300;
}

.text-weight-normal {
  font-weight: 400;
}

.text-weight-semibold {
  font-weight: 600;
}

.text-weight-bold {
  font-weight: 700;
}

.text-weight-extrabold {
  font-weight: 900;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.rounded {
  border-radius: 500px;
}

.b-thin {
  border-width: 3px;
}

.b-normal {
  border-width: 5px;
}

.b-thick {
  border-width: 7px;
}

.b-none {
  border: none !important;
}

.list-style-none > li {
  list-style: none !important;
}

/* Spacements */
/* spacement top & bottom */
.m-none {
  margin: 0 !important;
}

.m-auto {
  margin: 0 auto !important;
}

.m-xs {
  margin: 5px !important;
}

.m-sm {
  margin: 10px !important;
}

.m-md {
  margin: 15px !important;
}

.m-lg {
  margin: 20px !important;
}

.m-xl {
  margin: 25px !important;
}

.m-xlg {
  margin: 30px !important;
}

/* spacement top	*/
.mt-none {
  margin-top: 0 !important;
}

.mt-xs {
  margin-top: 5px !important;
}

.mt-sm {
  margin-top: 10px !important;
}

.mt-md {
  margin-top: 15px !important;
}

.mt-lg {
  margin-top: 20px !important;
}

.mt-xl {
  margin-top: 25px !important;
}

.mt-xlg {
  margin-top: 30px !important;
}

.mt-xxlg {
  margin-top: 50px !important;
}
/* spacement bottom	*/
.mb-none {
  margin-bottom: 0 !important;
}

.mb-xs {
  margin-bottom: 5px !important;
}

.mb-sm {
  margin-bottom: 10px !important;
}

.mb-md {
  margin-bottom: 15px !important;
}

.mb-lg {
  margin-bottom: 20px !important;
}

.mb-xl {
  margin-bottom: 25px !important;
}

.mb-xlg {
  margin-bottom: 30px !important;
}

/* spacement left	*/
.ml-none {
  margin-left: 0 !important;
}

.ml-xs {
  margin-left: 5px !important;
}

.ml-sm {
  margin-left: 10px !important;
}

.ml-md {
  margin-left: 15px !important;
}

.ml-lg {
  margin-left: 20px !important;
}

.ml-xl {
  margin-left: 25px !important;
}

.ml-xlg {
  margin-left: 30px !important;
}

/* spacement right	*/
.mr-none {
  margin-right: 0 !important;
}

.mr-xs {
  margin-right: 5px !important;
}

.mr-sm {
  margin-right: 10px !important;
}

.mr-md {
  margin-right: 15px !important;
}

.mr-lg {
  margin-right: 20px !important;
}

.mr-xl {
  margin-right: 25px !important;
}

.mr-xlg {
  margin-right: 30px !important;
}

/* Spacement Padding */
.p-none {
  padding: 0 !important;
}

.p-xs {
  padding: 5px !important;
}

.p-sm {
  padding: 10px !important;
}

.p-md {
  padding: 15px !important;
}

.p-lg {
  padding: 20px !important;
}

.p-xl {
  padding: 25px !important;
}

.p-xlg {
  padding: 30px !important;
}

/* spacement top	*/
.pt-none {
  padding-top: 0 !important;
}

.pt-xs {
  padding-top: 5px !important;
}

.pt-sm {
  padding-top: 10px !important;
}

.pt-md {
  padding-top: 15px !important;
}

.pt-lg {
  padding-top: 20px !important;
}

.pt-xl {
  padding-top: 25px !important;
}

.pt-xlg {
  padding-top: 30px !important;
}

/* spacement bottom	*/
.pb-none {
  padding-bottom: 0 !important;
}

.pb-xs {
  padding-bottom: 5px !important;
}

.pb-sm {
  padding-bottom: 10px !important;
}

.pb-md {
  padding-bottom: 15px !important;
}

.pb-lg {
  padding-bottom: 20px !important;
}

.pb-xl {
  padding-bottom: 25px !important;
}

.pb-xlg {
  padding-bottom: 30px !important;
}

/* spacement left	*/
.pl-none {
  padding-left: 0 !important;
}

.pl-xs {
  padding-left: 5px !important;
}

.pl-sm {
  padding-left: 10px !important;
}

.pl-md {
  padding-left: 15px !important;
}

.pl-lg {
  padding-left: 20px !important;
}

.pl-xl {
  padding-left: 25px !important;
}

.pl-xlg {
  padding-left: 30px !important;
}

/* spacement right	*/
.pr-none {
  padding-right: 0 !important;
}

.pr-xs {
  padding-right: 5px !important;
}

.pr-sm {
  padding-right: 10px !important;
}

.pr-md {
  padding-right: 15px !important;
}

.pr-lg {
  padding-right: 20px !important;
}

.pr-xl {
  padding-right: 25px !important;
}

.pr-xlg {
  padding-right: 30px !important;
}

.ib {
  display: inline-block;
  vertical-align: top;
}

.va-middle {
  vertical-align: middle;
}

.ws-nowrap {
  white-space: nowrap;
}

.ws-normal {
  white-space: normal;
}

.bg-none {
  background: none !important;
}

.bg-light {
  background-color: #fff;
}

.bg-default {
  background: #ebebeb;
  color: #777;
}

.bg-primary {
  background: #ccc;
  color: #fff;
}

.bg-secondary {
  background: #e36159;
  color: #fff;
}

.bg-tertiary {
  background: #2baab1;
  color: #fff;
}

.bg-quaternary {
  background: #734ba9;
  color: #fff;
}

.bg-success {
  background: #47a447;
  color: #fff;
}

.bg-warning {
  background: #ed9c28;
  color: #fff;
}

.bg-danger {
  background: #d2322d;
  color: #fff;
}

.bg-info {
  background: #5bc0de;
  color: #fff;
}

.bg-dark {
  background: #171717;
  color: #fff;
}

/* Container */
.container-xl {
  width: 100%;
  max-width: 1630px;
}

/* Form - iOS Override */
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
textarea {
  -webkit-appearance: none;
}

.form-control::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="datetime"]::-webkit-input-placeholder,
input[type="datetime-local"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
input[type="month"]::-webkit-input-placeholder,
input[type="time"]::-webkit-input-placeholder,
input[type="week"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="color"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #bdbdbd;
}

.form-control::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="datetime"]::-moz-placeholder,
input[type="datetime-local"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
input[type="month"]::-moz-placeholder,
input[type="time"]::-moz-placeholder,
input[type="week"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="color"]::-moz-placeholder,
textarea::-moz-placeholder {
  color: #bdbdbd;
}

.form-control:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="datetime"]:-ms-input-placeholder,
input[type="datetime-local"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
input[type="month"]:-ms-input-placeholder,
input[type="time"]:-ms-input-placeholder,
input[type="week"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="color"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #bdbdbd;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}

html.dark .form-control {
  background-color: #383838;
  border-color: #4c4e51;
  color: #eee;
}

html.dark .form-control[disabled],
html.dark .form-control[readonly],
html.dark fieldset[disabled] .form-control {
  background-color: #303030;
}

html.dark .input-group-addon {
  background-color: #2f2f2f !important;
  border-color: #4c4e51;
  color: #eee;
}

/* Form - Bootstrap Override */
.btn-lg,
.btn-group-lg > .btn {
  line-height: 1.334;
}

select.input-sm,
select.input-lg {
  line-height: 1;
}

.bootstrap-timepicker-widget input {
  border: 0;
}

.bootstrap-timepicker-widget table td input {
  width: 40px !important;
}

/* Form - Custom Fields */
.required {
  display: inline-block;
  color: #d2322d;
  font-size: 0.8em;
  font-weight: bold;
  position: relative;
  top: -0.2em;
}

label.error {
  color: #b94a48;
  margin-top: 2px;
}

/* Form - Group Override */
.form-group:after {
  clear: both;
  display: block;
  content: "";
}

.form-group:last-child,
.form-group:last-of-type {
  margin-bottom: 0;
}

/* Form - Bordered */
.form-bordered .form-group {
  border-bottom: 1px solid #eff2f7;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.form-bordered .form-group:last-child,
.form-bordered .form-group:last-of-type {
  border-bottom: none !important;
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

/* Dark - Form - Bordered */
html.dark .form-bordered .form-group {
  border-bottom: 1px solid #3c3e42;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

/* Form - Vertical Group / Stacked */
.form-group-vertical {
  position: relative;
  white-space: nowrap;
}

.form-group-vertical .form-control {
  border-radius: 0;
  margin-top: -1px;
  z-index: 1;
}

.form-group-vertical .form-control:first-child,
.form-group-vertical .form-control:first-of-type {
  border-radius: 4px 4px 0 0;
}

.form-group-vertical .form-control:last-child,
.form-group-vertical .form-control:last-of-type {
  border-radius: 0 0 4px 4px;
}

.form-group-vertical .form-control:focus {
  position: relative;
  z-index: 2;
}

.form-group-vertical .input-group {
  margin-top: -1px;
}

.form-group-vertical .input-group .form-control {
  margin-top: 0;
}

.form-group-vertical .input-group:first-child .input-group-addon,
.form-group-vertical .input-group:first-of-type .input-group-addon {
  border-radius: 4px 0 0 0;
}

.form-group-vertical .input-group:first-child .form-control,
.form-group-vertical .input-group:first-of-type .form-control {
  border-radius: 0 4px 0 0;
}

.form-group-vertical .input-group:last-child .input-group-addon,
.form-group-vertical .input-group:last-of-type .input-group-addon {
  border-radius: 0 0 0 4px;
}

.form-group-vertical .input-group:last-child .form-control,
.form-group-vertical .input-group:last-of-type .form-control {
  border-radius: 0 0 4px 0;
}

.form-group-vertical
  .input-group.input-group-icon:first-child
  .input-group-addon,
.form-group-vertical
  .input-group.input-group-icon:first-of-type
  .input-group-addon {
  border-radius: 4px 4px 0 0;
}

.form-group-vertical .input-group.input-group-icon:first-child .form-control,
.form-group-vertical .input-group.input-group-icon:first-of-type .form-control {
  border-radius: 4px 4px 0 0;
}

.form-group-vertical
  .input-group.input-group-icon:last-child
  .input-group-addon,
.form-group-vertical
  .input-group.input-group-icon:last-of-type
  .input-group-addon {
  border-radius: 0 0 4px 4px;
}

.form-group-vertical .input-group.input-group-icon:last-child .form-control,
.form-group-vertical .input-group.input-group-icon:last-of-type .form-control {
  border-radius: 0 0 4px 4px;
}

/* Form - Input Override */
.input-lg {
  border-radius: 4px;
}

/* Form - Input Icon */
.input-group-icon,
.input-search {
  width: 100%;
  table-layout: fixed;
}

.input-group-icon input.form-control,
.input-search input.form-control {
  font-size: 1.2rem;
  padding-right: 36px;
}

.input-group-icon input.form-control:first-child,
.input-group-icon input.form-control:last-child,
.input-search input.form-control:first-child,
.input-search input.form-control:last-child {
  border-radius: 4px;
}

.input-group-icon .input-group-btn,
.input-search .input-group-btn {
  border-radius: 500px;
  width: 0;
}

.input-group-icon .input-group-btn:first-child,
.input-group-icon .input-group-btn:last-child,
.input-search .input-group-btn:first-child,
.input-search .input-group-btn:last-child {
  border-radius: 500px;
}

.input-group-icon .input-group-btn button,
.input-search .input-group-btn button {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border: 0;
  z-index: 3;
  background: transparent;
}

.input-group-icon .input-group-btn button:active,
.input-search .input-group-btn button:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.input-group-icon .input-group-btn:last-child button,
.input-search .input-group-btn:last-child button {
  left: auto;
  right: 0;
}

.input-group-icon .input-group-btn + input.form-control,
.input-search .input-group-btn + input.form-control {
  padding-right: 12px;
  padding-left: 36px;
}

.input-group-icon .input-group-addon,
.input-search .input-group-addon {
  position: relative;
  padding: 0;
  border: 0 none;
  width: 0;
}

.input-group-icon .input-group-addon span.icon,
.input-search .input-group-addon span.icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border: 0;
  z-index: 3;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  padding: 6px 12px;
  background: transparent;
  line-height: 1.42857143;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  pointer-events: none;
}

.input-group-icon .input-group-addon span.icon.icon-lg,
.input-search .input-group-addon span.icon.icon-lg {
  padding: 10px 14px;
  font-size: 18px;
}

.input-group-icon .input-group-addon:last-child span.icon,
.input-search .input-group-addon:last-child span.icon {
  left: auto;
  right: 0;
}

.input-group-icon .input-group-addon + input.form-control,
.input-search .input-group-addon + input.form-control {
  padding-right: 12px;
  padding-left: 36px;
}

/* Form - Input Search */
.input-search {
  width: 100%;
}

.input-search input.form-control:focus {
  border-color: #ccc;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.input-search .input-group-btn {
  color: #ccc;
}

.input-search .input-group-btn .btn {
  padding-left: 15px;
}

.input-search .input-group-btn .btn-default {
  color: #ccc;
}

/* Dark */
.input-search {
  width: 100%;
}

.input-search input.form-control:focus {
  border-color: #1d2127;
}

.input-search .input-group-btn .btn {
  background: transparent !important;
}

/* Form - Round Input */
input.input-rounded {
  -webkit-border-radius: 500px;
  border-radius: 500px;
}

.input-group-rounded input.form-control,
.input-search input.form-control {
  -webkit-border-radius: 500px;
  border-radius: 500px;
}

.input-group-rounded input.form-control:first-child,
.input-group-rounded input.form-control:last-child {
  border-radius: 500px;
}

.input-group-rounded .input-group-addon:first-child,
.input-search .input-group-addon:first-child {
  border-radius: 500px 0 0 500px;
}

.input-group-rounded .input-group-addon:last-child,
.input-search .input-group-addon:last-child {
  border-radius: 0 500px 500px 0;
}

/* Form - Custom Checkbox */
.checkbox-replace .i-checks {
  padding-left: 20px;
  cursor: pointer;
  margin-bottom: 0;
}

.checkbox-replace .i-checks input {
  position: absolute;
  margin-left: -20px;
  opacity: 0;
}

.checkbox-replace .i-checks input:checked + span .active {
  display: inherit;
}

.checkbox-replace .i-checks > span {
  margin-left: -20px;
}

.checkbox-replace .i-checks > span .active {
  display: none;
}

.checkbox-replace .i-checks > i {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: -2px;
  margin-right: 4px;
  margin-left: -20px;
  line-height: 1;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid #cfdadd;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

html.dark .checkbox-replace .i-checks > i {
  border-color: #535353;
}

.checkbox-replace .i-checks > i:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  background-color: var(--theme-primary);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.checkbox-replace .i-checks input:checked + i {
  border-color: var(--theme-primary);
}

html.dark .checkbox-replace .i-checks input:checked + i {
  border-color: #ff685c;
}

.checkbox-replace .i-checks input:checked + i:before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

html.dark .checkbox-replace .i-checks input:checked + i:before {
  background-color: #ff685c;
}

.checkbox-replace .i-checks input:disabled + i {
  cursor: not-allowed;
  border-color: #dee5e7;
}

.checkbox-replace .i-checks input:disabled + i:before {
  background-color: #dee5e7;
}

html.dark .checkbox-replace .i-checks input:disabled + i {
  border-color: #4c4c4d;
}

html.dark .checkbox-replace .i-checks input:disabled + i:before {
  background-color: #4c4c4d;
}

/* Form - Custom Radio */
.radio-custom {
  position: relative;
  padding: 0 0 0 25px;
  margin-bottom: 7px;
  margin-top: 0;
}

.radio-custom.radio-inline {
  display: inline-block;
  vertical-align: middle;
}

.form-group .radio-custom.radio-inline {
  margin-top: 7px;
  padding-top: 0;
}

.radio-custom:last-child,
.radio-custom:last-of-type {
  margin-bottom: 5px;
}

.radio-custom input[type="radio"] {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 3px;
  margin: -6px 0 0 0;
  z-index: 2;
  cursor: pointer;
}

.radio-custom input[type="radio"]:checked + label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  margin-top: -5px;
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  width: 10px;
  height: 10px;
  background-color: #444;
  border-radius: 50px;
  -webkit-box-shadow: 0px 0px 1px #444;
  box-shadow: 0px 0px 1px #444;
}

.radio-custom input[type="radio"]:disabled {
  cursor: not-allowed;
}

.radio-custom input[type="radio"]:disabled:checked + label:after {
  color: #999;
}

.radio-custom input[type="radio"]:disabled + label {
  cursor: not-allowed;
}

.radio-custom input[type="radio"]:disabled + label:before {
  background-color: #eee;
}

.radio-custom label {
  cursor: pointer;
  margin-bottom: 0;
  text-align: left;
  line-height: 1.2;
}

.radio-custom label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -9px;
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 50px;
  border: 1px solid #bbb;
  background: #fff;
}

.radio-custom label + label.error {
  display: block;
}

html.dark .radio-custom label:before {
  background: #383838;
  border-color: #303030;
}

html.dark .radio-custom input[type="radio"]:checked + label:after {
  background-color: #fff;
}

html.dark .radio-custom input[type="radio"]:disabled + label:before {
  background: #242830;
  border-color: #242830;
}

html.dark .radio-primary input[type="radio"]:checked + label:after,
.radio-primary input[type="radio"]:checked + label:after {
  background: #ccc;
  -webkit-box-shadow: 0px 0px 1px #ccc;
  box-shadow: 0px 0px 1px #ccc;
}

html.dark .radio-success input[type="radio"]:checked + label:after,
.radio-success input[type="radio"]:checked + label:after {
  background: #47a447;
  -webkit-box-shadow: 0px 0px 1px #47a447;
  box-shadow: 0px 0px 1px #47a447;
}

html.dark .radio-warning input[type="radio"]:checked + label:after,
.radio-warning input[type="radio"]:checked + label:after {
  background: #ed9c28;
  -webkit-box-shadow: 0px 0px 1px #ed9c28;
  box-shadow: 0px 0px 1px #ed9c28;
}

html.dark .radio-danger input[type="radio"]:checked + label:after,
.radio-danger input[type="radio"]:checked + label:after {
  background: #d2322d;
  -webkit-box-shadow: 0px 0px 1px #d2322d;
  box-shadow: 0px 0px 1px #d2322d;
}

html.dark .radio-info input[type="radio"]:checked + label:after,
.radio-info input[type="radio"]:checked + label:after {
  background: #5bc0de;
  -webkit-box-shadow: 0px 0px 1px #5bc0de;
  box-shadow: 0px 0px 1px #5bc0de;
}

html.dark .radio-dark input[type="radio"]:checked + label:after,
.radio-dark input[type="radio"]:checked + label:after {
  background: #171717;
  -webkit-box-shadow: 0px 0px 1px #171717;
  box-shadow: 0px 0px 1px #171717;
}

/* Form - Error Container */
div.validation-message ul {
  display: none;
  list-style: none;
  margin: -15px -15px 15px -15px;
  padding: 15px;
  border-bottom: 1px solid #ffcbcb;
  background: #ffefef;
}

div.validation-message ul label.error {
  display: block;
  padding-left: 22px;
  position: relative;
}

div.validation-message ul label.error:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00d";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  color: #d9534f;
  display: inline-block;
}

.select2-drop-mask {
  z-index: 10010;
}

.select2-drop {
  z-index: 10011;
}

.select2-search {
  z-index: 10012;
}

.select2-container--bootstrap.select2-container--open {
  z-index: 10013;
}

.select2-container--bootstrap
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 1.5;
}

@media (max-width: 991px) {
  .select2-container--bootstrap {
    width: auto !important;
  }
}

.bootstrap-maxlength {
  z-index: 999999 !important;
}

html.dark .fileupload .uneditable-input {
  background-color: #383838;
  border-color: #383838;
}

html.dark .fileupload-new .input-append .btn-file {
  border-color: #303030;
}

/* Nano Scroller Plugin */
html.no-overflowscrolling .nano {
  height: 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
}

html.no-overflowscrolling .nano > .nano-content {
  bottom: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
  right: 0;
  top: 0;
}

html.no-overflowscrolling .nano > .nano-content:focus {
  outline: none;
}

html.no-overflowscrolling .nano > .nano-content::-webkit-scrollbar {
  display: none;
  visibility: hidden;
}

html.no-overflowscrolling
  .nano.has-scrollbar
  > .nano-content::-webkit-scrollbar {
  display: block;
  visibility: visible;
}

html.no-overflowscrolling .nano > .nano-pane {
  bottom: 0;
  position: absolute;
  opacity: 0.01;
  right: 0;
  top: 0;
  visibility: hidden\9;
  /* Target only IE7 and IE8 with this hack */
  width: 4px;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

html.no-overflowscrolling .nano > .nano-pane > .nano-slider {
  background: #ccc;
  margin: 0;
  position: relative;
  visibility: hidden;
}

html.no-overflowscrolling .nano:hover > .nano-pane,
html.no-overflowscrolling .nano .nano-pane.active,
html.no-overflowscrolling .nano .nano-pane.flashed {
  opacity: 0.99;
}

html.no-overflowscrolling .nano:hover > .nano-pane > .nano-slider {
  visibility: visible;
}

html.no-overflowscrolling.custom-scroll .nano > .nano-content {
  overflow: scroll;
  overflow-x: hidden;
}

html.no-overflowscrolling .sidebar-left .nano {
  background: #313131;
  box-shadow: -5px 0 0 #3e3e3e inset;
}

html.no-overflowscrolling.sidebar-light:not(.dark) .sidebar-left .nano {
  background: #fff;
  box-shadow: -5px 0 0 #f6f6f6 inset;
}

html.no-overflowscrolling.sidebar-light:not(.dark) .sidebar-right .nano {
  background: #f6f6f6;
  box-shadow: -5px 0 0 #f6f6f6 inset;
}

html.no-overflowscrolling.sidebar-light:not(.dark) .inner-menu .nano {
  background: #fff;
  box-shadow: -5px 0 0 #e2e3e6 inset;
}

@media only screen and (max-width: 767px) {
  html.no-overflowscrolling .sidebar-left .nano > .nano-content,
  html.no-overflowscrolling .sidebar-right .nano > .nano-content,
  html.no-overflowscrolling .inner-menu .nano > .nano-content {
    overflow: scroll !important;
    overflow-x: hidden !important;
  }
}

@media only screen and (min-width: 768px) {
  html.overflowscrolling.fixed .sidebar-left .nano,
  html.overflowscrolling.fixed .sidebar-right .nano,
  html.overflowscrolling.fixed .inner-menu .nano {
    height: 100%;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }

  html.overflowscrolling.fixed .sidebar-left .nano > .nano-pane > .nano-slider,
  html.overflowscrolling.fixed .sidebar-right .nano > .nano-pane > .nano-slider,
  html.overflowscrolling.fixed .inner-menu .nano > .nano-pane > .nano-slider {
    visibility: visible;
  }

  html.overflowscrolling.fixed.custom-scroll
    .sidebar-left
    .nano
    > .nano-content,
  html.overflowscrolling.fixed.custom-scroll
    .sidebar-right
    .nano
    > .nano-content,
  html.overflowscrolling.fixed.custom-scroll .inner-menu .nano > .nano-content {
    overflow-y: scroll;
    overflow-x: hidden;
  }
}
/* Toolbar */
.inner-toolbar {
  background: #313131;
  margin: -40px -40px 30px;
  padding: 0;
  border: 1px solid transparent;
  border-left: 1px solid #121418;
}

.inner-toolbar > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inner-toolbar > ul > li {
  display: inline-block;
  padding: 15px;
  font-size: 13px;
  border-right: 1px solid #121418;
}

.inner-toolbar > ul > li > a {
  display: inline-block;
  padding: 0;
  color: #abb4be;
}

.inner-toolbar > ul > li > a:hover,
.inner-toolbar > ul > li > a:focus {
  color: #fff;
  text-decoration: none;
}

.inner-toolbar > ul > li.right {
  float: right;
  padding-right: 10px;
}

.inner-toolbar > ul > li i.fa {
  font-size: 14px;
}

.inner-toolbar > ul > li > .btn {
  margin-top: -6px;
}

.inner-toolbar .nav-pills {
  margin-top: -8px;
}

.inner-toolbar .nav-pills > li > label {
  margin-bottom: 0;
  margin-right: 12px;
  margin-top: 8px;
}

.inner-toolbar .nav-pills a {
  color: #abb4be;
  padding-top: 8px;
  padding-bottom: 8px;
}

.inner-toolbar .nav-pills a:hover {
  background: #171717;
  color: #fff;
}

.inner-toolbar .nav-pills .active a {
  color: #fff;
}

html.sidebar-light:not(.dark) .inner-toolbar {
  background: #e2e3e6;
  border: 1px solid #d5d6d7;
}

html.sidebar-light:not(.dark) .inner-toolbar > ul > li {
  border-right: 1px solid #d5d6d7;
}

html.sidebar-light:not(.dark) .inner-toolbar > ul > li > a {
  color: #777;
}

html.sidebar-light:not(.dark) .inner-toolbar > ul > li > a:hover,
html.sidebar-light:not(.dark) .inner-toolbar > ul > li > a:focus {
  color: #999;
}

html.sidebar-light:not(.dark) .inner-toolbar .nav-pills li:not(.active) a {
  color: #777;
}

html.sidebar-light:not(.dark)
  .inner-toolbar
  .nav-pills
  li:not(.active)
  a:hover {
  background: #e2e3e6;
  color: #999;
}

/* Toolbar - Responsive */
@media only screen and (max-width: 767px) {
  .inner-toolbar {
    clear: both;
    margin: -40px -15px 30px;
    padding: 0 15px;
  }

  .inner-toolbar ul > li {
    border-right: 0;
  }

  .inner-toolbar ul > li:first-child {
    padding-left: 0;
  }

  .inner-toolbar ul > li.right {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (max-width: 480px) {
  .inner-toolbar .nav-pills a {
    padding-left: 10px;
    padding-right: 10px;
  }

  .inner-toolbar ul > li.right {
    clear: both;
    float: none;
    vertical-align: top;
  }
}
/* Toolbar + Layout Fixed */
@media only screen and (min-width: 768px) {
  html.fixed .inner-toolbar {
    left: 300px;
    right: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 114px;
    z-index: 1001;
  }
}
/* dark */
html.dark .inner-toolbar {
  border-left: none;
  border-bottom: 1px solid #242830;
}

html.dark .inner-toolbar > ul > li {
  border-color: #242830;
}

.call-to-action {
  padding: 25px;
  border-radius: 5px;
}

.call-to-action.call-to-action-primary {
  background-color: #ccc;
}

.call-to-action .call-to-action-content {
  text-align: left;
}

.call-to-action .call-to-action-content h2 {
  color: #fff;
  font-weight: 100;
}

.call-to-action .call-to-action-content p {
  color: #fff;
  font-size: 16px;
  font-weight: 100;
}

.call-to-action .call-to-action-btn {
  margin-top: 45px;
}

.call-to-action .call-to-action-btn a.btn:not(.btn-primary) {
  background-color: #006699;
  border-color: #006699 #006699 #004466;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  padding: 12px 33px;
  margin-right: 15px;
}

.call-to-action .call-to-action-btn a.btn:not(.btn-primary):hover {
  background-color: #0077b3;
  border-color: #0077b3 #0077b3 #005580;
}

.call-to-action .call-to-action-btn > span {
  position: relative;
  color: #fff;
}

.call-to-action .call-to-action-btn > span .arrow {
  position: absolute;
  top: -55px;
  left: -70px;
}

@media (max-width: 1276px) {
  .call-to-action .call-to-action-btn > span {
    display: none;
  }
}

@media (max-width: 767px) {
  .call-to-action .call-to-action-btn {
    margin-top: 0;
    float: none !important;
  }
}

.call-to-action.call-to-action-grey {
  position: relative;
  background-color: #ecedf0;
}

.call-to-action.call-to-action-grey:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #ecedf0;
  z-index: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.call-to-action.call-to-action-grey .call-to-action-content h2 {
  color: #171717;
}

.call-to-action.call-to-action-grey .call-to-action-content p {
  color: #777;
}

.call-to-action.call-to-action-top {
  margin: -40px;
  border-radius: 0;
  padding: 40px 25px;
}

@media (max-width: 767px) {
  .call-to-action.call-to-action-top {
    margin-top: -16px;
  }
}

/* Responsive */
html:not(.sidebar-left-collapsed) {
  /* Boxed Layout */
}

@media (max-width: 1400px) {
  html:not(.sidebar-left-collapsed) .call-to-action .call-to-action-btn > span {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  html:not(.sidebar-left-collapsed) .call-to-action .call-to-action-btn {
    margin-top: 0;
    float: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  html:not(.sidebar-left-collapsed) .call-to-action .col-sm-4,
  html:not(.sidebar-left-collapsed) .call-to-action .col-sm-8,
  html:not(.sidebar-left-collapsed) .call-to-action .col-sm-3,
  html:not(.sidebar-left-collapsed) .call-to-action .col-sm-9 {
    width: 100%;
  }
}

html:not(.sidebar-left-collapsed).boxed .call-to-action .call-to-action-btn {
  margin-top: 0;
  float: none !important;
}

html:not(.sidebar-left-collapsed).boxed
  .call-to-action
  .call-to-action-btn
  > span {
  display: none;
}

.loading-overlay-showing {
  overflow: hidden;
}

.loading-overlay-showing > .loading-overlay {
  opacity: 1;
  visibility: visible;
}

.loading-overlay {
  transition:
    visibility 0s ease-in-out 0.5s,
    opacity 0.5s ease-in-out;
  bottom: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  right: 0;
  top: 0;
  visibility: hidden;
}

.loading-overlay.dark {
  background: #383838;
}

.loading-overlay.light {
  background: #fff;
}

body > .loading-overlay {
  position: fixed;
  z-index: 999999;
}

/* ring Loading */
.ring-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: url(../images/loading_gif.gif) center no-repeat #fff;
  #border: 3px solid var(--theme-primary);
  border-radius: 50%;
  text-align: center;
  line-height: 150px;
  font-family: sans-serif;
  font-size: 20px;
  color: var(--theme-primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 0 10px var(--theme-primary);
  #box-shadow: 0 0 20px rgba(0, 0, 0, 0.39);
}

.ring-loader:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 3px solid var(--theme-primary);
  border-right: 3px solid var(--theme-primary);
  border-radius: 50%;
  -webkit-animation: animateCircle 2s linear infinite;
  animation: animateCircle 2s linear infinite;
}

.ring-loader span {
  display: block;
  position: absolute;
  top: calc(50% - 2px);
  left: 50%;
  width: 50%;
  height: 4px;
  background: transparent;
  transform-origin: left;
  -webkit-animation: animate 2s linear infinite;
  animation: animate 2s linear infinite;
}

.ring-loader span:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--theme-primary);
  top: -6px;
  right: -8px;
  box-shadow: 0 0 20px var(--theme-primary);
}

@keyframes animateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes animateCircle {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes animate {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(405deg);
  }
}
@-webkit-keyframes animate {
  0% {
    -webkit-transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(405deg);
  }
}

.img-rounded {
  border-radius: 6px;
}

.img-circle {
  border-radius: 50%;
}

.img-thumbnail {
  border-radius: 8px;
  position: relative;
}
.lang-img {
  max-height: 40px;
}

body {
  /* Button Basic */
  /* Border Buttons */
  /* Border Buttons - Sizes */
  /* 3D Buttons */
  /* Sizes */
  /* Buttons - Social */
  /* Buttons - States */
}

body .btn:focus,
body .btn:active:focus,
body .btn.active:focus {
  outline: none;
}

body .btn {
  white-space: normal;
  transition: 0.3s;
}

body .btn-borders {
  border-width: 3px;
}

body .btn-borders.btn-primary {
  background: transparent;
  border-color: #ccc;
  color: #ccc;
  text-shadow: none;
}

body .btn-borders.btn-primary:hover,
body .btn-borders.btn-primary:focus {
  background-color: #d9d9d9;
  border-color: #ccc !important;
  color: #fff;
}

body .btn-borders.btn-success {
  background: transparent;
  border-color: #47a447;
  color: #47a447;
  text-shadow: none;
}

body .btn-borders.btn-success:hover,
body .btn-borders.btn-success:focus {
  background-color: #51b451;
  border-color: #47a447 !important;
  color: #fff;
}

body .btn-borders.btn-warning {
  background: transparent;
  border-color: #ed9c28;
  color: #ed9c28;
  text-shadow: none;
}

body .btn-borders.btn-warning:hover,
body .btn-borders.btn-warning:focus {
  background-color: #efa740;
  border-color: #ed9c28 !important;
  color: #fff;
}

body .btn-borders.btn-danger {
  background: transparent;
  border-color: #d2322d;
  color: #d2322d;
  text-shadow: none;
}

body .btn-borders.btn-danger:hover,
body .btn-borders.btn-danger:focus {
  background-color: #d74742;
  border-color: #d2322d !important;
  color: #fff;
}

body .btn-borders.btn-info {
  background: transparent;
  border-color: #5bc0de;
  color: #5bc0de;
  text-shadow: none;
}

body .btn-borders.btn-info:hover,
body .btn-borders.btn-info:focus {
  background-color: #70c8e2;
  border-color: #5bc0de !important;
  color: #fff;
}

body .btn-borders.btn-dark {
  background: transparent;
  border-color: #171717;
  color: #171717;
  text-shadow: none;
}

body .btn-borders.btn-dark:hover,
body .btn-borders.btn-dark:focus {
  background-color: #242424;
  border-color: #171717 !important;
  color: #fff;
}

body .btn-borders {
  padding: 4px 12px;
}

body .btn-borders.btn-lg,
body .btn-group-lg > .btn-borders.btn {
  padding: 8px 16px;
}

body .btn-borders.btn-sm,
body .btn-group-sm > .btn-borders.btn {
  border-width: 2px;
  padding: 4px 10px;
}

body .btn-borders.btn-xs,
body .btn-group-xs > .btn-borders.btn {
  padding: 1px 5px;
  border-width: 1px;
}

body .btn-3d {
  border-bottom-width: 3px;
  padding: 5px 12px;
  border-radius: 6px;
}

body .btn-3d.btn-lg,
body .btn-group-lg > .btn-3d.btn {
  padding: 9px 16px;
}

body .btn-3d.btn-sm,
body .btn-group-sm > .btn-3d.btn {
  border-width: 2px;
  padding: 4px 10px;
}

body .btn-3d.btn-xs,
body .btn-group-xs > .btn-3d.btn {
  padding: 1px 5px;
  border-width: 1px;
}

body .btn-xlg {
  border-radius: 6px;
  font-size: 16px;
  padding: 12px 33px;
}

body .btn-facebook,
body .btn-facebook:active,
body .btn-facebook:hover,
body .btn-facebook:focus,
body .btn-twitter,
body .btn-twitter:active,
body .btn-twitter:hover,
body .btn-twitter:focus,
body .btn-gplus,
body .btn-gplus:active,
body .btn-gplus:hover,
body .btn-gplus:focus {
  color: #fff;
  font-weight: 300;
  padding-left: 30px;
  padding-right: 30px;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}

body .btn-facebook,
body .btn-facebook:focus {
  background: #3b5998;
  border: 1px solid #37538d;
}

body .btn-facebook:hover {
  background: #4162a7;
  border-color: #3d5c9c;
}

body .btn-facebook:active {
  background: #37538d;
  border-color: #334d82;
}

body .btn-twitter,
body .btn-twitter:focus {
  background: #55acee;
  border: 1px solid #47a5ed;
}

body .btn-twitter:hover {
  background: #63b3ef;
  border-color: #55acee;
}

body .btn-twitter:active {
  background: #47a5ed;
  border-color: #399eec;
}

body .btn-gplus,
body .btn-gplus:focus {
  background: #d95232;
  border: 1px solid #d44927;
}

body .btn-gplus:hover {
  background: #dc6143;
  border-color: #da5635;
}

body .btn-gplus:active {
  background: #d04727;
  border-color: #c34324;
}

body .btn-primary {
  border-color: #ccc;
  background-color: #ccc;
  border-color: #ccc #ccc #b3b3b3;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

body .btn-primary:hover {
  border-color: #d9d9d9;
  background-color: #d9d9d9;
  color: #fff;
}

body .btn-primary:active,
body .btn-primary:focus {
  border-color: #bfbfbf;
  background-color: #bfbfbf;
  color: #fff;
}

body .btn-primary.dropdown-toggle {
  border-left-color: #bfbfbf;
}

body .btn-primary[disabled] {
  border-color: white;
  background-color: white;
}

body .btn-success {
  border-color: #47a447;
  background-color: #47a447;
  border-color: #47a447 #47a447 #388038;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

body .btn-success:hover {
  border-color: #51b451;
  background-color: #51b451;
  color: #fff;
}

body .btn-success:active,
body .btn-success:focus {
  border-color: #3f923f;
  background-color: #3f923f;
  color: #fff;
}

body .btn-success.dropdown-toggle {
  border-left-color: #3f923f;
}

body .btn-success[disabled] {
  border-color: #86cb86;
  background-color: #86cb86;
}

body .btn-warning {
  border-color: #ed9c28;
  background-color: #ed9c28;
  border-color: #ed9c28 #ed9c28 #d18211;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

body .btn-warning:hover {
  border-color: #efa740;
  background-color: #efa740;
  color: #fff;
}

body .btn-warning:active,
body .btn-warning:focus {
  border-color: #e89113;
  background-color: #e89113;
  color: #fff;
}

body .btn-warning.dropdown-toggle {
  border-left-color: #e89113;
}

body .btn-warning[disabled] {
  border-color: #f5c786;
  background-color: #f5c786;
}

body .btn-danger {
  border-color: #d2322d;
  background-color: #d2322d;
  border-color: #d2322d #d2322d #a82824;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

body .btn-danger:hover {
  border-color: #d74742;
  background-color: #d74742;
  color: #fff;
}

body .btn-danger:active,
body .btn-danger:focus {
  border-color: #bd2d29;
  background-color: #bd2d29;
  color: #fff;
}

body .btn-danger.dropdown-toggle {
  border-left-color: #bd2d29;
}

body .btn-danger[disabled] {
  border-color: #e48481;
  background-color: #e48481;
}

body .btn-info {
  border-color: #5bc0de;
  background-color: #5bc0de;
  border-color: #5bc0de #5bc0de #31b0d5;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

body .btn-info:hover {
  border-color: #70c8e2;
  background-color: #70c8e2;
  color: #fff;
}

body .btn-info:active,
body .btn-info:focus {
  border-color: #46b8da;
  background-color: #46b8da;
  color: #fff;
}

body .btn-info.dropdown-toggle {
  border-left-color: #46b8da;
}

body .btn-info[disabled] {
  border-color: #b0e1ef;
  background-color: #b0e1ef;
}

body .btn-dark {
  border-color: #171717;
  background-color: #171717;
  border-color: #171717 #171717 black;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

body .btn-dark:hover {
  border-color: #242424;
  background-color: #242424;
  color: #fff;
}

body .btn-dark:active,
body .btn-dark:focus {
  border-color: #0a0a0a;
  background-color: #0a0a0a;
  color: #fff;
}

body .btn-dark.dropdown-toggle {
  border-left-color: #0a0a0a;
}

body .btn-dark[disabled] {
  border-color: #4a4a4a;
  background-color: #4a4a4a;
}

html.dark .btn-default {
  background-color: #383838;
  border-color: #4c4e51;
  color: #eee;
}

html.dark .btn-default:hover {
  background-color: #272727;
  border-color: #434548;
}

html.dark .btn-default:focus,
html.dark .btn-default:active {
  background-color: #232323;
  border-color: #3f4245;
}

html.dark .btn-default:focus,
html.dark .btn-default:active,
html.dark .btn-default.active,
html.dark .open > .dropdown-toggle.btn-default {
  color: #eee;
  background-color: #232323;
  border-color: #3f4245;
}

/* Notifications */
.header-menu {
  list-style: none;
  margin: 4px -10px 0 0;
  padding-left: 10px;
}

.header-menu > li {
  float: left;
  margin: -4px 17px 0 0;
  position: relative;
}

.header-menu > li .header-menu-icon {
  background: transparent;
  display: inline-block;
  height: 30px;
  width: 30px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.header-menu .header-menu-icon:before {
  display: block;
  position: absolute;
  height: 30px;
  width: 30px;
  content: "";
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.07);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #fff;
  border: 1px solid #ddd;
  z-index: -1;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

html.dark .header-menu .header-menu-icon:before {
  box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.18);
}

.header-menu .open .header-menu-icon:before {
  background-color: #ddd;
}

.header-menu > li .header-menu-icon i {
  color: #777;
  line-height: 30px;
  vertical-align: middle;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.header-left .header-menu > li .header-menu-icon {
  cursor: pointer;
}

html.dark .header-menu > li .header-menu-icon i {
  color: #7d7d7d;
}

html.dark .header-menu > li .header-menu-icon:hover i {
  color: #ccc;
}

.header-menu > li .header-menu-icon .badge {
  background: #d2312d;
  color: #fff;
  font-size: 10px;
  font-weight: normal;
  height: 16px;
  padding: 3px 5px 3px 5px;
  position: absolute;
  right: -8px;
  top: -3px;
  border-radius: 100%;
}

.header-menu > li > a {
  border: none;
  display: inline-block;
}

.header-menu .header-menubox {
  background: #fff;
  display: block;
  visibility: hidden;
  opacity: 0;
  border: 1px solid #d1d1d1;
  box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.15);
  left: auto;
  margin: 30px 0 0 0;
  padding: 0;
  right: -5px;
  width: 245px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-left .header-menu .header-menubox {
  width: auto !important;
}

.header-right .header-menu .header-menubox {
  width: 245px;
}

.header-menubox .short-q {
  padding: 6px;
}

html.dark .header-menu .header-menubox {
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.2);
  border-color: #4c4e51;
  background-color: #383838;
}

.header-menu .open .header-menubox {
  visibility: visible;
  opacity: 1;
  margin: 14px 0 0 0;
}

.header-menu .header-menubox .notification-title {
  border-radius: 3px 3px 0 0;
  color: #6a6a6a;
  font-size: 1.3rem;
  line-height: 1.5rem;
  padding: 12px 6px 12px 12px;
  border-bottom: 1px solid #ddd;
}

.header-menu .header-menubox .notification-footer {
  color: #6a6a6a;
  font-size: 1.3rem;
  line-height: 1.5rem;
  padding: 12px 6px 12px 12px;
  border-top: 1px solid #ddd;
}

.header-menu .header-menubox .notification-title .label {
  font-size: 1rem;
  font-weight: 600;
  line-height: 14px;
  margin-left: 10px;
  margin-top: -2px;
  min-width: 35px;
  border-radius: 4px;
  padding: 2px 6px;
}

.header-menu .header-menubox .notification-title .label-default {
  background: #e8f0fe;
  color: #1a73e8;
}

.header-menu .header-menubox .notification-title .label-danger {
  background: #ffebee;
  color: #d93025;
}

.header-menu .header-menubox .content {
  padding: 12px;
}

#notification-list-items {
  max-height: 280px;
  overflow-y: auto;
}

.no-notifications-placeholder {
  padding: 30px 0;
  color: #999;
  font-size: 1.25rem;
  text-align: center;
}

.header-menu .header-menubox hr {
  background: #e6e6e6;
  height: 1px;
  margin: 12px 0;
}

.header-menu .header-menubox .view-more {
  color: #acacac;
  font-size: 1.2rem;
  line-height: 1.2rem;
  padding-right: 12px;
}

/* notification menu hover */
.header-menu .hbox {
  padding-right: 3px;
}

.header-menu .hbox .visible-slider {
  height: 240px !important;
}

.header-menu .hbox ul li {
  margin-bottom: 5px;
}

.header-menu .hbox ul li img {
  max-height: 12px;
  max-width: 16px;
}

.header-menu .hbox ul li a {
  border-radius: 2px;
  color: #7d7d7d;
  display: block;
  font-size: 1.2rem;
  line-height: 1.5rem;
  padding: 5px 10px;
}

.header-menu .open .hbox ul li a:hover {
  background: var(--theme-primary);
  color: #fff;
}

html.dark .header-menu .open .hbox ul li a:hover {
  background: var(--primary-color, var(--theme-primary));
}

/* notification menu - emails */
.header-menubox {
  color: #acacac;
}

.header-menubox ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-menubox li {
  margin: 0 0 12px;
}

.header-menubox li:last-child {
  margin-bottom: 0;
}

.header-menubox a {
  display: block;
  text-decoration: none;
}

.header-menubox .image {
  float: left;
  margin: 0 10px 0 0;
}

.header-menubox .image i {
  border-radius: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  width: 35px;
}

.header-menubox .truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-menubox .title {
  color: #000011;
  display: block;
  font-size: 1.3rem;
  line-height: 1.7rem;
  padding: 0;
}

.header-menubox .message {
  color: #acacac;
  display: block;
  font-size: 1.1rem;
  line-height: 1.5rem;
  padding: 0;
}

html.dark .header-menu > li .header-menu-icon:before,
html.header-dark .header-menu > li .header-menu-icon:before {
  background: #313131;
  border-color: #424447;
}

html.dark .header-menu .open .header-menu-icon:before,
html.header-dark .header-menu .open .header-menu-icon:before {
  background-color: #363c3e;
}

html.dark .header-menu .header-menubox .notification-title,
html.dark .header-menu .header-menubox .notification-footer {
  border-color: #424447;
}

/* Notifications Mobile */
@media only screen and (max-width: 767px) {
  .header-menu {
    float: right;
    margin: 18px 8px 0 0;
  }

  .header-menu > li {
    position: static;
  }

  .header-menu > li.open .header-menu-icon:before {
    display: block;
  }

  .header-menu > li .header-menubox {
    left: 15px;
    right: 15px;
    top: auto;
    width: auto !important;
  }

  .header-menu .open .header-menubox {
    margin: 19px 0 0 0;
  }
}
/* Userbox */
.userbox {
  margin-right: 17px;
  position: relative;
}

.userbox > a {
  display: inline-block;
  text-decoration: none;
  position: relative;
}

.userbox a:hover {
  text-decoration: none;
}

.userbox .profile-info,
.userbox .profile-picture {
  display: inline-block;
  vertical-align: middle;
}

.userbox .profile-picture img {
  width: 35px;
  height: 35px;
  /* Crop to the box instead of squashing a non-square photo into it. */
  object-fit: cover;
  border-radius: 50%;
  color: transparent;
}

.userbox .profile-info {
  margin: 0 25px 0 10px;
}

.userbox .name,
.userbox .role {
  display: block;
}

.userbox .name {
  color: #000011;
  font-size: 1.3rem;
  line-height: 1.2em;
}

.userbox .role {
  color: #acacac;
  font-size: 1.1rem;
  line-height: 1.2em;
}

@media only screen and (max-width: 767px) {
  .userbox .name,
  .userbox .role {
    max-width: 68px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* Userbox - Open */
.userbox.open > a {
  position: relative;
  z-index: 1;
}

.userbox .dropdown-menu {
  margin: 30px 0 0 0;
  display: block;
  width: 270px;
  border: 1px solid #d1d1d1;
  right: -5px;
  left: auto;
  visibility: hidden;
  opacity: 0;
  box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

html.dark .userbox .dropdown-menu {
  border-color: #4c4e51;
}

.dw-user-box {
  padding: 10px 15px;
}

.userbox.open .dropdown-menu {
  visibility: visible;
  opacity: 1;
  margin: 12px 0 0 0;
}

.u-img {
  width: 60px;
  display: inline-block;
  vertical-align: top;
}

.u-img img {
  width: 100%;
  border-radius: 5px;
}
.u-text {
  display: inline-block;
  padding-left: 10px;
  max-width: 153px;
}
.u-text2 {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.u-text h4 {
  margin: 0px;
}

.u-text p {
  margin-bottom: 5px;
  font-size: 14px;
}

.userbox ul.dropdown-user li.divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: rgba(120, 130, 140, 0.13);
}

.userbox .dropdown-menu li {
  margin-bottom: 5px;
}

.userbox .dropdown-menu ul > li:not(.user-p-box) a {
  padding: 9px 15px;
  color: #6b6b6b;
  display: block;
  font-size: 1.2rem;
  line-height: 1.5rem;
  text-decoration: none;
}

html.dark .userbox .dropdown-menu ul > li:not(.user-p-box) a {
  color: #7d7d7d;
}

.userbox.open .dropdown-menu ul > li:not(.user-p-box) a:hover {
  background: #ccc;
  color: #fff;
}

html.dark .userbox.open .dropdown-menu ul > li:not(.user-p-box) a:hover {
  background: #ff685c;
}

.userbox .dropdown-menu ul > li:not(.user-p-box) a i {
  font-size: 1.7rem;
  margin-right: 3px;
  vertical-align: text-bottom;
}

/* Userbox - Mobile */
@media only screen and (max-width: 767px) {
  .userbox {
    float: left;
    margin: 16px 0 0 12px;
    position: static;
  }

  .userbox > a:after {
    background: #e9e9e6;
    content: "";
    height: 63px;
    margin: 0;
    position: absolute;
    right: -21px;
    top: -18px;
    width: 1px;
  }

  .userbox .dropdown-menu {
    left: 15px;
    right: 15px;
    top: auto;
    width: auto !important;
  }
}
/* Header Dark - Userbox */
html.dark .userbox a:after,
html.header-dark .userbox a:after {
  background: #404142;
}

html.dark .userbox .name,
html.dark .userbox .custom-caret,
html.header-dark .userbox .name,
html.header-dark .userbox .custom-caret {
  color: #c3c3c3;
}

html.dark .userbox.open .dropdown-menu .name,
html.dark .userbox.open .dropdown-menu .custom-caret,
html.header-dark .userbox.open .dropdown-menu .name,
html.header-dark .userbox.open .dropdown-menu .custom-caret {
  color: #c3c3c3;
}

html.dark .userbox.open .dropdown-menu a,
html.header-dark .userbox.open .dropdown-menu a {
  color: #c3c3c3;
}

html.dark .userbox.open .dropdown-menu a:hover,
html.header-dark .userbox.open .dropdown-menu a:hover {
  color: #fff;
}

html.dark .userbox .dropdown-menu,
html.header-dark .userbox .dropdown-menu {
  background: #383838;
}

html.dark .userbox .dropdown-menu .divider,
html.header-dark .userbox .dropdown-menu .divider {
  background: #4c4e51;
}

html.dark .userbox .dropdown-menu a,
html.header-dark .userbox .dropdown-menu a {
  color: #c3c3c3;
}

.nav-pills > .active a,
.nav-pills > .active a:hover,
.nav-pills > .active a:focus {
  background-color: #ccc;
}

.pagination > li a {
  color: #ccc;
}

.pagination > li a:hover,
.pagination > li a:focus {
  color: #d9d9d9;
}

.pagination > li.active a,
.pagination > li.active a:hover,
.pagination > li.active a:focus,
.pagination > li.active span,
.pagination > li.active span:hover,
.pagination > li.active span:focus {
  background-color: #ccc;
  border-color: #ccc;
}

.pagination > li.active a {
  background-color: #ccc;
}

.progress-bar-primary {
  background-color: #ccc;
}

.progress-bar.progress-without-number[aria-valuenow="1"],
.progress-bar.progress-without-number[aria-valuenow="2"] {
  min-width: 0;
}

.progress-bar.progress-bar-primary[aria-valuenow="0"] {
  background: transparent;
}

/* Sidebar Light */
html.sidebar-light:not(.dark) .sidebar-widget .widget-header .btn-widget-act {
  border-color: #f2f2f2;
  background-color: #f2f2f2;
  border-color: #e6e6e6;
  color: #777;
  text-shadow: none;
}

html.sidebar-light:not(.dark)
  .sidebar-widget
  .widget-header
  .btn-widget-act:hover {
  border: 1px solid #d2d2d2 !important;
  background-color: #fafafa;
}

html.sidebar-light:not(.dark)
  .sidebar-widget
  .widget-header
  .btn-widget-act:active,
html.sidebar-light:not(.dark)
  .sidebar-widget
  .widget-header
  .btn-widget-act:focus {
  border: 1px solid #d2d2d2 !important;
  background-color: #e6e6e6;
}

html.sidebar-light:not(.dark)
  .sidebar-widget
  .widget-header
  .btn-widget-act.dropdown-toggle {
  border-left-color: #e6e6e6;
}

html.sidebar-light:not(.dark) .sidebar-widget.widget-tasks ul li a {
  color: #777;
}

html.sidebar-light:not(.dark) .sidebar-widget.widget-tasks ul li a:hover {
  background: #fafafa;
}

html.sidebar-light:not(.dark) .sidebar-widget.widget-stats .stats-title {
  color: #777;
}

html.sidebar-light:not(.dark) .sidebar-widget.widget-stats .progress {
  background: #d8d8d8;
  box-shadow: 0 1px 0 #bfbfbf inset;
}

html.sidebar-light:not(.dark) .sidebar-widget.widget-calendar ul {
  border-top: 1px solid #ddd;
}

html.sidebar-light:not(.dark) .sidebar-widget.widget-calendar ul time {
  color: #777;
}

html.sidebar-light:not(.dark) .sidebar-widget.widget-calendar ul span {
  color: #777;
}

html.sidebar-light:not(.dark) .sidebar-widget.widget-friends ul li span.name {
  color: #777;
}

/* Scroll to Top */
html .scroll-to-top {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background: #282d36;
  border-radius: 7px 7px 0 0;
  bottom: 0px;
  color: #fff;
  display: block;
  height: 9px;
  opacity: 0;
  padding: 5px 10px 25px;
  position: fixed;
  right: 10px;
  text-align: center;
  text-decoration: none;
  min-width: 39px;
  z-index: 1040;
}

html .scroll-to-top:hover {
  opacity: 1;
}

html .scroll-to-top.visible {
  opacity: 0.75;
}

html .scroll-to-top span {
  display: inline-block;
  padding: 0 5px;
}

html.ie11 .scroll-to-top {
  right: 25px;
}

/* Responsive */
@media (max-width: 991px) {
  html .scroll-to-top.hidden-mobile {
    display: none !important;
  }
}

.panel {
  background-color: #fdfdfd;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #d1d1d1;
  border-radius: 5px;
}

.panel-heading {
  background: #f6f6f6;
  border-radius: 5px 5px 0 0;
  position: relative;
  border-bottom: 2px solid var(--theme-primary);
}

.panel-actions {
  right: 15px;
  position: absolute;
  top: 15px;
}

.panel-actions a,
.panel-actions .panel-action {
  background-color: transparent;
  border-radius: 2px;
  color: #b4b4b4;
  font-size: 14px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  width: 24px;
}

.panel-actions a:hover,
.panel-actions .panel-action:hover {
  background-color: #eeeeee;
  color: #b4b4b4;
  text-decoration: none;
}

.panel-actions a,
.panel-actions a:focus,
.panel-actions a:hover,
.panel-actions a:active,
.panel-actions a:visited,
.panel-actions .panel-action,
.panel-actions .panel-action:focus,
.panel-actions .panel-action:hover,
.panel-actions .panel-action:active,
.panel-actions .panel-action:visited {
  outline: none !important;
  text-decoration: none !important;
}

.panel-title {
  color: #33353f;
  font-weight: 400;
  line-height: 20px;
  padding: 0;
  text-transform: none;
  font-size: 17px;
}

.panel-body {
  background: #fdfdfd;
  -webkit-box-shadow: none;
  border-radius: 0px 25px;
}

.panel-body-nopadding {
  padding: 0;
}

.panel-heading + .panel-body {
  border-radius: 0 0 5px 5px;
}

.panel-footer {
  border-radius: 0 0 5px 5px;
  margin-top: -5px;
  border-top-color: #ddd;
}

.panel-footer-btn-group {
  display: table;
  width: 100%;
  padding: 0;
}

.panel-footer-btn-group a {
  background-color: #f5f5f5;
  display: table-cell;
  width: 1%;
  border-left: 1px solid #ddd;
  padding: 10px 15px;
  text-decoration: none;
}

.panel-footer-btn-group a:hover {
  background-color: #f0f0f0;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1) inset;
}

.panel-footer-btn-group a:first-child {
  border-left: none;
}

.panel-highlight .panel-heading {
  background-color: #ccc;
  border-color: #ccc;
  color: #fff;
}

.panel-highlight .panel-title {
  color: #fff;
}

.panel-highlight .panel-subtitle {
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
}

.panel-highlight .panel-actions a {
  background-color: rgba(0, 0, 0, 0.1);
  color: #fff;
}

.panel-highlight .panel-body {
  background-color: #ccc;
  color: #fff;
}

.panel-highlight-title .panel-heading {
  background-color: #2baab1;
}

.panel-highlight-title .panel-title {
  color: #fff;
}

.panel-highlight-title .panel-subtitle {
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
}

.panel-highlight-title .panel-actions a {
  background-color: rgba(0, 0, 0, 0.1);
  color: #fff;
}

.panel-heading-icon {
  margin: 0 auto;
  font-size: 4.2rem;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 55px;
  border-radius: 55px;
}

.panel-heading-icon.bg-primary {
  background: #ccc;
  color: #fff;
}

.panel-heading-icon.bg-secondary {
  background: #e36159;
  color: #fff;
}

.panel-heading-icon.bg-tertiary {
  background: #2baab1;
  color: #fff;
}

.panel-heading-icon.bg-quaternary {
  background: #734ba9;
  color: #fff;
}

.panel-heading-icon.bg-success {
  background: #47a447;
  color: #fff;
}

.panel-heading-icon.bg-warning {
  background: #ed9c28;
  color: #fff;
}

.panel-heading-icon.bg-danger {
  background: #d2322d;
  color: #fff;
}

.panel-heading-icon.bg-info {
  background: #5bc0de;
  color: #fff;
}

.panel-heading-icon.bg-dark {
  background: #171717;
  color: #fff;
}

.panel-heading-profile-picture img {
  display: block;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  border: 4px solid #fff;
  -webkit-border-radius: 50px;
  border-radius: 50px;
}

.panel-icon {
  color: #fff;
  font-size: 42px;
  float: left;
}

.panel-icon ~ .panel-title,
.panel-icon ~ .panel-subtitle {
  margin-left: 64px;
}

/* Dark - Panels */
html.dark .panel {
  background-color: #323232;
  border-color: #4c4e51;
}

html.dark .panel-heading {
  background: #363636;
  border-bottom-color: #ff685c;
}

html.dark .panel-actions a:hover {
  background-color: #363636;
}

html.dark .panel-body {
  background: #323232;
}

html.dark .panel-footer {
  background: #363636;
  border-top-color: #3e3e3e;
}

html .panel-primary .panel-heading {
  background: #ccc;
}

html .panel-primary .panel-subtitle {
  opacity: 0.8;
  color: #fff;
}

html .panel-primary .panel-title {
  color: #fff;
}

html .panel-primary .panel-actions a {
  background-color: transparent !important;
  color: #fff;
}

html .panel-secondary .panel-heading {
  background: #e36159;
}

html .panel-secondary .panel-subtitle {
  opacity: 0.8;
  color: #fff;
}

html .panel-secondary .panel-title {
  color: #fff;
}

html .panel-secondary .panel-actions a {
  background-color: transparent !important;
  color: #fff;
}

html .panel-tertiary .panel-heading {
  background: #2baab1;
}

html .panel-tertiary .panel-subtitle {
  opacity: 0.8;
  color: #fff;
}

html .panel-tertiary .panel-title {
  color: #fff;
}

html .panel-tertiary .panel-actions a {
  background-color: transparent !important;
  color: #fff;
}

html .panel-quaternary .panel-heading {
  background: #734ba9;
}

html .panel-quaternary .panel-subtitle {
  opacity: 0.8;
  color: #fff;
}

html .panel-quaternary .panel-title {
  color: #fff;
}

html .panel-quaternary .panel-actions a {
  background-color: transparent !important;
  color: #fff;
}

html .panel-success .panel-heading {
  background: #47a447;
}

html .panel-success .panel-subtitle {
  opacity: 0.8;
  color: #fff;
}

html .panel-success .panel-title {
  color: #fff;
}

html .panel-success .panel-actions a {
  background-color: transparent !important;
  color: #fff;
}

html .panel-warning .panel-heading {
  background: #ed9c28;
}

html .panel-warning .panel-subtitle {
  opacity: 0.8;
  color: #fff;
}

html .panel-warning .panel-title {
  color: #fff;
}

html .panel-warning .panel-actions a {
  background-color: transparent !important;
  color: #fff;
}

html .panel-danger .panel-heading {
  background: #d2322d;
}

html .panel-danger .panel-subtitle {
  opacity: 0.8;
  color: #fff;
}

html .panel-danger .panel-title {
  color: #fff;
}

html .panel-danger .panel-actions a {
  background-color: transparent !important;
  color: #fff;
}

html .panel-info .panel-heading {
  background: #5bc0de;
}

html .panel-info .panel-subtitle {
  opacity: 0.8;
  color: #fff;
}

html .panel-info .panel-title {
  color: #fff;
}

html .panel-info .panel-actions a {
  background-color: transparent !important;
  color: #fff;
}

html .panel-dark .panel-heading {
  background: #171717;
}

html .panel-dark .panel-subtitle {
  opacity: 0.8;
  color: #fff;
}

html .panel-dark .panel-title {
  color: #fff;
}

html .panel-dark .panel-actions a {
  background-color: transparent !important;
  color: #fff;
}

html .panel-transparent > .panel-heading {
  background: none;
  border: 0;
  padding-left: 0;
  padding-right: 0;
}

html .panel-transparent > .panel-heading .panel-actions {
  right: 0;
}

html .panel-transparent > .panel-heading + .panel-body {
  border-radius: 5px;
}

html .panel-transparent > .panel-body {
  padding: 0;
  border-radius: 0;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

html .panel .panel-heading-transparent {
  background: none;
  border: 0;
  padding-left: 0;
  padding-right: 0;
}

html .panel .panel-heading-transparent .panel-actions {
  right: 0;
}

html .panel .panel-heading-transparent + .panel-body {
  border-radius: 5px;
}

.panel-horizontal {
  display: table;
  width: 100%;
}

.panel-horizontal .panel-heading,
.panel-horizontal .panel-body,
.panel-horizontal .panel-footer {
  display: table-cell;
  vertical-align: middle;
}

.panel-horizontal .panel-heading {
  border-radius: 5px 0 0 5px;
}

.panel-horizontal .panel-heading + .panel-body {
  border-radius: 0 5px 5px 0;
}

.panel-horizontal .panel-footer {
  border-radius: 0 5px 5px 0;
  margin-top: 0;
}

.panel-action-toggle,
.panel-action-dismiss {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font: normal normal normal 14px;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.panel-action-toggle:before {
  content: "\f0d7";
}

.panel-collapsed .panel-action-toggle:before {
  content: "\f0d8";
}

.panel-action-dismiss:before {
  content: "\f00d";
}

.panel-collapsed .panel-body,
.panel-collapsed .panel-footer {
  display: none;
}

@media only screen and (max-width: 767px) {
  .panel-actions {
    float: none;
    margin-bottom: 15px;
    position: static;
    text-align: right;
  }

  .panel-actions a {
    vertical-align: top;
  }
}

/* tabs */
.tabs {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 35px;
}

/* navigation */
.nav-tabs {
  margin: 0;
  font-size: 0;
}

.nav-tabs li {
  display: inline-block;
  float: none;
}

.nav-tabs li:last-child a {
  margin-right: 0;
}

.nav-tabs li a {
  border-radius: 5px 5px 0 0;
  font-size: 1.3rem;
  margin-right: 1px;
}

.nav-tabs li a .badge {
  border-radius: 100%;
}

.nav-tabs li a,
.nav-tabs li a:hover {
  background: #f4f4f4;
  border-bottom: none;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  border-top: 3px solid #ddd;
  color: #555;
}

.nav-tabs li a:hover {
  border-bottom-color: transparent;
  border-top: 3px solid #555;
  box-shadow: none;
}

.nav-tabs li a:active,
.nav-tabs li a:focus {
  border-bottom: 0;
}

.nav-tabs li.active a,
.nav-tabs li.active a:hover,
.nav-tabs li.active a:focus {
  background: #fff;
  border-left-color: #eee;
  border-right-color: #eee;
  border-top: 3px solid #555;
  color: #555;
}

/* content */
.tab-content {
  border-radius: 0 0 4px 4px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
  background-color: #fff;
  border: 1px solid #eee;
  border-top: 0;
  padding: 15px;
}

/* content - footer inside */
.tab-content .panel-footer {
  margin: -15px;
  margin-top: 15px;
  border: 0;
  border-top: 1px solid #d1d1d1;
}

html.dark .nav-tabs li.active a,
html.dark .nav-tabs li.active a:hover,
html.dark .nav-tabs li.active a:focus,
html.dark .nav-tabs li a {
  color: #ff685c;
}

html.dark .tab-content {
  background: #323232;
  border-color: #1d2127;
}

/* bootstrap tab custom */
.tabs-custom .nav-tabs {
  margin: 10px 15px 2px 15px;
  position: relative;
}

.tabs-custom .nav-tabs > li {
  margin-bottom: 0;
}

.tabs-custom .nav-tabs > li > a {
  border: 0;
  color: #666;
  padding: 6px 12px;
  font-size: 12px;
}

.tabs-custom .nav-tabs > li.active > a,
.nav-tabs > li > a:hover {
  border: 0;
  background: transparent;
}

.tabs-custom .nav-tabs > li > a:after {
  content: "";
  background: var(--theme-primary);
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -1px;
  -webkit-transition: all 250ms ease 0s;
  transition: all 250ms ease 0s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

html.dark .tabs-custom .nav-tabs > li > a:after {
  background-color: #ff685c;
}

.tabs-custom .nav-tabs > li.active > a:before {
  content: "";
  height: 4px;
  width: 8px;
  display: block;
  position: absolute;
  bottom: -5px;
  left: 50%;
  border-radius: 0 0 8px 8px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: var(--theme-primary);
}

html.dark .tabs-custom .nav-tabs > li.active > a:before {
  background-color: #ff685c;
}

.tabs-custom .nav-tabs > li.active > a:after,
.tabs-custom .nav-tabs > li:hover > a:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.tabs-custom .tab-content {
  background: transparent;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 5px 15px 15px 15px;
}

.tabs-custom .nav-tabs li a,
.tabs-custom .nav-tabs li a:hover {
  background: transparent;
}

html.dark .tabs-custom .nav-tabs {
  border-bottom-color: #535151;
}

/* Alert new states */
.alert-default {
  background-color: #ebebeb;
  border-color: #e3e3e3;
  color: #6c6c6c;
}

.alert-default .alert-link {
  color: #4c4e51;
}

.alert-primary {
  background-color: #ccc;
  border-color: #c4c4c4;
  color: #fff;
}

.alert-primary .alert-link {
  color: #999999;
}

.alert-dark {
  background-color: #313131;
  border-color: black;
  color: #cacaca;
}

.alert-dark .alert-link {
  color: #f0f0f0;
}

/* Progress bar overwrite style */
.progress-bar {
  background: #b5b5b5;
}

html.dark .progress-bar {
  background: #4a4a4a;
}

.progress .progress-bar {
  box-shadow: none;
  border-radius: 4px;
}

/* Progress bar default style */

.progress {
  background: #f6f7f8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
}

html.dark .progress {
  background: #3c3c3e;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4) inset;
}

/* Progress bar light style */
.progress.light {
  background: #f6f7f8;
  background: -webkit-linear-gradient(#f6f7f8, #f6f7f8 10%, #f5f5f5 11%);
  background: linear-gradient(#f6f7f8, #f6f7f8 10%, #f5f5f5 11%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
}

/* Progress bar roundness generic */
.progress-squared,
.progress-squared .progress-bar {
  border-radius: 0 !important;
}

/* Progress bar sizes */
.progress-xs {
  height: 7px;
}

.progress-xs,
.progress-xs .progress-bar {
  border-radius: 7px;
}

.progress-xs .progress-bar {
  direction: ltr !important;
  text-indent: -9999px;
}

.progress-xs.progress-half-rounded,
.progress-xs.progress-half-rounded .progress-bar {
  border-radius: 2px;
}

.progress-xs.progress-striped .progress-bar {
  background-size: 15px 15px;
}

.progress-sm {
  border-radius: 12px;
  height: 12px;
}

.progress-sm,
.progress-sm .progress-bar {
  border-radius: 12px;
}

.progress-sm .progress-bar {
  font-size: 10px;
  line-height: 12px;
}

.progress-sm.progress-half-rounded,
.progress-sm.progress-half-rounded .progress-bar {
  border-radius: 4px;
}

.progress-sm.progress-striped .progress-bar {
  background-size: 20px 20px;
}

.progress-md {
  border-radius: 14px;
  height: 14px;
}

.progress-md,
.progress-md .progress-bar {
  border-radius: 14px;
}

.progress-md .progress-bar {
  font-size: 11px;
  line-height: 14px;
}

.progress-md.progress-half-rounded,
.progress-md.progress-half-rounded .progress-bar {
  border-radius: 4px;
}

.progress-md.progress-striped .progress-bar {
  background-size: 25px 25px;
}

.progress-lg {
  border-radius: 16px;
  height: 16px;
}

.progress-lg,
.progress-lg .progress-bar {
  border-radius: 16px;
}

.progress-lg .progress-bar {
  line-height: 16px;
}

.progress-lg.progress-half-rounded,
.progress-lg.progress-half-rounded .progress-bar {
  border-radius: 5px;
}

.progress-lg.progress-striped .progress-bar {
  background-size: 30px 30px;
}

.progress-xl {
  border-radius: 18px;
  height: 18px;
}

.progress-xl,
.progress-xl .progress-bar {
  border-radius: 18px;
}

.progress-xl .progress-bar {
  line-height: 18px;
}

.progress-xl.progress-half-rounded,
.progress-xl.progress-half-rounded .progress-bar {
  border-radius: 6px;
}

.progress-xl.progress-striped .progress-bar {
  background-size: 35px 35px;
}

/* Progress bar states */
.progress .progress-bar-primary {
  background-color: #ccc;
}

.progress .progress-bar-success {
  background-color: #47a447;
}

.progress .progress-bar-warning {
  background-color: #ed9c28;
}

.progress .progress-bar-danger {
  background-color: #d2322d;
}

.progress .progress-bar-info {
  background-color: #5bc0de;
}

.progress .progress-bar-dark {
  background-color: #171717;
}

.panel-group .panel-accordion {
  border-radius: 0;
}

.panel-group .panel-accordion .panel-heading {
  border: 0;
}

.panel-group .panel-accordion .panel .panel-heading {
  border-bottom: 2px solid var(--theme-primary);
  margin-bottom: 0;
  padding: 9px;
}

html.dark .panel-group .panel-accordion .panel-heading {
  border-color: #ff685c;
}

.panel-group .panel-accordion .panel-heading a {
  color: #ccc;
  display: block;
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
}

.panel-group .panel-accordion .panel-heading a:hover,
.panel-group .panel-accordion .panel-heading a:focus {
  text-decoration: none;
}

.panel-group .panel-accordion .panel-heading a .fa {
  margin-right: 4px;
}

.panel-group .panel-accordion.panel-accordion-first {
  border-radius: 0 0 5px 5px;
}

.panel-group .panel-accordion.panel-accordion-first .panel-heading {
  border-radius: 0 0 5px 5px;
}

.panel-group .panel-accordion-primary .panel-heading .panel-title a {
  background: #ccc;
  color: #fff;
}

.panel-group .panel-accordion-success .panel-heading .panel-title a {
  background: #47a447;
  color: #fff;
}

.panel-group .panel-accordion-warning .panel-heading .panel-title a {
  background: #ed9c28;
  color: #fff;
}

.panel-group .panel-accordion-danger .panel-heading .panel-title a {
  background: #d2322d;
  color: #fff;
}

.panel-group .panel-accordion-info .panel-heading .panel-title a {
  background: #5bc0de;
  color: #fff;
}

.panel-group .panel-accordion-dark .panel-heading .panel-title a {
  background: #171717;
  color: #fff;
}

html.dark .panel-group .panel-accordion .panel {
  background-color: #363636;
}

html.dark .panel-group .panel-accordion .panel-default {
  border-color: #363636;
}

.toggle {
  margin: 10px 0 0;
  position: relative;
  clear: both;
}

.toggle > input {
  cursor: pointer;
  filter: alpha(opacity=0);
  height: 45px;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.toggle > label {
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  background: #f4f4f4;
  border-left: 3px solid #ccc;
  border-radius: 5px;
  color: #ccc;
  display: block;
  font-size: 1.1em;
  min-height: 20px;
  padding: 12px 20px 12px 10px;
  position: relative;
  cursor: pointer;
  font-weight: 400;
}

.toggle > label:-moz-selection {
  background: none;
}

.toggle > label i.fa-minus {
  display: none;
}

.toggle > label i.fa-plus {
  display: inline;
}

.toggle > label:selection {
  background: none;
}

.toggle > label:before {
  border: 6px solid transparent;
  border-left-color: inherit;
  content: "";
  margin-top: -6px;
  position: absolute;
  right: 4px;
  top: 50%;
}

.toggle > label:hover {
  background: #f5f5f5;
}

.toggle > label + p {
  display: block;
  overflow: hidden;
  padding-left: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 25px;
}

.toggle > label i {
  font-size: 0.7em;
  margin-right: 8px;
  position: relative;
  top: -1px;
}

.toggle > .toggle-content {
  display: none;
}

.toggle > .toggle-content > p {
  margin-bottom: 0;
  padding: 10px 0;
}

.toggle.active i.fa-minus {
  display: inline;
  color: #fff;
}

.toggle.active i.fa-plus {
  display: none;
}

.toggle.active > label {
  background: #ccc;
  border-color: #ccc;
  color: #fff;
}

.toggle.active > label:before {
  border: 6px solid transparent;
  border-top-color: #fff;
  margin-top: -3px;
  right: 10px;
}

.toggle.active > p {
  white-space: normal;
}

.toggle > p.preview-active {
  height: auto;
  white-space: normal;
}

/* dark */
html.dark .toggle > label {
  background: #363636;
}

.label-default {
  background: #ebebeb;
  color: #777;
}

.label-sm {
  font-size: 50%;
}

.label-primary {
  background: #ccc;
  color: #fff;
}

.label-success {
  background: #47a447;
  color: #fff;
}

.label-warning {
  background: #ed9c28;
  color: #fff;
}

.label-danger {
  background: #d2322d;
  color: #fff;
}

.label-info {
  background: #5bc0de;
  color: #fff;
}

.label-dark {
  background: #171717;
  color: #fff;
}

.mfp-bg {
  z-index: 10000;
}

.mfp-wrap {
  z-index: 10001;
}

.mfp-wrap .mfp-content {
  z-index: 10001;
}

.modal-block {
  background: transparent;
  padding: 0;
  text-align: left;
  max-width: 600px;
  margin: 40px auto;
  position: relative;
}

.modal-block.modal-block-xs {
  max-width: 200px;
}

.modal-block.modal-block-sm {
  max-width: 400px;
}

.modal-block.modal-block-md {
  max-width: 600px;
}

.modal-block.modal-block-lg {
  max-width: 900px;
}

.modal-block.modal-block-full {
  max-width: 98%;
}

.modal-block.modal-header-color .panel-heading h2 {
  color: #fff;
}

.modal-block.modal-full-color {
  color: #fff;
}

.modal-block.modal-full-color .panel-heading {
  border: 0;
}

.modal-block.modal-full-color .panel-heading h2 {
  color: #fff;
}

.modal-block.modal-full-color .panel-footer {
  border: 0;
}

.modal-block.modal-full-color .panel-body {
  background-color: transparent;
}

.modal-block.modal-full-color .fa {
  color: #fff !important;
}

/* Modal Wrapper */
.modal-wrapper {
  position: relative;
  padding: 25px 0;
}

/* Modal Icon */
.modal-icon {
  float: left;
  width: 20%;
  text-align: center;
}

.modal-icon .fa {
  font-size: 52px;
  position: relative;
  top: -10px;
  color: #ccc;
}

.modal-icon.center {
  float: none;
  width: auto;
  padding-top: 20px;
}

.modal-icon.center + .modal-text {
  float: none;
  width: auto;
}

.modal-icon + .modal-text {
  float: left;
  width: 80%;
}

/* Modal Text */
.modal-text {
  padding: 0 5px;
}

.modal-text h1,
.modal-text h2,
.modal-text h3,
.modal-text h4,
.modal-text h5,
.modal-text h6 {
  padding: 0;
  margin: -7px 0 4px 0;
}

.modal-block-primary .fa {
  color: #ccc;
}

.modal-block-primary.modal-header-color .panel-heading {
  background-color: #ccc;
}

.modal-block-primary.modal-full-color .panel {
  background-color: #e0e0e0;
}

.modal-block-primary.modal-full-color .panel-heading {
  background-color: #ccc;
}

.modal-block-primary.modal-full-color .panel-footer {
  background-color: #e0e0e0;
}

.modal-block-success .fa {
  color: #47a447;
}

.modal-block-success.modal-header-color .panel-heading {
  background-color: #47a447;
}

.modal-block-success.modal-full-color .panel {
  background-color: #5cb85c;
}

.modal-block-success.modal-full-color .panel-heading {
  background-color: #47a447;
}

.modal-block-success.modal-full-color .panel-footer {
  background-color: #5cb85c;
}

.modal-block-warning .fa {
  color: #ed9c28;
}

.modal-block-warning.modal-header-color .panel-heading {
  background-color: #ed9c28;
}

.modal-block-warning.modal-full-color .panel {
  background-color: #f0ad4e;
}

.modal-block-warning.modal-full-color .panel-heading {
  background-color: #ed9c28;
}

.modal-block-warning.modal-full-color .panel-footer {
  background-color: #f0ad4e;
}

.modal-block-danger .fa {
  color: #d2322d;
}

.modal-block-danger.modal-header-color .panel-heading {
  background-color: #d2322d;
}

.modal-block-danger.modal-full-color .panel {
  background-color: #d9534f;
}

.modal-block-danger.modal-full-color .panel-heading {
  background-color: #d2322d;
}

.modal-block-danger.modal-full-color .panel-footer {
  background-color: #d9534f;
}

.modal-block-info .fa {
  color: #5bc0de;
}

.modal-block-info.modal-header-color .panel-heading {
  background-color: #5bc0de;
}

.modal-block-info.modal-full-color .panel {
  background-color: #7dcde5;
}

.modal-block-info.modal-full-color .panel-heading {
  background-color: #5bc0de;
}

.modal-block-info.modal-full-color .panel-footer {
  background-color: #7dcde5;
}

.modal-block-dark .fa {
  color: #171717;
}

.modal-block-dark.modal-header-color .panel-heading {
  background-color: #171717;
}

.modal-block-dark.modal-full-color .panel {
  background-color: #2b2b2b;
}

.modal-block-dark.modal-full-color .panel-heading {
  background-color: #171717;
}

.modal-block-dark.modal-full-color .panel-footer {
  background-color: #2b2b2b;
}

html.dark .modal-content {
  background-color: #1d2127;
}

html.dark .modal-header,
html.dark .modal-footer {
  border-color: #363636;
}

/* Close */
.mfp-close,
.mfp-close-btn-in .mfp-close {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #838383;
}

/* No Margins */
.mfp-no-margins img.mfp-img {
  padding: 0;
}

.mfp-no-margins .mfp-figure:after {
  top: 0;
  bottom: 0;
}

.mfp-no-margins .mfp-container {
  padding: 0;
}

/* Zoom */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0.001;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/* Animnate */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

.my-mfp-zoom-in.mfp-bg {
  opacity: 0.001;
  /* Chrome opacity transition bug */
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  -moz-transform: translateY(0) perspective(600px) rotateX(0);
  -ms-transform: translateY(0) perspective(600px) rotateX(0);
  -o-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}

.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-bg {
  opacity: 0.01;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

/* Dialog */
.dialog {
  background: white;
  padding: 20px 30px;
  text-align: left;
  margin: 40px auto;
  position: relative;
  max-width: 600px;
}

.dialog.dialog-xs {
  max-width: 200px;
}

.dialog.dialog-sm {
  max-width: 400px;
}

.dialog.dialog-md {
  max-width: 600px;
}

.dialog.dialog-lg {
  max-width: 900px;
}

/* White Popup Block */
.white-popup-block {
  background: #fff;
  padding: 20px 30px;
  text-align: left;
  max-width: 600px;
  margin: 40px auto;
  position: relative;
}

.white-popup-block.white-popup-block-xs {
  max-width: 200px;
}

.white-popup-block.white-popup-block-sm {
  max-width: 400px;
}

.white-popup-block.white-popup-block-md {
  max-width: 600px;
}

.white-popup-block.white-popup-block-lg {
  max-width: 900px;
}

/* Dark */
html.dark .white-popup-block,
html.dark .dialog {
  background: #1d2127;
}

/*
Animate.css - http: //daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.appear-animation {
  opacity: 0;
}

.appear-animation-visible {
  opacity: 1;
}

.animated,
.appear-animation {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
}

@-moz-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@-o-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  -moz-animation-name: flash;
  -o-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    opacity: 1;
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
  }
}

@-moz-keyframes shake {
  0%,
  100% {
    -moz-transform: translateX(0);
    opacity: 1;
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -moz-transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -moz-transform: translateX(10px);
  }
}

@-o-keyframes shake {
  0%,
  100% {
    -o-transform: translateX(0);
    opacity: 1;
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -o-transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -o-transform: translateX(10px);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  -moz-animation-name: shake;
  -o-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }

  40% {
    -webkit-transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
  }
}

@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    opacity: 1;
  }

  40% {
    -moz-transform: translateY(-30px);
  }

  60% {
    -moz-transform: translateY(-15px);
  }
}

@-o-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -o-transform: translateY(0);
    opacity: 1;
  }

  40% {
    -o-transform: translateY(-30px);
  }

  60% {
    -o-transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }

  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes tada {
  0% {
    -moz-transform: scale(1);
  }

  10%,
  20% {
    -moz-transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -moz-transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -moz-transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -moz-transform: scale(1) rotate(0);
    opacity: 1;
  }
}

@-o-keyframes tada {
  0% {
    -o-transform: scale(1);
  }

  10%,
  20% {
    -o-transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -o-transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -o-transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -o-transform: scale(1) rotate(0);
    opacity: 1;
  }
}

@keyframes tada {
  0% {
    transform: scale(1);
  }

  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.tada {
  -webkit-animation-name: tada;
  -moz-animation-name: tada;
  -o-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes swing {
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transform-origin: top center;
  }

  20% {
    -webkit-transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    opacity: 1;
  }
}

@-moz-keyframes swing {
  20% {
    -moz-transform: rotate(15deg);
  }

  40% {
    -moz-transform: rotate(-10deg);
  }

  60% {
    -moz-transform: rotate(5deg);
  }

  80% {
    -moz-transform: rotate(-5deg);
  }

  100% {
    -moz-transform: rotate(0deg);
    opacity: 1;
  }
}

@-o-keyframes swing {
  20% {
    -o-transform: rotate(15deg);
  }

  40% {
    -o-transform: rotate(-10deg);
  }

  60% {
    -o-transform: rotate(5deg);
  }

  80% {
    -o-transform: rotate(-5deg);
  }

  100% {
    -o-transform: rotate(0deg);
    opacity: 1;
  }
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
    opacity: 1;
  }
}

.swing {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  -moz-animation-name: swing;
  -o-animation-name: swing;
  animation-name: swing;
}

/* originally authored by Nick Pettit - https: //github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    opacity: 1;
  }
}

@-moz-keyframes wobble {
  0% {
    -moz-transform: translateX(0%);
  }

  15% {
    -moz-transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -moz-transform: translateX(20%) rotate(3deg);
  }

  45% {
    -moz-transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -moz-transform: translateX(10%) rotate(2deg);
  }

  75% {
    -moz-transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -moz-transform: translateX(0%);
    opacity: 1;
  }
}

@-o-keyframes wobble {
  0% {
    -o-transform: translateX(0%);
  }

  15% {
    -o-transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -o-transform: translateX(20%) rotate(3deg);
  }

  45% {
    -o-transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -o-transform: translateX(10%) rotate(2deg);
  }

  75% {
    -o-transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -o-transform: translateX(0%);
    opacity: 1;
  }
}

@keyframes wobble {
  0% {
    transform: translateX(0%);
  }

  15% {
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  -moz-animation-name: wobble;
  -o-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
  }

  10% {
    -webkit-transform: skewX(-8deg);
  }

  20% {
    -webkit-transform: skewX(7deg);
  }

  30% {
    -webkit-transform: skewX(-6deg);
  }

  40% {
    -webkit-transform: skewX(5deg);
  }

  50% {
    -webkit-transform: skewX(-4deg);
  }

  60% {
    -webkit-transform: skewX(3deg);
  }

  70% {
    -webkit-transform: skewX(-2deg);
  }

  80% {
    -webkit-transform: skewX(1deg);
  }

  90% {
    -webkit-transform: skewX(0deg);
  }

  100% {
    -webkit-transform: skewX(0deg);
    opacity: 1;
  }
}

@-moz-keyframes wiggle {
  0% {
    -moz-transform: skewX(9deg);
  }

  10% {
    -moz-transform: skewX(-8deg);
  }

  20% {
    -moz-transform: skewX(7deg);
  }

  30% {
    -moz-transform: skewX(-6deg);
  }

  40% {
    -moz-transform: skewX(5deg);
  }

  50% {
    -moz-transform: skewX(-4deg);
  }

  60% {
    -moz-transform: skewX(3deg);
  }

  70% {
    -moz-transform: skewX(-2deg);
  }

  80% {
    -moz-transform: skewX(1deg);
  }

  90% {
    -moz-transform: skewX(0deg);
  }

  100% {
    -moz-transform: skewX(0deg);
    opacity: 1;
  }
}

@-o-keyframes wiggle {
  0% {
    -o-transform: skewX(9deg);
  }

  10% {
    -o-transform: skewX(-8deg);
  }

  20% {
    -o-transform: skewX(7deg);
  }

  30% {
    -o-transform: skewX(-6deg);
  }

  40% {
    -o-transform: skewX(5deg);
  }

  50% {
    -o-transform: skewX(-4deg);
  }

  60% {
    -o-transform: skewX(3deg);
  }

  70% {
    -o-transform: skewX(-2deg);
  }

  80% {
    -o-transform: skewX(1deg);
  }

  90% {
    -o-transform: skewX(0deg);
  }

  100% {
    -o-transform: skewX(0deg);
    opacity: 1;
  }
}

@keyframes wiggle {
  0% {
    transform: skewX(9deg);
  }

  10% {
    transform: skewX(-8deg);
  }

  20% {
    transform: skewX(7deg);
  }

  30% {
    transform: skewX(-6deg);
  }

  40% {
    transform: skewX(5deg);
  }

  50% {
    transform: skewX(-4deg);
  }

  60% {
    transform: skewX(3deg);
  }

  70% {
    transform: skewX(-2deg);
  }

  80% {
    transform: skewX(1deg);
  }

  90% {
    transform: skewX(0deg);
  }

  100% {
    transform: skewX(0deg);
    opacity: 1;
  }
}

.wiggle {
  -webkit-animation-name: wiggle;
  -moz-animation-name: wiggle;
  -o-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/* originally authored by Nick Pettit - https: //github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.1);
  }

  100% {
    -moz-transform: scale(1);
    opacity: 1;
  }
}

@-o-keyframes pulse {
  0% {
    -o-transform: scale(1);
  }

  50% {
    -o-transform: scale(1.1);
  }

  100% {
    -o-transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pulse {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -o-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  -moz-animation-name: fadeInUpBig;
  -o-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  -moz-animation-name: fadeInDownBig;
  -o-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  -moz-animation-name: fadeInLeftBig;
  -o-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  -moz-animation-name: fadeInRightBig;
  -o-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

@-moz-keyframes bounceIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }

  50% {
    opacity: 1;
    -moz-transform: scale(1.05);
  }

  70% {
    -moz-transform: scale(0.9);
  }

  100% {
    -moz-transform: scale(1);
    opacity: 1;
  }
}

@-o-keyframes bounceIn {
  0% {
    opacity: 0;
    -o-transform: scale(0.3);
  }

  50% {
    opacity: 1;
    -o-transform: scale(1.05);
  }

  70% {
    -o-transform: scale(0.9);
  }

  100% {
    -o-transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}

@-moz-keyframes bounceInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -moz-transform: translateY(-30px);
  }

  80% {
    -moz-transform: translateY(10px);
  }

  100% {
    -moz-transform: translateY(0);
    opacity: 1;
  }
}

@-o-keyframes bounceInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -o-transform: translateY(-30px);
  }

  80% {
    -o-transform: translateY(10px);
  }

  100% {
    -o-transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    transform: translateY(-30px);
  }

  80% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  -moz-animation-name: bounceInUp;
  -o-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}

@-moz-keyframes bounceInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -moz-transform: translateY(30px);
  }

  80% {
    -moz-transform: translateY(-10px);
  }

  100% {
    -moz-transform: translateY(0);
    opacity: 1;
  }
}

@-o-keyframes bounceInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -o-transform: translateY(30px);
  }

  80% {
    -o-transform: translateY(-10px);
  }

  100% {
    -o-transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    transform: translateY(30px);
  }

  80% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  -moz-animation-name: bounceInDown;
  -o-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    opacity: 1;
  }
}

@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -moz-transform: translateX(30px);
  }

  80% {
    -moz-transform: translateX(-10px);
  }

  100% {
    -moz-transform: translateX(0);
    opacity: 1;
  }
}

@-o-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -o-transform: translateX(30px);
  }

  80% {
    -o-transform: translateX(-10px);
  }

  100% {
    -o-transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    transform: translateX(30px);
  }

  80% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  -moz-animation-name: bounceInLeft;
  -o-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    opacity: 1;
  }
}

@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -moz-transform: translateX(-30px);
  }

  80% {
    -moz-transform: translateX(10px);
  }

  100% {
    -moz-transform: translateX(0);
    opacity: 1;
  }
}

@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -o-transform: translateX(-30px);
  }

  80% {
    -o-transform: translateX(10px);
  }

  100% {
    -o-transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    transform: translateX(-30px);
  }

  80% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  -moz-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateIn {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateIn {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  -moz-animation-name: rotateIn;
  -o-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateInUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateInUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  -moz-animation-name: rotateInUpLeft;
  -o-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateInDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateInDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  -moz-animation-name: rotateInDownLeft;
  -o-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateInUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateInUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  -moz-animation-name: rotateInUpRight;
  -o-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@-moz-keyframes rotateInDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}

@-o-keyframes rotateInDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  -moz-animation-name: rotateInDownRight;
  -o-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

/* Widget - Widget Toggle/Expand */
.widget-toggle-expand .widget-header {
  position: relative;
  margin: 0;
  padding: 5px 0;
}

.widget-toggle-expand .widget-header h6 {
  font-size: 1.3rem;
  margin: 0;
  padding: 0;
}

.widget-toggle-expand .widget-header .widget-toggle {
  font-size: 2.1rem;
  line-height: 2.1rem;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  text-align: center;
  color: #b4b4b4;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  transition-timing-function: linear;
}

.widget-toggle-expand.widget-collapsed .widget-content-expanded {
  display: none;
}

.widget-toggle-expand.widget-collapsed .widget-header .widget-toggle {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

/* Widget - Social Icons */
.social-icons-list {
  display: block;
  margin: 0;
  padding: 0;
}

.social-icons-list a {
  background: #ccc;
  border-radius: 25px;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  text-align: center;
  width: 30px;
}

.social-icons-list a:hover {
  text-decoration: none;
}

.social-icons-list a span {
  display: none;
}

.social-icons-list a i {
  font-size: 1.35rem;
  color: #fff;
  font-weight: normal;
}

/* Buttons - States */
.nav-pills-primary > li a:hover,
.nav-pills-primary > li a:focus {
  color: #ccc;
  background-color: white;
}

.nav-pills-primary > li.active > a,
.nav-pills-primary > li.active > a:hover,
.nav-pills-primary > li.active > a:active,
.nav-pills-primary > li.active > a:focus {
  background-color: #ccc;
}

.nav-pills-success > li a:hover,
.nav-pills-success > li a:focus {
  color: #47a447;
  background-color: #bfe2bc;
}

.nav-pills-success > li.active > a,
.nav-pills-success > li.active > a:hover,
.nav-pills-success > li.active > a:active,
.nav-pills-success > li.active > a:focus {
  background-color: #47a447;
}

.nav-pills-warning > li a:hover,
.nav-pills-warning > li a:focus {
  color: #ed9c28;
  background-color: #fbe4cd;
}

.nav-pills-warning > li.active > a,
.nav-pills-warning > li.active > a:hover,
.nav-pills-warning > li.active > a:active,
.nav-pills-warning > li.active > a:focus {
  background-color: #ed9c28;
}

.nav-pills-danger > li a:hover,
.nav-pills-danger > li a:focus {
  color: #d2322d;
  background-color: #f2c0c3;
}

.nav-pills-danger > li.active > a,
.nav-pills-danger > li.active > a:hover,
.nav-pills-danger > li.active > a:active,
.nav-pills-danger > li.active > a:focus {
  background-color: #d2322d;
}

.nav-pills-info > li a:hover,
.nav-pills-info > li a:focus {
  color: #5bc0de;
  background-color: #f0fafc;
}

.nav-pills-info > li.active > a,
.nav-pills-info > li.active > a:hover,
.nav-pills-info > li.active > a:active,
.nav-pills-info > li.active > a:focus {
  background-color: #5bc0de;
}

.nav-pills-dark > li a:hover,
.nav-pills-dark > li a:focus {
  color: #171717;
  background-color: #707070;
}

.nav-pills-dark > li.active > a,
.nav-pills-dark > li.active > a:hover,
.nav-pills-dark > li.active > a:active,
.nav-pills-dark > li.active > a:focus {
  background-color: #171717;
}

.portlet-handler {
  cursor: move;
}

.portlet-placeholder {
  margin-bottom: 15px;
  padding: 0;
  border: 1px dashed #dddddd;
  background: #fafafa;
  color: #444444;
}

/* Tables - Basic */
.table {
  width: 100%;
}

.table .table {
  background: transparent;
}

/* Bootstrap uses important, we need to force it here */
.table.mb-none {
  margin-bottom: 0 !important;
}

/* In case you dont want a border in some row */
.table .b-top-none td {
  border-top: none;
}

/* Tables - Actions */
.table .actions,
.table .actions-hover {
  vertical-align: middle;
}

.table .actions a,
.table .actions-hover a {
  display: inline-block;
  margin-right: 5px;
  color: #666;
}

.table .actions a:last-child,
.table .actions-hover a:last-child {
  margin-right: 0;
}

.table .actions a:hover,
.table .actions-hover a:hover {
  color: #333;
}

.table .actions-hover a {
  opacity: 0;
}

.table tr:hover .actions-hover a {
  opacity: 1;
}

.table .actions-fade a {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.table td.min-w-xs {
  min-width: 100px;
}

.table td.min-w-c {
  min-width: 120px;
}

.table td.min-w-sm {
  min-width: 150px;
}

.table td.min-w-md {
  min-width: 180px;
}

.table td.min-w-lg {
  min-width: 200px;
}

.table td.min-w-xlg {
  min-width: 400px;
}

.table .top-b-none {
  border-top: 0 !important;
}

/* Tables - No More Tables technique (991px is the bootstrap SM max-width) */
@media only screen and (max-width: 991px) {
  .table.table-no-more,
  .table.table-no-more thead,
  .table.table-no-more tbody,
  .table.table-no-more tr,
  .table.table-no-more th,
  .table.table-no-more td {
    display: block;
  }

  .table.table-no-more thead tr {
    left: -9999px;
    position: absolute;
    top: -9999px;
  }

  .table.table-no-more tr {
    border-bottom: 1px solid #ddd;
  }

  .table.table-no-more td {
    border: none;
    position: relative;
    padding-left: 50%;
    text-align: left;
    white-space: normal;
  }

  .table.table-no-more td:before {
    content: attr(data-title);
    font-weight: bold;
    left: 6px;
    padding-right: 10px;
    position: absolute;
    text-align: left;
    top: 8px;
    white-space: nowrap;
    width: 45%;
  }

  .table.table-no-more.table-bordered td {
    border-bottom: 1px solid #efefef;
  }

  .table.table-no-more.table-condensed td:before {
    top: 5px;
  }
}
/* Dark - Tables */
html.dark .table > thead > tr > th,
html.dark .table > tbody > tr > th,
html.dark .table > tfoot > tr > th,
html.dark .table > thead > tr > td,
html.dark .table > tbody > tr > td,
html.dark .table > tfoot > tr > td,
html.dark .table-bordered {
  border-color: #424447;
}

html.dark .table-striped > tbody > tr:nth-child(2n + 1) > td,
html.dark .table-striped > tbody > tr:nth-child(2n + 1) > th {
  background-color: #363636;
}

html.dark .table-hover > tbody > tr:hover > td,
html.dark .table-hover > tbody > tr:hover > th {
  background-color: #383838;
}

html.dark .table .actions a,
html.dark .table .actions-hover a {
  color: #808697;
}

@media screen and (max-width: 991px) {
  html.dark .table-responsive {
    border-color: #424447;
  }
}

@media only screen and (max-width: 991px) {
  html.dark .table.table-no-more tr,
  html.dark .table.table-no-more.table-bordered td {
    border-bottom-color: #262b33;
  }
}
/* Tables - States */
.table > thead > tr > td.primary,
.table > tbody > tr > td.primary,
.table > tfoot > tr > td.primary,
.table > thead > tr > th.primary,
.table > tbody > tr > th.primary,
.table > tfoot > tr > th.primary,
.table > thead > tr.primary > td,
.table > tbody > tr.primary > td,
.table > tfoot > tr.primary > td,
.table > thead > tr.primary > th,
.table > tbody > tr.primary > th,
.table > tfoot > tr.primary > th {
  color: #fff;
  background-color: #ccc !important;
}

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  color: #fff;
  background-color: #47a447 !important;
}

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  color: #fff;
  background-color: #ed9c28 !important;
}

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  color: #fff;
  background-color: #d2322d !important;
}

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  color: #fff;
  background-color: #5bc0de !important;
}

.table > thead > tr > td.dark,
.table > tbody > tr > td.dark,
.table > tfoot > tr > td.dark,
.table > thead > tr > th.dark,
.table > tbody > tr > th.dark,
.table > tfoot > tr > th.dark,
.table > thead > tr.dark > td,
.table > tbody > tr.dark > td,
.table > tfoot > tr.dark > td,
.table > thead > tr.dark > th,
.table > tbody > tr.dark > th,
.table > tfoot > tr.dark > th {
  color: #fff;
  background-color: #171717 !important;
}

.table > thead > tr > td.dark,
.table > tbody > tr > td.dark,
.table > tfoot > tr > td.dark,
.table > thead > tr > th.dark,
.table > tbody > tr > th.dark,
.table > tfoot > tr > th.dark,
.table > thead > tr.dark > td,
.table > tbody > tr.dark > td,
.table > tfoot > tr.dark > td,
.table > thead > tr.dark > th,
.table > tbody > tr.dark > th,
.table > tfoot > tr.dark > th {
  background-color: #4a4a4a;
  color: #fff;
}

.table > thead > tr > th,
.table > thead > tr > td {
  background-color: #eee;
}

html.dark .table > thead > tr > th,
html.dark .table > thead > tr > td {
  background-color: #2d2d2d;
}

.table.tbr-middle tr > td {
  vertical-align: middle !important;
}

.table.borderless tr td,
.table.borderless tr th {
  border: none !important;
  padding: 6px !important;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 1px;
}

/* Data Tables */
.dataTables_wrapper {
  position: relative;
  padding: 0;
  margin: 0;
}

.dataTables_wrapper > .row {
  margin-bottom: 6px !important;
  margin-top: 2px !important;
}

.dataTables_wrapper .DTTT_container {
  margin-bottom: 5px;
}

.dataTables_wrapper .DTTT_container .btn-group {
  display: inline-block !important;
}

.dataTables_wrapper .DTTT_container .btn {
  margin-left: 5px;
}

.dataTables_wrapper .datatables-header {
  margin-bottom: 15px;
}

.dataTables_wrapper .datatables-header label {
  font-weight: normal;
  margin: 0;
}

.table > thead > tr > th {
  vertical-align: top !important;
}

table.dataTable.table-condensed > thead > tr > th {
  padding-right: 8px !important;
}

table.dataTable {
  border-collapse: collapse !important;
  margin: 0 !important;
}

.dataTables_wrapper div.dataTables_info {
  font-size: 11.5px;
  padding-top: 13px !important;
}

.dataTables_wrapper .pagination {
  margin-top: 13px !important;
}

.dataTables_wrapper .select2-container {
  display: inline-block;
  margin-right: 10px;
  width: 75px;
}

@media only screen and (max-width: 991px) {
  .dataTables_wrapper .dataTables_length {
    margin-bottom: 5px;
  }

  .dataTables_wrapper .dataTables_length label {
    float: none;
    width: 100%;
  }
}
/* Filter */
.dataTables_wrapper .dataTables_filter label {
  width: 50%;
}

.dataTables_wrapper .dataTables_filter input {
  width: 100% !important;
}

@media only screen and (max-width: 991px) {
  .dataTables_wrapper .dataTables_filter label {
    width: 100% !important;
  }
}
/* Empty Row */
.dataTables_wrapper .dataTables_empty {
  padding: 50px 0;
}

.dataTables_processing {
  background: #ccc;
  border-radius: 100px;
  -webkit-box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.3);
  color: #fff;
  left: 50%;
  margin-left: -36px;
  padding: 5px 10px;
  position: absolute;
  top: 3px;
}

@media only screen and (max-width: 991px) {
  .dataTables_processing {
    left: auto;
    margin-left: 0;
    right: 0;
  }
}

.DTTT_Print,
.DTTT_Print .inner-wrapper,
.DTTT_Print .content-body,
.DTTT_Print .card {
  background: #fff !important;
  margin: 0 !important;
  padding: 0 !important;
  top: 0 !important;
}

.DTTT_Print .dataTables_wrapper .DTTT.btn-group {
  display: none !important;
}

.DTTT_Print .DTTT_print_info {
  background: rgba(255, 255, 255, 0.9);
  display: block;
  left: 0;
  height: 100px;
  line-height: 100px;
  position: fixed;
  font-size: 14px;
  text-align: center;
  top: 0;
  width: 100%;
}

/* Dark Fixes */
html.dark div.DTTT_container .btn {
  color: #eee !important;
}

.fileupload .uneditable-input .fa {
  position: absolute;
  top: 12px;
  left: 26px;
}

.fileupload .uneditable-input .fileupload-preview {
  display: inline-block;
  float: left;
  overflow: hidden;
  padding: 0 0 0 17px;
  text-overflow: ellipsis;
  width: 100%;
}

.fileupload .btn {
  border-radius: 0;
}

@media only screen and (max-width: 479px) {
  .fileupload .uneditable-input {
    width: 170px;
  }
}
/* Datepicker - Input Group Addon */
.input-daterange .input-group-addon {
  min-width: 36px;
}

/* Datepicker - Base */
.datepicker {
  padding: 10px;
  margin: 0 auto;
  line-height: 1.1em;
}

.datepicker.datepicker-inline {
  line-height: 1.7em;
  width: 100%;
}

.datepicker table {
  width: 100%;
}

.datepicker table tr td {
  border-radius: 0;
}

.datepicker table thead tr th {
  cursor: pointer;
  font-size: 1.3rem;
  text-align: center;
  font-weight: normal;
}

.datepicker table thead tr th.prev {
  content: "\f0d9";
  font-family: Font Awesome 5 Free;
  font-weight: 900;
}

.datepicker table thead tr th.next {
  content: "\f0da";
  font-family: Font Awesome 5 Free;
  font-weight: 900;
}

.datepicker table td {
  text-align: center;
  font-size: 1.2rem;
}

.datepicker table td.day {
  -webkit-transition:
    background-color 0.1s ease-in 0.1s,
    color 0.1s ease-in 0.1s;
  -moz-transition:
    background-color 0.1s ease-in 0.1s,
    color 0.1s ease-in 0.1s;
  transition:
    background-color 0.1s ease-in 0.1s,
    color 0.1s ease-in 0.1s;
  cursor: pointer;
}

html.dark .datepicker table tr td span:hover,
html.dark .datepicker table tr td span.focused {
  background: #484848;
}

html.dark .datepicker .datepicker-switch:hover,
html.dark .datepicker .prev:hover,
html.dark .datepicker .next:hover,
html.dark .datepicker tfoot tr th:hover {
  background: #484848;
}

/* Widget - Summary */
.widget-summary {
  display: table;
  width: 100%;
}

.widget-summary:after {
  content: "";
  display: table;
  clear: both;
}

.widget-summary .widget-summary-col {
  display: table-cell;
  vertical-align: top;
  width: 100%;
}

.widget-summary .widget-summary-col.widget-summary-col-icon {
  width: 1%;
}

.widget-summary .summary-icon img {
  margin-right: 15px;
  width: 90px;
  height: 90px;
  border: 1px solid #ddd;
}

.widget-summary .summary {
  min-height: 65px;
  word-break: break-all;
}

.widget-summary .summary .title {
  margin: 0;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #333;
  font-weight: 500;
}

.widget-summary .summary-footer {
  padding: 5px 0 0;
  border-top: 1px dotted #ddd;
  text-align: right;
}

html.dark .widget-summary .summary .title,
html.dark .widget-summary .summary .amount {
  color: #eee;
}

html.dark .widget-summary .summary-footer {
  border-color: #4c4c4c;
}

/* Datepicker - Skin Default */
.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover,
.datepicker table tr td span:hover {
  background: #ccc;
  color: #fff;
}

.datepicker table tbody tr td span.old,
.datepicker table tbody tr td span.new {
  color: #ccc;
}

.datepicker table tbody tr td span.old:hover,
.datepicker table tbody tr td span.new:hover {
  color: #fff;
}

.datepicker table tbody tr td.day:hover {
  background: #ccc;
  color: #fff;
}

.datepicker table tbody tr td.day.active {
  background: #b3b3b3;
  color: #fff;
}

.datepicker table tbody tr td.day.new {
  color: #777;
}

.datepicker table tbody tr td.day.new:hover {
  color: #fff;
}

/* Datepicker - Skin Dark */
html:not(.sidebar-light) .datepicker.datepicker-dark {
  background: transparent;
}

html:not(.sidebar-light)
  .datepicker.datepicker-dark
  table
  thead
  tr
  th.datepicker-switch {
  color: #fff;
}

html:not(.sidebar-light) .datepicker.datepicker-dark table thead tr th.dow {
  color: #777;
}

html:not(.sidebar-light) .datepicker.datepicker-dark table tbody tr td span.old,
html:not(.sidebar-light)
  .datepicker.datepicker-dark
  table
  tbody
  tr
  td
  span.new {
  color: #444;
}

html:not(.sidebar-light)
  .datepicker.datepicker-dark
  table
  tbody
  tr
  td
  span.old:hover,
html:not(.sidebar-light)
  .datepicker.datepicker-dark
  table
  tbody
  tr
  td
  span.new:hover {
  color: #fff;
}

html:not(.sidebar-light) .datepicker.datepicker-dark table tbody tr td.day {
  color: #fff;
}

html:not(.sidebar-light)
  .datepicker.datepicker-dark
  table
  tbody
  tr
  td.day:hover {
  background: #ccc;
  color: #fff;
}

html:not(.sidebar-light)
  .datepicker.datepicker-dark
  table
  tbody
  tr
  td.day.active {
  background: #b3b3b3;
  color: #fff;
}

html:not(.sidebar-light) .datepicker.datepicker-dark table tbody tr td.day.new {
  color: #777;
}

html:not(.sidebar-light)
  .datepicker.datepicker-dark
  table
  tbody
  tr
  td.day.new:hover {
  color: #fff;
}

/* Datepicker - Skin Primary */
.datepicker.datepicker-primary {
  min-width: 255px;
}

.datepicker.datepicker-primary.datepicker-inline {
  background: #fff;
  border: 1px solid #eee;
}

.datepicker.datepicker-primary table thead tr:first-child {
  background-color: #ccc;
  color: #fff;
}

.datepicker.datepicker-primary table thead tr:first-child th:hover {
  background-color: #b3b3b3;
}

.datepicker.datepicker-primary table thead tr:first-child th:first-child {
  border-radius: 4px 0 0 0;
}

.datepicker.datepicker-primary table thead tr:first-child th:last-child {
  border-radius: 0 4px 0 0;
}

.datepicker.datepicker-primary table thead tr:last-child {
  background-color: #d9d9d9;
  color: #fff;
}

.datepicker.datepicker-primary table thead tr:last-child th:hover {
  background-color: #ccc;
}

.datepicker.datepicker-primary table thead tr th {
  border-radius: 0;
}

html.dark .input-daterange .input-group-addon {
  text-shadow: none;
}

html.dark .datepicker-dropdown {
  color: #eee;
  background-color: #383838;
}

html.dark .datepicker-dropdown:after {
  border-bottom-color: #383838;
}

html.dark .datepicker-dropdown.datepicker-orient-bottom:before {
  border-top-color: rgba(0, 0, 0, 0.2);
}

html.dark .datepicker-dropdown.datepicker-orient-bottom:after {
  border-top-color: #383838;
}

html.dark .datepicker.datepicker-primary {
  border-color: #363636;
  background: #383838;
}

html.dark .select2-container--bootstrap .select2-selection,
html.dark .select2-container--bootstrap .select2-dropdown,
html.dark
  .select2-container--bootstrap
  .select2-choices
  .select2-search-field
  input,
html.dark .select2-container--bootstrap .select2-choice,
html.dark .select2-container--bootstrap .select2-choices {
  color: #eee;
  background-color: #383838;
  border-color: #4c4e51;
}

html.dark
  .select2-container--bootstrap
  .select2-selection--single
  .select2-selection__rendered {
  color: #eee;
}

html.dark
  .select2-container--bootstrap
  .select2-results__option[aria-selected="true"],
html.dark
  .select2-container--bootstrap
  .select2-search--dropdown
  .select2-search__field {
  color: #eee;
  background-color: #323232;
  border-color: #323232;
}

/* Summernote */
.note-editor {
  border-radius: 4px;
  -webkit-transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  -moz-transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
}
.note-editor,
.note-editor.note-frame {
  border: 1px solid #ddd;
}
.note-editor.active {
  border-color: #66afe9;
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}
.note-editor .note-title {
  padding-top: 0 !important;
}
.note-editor .note-toolbar {
  background-color: #f5f5f5;
  border-bottom: 1px dashed #ddd;
  border-left: none;
  border-right: none;
  border-top: none;
  border-radius: 4px 4px 0 0;
  padding: 3px 10px 7px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 8;
}
.note-editor .note-toolbar i {
  margin: 0;
}
.note-editor .note-toolbar i:before {
  margin: 0;
}
.note-editor .note-toolbar .btn-group {
  float: none !important;
}
.note-editor
  .note-toolbar
  .btn-group
  > .btn-group:last-child
  > .btn:first-child {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.note-editor
  .note-toolbar
  .btn-group
  > .btn-group:first-child
  > .btn:last-child,
.note-editor
  .note-toolbar
  .btn-group
  > .btn-group:first-child
  > .dropdown-toggle {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
@media only screen and (max-width: 767px) {
  .note-editor .note-toolbar {
    text-align: center;
  }
}
.note-editor .note-editable {
  clear: both;
  background: #fff;
  border: none;
  border-radius: 0 0 4px 4px;
  font-family: Arial, Helvetica, Sans-serif;
}
.note-editor .note-statusbar {
  background: #fff;
  border-radius: 0 0 4px 4px;
}
.note-editor .note-statusbar .note-resizebar {
  border-color: #ddd;
  display: block;
}

html.dark .note-editor {
  border-color: #363636;
  color: #eee;
}
html.dark .note-editor .note-toolbar,
html.dark .note-editor .note-statusbar {
  background: #363636;
  border-color: #1d2127;
}
html.dark .note-editor .note-editable {
  background: #363636;
  border-color: #1d2127;
}
html.dark .note-editor .note-statusbar .note-resizebar {
  border-color: #1d2127;
}
html.dark .note-editor .note-statusbar .note-resizebar .note-icon-bar {
  border-color: #444;
}
html.dark .note-editor .note-editing-area .note-editable {
  color: #eee;
}
html.dark .note-editor .caret {
  border-color: #fff transparent transparent;
}

/* Bootstrap Markdown */
.md-editor {
  border-radius: 4px;
  -webkit-transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  -moz-transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
}
.md-editor > .md-header {
  border-radius: 4px 4px 0 0;
  padding: 6px 4px 0;
}
.md-editor > .md-preview,
.md-editor > textarea {
  background: #fff;
  border-bottom: none;
  border-radius: 0 0 4px 4px;
  padding: 10px;
  outline: none;
  width: 100% !important;
}
.md-editor .btn-group {
  margin-bottom: 6px;
}

html.dark .md-editor {
  border-color: #363636;
}
html.dark .md-editor > .md-header,
html.dark .md-editor .md-footer {
  background: #363636;
}
html.dark .md-editor > .md-preview,
html.dark .md-editor > textarea {
  background: #363636;
}
html.dark .md-editor > textarea {
  color: #eee;
  border-color: #1d2127;
}

@media only screen and (max-width: 767px) {
  .bootstrap-maxlength.bottom-left {
    margin-left: 40px;
  }
}
.bootstrap-tagsinput {
  width: 100%;
}

.form-group-invisible .bootstrap-tagsinput {
  border: 0 none;
  box-shadow: none;
  background-color: transparent;
}

html.dark .bootstrap-tagsinput {
  background: #363636;
  border-color: #363636;
}

html.dark .bootstrap-timepicker-widget {
  background-color: #363636;
}
html.dark .bootstrap-timepicker-widget:before {
  border-bottom-color: #1d2127;
}
html.dark .bootstrap-timepicker-widget:after {
  border-bottom-color: #363636;
}
html.dark .bootstrap-timepicker-widget.timepicker-orient-bottom:before {
  border-top-color: #1d2127;
}
html.dark .bootstrap-timepicker-widget.timepicker-orient-bottom:after {
  border-top-color: #363636;
}
html.dark .bootstrap-timepicker-widget table td a {
  color: #fff;
}
html.dark .bootstrap-timepicker-widget table td a:hover {
  border-color: #363636;
  background-color: #ff685c;
}
html.dark .bootstrap-timepicker-widget table td input {
  background-color: #303030;
  border-color: #363636;
  color: #eee;
}

html.dark .colorpicker {
  background-color: #363636;
}
html.dark .colorpicker:before {
  border-bottom-color: #1d2127;
}
html.dark .colorpicker:after {
  border-bottom-color: #363636;
}

html.dark .multiselect-container {
  background-color: #363636;
}
html.dark .multiselect-container > li > a {
  color: #eee;
}
html.dark .multiselect-container > li > a:hover,
html.dark .multiselect-container > li > a:focus {
  background-color: #1d2127;
  color: #fff;
}

.spinner-buttons.btn-group-vertical .btn {
  height: 18px;
  margin: 0 0 0 -1px;
  padding-left: 6px;
  padding-right: 6px;
  text-align: center;
  width: 22px;
  line-height: 14px;
}
.spinner-buttons.btn-group-vertical .btn i {
  margin-top: -2px;
}
.spinner-buttons.btn-group-vertical .btn:first-child {
  border-radius: 0 4px 0 0 !important;
  -webkit-border-radius: 0 4px 0 0 !important;
}
.spinner-buttons.btn-group-vertical .btn:last-child {
  border-radius: 0 0 4px !important;
  -webkit-border-radius: 0 0 4px !important;
  margin-top: -1px;
  height: 17px;
}

.dropzone {
  background: rgba(0, 0, 0, 0.03) none repeat scroll 0 0;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 3px;
  min-height: 122px;
  padding: 23px;
}
.dropzone .dz-default span {
  -webkit-transition: color 0.1s ease-in;
  -moz-transition: color 0.1s ease-in;
  transition: color 0.1s ease-in;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.2);
}
.dropzone:hover .dz-default span {
  color: rgba(0, 0, 0, 0.3);
}

html.dark .dropzone .dz-default span {
  color: rgba(255, 255, 255, 0.2);
}
html.dark .dropzone:hover .dz-default span {
  color: rgba(255, 255, 255, 0.3);
}

/* Form Group Invisible */
.form-group-invisible {
  position: relative;
}
.form-group-invisible.focus .control-label-invisible {
  color: var(--theme-primary);
}
.form-group-invisible .control-label-invisible {
  bottom: 0;
  display: block;
  float: none;
  left: 0;
  line-height: 64px;
  margin: 0;
  padding-left: 50px;
  position: absolute;
  right: 0;
  top: -15px;
  -webkit-transition: color ease-in-out 0.15s;
  -moz-transition: color ease-in-out 0.15s;
  transition: color ease-in-out 0.15s;
  width: auto;
}
.form-group-invisible .form-control-invisible,
.form-group-invisible .form-control-invisible:focus,
.form-group-invisible .form-control-invisible:active,
.form-group-invisible .form-control-invisible + .bootstrap-tagsinput {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.form-group-invisible .form-control-invisible + .bootstrap-tagsinput {
  margin-bottom: 4px;
}

@media only screen and (max-width: 767px) {
  .form-group-invisible {
    padding-top: 30px;
  }
  .form-group-invisible .control-label-invisible {
    padding-left: 27px;
  }
}
html.dark .CodeMirror pre {
  background: transparent;
  border: none;
}

/* Turns Container With Sidebar Fluid when layout is Boxed */
html.boxed .container-with-sidebar {
  width: 100% !important;
}
html.boxed:not(.sidebar-left-collapsed)
  .container-with-sidebar
  [class*="col-"]:not(.isotope-item) {
  width: 100%;
}

/* Container With Sidebar - Sidebar Collapsed */
@media (min-width: 768px) and (max-width: 991px) {
  .container-with-sidebar {
    width: 100%;
  }
  .header .search {
    display: none;
  }
}
@media (min-width: 992px) {
  .container-with-sidebar {
    width: calc(970px - 144px);
  }
}
@media (min-width: 1200px) {
  .container-with-sidebar {
    width: calc(1170px - 144px);
  }
}
@media (min-width: 1600px) {
  .container-with-sidebar {
    width: calc(1570px - 144px) !important;
  }
}
/* Container With Sidebar */
@media (min-width: 768px) and (max-width: 1199px) {
  html:not(.sidebar-left-collapsed):not(.boxed) .container-with-sidebar {
    width: 100%;
  }
  html:not(.sidebar-left-collapsed):not(.boxed)
    .container-with-sidebar
    [class*="col-"]:not(.isotope-item) {
    width: 100%;
  }
}
@media (min-width: 992px) {
  html:not(.sidebar-left-collapsed):not(.boxed) .container-with-sidebar {
    width: calc(970px - 300px);
  }
}
@media (min-width: 1200px) {
  html:not(.sidebar-left-collapsed):not(.boxed) .container-with-sidebar {
    width: calc(1170px - 300px);
  }
}
@media (min-width: 1600px) {
  html:not(.sidebar-left-collapsed):not(.boxed) .container-with-sidebar {
    width: calc(1570px - 300px) !important;
  }
}

/* Section Padding */
.section-padding {
  padding: 90px 0 75px;
}

/* Section Full Width Background Light */
.section-full-width-bg-light {
  position: relative;
  background-color: #fff;
}
.section-full-width-bg-light:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #fff;
  z-index: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* Heading Margin Top */
@media (min-width: 1200px) {
  html:not(.sidebar-left-collapsed) .heading-margin-top {
    margin-top: 108px;
  }
}

@media (min-width: 992px) {
  .heading-margin-top {
    margin-top: 80px;
  }
}
/* Absolute Position Bottom Left */
.abs-bottom-left {
  position: absolute;
  bottom: -3px;
  left: 40px;
}

/* Overflow Hidden */
.overflow-hidden {
  overflow: hidden;
}

/* List */
.list.list-icons > li {
  line-height: 2.2;
}

/* Invoice */
.invoice {
  padding: 12px;
}

/* Invoice Address Tag */
.invoice address {
  color: #606060;
  line-height: 1.5em;
}

/* Invoice header */
.invoice header {
  border: 1px solid #dadada;
  padding: 15px;
  box-shadow: 5px 5px 6px rgba(38, 38, 38, 0.1);
  border-radius: 6px;
}

.invoice header .h2,
.invoice header .h4 {
  letter-spacing: 0;
}

/* Invoice Billing Information */
.invoice .bill-data {
  padding: 15px 0;
}
.invoice .bill-data .value {
  display: inline-block;
  margin-left: 10px;
  min-width: 90px;
  padding: 5px;
}

/* Invoice table */
.invoice table.table {
  table-layout: fixed;
}
.invoice table.table > thead:first-child > tr > th {
  background-color: #f8f8f8;
  border-bottom: 2px solid #dadada;
}
.invoice table.table > tbody tr > td {
  border-color: #dadada;
}

/* Invoice table items */
.invoice .invoice-items > tbody tr:last-child > td {
  border-bottom: 1px solid #dadada;
}
.invoice .invoice-items #cell-id {
  width: 10%;
}
.invoice .invoice-items #cell-item {
  width: 20%;
}
.invoice .invoice-items #cell-desc {
  width: 20%;
}
.invoice .invoice-items #cell-price {
  width: 10%;
}
.invoice .invoice-items #cell-qty {
  width: 10%;
}
.invoice .invoice-items #cell-total {
  width: 10%;
}

/* Invoice summary */
.invoice-summary .col-sm-4 {
  padding-left: 0;
}

/* Invoice Responsiveness */
@media only screen and (max-width: 991px) {
  .invoice .table-responsive > table.table {
    table-layout: auto;
  }

  .invoice-summary .col-sm-4 {
    padding-left: 15px;
  }
}
/* Invoice Print */
@media print {
  .invoice .table-responsive {
    border: none !important;
    overflow: visible !important;
    width: auto !important;
  }
  .invoice table.table.invoice-items {
    table-layout: auto;
  }
  .invoice header .col-sm-6:first-child,
  .invoice header .col-sm-6:last-child,
  .invoice .bill-info .col-md-6 {
    float: left !important;
  }
  .invoice header .col-sm-6:first-child {
    width: 25% !important;
  }
  .invoice header .col-sm-6:last-child {
    width: 75% !important;
  }
  .invoice .bill-info .col-md-6 {
    width: 50% !important;
  }
  .invoice .invoice-summary .col-sm-4 {
    float: right;
    padding: 0;
    width: 40%;
  }
}
/* dark */
html.dark .invoice header {
  border-color: #474747;
  box-shadow: 5px 5px 6px rgba(38, 38, 38, 0.51);
}
html.dark .invoice table.table > thead:first-child > tr > th {
  background-color: #2a2a2a;
  border-bottom-color: #424242;
}
html.dark .invoice table.table > tbody tr > td {
  border-color: #424242;
}

/* Error Pages - wrappers */
.body-error {
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
}
.body-error.error-outside {
  display: table;
  height: 100vh;
}
.body-error.error-outside .center-error {
  display: table-cell;
  vertical-align: middle;
}
.body-error.error-inside {
  margin-top: 150px;
}

/* Error Pages - header */
.body-error .error-header {
  border-bottom: 1px solid #dadada;
  margin-bottom: 50px;
  padding-bottom: 15px;
}
.body-error .error-header .form {
  margin-top: 12px;
}

/* Error Pages - typo */
.body-error .error-code {
  font-size: 14rem;
  line-height: 14rem;
  letter-spacing: -10px;
}
.body-error .error-explanation {
  font-size: 2rem;
  line-height: 3.6rem;
}

/* Error Pages - Responsive */
@media only screen and (max-width: 1150px) {
  .body-error.error-inside {
    margin-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1150px) {
  .body-error.error-inside .error-code {
    font-size: 10rem;
    line-height: 10rem;
    letter-spacing: -7px;
  }
  .body-error.error-inside .error-explanation {
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .body-error .error-code {
    font-size: 9rem;
    line-height: 9rem;
    letter-spacing: -7px;
  }
  .body-error .error-explanation {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }

  .body-error.error-outside {
    height: auto;
    padding: 20px;
  }
}

.fc .fc-toolbar h2 {
  color: #171717;
  font-size: 22.4px;
  font-size: 1.4rem;
  font-weight: normal;
}

.fc .fc-toolbar h2:before {
  color: #ccc;
  content: "\f073";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 28.8px;
  font-size: 1.8rem;
  font-style: normal;
  line-height: 1;
  margin-right: 10px;
  position: relative;
  top: 2px;
  -webkit-font-smoothing: antialiased;
}
.fc .fc-toolbar .fc-button {
  background: #fff;
  box-shadow: none;
  text-shadow: none;
  font-size: 0.9em;
  padding: 2px 0.8em 3px;
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.fc .fc-toolbar .fc-button.fc-state-active {
  color: #fff;
}
.fc .fc-day-grid-container {
  overflow: visible !important;
  height: auto !important;
}
.fc .fc-widget-header th {
  line-height: 35px;
}

/* Fullcalendar - Event States */
/* Buttons - States */
.fc-event.fc-event-default {
  background: #ebebeb;
  border-color: #ebebeb;
}
.fc-event.fc-event-default .fc-event-inner {
  color: #777;
}

a.fc-event.fc-event-default:hover {
  color: #777;
}

.fc-event.fc-event-primary {
  background: #ccc;
  border-color: #ccc;
}
.fc-event.fc-event-primary .fc-event-inner {
  color: #fff;
}

a.fc-event.fc-event-primary:hover {
  color: #fff;
}

.fc-event.fc-event-success {
  background: #47a447;
  border-color: #47a447;
}
.fc-event.fc-event-success .fc-event-inner {
  color: #fff;
}

a.fc-event.fc-event-success:hover {
  color: #fff;
}

.fc-event.fc-event-warning {
  background: #ed9c28;
  border-color: #ed9c28;
}
.fc-event.fc-event-warning .fc-event-inner {
  color: #fff;
}

a.fc-event.fc-event-warning:hover {
  color: #fff;
}

.fc-event.fc-event-danger {
  background: #d2322d;
  border-color: #d2322d;
}
.fc-event.fc-event-danger .fc-event-inner {
  color: #fff;
}

a.fc-event.fc-event-danger:hover {
  color: #fff;
}

.fc-event.fc-event-info {
  background: #5bc0de;
  border-color: #5bc0de;
}
.fc-event.fc-event-info .fc-event-inner {
  color: #fff;
}

a.fc-event.fc-event-info:hover {
  color: #fff;
}

.fc-event.fc-event-dark {
  background: #171717;
  border-color: #171717;
}
.fc-event.fc-event-dark .fc-event-inner {
  color: #fff;
}

a.fc-event.fc-event-dark:hover {
  color: #fff;
}

/* Fullcalendar - External Events */
.external-event {
  cursor: move;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: normal;
  margin: 5px;
  padding: 10px;
  text-align: left;
}

/* dark */
html.dark .fc .fc-toolbar h2 {
  color: #fff;
}
html.dark .fc .fc-toolbar .fc-button {
  background: #303030;
  color: #fff;
}
html.dark .fc-unthemed th,
html.dark .fc-unthemed td,
html.dark .fc-unthemed thead,
html.dark .fc-unthemed tbody,
html.dark .fc-unthemed .fc-divider,
html.dark .fc-unthemed .fc-row,
html.dark .fc-unthemed .fc-popover {
  border-color: rgba(0, 0, 0, 0.3);
}
html.dark .fc-unthemed .fc-today {
  background: #303030;
}

.timeline .tm-body {
  position: relative;
  padding: 30px 0;
}
.timeline .tm-body:after {
  background: #505050;
  background: -moz-linear-gradient(
    top,
    rgba(80, 80, 80, 0) 0%,
    #505050 8%,
    #505050 92%,
    rgba(80, 80, 80, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #1e5799),
    color-stop(100%, #7db9e8)
  );
  background: -webkit-linear-gradient(
    top,
    rgba(80, 80, 80, 0) 0%,
    #505050 8%,
    #505050 92%,
    rgba(80, 80, 80, 0) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(80, 80, 80, 0) 0%,
    #505050 8%,
    #505050 92%,
    rgba(80, 80, 80, 0) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(80, 80, 80, 0) 0%,
    #505050 8%,
    #505050 92%,
    rgba(80, 80, 80, 0) 100%
  );
  background:
    linear,
    to bottom,
    rgba(80, 80, 80, 0) 0%,
    #505050 8%,
    #505050 92%,
    rgba(80, 80, 80, 0) 100%;
  content: "";
  display: block;
  height: 100%;
  left: 140px;
  margin-left: -2px;
  position: absolute;
  top: 0;
  width: 3px;
  z-index: 0;
  filter: alpha(opacity=35);
  opacity: 0.35;
}
.timeline .tm-title {
  position: relative;
  display: inline-block;
  text-align: center;
  min-width: 200px;
  background-color: #fff;
  padding: 4px 5px;
  margin: 0 40px;
  z-index: 1;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.timeline .tm-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline .tm-items > li {
  position: relative;
  margin: 30px 0;
  padding: 0 0 0 190px;
  min-height: 65px;
  z-index: 1;
}
.timeline .tm-items > li .tm-datetime {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100px;
  height: 48px;
  margin-top: -24px;
  text-align: right;
  z-index: 3;
}
.timeline .tm-items > li .tm-datetime .tm-datetime-time {
  color: #ccc;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}
.timeline .tm-items > li .tm-icon {
  position: absolute;
  top: 50%;
  left: 140px;
  background-color: #ecedf0;
  border: 3px solid #ccc;
  color: #ccc;
  font-size: 28px;
  padding: 10px;
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 29px;
  margin-top: -28px;
  margin-left: -28px;
  z-index: 2;
  -webkit-border-radius: 28px;
  border-radius: 28px;
}
.timeline .tm-items > li .tm-box {
  position: relative;
  background: #fff;
  min-height: 65px;
  padding: 10px 20px;
  border: 1px solid #e9e9e9;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.timeline .tm-items > li .tm-box:after {
  right: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: #fff;
  border-width: 8px;
  top: 50%;
  margin-top: -8px;
  z-index: 2;
}
.timeline .tm-items > li .tm-box p:last-child {
  margin-bottom: 0;
}
.timeline .tm-items > li .tm-box .tm-meta {
  margin: 10px 0 0;
}
.timeline .tm-items > li .tm-box .tm-meta span {
  display: inline-block;
  padding-right: 8px;
}
.timeline .tm-items > li .tm-box .tm-meta span:last-child,
.timeline .tm-items > li .tm-box .tm-meta span:last-of-type {
  padding-right: 0;
}
.timeline.timeline-simple .tm-body:after {
  left: 30px;
}
.timeline.timeline-simple .tm-body .tm-title {
  border: 1px solid #e9e9e9;
  margin: 0 10px;
}
.timeline.timeline-simple .tm-body .tm-items > li {
  padding: 0 0 0 55px;
}
.timeline.timeline-simple .tm-body .tm-items > li:before {
  display: block;
  position: absolute;
  content: " ";
  background: none repeat scroll 0 0 #ccc;
  border-radius: 50%;
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 6px #ccc;
  height: 7px;
  left: 30px;
  top: 50%;
  width: 8px;
  margin-left: -4px;
  margin-top: -4px;
}
.timeline.timeline-simple .tm-body .tm-items > li .tm-box:before {
  left: -17px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: #e9e9e9;
  border-width: 8px;
  top: 50%;
  margin-top: -8px;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .timeline .tm-body:after {
    left: 20px;
  }
  .timeline .tm-title {
    margin: 0;
  }
  .timeline .tm-items > li {
    padding-left: 50px;
  }
  .timeline .tm-items > li .tm-info {
    margin: 0 0 15px;
  }
  .timeline .tm-items > li .tm-info:after {
    content: "";
    display: table;
    clear: both;
  }
  .timeline .tm-items > li .tm-icon {
    border-width: 2px;
    float: left;
    font-size: 22px;
    height: 40px;
    line-height: 36px;
    margin: 0 15px 0 0;
    padding: 0;
    position: static;
    width: 40px;
  }
  .timeline .tm-items > li .tm-datetime {
    margin: 0;
    position: static;
    text-align: left;
  }
  .timeline .tm-items > li .tm-datetime .tm-datetime-date {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .timeline .tm-items > li .tm-datetime .tm-datetime-time {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 767px) {
  .timeline .tm-items > li .tm-box .tm-meta span {
    display: block;
  }
}
html.dark .timeline .tm-items > li .tm-box {
  background: #363636;
  border-color: #303030;
}
html.dark .timeline .tm-items > li .tm-box:after {
  border-right-color: #363636;
}
html.dark .timeline .tm-items > li .tm-box:before {
  border-right-color: #303030;
}
html.dark .timeline .tm-items > li .tm-icon {
  background-color: #1d2127;
}
html.dark .timeline .tm-title {
  background-color: #363636;
  border-color: #303030;
}
html.dark .timeline.timeline-simple .tm-body .tm-title {
  background-color: #363636;
  border-color: #303030;
}
html.dark .timeline.timeline-simple .tm-body .tm-items > li:before {
  box-shadow:
    0 0 0 3px #323232,
    0 0 0 6px #ccc;
}
html.dark .timeline.timeline-simple .tm-body .tm-items > li .tm-box:after {
  border-right-color: #363636;
}
html.dark .timeline.timeline-simple .tm-body .tm-items > li .tm-box:before {
  border-right-color: #303030;
}

/* dark */
html.dark .search-content .search-control-wrapper {
  background: #1d2127;
  border-bottom-color: #363636;
}
html.dark .search-content .tab-content {
  background: transparent;
}
html.dark .search-content .search-toolbar {
  background: #303030;
  border-bottom-color: #303030;
}
html.dark .search-content .search-toolbar .nav-pills a,
html.dark .search-content .search-toolbar .nav-pills a:hover,
html.dark .search-content .search-toolbar .nav-pills a:focus {
  border-bottom-color: #303030;
  border-top-color: #303030;
  color: #808697;
}
html.dark .search-content .search-toolbar .nav-pills a:hover,
html.dark .search-content .search-toolbar .nav-pills a:focus {
  border-bottom-color: #303030;
  border-top-color: #303030;
  color: #555;
}
html.dark .search-content .search-toolbar .nav-pills li.active a,
html.dark .search-content .search-toolbar .nav-pills li.active a:hover,
html.dark .search-content .search-toolbar .nav-pills li.active a:focus {
  color: #ccc;
  border-bottom-color: #ccc;
}
html.dark .search-content .search-results-list li {
  border-bottom-color: #363636;
}
html.dark .search-content .search-results-list a .description {
  color: #808697;
}
html.dark .search-content .search-results-list a:hover {
  background: #363636;
}

/* Dark - Background */
html.dark,
html.dark body {
  background-color: #383838;
}
html.dark.boxed .content-body {
  background-color: #1d2127;
}

html.dark body {
  color: #686868;
}
html.dark .hidden-on-dark {
  display: none !important;
}

/* Dark - Titles */
html.dark h1,
html.dark .h1,
html.dark h2,
html.dark .h2,
html.dark h3,
html.dark .h3,
html.dark h4,
html.dark .h4,
html.dark h5,
html.dark .h5,
html.dark h6,
html.dark .h6 {
  color: #fff;
}

/* Dark - Alerts */
html.dark .alert h1,
html.dark .alert .h1,
html.dark .alert h2,
html.dark .alert .h2,
html.dark .alert h3,
html.dark .alert .h3,
html.dark .alert h4,
html.dark .alert .h4,
html.dark .alert h5,
html.dark .alert .h5,
html.dark .alert h6,
html.dark .alert .h6 {
  color: #111;
}

/* Dark - Blockquote */
html.dark blockquote {
  border-color: #363636;
}

/* Dark - Helpers */
html.dark .text-dark {
  color: #fff !important;
}

html.dark ul.nav-list.primary > li a {
  border-bottom-color: #363636;
}
html.dark ul.nav-list.primary > li a:hover {
  background-color: #363636;
}

html.dark .pagination > li > a,
html.dark .pagination > li > span {
  background-color: #363636;
  border-color: #363636;
}
html.dark .pagination > li.active > a,
html.dark .pagination > li.active > span {
  background-color: #ccc;
  border-color: #363636;
}

html.dark .dropdown-menu {
  background-color: #363636;
}
html.dark .dropdown-menu > li > a {
  color: #eee;
}
html.dark .dropdown-menu > li > a:hover,
html.dark .dropdown-menu > li > a:focus {
  background-color: #1d2127;
  color: #fff;
}

html.dark hr.dotted,
html.dark hr.solid {
  border-color: #4c4c4c;
}

html.dark .img-thumbnail,
html.dark .thumbnail {
  background-color: #303030;
  border-color: #363636;
}

/* Dashboard Section Title */
.dash-section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-ink, #2b211c);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 26px 0 12px 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Amber keyline ties the section headers back to the logo */
.dash-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-amber-soft, rgba(var(--brand-amber-rgb, 250, 177, 22), 0.14)), transparent);
}
.dash-section-title i {
  font-size: 12px;
  color: var(--brand-amber, #fab116);
}
html.dark .dash-section-title { color: var(--brand-ink, #8fb0f5); }

/* Dashboard Real-time Stats & Live Logs Styles */
.stat-card-custom {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 0;
  box-shadow: 0 1px 2px rgba(28, 20, 17, 0.04);
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid #e6eaf2;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  width: 100%;
  height: 84px;
  min-height: 84px;
  max-height: 84px;
  box-sizing: border-box;
  overflow: hidden;
}

.stat-card-custom:hover {
  transform: translateY(-2px);
  border-color: #cfd9ea;
  box-shadow: 0 10px 24px -12px rgba(28, 20, 17, 0.35);
}

/* Icon tiles are tinted, not saturated. Eight solid fills turned every
   dashboard into a colour wheel; a tint keeps the category cue but lets
   the number stay the loudest thing on the card. */
.stat-icon-box {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  background-color: rgba(var(--brand-ink-rgb, 43, 33, 28), 0.08);
  color: var(--brand-ink, #2b211c);
  box-shadow: none;
}

/* Brand-default categories */
.bg-custom-blue,
.bg-custom-purple,
.bg-custom-indigo,
.bg-custom-teal,
.bg-custom-pink {
  background-color: rgba(var(--brand-ink-rgb, 43, 33, 28), 0.08);
  color: var(--brand-ink, #2b211c);
}

/* Amber = needs attention (pending, upcoming, to-prepare) */
.bg-custom-orange {
  background-color: rgba(var(--brand-amber-rgb, 250, 177, 22), 0.16);
  color: var(--brand-amber-deep, #b47c05);
}

/* Green / red stay semantic: settled vs failed */
.bg-custom-green {
  background-color: rgba(22, 143, 91, 0.12);
  color: #157a4d;
}

.bg-custom-red {
  background-color: rgba(214, 47, 71, 0.12);
  color: #c62a44;
}

.stat-content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.stat-count-text {
  font-size: 21px;
  font-weight: 700;
  color: #14203a;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stat-label-text {
  font-size: 11px;
  font-weight: 500;
  color: #6b7793;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Live logs styling */
.log-panel {
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  margin-bottom: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
}

.log-panel-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.log-panel-title {
  font-size: 16px;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.log-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #38ef7d;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(56, 239, 125, 0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(56, 239, 125, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(56, 239, 125, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(56, 239, 125, 0);
  }
}

.log-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 480px;
  overflow-y: auto;
}

.log-item {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.log-item:hover {
  background-color: rgba(90, 86, 235, 0.02);
}

.log-item-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.log-badge {
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  letter-spacing: 0.5px;
  display: inline-block;
  text-align: center;
  min-width: 80px;
}

.log-badge-success {
  background: rgba(56, 239, 125, 0.15) !important;
  color: #11998e !important;
}
.log-badge-danger {
  background: rgba(255, 75, 43, 0.15) !important;
  color: #ff416c !important;
}
.log-badge-info {
  background: rgba(58, 123, 213, 0.15) !important;
  color: #3a7bd5 !important;
}
.log-badge-warning {
  background: rgba(243, 156, 18, 0.15) !important;
  color: #d35400 !important;
}

.log-details {
  display: flex;
  flex-direction: column;
}

.log-message {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
}

.log-user {
  font-size: 12px;
  color: #718096;
  margin-top: 2px;
}

.log-time {
  font-size: 12px;
  color: #a0aec0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Welcome card */
.welcome-card {
  background: linear-gradient(135deg, #ffffff, #f7fafc);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.btn-shortcut-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  transition: all 0.2s ease;
  color: #4a5568 !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none !important;
  gap: 8px;
}

.btn-shortcut-custom i {
  font-size: 20px;
}

.btn-shortcut-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.bg-light-blue {
  background: rgba(59, 130, 246, 0.06);
  color: #3b82f6 !important;
}
.bg-light-blue:hover {
  background: #3b82f6;
  color: #ffffff !important;
}

.bg-light-purple {
  background: rgba(139, 92, 246, 0.06);
  color: #8b5cf6 !important;
}
.bg-light-purple:hover {
  background: #8b5cf6;
  color: #ffffff !important;
}

.bg-light-green {
  background: rgba(16, 185, 129, 0.06);
  color: #10b981 !important;
}
.bg-light-green:hover {
  background: #10b981;
  color: #ffffff !important;
}

.bg-light-red {
  background: rgba(239, 68, 68, 0.06);
  color: #ef4444 !important;
}
.bg-light-red:hover {
  background: #ef4444;
  color: #ffffff !important;
}

.bg-light-orange {
  background: rgba(245, 158, 11, 0.06);
  color: #f59e0b !important;
}
.bg-light-orange:hover {
  background: #f59e0b;
  color: #ffffff !important;
}

.bg-light-teal {
  background: rgba(20, 184, 166, 0.06);
  color: #14b8a6 !important;
}
.bg-light-teal:hover {
  background: #14b8a6;
  color: #ffffff !important;
}

.bg-light-pink {
  background: rgba(236, 72, 153, 0.06);
  color: #ec4899 !important;
}
.bg-light-pink:hover {
  background: #ec4899;
  color: #ffffff !important;
}

.bg-light-dark {
  background: rgba(75, 85, 99, 0.06);
  color: #4b5563 !important;
}
.bg-light-dark:hover {
  background: #4b5563;
  color: #ffffff !important;
}

.bg-light-indigo {
  background: rgba(99, 102, 241, 0.06);
  color: #6366f1 !important;
}
.bg-light-indigo:hover {
  background: #6366f1;
  color: #ffffff !important;
}

/* Equal Height Flex Row for Bootstrap 3 */
.flex-row-equal {
  display: flex !important;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.flex-row-equal:before,
.flex-row-equal:after {
  display: none !important;
}
@media (min-width: 992px) {
  .flex-row-equal > .col-md-7 {
    display: flex;
  }
  .flex-row-equal > .col-md-7 > .welcome-card {
    flex: 1;
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
  }
  .flex-row-equal > .col-md-5 {
    position: relative;
  }
  .flex-row-equal > .col-md-5 > .log-panel {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    bottom: 0;
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .flex-row-equal > .col-md-7 > .welcome-card {
    margin-bottom: 24px !important;
  }
}

/* Role-specific dashboard UI */
.dashboard-page .page-header {
  margin-bottom: 8px;
}
.dashboard-shell {
  margin-top: 4px;
}
.dashboard-role-stats {
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
}
.dashboard-role-stats > [class*="col-"] {
  margin-bottom: 16px;
  display: flex;
}
.dashboard-role-stats > [class*="col-"] > a {
  display: flex;
  width: 100%;
  text-decoration: none;
}
.dashboard-role-stats .stat-card-custom {
  width: 100%;
  height: 84px;
  min-height: 84px;
  max-height: 84px;
}
.dashboard-role-stats--compact > [class*="col-"] {
  margin-bottom: 16px;
}
.stat-count-text--sm {
  font-size: 13px !important;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stat-card-custom--text .stat-count-text--sm {
  font-size: 13px !important;
}

/* Hero banner */
.dashboard-role-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 32px;
  margin-bottom: 28px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}
.dashboard-role-hero__glow {
  position: absolute;
  top: -40%;
  right: -8%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.dashboard-role-hero__icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}
.dashboard-role-hero__body {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}
.dashboard-role-hero__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.dashboard-role-hero__title {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 24px;
  color: #0f172a;
  line-height: 1.25;
}
.dashboard-role-hero__intro {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  max-width: 720px;
}
/* Right-side stack — role badge + optional month filter */
.dashboard-role-hero__side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.dashboard-role-hero__role-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 9px 18px;
  text-align: center;
  min-width: 0;
}
.dashboard-role-hero__role-badge i {
  font-size: 22px;
  opacity: 0.85;
}
.dashboard-role-hero__role-badge span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.9;
  white-space: nowrap;
}
/* Hide role badge when meta block is present (branch/customer/kitchen/rider) */
.dashboard-role-hero:has(.dashboard-role-hero__meta) .dashboard-role-hero__role-badge {
  display: none;
}
/* Branch filter — Superman/Admin only, replaces the role badge */
.dashboard-role-hero__branch-filter {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  padding: 8px 14px;
  color: #475569;
  font-size: 12px;
}
.dashboard-role-hero__branch-select {
  border: none;
  background: transparent;
  color: #1e293b;
  font-size: 12px;
  font-weight: 700;
  max-width: 160px;
  cursor: pointer;
}
.dashboard-role-hero__branch-select:focus {
  outline: none;
}
/* Every hero is now the ink brand panel, so the filter controls are
   styled for a dark ground across all roles (was superman-only). */
.dashboard-role-hero .dashboard-role-hero__branch-filter {
  background: rgba(var(--brand-amber-rgb, 250, 177, 22), 0.14);
  border-color: rgba(var(--brand-amber-rgb, 250, 177, 22), 0.28);
  color: var(--brand-amber-light, #ffd98a);
}
.dashboard-role-hero .dashboard-role-hero__branch-select {
  color: var(--brand-amber-light, #ffd98a);
}
.dashboard-role-hero .dashboard-role-hero__branch-select option {
  color: #1e293b;
}
/* select2 stands in for the hero's branch <select> so each branch can show its
   ID underneath; these rules keep it looking like the pill it replaced. */
.dashboard-role-hero__branch-filter .select2-container .select2-selection--single {
  background: transparent;
  border: none;
  height: auto;
}
.dashboard-role-hero__branch-filter .select2-container .select2-selection__rendered {
  color: #ffd98a;
  font-size: 12px;
  font-weight: 700;
  padding: 0 18px 0 0;
  line-height: 1.4;
}
.dashboard-role-hero__branch-filter .select2-container .select2-selection__arrow {
  height: 100%;
  right: 0;
}
.dashboard-role-hero__branch-filter .select2-container .select2-selection__arrow b {
  border-top-color: #ffd98a;
}
.select2-container--default .select2-results__option {
  padding: 6px 10px;
}

/* Month filter — Superman/Admin only, shown below the role badge */
.dashboard-role-hero__month-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  padding: 6px 8px;
}
.dashboard-role-hero__month-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.08);
  color: #475569;
  font-size: 11px;
  text-decoration: none !important;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.dashboard-role-hero__month-btn:hover {
  background: rgba(15, 23, 42, 0.16);
  color: #1e293b;
}
.dashboard-role-hero__month-label {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.95;
  color: #475569;
}
.dashboard-role-hero__month-label i { margin-right: 4px; opacity: 0.85; }
.dashboard-role-hero .dashboard-role-hero__month-filter {
  background: rgba(var(--brand-amber-rgb, 250, 177, 22), 0.14);
  border-color: rgba(var(--brand-amber-rgb, 250, 177, 22), 0.28);
}
.dashboard-role-hero .dashboard-role-hero__month-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.dashboard-role-hero .dashboard-role-hero__month-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.dashboard-role-hero .dashboard-role-hero__month-label {
  color: var(--brand-amber-light, #ffd98a);
}
.dashboard-role-hero .dashboard-role-hero__month-label i,
.dashboard-role-hero .dashboard-role-hero__branch-filter i {
  color: #ffffff;
  opacity: 1;
}

/* ─────────────────────────────────────────────────────────────
   Hero — one ink brand panel for every role.
   Previously each role had its own pastel scheme (purple admin,
   blue branch, amber kitchen, red rider, green customer), which
   meant five different-looking products. The role is already
   named in the title and the badge, so identity does not need to
   come from the background. This mirrors the login brand panel.
   ───────────────────────────────────────────────────────────── */
.dashboard-role-hero--superman,
.dashboard-role-hero--admin,
.dashboard-role-hero--branch,
.dashboard-role-hero--kitchen,
.dashboard-role-hero--rider,
.dashboard-role-hero--customer {
  background: linear-gradient(155deg, var(--brand-ink-soft, #4a3a32) 0%, var(--brand-ink, #2b211c) 48%, var(--brand-ink-deep, #150f0d) 100%);
  border-color: rgba(var(--brand-ink-rgb, 43, 33, 28), 0.5);
  box-shadow: 0 18px 40px -22px rgba(28, 20, 17, 0.6);
}
.dashboard-role-hero__glow {
  background: radial-gradient(circle, rgba(var(--brand-amber-rgb, 250, 177, 22), 0.28) 0%, transparent 70%);
}
.dashboard-role-hero__icon {
  background: rgba(255, 255, 255, 0.14);
  /* The hero is a dark gradient panel in both themes, so its icons are plain
     white rather than an accent that has to stay legible against it. */
  color: #ffffff;
  box-shadow: none;
}
.dashboard-role-hero__badge {
  background: rgba(255, 255, 255, 0.14);
  color: var(--brand-amber-light, #ffd98a);
}
.dashboard-role-hero__title,
.dashboard-role-hero__intro {
  color: #ffffff;
}
.dashboard-role-hero__intro {
  color: rgba(255, 255, 255, 0.76);
}
.dashboard-role-hero__intro strong {
  color: var(--brand-amber-light, #ffd98a);
  font-weight: 600;
}
.dashboard-role-hero__role-badge {
  background: rgba(var(--brand-amber-rgb, 250, 177, 22), 0.15);
  border-color: rgba(var(--brand-amber-rgb, 250, 177, 22), 0.3);
  color: var(--brand-amber-light, #ffd98a);
}
.dashboard-role-hero__role-badge i {
  color: var(--brand-amber, #fab116);
}

/* Hero meta — labeled row list */
.dashboard-role-hero__meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
  /* Sits on the ink hero, so it is a translucent light panel, not white */
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 10px 16px;
  backdrop-filter: blur(4px);
  min-width: 260px;
  max-width: 360px;
}
.dashboard-role-hero__meta-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.dashboard-role-hero__meta-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.dashboard-role-hero__meta-row:first-child {
  padding-top: 0;
}
.dashboard-role-hero__meta-row-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  flex-shrink: 0;
  width: 110px;
  margin-right: 8px;
}
.dashboard-role-hero__meta-row-label i {
  font-size: 11px;
  color: #ffffff;
  width: 13px;
  text-align: center;
}
.dashboard-role-hero__meta-row-value {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  word-break: break-word;
  line-height: 1.4;
}
.dashboard-role-hero__meta-row:first-child .dashboard-role-hero__meta-row-value {
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .dashboard-role-hero__meta { min-width: 0; width: 100%; max-width: 100%; }
}

/* Status chips (branch) */
.dashboard-status-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.dash-status-chip {
  text-align: center;
  padding: 16px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: #fff;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}
.dash-status-chip__value {
  display: block;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}
.dash-status-chip__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}
.dash-status-chip--warning {
  border-color: rgba(245, 158, 11, 0.25);
  background: linear-gradient(180deg, #fffbeb, #fff);
}
.dash-status-chip--warning .dash-status-chip__value { color: #d97706; }
.dash-status-chip--info {
  border-color: rgba(59, 130, 246, 0.25);
  background: linear-gradient(180deg, #eff6ff, #fff);
}
.dash-status-chip--info .dash-status-chip__value { color: #2563eb; }
.dash-status-chip--success {
  border-color: rgba(16, 185, 129, 0.25);
  background: linear-gradient(180deg, #ecfdf5, #fff);
}
.dash-status-chip--success .dash-status-chip__value { color: #059669; }
.dash-status-chip--danger {
  border-color: rgba(239, 68, 68, 0.25);
  background: linear-gradient(180deg, #fef2f2, #fff);
}
.dash-status-chip--danger .dash-status-chip__value { color: #dc2626; }

/* Cards & shortcuts */
.dash-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  margin-bottom: 24px;
  overflow: hidden;
}
.dash-card__header {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}
.dash-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-card__title i {
  color: var(--primary-color, #3b82f6);
  font-size: 16px;
}
.dash-card__body {
  padding: 22px;
}
.dashboard-page .flex-row-equal .dash-card--shortcuts {
  margin-bottom: 0;
  height: 100%;
}
.dashboard-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}
.dashboard-shortcuts-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.dashboard-page .btn-shortcut-custom {
  min-height: 88px;
  border-radius: 14px;
  font-size: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #f8fafc;
}
.dashboard-page .btn-shortcut-custom i {
  font-size: 22px;
  margin-bottom: 2px;
}

/* Info tiles (admin/superman) */
.dash-info-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.dash-info-tiles--4 {
  grid-template-columns: repeat(4, 1fr);
}
.dash-info-tile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.dash-info-tile__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.dash-info-tile__title {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}
.dash-info-tile__text {
  margin: 0;
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
}
.dash-info-tile--amber .dash-info-tile__icon { background: rgba(245, 158, 11, 0.15); color: #d97706; }
.dash-info-tile--indigo .dash-info-tile__icon { background: rgba(99, 102, 241, 0.15); color: #4f46e5; }
.dash-info-tile--green .dash-info-tile__icon { background: rgba(16, 185, 129, 0.15); color: #059669; }
.dash-info-tile--blue .dash-info-tile__icon { background: rgba(59, 130, 246, 0.15); color: #2563eb; }

/* Branch manager dashboard */
.dashboard-role-stats--branch > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}
.dash-card__meta {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-left: 8px;
}
.dash-ops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.dash-ops-grid__item {
  text-align: center;
  padding: 16px 10px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #f8fafc;
}
.dash-ops-grid__value {
  display: block;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}
.dash-ops-grid__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}
.dash-ops-grid__item--warning .dash-ops-grid__value { color: #d97706; }
.dash-ops-grid__item--info .dash-ops-grid__value { color: #2563eb; }
.dash-ops-grid__item--success .dash-ops-grid__value { color: #059669; }
.dash-ops-grid__item--muted .dash-ops-grid__value { color: #64748b; }
.dash-card--ops-overview {
  margin-bottom: 20px;
}
.dash-branch-alerts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.dash-branch-alert {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.dash-branch-alert:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.dash-branch-alert--danger {
  background: linear-gradient(135deg, #fef2f2, #fff);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #b91c1c;
}
.dash-branch-alert--success {
  background: linear-gradient(135deg, #ecfdf5, #fff);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #047857;
}
@media (min-width: 992px) {
  .dashboard-split-row--branch {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .dashboard-split-row--branch > [class*="col-"] {
    display: flex;
    flex-direction: column;
  }
  .dashboard-split-row--branch .dash-card {
    flex: 1;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
  }
  .dashboard-split-row--branch .dash-card__body {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .dash-ops-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Side panel & meta */
.dashboard-split-row {
  margin-bottom: 8px;
}
.dash-meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dash-meta-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.dash-meta-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.dash-meta-list__label {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}
.dash-meta-list__value {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-align: right;
}
.dash-highlight-value {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color, #3b82f6);
  line-height: 1.2;
  padding: 12px 0 4px;
}

/* Referral banner */
.dash-referral-banner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 22px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.dash-referral-banner__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #10b981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.dash-referral-banner__text {
  flex: 1;
  min-width: 180px;
  font-size: 14px;
  color: #065f46;
}
.dash-referral-banner__text code {
  background: rgba(255, 255, 255, 0.7);
  padding: 4px 10px;
  border-radius: 8px;
  margin-left: 8px;
  font-weight: 700;
  color: #047857;
}

@media (max-width: 991px) {
  .dashboard-status-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .dash-info-tiles,
  .dash-info-tiles--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .dashboard-role-hero {
    flex-direction: column;
    align-items: stretch;
  }
  .dashboard-role-hero__meta {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .dashboard-role-hero {
    padding: 22px 20px;
  }
  .dashboard-role-hero__title {
    font-size: 20px;
  }
  .dashboard-status-row {
    grid-template-columns: 1fr;
  }
  .dash-info-tiles,
  .dash-info-tiles--4 {
    grid-template-columns: 1fr;
  }
  .dashboard-shortcuts-grid--2 {
    grid-template-columns: 1fr;
  }
}

/* Dashboard Dark Mode Fixes */
html.dark .stat-card-custom {
  background: #303030 !important;
  border-color: #3e3e3e !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}
html.dark .stat-count-text {
  color: #ffffff !important;
}
html.dark .stat-label-text {
  color: #98a4bb !important;
}
/* Tinted icon boxes need a lift on a dark card or the fill disappears */
html.dark .bg-custom-blue,
html.dark .bg-custom-purple,
html.dark .bg-custom-indigo,
html.dark .bg-custom-teal,
html.dark .bg-custom-pink {
  background-color: rgba(var(--brand-ink-rgb, 126, 162, 238), 0.16) !important;
  color: var(--brand-ink, #9ec0ff) !important;
}
html.dark .bg-custom-orange {
  background-color: rgba(var(--brand-amber-rgb, 250, 177, 22), 0.18) !important;
  color: var(--brand-amber, #f5c45e) !important;
}
html.dark .bg-custom-green {
  background-color: rgba(52, 199, 132, 0.16) !important;
  color: #5ed6a0 !important;
}
html.dark .bg-custom-red {
  background-color: rgba(240, 90, 116, 0.16) !important;
  color: #ff8fa3 !important;
}
html.dark .welcome-card {
  background: linear-gradient(135deg, #303030, #242424) !important;
  border-color: #3e3e3e !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2) !important;
}
html.dark .welcome-card h3,
html.dark .welcome-card h4 {
  color: #ffffff !important;
}
html.dark .welcome-card p {
  color: #cbd5e1 !important;
}
html.dark .log-panel {
  background: #303030 !important;
  border-color: #3e3e3e !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2) !important;
}
html.dark .log-panel-header {
  border-bottom-color: #3e3e3e !important;
}
html.dark .log-panel-title {
  color: #ffffff !important;
}
html.dark #log-status {
  color: #cbd5e1 !important;
}
html.dark .log-item {
  border-bottom-color: #3e3e3e !important;
}
html.dark .log-item:hover {
  background-color: rgba(255, 255, 255, 0.03) !important;
}
html.dark .log-message {
  color: #e2e8f0 !important;
}
html.dark .log-user {
  color: #cbd5e1 !important;
}
html.dark .btn-shortcut-custom {
  border-color: #3e3e3e !important;
}
html.dark .btn-shortcut-custom:hover {
  color: #ffffff !important;
}
/* Dark mode keeps the ink brand panel — just deeper, so it still reads
   as the same hero rather than turning into a grey slab. */
html.dark .dashboard-role-hero {
  background: linear-gradient(155deg, #332721 0%, #241b17 48%, #120d0b 100%) !important;
  border-color: rgba(93, 138, 232, 0.22) !important;
}
html.dark .dashboard-role-hero__title {
  color: #ffffff !important;
}
html.dark .dashboard-role-hero__intro {
  color: rgba(255, 255, 255, 0.72) !important;
}
html.dark .dashboard-role-hero__intro strong {
  color: var(--brand-amber-light, #ffd98a) !important;
}
html.dark .dashboard-role-hero__meta {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
html.dark .dashboard-role-hero__meta-row {
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}
html.dark .dashboard-role-hero__meta-row-label {
  color: #94a3b8 !important;
}
html.dark .dashboard-role-hero__meta-row-value {
  color: #f1f5f9 !important;
}
html.dark .dashboard-role-hero .dashboard-role-hero__month-filter {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}
html.dark .dashboard-role-hero .dashboard-role-hero__month-btn {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #cbd5e1 !important;
}
html.dark .dashboard-role-hero .dashboard-role-hero__month-btn:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #f1f5f9 !important;
}
html.dark .dashboard-role-hero .dashboard-role-hero__month-label {
  color: #cbd5e1 !important;
}
html.dark .dashboard-role-hero .dashboard-role-hero__role-badge {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #cbd5e1 !important;
}
html.dark .dashboard-role-hero .dashboard-role-hero__branch-filter {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #cbd5e1 !important;
}
html.dark .dashboard-role-hero .dashboard-role-hero__branch-select {
  color: #f1f5f9 !important;
}
html.dark .dashboard-role-hero .dashboard-role-hero__branch-select option {
  color: #1e293b;
}
html.dark .dash-card {
  background: #303030 !important;
  border-color: #3e3e3e !important;
}
html.dark .dash-card__header {
  background: #2a2a2a !important;
  border-bottom-color: #3e3e3e !important;
}
html.dark .dash-card__title {
  color: #f1f5f9 !important;
}
html.dark .dash-info-tile {
  background: #303030 !important;
  border-color: #3e3e3e !important;
}
html.dark .dash-info-tile__title {
  color: #f1f5f9 !important;
}
html.dark .dash-status-chip {
  background: #303030 !important;
  border-color: #3e3e3e !important;
}
html.dark .dash-ops-grid__item {
  background: #2a2a2a !important;
  border-color: #3e3e3e !important;
}
html.dark .dash-branch-alert--danger {
  background: linear-gradient(135deg, #3a2020, #303030) !important;
}
html.dark .dash-branch-alert--success {
  background: linear-gradient(135deg, #1a3a2f, #303030) !important;
}
html.dark .dash-meta-list__value {
  color: #f1f5f9 !important;
}
html.dark .dash-referral-banner {
  background: linear-gradient(135deg, #1a3a2f, #264d3d) !important;
  border-color: #2d5a47 !important;
}
html.dark .bg-light-blue {
  background: rgba(59, 130, 246, 0.15) !important;
  color: #60a5fa !important;
}
html.dark .bg-light-purple {
  background: rgba(139, 92, 246, 0.15) !important;
  color: #a78bfa !important;
}
html.dark .bg-light-green {
  background: rgba(16, 185, 129, 0.15) !important;
  color: #34d399 !important;
}
html.dark .bg-light-red {
  background: rgba(239, 68, 68, 0.15) !important;
  color: #f87171 !important;
}
html.dark .bg-light-orange {
  background: rgba(245, 158, 11, 0.15) !important;
  color: #fbbf24 !important;
}
html.dark .bg-light-teal {
  background: rgba(20, 184, 166, 0.15) !important;
  color: #2dd4bf !important;
}
html.dark .bg-light-pink {
  background: rgba(236, 72, 153, 0.15) !important;
  color: #f472b6 !important;
}
html.dark .bg-light-dark {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #e2e8f0 !important;
}
html.dark .bg-light-indigo {
  background: rgba(99, 102, 241, 0.15) !important;
  color: #818cf8 !important;
}

/* Dark Mode Labels and Badges */
html.dark .label-success,
html.dark .log-badge-success {
  background-color: rgba(56, 239, 125, 0.15) !important;
  color: #38ef7d !important;
  border: 1px solid rgba(56, 239, 125, 0.25) !important;
}

html.dark .label-danger,
html.dark .log-badge-danger {
  background-color: rgba(255, 75, 43, 0.15) !important;
  color: #ff6b6b !important;
  border: 1px solid rgba(255, 75, 43, 0.25) !important;
}

html.dark .label-warning,
html.dark .log-badge-warning {
  background-color: rgba(243, 156, 18, 0.15) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(243, 156, 18, 0.25) !important;
}

html.dark .label-info,
html.dark .log-badge-info {
  background-color: rgba(58, 123, 213, 0.15) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(58, 123, 213, 0.25) !important;
}

html.dark .label-primary,
html.dark .badge-primary {
  background-color: rgba(59, 130, 246, 0.15) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(59, 130, 246, 0.25) !important;
}

html.dark .label-default {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #cbd5e1 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

html.dark .label-dark {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #e2e8f0 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* Panel Header and Nav Tabs Button Styling */
.panel-heading .btn,
.nav-tabs .btn {
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 5px 14px !important;
  border-radius: 4px !important;
  transition: all 0.2s ease-in-out !important;
  margin-top: 0px !important; /* Reset inline overrides */
  line-height: 1.42857143 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
}

/* Light Mode specific colors */
.panel-heading .btn-danger,
.nav-tabs .btn-danger {
  background-color: rgba(220, 53, 69, 0.1) !important;
  color: #dc3545 !important;
  border: 1px solid rgba(220, 53, 69, 0.25) !important;
}

.panel-heading .btn-danger:hover,
.nav-tabs .btn-danger:hover {
  background-color: #dc3545 !important;
  color: #ffffff !important;
  border-color: #dc3545 !important;
}

.panel-heading .btn-default,
.nav-tabs .btn-default {
  background-color: rgba(0, 123, 255, 0.08) !important;
  color: var(--primary-color) !important;
  border: 1px solid rgba(0, 123, 255, 0.2) !important;
}

.panel-heading .btn-default:hover,
.nav-tabs .btn-default:hover {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  border-color: var(--primary-color) !important;
}

.panel-heading .btn-primary,
.nav-tabs .btn-primary {
  background-color: rgba(0, 123, 255, 0.08) !important;
  color: var(--primary-color) !important;
  border: 1px solid rgba(0, 123, 255, 0.2) !important;
}

.panel-heading .btn-primary:hover,
.nav-tabs .btn-primary:hover {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  border-color: var(--primary-color) !important;
}

/* Dark Mode styling */
html.dark .panel-heading .btn-danger,
html.dark .nav-tabs .btn-danger {
  background-color: rgba(239, 68, 68, 0.15) !important;
  color: #f87171 !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
}

html.dark .panel-heading .btn-danger:hover,
html.dark .nav-tabs .btn-danger:hover {
  background-color: #ef4444 !important;
  color: #ffffff !important;
  border-color: #ef4444 !important;
}

html.dark .panel-heading .btn-default,
html.dark .nav-tabs .btn-default {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #cbd5e1 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

html.dark .panel-heading .btn-default:hover,
html.dark .nav-tabs .btn-default:hover {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  border-color: var(--primary-color) !important;
}

html.dark .panel-heading .btn-primary,
html.dark .nav-tabs .btn-primary {
  background-color: rgba(59, 130, 246, 0.15) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(59, 130, 246, 0.3) !important;
}

html.dark .panel-heading .btn-primary:hover,
html.dark .nav-tabs .btn-primary:hover {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  border-color: var(--primary-color) !important;
}

/* Dark Mode warning button styling override */
html.dark .btn-warning {
  background-color: #f59e0b !important;
  border-color: #d97706 !important;
  color: #1f2937 !important;
}

html.dark .btn-warning:hover {
  background-color: #d97706 !important;
  color: #ffffff !important;
  border-color: #b45309 !important;
}

/* Dark Mode info button styling override */
html.dark .btn-info {
  background-color: #06b6d4 !important;
  border-color: #0891b2 !important;
  color: #ffffff !important;
}

html.dark .btn-info:hover {
  background-color: #0891b2 !important;
  color: #ffffff !important;
  border-color: #0e7490 !important;
}

/* Dark Mode error modal details text override */
html.dark #errorModalContent {
  background-color: #1a1a24 !important;
  border-color: #2b2b3a !important;
  color: #f87171 !important;
}

/* Active Users Dropdown Styling */
@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

html.dark #active-users-list-items li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

html.dark #active-users-list-items li div div {
  color: #eeeeee !important;
}

html.dark #active-users-list-items li div div:nth-child(2) {
  color: #8b929a !important;
}

html.dark #active-users-list-items li img {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

html.dark #active-users-list-items li .active-dot {
  border-color: #2e353e !important;
}

/* Active User Hover Styles */
.active-user-item:hover {
  background: rgba(89, 86, 234, 0.06);
}
html.dark .active-user-item:hover {
  background: rgba(89, 86, 234, 0.12) !important;
}

/* Floating Chat Box */
.floating-chat-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  height: 400px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  z-index: 1050;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(120%);
  opacity: 0;
}

.floating-chat-box.open {
  transform: translateY(0);
  opacity: 1;
}

.chat-header {
  background: var(--theme-primary);
  color: #fff;
  padding: 12px 15px;
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header .chat-title-container {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.chat-header .chat-title {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-header .close-chat {
  cursor: pointer;
  font-size: 16px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.chat-header .close-chat:hover {
  opacity: 1;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-bubble {
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.4;
  word-break: break-word;
}

.chat-bubble.sent {
  background: var(--theme-primary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-bubble.received {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-input-area {
  padding: 10px 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  border-bottom-left-radius: 11px;
  border-bottom-right-radius: 11px;
}

.chat-input-area input {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 13px;
  background: #fff;
  outline: none;
}

.chat-input-area button {
  background: var(--theme-primary);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.chat-input-area button:hover {
  background: #4744ce;
}

/* Dark Mode Styles */
html.dark .floating-chat-box {
  background: rgba(46, 53, 62, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
}

html.dark .chat-bubble.received {
  background: rgba(255, 255, 255, 0.1);
  color: #eee;
}

html.dark .chat-input-area {
  border-top-color: rgba(255, 255, 255, 0.1);
  background: rgba(46, 53, 62, 0.5);
}

html.dark .chat-input-area input {
  background: #242a30;
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Messenger dropdown last message customization */
.dropdown-last-message strong {
  color: var(--theme-primary);
}
html.dark .dropdown-last-message strong {
  color: #a5b4fc !important;
}
html.dark .dropdown-last-message {
  color: #8b929a !important;
}

/* Floating Action Button (FAB) */
.chat-list-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--theme-primary);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(89, 86, 234, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1040;
  transition: all 0.3s ease;
}

.chat-list-fab:hover {
  transform: scale(1.1);
  background: #4744ce;
}

.chat-list-fab i {
  font-size: 24px;
}

/* Floating Chat List Drawer */
.floating-chat-list-box {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  height: 450px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  z-index: 1045;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
}

.floating-chat-list-box.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-list-header {
  background: var(--theme-primary);
  color: #fff;
  padding: 12px 15px;
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-list-title {
  font-weight: 600;
  font-size: 15px;
}

.chat-list-header .close-chat-list {
  cursor: pointer;
  font-size: 16px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.chat-list-header .close-chat-list:hover {
  opacity: 1;
}

.chat-list-content {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
}

/* Chat list item styling */
.chat-list-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.chat-list-item:hover {
  background: rgba(89, 86, 234, 0.06);
}

.chat-list-item-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
}

/* Dark Mode Overrides */
html.dark .floating-chat-list-box {
  background: rgba(46, 53, 62, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
}

html.dark .chat-list-item {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

html.dark .chat-list-item:hover {
  background: rgba(89, 86, 234, 0.12) !important;
}

html.dark .chat-list-item-name {
  color: #eeeeee !important;
}

html.dark .chat-list-item-msg {
  color: #8b929a !important;
}

/* Navbar UI Alignment & Color Fixes */
.header-right .header-menu {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  height: 100% !important;
}

.header-right .header-menu > li {
  float: none !important;
  margin: 0 10px 0 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  height: 59px !important;
}

.header-right .header-menu > li > a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  padding: 0 4px !important;
}

.navbar-wallet-badge {
  border: 1px solid transparent;
}

.header-right .header-menu-item a i,
.header-left .sidebar-toggle i,
.header-right .dropdown-toggle i {
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.header-right .header-menu-item a:hover i,
.header-left .sidebar-toggle:hover i,
.header-right .dropdown-toggle:hover i {
  transform: scale(1.15);
}

.userbox .custom-caret {
  color: var(--navbar-text) !important;
}

/* Flexbox Filter Layout Styles and Select2 Alignment Fixes */
.d-flex::before,
.d-flex::after {
  display: none !important;
}

.select2-container {
  vertical-align: bottom !important;
}

.select2-container--bootstrap .select2-selection--single {
  height: 34px !important;
  line-height: 34px !important;
}

.select2-container--bootstrap
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 32px !important;
}

/* Theme preset list — same layout family as theme-preferences-form */
.theme-preset-option__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  cursor: pointer;
}
.theme-preset-option--active .theme-preset-option__label {
  font-weight: 600;
}
.theme-preset-option__swatches {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.theme-preset-swatch {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  vertical-align: middle;
}
.theme-preset-swatch--text {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
html.dark .theme-preset-swatch {
  border-color: rgba(255, 255, 255, 0.2);
}

/* ── Badge color variants (Bootstrap 3 compat) ─────────────────────────── */
.badge-default  { background-color: #777; color: #fff; }
.badge-primary  { background-color: #337ab7; color: #fff; }
.badge-success  { background-color: #5cb85c; color: #fff; }
.badge-info     { background-color: #5bc0de; color: #fff; }
.badge-warning  { background-color: #f0ad4e; color: #fff; }
.badge-danger   { background-color: #d9534f; color: #fff; }
.badge-secondary{ background-color: #6c757d; color: #fff; }
.badge { font-size: 11px; font-weight: 600; padding: 3px 7px; border-radius: 10px; display: inline-block; line-height: 1; text-align: center; white-space: nowrap; vertical-align: middle; }

/* ── Sidebar default gray background (overrides white/dark defaults) ── */
.sidebar-left-wrapper,
.sidebar-header,
.sidebar-left .nano,
.sidebar-left .nano-content,
.sidebar-left .nav-main .nav-children,
html.sidebar-light aside#sidebar-left,
html.sidebar-light .sidebar-left,
aside#sidebar-left,
.sidebar-left {
  background: var(--sidebar-bg, #f1f3f5) !important;
}

/* submit button alignment handled in dynamic.php */
