@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Momo+Signature&display=swap');

*{
	box-sizing: border-box;
}

a{
	text-decoration: underline;
}

header{
	position: sticky;
	top: 0;
	border-bottom: 1px solid #007c52;
	background-color: #FFFFFF;
	z-index: 999;
	transition: all linear 0.2s;
}




.topheader{
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
	margin: 0 auto;
	max-width: 1600px;
	top: 0;
	transition: all linear 0.2s;
	align-content: center;
	text-align: center;
	justify-content: center;
	
}



.menu-logo{
    height: 50px;
	margin: 4px;
	margin-left: 15PX;
	transition: all linear 0.2s;
}

header.shrink .topheader{
	padding: 3px;
	color: #fff;
}

header.shrink{
	background-color: #057d54;
	color: #fff;
}


header.shrink .menu-logo{
	display: none;
}

header .menu-logo-min{
	display: none;
}

header.shrink .menu-logo-min{
	height: 30px;
	margin: 2px;
	margin-left: 15PX;
	filter: invert();
	display: block;
}


.page-footer{
    text-align: center;
}


#topheader.shrink{
	display: block;
	opacity: 1;
}



/*
------------------ posts de wp
*/

.wp-posts {
	margin: 1em 0;
}

.wp-post {
	border-bottom: 1px solid #ddd;
	padding: 0.5em 0;
}

