/* CSS Páginas Públicas */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::before,
*::after { box-sizing: border-box; }

html, body { overflow-x: hidden; } /* cinturón de seguridad */

img, svg { max-width: 100%; height: auto; display: block; }

html {
	scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
	font-size: 1em;
	color: #333;
    box-sizing: border-box;
	position: relative;
	margin:0;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
}


.notext {
	max-width: 1000px;
	margin:0 auto;
	padding:100px 0;
}

.boton-simulado {
	display: inline-block;
	padding: 8px;
	margin:10px;
	border-radius: 5px;
	background-color: #243847;
	color: white;
	cursor: pointer;
	font-size: 1.1rem;
}

.boton-simulado a {
	color: white;
}

#overlay_general {
	display: none;
	position: fixed;
	width:100%;
	height:100%;
	z-index: 7900;
	background-color: rgba(0, 0, 0, 0.78);
}

#cookies_pad {
	display: none;
	position: fixed;
	left: 50px;
	bottom: 50px;
	padding: 20px;
	border-radius: 10px;
	width: 200px;
	z-index: 9000;
	background-color: #2be;
	color: white;
}

#cookies_pad button {
	margin: 10px;
}


/* ZONA CABECERA */

header.publica {
	position: relative;
	margin-top: 100px;
}

.navbar {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	background: rgba(217, 14, 14, 0.95); 
	backdrop-filter: blur(10px);
	display: flex;
	row-gap: 8px; 
	justify-content: space-between;
	align-items: center;
	padding: 15px 40px 15px 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 10;
	transition: background 0.3s ease;
}

.navbar:hover {
	background: rgb(187, 10, 10);
}

.navbar .logo {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ff7f50;
}

.navbar .logo-icon {
   width: clamp(160px, 30vw, 200px); /* en lugar de fijo 200px */
  margin-right: 10px;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.navbar .logo:hover .logo-icon {
	/* width: 80px; */
}


.navbar div.menu > ul.menu {
 list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  min-width: 0;             /* permite encoger sin desbordar */
  flex: 1 1 320px;          /* ocupa el espacio restante y puede saltar de línea */
  margin-left: auto;
}

.navbar div.menu ul.menu li {
	margin-left: 15px;
	position: relative;
}

.navbar div.menu ul.menu a {
	text-decoration: none;
	color: #ffffff;
	font-weight: 600;
	position: relative;
	transition: color 0.3s ease;
}

.navbar div.menu > ul.menu > li > a {
	display: inline-block;
	padding: 12px 0;
}

.navbar div.menu > ul.menu > li > a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: #dfd80c;
	transition: width 0.3s ease;
}

.navbar div.menu > ul.menu > li > a:hover {
	color: #ffffff;
}

.navbar div.menu > ul.menu > li > a:hover::after {
	width: 100%;
}


.navbar div.menu ul li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 12px;
	padding: 0px 10px;
	background-color: rgba(217, 14, 14, 0.95); ;
	min-width: 200px;
	text-align: left;
	border-radius: 5px;
	box-shadow: 1px 15px 17px 7px rgba(63, 63, 63, 0.46);
	-webkit-box-shadow: 1px 15px 17px 7px rgba(63, 63, 63, 0.46);
	-moz-box-shadow: 1px 15px 17px 7px rgba(63, 63, 63, 0.46);
	z-index: 5000;
}

/* Puente invisible para que el ratón pueda pasar del elemento padre al submenú sin que se cierre */
.navbar div.menu ul.menu li:hover > ul::before {
	content: '';
	position: absolute;
	top: -12px;
	left: 0;
	width: 100%;
	height: 12px;
}

.navbar div.menu ul li p {
	padding: 1rem 0.5rem;
	margin: 0;
}

.navbar div.menu ul li p.menu-seleccionada {
	border-bottom: 1px solid #ac1123;
}

.navbar div.menu ul li p:hover {
	background-color: #ac1123;
	color: white;
	cursor: pointer;
}


.navbar div.menu ul li:hover ul, .navbar .menu ul li:active ul {
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 0;
}

.navbar div.menu ul li ul li {
	transition: all .2s ease-in-out;
}

.navbar div.menu ul li ul li a.idisel {
	transition: all .2s ease-in-out;
	background-color: #ac1123;
	color: white;
}

