/* =============================================
   1. ESTILO GENERAL Y CONTENEDOR
   ============================================= */
body {
    background-color: #bbb;
    margin: 0;
    padding: 0;
}

/* TRUCO ANDROID: ELIMINAR DESTELLO AZUL EN CLICS */
* {
    -webkit-tap-highlight-color: transparent !important;
}

.rg-gallery { 
    max-width: 1024px; 
    margin: 0 auto; 
    display: flex !important; 
    flex-direction: column !important; 
    gap: 0; 
    clear: both;
    user-select: none;
    font-family: myFirstFont, sans-serif;
    padding-top: 6px;
}

/* =============================================
   2. CARRUSEL DE MINIATURAS (SUPERIOR)
   ============================================= */
.thumbnail-slider-container, .main-display { 
    width: 100% !important; 
    box-sizing: border-box; 
    margin: 0 auto;
}

.thumbnail-slider-container { 
    display: flex !important; 
    align-items: center; 
    background: #000; 
    padding: 10px 5px 0 5px; 
    border-radius: 10px 10px 0 0; 
    z-index: 10;
    position: relative;
}

.thumbs-wrapper { 
    display: flex !important; 
    flex-direction: row !important; 
    overflow-x: auto; 
    gap: 10px; 
    flex: 1; 
    scrollbar-width: none;
    padding: 5px 0; 
    -webkit-overflow-scrolling: touch; 
}

.thumbs-wrapper::-webkit-scrollbar { display: none; }

.thumb-node { 
    flex: 0 0 65px; 
    cursor: pointer; 
    text-align: center;
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important;
    gap: 4px; 
    opacity: 0.7 !important; 
    transition: all 0.3s ease;
}

.thumb-node:hover, .thumb-node.active { opacity: 1 !important; }

.thumb-node.active .img-frame { 
    border-color: #f44 !important; 
    border-radius: 6px; 
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.7); 
}

.img-frame { 
    width: 100%;
    height: 65px; 
    border: 2px solid #444; 
    border-radius: 4px; 
    overflow: hidden; 
    background: #111; 
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.thumb-node img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* CONTENEDOR DE STATS */
.stats-mini {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px;
    width: 100%;
    align-items: center;
}

.vistas-mini, .likes-mini { 
    display: flex !important; 
    align-items: center;
    justify-content: center;
    gap: 4px; 
    font-size: 11px; 
    font-family: sans-serif;
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.15); 
    border-radius: 4px; 
    padding: 2px 0;
    width: 100%; 
    white-space: nowrap;
    box-sizing: border-box;
    user-select: none !important; 
    pointer-events: auto !important; 
    cursor: default !important; 
}

.vistas-mini *, .likes-mini * {
    cursor: default !important;
}

.vistas-mini { color: #f2e389; }
.likes-mini { color: #ff3366; }

/* FLECHAS DEL SLIDER SUPERIOR */
.slider-arrow { 
    background: transparent !important; 
    border: none !important;             
    color: #ff4444 !important;          
    font-size: 24px;                    
    cursor: pointer; 
    padding: 0 10px;                    
    display: flex !important;
    align-items: center;
    justify-content: center;
    align-self: center;                 
    transition: color 0.3s ease; 
    z-index: 20;
}

.slider-arrow:hover {
    color: #ffffff !important;          
}

/* =============================================
   3. FOTO GRANDE Y ZONAS LATERALES (CENTRAL)
   ============================================= */
.main-display { 
    background: #000; 
    border-radius: 0 0 15px 15px; 
    overflow: hidden; 
    border: 1px solid #000; 
    position: relative;
    z-index: 5;
    box-shadow: 0 3px 3px rgba(0,0,0,0.5);
}

.big-img-container { 
    width: 100%; 
    display: flex !important; 
    align-items: stretch !important; 
    justify-content: center !important; 
    background: #050505; 
    padding: 0 !important; 
    box-sizing: border-box;
    position: relative;
}

.nav-zone {
    flex: 0 0 40px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.nav-arrow {
    background: none;
    border: none;
    color: #d44;
    font-size: 28px;
    transition: 0.3s;
    pointer-events: none; 
}

.nav-zone:hover .nav-arrow { color: #fff; transform: scale(1.2); }

#foto-principal { 
    max-width: calc(100% - 80px); 
    height: auto !important; 
    display: block;
    border-radius: 8px;    
    transition: opacity 0.3s ease; 
    margin: 10px 0; 
}

.main-caption { 
    padding: 0 0 14px 0; 
    color: #fff; 
    text-align: center; 
    font-family: Tahoma, Arial, sans-serif; 
    font-size : clamp(0.9rem, 2.5vw, 1.4rem); 
    background: #000; 
    letter-spacing: 2px;
    border-top: 1px solid #111;
}

/* =============================================
   UNIFICACIÓN Y CONTROL DE BOTONES SLIDESHOW (PLAY)
   ============================================= */
.btn-slideshow-play, #btn-central-slideshow, #btn-back-slideshow {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(2px) !important;
    -webkit-backdrop-filter: blur(2px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 50px;
    height: 50px;
    font-size: 24px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    user-select: none !important;
    pointer-events: auto !important;
    transition: opacity 0.3s ease, background 0.3s, transform 0.2s, visibility 0.3s ease !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.6);
    outline: none !important;
    padding: 0 !important;
}

#btn-central-slideshow:hover, #btn-back-slideshow:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    transform: scale(1.05);
}

#btn-central-slideshow:active, #btn-back-slideshow:active {
    transform: scale(0.95);
}