.wp-post-title {
	margin: 0;
	font-size: 1.1rem;
	color: var(--primary-color-theme, #005cbf);
	cursor: pointer;
}

.wp-post-title:hover {
	text-decoration: underline;
}

.wp-post-date {
	font-size: 0.8rem;
	color: #666;
	display: block;
	margin-bottom: 0.5em;
}

.wp-post-excerpt {
	color: #444;
	font-size: 0.95rem;
}


.lh-2{line-height: 2;}

.heart-breathe{
	animation: heart-double 3.6s ease-in-out infinite;
  }
  @keyframes heart-double{
	0%, 12%   { transform: scale(1.00); }
	6%        { transform: scale(1.028); } /* primer golpe */
	18%       { transform: scale(1.022); } /* segundo golpe */
	100%      { transform: scale(1.00); }  /* pausa larga */
  }
  
  /* Respeto a usuarios que prefieren menos movimiento */
  @media (prefers-reduced-motion: reduce){
	.heart-breathe{ animation: none; }
  }
  

/*
------------------- big-banner
*/


.big-banner{
	width: 100%;
	height: calc(100vh);
	background-repeat: no-repeat;
	background-position-x:  center;
	background-position-y: bottom;
	background-size: cover;
	background-image: url('../img/bgslider.jpg');
	background-attachment:fixed;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;

}



.big-banner-text-top-claim{
	font-size: 3.1vh;
	font-weight:normal;
	font-family: "Jost", sans-serif;
	margin-bottom: 15px;
	color: #b30808;

}


.big-banner-text-claim{
	font-size: 6.8vh;
	font-weight:700;
	font-family: "Geologica", sans-serif;
	line-height: 0.9;
	color: #b30808;
}

.big-banner-text-claim2{
	font-size: 7.55vh;
	font-weight:700;
	font-family: "Geologica", sans-serif;
	line-height: 0.9;
	color: #b30808;
	margin-bottom: 10px;
}


.big-banner-text-bottom-claim{
	font-size: 2vh;
	font-weight:normal;
	font-family: "Jost", sans-serif;
	color: #b30808;
}



.big-banner .big-banner-image-center{
	max-width: 100%;
	margin-top: 3vh;
	margin-bottom: 55px;
	max-height: 90%;
}

.big-banner .big-banner-image-claim{
	width: 80vh;
	max-width: 80%;
}

.big-banner .big-banner-title{
	position: absolute;
	top: 35px;
	font-size: 18px;
	width: 100%;
	text-align: center;
	color: #fff;
	z-index: 99;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
}


.big-banner .big-banner-subtitle{
	position: absolute;
	top: 57px;
	font-size: 14px;
	width: 100%;
	text-align: center;
	color: #fff;
	z-index: 99;
	font-weight: normal;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
}


@media (max-height: 400px) {
	
	.big-banner{
		background-position-y: bottom;
	}
}

/*
end big-banner---------------------------------
*/





/*
------------------- botonera
*/


.menu-buttons{
	
}

.grid-row{
	display: grid;
	grid-template-columns: repeat(8, 1fr); 
	gap: 1rem; 
	align-items: center;
  }
  
.col-button{
	padding: 0;
	box-sizing: border-box;
	text-align:center;
	background:#b30808;

	border-radius: 3px;
	background-position: center 2px;
	background-repeat: no-repeat;
	background-size: auto 42px;
	height: 78px;
	display: flex;
	justify-content: center;
	align-items: end;
	color: #FFF;
	font-size: 0.65em;
	font-weight: bold;
	cursor: pointer;
	transform: translateY(8px);
	border: 4px solid transparent;
	transition: all linear 0.3s;
	position: relative;
	line-height: 1;
	padding-bottom: 2px;
}

.col-button:hover{
	border-color: #bae717;
}

.col-button.active{
	border-color: #bae717;
}


.col-button a{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	color: inherit;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: end;
	padding-bottom: 2px;
	
}

.col-button:nth-child(1){ background-color: #73ac6e;  background-image: url('../img/icon/todo.png'); }
.col-button:nth-child(2){ background-color: #afc581;  background-image: url('../img/icon/inauguracion.png'); text-shadow: 1px 1px 1px rgba(0,18,58,0.2); }
.col-button:nth-child(3){ background-color: #7fca78;  background-image: url('../img/icon/rutas.png'); }
.col-button:nth-child(4){ background-color: #8fac6e;  background-image: url('../img/icon/gastronomia.png'); }
.col-button:nth-child(5){ background-color: #6ebea0;  background-image: url('../img/icon/medioambiental.png'); }
.col-button:nth-child(6){ background-color: #82b88d;  background-image: url('../img/icon/talleres.png');}
.col-button:nth-child(7){ background-color: #4db8b2;  background-image: url('../img/icon/culturaocio.png'); text-shadow: 1px 1px 1px rgba(45,28,0,0.2); }
.col-button:nth-child(8){ background-color: #b3ce39;  background-image: url('../img/icon/centros.png'); text-shadow: 1px 1px 1px rgba(45,28,0,0.2); }






/* responsive: menos columnas en pantallas pequeñas */
@media (max-width: 767px){
	.grid-row{ grid-template-columns: repeat(2, 1fr); }
	.col-button{ font-size: 0.82em; }
	
}

@media (min-width: 768px) and (max-width:960px) {
	.col-button{height: 90px; }
}


/*
end botonera ---------------------------------
*/



.finder{
	display: flex;
	flex: 1;
	gap: 15px;
	max-width: 600px;
	margin: 0 auto;
}


.auxiliar-buttons{
	text-align: center;
}

.auxiliar-buttons a{
	padding: 5px;
	cursor: pointer;
	margin-right: 10px;
	font-size: 0.86em;
	color: #005cbf;
	text-align: center;
}

.noresult{
	padding: 7px;
	max-width: 650px;
	margin: 0 auto;
	margin-top: 50px;
	text-align: center;
}

/*
--------------------------------- EVENTOS 
*/

.year-wrap .year-header{
	padding: 7px;
	background-color: #ddd;
	color: #666;
	border-radius: 15px;
	margin-top: 15px;
}

.month-wrap .month-header{
	padding: 7px;
	background-color: #ddd;
	color: #666;
	border-radius: 15px;
	margin-top: 15px;
}


.date-header{
	background-color: #e9eef4;
	margin-top: 40px;
	color: #397391;
	font-weight: 600;
	display: flex;
	align-items: center;
	height: 45px;
	position: sticky;
	top: 0;
	cursor: pointer;
}

.date-header:hover{
	background-color: #f1f5fa;
}






.date-header .smallday{
	height: 45px;
	width: 65px;
	min-width: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #7d9aa3;
	color: #fff;
	line-height: 1.1;
	font-size: 16px;
	font-weight: 600;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.8);
	text-align: center;
}



#listEvents .date-header .smallday{
	transition: all linear 0.4s;
}

.date-header .longdate{
	padding-left: 20px;
	width: 100%;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}


.date-content{
	visibility: hidden;
	opacity: 0;
	height: 0;
	overflow: hidden;
	transition: all linear 0.2s;
}

.date-content.active{
	visibility: visible;
	height: fit-content;
	overflow: visible;
	opacity: 1;
}

.date-actions{
	width: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	cursor: pointer;
}

.date-actions:hover{
	background-color: rgba(255, 255, 255, 0.3);
}

.event{
	margin-top: 20px;
	border-radius: 3px;
	background-color: #f1f8ff;
	min-height: 56px;
	line-height: 1.2;
	position: relative;
}

.event-header{
	margin-top: 10px;
	border-radius: 3px;
	display: flex;
	gap: 15px;
	min-height: 56px;

}

.event-time{
	width: 65px;
	min-width: 65px;
	max-width: 65px;
	background-color:#fffced;
	color: #444;
	margin: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9em;
	font-weight: 500;
	text-align: center;
	text-transform: lowercase;
	flex-direction: column;
}

.event-text{
	display: flex;
	align-items: center;
	justify-content: left;
	width: 100%;
	padding-top: 5px;
	padding-bottom: 5px;
}

.event-title{
	color: #365c8a;
	font-weight: 500;
}



.event-content{
	margin-top: 5px;
	font-size: 0.8em;
}

.event-site{
	margin-top: 5px;
	font-size: 0.82em;
	color: #0a80af;
}


.event-link{
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 0.82em;
	color: #FFFFFF;
	padding: 3px;
	padding-top: 5px;
	border-radius: 4px;
	background-color: #73ac6e;
	font-weight: bold;
	width: 160px;
	text-align: center;
	display: block;
}

.event-actions{
	width: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-direction: column;
}

.event-actions .bi{
	cursor: pointer;
}

.event .bi{ font-size: 17px; color: #86aaba;}
.event .bi:nth-child(1){ margin-bottom: 7px;}
.event .bi:hover{ color: #38ad79; }


.event.actividades-todos-los-dias{
	background-color: #f9fdff;
}



.event .event-category{
	position: absolute;
    top: -10px;
    right: 0;
    height: 12px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 4px;
    padding-bottom: 2px;
    border-radius: 3px;
    background-color: #f4f9ff;
    color: #8fa2b6;
    font-size: 9px;
    line-height: 8px;
}

.event .postadv ul{
	margin-left: 15px;
}


.event .postadv ul li{
	padding-left: 2px;
	list-style-type: square;
}

/*

#listEvents[data-category="INAUGURACIÓN"] .date-header .smallday{ background-color: #7dccfa;}
#listEvents[data-category="RUTAS"] .date-header .smallday{ background-color: #0a80af;}
#listEvents[data-category="GASTRONOMÍA"] .date-header .smallday{ background-color: #f56e50;}
#listEvents[data-category="MEDIOAMBIENTALES"] .date-header .smallday{ background-color: #de463c;}
#listEvents[data-category="TALLERES CREATIVOS"] .date-header .smallday{ background-color: #38ad79;}
#listEvents[data-category="CULTURA Y OCIO"] .date-header .smallday{ background-color: #de3769;}
#listEvents[data-category="CENTROS EDUCATIVOS"] .date-header .smallday{ background-color: #dec537;}
#listEvents[data-category=""] .date-header .smallday{ background-color: #7d9aa3;}
*/

.event.category_index1 .event-time{ border-left: 4px solid #afc581;}
.event.category_index2 .event-time{ border-left: 4px solid #7fca78;}
.event.category_index3 .event-time{ border-left: 4px solid #8fac6e;}
.event.category_index4 .event-time{ border-left: 4px solid #6ebea0;}
.event.category_index5 .event-time{ border-left: 4px solid #82b88d;}
.event.category_index6 .event-time{ border-left: 4px solid #4db8b2;}
.event.category_index7 .event-time{ border-left: 4px solid #b3ce39;}



.event.event.actividades-todos-los-dias .event-time::after{ display: block; content: "diários"; font-size: 0.7em; color: #6ba0be; }
.event.miscelanea .event-time::after{ display: block; content: "micelánea"; font-size: 0.7em; color: #0a80af; }
.event.moros-y-cristianos .event-time::after{ display: block; content: "mYc"; font-size: 0.7em; color: #ff8a3c; }
.event.huertos .event-time::after{ display: block; content: "huertos"; font-size: 0.7em; color: #de463c; }
.event.romeria .event-time::after{ display: block; content: "romería"; font-size: 0.7em; color: #38ad79; }
.event.conciertos-y-espectaculos .event-time::after{ display: block; content: "conciertos"; font-size: 0.7em; color: #e73186; }
.event.teatro-y-cine .event-time::after{ display: block; content: "TeatroCine"; font-size: 0.7em; color: #dec537; }


/* barra de favoritos */
#favoritos{
	display:flex; flex-wrap:wrap; gap:8px; margin:10px 0;
  }
  .favorito-chip{
	display:inline-flex; align-items:center; gap:8px;
	padding:6px 10px; border-radius:45px; background:#f3f5f7; color:#333;
	border:1px solid #e3e6ea; cursor:pointer; transition:transform .15s ease;
  }
  .favorito-chip:hover{ transform: translateY(-1px); }
  .favorito-chip .rm { background:transparent; border:0; font-weight:bold; cursor:pointer; }
  
  /* icono marcado */
  .event-actions .is-fav { color:#d43f5e; }
  
  /* resalte del evento al llegar */
  .event.fav-highlight {
	outline:3px solid #ffd166; box-shadow:0 0 0 3px rgba(255,209,102,.4); border-radius:12px;
	animation:favPulse .8s ease 2;
  }
  @keyframes favPulse {
	0% { transform:scale(1); }
	50% { transform:scale(1.01); }
	100%{ transform:scale(1); }
  }
  
  /* opcional: para scrollIntoView con cabecera fija */
  .date-wrap, #favoritos { scroll-margin-top: 220px; }

  






@media (max-width: 768px) {
	.event-actions{ min-width: 30px; max-width: 30px; }
}
@media (max-width: 768px) {
	.event-title{ font-size: 1em;}
	.event-content{ font-size: 0.9em;}
}



/*
end eventos ---------------------------------
*/






/*
--------------------------------- destacado
*/


.destacados{

}

.destacados .destacado{
	border-radius: 10px;
	background-color: #fff;
	min-height: 20px;
	display: flex;
	align-items: center;
	justify-content: left;
	padding: 5px;
	margin-bottom: 6px;
	cursor: pointer;
	color: #666;
}

.destacados .destacado:hover{
	background-color: #f8f9f9;
}

.destacados .destacado small{ color: #365c8a; border-radius: 15px; background-color: #d4ebf2; padding: 5px; margin-right: 7px;}

/*
end destacado ---------------------------------
*/




#noria {
	position: fixed;
	left: 0;
	top: -200px;             /* empieza fuera de pantalla */
	width: 450px;
	transform: translateX(-5px); 
	pointer-events: none;
	opacity: 0;
	z-index: 1;
  }
  
  @keyframes fly1 {
	0%   { top: -300px; opacity: 0; }
	7%   { top: 0px; opacity: 0.8; }
	80% { top: 55vh; opacity: 0.8; }
	90% { top: 35vh; opacity: 0.8; }
	100% { top: 130vh; opacity: 0;}
  }
  
  #noria.active {
	animation: fly1 3s cubic-bezier(.22,.61,.36,1) forwards;
	z-index: 9999;
  }

  
@media (max-width: 768px) {
	#noria{ width: 250px;}
}

/*
@-webkit-keyframes fly1{
	0%   { transform: translate(-115px, -50vh); opacity: 0; } 
	10%  { opacity: 1; }
	90%  { opacity: 1; }
	100% { transform: translate(-115px, 100vh); opacity: 0; } 
}
	

@media (prefers-reduced-motion: reduce){
	#noria{ display:none !important; }
}
*/


.msginfoapp{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #38ad79;
	color: #f1f5fa;
	font-size: 1em;
	opacity: 0;
	z-index: -1;
	transition: opacity linear 0.2s;
}

.msginfoapp.active{
	opacity: 1;
	z-index: 9999;
}


.patrocinadores{
	width: 100%;
	margin: 0 auto;
	max-width: 800px;
}



#scrollToTopBtn{
	background-color: #005cbf;
	color: #fff;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
	width: 35px;
	height: 35px;
	cursor: pointer;
	right: 0;
	top: 45vh;
	position: fixed;
}


.prefooter{
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
	background-color: #f8f9f9;
	border-radius: 15px;
	padding: 15px;
}

.sbs{color: #afbabe; font-size: 10px;}
.sbs .bi{ font-size: 9px;}


@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
	opacity: 0; 
	animation: fadeInUp 700ms ease-out forwards;
}


.fade-in-2 {
	opacity: 0; 
	animation: fadeInUp 400ms ease-out forwards;
	animation-delay: 400ms;
}



.terranaturabtn{    background: linear-gradient(191deg, #ffffff, #dae9de); box-shadow: none; margin-bottom: 10px; color: #333 !important;}

@media (prefers-reduced-motion: reduce) {
	.fade-in { animation: none; opacity: 1; transform: none; }
}


@media (max-width: 576px) {
	footer nav div {
	  width: 40%;
	}
}


.alertas{
	padding: 15px;
	background-color: #eee;
	color: #365c8a;
	border: 1px dashed orange;
	border-left: 4px solid orange;
	margin: 0 auto;
	max-width: 1600px;
}

.event[data-date="2025-10-10"]{
	opacity: 1;
}


.event[data-date="2025-10-10"] .event-link{
	opacity: 0.6;
	cursor:not-allowed;
	text-decoration: line-through;
	background-color: #7d9aa3;
}


.event[data-date="2025-10-10"] .event-time{
	text-decoration: line-through;
}

.event[data-date="2025-10-10"] .event-time{
	text-decoration: line-through;
}






















/*
-- FEST
*/


.subtitles{
	font-size: 1.4em;
}



.bigtitles{
	font-size: 2.5em;
	padding-bottom: 10px;

}



.border-shadow{
	border-radius: 15px;
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.6);
}


.title-rounded{
	padding: 0.5em;
	background-color: #f5f4e8;
	color: #8f6408;
	display: inline-block;
	border-radius: 3px;
	margin: 10px;
	padding-left: 15px;
	padding-right: 15px;
}

.title-backgrounded-red{
	padding: 5px;
	/*background-color: #007c52;
	color: #fff;*/
	display: inline-block;
	padding-left: 12px;
	padding-right: 20px;
	font-weight: 300;
	font-family: "Momo Signature", cursive;
	/*border-left: 15px solid rgb(197, 16, 16);*/
	font-size: 2em;
	vertical-align: bottom;
}


.title-backgrounded-green{
	padding: 5px;
	/*background-color: #007c52;
	color: #fff;*/
	display: inline-block;
	padding-left: 12px;
	padding-right: 20px;
	font-weight: 300;
	font-family: "Momo Signature", cursive;
	/*border-left: 15px solid rgb(197, 16, 16);*/
	font-size: 2em;
	vertical-align: bottom;
}


.list-icon{
	padding: 0;
	margin: 0;
	font-size: 1.2rem;
}


.list-icon li{
	padding: 15px;
	padding-left: 5px;
	margin: 0;
	margin-left: 2px;
	display: flex;
	flex: 1;
	align-items: center;
}

.list-icon li::before{
	display: inline-block;
	content: "-";
	border-radius: 50%;
	background-color: #ffffff;
	color: #0ca867;
	line-height: 45px;
	min-width:  65px;
	min-height: 65px;
	max-width:  65px;
	max-height: 65px;
	text-align: center;
	margin-right: 17px;
	border: 9px solid #e8eeee;
	font-weight: bold;
	border-right-color: #fff;

}


.list-icon li:nth-child(1):before { content: "1";}
.list-icon li:nth-child(2):before { content: "2";}
.list-icon li:nth-child(3):before { content: "3";}
.list-icon li:nth-child(4):before { content: "4";}
.list-icon li:nth-child(5):before { content: "5";}
.list-icon li:nth-child(6):before { content: "6";}
.list-icon li:nth-child(7):before { content: "7";}
.list-icon li:nth-child(8):before { content: "8";}
.list-icon li:nth-child(9):before { content: "9";}
.list-icon li:nth-child(10):before{ content: "10";}




.bg-section{
	padding-top: 25px;
	padding-bottom: 25px;
	margin-top: 70px;
	margin-bottom: 70px;
	/*background-color: rgb(197, 16, 16);*/
	background-color: #fff;
	margin-top: 200px;
	border-radius: 20px;
	/*box-shadow: 0 15px 55px 0 rgb(235, 232, 207);*/
	color: #000000;
	/*background-image: url('../img/bgred.jpg');*/
	background-image: url('../img/dorado2.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center;
	align-items: center;
	min-height: 70vh;
	display: flex;
	align-items: center;
	
	/*
	border-top: 2px solid rgb(197, 16, 16);
	border-bottom: 2px solid rgb(197, 16, 16);
	*/
	
}

.bg-section h2{
	font-family: "Momo Signature", cursive;
}

.rounded-list li{
	padding: 25px;
	max-width: 650px;
	background-color: rgba(255, 255, 255, 0.4);
	margin-bottom: 45px;
}

.text-red{
	color: rgb(197, 16, 16);
}




.btn-link{
	color: rgb(197, 16, 16);
	border-radius: 99999px;
	padding-left: 2em;
	padding-right: 2em;
	padding-top: 1em;
	padding-bottom: 1em;
	cursor: pointer;
	transition: all linear 0.2s;
	margin: 7px;
	line-height: 1.1;
	background-color: #f8f9f9;
	border: 2px dashed #fff;
}

.btn-link .bi{
	display: block;
	color: #ccc;
	font-size: 32px;
	margin-bottom: 10px;
}

.btn-link:hover{
	border: 2px dashed rgb(197, 16, 16);
}
.btn-link:hover .bi{
	color: #494141;
}







.col-icon{
	font-size: 45px;
	display: inline-block;
	margin: 0 auto;
	width: 100%;
	text-align: center;
}



.btn-red{
	background-color: rgb(197, 16, 16);
	color: #fff;
	padding: 3px;
	border-radius: 25px;
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 7px;
	padding-bottom: 7px;
	cursor: pointer;
	transition: all linear 0.2s;
	margin: 7px;
	line-height: 1.1;
}

.btn-red:hover{
	background-color: rgb(253, 14, 14);
}


.calendario{
	width: 100%;
	max-width: 600px;
	background-color: #f8f9f9;
}


.rounded-bg{
	background-color: #f8f9f9;
	border-radius: 10px;
	padding-bottom: 15px;
	padding-top: 15px;
	margin-bottom: 45px;
}


#xmastfest-fechas h3{
	color: #007c52;
	font-size: 1.5em;
}

.npm{
	padding: 0;
	margin: 0;
}

  
@media (max-width: 768px) {
	html, body{ 
		font-size: 13px;
	}
}







/*  NIEVE */

  .snowflake {
	color: #fff;
	font-size: 1.5em;
	font-family: Arial, sans-serif;
  }


  .snowflakes.red .snowflake {
	/*color: #b30808;
	font-size: 14px;*/
  }


  @-webkit-keyframes snowflakes-fall {
	0% {
	  top: -10%;
	}
	100% {
	  top: 100%;
	}
  }
  @-webkit-keyframes snowflakes-shake {
	0%,
	100% {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	}
	50% {
	  -webkit-transform: translateX(80px);
	  transform: translateX(80px);
	}
  }
  @keyframes snowflakes-fall {
	0% {
	  top: -10%;
	}
	100% {
	  top: 100%;
	}
  }
  @keyframes snowflakes-shake {
	0%,
	100% {
	  transform: translateX(0);
	}
	50% {
	  transform: translateX(80px);
	}
  }
  .snowflake {
	position: absolute;
	top: -10%;
	z-index: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: default;
	-webkit-animation-name: snowflakes-fall, snowflakes-shake;
	-webkit-animation-duration: 10s, 3s;
	-webkit-animation-timing-function: linear, ease-in-out;
	-webkit-animation-iteration-count: infinite, infinite;
	-webkit-animation-play-state: running, running;
	animation-name: snowflakes-fall, snowflakes-shake;
	animation-duration: 10s, 3s;
	animation-timing-function: linear, ease-in-out;
	animation-iteration-count: infinite, infinite;
	animation-play-state: running, running;
  }
  .snowflake:nth-of-type(0) {
	left: 1%;
	-webkit-animation-delay: 0s, 0s;
	animation-delay: 0s, 0s;
  }
  .snowflake:nth-of-type(1) {
	left: 10%;
	-webkit-animation-delay: 1s, 1s;
	animation-delay: 1s, 1s;
  }
  .snowflake:nth-of-type(2) {
	left: 20%;
	-webkit-animation-delay: 6s, 0.5s;
	animation-delay: 6s, 0.5s;
  }
  .snowflake:nth-of-type(3) {
	left: 30%;
	-webkit-animation-delay: 4s, 2s;
	animation-delay: 4s, 2s;
  }
  .snowflake:nth-of-type(4) {
	left: 40%;
	-webkit-animation-delay: 2s, 2s;
	animation-delay: 2s, 2s;
  }
  .snowflake:nth-of-type(5) {
	left: 50%;
	-webkit-animation-delay: 8s, 3s;
	animation-delay: 8s, 3s;
  }
  .snowflake:nth-of-type(6) {
	left: 60%;
	-webkit-animation-delay: 6s, 2s;
	animation-delay: 6s, 2s;
  }
  .snowflake:nth-of-type(7) {
	left: 70%;
	-webkit-animation-delay: 2.5s, 1s;
	animation-delay: 2.5s, 1s;
  }
  .snowflake:nth-of-type(8) {
	left: 80%;
	-webkit-animation-delay: 1s, 0s;
	animation-delay: 1s, 0s;
  }
  .snowflake:nth-of-type(9) {
	left: 90%;
	-webkit-animation-delay: 3s, 1.5s;
	animation-delay: 3s, 1.5s;
  }
  .snowflake:nth-of-type(10) {
	left: 25%;
	-webkit-animation-delay: 2s, 0s;
	animation-delay: 2s, 0s;
  }
  .snowflake:nth-of-type(11) {
	left: 65%;
	-webkit-animation-delay: 4s, 2.5s;
	animation-delay: 4s, 2.5s;
  }





  



  /* ——— Namespace para no chocar ——— */

.inscripcion{
	/*background-color: #F8F9F9;*/
	/*background-image: url('../img/bgxmasw.jpg');*/
	background-attachment: fixed;
	background-position: center center;
	background-size: cover;
}


.form-group{
	padding: 10px;
	border-radius: 10px;
	/*border: 1px solid #eee;*/
	position: relative;
	background-color: #FFFFFF;
	
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}



.radiobtn{
	display: inline-block;
	padding: 7px;
	border-radius: 7px;
	border: 2px solid #c9d5da;
	width: 150px;
	margin: 7px;
	cursor: pointer;
	position: relative;
}

.radio-check{
	display: none;
}


.radiobtn:hover{
	border: 2px dashed #2acc9c;
	color: #178363;
}

.radiobtn input{
	display: none;
}

.radiobtn:has(input[type="radio"]:checked){
	border: 2px solid #0e946c;
	color: #0e946c;
}

.radiobtn:has(input[type="radio"]:checked) .radio-check{
	display: block;
	position: absolute;
	left: 5px;
	top: 0px;
	font-size: 25px;
	color: #27d6a2;
}


.group-title{
	position: absolute;
	top: -22px;
	left: 0px;
	background-color: #FFF;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 5px;
	padding-bottom: 3px;
	font-size: 13px;
	color: #09573b;
	font-weight: 600;

	box-shadow: 0 -10px 15px 0 rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	border-bottom-left-radius: 0;
	/*min-width: 160px;*/
}

.formline{
	padding: 10px;
	display: flex;
	gap: 15px;
	align-items: center;
	position: relative;
	margin-top: 20px;
}

.formlabel{
	font-weight: 600;
	position: absolute;
	top: -10px;
	left: 15px;
	background-color: #FFF;
	padding-left: 5px;
	padding-right: 15px;
	font-size: 12px;
	color: #575757;
	font-weight: 600;
}



.formcontrol{
	width: 100%;
	border-bottom: 1px dotted #a3a3a3;
	border-radius: 3px;
	background-color: #f7fafa;
	padding: 6px;
	font-size: 14px;
}

.formline input[type="checkbox"]{
	width: 22px;
	height: 22px;
	margin-right: 5px;
	vertical-align: middle;
}

.qb-table th{
	background-color: #f4fbf9;
	color: #375c4f !important;
}


.video-preview{
	border-radius: 16px;
	border: 2px solid #eee;
	background-color: #f9f8f9;
	width: 100%;
	min-height: 240px;
}

.simplelist{
	padding: 15px;
	margin-bottom: 25px;
	font-size: 14px;
}

.simplelist li{
	list-style: circle;
	margin-left: 20px;
}


.cat0.hidden{
	display: none !important;
}


.cat1.hidden{
	display: none !important;
}






#appinfo {
    display: none;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
}

.appinfo-loading {
    color: #1976d2;
	padding: 5px;
}

.appinfo-loading::before {
    content: "- ";
	padding: 5px;
}

.appinfo-success {
    color: #2e7d32;
	padding: 5px;
}

.appinfo-success::before {
    content: "✓ ";
}

.appinfo-error {
    color: #c62828;
	padding: 5px;
}

.appinfo-error::before {
    content: "⚠ ";
}

.appinfo-info {
    color: #e65100;
	padding: 5px;

}

#msgparticipantes{
	color: #b30808;
	text-align: center;
	padding: 3px;
	font-size: 15px;
	font-weight: bold;
}




#qmodal{
	position: fixed;
	z-index: 9999;
	background-color: rgba(0, 0, 0, 0.8);
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	flex-direction: column;
	display: none;
	padding: 25px;
}



#qmodal.active{
	display: flex;
}



#qmodal .qmodal-body{
	width: 1200px;
	margin:0 auto;
	max-width: 100%;
	overflow-y: scroll;           
	border: 1px solid #e5e7eb;
	border-radius: .5rem;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 1rem;
	background: #fff;

}

#qmodal .qmodal-header{
	width: 1200px;
	margin:0 auto;
	max-width: 100%;
	border-top-left-radius: .5em;
	border-top-right-radius: .5em;
	background-color: #007c52;
	color: #fff;
	display: flex;
	height: 40px;
	padding: 7px;
}

#qmodal .qmodal-title{
	width: 100%;
}

#qmodal .qmodal-closer{
	width: 90px;
	text-align: center;
	cursor: pointer;
}


#loader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.7);
	display: none;
	align-items: center;
	justify-content: center;
	color: rgb(88, 88, 88);
}

#loader .loader-content{
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	display: flex;
}


#loader.active{
	display: flex;
}

.fieldko{
	box-shadow: 0 2px 6px -3px red;
	transition: all linear 0.2s;
}