* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background-color 0.3s;
}

body {
  background-color: var(--grist);
  min-height: 100vh;
  font-family: var(--normal-font);
  color: var(--gris);
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 200%;
  color: var(--main-back-color);
}

h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 150%;
  color: var(--main-back-color);
  margin-bottom: 2rem;
}

h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 110%;
  color: var(--gris);
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.all_content {
  width: 100%;
  min-height: calc(100vh - 108px);
  padding: 20px;
  min-width: 650px;
}

.menu_left,
.canvas_right {
  content: " ";
  min-width: 240px;
  min-height: calc(100vh - 108px);
  padding: 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 20px;
}

.menu_left {
  min-width: 250px;
  max-width: 250px;
  width: 250px;
  height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  background-color: #fff;
  overflow: hidden;
}

.logo_cont {
  width: 100%;
  padding: 10px 0 15px 0;
  border-bottom: 2px solid var(--gris2);
}

.logo_cont img {
  width: 100%;
}

.app_name {
  padding-left: 10px;
}

.sibimss {
  padding-top: 5px;
  color: var(--main-back-color);
  font-size: 170%;
  font-weight: 500;
}

.sibimss_version {
  font-size: 100%;
  font-weight: 300;
}

.menus {
  margin-top: 3px;
  overflow-y: auto;
}

.item_block {
  margin-bottom: 1rem;
  font-size: 14px;
}

.the_last_item {
  position: absolute;
  bottom: 5rem;
}

.menus .item {
  padding-left: 8px;
  margin-top: 0.1rem;
  text-decoration: none;
}

.item_catego {
  color: var(--main-back-color);
}

.menus .item_row {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  margin-top: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
  border-radius: 5px;
}

.menus .item_row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: repeating-radial-gradient(circle at 20% 50%, rgba(0, 96, 70, 0.9) 0%, rgba(0, 150, 100, 0.8) 30%, rgba(0, 96, 70, 0.9) 60%);
  background-size: 200% 100%;
  animation: liquidFlow 2s linear infinite;
  z-index: -1;
  transition: width 1s ease;
}

@keyframes liquidFlow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

.menus .item_row:hover {
  background-color: #198754;
  border-radius: 4px;
  color: #fff;
}

.menus .item_row.active {
  color: #fff;
}

.menus .item_row.active::before {
  width: 100%;
}

.menus .item_row .material-symbols-outlined,
.menus .item_row .item {
  color: inherit;
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
} /*HASTA AQUI ES NUEVO*/

.canvas_right {
  width: calc(100% - 250px);
  padding: 30px;
  overflow-y: scroll;
  height: calc(100vh - 200px);
}

.encabezado {
  padding-bottom: 1rem;
}

.contenido_dinamico {
  margin-top: 4rem;
  content: "z";
  /* background-color:red; */
}

li {
  list-style: none;
}

/* tablas */
table {
  border-collapse: collapse;
  width: 100%;
  border-bottom: 1px solid var(--main-back-color);
}
th {
  color: #fff;
  background-color: var(--main-back-color);
  padding: 0 8px;
}
td {
  padding: 4px 8px;
  text-align: center;
}
/* tablas */

/* change pass */
.recuadro {
  width: 600px;
  padding: 30px;
}

.inicia {
  margin-top: 0.1rem;
  margin-bottom: 2rem;
}
/* change pass */

/* formas */
form {
  width: 100%;
}

form label {
  display: block;
  color: var(--main-back-color);
  margin-bottom: 10px;
}

form .form-gp {
  margin-bottom: 2rem;
}

form .last-gp {
  margin-bottom: 3rem;
}

form input {
  display: inline-block;
  width: 350px;
  height: 30px;
  padding: 0px 10px;
  font-size: 100%;
}

