:root {
	--primary-color: #1a1a1a;
	--secondary-color: #007bff;
	--text-light: #c7dcf3;
	--titular-noticia: #121212;
	--titulos-secciones: #121212;
	--firma-noticia: #757776;
	--black: #000;
	--white: #fff;
	/*--red: #e41b3c;*/
	--red: #cc2c2c;
	--background-main: #f8f9fa;
	--text-color: #343540;
	--text-ficha: #505368;
	--texto-gris: #505368;
	/*--border-color: #d7d8dd;*/
	--border-color: #e7e7e7;
	--background-nav: #25262b;
	--background-back-top: #2b2c34;
	--enlace-nav: #c5c6cd;
	--enlace-footer: #ccc;
	--background-topnav: #1f2023;
	--background-hero: #161616;
	--enlace-direccion: #c7dcf3;
	--enlace-direccion-hover: #95bfed;
	--precio-entrada: #1d781d;
	--btn-blue: #006ce4;
	--btn-dark-blue: #064f9e;
	--btn-dark-grey: #ececef;
	--border-radius: 6px;
}


.special-gothic-expanded-one-regular {
	font-family: "Special Gothic Expanded One", sans-serif;
	font-weight: 400;
	font-style: normal;
}


html,
body {
	overflow-x: hidden;
}

@media (min-width: 1024px) {
	.sticky-aside {
		overflow: visible !important;
	}
}

body {
	font-family: "Segoe UI", Helvetica, Arial, sans-serif;
	background-color: var(--background-main);
	color: var(--text-color);
	font-size: 18px;
	line-height: 27px;
	font-weight: normal;
}


@media (max-width: 768px) {
	body {
		font-size: 16px;
	}
}

main {
	/* padding-top: 83px; cambiar a esta padding si se pone la barra fina arriba para salvar la altura que la barra fina */
	padding-top: 51px;
}

