/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  overflow-x: hidden !important;
  text-transform: uppercase;
  background-color: #f6f8f7;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}



/*--------------------------------------------------------------
  # Main
  --------------------------------------------------------------*/
#main {
  margin-top: 40px;
  padding: 40px;
  transition: all 0.3s;
}

/* BARRA DE ROLAGEM */
::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-thumb {
  background-color: #AAA;
  border-radius: 20px;
  border: 5px solid #f1ede9;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #000;
  border: 4px solid #f1ede9;
}

/* BARRA DE ROLAGEM */
.listaDatas::-webkit-scrollbar {
  height: 15px;
  background-color: #e8e8e8;
}

.listaDatas::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 20px;
  border: 5px solid #e8e8e8;
}

.listaDatas::-webkit-scrollbar-thumb:hover {
  background-color: #000;
  border: 4px solid #e8e8e8;
}


/* BARRA DE ROLAGEM */
.messageTooltip div:nth-child(2) p::-webkit-scrollbar {
  width: 8px;
}

.messageTooltip div:nth-child(2) p::-webkit-scrollbar-thumb {
  background-color: #FFF;
  border-radius: 20px;
  border: 2px solid #3090CE;
}

.messageTooltip div:nth-child(2) p::-webkit-scrollbar-thumb:hover {
  background-color: #025387;
  border: none;
}


/* BARRA DE ROLAGEM */
.notifications .loadNot::-webkit-scrollbar {
  width: 8px;
}

.notifications .loadNot::-webkit-scrollbar-thumb {
  background-color: #05468d;
  border-radius: 20px;
  border: 2px solid #002043;
}

.notifications .loadNot::-webkit-scrollbar-thumb:hover {
  background-color: #0560c3;
  border: none;
}

.textoPerfil {
  text-align: center;
}

.textoPerfil p {
  word-break: break-word;
  font-size: 14px;
}


/*--------------------------------------------------------------
  # Page Title
  --------------------------------------------------------------*/
.pagetitle {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 !important;
}

.pagetitle h1 {
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 700;
  color: #008FAA;
  letter-spacing: -.5px;
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 70px;
  z-index: 99999;
  background: #002043;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #000;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
  # Override some default Bootstrap stylings
  --------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 2px;
  padding: 10px 0;
  -webkit-animation-name: dropdown-animate;
  animation-name: dropdown-animate;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px;
}

.dropdown-menu .dropdown-footer a {
  color: #fff;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  display: none;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 9px;
    height: 9px;
    background: #fff;
    position: absolute;
    top: -5px;
    right: 20px;
    transform: rotate(45deg);
    display: none;
  }
}

@-webkit-keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 0 0 15px 0;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #000;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

.accordion-button.bg-primary::after {
  filter: brightness(10000);
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  color: #899bbd;
  font-weight: 600;
}

.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #000;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #000;
  border-bottom: 2px solid #000;
}

/*--------------------------------------------------------------
  # Login
  --------------------------------------------------------------*/
.blocoLogin {
  background: radial-gradient(circle farthest-corner at 50% 50%,
      #f8f8f8a4, #f8f8f8a1), url("/img/fundo.jpg");
  background-position: 0 0, center;
  background-size: auto, cover;
}

.blocoLogin .min-h-screen:first-child {
  padding: 30px;
}

.blocoLogin div.w-full {
  padding: 30px !important;
  border-radius: 2px;
}

.avatar-upload {
  position: relative;
  max-width: 205px;
  margin: 20px auto;
}

.sidebar-nav .nav-link:hover img {
  filter: invert(1);
}

.avatar-upload .avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}

.avatar-upload .avatar-edit input {
  display: none;
}

.avatar-upload .avatar-edit input+label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label i {
  font-size: 16px;
  color: #757575;
}

.avatar-upload .avatar-edit input+label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}


