/**
* BTN Ativar / Desativar Modo Noturno
*/
i.fas.fa-sun {
  font-size: 14px;
  padding: 1px;
}

i.fas.fa-moon {
  font-size: 14px;
  width: 18px;
  height: 18px;
  padding-top: 2px;
}

.grupo-btn-modo-noturno {
  margin-top: 2px;
  padding: 0px 5px;
  border: solid 1px rgb(0, 0, 0, 0.5);
  border-radius: 25px;
}
.switch-modo-noturno input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}

.switch-modo-noturno label {
  color: rgb(0, 0, 0, 0.5);
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 2px;
  margin: 4px 0px;
  transition: all 0.1s ease-in-out;
}

.switch-modo-noturno label:hover {
  cursor: pointer;
}

.switch-modo-noturno input:checked + label {
  background-color: #fff;
  color: #f9af1e;
  border-radius: 50%;
  box-shadow: none;
}

/**
* Css do relógio de ponto responsivo
*/
@media screen and (min-width: 10px) and (max-width: 990px) {
  .btn-ponto {
    cursor: pointer;
    font-size: 13px;
    color: #fff;
    padding: 15px 5px !important;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.37);
    width: 98% !important;
  }

  /*Bloco cinsa*/
  #div-smartphone {
    display: block !important;
  }

  /*Relogio menu*/
  #div-desktop {
    display: none;
  }
}

@media screen and (min-width: 1008px) and (max-width: 991px) {
  .btn-ponto {
    cursor: pointer;
    font-size: 13px;
    color: #fff;
    padding: 15px 5px !important;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.37);
    width: 45% !important;
  }

  #div-smartphone {
    display: block !important;
  }

  #div-desktop {
    display: none;
  }
}

@media only screen and (min-width: 991px) {
  #div-smartphone {
    display: none;
  }

  #div-desktop {
    display: block;
  }
}

.badge {
  font-size: 14px !important;
}

/*Class incorporada na chamado do plugin html2pdf responsável por imprimir HTML em PDF*/
.createPDF {
  font-size: 14px;
}

@media (max-width: 500px) {
  .modal-title {
    max-width: 300px;
  }
}

/*Customização ADMINLTE*/

/*Logo menu lateral*/
.brand-image {
  margin-top: -5px !important;
  max-height: 42px !important;
}

/*Oculta o icone collapse menu no menu topo, o mesmo que exibe o menu na versão mobile*/
@media only screen and (min-width: 992px) {
  .navbar-nav-custom {
    display: none !important;
  }
}

@media (min-width: 10px) and (max-width: 991) {
  .navbar-nav-custom {
    display: block !important;
  }
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5) !important;
}

.dark-mode .navbar-light .navbar-nav .nav-link {
  color: rgba(255, 255, 255) !important;
}
