@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css?family=Carrois+Gothic&display=swap');
* {
  border: 0;
  padding: 0;
  list-style: none;
  font-family: 'Roboto', sans-serif;
}
:root {
  touch-action: pan-x pan-y;
  height: 100% 
}
.highlighted {
  transition: all 0.3s ease;
  transform: scale(1.5); /* Aumenta o tamanho */
}
.rocket {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  z-index: 99999;
  height: 40px;
  background: url('https://png.pngtree.com/png-clipart/20190515/original/pngtree-flying-rocket-png-image_3718748.jpg') no-repeat center center;
  background-size: contain;
  transition: top 4s ease-in-out;
}
.masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(40%), 1fr));
  grid-auto-rows: 10px;
  padding:0 10px;
  gap: 20px;
}
.item-masonry {
  background-color: #ffffff;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  grid-row: auto;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  color: #fff;
}
@media (max-width:640px){
  .masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(100%), 1fr));
    grid-auto-rows: 10px;
    padding:5px;
    gap: 20px;
  }
}
.search-container {
  position: relative;
  width: 100%;
}

input[type="text"]:focus {
  border-color: #004d40;
  box-shadow: 0 0 8px rgba(0, 77, 64, 0.2);
  outline: none;
}

.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #00796b;
  border-top: none;
  background-color: #ffffff;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.suggestions div {
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.suggestions div:hover {
  background-color: #b2dfdb;
}
.apexcharts-heatmap-rect {
  height:20px; /* Ajuste o valor do padding aqui */
}
.dropdown-menu {
  min-width: 8rem;
}    
.infoBox {
  position: absolute;
  display: none;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: white;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  max-width: 250px;
}
.infoBox .close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
  color: #888;
}
.infoBox .close:hover {
  color: #000;
}
.infoContent strong {
  font-size: 16px;
  color: #000;
}
.infoBox-button {
  margin-right: 5px;
  margin-top: 10px;
  background-color: #e7e7e7; /* Azul suave */
  color: rgb(82, 82, 82);
  border: none;
  border-radius: 5px;
  padding: 2px 15px;
  cursor: pointer;
  width: 100%;
  font-size: 12px;
  transition: background-color 0.3s ease;
}
.infoBox-button:hover {
  background-color: #005f7a; /* Azul mais escuro ao passar o mouse */
  color: rgb(240, 240, 240);
}
.apexcharts-legend {
  max-height: 3em;
  /* Limita a legenda a aproximadamente 2 linhas */
  overflow-x: auto;
  /* Habilita rolagem horizontal */
  overflow-y: hidden;
  /* Esconde overflow vertical */
  white-space: nowrap;
  /* Previne quebra de linha */
}
.visualGrafico .button-container {
  display: block;
  flex-wrap: nowrap; /* Mantém os botões em uma linha */
  justify-content: center; /* Centraliza os botões */
  overflow-x: auto; /* Permite scroll horizontal quando necessário */
  width: 100%; /* Garante que o contêiner ocupe 100% da largura */
}

.visualGrafico .button {
  margin: 0 5px; /* Espaçamento entre os botões */
  padding: 2px 8px; /* Reduz o padding para torná-los menores */
  background-color: #97c4f3; /* Cor de fundo do botão */
  color: rgb(82, 79, 79); /* Cor do texto do botão */
  border: none; /* Remove borda */
  border-radius: 5px; /* Arredonda os cantos do botão */
  cursor: pointer; /* Muda o cursor para indicar que é clicável */
  font-size: 11px; /* Tamanho de fonte menor */
  white-space: nowrap; /* Impede quebra de linha no texto do botão */
}

.visualGrafico .button:hover {
  background-color: #5988bb; /* Cor ao passar o mouse */
}

#chart {
  overflow-x: auto;
  /* Permite a rolagem horizontal */
  white-space: nowrap;
  /* Impede que o gráfico se quebre */
}

.apexcharts-bar-series .apexcharts-series {
  stroke-width: 3;
  /* Controla a largura das bordas */
}
#popup {
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  display: none;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
 /* Remover setas padrão do dropdown */
 .dropdown-toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.dropdown-toggle::after {
  display: none;
}
.infoBox-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2px;
}