.navbar div.menu ul li ul li a {
	display: block;
	padding: 8px 10px;
	color: #333;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar div.menu ul li ul li a:hover {
	background-color: #ac1123;
	color: white !important;
	text-decoration: none;
}

.navbar div.menu ul li ul li:hover {
	cursor: pointer;
}

.navbar div.menu ul li ul li:hover a {
	text-decoration: none;
}


.navbar div.menu ul li ul li {
	/* padding:10px 1em 10px 1em; */
	margin: 0;
	display: block;
	color: #ac1123;
}

.navbar div.menu ul.menu li ul li {
	margin-left: 0;
}

.navbar div.menu ul li.menu-seleccionada {
	border-bottom: 2px solid #dfd80c;;
}

.navbar div.menu ul li ul li.menu-seleccionada {
	border-bottom: 2px solid #dfd80c;;
	background-color: #500f0f;
}


.hero {
	position: relative;
	height: 100vh;
	background-image: url('../imagenes/mujerportada4.jpeg');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	padding-top: 80px; /* Espacio para navbar */
}




/* ZONAPIE */

.logo-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	/* Ajusta el tamaño del logo en el footer */
}

.logo-footer .logo-icon {
   width: clamp(120px, 20vw, 200px); /* en lugar de fijo 200px */
  margin-right: 10px;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.pie {
	text-align: center;
	padding: 50px;
	min-height:150px;
	background-color: #243847;
	color: white;
	margin-top:50px;
}
.footer {
	background-color: #243847;
	color: #fff;
	padding: 60px 20px;
	text-align: center;
}

.footer-bottom {
	background-color: #243847;
	color: #fff;
	padding: 20px;
	text-align: center;
	font-size: 0.9rem;
}

.footer-bottom a {
	color: #dcdcdc;
	text-decoration: none;
}

.social {
	text-align: center;
}

.social a {
	color: #fff;
	font-size: 1.2rem;
	text-decoration: none;
	margin: 0 10px;
	transition: color 0.3s;
	display: inline-block;
}

.social a img {
	width: 30px;
	height: 30px;
}

.social a:hover {
	color: #ff7f50;
}

.legal {
	margin-top: 20px;
}

.legal a {
	color: #fff;
	text-decoration: none;
	margin-right: 10px;
}

.legal a:hover {
	text-decoration: underline;
}


.publica {
	margin-bottom:20px;
}

.saludo-usuario {
	position: absolute;
	right: 50px;
}

li.pseudo-link {
	cursor: pointer;
}


/* CABECERAS ESPECIALES */

.cabecera-in-hero {
	position: relative;
	margin: 0;
	padding: 0;

}

.cabecera-in-hero-fila1 {
	padding:20px 20px;
	min-height:800px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.cabecera-in-hero-fila1 h1 {
	color: white;
	font-size: 3.5rem;
	background-color: rgba(45, 45, 45, 0.416);
}

.cabecera-in-hero-titulo {
	margin-top: 200px;
	text-align: center;
}

/* PAGINA */

.page {
	
}

.main {
	min-height: 800px;
}

.page-in {
	padding:40px;
}

.main-content {
	padding: 0px 40px;
}


.titulo_seccion_normal, .titulo_seccion_caja, .titulo_seccion_hero {
	padding-left: 0px;
}

.titulo_seccion_caja {
	width: 1000px;
	margin:0 auto ;
	font-size: 2.7rem;
	padding-top:40px;
	line-height: 3rem;
	margin-bottom: 80px;
}

.bloque_texto .imagen-texto-estandar {
	margin: 40px 0px;
}


@media only screen and (max-width:1100px) {
	.titulo_seccion_caja {
		padding: 0px 20px;
	}
}

.titulo_seccion {
	padding:1rem 4rem;
}

/* MENU */



/* SECCIONES Y TEXTOS */

.texto_normal {
	font-size: 1.2rem;
	line-height: 2rem;
}

.texto_normal img {
	max-width: 100%;
}

.texto_normal > h3 > em {
	line-height: 2.2rem;
}

.texto_normal li {
	margin-bottom: 15px;
}

.texto_pequeno {
	font-size: 0.9rem;
	line-height: 1rem;
}

.texto_pequeno_bloque {
	font-size: 0.9rem;
	line-height: 1.1rem;
	display: inline-block;
}

.main ol > li {
	margin-bottom: 15px;
}


.bloque > .caja {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	max-width: 1000px;
	margin:0 auto;
}

.bloque > .caja > div {
	box-sizing: border-box;
	padding:10px;
	flex-basis:100%;
	
}

.bloque_completo_ext .caja-ext {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	margin:3rem 4rem;
	gap: 4rem;
}

.bloque_completo_ext .caja-ext > div {
	box-sizing: border-box;
	flex-grow: 1;
	padding:10px;
	flex-basis:auto;
}

.bloque_completo .caja {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	margin:3rem 4rem;
	gap: 4rem;
}

.bloque_completo .caja > div {
	box-sizing: border-box;
	flex-grow: 1;
	padding:10px;
	flex-basis:auto;
}

@media only screen and (max-width:700px) {
	.bloque_completo .caja, .bloque_completo_ext .caja-ext {
		display: block;
		flex-flow: none;
	}
}


.bloque_texto {
	max-width: 1000px;
	margin:0 auto;
}

.titulo-texto-caja {
	max-width: 1000px;
	margin:0 auto;
}

h2.titulo_texto_normal {
	font-size: 1.9rem;
	line-height: 2.1rem;
	font-weight: 700;
	padding-top: 20px;
}

@media only screen and (max-width:1100px) {
	.bloque_texto {
		padding: 0px 20px;
	}
}

.bloque_texto:not(.plugin) a {
	color:#b90505;
}

.bloque_hijo h2 {
	margin-top:0px;
}

.caja {
	max-width: 1000px;
	margin:0 auto;
}

.imagen_total {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.admin_link {
	color: red;
	text-decoration: none;
}

.clase_boton_cta {
	text-transform: uppercase;
	font-weight: 700;
	font-size:0.9rem;
	padding: 15px;
	background-color: black;
	color:white;
	border: none;
	border-radius: 10px;
	margin:15px;
	cursor: pointer;
}

.clase_boton_cta:hover {
	background-color: red;
}

.imagen_hijo img {
	width:100%;
}

.sin_alineacion img {
	max-width:100%;
}

.wrapper_doscolumnas {
	display: flex;
	flex-flow: row nowrap;
	gap: 3rem;
	justify-content: space-between;
	/* align-content: center; */
	/* align-items: center; */
	align-items: start;
}

.wrapper_doscolumnas > div {
	box-sizing: border-box;
	padding:10px;
	flex-basis: 50%;
}

.wrapper_doscolumnas .titulo_normal {
	font-size: 2rem;
}

.wrapper-franjaportder {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}

.wrapper-franjaportder .col1 {
	width:75%;
	height:100%;
	min-height:200px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}



.wrapper-franjaportder .col2 {
	width:25%;
	height:100%;
	text-align: left;
	padding-left:4%;
}

.wrapper-franjaportder h2 a {
	text-decoration: none;
	color: black;
	font-weight: 400;
}


.wrapper-franjaportizq {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}

.wrapper-franjaportizq .col1 {
	width:75%;
	height:100%;
	min-height:200px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}



.wrapper-franjaportizq .col2 {
	width:25%;
	height:100%;
	padding-right:4%;
	text-align: right;
}

.wrapper-franjaportizq h2 a {
	text-decoration: none;
	color: black;
	font-weight: 400;
}

p.icono-descarga::before {
    content: "📥";
    margin-right: 10px;
    font-size: 1.2em;
}

li.icono-descarga::before {
    content: "📥";
    margin-right: 10px;
    font-size: 1.2em;
}

p.icono-email::before {
    content: "✉️";
    margin-right: 8px;
    font-size: 1.15em;
    vertical-align: middle;
}

li.icono-email::before {
    content: "✉️";
    margin-right: 8px;
    font-size: 1.15em;
    vertical-align: middle;
}

.nocontent {
	text-align: center;
	padding: 100px 20px;
	font-size: 1.5rem;
	min-height: 800px;
}

.bloque-decorado {
	background-color: #f5f5f5;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	padding: 30px;
	margin: 20px 0;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}


/* ESTILOS TINY-MCE ESPECIALES */

.sumario-magazine {
	padding: 40px 10px;
	  border-top: 2px solid #243847;
	  border-bottom: 1px solid #999;
	  margin-top: 50px;
	  margin-bottom: 50px;
	  font-size: 2rem;
	  font-weight: 600;
	  line-height: 2.5rem;
	  color: rgb(100, 159, 181);
}

.sumario-magazine:before {
	font-family: serif;
	content:"“";
	font-size: 12rem;
	color: rgb(77, 134, 223);
	padding: 20px;
	margin-top: 20px;
	margin-left: -20px;
	font-stretch: condensed;
}

.sumario-noticia {
	
}

.firma-magazine {
	
}

.lista-enlaces {
	
	
}


/* TIPOS DE MAQUETAS */

.wrapper-imagen-mensaje-dentro {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	vertical-align: middle;
	background-position: center center;
	background-size: cover;
}

.subtitulo-imagen-mensaje-dentro {
	color: white;
	font-size: 3.3rem;
	line-height: 3.6rem;
	padding: 2rem 3rem 0 3rem;
	font-weight: 900;
	text-align: center;
	text-shadow: 2px 2px 8px #000;
}

.texto-imagen-mensaje-dentro {
	color: white;
	font-size: 1.7rem;
	line-height: 1.9rem;
	padding: 0 6rem 2rem 6rem;
	font-weight: 600;
	text-shadow: 2px 2px 8px #000;
	
}

.wrapper-imagen-mensaje-boton {
	background-position: center center;
	background-size: cover;
	background-color: rgba(32, 65, 88, 0.709);
	background-blend-mode: multiply;
}

.marco-imagen-mensaje-boton {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	vertical-align: middle;
	height: 100%;
}

.subtitulo-imagen-mensaje-boton {
	color: white;
	font-size: 3.3rem;
	line-height: 3.6rem;
	padding: 2rem 3rem 0 3rem;
	font-weight: 900;
	text-align: center;
	text-shadow: 2px 2px 8px #000;
}

.texto-imagen-mensaje-boton {
	color: white;
	font-size: 1.7rem;
	line-height: 1.9rem;
	padding: 0 6rem 2rem 6rem;
	font-weight: 600;
	text-shadow: 2px 2px 8px #000;
}

.texto-imagen-mensaje-boton p.boton_simulado a {
	font-size: 2rem;
}



.wrapper-presentacion-imagen-derecha {
	display: flex;
	flex-flow: row nowrap;
	gap:40px;
	align-items: flex-start;
	justify-content: space-between;
	background-color: #243847;
	color: white;
	box-sizing: border-box;
}

.presentacion-imagen-derecha-col-izquierda {
	padding: 30px 30px 50px 50px;
	flex-basis: 50%;
	box-sizing: border-box;
}

.presentacion-imagen-derecha-col-izquierda h2 {
	font-size: 2.8rem;
}

.presentacion-imagen-derecha-col-izquierda h3 {
	font-size: 1.5rem;
}

.presentacion-imagen-derecha-col-izquierda div {
	font-size: 1.2rem;
	max-height: 300px;
}

.presentacion-imagen-derecha-col-izquierda-texto {
	overflow: auto;
}

.presentacion-imagen-derecha-col-derecha {
	padding: 30px 30px 50px 50px;
	box-sizing: border-box;
	flex-basis: 50%;
	background-position: center center;
	background-size: cover;
	height: 600px;
}

.wrapper-texto-speaker {
	text-align: center;
}

.wrapper-texto-speaker h3 {
	font-weight: 600;
	text-align: center;
	font-size: 1.6rem;
}

.wrapper-texto-imagen-speaker {
	display: inline-block;
	border-radius: 50%;
	height: 200px;
	width: 200px;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.wrapper-texto-speaker-cargo {
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
	padding-bottom: 20px;
	color: #056fc8;
}

.wrapper-texto-speaker-cv {
	text-align: left;
}



/* EDITOR ESTILOS */

#editor_estilos {
	position: fixed;
	z-index: 9900;
	display: none;
	right:0px;
	top:60px;
	width: 500px;
	padding:20px;
	background-color: white;
	border:2px solid black;
}

.borrar-estilo {
	display: inline-block;
	margin-left:10px;
	padding:5px;
	cursor: pointer;
}



/* PAGINA LOGIN */

   
.titulo-login {
   font-size:1.5rem;
}


/* PAGINA GESTION_TURNOS */

.btn-grilla-horas {
	display: inline;
	padding:1px 5px 1px 15px;
	margin: 4px;
	border-radius: 4px;
	border: 1px solid #666;
}

.nturnos {
	display: inline;
	padding:1px 5px 1px 15px;
}

.nev-1 {
	background-color:#ffb031;
	color:white;
}

.nev-0 {
	background-color:#f80000;
	color:white;
}

.nev-2 {
	background-color:#34ba03;
	color:white;
}

.nev-3 {
	background-color:#0ea5e4;
	color:white;
}

.nev-4, .nev-5, .nev-6, .nev-7, .nev-8, .nev-9, .nev-10, .nev-11, .nev-12, .nev-13, .nev-14 {
	background-color:#ae0ee3;
	color:white;
	
}


/* CONTACTO */


#modulo_contacto {
	max-width:1040px;
	margin: 0 auto;
	padding:20px 0px 20px 30px;
	font-size:1em;
	margin-top:0px;
}

.tabla_formulario {
	margin: 0;
	padding: 0;
	width:100%;
}


#modulo_contacto h1 {
	
	font-weight:normal;
	color:#000000;
}

#modulo_contacto a {
	text-decoration:none;
}