.avatar-upload .avatar-preview {
  width: 192px;
  height: 192px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview>div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.logoLogin {
  width: 300px;
}

.logoPrint {
  position: absolute;
  top: 0;
  width: 120px;
  max-height: 80px;
  object-fit: contain;
}

body {
  color: #444444;
  background-color: #FFF !important;
  overflow-x: hidden !important;
}

input {
  border: 1px solid #d1d5db;
  border-radius: 3px !important;
}

.botaoLogin button {
  width: 100%;
  padding: 15px !important;
  margin: 15px 0 0 0;
  text-align: center;
  border-radius: 0px;
  display: block;
  background: #008FAA;
  border: none !important;
}

.botaoLogin button:hover {
  background: #002043;
}

.botaoLogin a {
  display: block;
  text-align: center;
  margin: 20px 0 0 0;
  font-size: 12px;
  line-height: 1em;
  color: #002043;
}

.botaoLogin a:hover {
  color: #002043;
}

[type='checkbox'],
[type='radio'] {
  color: #000;
}

.focus\:border-indigo-300:focus {
  border-color: #002043;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
.divLogo {
  line-height: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.logoEdificio {
  width: auto;
  height: 40px;
  position: relative;
  margin: 0 0 0 0 !important;
}

.sidebar-nav .nav-link.collapsed {
  color: #FFF !important;
  background: transparent;
  border: 1px solid #ffffff20;
}

.divLogo small {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-left: 6px;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  /* box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1); */
  background-color: #002043;
  padding: 0 20px;
  /* Toggle Sidebar Button */
  /* Search Bar */
  border-bottom: 1px solid #008eaa5e;
}

.header .select2-selection {
  background-color: transparent !important;
  border: 1px solid #60050521 !important;
  filter: invert(1);
}

.header .select2-selection__rendered {
  color: #000 !important;
}

.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 0;
  cursor: pointer;
  color: #FFF;
  z-index: 10;
}

.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}

.header p {
  color: #795548;
  margin: 0;
}

.pesquisa {
  position: relative;
}

.btnFiltro,
.btnPesquisa {
  height: 34px;
}

.btnPesquisa {
  color: #000000;
  border: transparent;
  background-color: #fff;
  border-radius: 2px;
  font-size: 16px;
  letter-spacing: 1px;
  position: absolute;
  z-index: 1;
  width: 35px;
  top: 2px;
  right: 2px;
}

.botaoBuscar:hover,
.btnPesquisa:hover {
  background-color: #000;
  color: #FFF;
}

.blocoBusca select,
.blocoBusca input {
  display: block;
  width: 100%;
  padding: 5px 18px;
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1em;
  height: 48px;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 2px solid #831717;
  border-radius: 6px;
}

.blocoBusca select {
  padding: 5px 38px 5px 18px;
}

.botaoFiltroAvancado,
.botaoFiltroLimpar {
  height: 38px;
  font-size: 16px;
  padding: 3px 20px 0 20px;
  border: none;
  background: #d9d9d9;
  transition: 0.3s;
  border-radius: 0;
  display: block;
}

.botaoFiltroAvancado:hover {
  background-color: #b9b9b9;
}

.botaoFiltroLimpar {
  padding-top: 12px;
  background-color: transparent;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  margin: 0 4px;
  color: #616161;
}

.botaoFiltroLimpar:hover {
  background-color: #d9d9d9;
  color: #000;
}

.botaoFiltar,
.botaoLimpar {
  height: 38px;
  font-size: 16px;
  padding: 3px 20px 0 20px;
  border: none;
  background: #000;
  transition: 0.3s;
  border-radius: 0;
  display: block;
  color: #FFF;
  transition: .250s;
}

.botaoLimpar {
  color: #000;
  background: transparent;
  padding-top: 14px;
}

.botaoFiltar:hover {
  background: #272727;
}

.botaoLimpar:hover {
  background: #c1c1c1;
  color: #000;
}

.badge {
  border-radius: 150px !important;
}

.header .search-form {
  width: 100%;
}

.header .search-form input {
  border: 0;
  font-size: 14px;
  color: #FFF;
  border: 1px solid rgba(1, 41, 112, 0.2);
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.header .search-form button i {
  color: #000000;
}

/*--------------------------------------------------------------
  # Header Nav
  --------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: #FFF;
  margin-right: 20px;
  position: relative;
}

.header-nav .nav-profile {
  color: #FFF;
}

.header-nav .nav-profile:focus,
.header-nav .nav-profile:hover {
  color: #FFF;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
  width: 300px;
  top: 7px !important;
  background: #002043 !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
  border-bottom: 1px solid #000000ad;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item p {
  margin-bottom: 3px;
  color: #fff;
}

.notifications .loadNot {
  max-height: 300px;
  overflow: auto;
  border-bottom: 1px solid #008eaa5e;
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: -1px !important;
  border: none;
  background: #002043 !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #ffff;
}

.header-nav .profile .dropdown-header span,
.header-nav .profile .dropdown-header button {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #676769;
}

.botaoSair {
  width: 100%;
  border: none !important;
  text-align: left !important;
  padding: 12px 18px !important;
  border-radius: 0 !important;
  transition: none !important;
}

.botaoSair span {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-left: 5px;
}

.botaoSair i {
  color: #000;
}

.botaoSair:hover span,
.botaoSair:hover i {
  color: #FFF;
}

.itemTituloPermissoes {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 0 12px 0;
  gap: 5px;
}

.itemTituloPermissoes button {

  padding: 2px 5px;

  font-size: 12px;

  font-weight: 700;

  border: 1px solid #648b9d69;

  background: transparent;

  color: #648b9d;

  border-radius: 2px;
}

/*--------------------------------------------------------------
  # Sidebar
  --------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 996;
  transition: all 0.3s;
  padding: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  /* box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: #fff; */
}

a.text-danger {
  background-color: transparent !important;
  border: 1px solid #64371882;
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }

  #calendar th:before {
    display: none
  }

  .fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 0;
    flex-direction: column;
    gap: 20px;
  }

  .toggle-sidebar .sidebar {
    width: 100%;
    padding: 50px;
    background-color: #1e1f20e0;
  }

  .toggle-sidebar .sidebar-nav {
    border: 1px solid #b4e22338;
    box-shadow: none;
  }

}