/* Posicionamiento flotante absoluto para que no empuje la foto trasera */
.slideshow-control-back {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 15 !important;
    margin: 0 !important;
}

#btn-central-slideshow:hover {
    transform: translate(-50%, -50%) scale(1.05) !important;
}
#btn-central-slideshow:active {
    transform: translate(-50%, -50%) scale(0.95) !important;
}

/* Estado: Oculto fluido cuando está reproduciendo */
#btn-central-slideshow.oculto, #btn-back-slideshow.oculto {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Animación Flash para la Pausa entre transiciones */
.efecto-flash {
    animation: flashPausaTransicion 0.5s ease-out forwards;
}

@keyframes flashPausaTransicion {
    0% { opacity: 0; transform: scale(0.7); }
    20% { opacity: 0.95; transform: scale(1); }
    80% { opacity: 0.95; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.1); }
}

/* Ajuste específico para el flash del botón central del visor (por su traducción de centrado) */
#btn-central-slideshow.efecto-flash {
    animation: flashPausaCentral 0.5s ease-out forwards;
}

@keyframes flashPausaCentral {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
    20% { opacity: 0.95; transform: translate(-50%, -50%) scale(1); }
    80% { opacity: 0.95; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
}

.simbolo-play {
    display: block;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid #ffffff;
    margin-left: 6px;
}

.simbolo-pausa {
    display: block;
    width: 6px;
    height: 24px;
    border-left: 6px solid #ffffff;
    border-right: 6px solid #ffffff;
    padding-left: 6px;
}

/* ========================
   4. BOTÓN PASTILLA LIKES
   ======================== */
#btn-dar-like {
    position: absolute;
    top: 25px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: none; 
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important; 
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 20px !important;
    padding: 6px 16px !important; 
    width: auto !important;          
    min-width: 65px !important;     
    height: 32px !important;        
    overflow: visible !important;   
    white-space: nowrap !important;
    color: #ffffff !important;
    font-family: Arial, sans-serif;
    font-size: 15px !important;
    font-weight: bold !important;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, background 0.3s ease;
}

#btn-dar-like.pulsado {
    background: rgba(30, 30, 30, 0.25) !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: #ffffff !important; 
    cursor: default;
}

#btn-dar-like.pulsado .icon-corazon,
#btn-dar-like.pulsado svg {
    fill: #ff3366 !important;
    stroke: #ff3366 !important;
}

.contador-likes-pastilla {
    color: #ffffff !important;
}

#btn-dar-like svg,
#btn-dar-like .icon-corazon,
#btn-dar-like i {
    width: 16px !important;
    height: 16px !important;
    font-size: 16px !important;
    display: inline-block !important;
    flex-shrink: 0 !important; 
}

/* ====================
     5. VISOR LIGHTBOX 
   ==================== */

.visor-overlay {
    display: none; 
    position: fixed;
    z-index: 10000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px) !important; 
    -webkit-backdrop-filter: blur(2px) !important;
    cursor: zoom-out;
    align-items: center;
    justify-content: center;
    animation: fadeInVisor 0.3s ease;
}

.visor-contenido {
    position: relative; 
    display: inline-block;
    max-width: 100% !important;
    max-height: 100% !important;
    animation: zoomSuave 0.25s ease-out;
}

#img-visor {
    display: block;
    max-width: 75vw !important; 
    max-height: 92vh; 
    border: 2px solid #333;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.9);
    object-fit: contain;
}

/* ==========================================================================
   MINIATURAS LATERALES FLOTANTES
   ========================================================================== */

.thumb-flotante-visor {
    width: 65px !important;
    height: 65px !important;
    background: rgba(0, 0, 0, 0.6) !important; 
    backdrop-filter: blur(5px);    
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15); 
    border-radius: 10px !important;
    overflow: hidden;
}