#contenedor_contacto {
	min-height: 600px;
	font-size:1em;
}

.estilo_selector {
	font-size:1.3em;
}


#titulo_seccion_contacto {
	padding:15px;
	text-align:left;
	color:#000000;
	font-size:1em;
	max-width:1040px;
	margin:0 auto;
}


.fecha_enlace {
    font-size:0.8em;
}

.etiqueta_formulario select {
	font-size:18px;
	padding:15px;
}

.etiqueta_formulario textarea {
	font-size:18px;
	padding:10px;
	font-family: "Heebo", sans-serif;
	box-sizing: border-box;
}

.clase_input_spam {
	font-size:18px;
}

.nota_boton_formulario {
	margin-top:40px;
}

.estilo_boton[type="submit"] {
	cursor: pointer;
	border:none;
	border-radius:15px;
	background-color: black;
	color:white;
	padding:20px;
	font-size: 18px;
	transform: scale(1.1);
	
}

.estilo_boton[type="submit"]:hover {
	background-color: #c60303;
	color:white;
	transition: all .2s ease-in-out;
}


/* ESTILOS FORMULARIO DE PORT */

.form-port input, textarea {
		font-size: 1.2rem;
		padding:10px;
		margin:10px 0px 10px 0px;
		border:1px solid black;
		border-radius: 10px;
		background-color: rgba(255,255,255,0.7);
		box-sizing: border-box;
	}
	
	.form-port .campo-flex input[type="text"] {
		width: 100%;
	}
	
	.form-port .campo-flex p {
		display: inline-block;
		margin-left:20px;
		margin-right:10px;
	}
	
	.form-port .campo-flex {
		position: relative;
	}
	
	.form-port .campo-flex select {
		font-size: 1.1rem;
		padding:10px;
		border-radius: 10px;
		margin-top:10px;
	}
	
	
	.form-port .fila-pila input[type="text"] {
		width: 100%;
	}
	
	.form-port .fila-pila select {
		font-size: 1.2rem;
		padding:10px;
		width: 100%;
	}

	.form-port input::placeholder {
		font-size: 1rem;
	}

	.form-port textarea {
		width:100%;
		min-height: 200px;
		box-sizing: border-box;
	}
	.form-port label {
		display: block;
		padding:10px 10px 10px 10px;
		margin:10px 10p 10px 10px;
		color:black;
	}
	
	.form-port label.reg {
		display: block;
		padding:10px 10px 0px 10px;
		margin:0px;
		color:black;
		text-align: left;
		width: 500px;
		margin: 0 auto;
	}
	
	.form-port .fila-flex {
		display: flex;
		flex-flow: row nowrap;
		width:100%;
		justify-content: space-between;

	}

	.form-port .fila-checkbox {
		display: flex;
		flex-flow: row wrap;
		width:100%;
		justify-content: space-between;
		box-sizing: border-box;
		margin-top:40px;
	}

	.form-port .acepto-terminos {
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
		width:100%;
	}

	.form-port .grupo-checkbox {
		flex-basis: 45%;
		box-sizing: border-box;
		margin-bottom: 40px;
		
	}
	
	.form-port .grupo-checkbox .titulo {
		min-height: 100px;
		font-size:1.2rem;
		
	}
	
	.form-port .grupo-checkbox .subtitulo {
		font-weight: bold;
	}

	.form-port .fila-pila label {
		margin-top:30px;
		font-size: 1rem;
	}
	.form-port .separador-formulario {
		height:40px;
	}

	.form-port .submit {
		justify-content: flex-end;
	}
	.form-port .submit input[type="submit"] {
		cursor: pointer;
		background-color: black;
		color: white;
		font-size:1rem;
		font-weight: 700;
	}

	.form-port .submit input[type="submit"]:hover {
		-webkit-box-shadow: 0px 0px 14px 4px rgba(0,0,0,0.28); 
		box-shadow: 0px 0px 14px 4px rgba(0,0,0,0.28);
	}
	.form-port .elemento-checkbox {
		display: flex;
		flex-flow: row nowrap;
		align-items: flex-start;
	}
	
	.form-port .elemento-checkbox p {
		padding-top: 5px;
		padding-left:10px;
		margin-top:0;
		font-size:1.1rem;
	}
	
	.form-port .acepto-terminos {
		display: flex;
		flex-flow: row nowrap;
		align-items: flex-start;
		margin-top: 60px;
		font-size: 1.2rem;
		font-weight:600;
	}
	
	.form-port .acepto-terminos p {
		padding-top: 7px;
		padding-left:10px;
		margin-top:0;
	}
	
	
	.form-port .aclaracion {
		padding:20px;
	}
	
	.form-port h2.titulo_inter_grupos {
		margin-top:60px;
	}
