* {
  list-style: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-weight: bold;
}

.bi-eye, .bi-eye-slash{
  display: flex !important;
}

body {
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 0px;
  height: 10px;
}

body::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 5px;
}

body::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

/*INICIO GLOBAL PAGES */
.wrapperVolumes,
.wrapperVolumesVolumes,
.wrapperQualidade,
.wrapperExcel {
  display: none;
}

.wrapperApp {
  display: none;
}

#filtroSelecionado {
  padding: 10px;
  font-weight: bold;
  display: none;
}

.filtroFoto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* NAVBAR */
.navbar {
  background-color: #229544;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  justify-content: space-between;
  z-index: 99;
}

.navbar .logo {
  width: 40px;
  margin-top: 4px;
}

.navbar .nameLogo {
  width: 200px;
}

.containerLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.containerImagemUsuario {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: #00000051;
  width: max-content;
  color: #fff;
  padding: 2px 15px;
  border-radius: 25px;
  border: 2px solid #fff;
}

.containerImagemUsuario img {
  width: 40px;
  height: 40px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.exibirFiltros,
#alterarModo,
.esconderFiltros {
  gap: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 5px 15px;
  text-transform: uppercase;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

#alterarModo {
  font-size: 20px;
}

.exibirFiltros:hover,
#alterarModo:hover,
.esconderFiltros:hover {
  scale: 0.98;
  box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.4);
}

.exibirFiltros i,
.esconderFiltros i {
  font-size: 20px;
}

/*FIM GLOBAL PAGES */
/*------------------------------------------------------------------------------------------------------------------------------------------*/

/* FILTROS */
.containerFiltros {
  background-color: #fff;
  z-index: -99;
  display: none;
  padding: 10px;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin: 0 auto 10px auto;
  box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.4);
  animation: slide-bottom 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slide-bottom {
  0% {
    transform: translateX(1000px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slide-out {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(1500px);
  }
}

.timeLineFiltros {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #22954454;
  padding: 4px;
  border-radius: 12px;
  color: #fff;
  font-weight: bold;
}

.timeLineFiltros p {
  padding: 5px;
  border: 1px solid #fff;
  background-color: #229544;
}

.timeLineFiltros p:first-child {
  border-radius: 12px 0 0 12px;
}

.timeLineFiltros p:last-child {
  border-radius: 0 12px 12px 0;
}

.timeLineFiltros p:hover {
  background-color: #22954454;
  cursor: pointer;
  color: #000;
}

.timeLineFiltros .check {
  background-color: #22954454;
  cursor: pointer;
  color: #000;
}

.promotorSelect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.promotorSelect p {
  margin-top: -4px;
}

.promotorSelect select,
.promotorSelect input {
  border-radius: 6px;
  padding: 4px;
  border: 1px solid #ccc;
  width: 250px;
  text-transform: uppercase;
}

.btnFiltrar {
  background-color: #229544;
  border-radius: 6px;
  padding: 5px 15px;
  color: #fff;
  text-transform: uppercase;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.btnFiltrar:hover {
  scale: 0.98;
  box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.253);
}

.containerNavigate {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.253);
  position: absolute;
  right: 20px;
  top: 60px;
  border: solid 1px #ccc;
  font-size: 25px;
}

.containerNavigate ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  gap: 5px;
  padding: 5px 15px;
}

ul li {
  cursor: pointer;
}

ul li:hover {
  scale: 0.98;
  cursor: pointer;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}

td,
th {
  text-align: center;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

.containerValores,
.containerValoresSupervisor,
.containerVolumesSupervisor,
.containerQuantidadeSupervisor,
.containerQuantidade,
.containerVolumes,
.containerValoresParceiro,
.containerQuantidadeParceiro,
.containerQualidadeParceiro,
.containerVolumesParceiro,
.containerQualidadeSupervisor,
.containerQualidade {
  padding: 15px 10px;
  box-shadow: 2px 4px 12px 0px rgb(180, 179, 179);
  margin: 60px 10px 0px 10px;
  border-radius: 12px;
}

.containerQuantidade,
.containerQualidade,
.containerValoresSupervisor,
.containerQuantidadeSupervisor,
.containerQualidadeSupervisor,
.containerVolumesSupervisor,
.containerValoresParceiro,
.containerQuantidadeParceiro,
.containerQualidadeParceiro,
.containerVolumesParceiro,
.containerVolumes {
  display: none;
}

.containerValoresSupervisor,
.containerQuantidadeSupervisor,
.containerQualidadeSupervisor,
.containerValoresParceiro,
.containerQuantidadeParceiro,
.containerQualidadeParceiro,
.containerVolumesParceiro,
.containerVolumesSupervisor {
  margin-top: 10px;
}

thead,
#totalEquipe {
  font-weight: bold;
  background-color: #229544;
  color: #fff;
  text-transform: uppercase;
}