.infoBox-table th, .infoBox-table td {
  border: 1px solid #ddd;
  padding: 3px;
  font-size:10px;
  text-align: center;
}

.infoBox-table th {
  background-color: #f2f2f2;
  font-weight: bold;
}
header {
  width: 100%;
  min-width: 1200px;
  background: rgb(46, 46, 45);
  border-bottom: 1px solid #000;
  height: 49px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1506
}

header ul.fixed-left {
  position: fixed;
  top: 0;
  left: 0
}

header ul.fixed-right {
  position: fixed;
  top: 0;
  right: 0
}

header ul li {
  color: #fff;
  font-size: 20px;
  padding: 10px;
  height: 49px;
}

header ul li:hover {
  background: #000;
  cursor: pointer;
}

header ul li.wH:hover {
  background: none;
}

header .navbar-center {
  color: #bebebe;
  font-size: 20px;
  position: fixed;
  text-align: center;
  width: 50%;
  margin-left: 25%;
  left: 0;
  top: 10px;
}

.pull-left {
  float: left;
}

.circleNotification {
  position: absolute;
  z-index: 2000;
  font-size: 8px;
  margin-top: -30px;
  margin-left: 10px;
  display: none;
}

#menu .sidebar-nav {
  margin-top: 50px;
}

#menu .sidebar-nav a {
  text-decoration: none;
  width: 100%
}

#menu .sidebar-nav li a {
  width: 100%;
  clear: both;
  padding: 10px 0;
}

#menu .sidebar-nav li:hover {
  cursor: pointer;
}

#menu .sidebar-nav li i {
  padding: 5px 10px;
  color: rgb(150, 145, 145);
}

#menu .sidebar-nav li i.list {
  float: right;
}

#menu .sidebar-nav li:hover i {
  color: rgb(62, 96, 147)
}

#menu .sidebar-nav li a:hover .sidebar-text {
  color: #fff;
}

#menu .sidebar-nav li.active {
  background: #000
}

#menu .sidebar-nav li.active i.openLi {
  display: none
}

#menu .sidebar-nav li.active i {
  color: rgb(62, 96, 147)
}

#menu .sidebar-nav li .sidebar-text {
  padding: 15px 0;
  color: rgb(150, 145, 145);
  width: 100%;
  display: block
}

#menu .sidebar-nav li.active .sidebar-text {
  color: #fff;
}

#menu .sidebar-nav li ul {
  background: rgb(48, 48, 48);
  display: none
}

#menu .sidebar-nav li ul.aberta {
  display: block
}

#menu .sidebar-nav li .submenu {
  background: #0e0e0c;
}

#menu .sidebar-nav li .submenu li {
  padding: 0;
}

#menu .sidebar-nav li ul li {
  width: 100%;
  clear: both;
}

#menu .sidebar-nav li ul li a {
  text-decoration: none;
  color: rgb(158, 156, 156);
}

#menu .sidebar-nav li ul li a .opc {
  padding: 15px 20px 15px 30px;
  width: 100%;
  display: block;
}

#menu .sidebar-nav li ul li a .current {
  color: rgb(238, 241, 235);
  border-left: 3px solid rgb(62, 96, 147);
}

#menu .footer-widget {
  position: fixed;
  bottom: 0px;
  display: block;
  padding: 0;
  background-color: #2B2E33;
  width: 250px;
  clear: both;
  z-index: 1000;
}

#menu .footer-gradient {
  background: url('../images/gradient.png') repeat-x;
  width: 100%;
  height: 27px;
  margin-top: -27px
}

#menu .footer-widget i {
  font-size: 14px;
  color: #5E646D;
}

#menu .footer-widget a:hover i {
  color: #F7F7F7
}

#menu .footer-widget .sidebar-gradient-img {
  width: 100%;
  height: 20px;
  margin-top: -20px;
  display: block
}

#menu #sidebar-charts {
  display: block;
  border-bottom: 1px solid #3C3C3C;
  width: 250px;
  padding: 0;
  z-index: 1000;
}

#menu .sidebar-charts-inner {
  padding: 15px 15px 10px 20px;
  height: 53px;
  border-bottom: 1px solid #20262B;
}

#menu .sidebar-charts-left {
  float: left;
  text-align: left;
  margin-top: -7px;
}