.thumb-preview-visor {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   BARRA DE CONTROLES INFERIOR
   ========================================================================== */

.visor-control-bar {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center; 
    gap: 25px; 
    position: absolute;
    bottom: 10px; 
    left: 0;
    width: 100%;
    z-index: 110;
    pointer-events: none; 
}

.nav-arrow-visor {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.7) !important; 
    backdrop-filter: blur(5px);    
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important; 
    color: #fff;
    cursor: pointer;
    border-radius: 30px !important; 
    padding: 8px 20px !important;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5) !important;
    transition: background 0.3s, border-color 0.3s, transform 0.2s, color 0.2s;
}

.nav-arrow-visor:hover { 
    border-color: rgba(255, 255, 255, 0.4) !important; 
    background: rgba(15, 15, 15, 0.9) !important;
    color: #f44; 
}

.nav-arrow-visor:active { 
    transform: scale(0.94); 
}

/* ==========================================================================
   PASTILLA DE LIKES (FIJA ARRIBA A LA DERECHA)
   ========================================================================== */

#btn-dar-like-lightbox {
    pointer-events: auto;
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px !important;
    
    /* El JS cambiará esto a 'flex' dinámicamente al cargar los datos */
    display: none; 
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    height: 34px !important; 
    padding: 0 16px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5) !important;
    z-index: 120; /* Asegura que quede por encima de la foto */
    transition: background 0.3s, border-color 0.3s, transform 0.1s;
}

#btn-dar-like-lightbox:hover { 
    border-color: rgba(255, 255, 255, 0.4) !important;
    background: rgba(15, 15, 15, 0.9) !important; 
}

#btn-dar-like-lightbox:active { 
    transform: scale(0.95); 
}

#btn-dar-like-lightbox .icon-corazon {
    display: inline-block !important;
    width: 14px !important;
    height: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
}

#btn-dar-like-lightbox .contador-likes-pastilla {
    color: #ffffff !important;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 13px;
    margin: 0 !important;
    padding: 0 !important;
}

#btn-dar-like-lightbox.pulsado .icon-corazon {
    fill: #ff3366 !important;
    stroke: #ff3366 !important;
}

#btn-dar-like-lightbox.pulsado { 
    cursor: default; 
}

/* Pastillas exclusivas de la galeria top20 */
.lightbox-info-container {
    position: absolute;
    top: 10px;
    right: 10px;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 9999;
}

/* Estilos compartidos para las dos pastillas informativas */
#btn-like-info-lightbox, 
#btn-visitas-info-lightbox {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    height: 32px;
    padding: 0 14px;
    color: #ffffff !important;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 12px;
    cursor: default;
    user-select: none;
}

/* Tamaño de los iconos dentro de estas pastillas */
#btn-like-info-lightbox .icon-corazon, 
#btn-visitas-info-lightbox .icon-ojo {
    display: inline-block !important;
    width: 13px !important;
    height: 13px !important;
}
/* Fin pastillas exclusivas de la galeria top20 */

#visor-contador { display: none !important; }

@keyframes fadeInVisor { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomSuave { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* Botón de control de opacidad en el Lightbox */
#btn-transparencia-lightbox {
    position: absolute;
    top: 10px;  
    left: 10px; 
    z-index: 10010; 
    background: rgba(0, 0, 0, 0.5); 
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px; 
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.1s ease, border-color 0.2s ease;
}

#btn-transparencia-lightbox:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
}

#btn-transparencia-lightbox:active {
    transform: scale(0.95);
}

.icon-transparencia {
    width: 14px;
    height: 14px;
    display: block;
}

/* =============================================
   6. RESPONSIVE / MÓVIL ESTRICTO (HASTA 600PX)
   ============================================= */
@media (max-width: 600px) {
    .thumbnail-slider-container { padding: 5px 8px !important; }
    .nav-zone { display: none; }
    
    #foto-principal { 
        max-width: 100%; 
        pointer-events: none !important; 
        margin: 0;
    }

    .slider-arrow { display: none !important; }

    #btn-dar-like {
        top: 8px !important;
        padding: 4px 4px !important;
        height: 22px !important;
        font-size: 14px;
    }

    .main-caption { 
        padding: 6px 0 6px 0; 
        font-size : clamp(0.85rem, 2.5vw, 1.4rem); 
        letter-spacing: 0px;
    }

    #img-visor {
        border-radius: 10px;
        max-height: 92vh; 
        max-width: 100% !important;
    }

    #btn-central-slideshow, #btn-back-slideshow {
        width: 35px !important;
        height: 35px !important;
    }

    #btn-central-slideshow .simbolo-play, #btn-back-slideshow .simbolo-play {
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 8px solid #ffffff;
        margin-left: 2px;
    }

    #btn-central-slideshow .simbolo-pausa, #btn-back-slideshow .simbolo-pausa {
        width: 2px;
        height: 10px;
        border-left: 2px solid #ffffff;
        border-right: 2px solid #ffffff;
        padding-left: 3px;
    }
}

@media (min-width: 601px) {
    #foto-principal { cursor: zoom-in; }
}