@media (max-width: 768px) {
  .tituloViagens {
    display: none;
  }

  .header-nav .notifications {
    right: -60px !important;
    top: 50px !important;
    transform: none !important;
  }
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }

  .logoEdificio {
    margin: 0 0 0 260px !important;
  }
}

@media (min-width: 1200px) {

  #main,
  #footer {
    margin-left: 290px;
  }

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
}

.btSalvarGrupo {
  margin-top: 22px;
}

.sidebar-nav {
  padding: 20px;
  margin: 0;
  list-style: none;
  background-color: #041a33;
  border-radius: 0;
  height: auto;
  min-height: 100%;
}

.sidebar-nav li {
  padding: 0;
  margin: 0 10px;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background-color: #008FAA;
  padding: 10px 15px;
  border-radius: 2px;
  border-color: #607d8b47;
  gap: 10px;
}

.sidebar-nav .text-danger,
.sidebar-nav .text-danger i::before {
  color: #607D8B !important;
}

.blocoResumo {
  background-color: #008FAA;
  padding: 20px !important;
  border-radius: 10px;
  color: #FFF;
}

@media screen and (max-width: 1199px) {
  .blocoResumo {
    margin-top: 30px;
    padding: 20px !important;
  }
}

.boxValor {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  padding: 10px 10px !important;
  border: 1px solid #f9b12b00;
  background: #4b181463;
  margin-bottom: 5px;
}

.boxValor p:last-child {
  margin: 0;
}

.boxValor b {
  font-size: 13px;
  letter-spacing: .5px;
}

.boxValor p {
  font-size: 16px;
}

.cursor-pointer {
  cursor: pointer;
}

.sidebar-nav .text-danger:hover i::before {
  color: #FFF !important;
}

.sidebar-nav .nav-link i {
  /* font-size: 12px; */
  margin-right: 0;
  color: #FFF;
}

.sidebar-nav .nav-link i:last-child {
  font-size: 8px;
}

.botoesFormulario {
  border-top: 1px solid #9e9e9e30;
  padding-top: 30px;
  margin-top: 10px !important;
  border-radius: 2px;
}

.botoesFormulario .col-md-10 {
  text-align: right;
}

.botoesFormulario .btn.btn-primary,
.botoesFormulario .btn.btn-secondary {
  border: 1px solid #dacece;
  background-color: transparent;
  color: #000;
  letter-spacing: 1px;
  border-radius: 2px;
}

.botoesFormulario .btn.btn-secondary:hover {
  background-color: #002043;
  color: #FFF;
}

.botoesFormulario .btn.btn-primary {
  background-color: #002043;
  border-color: #002043;
  color: #FFF;
}

.botoesResumo {
  margin-top: 30px !important;
}