form input:focus {
  outline: none;
  border: 1px solid;
  border-color: var(--main-back-color);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.thebuton,
.btn-sec {
  width: 160px;
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.thebuton {
  background-color: var(--main-back-color);
  color: #fff;
  border: none;
  border: solid 1px var(--main-back-color);
}

.thebuton:hover {
  background-color: #fff;
  border: solid 1px var(--main-back-color);
  color: var(--main-back-color);
}

.btn-sec {
  background-color: #fff;
  color: var(--main-back-color);
  border: none;
  border: solid 1px var(--main-back-color);
}

.btn-sec:hover {
  font-weight: 700;
  border: 2px solid var(--main-back-color);
}

.btn-container {
  margin-top: 2rem;
}

form select {
  width: 90%;
  height: 42px;
}
/* formas */

/* modal */
dialog {
  width: 700px;
  padding: 30px 20px;
  margin-left: calc(50% - 300px);
  margin-top: calc(10vh);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 1px solid var(--main-back-color);
  border-radius: 5px;
  font-family: var(--normal-font);
  color: var(--gris);
  height: 80vh;
  overflow-y: scroll;
  z-index: 10;
}

dialog h2 {
  margin-bottom: 0.6rem;
}

dialog .spaced_up {
  margin-top: 2rem;
}

dialog input {
  width: 90%;
}
/* modal */

footer {
  height: 68px;
  background-color: var(--main-back-color);
  background-image: url("../images/bandafooter.png");
  padding: 15px;
  position: fixed;
  bottom: 0;
  width: 100%;
  color: #fff;
  text-align: right;
}

/* mensajes de aviso */
.alertMsj {
  position: absolute;
  bottom: 110px;
  right: 35px;
  width: 350px;
  padding: 17px;
  color: #fff;
  z-index: 100;
}

.alertMsj .closeMsj {
  cursor: pointer;
}

.alertMsj h1 {
  font-family: var(--normal-font);
  font-size: 1.4rem;
  color: #fff;
  flex-grow: 1;
}
.alertMsj p {
  font-family: var(--normal-font);
  font-size: 1rem;
  color: #fff;
}

.back_error {
  background-color: var(--error-text);
}

@keyframes successFlash {
  0%   { box-shadow: 0 0 0px #47fb59; }
  25%  { box-shadow: 0 0 10px 5px #47fb59; }
  50%  { box-shadow: 0 0 0px #47fb59; }
  75%  { box-shadow: 0 0 10px 5px #47fb59; }
  100% { box-shadow: 0 0 0px #47fb59; }
}

.back_success {
  background-color: #30b13d;
  animation: successFlash 3s ease-in-out;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}
/* mensajes de aviso */

.active {
  display: block;
}

.unactive {
  display: none;
}

.td_pointer {
  color: var(--main-back-color);
  cursor: pointer;
}

.td_pointer:hover {
  color: var(--soft_green);
}

/*publications*/
.pubs_container {
  height: 500px;
  /* overflow-y: scroll; */
}

.pubs_tabs {
  width: 100%;
  font-family: var(--normal-font);
  font-size: 140%;
  border-bottom: 1px solid #000;
  padding: 0;
  margin-bottom: 10px;
  text-align: center;
  background-color: #fff;
  /* background-color: red !important; */
  /* position: sticky; */
  top: 0;
}

.tabs_li {
  width: 16%;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.tab_active {
  border-bottom: 3px solid var(--special-text);
  color: white;
  background-color: var(--main-back-color);
  border-radius: 8px;
}

.tabs_li:hover {
  background-color: var(--soft_green);
  border-bottom: 3px solid var(--soft_green);
  color: white;
  border-radius: 8px;
}

.tab_active:hover {
  border-bottom: 3px solid var(--special-text);
}

.pubs_acordion {
  display: none;
  width: 100%;
  border: 1px solid #ccc;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 15px;
}

.pubs_acordion .col_25 {
  color: var(--main-back-color);
  padding-right: 15px;
}

.pubs_acordion .col_25 p {
  padding-right: 15px;
  margin-bottom: 3px;
}

.active_acordion {
  display: inline-block;
}

/* .pubs_container {
  height: 500px;
  overflow-y: scroll;
} */

.pub_title {
  background-color: #fff;
  border-bottom: none;
  border-right: none;
  border-top: none;
  border-left: none;
  cursor: pointer;
  padding: 9px 18px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 120%;
  transition: 0.3s;
}

.pub_active,
.pub_title:hover {
  color: var(--special-text);
}

.pub_title:after {
  margin-left: 10px;
  content: "\002B";
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.pub_active:after {
  content: "\2212";
}

.pub_content {
  font-family: var(--normal-font);
  color: #636363;
  font-size: 110%;
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.pub_content p {
  border-left: 2px solid #636363;
  padding-left: 10px;
  margin-left: 10px;
  line-height: 150%;
}

.pubmed {
  text-decoration: none;
  color: var(--special-text);
}

.doi {
  text-decoration: none;
  color: #636363;
}

.pub_content a:hover,
.pub_content a:active {
  color: var(--dorado);
}

.showfull_btn {
  width: 250px;
  margin-left: 18px;
  margin-top: 15px;

  height: 35px;

  font-family: var(--special-font);
  font-size: 100%;
  background-color: var(--alternative-text);
  border: 1px solid var(--main-back-color);
}

.showfull_btn:hover,
showfull_btn:active {
  background-color: var(--main-back-color);
  border: none;
  color: var(--alternative-text);
}

.showfull_btn a {
  text-decoration: none;
  color: var(--main-back-color);
}

.paper_destacado {
  width: 120px;
  background-color: var(--special-text);
  border-radius: 20px;
  font-size: 0.8rem;
  padding: 2px 10px;
  color: #fff;
}

.paper_open {
  width: 120px;
  background-color: var(--dorado);
  border-radius: 20px;
  font-size: 0.8rem;
  padding: 2px 10px;
  color: #fff;
}

/*publications*/

.auxilio {
  border-bottom: 1px solid #000;
  background-color: #e4e4e4;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.overscroll {
  overflow-y: scroll;
}

.catego_info {
  font-weight: 400;
  color: var(--normal-text);
}

.catego_info2 {
  font-weight: 400;
  font-size: 120%;
  padding-top: 2rem;
  color: var(--normal-text);
}

.modal_scroleable {
  overflow-y: scroll;
}

.modal_select label {
  margin-top: 1.6rem !important;
}

.spaced_up2 {
  margin-top: 5rem;
}

.hideen {
  display: none;
}

.showed {
  display: block;
}

.graficos {
  width: 400px;
  height: auto;
}

.noshow {
  display: none;
}

#botones {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.fila {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

select {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: white;
  font-size: 14px;
}

.btn-verde {
  padding: 8px 14px;
  background-color: #00432c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.btn-verde:hover {
  background-color: #00432c;
}

#botones .fila > select:not(:last-of-type) {
  margin-right: 30px;
}

#botones .fila > select#select-periodos-grafix {
  margin-right: 30px;
}

.btn-inline {
  padding: 8px 14px;
  background-color: white;
  color: rgba(75, 192, 192, 1);
  border-color: rgba(75, 192, 192, 1);
  border-radius: 18px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.btn-inline:hover {
  background-color: rgba(75, 192, 192, 1);
  color: white;
  border-color: rgba(75, 192, 192, 1);
}

.grafica-container {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  position: relative;
}

.grafica-container h3 {
  margin-top: 0;
  margin-bottom: 20px;
}

.grafica-container button {
  position: absolute;
  top: 20px;
  right: 20px;
}

.fila label {
  display: inline-block;
  min-width: 160px; /* o ajusta al tamaño que necesites */
  margin-right: 10px;
  font-weight: bold;
}

.fila select {
  width: auto;
  min-width: 200px; /* ajustable */
}

.fila button {
  white-space: nowrap; /* evita salto de línea en el botón */
}

/*css para los tabs de las graficas*/
.tabs-container {
  width: 100%;
}

.tabs-header {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  position: relative;
  width: 18%;
}

.tab-btn {
  margin-right: 40px;
  margin-top: -35px;

  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 20px;
}

.move-100 {
  margin-right: -55px;
}

.tab-btn:hover {
  background-color: #ddd;
  color: black;
}

.tab-btn.active {
  background-color: #00472c;
  color: white;
}

.tabs-content {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: Arial;
  font-size: 12px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.btn-download-grafica {
  margin-top: 15px;
  margin-right: 10px;
  padding: 10px 20px;
  background-color: #006455;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-download-datos {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #808080;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-filtro {
  padding: 10px 15px;
  background-color: #fcfcfc;
  border-color: var(--main-back-color);
  color: var(--main-back-color);
  border-radius: 18px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}
.btn-filtro:hover {
  background-color: var(--main-back-color);
  color: #fff;
}

.btn-filtro.active {
  background-color: var(--main-back-color);
  color: #fff;
}
/* Estilos para cada tarjeta img-infraestructura*/
.cards-container-1 {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 10px;
  padding: 10px;
}

.card-1 {
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  height: 130px;
}

.card-2 {
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  height: 110px;
}

.card-1:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 128, 0, 0.514);
}

.card-1 img {
  width: 100%;
  height: 55%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 8px 0 0;
}

.card-2 img {
  width: 100%;
  height: 75%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 8px 0 0;
}

.titulo-card-mini {
  font-size: 7px;
  color: #555;
}

.text-negritas {
  font-size: 8px;
  color: #555;
  font-weight: bold;
}

.loader2 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  color: #005c2f;
  box-sizing: border-box;
  animation: shadowRolling 2s linear infinite;
  margin: 0; /* 🔥 sin margen extra */
  left: 0; /* ❌ elimina el desplazamiento a la izquierda */
}

@keyframes shadowRolling {
  0% {
    box-shadow: 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0),
      0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  12% {
    box-shadow: 100px 0 #005c2f, 0px 0 rgba(255, 255, 255, 0),
      0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  25% {
    box-shadow: 110px 0 #005c2f, 100px 0 #005c2f, 0px 0 rgba(255, 255, 255, 0),
      0px 0 rgba(255, 255, 255, 0);
  }
  36% {
    box-shadow: 120px 0 #005c2f, 110px 0 #005c2f, 100px 0 #005c2f,
      0px 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 130px 0 #005c2f, 120px 0 #005c2f, 110px 0 #005c2f,
      100px 0 #005c2f;
  }
  62% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 130px 0 #005c2f, 120px 0 #005c2f,
      110px 0 #005c2f;
  }
  75% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0),
      130px 0 #005c2f, 120px 0 #005c2f;
  }
  87% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0),
      200px 0 rgba(255, 255, 255, 0), 130px 0 #005c2f;
  }
  100% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0),
      200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0);
  }
}