#menu .sidebar-charts-right {
  float: right;
  text-align: right
}

#menu .sidebar-chart-title {
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.3
}

#menu .sidebar-chart-number {
  color: #fff;
  font-size: 18px;
  opacity: 0.7;
  font-family: 'Carrois Gothic', sans-serif;
}

.sidebar-charts-right {
  float: right;
}

#menu #sidebar-charts hr.divider, li.divider {
  border: 0;
  height: 1px;
  margin-bottom: 0;
  margin-top: 0;
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgi…gd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(205, 205, 205, 0)), color-stop(50%, #4D4D4D), color-stop(100%, rgba(205, 205, 205, 0)));
  background: -webkit-linear-gradient(left, rgba(205, 205, 205, 0), #4D4D4D, rgba(205, 205, 205, 0));
  background: -moz-linear-gradient(left, rgba(205, 205, 205, 0), #4D4D4D, rgba(205, 205, 205, 0));
  background: -o-linear-gradient(left, rgba(205, 205, 205, 0), #4D4D4D, rgba(205, 205, 205, 0));
  background: linear-gradient(left, rgba(205, 205, 205, 0), #4D4D4D, rgba(205, 205, 205, 0));
  position: relative;
}

#menu .sidebar-footer {
  padding: 0
}

#menu .sidebar-footer .progress {
  position: relative;
  top: 15px;
  width: 70%;
  margin-bottom: 5px;
}

#menu .sidebar-footer .pull-left {
  width: 25%;
  text-align: center;
  padding: 10px 0;
}

#menu .sidebar-footer .pull-left:hover {
  background-color: #373a41;
}

#menu .sidebar-footer i {
  font-size: 16px
}

#main_content {
  width: 100%;
  position: fixed;
  top: 50px;
  right: 0;
  height: calc(100vh - 55px);
  margin: 0;
  z-index: 900;
}

#companyControl {
  height: 100%;
  width: 300px;
  border-left: 2px solid rgb(159, 159, 159);
  background: rgba(55, 55, 55, 0.95);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2000;
  display: none;
}

#companyControl .list-group div {
  background: rgb(54, 54, 54)
}

#companyControl .card {
  padding: 10px 0;
  background: rgb(40, 38, 38);
  border-top: 2px solid #252323;
  width: 300px;
  border-left: 5px solid rgb(37, 115, 66);
}

#companyControl .card img {
  margin: 0 auto
}

#companyControl .card .card-body {
  padding: 10px 0 0 0;
}

#companyControl .card .card-body .card-text {
  color: rgb(55, 129, 64)
}

#companyControl .cardCompany {
  padding: 10px 0;
  background: rgb(40, 38, 38);
  border-bottom: 2px solid rgb(71, 71, 71);
  border-left: 5px solid rgb(39, 100, 193)
}

#companyControl .readInput {
  padding: 0;
}

#menu {
  width: 249px;
  border-right: 1px solid #000;
  background: rgb(34, 34, 33);
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  z-index: 1505;
  display: none;
  overflow: hidden;
}

#LoadingBackground {
  width: 100%;
  height: 100%;
  z-index: 1504;
  background: rgba(245, 235, 235, 0.83);
  position: fixed;
  left: 0;
  top: 0;
  display: none
}

.loadPageIcon {
  position: absolute;
  z-index: 2000;
  width: 100px;
  bottom: 0
}

.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube:nth-child(4n+1):before {
  background: rgb(208, 101, 3);
}

.sk-folding-cube .sk-cube:nth-child(4n+2):before {
  background: rgb(233, 147, 26);
}

.sk-folding-cube .sk-cube:nth-child(4n+3):before {
  background: rgb(22, 145, 190);
}