.botoesResumo .btn-secondary {
  border: 1px solid #dacece36 !important;
  color: #FFF !important;
}

.date-separator {
  font-weight: 700;
  font-size: 14px;
  margin-top: 15px;
  display: block;
  text-align: center;
  color: #9e9e9e;
}


.row div:first-child {
  padding-left: 0;
}

.row div:last-child {
  padding-right: 0;
}

.sidebar-nav .nav-link.collapsed {
  color: #FFF !important;
  background: transparent;
  border: 1px solid #ffffff1a;
}

.sidebar-nav .nav-link.collapsed i {
  color: #FFF !important;
}

.bi-chevron-down::before {
  color: #FFF;
}

.sidebar-nav .nav-link:hover {
  color: #000;
  background-color: #FFF;
}

.sidebar-nav .nav-link:hover i,
.sidebar-nav .nav-link.collapsed:hover i {
  color: #000 !important;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 8px 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding: 4px 15px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.sidebar-nav .nav-content a span {
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #008ea9;
  background-color: #fff;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  border-radius: 2px;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
  top: 1px;
  position: relative;
}

.sidebar-nav .nav-content a:hover span {
  color: #008FAA;
}

.sidebar-nav .nav-content a.active i {
  background-color: #fff;
}

.sidebar-nav .nav-link i,
.sidebar-nav .nav-link i::before {
  color: #fff;
}

.sidebar-nav .nav-link.collapsed i,
.sidebar-nav .nav-link.collapsed i::before {
  color: #FFFFFF98;
}

.sidebar-nav .nav-link.collapsed:hover,
.sidebar-nav .nav-link:hover i,
.sidebar-nav .nav-link:hover i::before {
  color: #000 !important;
}


.listaHorarios .row .col-xl-4:first-child {
  display: flex;
  justify-content: flex-end;
}

.listaHorarios label {
  transform: translateY(-0.5px);
}

.form-check {
  gap: 7px;
  display: flex !important;
}

/*--------------------------------------------------------------
  # Dashboard
  --------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #000;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}

.dashboard .info-card h6 {
  font-size: 28px;
  color: #000000;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .bg-icon-dashboard .card-icon {
  color: #000;
  background: #f6f6fe;
}

/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 70px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item+.post-item {
  margin-top: 15px;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.text-bold {
  font-weight: bold;
}

.dashboard .news h4 a {
  color: #000000;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: #000;
}

.dashboard .news p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
  font-size: 14px;
}

.card-body.table-responsive .collapse {
  margin-top: 55px;
}

.card-body.table-responsive .collapse form {
  padding: 30px;
  background: #d9d9d9;
  opacity: 1 !important;
  transition: .5s;
}

.card-body.table-responsive .collapse form hr {
  display: none;
}


.botoesFiltro {
  display: flex;
  padding: 0;
}


.dataTables_filter label {
  display: flex;
  float: right;
  margin-bottom: 20px;
}

table {
  background-color: #FFF;
  border-radius: 10px;
  border: 1px solid #E3E1E0;
  box-shadow: 0px 1px 0px #e3e1e0;
  border-collapse: collapse !important;
  margin-top: 30px !important;
  line-height: 1em;
  width: 100%;
}

table p {
  margin: 0;
}

table th {
  vertical-align: middle;
  font-weight: 500;
  color: #2C372A;
  border: none;
  font-size: 13px;
  text-transform: uppercase;
}

table tr {
  border-bottom: 1px solid #E3E1E0;
}

table tbody tr:hover {
  background-color: #eaf0f0f0 !important;
}

table thead tr th {
  /* padding: 10px 20px !important; */
  color: #4C5A4A;
  font-weight: 400;
  font-size: 12px;
}

.tab-content td {
  padding: 20px;
}

.modal {
  background: #0020438f;
}

.modal-body {
  padding: 20px !important;
  background-color: whitesmoke;
}

.modal-title {
  color: #000;
  font-size: 26px;
  line-height: 1em;
}

.modal-header,
.modal-footer {
  padding: 20px 55px !important;
}

.cardModal {
  background-color: #FFF;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #9e9e9e59;
  text-transform: uppercase;
}

.btnFechar {
  padding: 8px 20px 6px 20px;
  letter-spacing: 1px;
  background-color: #ccc;
  color: #000;
  border: none !important;
  border-radius: 2px;
  margin: 0 !important;
}