/* FIN ESTILOS FORMULARIO DE PORT */
	
	a.boton_simulado, p.boton_simulado a {
		padding:10px 15px;
		margin-bottom: 15px;
		display: inline-block;
		background-color: #0b9af3;
		color: white !important;
		border-radius: 20px;
		text-shadow: none;
	}
	
	a.boton_simulado:hover, p.boton_simulado a:hover {
		background-color: #0b598a;
	}
	
	a.boton_simulado_peq, p.boton_simulado_peq a {
		padding:5px 7px;
		margin-bottom: 15px;
		display: inline-block;
		background-color: #0b9af3;
		color: white !important;
		border-radius: 10px;
		text-shadow: none;
	}
	
	a.boton_simulado_peq:hover, p.boton_simulado_peq a:hover {
		background-color: #0b598a;
	}
	
	table.tabla_40 {
		border: none;
	}
	
	.mensaje-interno ul {
		text-align: left;
	}
	
	.boculto-adm {
		border: 1px dotted #c0c0c0;
	}
	
	.bborrador-adm {
		border: 2px dotted #b76000;
	}



/* ESTILOS PERSONALIZADOS */

.malla-aborto {
	display: flex;
	flex-flow: column wrap;
}

.malla-aborto > div {
	box-sizing: border-box;
	padding: 20px 20px 20px 0px;
	flex-basis: 50%;
}

