:root {
  --background-sidebar: #144872;
  --menu-item-color: #1faca7;
  --menu-item-expand-color: #007096;
  --menu-item-hover-color: #128581;
  --table-background-color: #144872;
  --table-group-row-color: #effaff;
  --table-group-row-hover-color: #d1e3eb;

  --main-background: #F7F7F7;
  --navbar-background: #EDEDED;

  --text-color: #88aedf;
}

.modal{
  --bs-modal-zindex: 9100;
}

.modal-backdrop {
  --bs-backdrop-zindex: 9000;
}

.has-feedback .form-control{
  padding-left: 3em !important;
}

.ui-pnotify-title{
  color: white !important;
}


.io-panel{
  background-color: white;
  padding: 1.2em;
  border: 1px solid gainsboro;
  margin-bottom: 1em;
}

.io-panel .io-title{
  border-bottom: 1px solid gainsboro;
}

.io-panel .io-content{
  display: flex;
  flex-direction: column;
  margin-top: 1em;
}

.btn-menu{
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 1.5em;
  color: var(--text-color);
}

.btn-menu i{
  margin: 0;
  padding: 0;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-menu:hover{
  background-color: rgba(220, 220, 220, 0.253);
  border-radius: 100%;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--menu-item-color);
  --bs-btn-border-color: var(--menu-item-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--menu-item-hover-color);
  --bs-btn-hover-border-color: var(--menu-item-hover-color);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--menu-item-hover-color);
  --bs-btn-active-border-color: var(--menu-item-hover-color);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--menu-item-expand-color);
  --bs-btn-disabled-border-color: var(--menu-item-expand-color);
  display: flex;
  gap: .5em;
  align-items: center;
  justify-content: center;
}

.dt-info{
  margin-top: 1em !important;
}

.dt-search{
  margin-bottom: 1em !important;
}

.dt-paging{
  margin-top: .5em;
  display: flex;
  justify-content: end;
}

.pagination {
  --bs-pagination-color: var(--table-background-color);
  --bs-pagination-hover-color: var(--table-background-color);
  --bs-pagination-active-bg: var(--table-background-color);
  --bs-pagination-active-border-color: var(--table-background-color);

}

.btn-outline-primary {
  --bs-btn-color: var(--menu-item-color);
  --bs-btn-border-color: var(--menu-item-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--menu-item-color);
  --bs-btn-hover-border-color: var(--menu-item-color);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--menu-item-color);
  --bs-btn-active-border-color: var(--menu-item-color);
  --bs-btn-disabled-color: var(--menu-item-expand-color);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--menu-item-expand-color);
  --bs-gradient: none;
  display: flex;
  gap: .5em;
  align-items: center;
  justify-content: center;
}

.text-theme{
  color: var(--menu-item-color);
}

.text-theme-secondary,h1,h2,h3,h4,h5,h6{
  color: var(--menu-item-expand-color);
}

.form-label{
  color: var(--text-color);
  font-weight: bold;
  margin-bottom: .4em;
  cursor: pointer;
}