@media (max-width: 768px) {
	main {
		padding-top: 62px; /* para salvar la altura que esta fija de la barra */
	}
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a.nu:hover {
	text-decoration: none;
}

/* menu */
.navbar-top {
	background-color: var(--background-topnav);
	color: var(--enlace-nav);
	padding: 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
}

.navbar-top a:hover {
	text-decoration: none;
}

.navbar-custom {
	background-color: var(--background-nav);
	z-index: 1002;
	/* margin-top: 32px; descomentar si se pone la barra fija fina arriba*/
	height: 52px;
}

@media (max-width: 768px) {
	.navbar-custom {
		padding-top: 12px;
		margin-top: 0px; /* la barra fija fina en movil esta oculta */
		height: 62px;
	}
}

.navbar-custom a {
	font-size: 16px;
	color: var(--enlace-nav);
	font-weight: bold;
	transition: color 0.3s ease-in-out;
}

.navbar-expand-md .navbar-nav .nav-link:last-of-type {
	padding-right: 0px !important;
}

.navbar-custom a:hover {
	color: var(--white);
	text-decoration: none;
}

.nav-item {
	margin-right: 24px;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hamburger {
	position: relative;
	width: 35px;
	height: 30px;
	border: none;
	background: none;
	cursor: pointer;
	z-index: 1003;
}

.hamburger span {
	position: absolute;
	height: 3px;
	width: 100%;
	background: white;
	left: 0;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.hamburger span:nth-child(1) {
	top: 0;
}

.hamburger span:nth-child(2) {
	top: 13px;
}

.hamburger span:nth-child(3) {
	top: 26px;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 13px;
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
	top: 13px;
}

/* Menú lateral */
.side-menu {
	position: fixed;
	top: 62px;
	left: -250px;
	width: 250px;
	height: 100vh;
	background-color: #000;
	color: white;
	transition: left 0.4s ease;
	padding: 10px 20px 60px 20px;
}

.side-menu.open {
	left: 0;
}

.side-menu a {
	color: var(--enlace-nav);
	display: block;
	margin: 15px 0;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
}

.side-menu a:hover {
	color: var(--white);
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	/* oscurece fondo pero NO desenfoca */
	z-index: 999;
	display: none;
}

.overlay.show {
	display: block;
}

/* fin menu */


.heading {
	display: block;
	font-size: 22px;
	margin-bottom: 8px;
}

.h1-recinto {
	line-height: 1 !important;
	margin-bottom: 20px !important;
	margin-top: 15px;
}

section p:last-of-type {
	margin-bottom: 0 !important;
}

.hero-section {
	background-color: var(--background-hero);
	color: white;
	/*padding: 4rem 0 2rem;*/
	padding: 24px 0;
}

.hero-section h1 {
	font-size: 48px;
	font-weight: 900;
	margin-bottom: 8px;
	color: #fff;
	line-height: normal;
}

section h2 {
	font-size: 22px;
	font-weight: 700;
	line-height: 25px;
}

@media (max-width: 768px) {
	section h2 {
		font-size: 16px;
	}
}

.section-intro {
	padding: 0 0 32px 0;
	border-bottom: 1px solid var(--border-color);
}

.section-info {
	padding: 48px 0 32px 0;
	border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {

	.section-intro,
	.section-info {
		padding: 24px 0;
	}
}

.hero-direccion {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	line-height: 125%;
	margin-bottom: 8px;
}

.mapa-asientos {
	margin-top: 30px;
	margin-left: 60px;
}

.enlace-flecha {
	display: flex;
	align-items: center;
	width: max-content;
	color: var(--btn-blue);
	font-size: 16px;
	font-weight: bold;
	transition: color 0.3s ease-in-out;
	text-decoration: none;
	cursor: pointer;
}

.enlace-flecha_sa {
	color: var(--btn-blue);
	font-size: 16px;
	font-weight: bold;
	transition: color 0.3s ease-in-out;
	text-decoration: none;
	cursor: pointer;
}

.hero-enlace {
	display: flex;
	align-items: center;
	width: max-content;
	color: var(--enlace-direccion);
	font-size: 16px;
	font-weight: bold;
	transition: color 0.3s ease-in-out;
	text-decoration: none;
	margin-top: 10px;
	cursor: pointer;
}

.hero-enlace:hover {
	text-decoration: underline;
	color: var(--enlace-direccion-hover);
}

.enlace-flecha:hover {
	text-decoration: underline;
}

.chevron-right {
	margin-top: 3px;
	margin-left: 0px;
}

@media (max-width: 768px) {
	.hero-section {
		padding: 2rem 0 1rem;
	}

	.hero-section h1 {
		font-size: 28px;
	}

	.hero-direccion,
	.hero-enlace {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.listado-datos {
		/*margin-top:16px;*/
		margin-top: 8px;
	}
}

.info-item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 22px;
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 0;
}

.info-item:not(:last-of-type) {
	margin-bottom: 24px;
}

.info-dato {
	font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 4px;
}

.info-dato-musical {
	font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 4px;
	color: #222222;
}

.img-recinto {
	aspect-ratio: 3/2;
	width: 100%;
	height: auto;
	border-radius: 6px;
	margin-bottom: 8px;
}

.enlace-recinto {
	display: block;
	font-weight: bold;
	font-size: 20px;
	line-height: 1.125em;
	color: var(--btn-blue);
}

.direccion-recinto {
	margin-top: 10px;
	color: #343540;
	font-size: 16px;
	line-height: 1.25em;
}

.info-dato-recinto {
	font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 4px;
	color: #222222;
	font-size: 15px;
}

.info-detalles-recinto {
	color: var(--text-color);
	font-size: 14px;
}

.info-detalles {
	color:var(--text-color);
	font-size: 16px;
}

@media (max-width: 768px) {

	.info-dato,
	.info-dato-musical {
		font-size: 14px;
	}
}

.google-maps {
	position: relative;
	padding-bottom: 50%;
	/* This is the aspect ratio height: 0; */
	overflow: hidden;
}

.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.recinto-cartelera {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px;
}

.musical-ficha__wrap {
	background: var(--white);
	max-width: 456px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 16px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
}

.musical-ficha__box {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 16px;
}

.musical-ficha_thumb {
	display: block;
	width: 80px;
	height: 120px;
	box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.1);
}

.musical-ficha_datos__wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	padding: 0;
}

.musical-ficha_datos__box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	padding: 0;
}

.musical-ficha_nombre {
	color: var(--text-color);
	font-size: 22px;
	font-weight: bold;
	line-height: 1.125em;
	cursor: pointer;
}

.musical-ficha_nombre:hover {
	text-decoration: underline;
}

.musical-ficha_descripcion {
	color: var(--text-ficha);
	font-size: 14px;
	font-weight: normal;
	line-height: 1.25em;
}

.musical-ficha-precio {
	color: var(--precio-entrada);
	font-size: 12px;
	font-weight: normal;
	line-height: 1.125em;
}

.musical-ficha-botones__box {
	width: 100%;
	max-height: 56px;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: center;
	gap: 8px;
}

.musical-ficha-btn {
	width: 100%;
	max-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
	border-radius: 6px;
	padding: 12px 0;
	transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-transparente {
	color: var(--btn-blue);
	border: 1px solid var(--border-color);
}

.btn-transparente:hover {
	/*background-color: var(--btn-dark-grey);*/
	background-color: #f0f6fd;
	color: var(--btn-dark-blue);
	text-decoration: none;
}

.btn-color {
	color: var(--white);
	background-color: var(--btn-blue);
}

.btn-color:hover {
	background-color: var(--btn-dark-blue);
	text-decoration: none;
}

.back-top {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--enlace-nav);
	background-color: var(--background-back-top);
	padding: 10px 0;
	box-shadow: inset 0px -1px 0px var(--text-color);
	transition: background-color 0.3s ease-in-out;
}

.back-top span {
	font-size: 14px;
	font-weight: bold;
}

.back-top:hover {
	background-color: var(--text-color);
	text-decoration:none;
}

.back-top a {
	color: var(--enlace-nav);
}

.footer-section {
	background-color: var(--primary-color);
	color: white;
	padding: 10px 0;
}

.footer-section a {
	color: var(--enlace-footer);
	padding: 0.25rem 0;
}

.footer-section a:hover {
	/*color: var(--white);*/
	text-decoration: underline;
}

.footer__grid-logo {
	grid-area: logo;
}

.footer__grid-atencion-cliente {
	grid-area: atencion-cliente;
}

.footer__grid-entradas {
	grid-area: entradas;
}

.footer__grid-noticias {
	grid-area: noticias;
}

.footer__grid-sobre-nosotros {
	grid-area: sobre-nosotros;
}

.footer__grid-copyright {
	grid-area: copyright;
}

.footer__grid-area {
	grid-area: legal;
}

.footer__grid__top {
	display: grid;
	grid-template-areas: 'logo atencion-cliente entradas noticias sobre-nosotros';
	gap: 32px;
	padding: 30px 0;
	font-size: 14px;
	color: #c5c6cd;
	line-height: 1em;
}

.footer__grid-hr-2 {
	display: block;
	height: 1px;
	background-color: var(--text-color);
}

.footer__grid__bottom {
	display: grid;
	grid-template-areas: 'copyright legal';
}

.footer-social-media__box {
	display: flex;
	gap: 16px;
}

.copyright {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5625rem;
	color: var(--white);
	opacity: 0.5;
	margin: 0;
	padding-top: 3px;
}

.footer-legal__ul {
	list-style: none;
	color: #d7d8dd;
	font-size: 12px;
	line-height: 1.125em;
	padding: 10px 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: right;
	gap: 16px;
}

@media (max-width: 768px) {
	.footer__grid__top {
		grid-template-areas: 'logo';
		/* grid-template-areas: 'logo''hr1''atencion-cliente''entradas''noticias''sobre-nosotros'; cambiar a este grip para footer completo*/
		gap: 24px;
		padding: 24px;
		text-align: center;
	}

	.footer__grid__bottom {
		grid-template-areas: 'legal''hr3''copyright';
		gap: 24px;
		padding: 24px;
		text-align: center;
	}

	.footer__grid-hr-1 {
		display: block;
		grid-area: hr1;
		height: 1px;
		background-color: var(--text-color);
	}

	.footer__grid-hr-2 {
		display: block;
		margin: 0 25px;
		height: 1px;
		background-color: var(--text-color);
	}

	.footer__grid-hr-3 {
		display: block;
		grid-area: hr3;
		height: 1px;
		background-color: var(--text-color);
	}

	.footer-social-media__box {
		align-items: center;
		justify-content: center;
	}

	.footer-legal__ul {
		flex-direction: column;
		gap: 0.25rem;
	}
}

.footer-grid-area__titulo {
	font-size: 14px;
	font-weight: bold;
	line-height: 1.125em;
	margin: 0 0 8px 0;
}

ul.footer-link li {
	padding: 0.25rem 0;
}

h2 {
	position: relative;
	padding-bottom: 11px;
	margin-bottom: 15px;
}

h2::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 45px;
	height: 3px;
	background-color: #cc2c2c;
}


