/*================================================
[  Table of contents  ]
================================================

  1. Import Default & Template CSS
  2. Custom CSS Goes Here

======================================
[ End table content ]
======================================*/

/*--
    1. Import Default & Template CSS
----------------------------------------*/
/*Default*/
@import url('css/default.css');
/*Buttons*/
@import url('css/shortcode/buttons.css');
/*Headers*/
@import url('css/shortcode/header.css');
/*Templates*/
@import url('css/template/creative.css');
@import url('css/template/corporate.css');
@import url('css/template/restaurant.css');
@import url('css/template/minimal.css');
@import url('css/template/photography.css');

/*--
    2. Custom CSS Goes Here
----------------------------------------*/
.fondo2 {
    background-image: url(img/varios/500-euro.png);
	max-width: 100%;
	border-bottom: solid 1px #ccc;
	
}

.fondo3 {
	background-image: url(img/varios/listas.png);
	max-width: 100%;
	border-bottom: solid 1px #ccc;
	
}

.icono {
	background-image: url(img/iconos/Navidad.png); 
	background-repeat: no-repeat;
}

.icono2 {
	background-image: url("img/iconos/nuevo.png"); 
	background-repeat: no-repeat;
    background-position: top;
}


/*@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02); /* Menos pronunciado *
    }

    100% {
        transform: scale(1);
    }
}

.imagen-pulso {
    animation: pulse 4s infinite; /* 2 segundos de duración, se repite infinitamente *
	animation-timing-function: ease-in-out; /* ¡Aquí está la clave! *
}*/

@keyframes pulse-3d {
    0% {
        transform: scale(1) translateZ(0); /* Tamaño original, en su posición */
        box-shadow: 0 0 0 rgba(0, 0, 0, 0); /* Sin sombra */
    }
    50% {
        transform: scale(1.04) translateZ(5px); /* Se agranda un poco y "sale" 5px */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Sombra para efecto 3D */
    }
    100% {
        transform: scale(1) translateZ(0); /* Vuelve al tamaño original y a su posición */
        box-shadow: 0 0 0 rgba(0, 0, 0, 0); /* Sin sombra */
    }
}

.imagen-pulso {
    animation: pulse-3d 2s infinite ease-in-out; /* Nombre de la animación, duración, repetición, suavizado */
    /* Asegúrate de que el elemento tenga perspectiva para que translateZ funcione */
    transform-style: preserve-3d; /* Necesario para 3D */
    perspective: 1000px; /* Le da profundidad a la escena */
}

/*------------------------pruebas--------------------------------

.saga_tablet .cabecera-menu-juegos {
    display: block!important;
}
.cabecera-menu-juegos {
    display: inline-block;
    width: 100%;
}

.cabecera-menu-juegos ul {
    font-size: 0;
    vertical-align: top;
    display: flex;
    width: 100%;
    text-align: center;
}

.item-menu-juegos.euromillones {
    border-bottom: 6px solid #001367;
}
.cabecera-menu-juegos .item-menu-juegos {
    display: inline-block;
    width: 11.11%;
    vertical-align: top;
    position: relative;
}

.link-cabecera-juego {
    display: block;
    height: 100%;
    position: relative;
}

.listado-juegos .euromillones .logotipo-juego-cabecera {
    top: -5px;
    height: 60px;
    width: auto;
    position: relative;
}
.logotipo-juego-cabecera {
    height: 50px;
    display: table;
    margin: auto;
}

.listado-juegos .logotipo-juego-cabecera.mobile {
    display: none;
}
.listado-juegos .euromillones .logotipo-juego-cabecera {
    top: -5px;
    height: 60px;
    width: auto;
    position: relative;
}
.logotipo-juego-cabecera {
    height: 50px;
    display: table;
    margin: auto;
}
img {
    border: none;
    vertical-align: middle;
}

.listado-juegos .item-menu-juegos.euromillones p {
    color: #001367;
    padding-top: 14px;
    padding-top: 6px !important;
}
.listado-juegos .bote-juego {
    padding-top: 16px;
}
@media screen and (min-width: 1280px) and (max-width: 1400px) {
.bote-juego {
    font-size: 1.667rem;
}
}
.bote-juego {
    font: normal 1.667rem 'PublicSans-Bold', Arial, sans-serif;
    text-align: center;
    text-transform: uppercase;
    padding-top: 0;
    white-space: nowrap;
}

.miles {
    text-transform: uppercase;
    padding-left: 0;
    font: normal 0.75rem 'PublicSans-SemiBold', Arial, sans-serif;
    padding-left: 0.2rem;
    display: block;
}

.euros {
    text-transform: uppercase;
    padding-left: 0;
    font: normal 0.75rem 'PublicSans-SemiBold', Arial, sans-serif;
    padding-left: 0;
    display: inline-block;
}
.miles {
    text-transform: uppercase;
    padding-left: 0;
    font: normal 0.75rem 'PublicSans-SemiBold', Arial, sans-serif;
    padding-left: 0.2rem;
    display: block;
}
.hidden {
    display: none!important;
}
.hidden {
    display: none!important;
}	
	
.link-cabecera-juego:after {
    content: '';
    display: table;
    clear: both;
}	