.table-theme {
  --bs-table-color: white;
  --bs-table-bg: var(--table-background-color);
  --bs-table-border-color: var(--table-background-color);
  --bs-table-striped-bg: var(--table-background-color);
  --bs-table-striped-color: white;
  --bs-table-active-bg: var(--table-background-color);
  --bs-table-active-color: white;
  --bs-table-hover-bg: var(--menu-item-color);
  --bs-table-hover-color: white;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

body {
  background-color: var(--background-sidebar);
}

.navbar {
  width: 100%;
  height: 60px;
  background-color: var(--navbar-background);
  border-bottom: 1px solid gainsboro;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9000;
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
}

.navbar .right-place{
  display: flex;
  align-items: center;
  gap: .5em;
  height: 100%;
}

.navbar-tooltip{
  z-index: 9999;
}

.navbar .right-place .btn-navbar{
  color: var(--background-sidebar);
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 1.5em;
}

.navbar .right-place .btn-navbar.notifications{
  position: relative;
}

.navbar .right-place .btn-navbar.notifications::before{
  content: attr(notifications);
  width: 15px;
  height: 15px;
  background-color: #fe3939;
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .5em;
  border-radius: 100%;
}

.navbar .right-place .btn-navbar:hover{
  background-color: rgba(220, 220, 220, 0.377);
  color: var(--menu-item-color);
}

.navbar .right-place .btn-navbar i{
  margin: 0;
  padding: 0;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar .dropdown-profile .user-container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: .5em;
  text-decoration: none;
  color: var(--text-color);
}

.navbar .dropdown-profile .user-container span {
  font-size: small;
}

.navbar .dropdown-profile .user-container img {
  height: 80%;
}

.navbar .dropdown-profile .dropdown-menu{
  background-color: var(--background-sidebar);
  border-radius: .3em;
  width: fit-content;
  min-width: 200px;
  padding: 1em;
}

.navbar .dropdown-profile .dropdown-menu a{
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .dropdown-profile .dropdown-menu a:hover{
  border-radius: .5em;
  background-color: var(--menu-item-color);
}

.navbar .dropdown-sidebar {
  display: none;
  font-size: large;
  margin-left: 1em;
}

.navbar .dropdown-sidebar .dropdown-menu {
  background-color: var(--background-sidebar);
  border-radius: .3em;
  width: 300px;
  padding: 1em;
}

.navbar .dropdown-sidebar .dropdown-menu .menu {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .3em;
}

.navbar .dropdown-sidebar .dropdown-menu .menu .menu-title {
  display: none;
}

.navbar .dropdown-sidebar .dropdown-menu .menu .menu-item a {
  background-color: var(--background-sidebar);
  color: white;
  padding: .6em 1em;
  border-radius: .5em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5em;
  text-decoration: none;
  transition: all .5s ease-in-out;
}

.navbar .dropdown-sidebar .dropdown-menu .menu .menu-item.selected a {
  background-color: var(--menu-item-hover-color);
  box-shadow: none;
}

.navbar .dropdown-sidebar .dropdown-menu .menu .menu-item a:hover {
  background-color: var(--menu-item-hover-color);
}

.navbar .dropdown-sidebar .dropdown-menu .menu .menu-item.selected a:hover {
  background-color: var(--menu-item-hover-color);
  box-shadow: none;
}

.navbar .dropdown-sidebar .dropdown-menu .menu .expand-menu .expand-container {
  list-style: none !important;
  display: flex !important;
  height: fit-content !important;
  flex-direction: column !important;
  gap: .3em !important;
  padding: .6em !important;
  border-radius: .5em !important;
  margin-left: .8em !important;
  margin-right: .8em !important;
}

.navbar .dropdown-sidebar .dropdown-menu .menu .expand-menu .title-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  color: var(--menu-item-color);
  padding: .6em 1em;
  border-radius: .5em;
  cursor: pointer;
  box-shadow: none;
}

.navbar .dropdown-sidebar .dropdown-menu .menu .expand-menu .title-item .expand-arrow {
  display: none;
}

.navbar .dropdown-sidebar .dropdown-menu .menu .expand-menu .title-item a {
  display: flex;
  align-items: center;
  gap: .5em;
  text-decoration: none;
}

.navbar .dropdown-sidebar .dropdown-menu .menu .expand-menu .expand-container .action-item a {
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5em;
  padding: .3em 1em;
  border-radius: .5em;
  text-decoration: none;
}

.navbar .dropdown-sidebar .dropdown-menu .menu .expand-menu .expand-container .action-item.selected a {
  background-color: var(--menu-item-hover-color);
}

.navbar .dropdown-sidebar .dropdown-menu .menu .expand-menu .expand-container .action-item a:hover {
  background-color: var(--menu-item-hover-color);
}

.navbar .dropdown-sidebar .dropdown-toggle {
  border: 0;
  background-color: transparent;
}

.navbar .dropdown-sidebar .dropdown-toggle::after {
  display: none;
}

.max-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.sidebar {
  width: 300px;
  height: calc(100vh - 1em);
  transition: all .5s ease-in-out;
  margin: .3em;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
  -webkit-appearance: none;
}

.sidebar::-webkit-scrollbar:vertical {
  width: 5px;
}

.sidebar::-webkit-scrollbar-button:increment,
.sidebar::-webkit-scrollbar-button {
  display: none;
}

.sidebar::-webkit-scrollbar:horizontal {
  height: 5px;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #797979;
  border-radius: 20px;
}

.sidebar::-webkit-scrollbar-track {
  border-radius: 10px;
}

.sidebar .top-logo {
  width: 100%;
  height: 60px;
  padding: .5em;
}

.sidebar .top-logo a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar .top-logo a img {
  height: 100%;
}

.sidebar .side-menu {
  width: 100%;
  height: 100%;
  padding: .5em;
}

.sidebar .side-menu .menu {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5em;
}

.sidebar .side-menu .menu .menu-title span {
  color: white;
  font-weight: 600;
  margin-top: .3em;
  margin-bottom: .3em;
  padding-left: 1em;
}

.sidebar .side-menu .menu .menu-item a {
  background-color: var(--background-sidebar);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.514) inset;
  color: white;
  padding: .6em 1em;
  border-radius: .5em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5em;
  text-decoration: none;
  transition: all .5s ease-in-out;
}

.sidebar .side-menu .menu .menu-item.selected a {
  background-color: var(--menu-item-hover-color);
  box-shadow: none;
}

.sidebar .side-menu .menu .menu-item a:hover {
  background-color: var(--menu-item-hover-color);
}

.sidebar .side-menu .menu .menu-item.selected a:hover {
  background-color: var(--menu-item-hover-color);
  box-shadow: none;
}

.sidebar .side-menu .menu .expand-menu {
  display: flex;
  flex-direction: column;
  gap: .3em;
}