/* inicio css musical */


img {
	vertical-align: middle;
}

.fz-14 {
	font-size: 14px !important;
	line-height: 1.25em;
}

.fz-16 {
	font-size: 16px !important;
}


.fz-18 {
	font-size: 18px !important;
}

.tc-gris {
	color: var(--texto-gris);
}

.header__musical {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	background-color:#161616;
}

.header__musical_bg {
	position: relative;
	grid-column: 1;
	grid-row: 1;
	text-align: center;
}

.header__musical_media {
	width: 100%;
	height: auto;	
	border-radius:6px;
}

@media(max-width: 768px) {
	.header__musical_bg {
		padding-top:0;
		max-height: 300px !important;
		min-height: 300px !important;
	}

	.header__musical_media {
		height: 300px;
		width: 100%;	
		object-fit: cover;	
		object-position: 50% 50%;		
	}
}

.hero__venta-entradas {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #161616;
}

.hero-musical-img__container {
	background-size: auto;
	border-radius: 6px;
	animation: loading-placeholder 2s ease-in infinite;
}

.hero-musical-img {
	width: 100%;
	border-radius: 6px;
	height: 326px;
	object-fit: cover;
	object-position: top;
}

.hero-musical-info__container {
	display: grid;
	grid-template-areas:
		"cartel info"
		"cartel info"
		"cartel descripcion"
		"cartel entradas";
	column-gap: 24px;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto 1fr;
	padding-bottom: 0;
}