.dataTables_filter .form-control {
  margin: 0 0 0 15px !important;
}

.cardModal .row:last-child {
  margin: 0 !important;
}

.textoInfo {
  font-size: 17px;
  color: #332b1d;
}

.colBotoes {
  display: flex;
  text-align: center;
  -webkit-justify-content: center;
  -ms-flex-pack: distribute;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.dropdown-menu {
  padding: 0 !important;
  border-radius: 2px !important;
  background-color: #002043 !important;
}

.dropdown-menu .dropdown-item {
  color: #FFF;
  border-bottom: 1px solid #333333;
  font-weight: 600;
}

.dropdown-menu .dropdown-item:hover {
  color: #000;
  background-color: #fff;
}

.header-nav .dropdown-menu .dropdown-item {
  color: #fff;
  border-bottom: 1px solid #000000ad;
  font-weight: 600;
}

.header-nav .dropdown-menu .dropdown-item:hover {
  background-color: #33333326;
}

.header-nav .dropdown-menu .dropdown-item form button {
  width: 100%;
  border-color: #000000eb;
}

table.table-bordered.dataTable tbody th,
table.dataTable.table-striped>tbody>tr.odd>* {
  box-shadow: none !important;
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
  font-size: 14px;
}

.dashboard .top-selling .table thead {
  background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}

::-moz-selection {
  color: #FFF;
  background-color: #000;
}

::selection {
  color: #FFF;
  background-color: #000;
}

/*--------------------------------------------------------------
  # Botões
  --------------------------------------------------------------*/
.dt-buttons button {
  border: 1px solid #00204342 !important;
  background: transparent !important;
  font-weight: 400;
  color: #000 !important;
  border-radius: 3px !important;
  font-size: 14px;
  letter-spacing: 0.5px;
  box-shadow: none !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -ms-border-radius: 3px !important;
  -o-border-radius: 3px !important;
}

.dt-buttons button {
  margin: 5px;
  padding: 2px 10px 0px 10px !important;
}

/* .dt-buttons button:hover {
  background: #008FAA !important;
  border-color: #008FAA !important;
  color: #fff !important;
} */

.dt-buttons button.active {
  border-color: #008FAA !important;
  background: #008FAA !important;
  color: #FFF !important;
}

/* .dt-buttons button.active:hover {
  border-color: #002043 !important;
  background: #FFF !important;
  color: #002043 !important;
} */

.paginate_button a {
  font-size: 12px !important;
}

.paginate_button.active a {
  font-weight: 800 !important;
}

/*--------------------------------------------------------------
  # Icons list page
  --------------------------------------------------------------*/
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px;
}

.iconslist .icon {
  background-color: #fff;
  border-radius: 0.25rem;
  text-align: center;
  color: #000000;
  padding: 15px 0;
}

.iconslist i {
  margin: 0.25rem;
  font-size: 2.5rem;
}

.iconslist .label {
  font-family: var(--bs-font-monospace);
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
  # Profie Page
  --------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #000000;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #000000;
}