.resaltado {
	border: 3px dotted #e50606;
}


/* ESTILOS CONCRETOS */

.malla-merch {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-around;
}

.malla-merch > div {
	flex-basis: 50%;
	padding: 20px;
}


.malla-merch > div > img {
	max-width: 100%;
}

.response-ajax-public {
	margin-top: 100px;
	margin-bottom: 100px;
}

.infobulos_recuadro_negativo {
	padding: 20px;
	margin: 20px 0px;
	background-color: #4da8f4;
	color: white;
	
}

.infobulos_recuadro_negativo a {
	color: white !important;
	font-weight: 700;
}

.conference_table td {
	padding: 10px;
	height: 16px;
}

table.conference_table td.celda-horas {
	width: 15%;
}

table.conference_table td.celda-actos {
	width: 40%;
}

table.conference_table td.celda-ponentes {
	
}

table.conference_table tr.fila-dias td {
	background-color: #ced4d9;
}

table.conference_table tr.fila-breaks td {
	background-color: #fbeeb8;
}

table.conference_table tr.fila-misa td {
	background-color: #bfedd2;
}



/* ESPECIFICO GESTION VOLUNTARIOS */

.popup {
	position: absolute;
	top: 150px;
	left: 40%;
	width: 700px;
	min-height: 300px;
	border-radius: 10px;
	border: 1px solid #bbb;
	background-color: #FFF;
	-webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.57);
	-moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.57);
	box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.57);
}

