
/*<!-- =======================================================
  * Version: agisystem - v2.0.0
  * Author: agisystem
  * License: http://agisystem.com.br/
  ======================================================== -->
  */
::-webkit-scrollbar {
  width:14px;
  height: 10px;
  }
   
  /* Chrome*/
  ::-webkit-scrollbar-track {
  background:rgba(71, 85, 105, var(--tw-text-opacity));
  }
   
  /* Chrome*/
  ::-webkit-scrollbar-thumb {
  background: #f5a623;
  border:1px solid #f5a623;
  border-radius:5px
  }
 /* Firefox*/
 :root{
  scrollbar-color: #f5a623 rgb(255, 255, 255) !important;

}
.cookies-container {
  color: #c5c5c5;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  position: fixed;
  width: 100%;
  bottom: 0rem;
  z-index: 1000;
}

.cookies-content {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  background: #0000008c;
  max-width: 100%;
  border-radius: 5px;
  padding: 1rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: slideUp 0.5s forwards;
}

.select-opcao {
  font-family: inherit;
  font-size: 1.5rem;
  color: #8b8989;
}
.servicos-software {
  background-image: linear-gradient(
    24deg,#1717e5,transparent 21%),
    linear-gradient(198deg,rgba(255,193,7,.2) 11%,transparent 0),
    linear-gradient(50deg,#6610f2 5%,#6f42c1 32%,#d63384 35%,#dc3545 65%,#fd7e14 83%,#ffc107 91%);
}

.notification {
  position: fixed;
  top: 50%;
  left: -200px; /* Defina a posição inicial do aviso lateral */
  width: 200px;
  background-color: #3498db;
  color: #fff;
  padding: 20px;
  transition: left 0.5s ease-in-out;
  z-index: 9999;
}

.show {
  left: 0; /* Define a posição final do aviso lateral */
}

@keyframes slideUp {
  to {
    transform: initial;
    opacity: initial;
  }
}

.cookies-pref label {
  margin-right: 1rem;
}



@media (max-width: 500px) {
  .cookies-content {
    grid-template-columns: 1fr;
  }

}

