@charset "UTF-8";
.container-fluid {
  max-width: 100%;
}

.container,
.container-fluid {
  -webkit-transition: max-width 0.25s;
  transition: max-width 0.25s;
}

.card {
  border: 0;
  /*box-shadow: 0 1px 8px rgba(0, 0, 0, .3);*/
  box-shadow: 0 0.05rem 0.01rem rgba(75, 75, 90, 0.075);
}
.card .card-header {
  font-weight: 700;
  border: 0;
}

.dropdown-menu {
  background-color: #1C1C1C;
  border: 0;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.75);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #fff;
  background: #878686;
}

.dropdown-divider {
  border-color: #878686;
}

.table {
  margin-bottom: 0;
  background-color: #fff;
}
.table td,
.table th {
  vertical-align: middle;
}
.table thead th {
  border-bottom-width: 1px;
}

.pagination {
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
}

.page-link {
  color: rgba(255, 255, 255, 0.5);
  background-color: #1C1C1C;
  border: 0;
}
.page-link:hover {
  color: #fff;
  background-color: #878686;
}

.page-item.disabled .page-link {
  color: rgba(255, 255, 255, 0.5);
  background-color: #495057;
}

body {
  overflow-x: hidden;
}

.is-required:after {
  margin-left: 0.25rem;
  color: #dc3545;
  content: "*";
}

.page-header {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ced4da;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
          align-items: flex-end;
  flex-wrap: wrap;
}
.page-header .page-title {
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.page-header .page-breadcrumb {
  margin-right: 1rem;
}
.page-header .page-breadcrumb .breadcrumb {
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
}
.page-header .page-breadcrumb .breadcrumb-item {
  color: #878686;
  font-size: 0.75rem;
}
.page-header .page-breadcrumb .breadcrumb-item.active {
  color: #E64783;
}
.page-header .page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\F0DA";
  line-height: 1;
}
.page-header .page-breadcrumb .breadcrumb-item i {
  margin-right: 0.375rem;
  font-size: 0.75rem;
}

.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
          align-items: flex-start;
  flex-wrap: wrap;
}

.card-header {
  background-color: rgba(28, 28, 28, 0.08);
}