/* =========================================================================
   7. SÓLO PANTALLAS GRANDES (ESCRITORIO EN HORIZONTAL / MONITORES)
   ========================================================================= */
@media (min-width: 1025px) and (min-height: 600px) {
    .visor-control-bar { 
        gap: 25px; 
        bottom: 15px; 
    }
    
    /* MODIFICADO: Bloqueamos las miniaturas a 65px fijos para evitar reescalados extraños en monitores */
    .nav-arrow-visor { 
        border: 1px solid rgba(255, 255, 255, 0.2);
        width: 65px !important;   
        height: 65px !important;
    }
    
    #btn-dar-like-lightbox { 
        gap: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        height: 42px; 
        padding: 0 22px; 
    }
    
    #btn-dar-like-lightbox .icon-corazon { 
        width: 16px !important; 
        height: 16px !important; 
    }
    
    #btn-dar-like-lightbox .contador-likes-pastilla { 
        font-size: 14px; 
    }
}

/* =========================================================================
   8. MEJORA ERGONÓMICA INTERNIVEL: LATERALES ESTRECHOS Y SIMETRÍA (LANDSCAPE)
   ========================================================================= */
@media only screen and (orientation: landscape) {
    
    .visor-contenido {
        display: grid !important;
        grid-template-columns: 100px 1fr 100px !important;
        grid-template-rows: 1fr !important; 
        width: auto !important;                      
        max-width: 95% !important;
        height: 100% !important;                    
        padding: 4px 4px !important; 
        background-color: #000 !important;          
        border: 1px solid #444 !important;           
        border-radius: 15px !important;
        align-items: center !important;
        align-content: center !important;          
        box-sizing: border-box !important;
        position: relative !important; 
        overflow: hidden !important;
    }

    #img-visor {
        grid-column: 2 / 3 !important;
        grid-row: 1 / 2 !important;
        max-height: 97vh !important; 
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;             
        justify-self: center !important;
        align-self: center !important;
        display: block !important;
        margin: 0 auto !important;
    }

    /* CONTENEDORES LATERALES (Alinean verticalmente la miniatura y su botón) */
    .columna-lateral-visor {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important; /* Espacio exacto entre la miniatura y su botón */
        grid-row: 1 / 2 !important;
        z-index: 110 !important;
    }

    .columna-lateral-visor.lateral-izq {
        grid-column: 1 / 2 !important;
        justify-self: center !important;
        align-self: center !important;
    }

    .columna-lateral-visor.lateral-der {
        grid-column: 3 / 4 !important;
        justify-self: center !important;
        align-self: center !important;
    }

    /* Miniaturas flotantes individuales */
	.thumb-flotante-visor {
        width: 65px !important;
        height: 65px !important;
        max-width: 65px !important;    /* 1. Evita que se estire al ancho del botón */
        max-height: 65px !important;   /* 2. Evita que se encoja verticalmente */
        flex-shrink: 0 !important;     /* 3. Bloquea que flexbox altere su tamaño */
        align-self: center !important;  /* 4. La centra respecto al eje de la columna */
        
        background: rgba(0, 0, 0, 0.6) !important; 
        backdrop-filter: blur(5px) !important;    
        -webkit-backdrop-filter: blur(5px) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important; 
        border-radius: 10px !important;
        overflow: hidden !important;
        margin: 0 !important;
    }
	
    .thumb-preview-visor {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* Botones de navegación encapsulados */
    .nav-arrow-visor {
        pointer-events: auto !important;
        background: rgba(0, 0, 0, 0.7) !important; 
        backdrop-filter: blur(5px) !important;    
        -webkit-backdrop-filter: blur(5px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important; 
        color: #fff !important;
        cursor: pointer !important;
        border-radius: 30px !important; 
        padding: 6px 10px !important;
        font-size: 11px !important;
        white-space: nowrap !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5) !important;
        transition: background 0.3s, border-color 0.3s, transform 0.2s, color 0.2s !important;
    }

    .nav-arrow-visor:hover { 
        border-color: rgba(255, 255, 255, 0.4) !important; 
        background: rgba(15, 15, 15, 0.9) !important;
        color: #f44 !important; 
    }

    .nav-arrow-visor:active { 
        transform: scale(0.94) !important; 
    }

    /* Pastilla de likes fija arriba a la derecha */
    #btn-dar-like-lightbox {
        pointer-events: auto !important;
        display: flex !important;
        position: absolute !important;   
        top: 10px !important;
        right: 10px !important;
        height: 32px !important;
        padding: 0 10px !important;
        margin: 0 !important;
        border-radius: 16px !important;
        white-space: nowrap !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(0, 0, 0, 0.7) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        z-index: 120 !important;
    }

    /* Centrado del botón central de reproducción */
    #btn-central-slideshow {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 100 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    #btn-back-slideshow {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 10 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}