@media(max-width: 768px) {
	.hero-musical-info__container {
		grid-template-areas:
			"cartel info"
			"descripcion descripcion"
			"entradas entradas";
	}
}

.hero-musical-cartel__grip {
	grid-area: cartel;
}

.hero-musical-descripcion__grip {
	grid-area: descripcion;
}

.hero-musical-cartel {
	height: 100%;
	max-height: 250px;
	width: 100%;
	box-shadow: 0px 1px 2px 1px #000;
}

.hero-musical-titulo__grip {
	grid-area: info;
}

.hero-musical-titulo {
	font-weight: 900;
	font-size: 48px;
	line-height: 1.125em;
	color: #fff;
	margin: 0;
}

.hero-musical-titulo span {
	display: block;
	font-size: 22px;
	line-height: 22px;
	font-weight:500;
}

.hero-musical-descripcion {
	font-weight: bold;
	font-size: 16px;
	line-height: 1.25em;
	color: #fff;
	margin-top: 8px;

}

@media(max-width: 768px) {
	.hero-musical-descripcion {
		font-size: 16px;
		font-weight: 400;
		margin-top:20px;
	}

	.hero-musical-titulo {	
		margin-top:0;
		font-size: 24px;
	}

	.hero-musical-cartel {

		height: auto !important;
		max-height: 120px !important;
		width: auto !important;
	}

}

.hero-musical-puntuacion__wrap {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	cursor: pointer;
}

@media(max-width: 768px) {
	.hero-musical-puntuacion__wrap  {
		margin-top: 5px;
	}

}

.hero-musical-puntuacion__wrap span {
	color: #fff;
	font-size: 14px;
}

.hero-musical-puntuacion {
	padding: 5px 8px;
	border-radius: 50px;
	background-color: #e3ece4;
	color: #1b5a1b;
	font-size: 14px;
	font-weight: 900;
	height: 24px;
	display: flex;
	align-items: center;
}

.hero-musical-estrellas__wrap {
	color: currentColor;
	display: flex;
	gap: 3px;
	padding: 0 1px;
}

.hero-musical-entradas__grip {
	grid-area: entradas;
	padding-top: 16px;
	border-top: 1px solid #343540;
	margin-top: 16px;
}

.hero-musical-precio__container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0px;
}

.hero-musical-precio__wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 2px;
}

.hero-musical-texto-desde {
	font-weight: bold;
	font-size: 12px;
	line-height: 1.125em;
	color: #fff;
}

.hero-musical-texto-precio {
	font-weight: bold;
	font-size: 18px;
	color: #fff;
	line-height: 1;
}

.btn-comprar-entradas_square {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	padding: 16px 20px;
	max-width: 250px;
	height: 50px;
	background: var(--btn-blue);
	border-radius: 6px;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.125em;
	transition: background 0.3s ease-in-out;
}

.btn-comprar-entradas_radius {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	padding: 11px 30px;
	min-width: 200px;
	height: 50px;
	background: var(--btn-blue);
	border-radius: 3.125rem;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	transition: background 0.3s ease-in-out;

}

