@charset "UTF-8";
body {
  position: relative;
  font-family: "Quicksand", sans-serif;
}

.loading {
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: all 500ms cubic-bezier(0, 0, 0.38, 1);
}
.loading.ativo {
  opacity: 1;
  visibility: visible;
}
.loading svg {
  width: 50px;
}

section.clientes {
  text-align: center;
  font-size: 14px;
  padding: 30px;
  background: #f9fafb;
  color: #2a4469;
}
section.clientes h1 {
  text-align: left;
  padding-left: 30px;
  font-size: 27px;
  margin-top: -25px;
  margin-bottom: 5px;
  font-weight: 700;
}
section.clientes header {
  display: flex;
  justify-content: flex-start;
}
section.clientes header h1 {
  margin-bottom: 15px;
}
section.clientes header .logo-cliente {
  margin-bottom: 20px;
  width: 70px;
  margin-right: 15px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
  padding: 5px;
  border-radius: 100%;
}
section.clientes header .logo-parceiro {
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
  padding: 5px;
  border-radius: 100%;
}
section.clientes aside {
  width: 260px;
  height: 100vh;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  left: -260px;
  top: 0;
  padding: 15px;
  z-index: 99;
  transition: all 500ms cubic-bezier(0, 0, 0.38, 1);
  background: linear-gradient(to right, rgb(48, 203, 155) 0%, rgb(32, 144, 156) 100%);
}
section.clientes aside.is-active {
  left: 0;
}
section.clientes aside .select2-container {
  width: 100% !important;
  margin-bottom: 10px;
}
section.clientes aside select.inativo ~ .select2-container {
  opacity: 0.2;
  pointer-events: none;
}
section.clientes aside .hamburger {
  position: absolute;
  left: 100%;
  top: 0;
  background: #20909c;
  border-radius: 0 7px 7px 0;
  padding: 10px;
}
section.clientes aside .hamburger .hamburger-box {
  width: 25px;
  height: 12px;
}
section.clientes aside .hamburger.is-active:hover, section.clientes aside .hamburger:hover {
  opacity: 1;
}
section.clientes aside .hamburger.is-active:hover .hamburger-inner, section.clientes aside .hamburger:hover .hamburger-inner {
  opacity: 0.5;
}
section.clientes aside .hamburger .hamburger-inner,
section.clientes aside .hamburger .hamburger-inner:after,
section.clientes aside .hamburger .hamburger-inner:before {
  background: #fff;
  width: 25px;
  height: 3px;
  transition: all 500ms cubic-bezier(0, 0, 0.38, 1);
}
section.clientes aside .hamburger .hamburger-inner:before {
  top: -7px;
}
section.clientes aside .hamburger .hamburger-inner:after {
  bottom: -7px;
}
section.clientes aside .hamburger.hamburger--3dxy.is-active .hamburger-inner:after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}
section.clientes aside .hamburger.hamburger--3dxy.is-active .hamburger-inner:before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
section.clientes .dash .box-big-numbers {
  display: flex;
  justify-content: space-between;
}
section.clientes .dash .box-big-numbers > div {
  position: relative;
  width: calc(28% - 15px);
  border-radius: 7px;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
section.clientes .dash .box-big-numbers > div.sem-ecobox h2 {
  color: #fa603f;
}
section.clientes .dash .box-big-numbers > div.sem-ecobox h2 small {
  color: #fa603f;
}
section.clientes .dash .box-big-numbers > div.com-ecobox h2 {
  color: #30cb9b;
}
section.clientes .dash .box-big-numbers > div.com-ecobox h2 small {
  color: #30cb9b;
}
section.clientes .dash .box-big-numbers > div.diferenca {
  border: solid 2px #20909c;
  color: #fff;
  background: #20909c;
}
section.clientes .dash .box-big-numbers > div.diferenca h2 small {
  color: #fff;
}
section.clientes .dash .box-big-numbers > div.diferenca h3 {
  position: absolute;
  left: 5px;
  top: -22px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  background: #20909c;
  padding: 5px 13px;
  border-radius: 5px 5px 0 0;
}
section.clientes .dash .box-big-numbers > div.diferenca h3 i {
  font-size: 20px;
  margin-right: 5px;
}
section.clientes .dash .box-big-numbers > div.diferenca > i {
  font-size: 25px;
  color: #20909c;
  position: absolute;
  right: -15px;
  top: -15px;
  padding: 5px;
  border-radius: 100%;
  background: #fff;
  border: solid 2px #20909c;
}
section.clientes .dash .box-big-numbers > div.diminuicao {
  width: calc(16% - 15px);
  border: solid 2px #30cb9b;
  padding: 10px;
}
section.clientes .dash .box-big-numbers > div.diminuicao h4 {
  position: absolute;
  left: 7px;
  top: -20px;
  background: #30cb9b;
  border-radius: 5px 5px 0 0;
  padding: 2px 12px;
  font-size: 14px;
  font-weight: 700;
}
section.clientes .dash .box-big-numbers > div.diminuicao #progress-co {
  position: relative;
  margin-top: 10px;
}
section.clientes .dash .box-big-numbers > div.diminuicao #progress-co strong {
  position: absolute;
  left: 0;
  top: -2px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