.sidebar .side-menu .menu .expand-menu .title-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--background-sidebar);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.514) inset;
  color: white;
  padding: .6em 1em;
  border-radius: .5em;
  cursor: pointer;
  transition: all .5s ease-in-out;
}

.sidebar .side-menu .menu .expand-menu .title-item a {
  display: flex;
  align-items: center;
  gap: .5em;
  text-decoration: none;
}

.sidebar .side-menu .menu .expand-menu .title-item:hover {
  background-color: var(--menu-item-hover-color);
}

.sidebar .side-menu .menu .expand-menu.open .title-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  color: white;
  padding: .6em 1em;
  border-radius: .5em;
  cursor: pointer;
  box-shadow: none;
}

.sidebar .side-menu .menu .expand-menu .title-item .expand-arrow {
  font-size: xx-small;
}

.sidebar .side-menu .menu .expand-menu.open .title-item a {
  display: flex;
  align-items: center;
  gap: .5em;
  text-decoration: none;
}

.sidebar .side-menu .menu .expand-menu .expand-container {
  display: none !important;
}

.sidebar .side-menu .menu .expand-menu.open .expand-container {
  list-style: none;
  display: flex !important;
  flex-direction: column;
  gap: .3em;
  background-color: var(--menu-item-expand-color);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.514) inset;
  padding: .6em;
  border-radius: .5em;
  margin-left: .8em;
  margin-right: .8em;
}

.sidebar .side-menu .menu .expand-menu.open .expand-container .action-item a {
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5em;
  padding: .3em 1em;
  border-radius: .5em;
  text-decoration: none;
}

.sidebar .side-menu .menu .expand-menu.open .expand-container .action-item.selected a {
  background-color: var(--menu-item-hover-color);
}

.sidebar .side-menu .menu .expand-menu.open .expand-container .action-item a:hover {
  background-color: var(--menu-item-hover-color);
}

.user-avatar{
  border-radius: 100%;
}

.main-io {
  width: 100%;
  height: calc(100vh - 1em);
  background-color: var(--main-background);
  margin: .5em;
  border-radius: 1em;
  overflow: hidden;
  box-shadow: 0px 3px 6px 0px rgba(79, 81, 83, 0.582);
  overflow-y: auto;
  position: relative;
}

.main-io::-webkit-scrollbar {
  -webkit-appearance: none;
}

.main-io::-webkit-scrollbar:vertical {
  width: 5px;
}

.main-io::-webkit-scrollbar-button:increment,
.main-io::-webkit-scrollbar-button {
  display: none;
}

.main-io::-webkit-scrollbar:horizontal {
  height: 5px;
}

.main-io::-webkit-scrollbar-thumb {
  background-color: #797979;
  border-radius: 20px;
}

.main-io::-webkit-scrollbar-track {
  border-radius: 10px;
}


@media(max-width: 768px) {
  .sidebar {
    width: 100px;
  }

  .sidebar .side-menu .menu .menu-item a {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .1em;
  }

  .sidebar .side-menu .menu .menu-item span {
    font-size: xx-small;
    text-align: center;
  }

  .sidebar .side-menu .menu .expand-menu .title-item {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .1em;
  }

  .sidebar .side-menu .menu .expand-menu .title-item a {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .1em;
  }

  .sidebar .side-menu .menu .expand-menu .title-item span {
    font-size: xx-small;
  }

  .sidebar .side-menu .menu .expand-menu.open .title-item span {
    font-size: xx-small;
  }

  .sidebar .side-menu .menu .expand-menu.open .expand-container {
    margin: 0;
  }

  .sidebar .side-menu .menu .expand-menu.open .expand-container .action-item a {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .1em;
  }

  .sidebar .side-menu .menu .expand-menu.open .expand-container .action-item span {
    font-size: xx-small;
    text-align: center;
  }

  .sidebar .side-menu .menu .menu-title span {
    display: none;
  }

  .sidebar .side-menu .menu .menu-title {
    height: 4px;
    background-color: white;
    border-radius: 5em;
    margin: .5em;
  }
}

@media(max-width: 425px) {
  .sidebar {
    display: none;
  }

  .main-io {
    margin: .3em;
  }

  .navbar .dropdown-sidebar {
    display: flex;
  }
}

.drop{
  border-radius: .3em;
  padding: 0;
  margin: 0;
}

.drop-notifications{
  width: 350px;
  padding: .5em;
  display: flex;
  flex-direction: column;
  gap: .5em;
  margin: 0;
  list-style: none;
}

.drop-notifications .item-notification{
  width: 100%;
  background-color: var(--main-background);
  padding: .5em;
  cursor: pointer;
  border-radius: .3em;
}

.drop-notifications .item-notification:hover{
  background-color: gainsboro;
}

.drop-notifications .item-notification h1{
  margin: 0;
  font-size: 1.5em;
  font-weight: 600;
  text-align: justify;
}

.drop-notifications .item-notification p{
  margin: 0;
  font-weight: 400;
  text-align: justify;
  margin-top: .3em;
}

.drop .empty{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  font-weight: 500;
  padding: 1em 0;
}