@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --primary-light: #8abdff;
    --primary: #6d5dfc;
    --primary-dark: #5b0eeb;
    --white: #FFFFFF;
    --greyLight-1: #E4EBF5;
    --greyLight-2: #c8d0e7;
    --greyLight-3: #bec8e4;
    --greyDark: #9baacf;
  }
  
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
  }

  body {
    background-color: #E4EBF5;
    /* Pocisión footer */
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* imagen header */
    background-image: url('/ruta/a/tu/imagen/header.jpg');
    background-size: cover; 
    background-repeat: no-repeat; 
    background-attachment: fixed; 
  }

  main {
    flex: 1;
    overflow-y: auto;
}
/* Header */

.navbar {
    background-color: #b1b9ff; 
    color: #333; 
    max-width: 100%; 
}

.gestion-tarjetas {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    display: flex;
    flex-grow: 1;
    justify-content: center; 
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem; 
    color: #423e3e; 
}

.navbar .navbar-nav .nav-link {
    color: #ffffff;
    transition: color 0.3s;
    background-color: rgb(0 0 0 / 49%);
    border-radius: 12px;
}

.navbar .navbar-nav .nav-link:hover {
    color: #000000; 
}

.language-selector {
    margin-right: 10px; 
}

.language-flag {
    height: 30px;
    margin-right: 10px; 
}

.Btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: rgb(255, 65, 65);
  }
  
  /* plus sign */
  .sign {
    width: 100%;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .sign svg {
    width: 17px;
  }
  
  .sign svg path {
    fill: white;
  }
  /* text */
  .text-logout {
    position: absolute;
    right: 0%;
    width: auto;
    opacity: 0;
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition-duration: .3s;
  }
  /* hover effect on button width */
  .Btn:hover {
    width: 160px;
    border-radius: 40px;
    transition-duration: .3s;
  }
  
  .Btn:hover .sign {
    width: 30%;
    transition-duration: .3s;
    padding-left: 5px;
  }
  /* hover effect button's text */
  .Btn:hover .text-logout {
    opacity: 1;
    width: 70%;
    transition-duration: .3s;
    padding-right: 10px;
  }
  /* button click effect*/
  .Btn:active {
    transform: translate(2px ,2px);
  }

@media (max-width: 992px) {
    .navbar-collapse {
        background-color: #343a40; 
    }
}

 .mt-4 {
    padding-top: 3%;
}

.form-group{
    width: 100%;
}
.left-box {
    position: relative;
    width: 40%;
    left: 60%;
}

.right-box {
    bottom: 45px;
    position: relative;
    width: 40%;
}

.right-box-edit {
    bottom: 70px;
    position: relative;
    width: 40%;
}


/* prueba header */

.custom-shape-divider-top-1715705231 {
    position: absolute;
    top: 62px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1715705231 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 59px;
}

.custom-shape-divider-top-1715705231 .shape-fill {
    fill: #b1b9ff;
}

@media screen and (max-width: 1300px) {
    .custom-shape-divider-top-1715705231
 {
    top: 10%;
 }
}

@media screen and (max-width: 732px) {
    .custom-shape-divider-top-1715705231
 {
    display: none;
 }
}
/* Agrega estilos  */

.button {
    position: relative;
    padding-top: 0%;
}


@media(max-width:632px){
.left-box {
    left: 0%;
    bottom: 0px;
    position: none;
    width: 100%;
    }
}
@media(max-width:632px){
.right-box {
    bottom: 0px;
    position: none;
    width: 100%;
    }
}
@media(max-width:632px){
.form-group{
    margin: 0px;  
    float: none;
    width: 100%;
    }
}

@media(max-width:632px){
.button{
    position: relative;
    padding-top: 5%;
    }
}

/* Traductor */

.language-flag {
    cursor: pointer;
    height: 30px;
    width: 30px;
    margin-right: 10px; /* Ajusta el margen según tu diseño */
}

/* Create nfc-cards */
.mb-4 {
    font-weight: bold;
    color: #272727;
}
.form {
    grid-column: 3/4;
    grid-row: 3/4;
  }

      /* Blue */
  .form__input {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 1rem;
    font-size: 1rem;
    padding-left: 1.4rem;
    box-shadow: inset 0.2rem 0.2rem 0.5rem var(--greyLight-2), inset -0.2rem -0.2rem 0.5rem var(--white);
    background: none;
    font-family: inherit;
    color: #000;
  }
  .form__input::-moz-placeholder {
    color: #535353;
  }
  .form__input:-ms-input-placeholder {
    color: #535353;
  }
  .form__input::placeholder {
    color: #535353;
  }
  .form__input:focus {
    outline: none;
    box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
  }
      /* white */
      .form__input-white {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 1rem;
    font-size: 1rem;
    padding-left: 1.4rem;
    box-shadow: inset 0.2rem 0.2rem 0.5rem var(--greyLight-2), inset -0.2rem -0.2rem 10.5rem var(--white);
    background: none;
    font-family: inherit;
    color: #000;
  }
  .form__input-white::-moz-placeholder {
    color: #535353;
  }
  .form__input-white:-ms-input-placeholder {
    color: #535353;
  }
  .form__input-white::placeholder {
    color: #535353;
  }
  .form__input-white:focus {
    outline: none;
    box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
  }
        /* Select */

  .custom-select {
    box-shadow: inset 0.2rem 0.2rem 0.5rem var(--greyLight-2), inset -0.2rem -0.2rem 10.5rem var(--white);
    background: none;
    width: 95%;
    height: 30px;
    border: 1px solid var(--greyLight-2); /* Añadir borde */
    border-radius: 1rem;
    display: inline-block; /* Asegura que el botón tenga un tamaño adecuado */
    text-align: left; /* Alinear el texto a la izquierda */
    position: relative; /* Para el icono del dropdown */
    padding-right: 30px; /* Espacio para el icono del dropdown */
    cursor: pointer; /* Añadir cursor pointer */
  }  
  .custom-select::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: cover;
    pointer-events: none;
    border-top: none;
    border-right: .3em none;
    border-bottom: none;
    border-left: none;
  }
  .dropdown-menu {
    position: absolute;
    top: calc(100% + 2px); /* Cambia este valor según sea necesario para ajustar la posición del menú desplegable */
    left: 0;
    z-index: 1000; /* Asegura que el menú esté por encima de otros elementos */
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0px 70px 5px 20px;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #d3d3f7fc;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
  }
  .dropdown-menu li {
    padding: 5px 15px; /* Espaciado entre los elementos */
  }
  .dropdown-menu input[type="checkbox"] {
    margin-right: 10px;
  }
  .dropdown-menu label {
    display: inline-block; /* Mantener la alineación de los elementos */
    margin-bottom: 0; /* Quitar margen inferior */
  }
  .dropdown-menu label:hover {
    cursor: pointer;
  }
  .dropdown-menu li:hover {
    background-color: #d3d3f7fc; /* Cambiar color de fondo al pasar el mouse */
    border-radius: 0.25rem;
  }
  .dropdown-menu.show {
    display: block;
  }

  
/* Footer */
footer {
    background-color: #b1b9ff;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    border-radius: 10px 10px 0px 0px;
}

.text {
    color: #000;
    font-weight: 700;
}

/* Dashboard */

.text-page {
    color: white;
    text-align: center;
    text-shadow: 10px 10px 16px rgb(0 0 0 / 97%);
    margin: 20px 0 0 0;
}

.page-index {
    margin: 40px 0 0 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow:  0 8px 16px rgb(0 0 0 / 72%);
}

.img-index {
    width: 65%; 
    margin: 0 0 0 40px;
}