section.clientes .dash .box-big-numbers > div.diminuicao #progress-co strong i {
  font-style: normal;
  font-size: 60%;
  position: relative;
  top: 2px;
}
section.clientes .dash .box-big-numbers > div h4 {
  font-size: 18px;
}
section.clientes .dash .box-big-numbers > div h4 b {
  display: block;
  font-size: 14px;
}
section.clientes .dash .box-big-numbers > div h2 {
  font-size: 36px;
  font-weight: 700;
  width: 100%;
}
section.clientes .dash .box-big-numbers > div h2 small {
  font-size: 30%;
  font-weight: 700;
  color: #2a4469;
  padding-left: 7px;
}
section.clientes .dash .box-charts {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  position: relative;
  z-index: 9;
}
section.clientes .dash .box-charts #chart-line {
  width: 60%;
  min-height: 500px;
  height: 100%;
  margin-bottom: 20px;
  background: #fff;
  margin-top: 15px;
  border-radius: 7px;
}
section.clientes .dash .box-charts .box-dir {
  width: 60%;
}
section.clientes .dash .box-charts .box-dir .box-truck {
  height: 55px;
  border: solid 2px #fa603f;
  background: #fff;
  margin-top: 15px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  justify-content: center;
}
section.clientes .dash .box-charts .box-dir .box-truck h3 {
  font-size: 26px;
  margin-right: 10px;
  font-weight: 600;
}
section.clientes .dash .box-charts .box-dir .box-truck h3 i {
  font-size: 60%;
  font-style: normal;
}
section.clientes .dash .box-charts .box-dir .box-truck #truck {
  width: 130px;
  position: relative;
  top: -5px;
  margin-left: -35px;
}
section.clientes .dash .box-charts .box-dir #chart-radar {
  width: 100%;
  height: calc(100vh - 250px);
  margin-bottom: 20px;
  background: #fff;
  margin-top: 15px;
  border-radius: 7px;
  position: relative;
}
section.clientes .dash .box-charts .box-dir #chart-radar::after {
  content: "% de Diminuição";
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 16px;
  font-weight: 700;
}
section.clientes .dash .box-charts #chart-bar {
  width: 40%;
  min-height: calc(100vh - 185px);
  height: 100%;
  margin-bottom: 20px;
  padding-top: 25px;
  background: #fff;
  margin-top: 15px;
  border-radius: 7px;
}
section.clientes .dash .box-charts #chart-bar > div {
  margin-bottom: -45px;
  position: relative;
}
section.clientes .dash .box-charts #chart-bar > div:last-child::after {
  display: none;
}
section.clientes .dash .box-charts #chart-bar > div::after {
  content: "";
  width: 15%;
  height: 25%;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