.popup .cabecera-pop {
  border-radius: 10px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 20px;
  background-color: #e1e1e1;
}

.popup .cuerpo-pop {
  padding: 20px;
  background-color: white;
}

.popup .titulo-pop {
  margin: 0;
  font-size: 1.3rem;
}

.cierre-pop > p {
  float: right;
  cursor: pointer;
  margin: 5px;
}

.textoh1-pop {
  font-size: 1.5rem;
}

.fila-flex-pop-3 {
  display: grid;
  grid-template-columns: 40% 30% 30%;
}

.fila-flex-pop-2 {
  display: grid;
  grid-template-columns: 40% 50%;
  padding: 20px 0px;
}

.fila-flex-pop-4 {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  padding: 20px 0px;
}

.tx1 {
  font-size: 1.4rem;
}

.tx6 {
  font-size: 1rem;
}

.bwt {
  background-color: white;
  padding: 4px;
}

.inv-bottom {
  margin-top: 20px;
  margin-left: 10px;
  display: inline-block;
  margin-bottom: -50px;
  border: 1px solid #666;
}

.wrap-exterior {
  border-radius: 10px;
  border: 1px solid #999;
}

.wrap-horas {
  padding: 15px;
  display: flex;
  flex-flow: row wrap;
}

.boton-hora {
  padding: 8px;
  text-align: center;
  box-sizing: border-box;
  flex-basis: 7%;
  display: inline-block;
  border: 1px solid #999;
  border-radius: 7px;
  margin:3px;
  cursor: pointer;
}