.profile .profile-overview .label {
  font-weight: 700;
  color: #000;
  font-size: 12px;
  letter-spacing: .5px;
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

input[type="text"],
input[type="email"],
input[type="datetime-local"],
input[type="date"] {
  text-transform: uppercase !important;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
  # Error 404
  --------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

.footer .copyright {
  text-align: center;
  color: #000000;
}

.footer,
.credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #000000;
  display: none;
}

a {
  text-decoration: none !important;
}

textarea {
  min-height: 100px !important;
  max-height: 200px !important;
}

.blocoBuscaFiltro {
  display: flex;
}

@media screen and (max-width: 497px) {

  .blocoLogin .min-h-screen:first-child,
  .blocoLogin div.w-full {
    padding: 30px !important;
  }

  .fc .fc-toolbar-title {
    font-size: 18px !important;
  }

  .fc .fc-button {
    font-size: 9px !important;
  }

  .fc .fc-toolbar.fc-header-toolbar {
    gap: 15px;
    margin: 0 !important;
  }

  .botoesFiltro {
    display: block;
  }

  .card-body.table-responsive .collapse form {
    padding: 14px;
  }

  .blocoBuscaFiltro,
  .dataTables_filter label {
    display: block !important;
    width: 100%;
  }

  .form-control,
  .botaoFiltroAvancado,
  .botaoFiltar,
  .botaoLimpar {
    width: 100% !important;
  }

  .botaoFiltar,
  .botaoLimpar {
    text-align: center;
  }

  .dataTables_filter .form-control {
    margin: 0 !important;
  }

  .row {
    display: block !important;
  }

}

.navbar {
  background-color: #332b1d;
  padding: 30px;
}

.tab .tab-content {
  border: 1px solid #cdbfb77d;
  border-radius: 0 0 10px 10px;
  background-color: #FFF;
}

.nav-link {
  transition: none !important;
}

.nav-tabs .nav-link {
  color: #9e9e9e;
}

.nav-tabs .nav-link:hover {
  background-color: #e8e8e8;
  color: #6d6464;
}

.tab-content>.tab-pane {
  padding: 20px !important;
}

.card-body .tab-content>.tab-pane {
  padding: 0px !important;
}

.tab-pane.tabTable {
  padding: 0 !important;
  margin-top: 30px;
}

.tab-content .card-title {
  padding: 0 0 14px 0;
  font-size: 16px;
  color: #000000 !important;
}

.tab-content .row:last-child {
  margin-bottom: 0 !important;
}

button.dt-button:hover span.dt-down-arrow {
  color: #fff !important;
}

input.textoDigitado {
  text-transform: none !important;
}

@media screen and (max-width: 1199px) {

  .listaHorarios .row .col-xl-4:first-child {
    justify-content: flex-start;
  }

  .btSalvarGrupo {
    margin: 0;
  }

  table.dataTable thead {
    opacity: 0;
    position: absolute;
    pointer-events: none;
  }

  table.dataTable tbody {
    display: block;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    width: 100%;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .colBotoes {
    margin-top: 10px;
  }

  table tbody tr:hover {
    background-color: #FFF !important;
  }

  .tab-content>.tab-pane {
    padding: 30px !important;
  }

  .tab-pane.tabTable {
    padding: 0 !important;
  }

  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    width: 100% !important;
  }

  #main {
    padding: 20px;
    margin-top: 50px;
  }

  .pagetitle {
    display: flex;
    align-items: initial;
    flex-direction: column;
  }

  .pagetitle h1 {
    font-size: 20px;
    line-height: 1em;
    margin-bottom: 10px;
  }

  .row>* {
    padding: 0 !important;
    margin-top: 0 !important;
  }

  .dt-buttons button {
    border: none !important;
    border-bottom: 1px solid #ffffff29 !important;
    background: transparent !important;
    color: #FFF !important;
    margin: 0;
    padding: 8px 10px !important;
    border-radius: 0 !important;
    width: 100%;
  }

  .dt-button-collection button {
    border: 1px solid #00204342 !important;
    color: #000 !important;
    border-radius: 2px !important;
    padding: 4px 10px !important;
  }

  div.dt-buttons {
    background-color: #002043;
    margin-bottom: 30px;
  }

  .dt-buttons {
    width: 100%;
  }

  div.dt-button-collection {
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    border: none;
    background-color: #002043;
    overflow: hidden;
    z-index: 2002;
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
  }

  div.dt-button-collection button.dt-button,
  div.dt-button-collection div.dt-button,
  div.dt-button-collection a.dt-button {
    margin: 0;
  }

  button.dt-button,
  div.dt-button,
  a.dt-button,
  input.dt-button {
    margin-bottom: 0 !important;
  }

  table.dataTable {
    overflow: auto;
    width: 100%;
    display: block;
  }

  .table-bordered>:not(caption)>* {
    display: block;
    padding: 10px 0;
  }

  table.table-bordered.dataTable tbody th,
  table.table-bordered.dataTable tbody td {
    display: block;
    padding: 2px 20px;
  }

  .colBotoes {
    display: flex !important;
    justify-content: flex-start;
  }

  table.table-bordered.dataTable th:last-child,
  table.table-bordered.dataTable th:last-child,
  table.table-bordered.dataTable td:last-child,
  table.table-bordered.dataTable td:last-child {
    border-right-width: 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }

  table tr {
    border-bottom: 0;
  }
}