section.clientes .dash .box-charts #chart-bar h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: -15px;
  text-align: left;
  padding-left: 20px;
  position: relative;
}
section.clientes .dash .box-charts #chart-bar #chart-bar-1,
section.clientes .dash .box-charts #chart-bar #chart-bar-2,
section.clientes .dash .box-charts #chart-bar #chart-bar-3,
section.clientes .dash .box-charts #chart-bar #chart-bar-4,
section.clientes .dash .box-charts #chart-bar #chart-bar-5,
section.clientes .dash .box-charts #chart-bar #chart-bar-6 {
  height: 17.5vh;
  width: 100%;
}
section.clientes .dash .lista-veiculos {
  background: #fff;
  border-radius: 7px;
  padding: 15px;
  border: solid 1px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 9;
  margin-top: -5px;
}
section.clientes .dash .lista-veiculos h2 {
  color: #2a4469;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 500ms cubic-bezier(0, 0, 0.38, 1);
}
section.clientes .dash .lista-veiculos h2.ativo {
  margin-bottom: 15px;
}
section.clientes .dash .lista-veiculos h2.ativo i {
  transform: rotate(180deg);
}
section.clientes .dash .lista-veiculos h2:hover {
  opacity: 0.5;
}
section.clientes .dash .lista-veiculos h2 i {
  transform: rotate(0deg);
  transition: all 500ms cubic-bezier(0, 0, 0.38, 1);
}
section.clientes .dash .lista-veiculos #tabela-veiculos {
  height: 0;
  opacity: 0;
  margin: 0;
  transition: all 500ms cubic-bezier(0, 0, 0.38, 1);
}
section.clientes .dash .lista-veiculos #tabela-veiculos.ativo {
  opacity: 1;
  height: auto;
}
section.clientes .dash .lista-veiculos #tabela-veiculos table {
  width: 100%;
  margin-bottom: 20px;
}
section.clientes .dash .lista-veiculos #tabela-veiculos table th {
  background: rgba(0, 0, 0, 0.03);
}
section.clientes .dash .lista-veiculos #tabela-veiculos table th,
section.clientes .dash .lista-veiculos #tabela-veiculos table td {
  padding: 10px;
  text-align: center;
  border: solid 1px rgba(0, 0, 0, 0.3);
  text-wrap: nowrap;
  background: #fff;
}
section.clientes .dash .lista-veiculos #tabela-veiculos table tr.cada-min td {
  border-bottom: solid 3px rgba(0, 0, 0, 0.3);
  background: #fa975a;
  color: #fff;
  transition: all 500ms cubic-bezier(0, 0, 0.38, 1);
}
section.clientes .dash .lista-veiculos #tabela-veiculos table tr.cada-min td.anima {
  background: #fa603f;
}
section.clientes .by-bbr {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #20909c;
}

@media (max-width: 1200px) {
  section.clientes .dash .box-big-numbers {
    flex-wrap: wrap;
  }
  section.clientes .dash .box-big-numbers > div {
    width: calc(50% - 15px);
    margin-bottom: 35px;
  }
  section.clientes .dash .box-big-numbers > div.diminuicao {
    width: calc(50% - 15px);
  }
  section.clientes .dash .box-charts #chart-bar #chart-bar-1,
  section.clientes .dash .box-charts #chart-bar #chart-bar-2,
  section.clientes .dash .box-charts #chart-bar #chart-bar-3,
  section.clientes .dash .box-charts #chart-bar #chart-bar-4,
  section.clientes .dash .box-charts #chart-bar #chart-bar-5,
  section.clientes .dash .box-charts #chart-bar #chart-bar-6 {
    height: 165px;
  }
  section.clientes .dash .box-charts #chart-bar > div {
    margin-bottom: -60px;
  }
}
@media (max-width: 992px) {
  section.clientes .dash .box-charts {
    flex-wrap: wrap;
    margin-top: -30px;
  }
  section.clientes .dash .box-charts #chart-bar > div {
    margin-bottom: -35px;
  }
  section.clientes .dash .box-charts .box-dir {
    width: 100%;
    margin-top: -35px;
    position: relative;
  }
  section.clientes .dash .box-charts #chart-bar {
    width: 100%;
  }
}
@media (max-width: 768px) {
  section.clientes {
    padding: 30px 15px;
  }
  section.clientes h1 {
    font-size: 18px;
    margin-top: -15px;
    margin-bottom: 15px;
    padding-left: 45px;
  }
  section.clientes .dash .box-big-numbers > div {
    width: 100%;
    margin-bottom: 15px;
  }
  section.clientes .dash .box-big-numbers > div.diferenca {
    margin-top: 20px;
  }
  section.clientes .dash .box-big-numbers > div.diminuicao {
    width: 100%;
    margin-top: 20px;
  }
  section.clientes .dash .box-charts #chart-bar h2 {
    text-align: center;
    padding-left: 0;
  }
  section.clientes .dash .box-charts #chart-bar #chart-bar-1, section.clientes .dash .box-charts #chart-bar #chart-bar-2, section.clientes .dash .box-charts #chart-bar #chart-bar-3, section.clientes .dash .box-charts #chart-bar #chart-bar-4, section.clientes .dash .box-charts #chart-bar #chart-bar-5, section.clientes .dash .box-charts #chart-bar #chart-bar-6 {
    height: 200px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: -90px;
  }
  section.clientes .dash .box-charts .box-dir .box-truck {
    height: auto;
  }
  section.clientes .dash .box-charts .box-dir .box-truck h3 i {
    display: block;
    width: 100%;
  }
  section.clientes .dash .box-charts #chart-bar {
    width: 100%;
    margin-top: 30px;
  }
  section.clientes .dash .box-charts .box-dir .box-truck #truck {
    width: 120px;
    position: relative;
    top: -5px;
    margin-left: -30px;
    margin-bottom: -20px;
    margin-top: -20px;
  }
  section.clientes .dash .lista-veiculos h2 {
    font-size: 22px;
  }
}/*# sourceMappingURL=style.css.map */