.btn-comprar-entradas_radius span,
.btn-comprar-entradas_square span {
	padding-left: 3px;
	padding-bottom: 3px;
}

.btn-comprar-entradas_radius:hover,
.btn-comprar-entradas_square:hover {
	background: var(--btn-dark-blue);
	color: #fff;
	text-decoration: none;
}

.aviso-importante {
	display: flex;
	flex-direction: column;
}

.aviso-importante__container {
	position: relative;
	background: #000;
	border-top: 1px solid #343540;
}

.aviso-importante-texto__wrap {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 24px 0px;
}

.aviso-importante-texto {

	display: flex;
	flex-direction: column;
	flex-grow: 1;
	align-items: center;
	gap: 4px;
	line-height: 1.25em;
}

.aviso-importante-texto h3 {
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	margin: 0;
}

.aviso-importante-texto p {
	font-size: 14px;
	color: #c5c6cd;
	margin: 0;
}

.proximas-funciones__wrap {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	flex: 1 1 0px;
	gap: 16px;
	padding: 0px;
}

.proximas-funciones-fecha__wrap {
	display: flex;
	flex-direction: column;
	flex: 1 1 0px;
	text-align: center;
	background: #ececef;
	align-self: stretch;
	padding: 16px;
	border-radius: 6px;
}

.proximas-funciones-dia {
	font-size: 14px;
	line-height: 1.125em;
	text-align: center;
	color: var(--texto-gris);
	margin-bottom: 16px;
}

.proximas-funciones-hora__wrap {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex-wrap: wrap;
	flex: 1;
}

.proximas-funciones-hora__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	line-height: 1em;
	background: #006ce4;
	color: #fff;
	padding: 16px;
	border-radius: 6px;
	transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.proximas-funciones-hora__btn:hover {
	background: #064f9e;
	text-decoration: none;
}

.proximas-funciones-sin-funcion {
	font-size: 14px;
	font-weight: bold;
	color: var(--texto-gris);
	margin: 0;
	line-height: 1.125em;
}

.content__wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: start;
	gap: 16px;
	padding: 16px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
}

.content-horizontal__container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.content-horizontal-left__container {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.content-titulo {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border-color);
}

.content-titulo-icon {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.content-titulo h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 0;
}

.content-titulo-icon h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 0 8px;
}

.categorias__wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
}

.review-critica__wrap {
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 24px;
}

.medio-img {
	width: 160px;
	height: 24px;
	margin-bottom: 16px;
}

.review-critica-quote {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5em;
}

.review-critica-medio {
	font-size: 16px;
	font-style: italic;
	line-height: 1.125em;
	margin: 16px 0 4px 0;
}

.review-critica-autor {
	font-size: 14px;
	line-height: 1.125em;
	color: var(--texto-gris);
	margin: 0;
}

.review-usuarios-puntuacion {
	display: flex;
	align-items: center;
	height: 24px;
	font-size: 14px;
	font-weight: 900;
	color: #1b5a1b;
	padding: 5px 8px;
	border-radius: 50px;
	background-color: #e3ece4;
}

.review-usuarios-estrellas_wrap {
	display: flex;
	gap: 3px;
	padding: 0 1px;
}

.enlace-puntuaciones {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	width: 100%;
	color: #0068d9;
	cursor: pointer;
	margin-bottom: 10px;
}

.recuento-puntuaciones__container {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	width: 100%;
}

.recuento-puntuaciones-num-estrellas {
	font-size: 14px;
	line-height: 1.25em;
	width: 60px;
}

.recuento-puntuaciones-barra__container {
	flex-grow: 1;
	height: 6px;
	border-radius: 50px;
	background-color: #ececef;
	margin-left: 10px;
}

.recuento-puntuaciones-relleno-barra {
	background-color: #FBBC04;
	float: left;
	border-radius: 50px 0 0 50px;
	height: 100%;
}

.recuento-puntuaciones-porcentaje {
	font-size: 14px;
	line-height: 1.25em;
	width: 35px;
}

.review-usuario__wrap {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 24px;
}

.review-usuario-estrellas__container {
	color: currentColor;
	display: flex;
	gap: 3px;
	padding: 0 1px;
}

.review-usuario-titulo {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5em;
	margin-top: 16px;
}

.review-usuario-quote {
	font-size: 16px;
	line-height: 1.5em;
	margin-top: 8px;
}