.sk-folding-cube .sk-cube:nth-child(4n+4):before {
  background: rgb(22, 107, 162);
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

/****  Custom Scrollbar Browser  ****/

::-webkit-scrollbar {
  width: 2px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background-color: #eaeaea;
  border-left: 1px solid #d8bb75;
}

::-webkit-scrollbar-thumb {
  background-color: #d8bb75;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #d8bb75;
}

::-webkit-scrollbar-track {
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

::-webkit-scrollbar-thumb {
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

button .tooltiptext {
  visibility: visible;
  width: 120px;
  background-color: #555;
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  margin-top: -40px;
  margin-left: -65px;
  opacity: 0;
  font-size: 11px;
  transition: opacity 0.3s;
}

button .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

button .tooltiptext.top::after {
  top: 100%;
  left: 50%;
  border-color: #555 transparent transparent transparent;
}

button .tooltiptext.bottom::after {
  top: -44%;
  left: 50%;
  border-color: transparent transparent #555 transparent;
}

button .tooltiptext.right::after {
  top: 20%;
  left: -4%;
  border-color: transparent #555 transparent transparent;
}

button .tooltiptext.left::after {
  top: 20%;
  left: 104%;
  border-color: transparent transparent transparent #555;
}

button .tooltiptext.top {
  margin-top: -40px;
  margin-left: -65px;
}

button .tooltiptext.bottom {
  margin-top: 40px;
  margin-left: -65px;
}

button .tooltiptext.right {
  margin-top: 0;
  margin-left: 25px;
}

button .tooltiptext.left {
  margin-top: 0;
  margin-left: -160px;
}

button:hover .tooltiptext {
  visibility: visible;
  font-size: 11px;
  opacity: 1;
}
.timeline {
  margin: 0 0 45px;
  padding: 0;
  height: calc(100vh - 200px);
  overflow: auto;
  position: relative
}

.timeline::before {
  border-radius: .25rem;
  background: #dee2e6;
  bottom: 0;
  content: '';
  left: 31px;
  margin: 0;
  position: absolute;
  top: 0;
  width: 4px
}

.timeline>div {
  margin-bottom: 15px;
  margin-right: 10px;
  position: relative
}

.timeline>div::after,
.timeline>div::before {
  content: "";
  display: table
}

.timeline>div>.timeline-item {
  box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2);
  border-radius: .25rem;
  background: #fff;
  color: #495057;
  margin-left: 60px;
  margin-right: 15px;
  margin-top: 0;
  padding: 0;
  position: relative
}

.timeline>div>.timeline-item>.time {
  color: #999;
  float: right;
  font-size: 12px;
  padding: 10px
}

.timeline>div>.timeline-item>.timeline-header {
  border-bottom: 1px solid rgba(0, 0, 0, .125);
  color: #495057;
  font-size: 16px;
  line-height: 1.1;
  margin: 0;
  padding: 10px
}

.timeline>div>.timeline-item>.timeline-header>a {
  font-weight: 600
}

.timeline>div>.timeline-item>.timeline-body,
.timeline>div>.timeline-item>.timeline-footer {
  padding: 10px
}

.timeline>div>.timeline-item>.timeline-body>img {
  margin: 10px
}

.timeline>div>.timeline-item>.timeline-body ol,
.timeline>div>.timeline-item>.timeline-body ul,
.timeline>div>.timeline-item>.timeline-body>dl {
  margin: 0
}

.timeline>div>.timeline-item>.timeline-footer>a {
  color: #fff
}

.timeline>div>.fa,
.timeline>div>.fab,
.timeline>div>.far,
.timeline>div>.fas,
.timeline>div>.glyphicon,
.timeline>div>.ion {
  background: #adb5bd;
  border-radius: 50%;
  font-size: 15px;
  height: 30px;
  left: 18px;
  line-height: 30px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 30px
}

.timeline>.time-label>span {
  border-radius: 4px;
  background-color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 5px
}

.timeline-inverse>div>.timeline-item {
  box-shadow: none;
  background: #f8f9fa;
  border: 1px solid #dee2e6
}

.timeline-inverse>div>.timeline-item>.timeline-header {
  border-bottom-color: #dee2e6
}

#centralEmpresas {
  height: 100%;
  width: 300px;
  border-left: 2px solid rgb(159, 159, 159);
  background: rgba(55, 55, 55, 0.95);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2000;
  display: none;
}

#centralEmpresas .list-group div {
  background: rgb(54, 54, 54)
}

#centralEmpresas .card {
  padding: 10px 0;
  background: rgb(40, 38, 38);
  border-top: 2px solid #252323;
  width: 300px;
  border-left: 5px solid rgb(37, 115, 66);
}

#centralEmpresas .card img {
  margin: 0 auto
}

#centralEmpresas .card .card-body {
  padding: 10px 0 0 0;
}

