/* CSS Document */

/* -------------------------------------------- */
/* -------------   POP UP  -------------------- */
/* -------------------------------------------- */
/* Para novedades - puede estar activado o desactivado*/

/* -------------------------------------------------- */
/* ------------ NOTIFICACION EMERGENTE -------------- */
/* -------------------------------------------------- */

.notificacion-back {
      z-index: 8000;
      display: block;
      position: fixed;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);       
}

.notificacion-recuadro-outer {      
      z-index: 8010;
      position: absolute;
      background: var(--azul);      
      width: 600px;
      height: 280px;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);      
}
.notificacion-recuadro-inner {      
      z-index: 8015;
      position: absolute;      
      width: 580px;
      height: 260px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);      
      border: 1px solid #FFFFFF;
      font-family: RobotoL, "Poppins", sans-serif;
      text-align: center;
      color: #FFFFFF;	
      padding: 35px;
}

.notificacion-texto1 {
    font-size: 18px;
	color: #FFFFFF;	
    margin-top: 5px;
	margin-bottom: 20px;     
}

.notificacion-texto2 {
      font-size: 18px;
      margin-bottom: 20px;      
}

.notificacion-cerrar {
	display: block;
	position: absolute;
	top: 10px;
	right: 10px;
	text-decoration: none;
	width: 20px;
	height: 20px;
	background-color: rgba(255,255,255,0.2);
	color: #F0F0F0;
	text-align: center;      
	line-height: 18px;
	border-radius: 20%;	
	font-size: 20px;
	font-family: RobotoL, sans-serif;
}

.notificacion-cerrar:hover {
	background-color: #fff;
	color: var(--azul);
}

/* -------------------------------------------------- */
/* ---------------- ANUNCIO TEMPORAL ---------------- */
/* -------------------------------------------------- */

.anuncio-temporal {
    display: block;
    width: 100%;
    padding: 20px;
    background: var(--azul);
    font-family: Arial, RobotoL, "Poppins", sans-serif;
    text-align: center;
    font-size: 16px;
    color: #FFFFFF;
}
.anuncio-temporal-texto1 {
    display: inline-block;
    margin-right: 10px;
}


/* -------------------------------------------------- */
/*                       MOBILE                       */
/* -------------------------------------------------- */

/* -------------------------------------------------- */
/* ----------------------- 650 ---------------------- */
/* -------------------------------------------------- */


@media screen and (max-width:650px) {
	
	
      /* -------------------------------------------------- */
      /* ------------ NOTIFICACION EMERGENTE -------------- */
      /* -------------------------------------------------- */
      
      .notificacion-recuadro-outer {  
            width: 450px;
            height: 335px;
      }
      
      .notificacion-recuadro-inner {      
            width: 430px;
            height: 315px;            
            
      }
	
	
}

/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* ----------------------- 576 ---------------------- */
/* -------------------------------------------------- */
/* -------------------------------------------------- */


@media screen and (max-width: 576px) {

	  /* -------------------------------------------------- */
      /* ------------ NOTIFICACION EMERGENTE -------------- */
      /* -------------------------------------------------- */
      
      .notificacion-recuadro-outer {  
            width: 300px;
            height: 550px;
      }
      
      .notificacion-recuadro-inner {      
            width: 280px;
            height: 525px;            
            
      }	
	
}

	
