html {
  position: relative;
  min-height: 100%; }

body {
  height: 100%; }

#wrapper {
  display: flex; }
  #wrapper #content-wrapper {
    overflow-x: hidden;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 80px; }

body.fixed-nav #content-wrapper {
  margin-top: 56px;
  padding-left: 90px; }
body.fixed-nav.sidebar-toggled #content-wrapper {
  padding-left: 0; }
@media (min-width: 768px) {
  body.fixed-nav #content-wrapper {
    padding-left: 90px; }
  body.fixed-nav.sidebar-toggled #content-wrapper {
    padding-left: 90px; } }

.scroll-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: none;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #fff;
  background: rgba(52, 58, 64, 0.5);
  line-height: 46px; }
  .scroll-to-top:focus, .scroll-to-top:hover {
    color: white; }
  .scroll-to-top:hover {
    background: #343a40; }
  .scroll-to-top i {
    font-weight: 800; }

.smaller {
  font-size: 0.7rem; }

.o-hidden {
  overflow: hidden !important; }

.z-0 {
  z-index: 0; }

.z-1 {
  z-index: 1; }

.navbar-nav .form-inline .input-group {
  width: 100%; }
.navbar-nav .nav-item.active .nav-link {
  color: #fff; }
.navbar-nav .nav-item.dropdown .dropdown-toggle::after {
  width: 1rem;
  text-align: center;
  float: right;
  vertical-align: 0;
  border: 0;
  font-weight: 900;
  content: '\f105';
  font-family: 'Font Awesome 5 Free'; }
.navbar-nav .nav-item.dropdown.show .dropdown-toggle::after {
  content: '\f107'; }
.navbar-nav .nav-item.dropdown.no-arrow .dropdown-toggle::after {
  display: none; }
.navbar-nav .nav-item .nav-link:focus {
  outline: none; }
.navbar-nav .nav-item .nav-link .badge {
  position: absolute;
  margin-left: 0.75rem;
  top: 0.3rem;
  font-weight: 400;
  font-size: 0.5rem; }
@media (min-width: 768px) {
  .navbar-nav .form-inline .input-group {
    width: auto; } }

.sidebar {
  width: 90px !important;
  background-color: #212529;
  min-height: calc(100vh - 56px); }
  .sidebar .nav-item:last-child {
    margin-bottom: 1rem; }
  .sidebar .nav-item .nav-link {
    text-align: center;
    padding: 0.75rem 1rem;
    width: 90px; }
    .sidebar .nav-item .nav-link span {
      font-size: 0.65rem;
      display: block; }
  .sidebar .nav-item .dropdown-menu {
    position: absolute !important;
    transform: none !important;
    left: calc(90px + 0.5rem) !important;
    margin: 0; }
    .sidebar .nav-item .dropdown-menu.dropup {
      bottom: 0;
      top: auto !important; }
  .sidebar .nav-item.dropdown .dropdown-toggle::after {
    display: none; }
  .sidebar .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.5); }
    .sidebar .nav-item .nav-link:active, .sidebar .nav-item .nav-link:focus, .sidebar .nav-item .nav-link:hover {
      color: rgba(255, 255, 255, 0.75); }
  .sidebar.toggled {
    width: 0 !important;
    overflow: hidden; }

@media (min-width: 768px) {
  .sidebar {
    width: 90px !important; }
    .sidebar .nav-item .nav-link {
      display: block;
      width: 100%;
      text-align: left;
      padding: 1rem;
      width: 90px; }
      .sidebar .nav-item .nav-link span {
        font-size: 1rem;
        display: inline; }
    .sidebar .nav-item .dropdown-menu {
      position: static !important;
      margin: 0 1rem;
      top: 0; }
    .sidebar .nav-item.dropdown .dropdown-toggle::after {
      display: block; }
    .sidebar.toggled {
      overflow: visible;
      width: 90px !important; }
      .sidebar.toggled .nav-item:last-child {
        margin-bottom: 1rem; }
      .sidebar.toggled .nav-item .nav-link {
        text-align: center;
        padding: 0.75rem 1rem;
        width: 90px; }
        .sidebar.toggled .nav-item .nav-link span {
          font-size: 0.65rem;
          display: block; }
      .sidebar.toggled .nav-item .dropdown-menu {
        position: absolute !important;
        transform: none !important;
        left: calc(90px + 0.5rem) !important;
        margin: 0; }
        .sidebar.toggled .nav-item .dropdown-menu.dropup {
          bottom: 0;
          top: auto !important; }
      .sidebar.toggled .nav-item.dropdown .dropdown-toggle::after {
        display: none; } }
.sidebar.fixed-top {
  top: 56px;
  height: calc(100vh - 56px);
  overflow-y: auto; }

.card-body-icon {
  position: absolute;
  z-index: 0;
  top: -1.25rem;
  right: -1rem;
  opacity: 0.4;
  font-size: 5rem;
  transform: rotate(15deg); }

@media (min-width: 576px) {
  .card-columns {
    column-count: 1; } }