.btn-editar {
  background-color: white;
  border-radius: 15px;
  border: none;
  color: #8e8e8e;
  padding: 4px 10px;
  margin-top: 6px;
  margin-bottom: 6px;
  cursor: pointer;
  border: 1px solid #8e8e8e;
  transition: background-color 0.3s ease;
}

.btn-editar:hover {
  background-color: #8e8e8e;
  color: white;
}

.btn-sibi {
  background-color: var(--main-back-color);
  border-radius: 5px;
  border: 1px solid var(--main-back-color);
  color: white;
  margin-top: 6px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  width: 160px;
  padding: 10px;
  font-size: 1rem;
}

.btn-sibi:hover:not(:disabled) {
  background-color: rgb(1, 109, 12);
  color: white;
}

.btn-sibi:disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-eliminar-tarjetita {
  position: absolute;
  top: -13px;
  right: -12px;
  background-color: #e63946;
  border-radius: 50%;
  border: none;
  color: white;
  padding: 8px 10px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.foto_edit_infra {
  height: 420px;
  width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.btn-eliminar-tarjetita:hover {
  background-color: #cc2b36;
  animation: bounce 0.2s ease;
  transform: scale(1.1); /* más grande en hover */
}

.cajas-texto-modales {
  height: 30px;
  padding: 0px 10px;
  font-size: 100%;
  color: #006455;
  width: 100%;
  margin-bottom: 10px;
}

.tooltip-box {
  position: relative;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 280px;
}

/* Flechita hacia arriba */
.tooltip-box::before {
  content: "";
  position: absolute;
  top: -20px; /* flechita arriba */
  left: 20px; /* puedes ajustar la posición horizontal */
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #ccc transparent;
}

.tooltip-box::after {
  content: "";
  position: absolute;
  top: -9px; /* un poco menos para el fondo */
  left: 20px;
  border-width: 9px;
  border-style: solid;
  border-color: transparent transparent #f9f9f9 transparent;
}

.modal_select label.no-margin-top {
  margin-top: 0 !important;
}

.tooltip-box2 {
  position: relative;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 94%;
  margin: 0px 5px 20px 5px;
}

/* Flechita hacia arriba */
.tooltip-box2::before {
  content: "";
  position: absolute;
  top: -20px; /* flechita arriba */
  left: 75%; /* puedes ajustar la posición horizontal */
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #ccc transparent;
}

.tooltip-box2::after {
  content: "";
  position: absolute;
  top: -9px; /* un poco menos para el fondo */
  left: 20px;
  border-width: 9px;
  border-style: solid;
  border-color: transparent transparent #f9f9f9 transparent;
}

#starburst-container {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 15px;
  height: 15px;
  background: yellow;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  animation: starburst 1.2s ease-out forwards;
  opacity: 0;
}

@keyframes starburst {
  0% {
    transform: scale(0.5) translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: scale(1.5) translate(var(--x), var(--y));
    opacity: 0;
  }
}

.linea {
  border-bottom: 2px solid var(--gris2);
}

.loader-menu-modul-principal-inside {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 250px;
  color: #2e7d32;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
}

.loader-menu-modul-principal-inside .loader-ring {
  border: 5px solid #c8e6c9;
  border-top: 5px solid #2e7d32;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInEffect 0.6s ease-in-out forwards;
}

@keyframes fadeInEffect {
  to {
    opacity: 1;
  }
}