/* fondo de la Hoja */
.bg-image {
    background-image: url(https://www.quillota.cl/udel/wp-content/uploads/2022/08/166815125_10216182570591803_6421648707093115459_n_0000_IMG_20201111_191048.jpg);
}
/* Animacipon de Fondo */
.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
  .circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;  
}
.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}
 
 
.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}
 
.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}
 
.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}
 
.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}
 
.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}
 
.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}
 
.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}
 
.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}
 
.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}
  @keyframes animate {
 
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
 
    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
 
}

/* Estilos para el scrollbar */
#modal .overflow-y-auto::-webkit-scrollbar {
    width: 2px; /* Ancho del scrollbar */
}
  
#modal .overflow-y-auto::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3); /* Color del scrollbar con opacidad */
    border-radius: 4px; /* Radio de borde del scrollbar */
}
  

/* Estilos del Botón Flotante */
.fab-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    user-select: none;
    position: absolute;
    bottom: 30px;
    right: 30px;
  }
  .fab-container:hover {
    height: 100%;
  }
  .fab-container:hover .sub-button:nth-child(2) {
    transform: translateY(-80px);
  }
  .fab-container:hover .sub-button:nth-child(3) {
    transform: translateY(-140px);
  }
  .fab-container:hover .sub-button:nth-child(4) {
    transform: translateY(-200px);
  }
  .fab-container:hover .sub-button:nth-child(5) {
    transform: translateY(-260px);
  }
  .fab-container:hover .sub-button:nth-child(6) {
    transform: translateY(-320px);
  }
  .fab-container .fab {
    position: relative;
    height: 50px;
    width: 50px;
    background-color: #2563EB;
    border-radius: 50%;
    z-index: 2;
  }
  .fab-container .fab .fab-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    border-radius: 50%;
  }
  .fab-container .sub-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: #2563EB;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  .fab-container .sub-button:hover {
    cursor: pointer;
  }
  
@media (max-width: 768px) {
    /* Estilos del Botón Flotante */
    .fab-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        user-select: none;
        position: absolute;
        bottom: 10px;
        right: 15px;
    }
    .fab-container:hover {
        height: 100%;
    }
    .fab-container:hover .sub-button:nth-child(2) {
        transform: translateX(-50px);
    }
    .fab-container:hover .sub-button:nth-child(3) {
        transform: translateX(-100px);
    }
    .fab-container:hover .sub-button:nth-child(6) {
        transform: translateX(-300px);
    }
    .fab-container .fab {
        position: relative;
        height: 35px;
        width: 35px;
        background-color: #2563EB;
        border-radius: 50%;
        z-index: 2;
    }
    .fab-container .fab .fab-content {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
        border-radius: 50%;
    }
    .fab-container .sub-button {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 35px;
        width: 35px;
        background-color: #2563EB;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    .fab-container .sub-button:hover {
        cursor: pointer;
    }
    .fab-container .fab-content svg {
        width: 24px; /* Cambia el tamaño del SVG a h5 */
        height: 24px;
    }

    .fab-container .sub-button svg {
        width: 16px; /* Cambia el tamaño del SVG a h4 */
        height: 16px;
    }

}