@media (min-width: 768px) {
  .card-columns {
    column-count: 2; } }
@media (min-width: 1200px) {
  .card-columns {
    column-count: 2; } }

:root {
  --input-padding-x: 0.75rem;
  --input-padding-y: 0.75rem; }

.card-login {
  max-width: 25rem; }

.card-register {
  max-width: 40rem; }

.form-label-group {
  position: relative; }

.form-label-group > input,
.form-label-group > label {
  padding: var(--input-padding-y) var(--input-padding-x);
  height: auto; }

.form-label-group > label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0;
  /* Override default `<label>` margin */
  line-height: 1.5;
  color: #495057;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: all 0.1s ease-in-out; }

.form-label-group input::-webkit-input-placeholder {
  color: transparent; }

.form-label-group input:-ms-input-placeholder {
  color: transparent; }

.form-label-group input::-ms-input-placeholder {
  color: transparent; }

.form-label-group input::-moz-placeholder {
  color: transparent; }

.form-label-group input::placeholder {
  color: transparent; }

.form-label-group input:not(:placeholder-shown) {
  padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
  padding-bottom: calc(var(--input-padding-y) / 3); }

.form-label-group input:not(:placeholder-shown) ~ label {
  padding-top: calc(var(--input-padding-y) / 3);
  padding-bottom: calc(var(--input-padding-y) / 3);
  font-size: 12px;
  color: #777; }

footer.sticky-footer {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 90px);
  height: 80px;
  background-color: #e9ecef; }
  footer.sticky-footer .copyright {
    line-height: 1;
    font-size: 0.8rem; }
  @media (min-width: 768px) {
    footer.sticky-footer {
      width: calc(100% - 90px); } }

body.sidebar-toggled footer.sticky-footer {
  width: 100%; }
@media (min-width: 768px) {
  body.sidebar-toggled footer.sticky-footer {
    width: calc(100% - 90px); } }

.full {
  height: 100vh; }

.box {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.switch {
  font-size: 1rem;
  position: relative; }

.switch input {
  position: absolute;
  height: 1px;
  width: 1px;
  background: none;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  padding: 0; }

.switch input + label {
  position: relative;
  min-width: calc(calc(2.375rem * .8) * 2);
  border-radius: calc(2.375rem * .8);
  height: calc(2.375rem * .8);
  line-height: calc(2.375rem * .8);
  display: inline-block;
  cursor: pointer;
  outline: none;
  user-select: none;
  vertical-align: middle;
  text-indent: calc(calc(calc(2.375rem * .8) * 2) + .5rem); }

.switch input + label::before,
.switch input + label::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(calc(2.375rem * .8) * 2);
  bottom: 0;
  display: block; }

.switch input + label::before {
  right: 0;
  background-color: #dee2e6;
  border-radius: calc(2.375rem * .8);
  transition: 0.2s all; }

.switch input + label::after {
  top: 2px;
  left: 2px;
  width: calc(calc(2.375rem * .8) - calc(2px * 2));
  height: calc(calc(2.375rem * .8) - calc(2px * 2));
  border-radius: 50%;
  background-color: white;
  transition: 0.2s all; }

.switch input:checked + label::before {
  background-color: #08d; }

.switch input:checked + label::after {
  margin-left: calc(2.375rem * .8); }

.switch input:focus + label::before {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 136, 221, 0.25); }

.switch input:disabled + label {
  color: #868e96;
  cursor: not-allowed; }

.switch input:disabled + label::before {
  background-color: #e9ecef; }

.switch.switch-sm {
  font-size: 0.875rem; }

.switch.switch-sm input + label {
  min-width: calc(calc(1.9375rem * .8) * 2);
  height: calc(1.9375rem * .8);
  line-height: calc(1.9375rem * .8);
  text-indent: calc(calc(calc(1.9375rem * .8) * 2) + .5rem); }

.switch.switch-sm input + label::before {
  width: calc(calc(1.9375rem * .8) * 2); }

.switch.switch-sm input + label::after {
  width: calc(calc(1.9375rem * .8) - calc(2px * 2));
  height: calc(calc(1.9375rem * .8) - calc(2px * 2)); }

.switch.switch-sm input:checked + label::after {
  margin-left: calc(1.9375rem * .8); }

.switch.switch-lg {
  font-size: 1.25rem; }

.switch.switch-lg input + label {
  min-width: calc(calc(3rem * .8) * 2);
  height: calc(3rem * .8);
  line-height: calc(3rem * .8);
  text-indent: calc(calc(calc(3rem * .8) * 2) + .5rem); }

.switch.switch-lg input + label::before {
  width: calc(calc(3rem * .8) * 2); }

.switch.switch-lg input + label::after {
  width: calc(calc(3rem * .8) - calc(2px * 2));
  height: calc(calc(3rem * .8) - calc(2px * 2)); }

.switch.switch-lg input:checked + label::after {
  margin-left: calc(3rem * .8); }

.switch + .switch {
  margin-left: 1rem; }

/*# sourceMappingURL=sb-admin.css.map */
