/* Estilização do loader - loading */

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Cor cinza com opacidade */
  display: none;
  /* Inicialmente oculto */
  z-index: 999999;
  /* Z-index menor do que o do loader */
}

.loader {
  --hue: 210;
  --size: 100px;
  --border: 10px;
  --speed: 1s;
  --blur: var(--border);

  width: var(--border);
  aspect-ratio: 1;
  background: white;
  border-radius: 50%;
  position: fixed;
  top: 50%;
  left: 50%;
  --y: calc((var(--size) * -0.5) + (var(--border) * 0.5));
  transform: rotate(0deg) translateY(var(--y));
  animation: spin var(--speed) infinite linear;
}

.loader::before {
  content: "";
  position: absolute;
  inset: calc(var(--border) * -0.5);
  border-radius: 50%;
  background: white;
  filter: blur(var(--blur));
  z-index: -1;
}

.loader::after {
  content: "";
  width: var(--size);
  aspect-ratio: 1;
  position: absolute;
  top: 0%;
  left: 50%;
  translate: -50% 0;
  background: conic-gradient(white,
      hsl(var(--hue), 100%, 70%),
      hsl(var(--hue), 100%, 10%),
      transparent 65%);
  border-radius: 50%;
  mask: radial-gradient(transparent calc(((var(--size) * 0.5) - var(--border)) - 1px),
      white calc((var(--size) * 0.5) - var(--border)));
}

@keyframes spin {
  to {
    transform: rotate(-360deg) translateY(var(--y));
  }
}

/* Estilização do button_style_1 */

.custom_button_1 {
  position: relative;
  padding: 10px 20px;
  border-radius: 7px;
  border: 1px solid rgb(61, 106, 255);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  /* background: #7cb1ff; */
  /* Fundo azul claro */
  color: #000;
  /* Letras pretas */
  overflow: hidden;
  box-shadow: 0 0 0 0 transparent;
  transition: all 0.2s ease-in;
}

.custom_button_1:hover {
  background: rgb(61, 106, 255);
  color: #fff;
  /* Letras brancas ao passar o mouse */
  box-shadow: 0 0 30px 5px rgba(0, 142, 236, 0.815);
  transition: all 0.2s ease-out;
}

.custom_button_1:hover::before {
  animation: sh02 0.5s linear;
}

.custom_button_1::before {
  content: '';
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  transform: skewX(-20deg);
}

@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.custom_button_1:active {
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 0.2s ease-in;
}

/* Estilização do button_home */

.button-home {
  align-items: center;
  appearance: none;
  background-color: #FCFCFD;
  border-radius: 4px;
  border-width: 0;
  box-shadow: rgba(45, 35, 66, 0.2) 0 2px 4px, rgba(45, 35, 66, 0.15) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
  box-sizing: border-box;
  color: #36395A;
  cursor: pointer;
  display: inline-flex;
  font-family: "JetBrains Mono", monospace;
  height: 40px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  /* padding-left: 16px;
  padding-right: 16px; */
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow .15s, transform .15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 15px;
}

.button-home:focus {
  box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.button-home:hover {
  box-shadow: rgba(45, 35, 66, 0.3) 0 4px 8px, rgba(45, 35, 66, 0.2) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
  transform: translateY(-2px);
}

.button-home:active {
  box-shadow: #D6D6E7 0 3px 7px inset;
  transform: translateY(2px);
}

/* BUTTON_DOWNLOAD_1 */

.button_download_1 {
  position: relative;
  width: 150px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 1px solid #17795E;
  background-color: #209978;
  overflow: hidden;
}

.button_download_1,
.button_download_1__icon,
.button_download_1__text {
  transition: all 0.3s;
}

.button_download_1 .button_download_1__text {
  transform: translateX(22px);
  color: #fff;
  font-weight: 600;
}

.button_download_1 .button_download_1__icon {
  position: absolute;
  transform: translateX(109px);
  height: 100%;
  width: 39px;
  background-color: #17795E;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button_download_1 .svg {
  width: 20px;
  fill: #fff;
}

.button_download_1:hover {
  background: #17795E;
}

.button_download_1:hover .button_download_1__text {
  color: transparent;
}

.button_download_1:hover .button_download_1__icon {
  width: 148px;
  transform: translateX(0);
}

.button_download_1:active .button_download_1__icon {
  background-color: #146c54;
}

.button_download_1:active {
  border: 1px solid #146c54;
}

/* Estilização do card_notification */

.notification {
  opacity: 95%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  position: relative;
  min-height: 8rem;
  background: #1a1a1d;
  border-radius: 1.5rem;
  overflow: hidden;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 18px;
  --gradient: linear-gradient(to bottom, #2271ff, #2ea7ff, #5cc5ff);
  --color: #32a6ff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}


.notification:before {
  position: absolute;
  content: "";
  inset: 0.125rem;
  border-radius: 1.25rem;
  background: #141418;
  z-index: 2;
}

.notification:after {
  position: absolute;
  content: "";
  width: 0.25rem;
  inset: 0.75rem auto 0.75rem 0.625rem;
  border-radius: 0.125rem;
  background: var(--gradient);
  transition: transform 300ms ease;
  z-index: 4;
}

.notification:hover:after {
  transform: translateX(0.25rem);
}

.notititle {
  color: var(--color);
  padding: 0.75rem 0.5rem 0.5rem 1.5rem;
  font-weight: 600;
  font-size: 1.2rem;
  transition: transform 300ms ease;
  z-index: 5;
}

.notification:hover .notititle {
  transform: translateX(0.25rem);
}

.notibody {
  color: #b0b0b4;
  padding: 0 1.5rem;
  transition: transform 300ms ease;
  z-index: 5;
}

.notification:hover .notibody {
  transform: translateX(0.5rem);
}

.notiglow,
.notiborderglow {
  position: absolute;
  width: 22rem;
  height: 22rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle closest-side at center, white, transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

.notiglow {
  z-index: 3;
}

.notiborderglow {
  z-index: 1;
}

.notification:hover .notiglow {
  opacity: 0.15;
}

.notification:hover .notiborderglow {
  opacity: 0.15;
}

.note {
  color: var(--color);
  position: fixed;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 1rem;
  width: 75%;
}


/* Estilização do card */

.card {
  /* background-color: #f2f2f2; */
  background-color: #eeeeee;
  /* Fundo cinza claro */
  border: none;
  border-radius: 1.5rem;
}

.card-header {
  background-color: #1a1a1d;
  border-bottom: none;
  border-top-left-radius: 1.5rem;
  /* Adicionando bordas arredondadas ao cabeçalho */
  border-top-right-radius: 1.5rem;
  padding: 1rem 1.5rem;
  /* Espaçamento interno */
}

/* Estilização da tabela */
.table {
  border-collapse: collapse;
  width: 100%;
}

.table th,
.table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

/* Estilos personalizados para o Select2 */
.select2-container--default .select2-selection--multiple {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px;
  width: 300px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  margin-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: white;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Input DashBoard usuario */

.input_custom1 {
  width: 100%;
  /* max-width: 220px; */
  height: 45px;
  padding: 12px;
  border-radius: 12px;
  border: 1.5px solid lightgrey;
  outline: none;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0px 0px 20px -18px;
}

.input_custom1:hover {
  border: 2px solid lightgrey;
  box-shadow: 0px 0px 20px -17px;
}

.input_custom1:active {
  transform: scale(0.95);
}

.input_custom1:focus {
  border: 2px solid rgb(57, 57, 213);
}