.p-index {
    margin-top: 40px;
    margin-bottom: 3rem;
}

@media (min-width: 1600px) {
    .text-page {
        margin: 70px 0 0 0;
    }
}

@media (max-width: 768px) {
    .page-index {
        flex-direction: column-reverse; 
        margin: 50px 25px 60px 0px;
    }

    .page-index > div {
        width: 100%; 
        margin: 0; 
        text-align: center;
    }

    .page-index img {
        width: 65%;
        margin: 0 auto 20px auto; 
    }

    .text-page {
        font-size: 30px;
        margin: 0 5% 0 0;
    }
}

/* Boton Dashboard */

.btn1 {
    width: 10rem;
    height: 2.6rem;
    border-radius: 1rem;
    box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .btn1 p {
    font-size: 1.2rem;
    margin: 0px;
  }
  
  .btn__primary {
    grid-column: 1/2;
    grid-row: 4/5;
    background: var(--primary);
    box-shadow: inset 0.2rem 0.2rem 1rem var(--primary-light), inset -0.2rem -0.2rem 1rem var(--primary-dark), 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
    color: var(--greyLight-1);
  }
  .btn__primary:hover {
    color: var(--white);
  }
  .btn__primary:active {
    box-shadow: inset 0.2rem 0.2rem 1rem var(--primary-dark), inset -0.2rem -0.2rem 1rem var(--primary-light);
  }

  .btn1 a {
    text-decoration: none;
    color: white;
  }

/* Eventos */

.card-event {
    text-align: center;
    font-weight: 600;
    font-size: 25px;
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    margin-bottom: 0;
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
  
.card-event:first-child {
    border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.custom-box {
    box-shadow: 0 8px 16px rgb(0 0 0 / 72%);
    padding: 0px;
    margin: 0px;
    border-radius: 10px;
}

.form-name{
    width: 90%;
}
.name-box {
    top: 10px;
    position: relative;
    width: 40%;
    left: 0%;
}

.form-date{
    width: 90%;
}
.date-box {
    top: 20px;
    position: relative;
    width: 40%;
    left: 0%;
}

.container .custom-event {
    margin: 10px;
}

/* evento */


.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select {
  box-shadow: inset 0.2rem 0.2rem 0.5rem var(--greyLight-2), inset -0.2rem -0.2rem 10.5rem var(--white);
  background: none;
  width: 95%;
  height: 30px;
  border: 1px solid var(--greyLight-2);
  border-radius: 1rem;
  text-align: left;
  padding: 5px 30px 5px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.custom-select::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-size: cover;
  pointer-events: none;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 1000;
  display: none;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background-color: #d3d3f7fc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  padding: 10px;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu input[type="checkbox"] {
  margin-right: 10px;
}

.dropdown-menu label {
  cursor: pointer;
}

.dropdown-menu div:hover {
  background-color: #e0e0e0;
  border-radius: 0.25rem;
}

/* Botones eventos  */
/* file */
.btnf {
    width: 5rem;
    height: 2.4rem;
    border-radius: 1rem;
    box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .btn__fil {
    grid-column: 1/2;
    grid-row: 4/5;
    background: #0050ff;
    box-shadow: inset 0.2rem 0.2rem 1rem var(--primary-light), inset -0.2rem -0.2rem 1rem #0050ff, 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
    color: var(--greyLight-1);
  }
  .btn__fil:hover {
    color: var(--white);
  }
  .btn__fil:active {
    box-shadow: inset 0.2rem 0.2rem 1rem var(--primary-dark), inset -0.2rem -0.2rem 1rem var(--primary-light);
  }
/* Apli */
  .btnb {
    outline: none;
    border-color: #d6e3ffa1;
    width: 6rem;
    height: 2.6rem;
    border-radius: 1rem;
    box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .btn__botton {
    grid-column: 1/2;
    grid-row: 4/5;
    background: #0050ff;
    box-shadow: inset 0.2rem 0.2rem 1rem var(--primary-light), inset -0.2rem -0.2rem 1rem #0050ff, 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
    color: var(--greyLight-1);
    position: relative;
    top: 40px;
  }
  .btn__botton:hover {
    color: var(--white);
  }
  .btn__botton:active {
    box-shadow: inset 0.2rem 0.2rem 1rem var(--primary-dark), inset -0.2rem -0.2rem 1rem var(--primary-light);
  }
  .btnb a {
    text-decoration: none;
    color: white;
  }
  .btnb p {
    font-size: 1.2rem;
    margin: 0px;
  }

/* clear */
  .btnc {
    outline: none;
    border-color: #d6e3ffa1;
    width: 7rem;
    bottom: 5px;
    height: 2.9rem;
    border-radius: 1rem;
    box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .btn__clear {
    grid-column: 1/2;
    grid-row: 4/5;
    background: #0050ff;
    box-shadow: inset 0.2rem 0.2rem 1rem var(--primary-light), inset -0.2rem -0.2rem 1rem #0050ff, 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
    color: var(--greyLight-1);
    position: relative;
    left: 15%;
  }
  .btn__clear:hover {
    color: var(--white);
  }
  .btn__clear:active {
    box-shadow: inset 0.2rem 0.2rem 1rem var(--primary-dark), inset -0.2rem -0.2rem 1rem var(--primary-light);
  }
  .btnc a {
    text-decoration: none;
    color: white;
  }
  .btnc p {
    font-size: 1rem;
    margin: 0px;
  }

  @media (max-width: 673px){
    .btn__clear {
        left: 40%;
    }
  }
  @media (min-width: 1600px){
    .btn__clear {
        left: 12%;
    }
  }

/* create */
.btnr {
    outline: none;
    border-color: #d6e3ffa1;
    width: 10rem;
    bottom: 5px;
    height: 2.9rem;
    border-radius: 1rem;
    box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .btn__create {
    grid-column: 1/2;
    grid-row: 4/5;
    background: #0050ff;
    box-shadow: inset 0.2rem 0.2rem 1rem var(--primary-light), inset -0.2rem -0.2rem 1rem #0050ff, 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
    color: var(--greyLight-1);
    position: relative;
  }
  .btn__create:hover {
    color: var(--white);
  }
  .btn__creater:active {
    box-shadow: inset 0.2rem 0.2rem 1rem var(--primary-dark), inset -0.2rem -0.2rem 1rem var(--primary-light);
  }
  .btnr a {
    text-decoration: none;
    color: white;
  }
  .btnr p {
    font-size: 1rem;
    margin: 0px;
  }

  /* View card */

 .container {
    width: 90%;
    margin: 0 auto;
}

.profile-header {
    display: flex;
    align-items: center;
}

.profile-header img {
    width: 20%;
    max-width: 100px;
    position: absolute;
    top: 25%;
    left: 72%;
}

.profile-picture {
    width: 30%;
    max-width: 200px; 
}

.profile-info {
    display: flex;
    flex-wrap: wrap;
}

.column {
    width: 50%;
    padding: 0 10px;
    box-sizing: border-box;
}

.profile-header h1 {
    margin-right: 10%;
}

.profile-info p {
    margin-bottom: 10px;

    font-size: 16px;
}

.title {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 10px; 
}

.custom-container {
    box-shadow: 0 8px 16px rgb(0 0 0 / 72%);
    padding: 0px;
    margin: 0px;
    border-radius: 10px;
    margin: 5% 0px 0px 0px;
    padding: 0px 0px 25px 0px;
}

@media (max-width: 1300px) {
    .profile-header img {
        top: 35%;
        left: 80%;
    }
}

/* login */



/* Vista */

/* botones ver e imprimir */

.btn-custom {
  outline: none;
  border-color: #434a5a;
  border-radius: 1rem;
  box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem #000;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-custom-color {
  grid-column: 1/2;
  grid-row: 4/5;
  background: #434a5a;
  box-shadow: inset 0.2rem 0.2rem 1rem #34383d, inset -0.2rem -0.2rem 1rem #434a5a, 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
  color: var(--greyLight-1);
  position: relative;
}
.btn-custom-color:hover {
  color: white;
  background-color: black;
}
.btn-custom-color:active {
  box-shadow: inset 0.2rem 0.2rem 1rem var(--primary-dark), inset -0.2rem -0.2rem 1rem var(--primary-light);
}
.btn-custom a {
  text-decoration: none;
  color: white;
}
.btn-custom p {
  font-size: 1rem;
  margin: 0px;
}



/* boton crear */
.btnadd {
    outline: none;
    border-color: #d6e3ffa1;
    width: 10rem;
    bottom: 5px;
    height: 2.4rem;
    border-radius: 1rem;
    box-shadow: 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .btn__add {
    grid-column: 1/2;
    grid-row: 4/5;
    background: #0050ff;
    box-shadow: inset 0.2rem 0.2rem 1rem var(--primary-light), inset -0.2rem -0.2rem 1rem #0050ff, 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
    color: var(--greyLight-1);
    position: relative;
  }
  .btn__add:hover {
    color: var(--white);
  }
  .btn__add:active {
    box-shadow: inset 0.2rem 0.2rem 1rem var(--primary-dark), inset -0.2rem -0.2rem 1rem var(--primary-light);
  }
  .btnadd a {
    text-decoration: none;
    color: white;
  }
  .btnadd p {
    font-size: 1rem;
    margin: 0px;
  }

/* boton excel */
.button-view {
    --width: 130px;
    --height: 35px;
    --tooltip-height: 37px;
    --tooltip-width: 130px;
    --gap-between-tooltip-to-button: 18px;
    --button-color: #1163ff;
    --tooltip-color: #fff;
    width: var(--width);
    height: var(--height);
    background: #0050ff;
    box-shadow: inset 0.2rem 0.2rem 1rem var(--primary-light), inset -0.2rem -0.2rem 1rem #0050ff, 0.3rem 0.3rem 0.6rem var(--greyLight-2), -0.2rem -0.2rem 0.5rem var(--white);
    position: absolute;
    text-align: center;
    border-radius: 1em;
    font-family: "Arial";
    transition: background 0.3s;
    left: 25%;
    top:  31.8%;
  }

  @media (max-width: 732px){
    .button-view  {
        left: 55%;
        top: 20.8%; 
    }
  }

  @media (min-width: 1600px){
    .button-view  {
        top: 21.8%; 
        left: 30%;
    }
  }
  
  .button-view::before {
    position: absolute;
    content: attr(data-tooltip);
    width: var(--tooltip-width);
    height: var(--tooltip-height);
    background-color: var(--tooltip-color);
    font-size: 0.9rem;
    color: #111;
    border-radius: .25em;
    line-height: var(--tooltip-height);
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) + 10px);
    left: calc(50% - var(--tooltip-width) / 2);
  }
  
  .button-view::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: var(--tooltip-color);
    left: calc(50% - 10px);
    bottom: calc(100% + var(--gap-between-tooltip-to-button) - 10px);
  }
  
  .button-view::after,.button-view::before {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
  }
  
  .text-view {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .button-wrapper-view,.text-view,.icon-view {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    color: #fff;
  }
  
  .text-view {
    top: 0
  }
  
  .text-view,.icon-view {
    transition: top 0.5s;
  }
  
  .icon-view {
    color: #fff;
    top: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon-view svg {
    width: 24px;
    height: 24px;
  }
  
  .button-view:hover {
    background: #129e19;
  }
  
  .button-view:hover .text-view {
    top: -100%;
  }
  
  .button-view:hover .icon-view {
    top: 0;
  }
  
  .button-view:hover:before,.button-view:hover:after {
    opacity: 1;
    visibility: visible;
  }
  
  .button:hover:after {
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) - 20px);
  }
  
  .button-view:hover:before {
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button));
  }
  
  /* Preloader */
.blobs {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white; 
  transition: opacity 0.5s ease-out;
  z-index: 9999; 
}

.blobs svg {
  position: fixed;
}

.blobs .blob-center {
  transform-style: preserve-3d;
  position: absolute;
  background: #7433FF;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform-origin: left top;
  transform: scale(0.9) translate(-50%, -50%);
  animation: blob-grow_2 linear 3.4s infinite;
  border-radius: 50%;
  box-shadow: 0 -10px 40px -5px #1d1d1d;
}

.blob {
  position: absolute;
  background: #7433FF;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  animation: blobs_2 ease-out 3.4s infinite;
  transform: scale(0.9) translate(-50%, -50%);
  transform-origin: center top;
  opacity: 0;
}



.blob:nth-child(1) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.blob:nth-child(2) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.blob:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
  
  .blob:nth-child(4) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
  }
  
  .blob:nth-child(5) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
  
  @keyframes blobs_2 {
    0% {
      opacity: 0;
      transform: scale(0) translate(calc(-330px - 50%), -50%);
    }
  
    1% {
      opacity: 1;
    }
  
    35%, 65% {
      opacity: 1;
      transform: scale(0.9) translate(-50%, -50%);
    }
  
    99% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
      transform: scale(0) translate(calc(330px - 50%), -50%);
    }
  }
  
  @keyframes blob-grow_2 {
    0%, 39% {
      transform: scale(0) translate(-50%, -50%);
    }
  
    40%, 42% {
      transform: scale(1, 0.9) translate(-50%, -50%);
    }
  
    43%, 44% {
      transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
  
    45%, 46% {
      transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
  
    47%, 48% {
      transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
  
    52% {
      transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
  
    54% {
      transform: scale(1.7, 1.6) translate(-50%, -50%);
    }
  
    58% {
      transform: scale(1.8, 1.7) translate(-50%, -50%);
    }
  
    68%, 70% {
      transform: scale(1.7, 1.5) translate(-50%, -50%);
    }
  
    78% {
      transform: scale(1.6, 1.4) translate(-50%, -50%);
    }
  
    80%, 81% {
      transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
  
    82%, 83% {
      transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
  
    84%, 85% {
      transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
  
    86%, 87% {
      transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
  
    90%, 91% {
      transform: scale(1, 0.9) translate(-50%, -50%);
    }
  
    92%, 100% {
      transform: scale(0) translate(-50%, -50%);
    }
  }

  .pagination {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 1% 0px 1% 0px 
}

.pagination li {
    margin: 0 5px;
}

.pagination a,
.pagination span {
    display: block;
    padding: 10px 15px;
    color: #00047f;
    text-decoration: none;
    border: 1px solid #dee2e6;
    border-radius: 5px; 
    background-color: #fff;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination span:hover {
    box-shadow: 0 0 10px rgba(17, 0, 128, 0.279); 
    color: #fff;
    background-color: #5f6489;
}

.pagination .active span {
    color: #292929;
    background-color: #b1b9ff; 
    border-color: #b1b9ff;
}

.pagination .disabled span {
    color: #6c757d;
    pointer-events: none;
}

.pagination .disabled {
  cursor: not-allowed;
}

.actions-container {
  display: flex;
  justify-content: space-between; /* Coloca un elemento en cada extremo */
  align-items: center; /* Alinea los elementos verticalmente en el centro */
  margin-bottom: 10px; /* Espacio debajo del contenedor */
}

.search-form {
  margin-right: 20px; /* Espacio entre el formulario de búsqueda y el botón */
}

.search-input {
  width: 200px; /* Ancho específico para el campo de búsqueda */
}