@media screen and (max-width: 1199px) {
  th:before {
    content: attr(data-th) " ";
    width: auto;
    float: left;
    display: block;
    color: #002043;
    margin-right: 2px;
    font-size: 10px;
    margin-top: 3px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: left;
    padding-right: 10px;
    word-wrap: normal;
    line-height: 1em;
  }

  .colBotoes:before {
    display: none;
  }

  .colBotoes {
    margin: 0;
  }
}

.tableTrip {
  width: 100% !important;
}

div.dataTables_wrapper {
  position: static !important;
  /* overflow-x: auto;
  overflow-y: visible; */
  padding-bottom: 15px;
  overflow-x: scroll;
}

div.dt-buttons {
  position: absolute !important;
  top: 0;
  margin-top: .5rem !important;
}

.table-responsive {
  position: relative;
}

@media (max-width: 1199px) {

  div.dataTables_wrapper {
    position: relative;
  }

  div.dt-buttons {
    position: static !important;
  }

  .table-responsive {
    position: static;
  }

  .blocoBusca {
    padding: 20px 15px 25px 15px !important;
  }

  .header .search-bar {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }



  .toggle-sidebar .bi-list::before {
    content: "\f659";
  }

  .divLogo {
    left: auto
  }

  .header .search-bar-show {
    visibility: visible;
    opacity: 1;
  }

}

@media screen {
  .corpo {
    overflow: hidden;
  }

  .corpo::before {
    content: '';
    background-color: #002043;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999999999;
    background-position: 0 0, center;
    background-size: auto, cover;
  }

  .corpo::after {
    content: '';
    position: fixed;
    top: 50%;
    bottom: 0;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 9999999999;
    background: url("../img/loading.svg");
    background-position: 0 0;
    background-size: auto;
  }
}

#preview {
  height: 100px;
}

@media print {

  th {
    padding: 10px 20px !important;
  }

  th,
  td {
    border-width: 0;
  }

  td {
    font-size: 12px;
    line-height: 1em;
  }

  table {
    margin-top: 50px !important;
  }

  .corpo {
    overflow: auto;
  }

  .corpo::before {
    display: none !important;
  }
}

.tituloPrint {
  margin: 20px 0 0 0;
  text-align: center;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 34px;
  color: #002043;
}

.dataTables_paginate {
  display: none !important;
}

.img_upload {
  height: 200px;
  object-fit: cover;
}

.telaLoading {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 10000;
  background-color: rgba(18, 34, 48, 0.9);
}

.spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -30px 0 0 -30px;
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: rgb(255 255 255 / 0%);
  border: 4px solid #ffffff;
  border-right-color: transparent;
  border-radius: 50%;
  animation: rotate-spinner 0.3s infinite linear;
}