.popupfull {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	min-height: 100%;
	background-color: rgba(250, 250, 250, 1);
	z-index: 5000;
}

.popupfull .cabecera-pop {
  padding: 20px;
  background-color: #e1e1e1;
}

.popupfull .cuerpo-pop {
  padding: 20px;
}

.popupfull .titulo-pop {
  margin: 0;
  font-size: 1.3rem;
}

p.aspa-inline, p.txtinline {
	display: inline;
}

.semaforo-verde, .semaforo-rojo {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0px 10px;
}

.semaforo-verde {
	background-color: #3b1
}

.semaforo-rojo {
	background-color: #d00;
}


/* CALENDARIO_CAMPAÑA */

.default-no-data {
	min-height: 40px;
}

.wrap-dia-cal {
	display:flex;
	flex-flow: column wrap;
	height: 140px;
}

.wrap-dia-cal-365 {
	display:flex;
	flex-flow: column wrap;
	height: 280px;
}

.calendario_malla {
	
	display:flex;
	flex-flow: row wrap;				
}

div.sobrantes, div.celda_sin_evento, div.domingo, div.hoy {
	height:100%;
	display:inline-block;
	padding:8px;
	border-bottom:1px solid #666666;
	border-top:1px solid #ffffff;
	border-right:1px solid #ffffff;
	border-left:1px solid #ffffff;
	overflow-y: hidden;
	font-size:1em;
	text-align: left;
	box-sizing: border-box;
}

div.celda_iniciales, div.celda_iniciales_primera, div.celda_iniciales_ultima {
	display:inline-block;
	float:left;
	padding:5px;
	border-bottom:1px solid #666666;
}

	
a.domingo { 
	color:#f5ac15; 
}

a.gris { 
	color:#666666; 
}

.celda_con_evento { 
	background-color:#a6b4cc; 
	color:#FFFFFF !important; 
	overflow-y:'.$valor_scroll.';
	overflow-x:hidden;

}

.celda_sin_evento > div, .hoy > div {
	margin-bottom:10px;
}

.celda_sin_evento > button, .hoy > button {
	margin-top:5px;
	cursor: pointer;
	border: 1px solid #cccccc;
	border-radius: 5px;
}

.celda_sin_evento > button:hover, .hoy > button:hover {
	background-color: black;
	color: white;
}

.domingo > div {
	margin-bottom:10px;
}

.domingo > button {
	margin-top:10px;
	cursor: pointer;
	border: 1px solid #cccccc;
	border-radius: 5px;
}

.domingo > button:hover {
	background-color: black;
	color: white;
}

.separador { 
	border-right:1px solid #666666; 
	padding-left:5px; 
	padding-right:5px 
}

.no_separador { 
	padding-left:5px; 
	padding-right:5px;
}

.domingo {
	background-color:#ececed;
}

div.numeral { 
	font-weight:bold; 
	color:#666666; 
}

div.nombremes {
	font-size:1.8rem; 
	color:#000000; 
	text-align:left;
	display:inline-block;
}

div.titulo_tabla_actividades_futuras { 
	margin-left:30px; 
	font-size:2rem; 
	color:#999999; 
	font-weight:bold; 
}

