/* Estilo para el contenedor del scrollbar */
::-webkit-scrollbar {
    width: 10px !important;
    background-color: #191919 !important;
    border: 1px solid white;
    border-radius: 10px !important;
}

/* Estilo para la barra del scrollbar */
::-webkit-scrollbar-thumb {
    background-color: rgb(255, 255, 255) !important;
    border: 2px solid white !important;
    border-radius: 10px !important;

}

@keyframes crecerFlotar {
    0% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.2) translateY(-5px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

.crecerFlotar {
    animation: crecerFlotar 2s infinite;
}

.crecer {
    animation: crecer 1s infinite;
}

.saltar {
    animation: saltar 1s infinite;
}

.reducir {
    animation: reducir 1s infinite;
}

@keyframes reducir {

    0%,
    100% {
        transform: scale(0.1);
    }

    50% {
        transform: scale(0.2);
    }
}

@keyframes reducir {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }
}

@keyframes crecer {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes saltar {

    0%,
    100% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0);
    }
}

.border-15,
.border-15 video,
.border-15 img {
    border-radius: 15px !important;
}

.separador {
    border-top: 2px dashed #fff !important;
}

iframe {
    border-radius: 15px !important;
}

video {
    border-radius: 15px !important;
}

.poppins-regular,
.poppins-regular div {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    white-space: break-spaces !important;
    font-size: 13px !important;
}

.poppins-bold {
    font-family: 'Poppins', sans-serif !important;
    font-weight: bold !important;
    line-height: 1.4 !important;
    white-space: break-spaces !important;
    font-size: 22px !important;
}

@media only screen and (max-width: 600px) and (orientation: portrait) {
    .poppins-bold>div {
        font-size: 15px !important;
    }
}

@media only screen and (max-width: 1000px) and (orientation: landscape) {
    .poppins-bold>div {
        font-size: 15px !important;
        /* Add this for testing */
    }
}

.background-popup {
    background: rgba(0, 0, 0, 0.8) !important;
}

.ggskin_scrollarea_vscrollfg {
    background-color: rgb(255, 255, 255) !important;
    border-radius: 5px !important;
    width: 5px !important;
    margin: 2px;
}

.ggskin_scrollarea_vscrollbg {
    width: 10px !important;
    background-color: #191919 !important;
    border: 1px solid white;
    border-radius: 10px !important;
}

.coleccion {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(29%, 1fr));
    grid-gap: 10px;
    overflow-y: auto;
    /* Ajusta esto según sea necesario */
    padding-right: 10px;
    height: 100vh;
    /* Ajusta esto a la altura que desees */

    /* Ajusta esto según sea necesario */
}



.coleccion>div {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    /* Hace que el div sea cuadrado */
    position: relative;
    margin: 2px;
}

.coleccion>div>img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}


/* Estilos para el play */

.barra_progress {
    border: 1px solid white !important;
    border-radius: 25px !important;

}

.barra_progress div {
    border: 1px solid white;
    border-radius: 25px;
}

.container_barra_progress {
    border: 1px solid white;
    border-radius: 25px;
}