.review-usuario-autor {
	color: var(--texto-gris);
	font-size: 14px;
	line-height: 1.125em;
	margin-top: 16px;
}

.review-usuario-fecha {
	font-weight: 500;
	font-size: 16px;
	margin-left: 5px;
}

.content-btn {
	display: block;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.125em;
	border-radius: 6px;
	padding: 16px 0;
	background: #fff;
	transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.categoria-btn {
	display: inline-block;
	border-radius: 6px;
	background-color: #fff;
	border-radius: .25rem;
	color: #006ce4;
	border: .0625rem solid #a9acaa;
	margin: .375rem .5rem .375rem 0;
	min-width: 5.5rem;
	padding: .625rem 15px;
	font-size: 16px;
	font-weight: bold;
	font-weight: 600;
	line-height: 1.5rem;
	transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.categoria-btn:hover {
	color: #006ce4;
}

.barra-navegacion-documento__container {
	background-color: #fff;
	border-bottom: 1px solid #e7e7e7;
	border-top: 1px solid #e7e7e7;
	z-index: 100;
}

.barra-navegacion-documento__wrap {
	display: flex;
	position: relative;
}

.barra-navegacion-documento__wrap a {
	text-decoration: none;
}

.barra-navegacion-documento__wrap a:hover {
	color: #343540;
}

.seccion-documento {
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 12px;
	padding-top: 12px;
	color: #505368;
	text-decoration: none;
	cursor: pointer;
}

.seccion-documento:not(:last-child) {
	margin-right: 24px;
}

.seccion-documento.actual {
	color: #343540;
	border-bottom: 4px solid #343540;
}

.equipo__wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: start;
	padding: 16px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	padding-left: 30px;
	padding-right: 30px;
	background-color: #fff;
}

.equipo__wrap h3 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 0px;
	padding-bottom: 0px;
	margin-top: 5px;
}

.elenco__item,
.equipo-creativo__item {
	display: flex;
	width: 100%;
	flex-direction: row;
	align-items: center;
	vertical-align: middle;
	gap: 16px;
	padding-bottom: 16px;
	padding-top: 16px;
	margin-bottom: 0;
	border-bottom: 1px solid #ddd;

}

.elenco__item:last-of-type,
.equipo-creativo__item:last-of-type {
	border-bottom: 0;
}

.equipo-creativo__item:first-of-type {
	margin-top: 2px;
}

.elenco-miniatura__wrap {
	width: 72px;
	height: 72px;
}

.elenco-miniatura {
	width: 72px;
	height: 72px;
	border-radius: 50%;
}

.elenco-nombre {
	font-weight: bold;
	font-size: 18px;
	line-height: 1.25em;
	color: #343540;
	margin: 4px 0;
}

.elenco-nombre a {
	color: var(--btn-blue);
}

.elenco-personaje {
	font-size: 14px;
	line-height: 1em;
	color: #222222;
}

.equipo-creativo__wrap {
	padding: 14px 0;
}

.equipo-creativo-nombre {
	font-weight: bold;
	font-size: 18px;
	line-height: 1em;
	color: #343540;
	margin: 4px 0;
}

.equipo-creativo-cargo {
	font-size: 14px;
	line-height: 1.25em;
	color: #222222;
}


/* fin css musical */

/* faq */


*:focus:not(:focus-visible) {
	outline: none !important;
	box-shadow: none !important;
}


.accordion-button {
	background-color: #fff;
	color: #222;
	font-weight: 500;
}

.accordion-button:not(.collapsed) {
	background-color: #fff;
	color: #222222;
}

.accordion-button span {
	font-weight: bold;

}

.accordion-body {
	background-color: #fff;
}

.accordion-item {
	border-top-left-radius: 6px !important;
	border-top-right-radius: 6px !important;
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
	border: 1px solid #d7d8dd !important;
}