@keyframes rotate-spinner {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.errorMessage,
.successMessage,
.warningMessage,
.questionMessage,
.routeMessage {
  display: none;
}

.br-40 {
  border-radius: 40%;
}

.linhaPermissionamento {
  border-bottom: 1px solid #EEE;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.linhaPermissionamento label input {
  margin: 0;
  padding: 0;
  height: 18px;
}

.linhaPermissionamento label {
  margin: 0;
  padding: 0;
  color: #000;
  cursor: pointer;
  font-weight: 500;
}

.opcoesPermissionamento {
  display: -ms-grid;
  display: grid;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: space-around;
  -ms-flex-line-pack: distribute;
  align-content: space-around;
  grid-auto-columns: 1fr;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  width: 100%;
}

.opcoesPermissionamento div {
  border-radius: 4px;
}

.tituloPermissoes {
  color: #648b9d;
  font-weight: 700;
  letter-spacing: -.2px;
  font-size: 16px;
  line-height: 16px;
  margin: 0;
}

.labelCheckbox {
  font-size: 16px;
}

.itemCheckbox {
  margin: 22px auto 0 auto;
  height: 30px;
  width: 30px;
  float: left;
}

.listCondominio {
  position: relative;
  max-height: 60vh;
  overflow: auto;
}

.infoCondominio .p-2 {
  flex: 1;
}

.infoCondominio {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.condIcon {
  position: absolute;
  top: 30px;
  right: 10px;
}

.list-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.list-icon {
  margin-right: 0;
}

.tower {
  border: 1px solid #000;
  margin-bottom: 10px;
}

.store-remover,
.unidade-remover {
  border: none;
  border-radius: 4px;
  background: transparent;
  color: #fb0000;
  padding: 4px 8px;
  font-weight: bold;
}

.floor,
.subfloor,
.groundfloor,
.store,
.unit {
  border: 1px solid #ccc;
  margin-bottom: 5px;
}

.store-add,
.unit-add {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

table {
  background-color: #FFF;
  border-radius: 10px;
  border: 1px solid #E3E1E0;
  box-shadow: 0px 1px 0px #e3e1e0;
  border-collapse: collapse !important;
  line-height: 1em;
  width: 100%;
}


.fc .fc-scroller-liquid-absolute::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.fc .fc-scroller-liquid-absolute {
  position: static;
}

@media screen and (max-width: 1250px) {

  .linhaPermissionamento label {
    font-size: 14px;
  }

  .linhaPermissionamento {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 991px) {
  .opcoesPermissionamento div {
    padding: 8px 5px 4px 5px;
  }
}

@media screen and (max-width: 479px) {
  .tituloPermissoes {
    width: 100%;
  }

  .botaoTodos {
    float: left;
    margin: 0 0 20px 0;
  }

  .opcoesPermissionamento {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {

  .labelCheckbox {
    margin-top: 7px;
  }

  .itemCheckbox {
    margin: 0 auto 20px auto;
  }
}

/* dashboard */
.divImg {
  width: 100px;
}

.divImg img {
  padding: 3px;
  height: 90px;
  width: 100%;
  object-fit: cover;
}

.selected {
  background-color: #008FAA;
  transition: background-color 0.3s, border-color 0.3s;
  color: #fff;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  -moz-transition: background-color 0.3s, border-color 0.3s;
  -ms-transition: background-color 0.3s, border-color 0.3s;
  -o-transition: background-color 0.3s, border-color 0.3s;
}

.infoCondominio {
  cursor: pointer;
}

.field-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}

.nav-profile .dropdown-toggle small::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

.labelTootip {
  display: flex;
  width: 100%;
  gap: 5px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}

.labelTootip .messageTooltip {
  z-index: 1;
  display: inline-block;
}

.labelTootip .messageTooltip p:nth-child(1) {
  font-size: 16px;
  height: 16px;
  width: 16px;
}

.messageTooltip {
  position: relative;
  z-index: 1;
}

.messageTooltip p:nth-child(1) {
  background-color: #5FA7D8;
  color: #fff;
  padding: 2.5px;
  margin: 0;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  cursor: help;
  text-align: center;
  transform: translateY(-2px);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.messageTooltip div:nth-child(2) {
  opacity: 0;
  display: none;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  position: absolute;
  bottom: 0;
}

.messageTooltip div:nth-child(2) p {
  background-color: #3090CE;
  color: #fff;
  padding: 13px 26px 13px 16px;
  margin: 0 0 19px 0;
  font-size: 13px !important;
  line-height: 15px !important;
  font-weight: 500;
  text-align: left;
  display: block;
  min-width: 250px;
  height: auto !important;
  max-height: 70px;
  overflow: overlay;
  border-radius: 6px;
  -webkit-box-shadow: 1px 19px 16px -10px rgb(0 3 7 / 35%);
  box-shadow: 1px 19px 16px -10px rgb(0 3 7 / 35%);
  z-index: 9999;
  text-transform: none;
}

.messageTooltip:hover div {
  display: block;
  opacity: 1;
}

input.senha {
  text-transform: none !important;
}

.mt-18 {
  margin-top: 18px;
}

.tituloCondominio {
  margin-bottom: 20px;
}


.update-box {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  border-left: 5px solid #000;
  cursor: pointer;
}

.timestamp {
  font-size: 0.9rem;
  color: #6c757d;
  text-align: right;
}

.history-container {
  max-height: 400px;
  margin-top: 20px;
  overflow-y: auto;
}

.file-icon {
  font-size: 2rem;
  color: #007bff;
  cursor: pointer;
}

.file-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.file-description {
  margin-left: 1rem;
}


@media (max-width: 1199px) {
  #calendar table {
    margin-top: 0 !important;
    border-radius: 0;
    border: 0;
  }

  #calendar td,
  #calendar th {
    border: 0 !important;
  }

  .fc .fc-col-header-cell-cushion {
    display: block !important;
    padding: 0 0 16px 0 !important;
    text-align: right;
    font-size: 12px;
    text-transform: capitalize;
    color: #555;
  }


}