#centralEmpresas .card .card-body .card-text {
  color: rgb(55, 129, 64)
}

#centralEmpresas .cardCompany {
  padding: 10px 0;
  background: rgb(40, 38, 38);
  border-bottom: 2px solid rgb(71, 71, 71);
  border-left: 5px solid rgb(39, 100, 193)
}

#centralEmpresas .readInput {
  padding: 0;
}
.barcontainer{
  background-color: #f8f7f7;
  position: relative;
  transform: translateY(-50%);
  top: 50%;
  margin-left: 10px;
  border-radius: 15px 15px 0 0;
  width: 15px;
  height: 100%;
  float: left;
}
.mapFilterOption.active {
  background-color: #3182ce; /* Azul */
  color: #ffffff; /* Texto branco */
}
#filtersMapContainer .filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #3182ce; /* Azul */
  color: #ffffff; /* Texto branco */
  border-radius: 9999px; /* Circular */
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Classe para exibir a bolinha com animação */
#filtersMapContainer .filter-badge.show {
  display: inline-flex;
  opacity: 1;
  transform: scale(1);
}
/* CSS para o painel */
.mapas #leftPanel {
  transition: transform 0.3s ease-in-out;
  transform: translateX(-100%);
  height: 100%; /* Ajuste para 100% da altura */
  width: 350px; /* Define a largura do painel */
}
.mapas .open-panel {
  transition: transform 0.3s ease-in-out;
  transform: translateY(0);
}

.mapas .close-panel {
  transition: transform 0.3s ease-in-out;
  transform: translateY(100%);
}

.mapas  #leftPanel.show {
  transform: translateX(0);
}

.mapas  #filterContainer {
  position: -webkit-sticky; /* Compatibilidade com navegadores mais antigos */
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: white;
}

.mapas #markerList {
  max-height: calc(100% - 100px); /* Ajusta o tamanho máximo considerando o header fixo */
  overflow-y: auto; /* Permite rolagem */
}

.mapas .hover-highlight:hover {
  border: 2px solid #3B82F6; /* Azul para hover */
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.5); /* Sombra azul */
  opacity: 1 !important;
}
.mapas .selected-vehicle {
  border: 3px solid #10B981; /* Borda verde mais espessa */
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6); /* Sombra verde para realçar */
  opacity: 1 !important;
}
.mapas .dimmed {
  opacity: 0.4;
}
#vehicleDropdown {
  background-color: #1f2937; /* Cor de fundo escuro, diferente da div principal */
  border: 1px solid #4b5563; /* Borda para diferenciar */
  color: #ffffff; /* Texto branco */
  padding: 10px;
  border-radius: 0.375rem; /* Borda arredondada */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Sombra para destacar */
}

#vehicleDropdown button {
  display: block;
  width: 100%;
  padding: 8px 12px;
  background: none;
  border: none;
  text-align: left;
  color: #ffffff;
  font-size: 0.875rem;
  cursor: pointer;
}

#vehicleDropdown button:hover {
  background-color: #374151; /* Cor de fundo ao passar o mouse */
}
/* Classe para esconder a bolinha com animação */
#filtersMapContainer .filter-badge.hide {
  opacity: 0;
  transform: scale(0);
}

.bar{
  background-color: #9BC9C7;
  position: absolute;
  bottom: 0;
  width: 100%;
  border-radius: 15px 15px 0 0;

  height: 80%;
  box-sizing: border-box;
  animation: grow 1.5s ease-out forwards;
  transform-origin: bottom;
}
.smoke-particle-blue {
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, rgba(150, 189, 227), rgb(47, 158, 117), rgba(13, 146, 128)); /* Gradiente de fogo */
  border-radius: 50%;
  opacity: 0;
  animation: fireAnimation 2s ease-out infinite;
  left: 50%; /* Centraliza horizontalmente */
  transform: translateX(-50%); /* Compensa a centralização */
}
#cubagemDisponivelLabel {
  padding: 5px 10px;
  border-radius: 0 0 8px 8px; /* Rounded bottom corners */
  text-align: center;
  transition: background-color 0.3s ease; /* Smooth transition for background color */
}
.cubagem-disponivel {
  background-color: #28a745; /* Green background for available cubage */
}
.cubagem-indisponivel {
  background-color: #dc3545; /* Red background for no available cubage */
}
.route-label {
  background-color: #3b82f6; /* Azul Tailwind */
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.route-label.bg-green-500 {
  background-color: #22c55e; /* Verde Tailwind */
}

.route-label.bg-red-500 {
  background-color: #ef4444; /* Vermelho Tailwind */
}


.pedido-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: grab;
}