#totalEquipe td:first-child {
  border-radius: 0 0 0 6px;
}

#totalEquipe td:last-child {
  border-radius: 0 0 6px 0;
}

thead th:first-child,
tbody td:first-child {
  border-radius: 6px 0 0 0;
  text-align: left;
  font-weight: bold;
}

thead th:last-child {
  border-radius: 0 6px 0 0;
}

.containerLabel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 5px;
  margin-top: -10px;
}

.containerLabel p {
  margin-bottom: 8px;
  color: gray;
  font-weight: bold;
}

.containerLabel i {
  font-size: 35px;
}

.containerLabel h1 {
  font-size: 22px;
  text-transform: uppercase;
  color: rgb(23, 23, 23);
}

.bi-cash-coin {
  background-color: #229544;
  padding-inline: 5px;
  border-radius: 10px 0 10px 10px;
  color: #fff;
  margin-bottom: 5px;
}

.bi-cash-coin span {
  display: none;
  font-size: 18px;
}

.bi-cash-coin:hover span {
  display: flex;
  position: absolute;
  background: #000;
  padding: 3px 5px;
  border-radius: 0 6px 6px 6px;
  margin-top: 4px;
}

.bi-bar-chart-line {
  background-color: #36afba;
  padding-inline: 5px;
  border-radius: 10px 0 10px 10px;
  color: #fff;
  margin-bottom: 5px;
}

.bi-bar-chart-line span {
  display: none;
  font-size: 18px;
}

.bi-bar-chart-line:hover span {
  display: flex;
  position: absolute;
  background: #000;
  padding: 3px 5px;
  border-radius: 0 6px 6px 6px;
  margin-top: 4px;
}

.bi-database-fill-up {
  background-color: #fd8801;
  padding-inline: 5px;
  border-radius: 10px 0 10px 10px;
  color: #fff;
  margin-bottom: 5px;
}

.bi-database-fill-up span {
  display: none;
  font-size: 18px;
}

.bi-database-fill-up:hover span {
  display: flex;
  position: absolute;
  background: #000;
  padding: 3px 5px;
  border-radius: 0 6px 6px 6px;
  margin-top: 4px;
}



.bi-graph-up-arrow {
  background-color: #fd3301;
  padding-inline: 5px;
  border-radius: 10px 0 10px 10px;
  color: #fff;
  margin-bottom: 5px;
}

.bi-graph-up-arrow span {
  display: none;
  font-size: 18px;
}

.bi-graph-up-arrow:hover span {
  display: flex;
  position: absolute;
  right: 10px;
  background: #000;
  padding: 3px 5px;
  border-radius: 6px 0 6px 6px;
  margin-top: 4px;
}