.accordion-item button {
	border-top-left-radius: 6px !important;
	border-top-right-radius: 6px !important;
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

.accordion-header {
	position: relative;
	padding-bottom: 3px;
	margin-bottom: 0;
}


.contacto-faq__wrap {
	display: inline-flex;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 5px;
	padding-top: 5px;
	border: 1px solid #e7e7e7;
	border-radius: 6px;
	background-color: #fff;
}

.contacto-faq__wrap__icon {
	padding: 22px 0px 22px 22px;
	line-height: 1.5;
}

.peticion-faq {
	padding: 16px 20px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
	text-transform: uppercase;
	color: #222;
}

.peticion-faq span {
	text-transform: none;
	font-weight: 400;
	font-size: 16px;
}

/* fin faq */

/* inicio index noticias */


.magazine {
	font-family: 'Special Gothic Expanded One';
	color: #000 !important;
	font-size: 65px;
	text-align: center;
	margin-bottom: 10px;
}

.magazine-menu__box {
	position: relative;
	font-size: 1.6rem;
	line-height: 1.5;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}


.magazine-menu__ul {
	position: relative;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;

	height: 60px;
	margin: 0;
	padding: 0;
}

.magazine-menu__ul li {
	font-family: 'Special Gothic Expanded One';
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
	color: #000;
	text-transform: uppercase;
	border-bottom: 3px solid transparent;
	border-top: 3px solid transparent;
	padding: 0 15px;
	margin: 0;
	cursor: pointer;
}

.magazine-menu__ul li.active {
	color: var(--red);
	border-bottom: 3px solid var(--red);
}


.fullwidth-mobile {
	width: 100vw;
	/* ancho completo viewport */
	margin-left: calc(-50vw + 50%);
	/* ajusta para salir del container centrado */
}

/* Solo en móvil */
@media(min-width: 768px) {
	.fullwidth-mobile {
		width: auto;
		margin-left: 0;
	}
}

.navbar-scroll {
	overflow-x: auto;
	white-space: nowrap;
	position: relative;
}

/*
    .navbar-scroll::-webkit-scrollbar {
      display: none;
    }

*/

@media (min-width: 768px) {
	.navbar-scroll {
		justify-content: center;
	}
}


.no-underline:hover {
	text-decoration: none;
}

.noticia-thumb {
	width: 100%;
	height: 100%;
	border-radius: 0px;
	object-fit: cover;
	aspect-ratio: 3/2;
	border-radius: 6px 6px 0 0;
}

.noticia-thumb:hover {
	filter: brightness(85%);
}

.noticia-datos__box {
	background-color: #fff;
	padding: 12px 16px;
	height: 100%;
	border-radius: 0 0 6px 6px;
	border: 1px solid var(--border-color);
}

.noticia-categoria__wrap {
	display: flex;
	flex-wrap: wrap;
}

.index__noticia-categoria {
	display: block;
	/*padding-bottom: 10px;*/
	padding-bottom: 6px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: var(--red);
}

.index__noticia-titular {
	color: var(--titular-noticia);
	font-weight: bold;
	font-size: 20px;
	padding-top: 0px;
	padding-bottom: 10px;
}

.index__autor-noticia {
	display: block;
	font-size: 14px;
	line-height: 1;
	/*font-weight: 700;*/
	font-weight: 600;
	color: var(--firma-noticia);
}

.index__fecha-noticia {
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
	color: var(--firma-noticia);
}

.index__noticias-separador {
	color: #000;
	border-bottom: 2px solid var(--titulos-secciones);
	padding-bottom: 20px;
	margin-bottom: 32px;
	margin-top: 0px;
}


/* fin index noticias */


/* inicio noticia */


.main-aside {
	position: relative;
	width: 100%;
}

@media (min-width: 1024px) {
	.main-aside {
		width: 300px;
		margin-top: 0;
	}

	.cuerpo-noticia, .noticias-autor {
		display: flex;
		justify-content: space-between;
	}
}


.main-aside>*,
.main-aside .sticky>* {
	margin-bottom: 10px;
}


@media (min-width: 1024px) {
	.sticky {
		position: sticky;
		top: 120px;
	}
}

.main-container {
	width: 100%;
	padding-top: 20px;
}

@media (min-width: 1024px) {
	.main-container {
		width: calc((100% - 300px) - 30px);
	}
}

@media (max-width: 768px) {
	.main-container {
		padding-top: 0px;
	}
}


.imagen-contenedor {
	width: 100%;
	height: auto;
	/* altura desktop */
	overflow: hidden;
}

.imagen-contenedor-h {
	width: 100%;
	height: auto;
	/* altura desktop */
	overflow: hidden;
}

.imagen-responsive {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

@media (max-width: 768px) {
	.imagen-contenedor {
		height: 400px;
	}

	.imagen-responsive {
		object-fit: cover;
		object-position: center;
	}
}

.pie-foto {
	display: block;
	font-size: 0.70028rem;
	line-height: 1.5;
	letter-spacing: 0.0225rem;
	text-transform: uppercase;
	color: #222;
	margin-top: 10px;
}

.pie-video {
	display: block;
	font-size: 0.70028rem;
	line-height: 1.5;
	letter-spacing: 0.0225rem;
	text-transform: uppercase;
	color: #222;
	margin-top: 5px;
}


.noticia-cabecera__wrap {
	padding-top: 20px;
	padding-bottom: 50px;
}

@media (max-width: 768px) {

	.noticia-cabecera__wrap {
		padding-bottom: 18px;
	}

}

.noticia-categoria {
	display: block;
	font-size: 18px;
	font-weight: bold;
	color: var(--red);
}

.noticia-cabecera__box {
	width: 100%;
	max-width: 85%;
}

@media (max-width: 768px) {
	.noticia-cabecera__box {
		max-width: 100%;
	}
}

.noticia-titular {
	color: var(--titular-noticia);
	font-size: 52px;
	line-height: 56px;
	font-weight: 700;
	margin-bottom: 30px;
	margin-top: 10px;
}

.noticia-entradilla {
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
}


@media (max-width: 768px) {
	.noticia-titular {
		font-size: 28px;
		font-weight: 700;
		line-height: 32px;
	}

	.noticia-entradilla {
		font-size: 16px;
		line-height: 24px;
	}

}

.noticia-autor__box {
	padding-top: 32px;
	padding-bottom: 32px;
}

.noticia-autor__wrap {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
}

.noticia-autor_foto__wrap {
	width: 66px;
	height: 66px;
}

.autor-foto {
	width: 66px;
	height: 66px;
	border-radius: 50%;
	vertical-align: middle;
}

.noticia-autor__nombre {
	display: block;
	font-size: 14px;
	/*font-weight: 700;*/
	font-weight: 600;
	line-height: 1.3;
	color: var(--firma-noticia);
}

.noticia-autor__nombre a {
	color: #000;
	text-decoration: none;
}

.noticia-autor__nombre a:hover {
	text-decoration: underline;
}

.noticia-fecha {
	font-size: 14px;
	font-weight: 400;
	color: var(--firma-noticia);
}

.cuerpo-noticia .main-container img, .img-noticia {
	margin-top: 30px;
	margin-bottom: 46px;
	width: 100%;
	height: auto;
}

.cuerpo-noticia .main-container h2 {
	padding-top:24px;
	margin-bottom:24px;
}

@media (max-width: 768px) {
	.cuerpo-noticia .main-container img, .img-noticia {
		margin-top: 14px;
		margin-bottom: 26px;
	}
}

.seccion-underline {
	color: #000;
	border-bottom: 2px solid var(--titulos-secciones);
	padding-bottom: 5px;
	margin-bottom: 20px;
	margin-top: 70px;
}

.seccion-underline h4 {
	font-size: 24px;
	line-height: 1.11111em;
	font-weight: 700;
	color: var(--titulos-secciones);
}

.video-yt__wrap {
	position:relative;
	height:0;
	padding-bottom:56.25%;
}

.video-yt__wrap iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	max-width:100%;
}


/* fin noticia */

/* inicio redactor */


.colaborador-miniatura__wrap {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.colaborador-miniatura__img {
	width: 125px;
	height: 125px;
}

.colaborador-sobre-mi {
	font-size: 16px;
	line-height: 1.5em;
	font-weight: 400;
	color: #2e302f;
}

.colaborador-miniatura__img img {
	width: 125px;
	height: 125px;
	border-radius: 50%;
	vertical-align: middle;
}

.colaborador-musicales {
	margin-top: 50px;
}

.separador {
	color: #000;
	border-bottom: 2px solid var(--titulos-secciones);
	margin-top: 32px;
	padding-top: 0;
	padding-bottom: 0;
	margin-bottom: 32px;
}


.social-icons {
	display: flex;
	justify-content: flex-start;
}

.social-icons a {

	color: #000;
	font-size: 40px;
	text-decoration: none;
	transition: color 0.3s ease;
	margin-right: 30px;

}

.social-icons a:last-of-type {
	margin-right: 0;
}

.colaborador h1 {
	font-size: 52px;
	font-weight: 700;
	color: #222;
}

.social-icons a:hover {
	color: #000000cc;
}

@media (max-width: 768px) {
	.colaborador h1 {
		margin-top: 20px;
		font-size: 28px;
		text-align: center;
	}
}

.social-icons {
	justify-content: center;
	align-items: center;
}


/* fin redactor */