.pedido-item .sequence-indicator {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.pedido-item .pedido-details {
  flex-grow: 1;
}
/* Pedido sendo arrastado */
.pedido-item.dragged {
  background-color: #ffdd57; /* Amarelo claro para destaque */
  opacity: 0.8;
  transform: scale(1.05); /* Leve aumento de tamanho */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mockup do pedido na nova posição */
.sortable-placeholder {
  background-color: #f0f0f0; /* Cor do mockup */
  border: 2px dashed #007bff; /* Borda destacada */
  height: 50px; /* Altura correspondente aos itens */
  margin-bottom: 10px;
  border-radius: 5px;
}

/* Efeito de borda ao soltar */
.pedido-item.dropped-effect {
  border: 2px solid #28a745; /* Borda verde para indicar sucesso */
  transition: border 0.5s ease;
}
.automatizacao-item {
  background-color: #3b82f6; /* Azul Tailwind */
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.play-button {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  font-weight: bold;
  transition: background-color 0.2s ease;
}
.rota-geral-info li {
  margin-bottom: 8px;
}
.parada-info .fas {
  margin-right: 8px;
}

.parada-info {
  border-top: 1px solid #ddd;
  padding-top: 8px;
  margin-top: 8px;
  font-size: 0.9rem;
}

.parada-info .pedidos-list {
  font-weight: bold;
  color: #007bff;
}

.smoke-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, rgba(255,165,0,0.8), rgba(255,69,0,0.7), rgba(255,0,0,0.5)); /* Gradiente de fogo */
  border-radius: 50%;
  opacity: 0;
  animation: fireAnimation 2s ease-out infinite;
  left: 50%; /* Centraliza horizontalmente */
  transform: translateX(-50%); /* Compensa a centralização */
}
.mapas .custom-label {
  background-color: #1E3A8A; /* Azul mais escuro */
  color: white;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 12px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}
.swal2-container {
  z-index: 99999 !important;
}

.tabelaResponsiva {

  border: 1px solid #eee;
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
}

.tabelaResponsiva thead th {

  font-size: 1em;
  color: #000;
  font-weight: 600;
}

.tabelaResponsiva tbody tr td {

  display: table-cell;
  font-weight: 400;
  text-align: left;
  position: relative;
}

.tabelaResponsiva tbody tr {

  display: table-row;
}




.tabelaResponsiva thead {

  display: table-header-group;
  font-weight: 500;
}




@media all and (max-width: 800px) {

  .tabelaResponsiva tbody tr td {

      display: block;
      text-align: left;
  }

  .tabelaResponsiva tbody tr td:before {

      content: attr(data-title);
      position: absolute;
      left: 15px;
      display: block;
      font-weight: 600;
      font-size: 1em;
  }

  .tabelaResponsiva {

      border: none;
  }

  .tabelaResponsiva thead {

      display: none;
  }

  .tabelaResponsiva tbody tr {

      display: block;
      border: 1px solid #dad6eb;
  }


}




@keyframes fireAnimation {
  0% {
    transform: translateY(0) scale(0.5);
    opacity: 1;
    filter: blur(1px);
  }
  30% {
    opacity: 0.9;
    transform: translateY(10px) scale(1.2); /* Movendo para baixo */
    filter: blur(0.5px);
  }
  60% {
    opacity: 0.7;
    transform: translateY(20px) scale(1.5); /* Movendo para baixo */
  }
  100% {
    transform: translateY(30px) scale(1.8); /* Movendo para baixo */
    opacity: 0;
    filter: blur(2px);
  }
}
@keyframes grow{
  from{
    transform: scaleY(0);
  }
}
  

@keyframes lds-facebook {
  0% {
    top: 6px;
    height: 51px;
  }
  50%, 100% {
    top: 19px;
    height: 26px;
  }
}

@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  }
  50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