/*hidratação de pagina com loading e spinner */
.spinner {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner::before,
.spinner::after {
  border: 6.7px solid #229544;
  border-radius: 50%;
  position: absolute;
  content: '';
  display: block;
}

.spinner::before {
  width: 20.6px;
  height: 20.6px;
  border-bottom-color: transparent;
  border-left-color: transparent;
  animation: spinner-1o3y8q 0.75s infinite linear reverse;
}

.spinner::after {
  animation: spinner-1o3y8q 0.5s infinite linear;
  height: 10px;
  width: 10px;
  border-right-color: transparent;
  border-top-color: transparent;
}

@keyframes spinner-1o3y8q {
  to {
    transform: rotate(360deg);
  }
}

.progress {
  width: 100%;
  height: 16.8px;
  border-radius: 16.8px;
  background: linear-gradient(#ccc 0 0) left/0% 100% no-repeat #dbdcef;
  animation: progress-c2d4ps 1s infinite steps(10);
}

@keyframes progress-c2d4ps {
  100% {
    background-size: 110% 100%;
  }
}

.progress2, .progress3 {
  margin: 20px auto 5px auto;
  width: 134.4px;
  height: 67.2px;
  border-radius: 224px 224px 0 0;
  display: none;
  mask: inherit;
  -webkit-mask: repeating-radial-gradient(farthest-side at bottom, #0000 0, #000 1px 12%, #0000 calc(12% + 1px) 20%);
  background: radial-gradient(farthest-side at bottom, #229544 0 95%, #0000 0) bottom/0% 0% no-repeat #dbdcef;
  animation: progress-e37qus 2s infinite steps(6);
}

.labelProgress2, .labelProgress3 {
  align-items: center;
  justify-content: center;
  width: 100%;
  display: none;
}

@keyframes progress-e37qus {
  100% {
    background-size: 120% 120%;
  }
}

.bi {
  display: none;
}


.btnReloadPage,
.btnExcel {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 16px;
  border: 1px solid #fff;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  cursor: pointer;
  background: #229544;
  color: #fff;
  position: absolute;
  left: 20px;
  top: 65px;
}

.btnReloadPage:hover,
.btnExcel:hover {
  scale: 0.98;
  box-shadow: 2px 2px 8px 0px rgb(110, 110, 110);
}

.btnReloadPage i {
  margin-bottom: -2px;
}

.btnExcel {
  left: 13.5%;
  top: 65px;
  padding-block: 7.5px;
}

.bi-arrow-clockwise {
  font-size: 22px;
}

.swal2-cancel {
  display: none !important;
}

/* tutorial */
.tutorialFiltro {
  background: #fff;
  position: absolute;
  margin-top: -2px;
  margin-left: 5px;
  padding: 5px 15px;
  box-shadow: 2px 2px 8px 0px rgb(110, 110, 110);
  border-radius: 0 6px 6px 6px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 16px;
  width: max-content;
}

.tutorialFiltro img,
.tutorialNavigate img,
.tutorialReload img,
.tutorialExcel img,
.tutorialTabela img {
  width: 40px;
  border: 2px solid black;
  border-radius: 50%;
  padding: 2px;
}

.tutorialNavigate {
  background: #fff;
  position: absolute;
  margin-top: 90px;
  right: 170px;
  padding: 5px 15px;
  box-shadow: 2px 2px 8px 0px rgb(110, 110, 110);
  border-radius: 6px 0 6px 6px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: max-content;
  font-size: 16px;
}

.tutorialReload {
  background: #fff;
  position: absolute;
  margin-top: 40px;
  left: 27px;
  padding: 5px 15px;
  box-shadow: 2px 2px 8px 0px rgb(110, 110, 110);
  border-radius: 0 6px 6px 6px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: max-content;
  font-size: 16px;
  z-index: 99;
}

.tutorialExcel {
  background: #fff;
  position: absolute;
  margin-top: -40px;
  left: 250px;
  padding: 5px 15px;
  box-shadow: 2px 2px 8px 0px rgb(110, 110, 110);
  border-radius: 6px 6px 6px 0;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: max-content;
  font-size: 16px;
}

.tutorialTabela {
  background: #fff;
  position: absolute;
  margin-top: -200px;
  left: 50px;
  padding: 5px 15px;
  box-shadow: 2px 2px 8px 0px rgb(110, 110, 110);
  border-radius: 0 6px 6px 6px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: max-content;
  font-size: 16px;
}

.tutorial {
  display: none;
}

/* switch  */
.switch-container {
  display: none;
  font-weight: bold;
  text-transform: uppercase;
  display: none;
  align-items: center;
  color: #FFF;
}

.switch-label {
  margin-right: 10px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 57px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f22525;
  transition: .4s;
  border-radius: 25px;
  border: 2px solid #fff;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 3.5px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: #229544;
}

input:checked+.slider:before {
  transform: translateX(26px);
}

/* Estilize o slider quando o switch estiver desativado */
input:disabled+.slider {
  background-color: #ccc;
  cursor: not-allowed;
}

input:disabled+.slider:before {
  background-color: #999;
}