div.resultados_busqueda { 
	margin-left:50px; 
}

.celda_sin_evento .rojo, .domingo .rojo {
	color: red;
}

.celda_sin_evento .naranja, .domingo .naranja {
	color: orange;
}

p.iniciales_semana, p.iniciales_semana_primera {  
	color:#f5ac15; 
	display:inline;
}

div.calendar { 
	padding:20px;
	margin:0 auto;
	box-sizing: border-box;
}

.tabla_elastica { 
	margin-right:0px; 
}

.pie_calendario {
	padding-left:15px;
	padding-right:10px;
	color:#000;
	font-size:1rem;
}

p.estilo_mes {
	display:inline;
	font-size:12px; 
	font-weight:normal; 
}


.malla-calendario-dias, .malla-calendario-dias-semana {
	display: grid;
	grid-template-columns: repeat(7, 1fr);

}

.malla-calendario-dias > div > div > a, .malla-calendario-dias-semana > div > div > a {
	color: black;
}


.nturnos {
	display: inline;
	padding:1px 5px 1px 15px;
}

.nev-1 {
	background-color:#ffb031;
}

.nev-0 {
	background-color:#f80000;
	color: white;
}

.nev-2 {
	background-color:#34ba03;
	color: white;
}

.nev-3 {
	background-color:#0ea5e4;
	color: white;
}

.nev-4, .nev-5, .nev-6, .nev-7, .nev-8, .nev-9, .nev-10, .nev-11, .nev-12, .nev-13, .nev-14,  .nev-15, .nev-16, .nev-17, .nev-18, .nev-19, .nev-20, .nev-21, .nev-22, .nev-23, .nev-24, .nev-25 {
	background-color:#ae0ee3;
	color: white;
}


.video-frame {
	width: 100%;
	min-height: 300px;
}

/* VIDEOS */

.aviso-plugin-video {
	background-color: #4da8f4;
	color: white;
	font-size: 1rem;
	padding: 20px;
	display: none;
	margin: 0px auto;
	width: 70%;
}

.aviso-plugin-video a {
	color: white;
}

.boton-si-plugin-video {
	display: inline-block;
	background-color: black;
	color: white;
	padding: 10px;
	margin:15px;
	border-radius: 7px;

}

.boton-no-plugin-video {
	display: inline-block;
	background-color: black;
	color: white;
	padding: 10px;
	margin:15px;
	border-radius: 7px;

}

/* SATISFACTION SURVEY */

.wrapper_satisfaction_survey {
	display: grid;
	grid-template-columns: repeat(6,1fr);
	gap: 40px;
}

.wrapper_satisfaction_survey > a {
	padding: 10px;
	justify-self: center;
}

.wrapper_satisfaction_survey > a:hover > img {
	transform: scale(1.1);
}

.wrapper_satisfaction_survey > a > img {
	width: 60px;
	margin: 0 auto;
	transition: all .2s ease-in-out;
}


sup {
	font-size: 65%; 
	vertical-align: baseline; 
	position: relative;
	bottom: 1ex; 
	color: #c30;
}

li.resaltado {
	border: 1px solid #c00;
}

li.resaltado a {
	background-color: #c00;
	color: white !important;
}

.rojo, .rojo > p {
	color: #900 !important;
}

/* BLOQUES PRECONFIGURADOS (plugin TinyMCE "bloques") */

.bloque-destacado {
	background-color: #fff8e1;
	border-left: 5px solid #FC0;
	padding: 20px 24px;
	margin: 20px 0;
}

.bloque-destacado h2 {
	margin-top: 0;
}

.bloque-dos-columnas {
	display: flex;
	gap: 24px;
	margin: 20px 0;
}

.bloque-dos-columnas .bloque-columna {
	flex: 1;
	padding: 16px;
	background-color: #f4f4f4;
	border-radius: 6px;
}

.bloque-cta-fondo {
	background-color: #0a2540;
	color: #fff;
	text-align: center;
	padding: 40px 24px;
	margin: 20px 0;
	border-radius: 8px;
}

.bloque-cta-fondo h2 {
	color: #fff;
	margin-top: 0;
}

.bloque-cta-fondo .clase_boton_cta {
	display: inline-block;
	margin-top: 12px;
	padding: 10px 20px;
	background-color: #FC0;
	color: #000;
	text-decoration: none;
	border-radius: 4px;
	font-weight: bold;
}