.layout {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-transition: margin-left 0.25s;
  transition: margin-left 0.25s;
}
@media (min-width: 576px) {
  .layout {
    width: auto;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .layout {
    height: 1px;
  }
}
.layout.auth {
  -webkit-box-pack: center;
          justify-content: center;
}
.layout.auth .container {
  max-width: 720px;
}
.layout.auth .container.login {
  max-width: 650px;
}
.layout.auth .logos {
  margin-bottom: 1rem;
  text-align: center;
}
.layout.auth .logos img {
  margin: 1rem 0.75rem;
  max-height: 75px;
}
@media (min-width: 576px) {
  .layout.auth .logos img {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    max-height: 120px;
  }
}
.layout.auth .card-header {
  text-align: center;
  color: #E64783;
  text-transform: uppercase;
}
.layout.app {
  padding-top: 0rem;
}
.layout .main {
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  padding-top: 2rem;
}

.btn-container-toggler {
  display: none;
}
@media (min-width: 576px) {
  .btn-container-toggler {
    display: inline-block;
  }
}

.layout-controls {
  margin-bottom: 0.5rem;
}
@media (min-width: 1200px) {
  .layout-controls {
    display: none;
  }
}
@media (min-width: 1360px) {
  .layout-controls {
    display: inline-block;
  }
}

.sidebar {
  margin-left: -300px;
  width: 100%;
  max-width: 300px;
  /*background-color: $white-side;*/
  background-color: #1a1819;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  position: fixed;
  /*top: 0;*/
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1050;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 0.05rem 0.01rem rgba(75, 75, 90, 0.075);
  -webkit-transition: margin-left 0.25s;
  transition: margin-left 0.25s;
}
@media (min-width: 1200px) {
  .sidebar {
    margin-left: 0;
  }
  .sidebar + .layout {
    margin-left: 300px;
  }
}
.sidebar.show {
  margin-left: 0;
}
.sidebar .sidebar-header {
  padding: 1rem 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  text-decoration: none;
}
.sidebar .sidebar-header img {
  margin-right: 0.75rem;
  width: auto;
  height: 30px;
}
.sidebar .sidebar-header .title {
  color: #E64783;
  font-weight: 600;
  text-transform: uppercase;
  min-width: 0;
}
.sidebar .sidebar-header .project {
  font-size: 0.75rem;
}
.sidebar .sidebar-header .company {
  font-size: 0.625rem;
  color: #fff;
}
.sidebar .sidebar-heading {
  padding: 15px 30px 10px 30px;
  letter-spacing: 0.05em;
  pointer-events: none;
  cursor: default;
  font-size: 0.6875rem;
  text-transform: uppercase;
  color: #E64783;
  /*  .menu-title{
        padding: 15px 30px 10px 30px;
        letter-spacing: .05em;
        pointer-events: none;
        cursor: default;
        font-size: .6875rem;
        text-transform: uppercase;
        color: #4b4b5a;
    }*/
}
.sidebar .sidebar-heading i {
  margin-right: 0.5rem;
}
.sidebar .name {
  color: #323E48;
  font-weight: 900;
  text-transform: uppercase;
}
.sidebar .nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
.sidebar .nav-item.has-menu {
  position: relative;
  color: #4b4b5a;
}
@media (min-width: 1200px) {
  .sidebar .nav-item.has-menu .collapse {
    width: 200px;
    background-color: #fff;
    display: block;
    position: fixed;
    top: 0;
    left: -99999px;
  }
  .sidebar .nav-item.has-menu:hover > .nav-link, .sidebar .nav-item.has-menu.hover > .nav-link {
    border-left: 3px solid #2bd0fd;
    color: black;
    background-color: #f7f7ff;
  }
  .sidebar .nav-item.has-menu:hover > .nav-link i, .sidebar .nav-item.has-menu.hover > .nav-link i {
    color: #2bd0fd;
  }
  .sidebar .nav-item.has-menu:hover .collapse, .sidebar .nav-item.has-menu.hover .collapse {
    left: 300px;
  }
}
.sidebar .sub-link > .nav-link {
  font-size: 13px;
  color: black;
}
.sidebar .nav-link {
  color: #f3f4f7;
  display: block;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-left: 3px solid transparent;
}
.sidebar .nav-link:hover, .sidebar .nav-link:focus {
  /*border-left: 3px solid $primary-second-color;*/
  color: #2bd0fd;
  background-color: #f7f7ff;
}
.sidebar .nav-link.active {
  border-left: 3px solid #2bd0fd;
  color: white;
  background-color: #322e2f;
}
.sidebar .nav-link.active i {
  color: #2bd0fd;
}
.sidebar .nav-link.disabled {
  color: rgba(255, 255, 255, 0.3);
  background-color: transparent;
}
.sidebar .nav-link i {
  margin-right: 0.5rem;
}
.sidebar .nav-link[data-toggle=collapse]:after {
  display: inline-block;
  float: right;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\F107";
  font-size: 12px;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  transition-property: -webkit-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
@media (min-width: 1200px) {
  .sidebar .nav-link[data-toggle=collapse]:after {
    content: "\F105";
  }
}
@media (max-width: 1199.98px) {
  .sidebar .nav-link[aria-expanded=true]:after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}

.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  background-color: #1C1C1C;
}
.sidebar-backdrop.fade {
  opacity: 0;
}
.sidebar-backdrop.show {
  opacity: 0.5;
}

.nav-top {
  padding: 10px 22px 10px 37px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 2010;
  background-color: #fff;
  box-shadow: 0 0.05rem 0.01rem rgba(75, 75, 90, 0.075);
}
.nav-top img {
  margin-right: 0.75rem;
  width: auto;
  height: 50px;
}
.nav-top .title {
  color: #E64783;
  font-weight: 600;
  text-transform: uppercase;
  min-width: 0;
}

.footer {
  padding-top: 3rem;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .footer .container,
.footer .container-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
  }
}
.footer .logo {
  height: 30px;
  width: auto;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .footer .logo {
    margin-right: 0.75rem;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .footer .text {
    text-align: left;
  }
}

@media (min-width: 576px) {
  .table-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
}
.table-controls label {
  margin-bottom: 0.25rem;
}

.table-search {
  margin-bottom: 0.5rem;
}
@media (min-width: 576px) {
  .table-search {
    margin-right: 1rem;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
}
@media (min-width: 768px) {
  .table-search .form-control {
    min-width: 350px;
  }
}

.table-entries {
  margin-bottom: 0.5rem;
  display: inline-block;
}
@media (min-width: 576px) {
  .table-entries {
    display: block;
  }
}

.table-sortable thead th.sortable {
  position: relative;
  cursor: pointer;
}
.table-sortable thead th.sortable:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\F0DC";
  position: absolute;
  right: 0.5rem;
}
.table-sortable thead th.sort-asc, .table-sortable thead th.sort-desc {
  color: #323E48;
}
.table-sortable thead th.sort-asc:after {
  content: "\F0DE";
}
.table-sortable thead th.sort-desc:after {
  content: "\F0DD";
}

.page-nav-top {
  background: white;
  box-shadow: 0 0.05rem 0.01rem rgba(75, 75, 90, 0.075);
  padding: 0 2rem 0 6rem;
}
@media (max-width: 575.98px) {
  .page-nav-top {
    padding: 0 1rem;
  }
}
@media (max-width: 991.98px) {
  .page-nav-top {
    padding: 0 2rem 0 2rem;
  }
}

.pro-user-name {
  color: #4b4b5a;
  font-weight: 700;
}

.top-nav-bar {
  padding: 1rem 0 0;
  text-transform: uppercase;
}
.top-nav-bar a {
  color: #cfcfcf;
  padding: 1rem 0;
}
.top-nav-bar .nav-item {
  font-size: 10px;
  padding: 0 0.7rem;
}
.top-nav-bar .nav-item .active {
  color: black;
  font-weight: 800;
  border-bottom: 3px solid #2bd0fd;
}

.user-name-bar {
  padding: 0 0.7rem;
}

.user-profile {
  padding: 7px 20px 5px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
          align-items: center;
}
.user-profile .profile-body {
  display: block;
}
.user-profile .pro-user-desc {
  text-transform: uppercase;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}
@media (max-width: 575.98px) {
  .user-profile {
    padding: 7px 5px 5px 30px;
  }
}

.toggle-split-custom {
  padding: 0;
  color: black;
  background-color: transparent;
  border: 0;
  font-size: 15px;
}
.toggle-split-custom.btn:focus {
  box-shadow: 0 0 black;
}

/*.dropdown-item {
    display: block;
    width: 100%;
    padding: .35rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}*/
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.7rem;
  margin: 0.125rem 0 0;
  font-size: 0.875rem;
  color: #6c757d;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.15);
  border-radius: 0.2rem;
}
.dropdown-menu .item-profile:hover {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.item-profile {
  color: #4b4b5a;
}
.item-profile i {
  color: #4b4b5a;
  padding: 0 0.3rem;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #f6f6f7;
}

.dropdown-menu {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -webkit-animation-name: DropDownSlide;
  animation-name: DropDownSlide;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  margin: 0;
  font-size: 0.875rem;
  position: absolute;
  z-index: 1000;
}