@charset "UTF-8";

html,
body {
/* 	font-family: 'source', sans-serif; */
font-family: 'interstate_regular', sans-serif;;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background-color: #1d0a2d;
	font-size: 18px;
	color: #fff;
}
body.overflow{
	overflow: hidden;
}

@media(max-height:800px) {
	/*
	body{
		font-size: 12px;
	}
*/
}
@media(max-width:600px){
	body{
		font-size: 16px;
	}
}


.font_bold,
h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
	font-family: 'interstate_bold', serif;
	font-weight: 700;
}


.font_yellow{ color: #EAC66E; color: #C98C37; }
.font_grey{ color: #4F4F4F; }
.font_white{ color: #fff; }
.font_read{
	font-family: 'interstate_light';
}
.font_read_bold{
	font-family: 'interstate_bold';
}
.font_regular{
	font-family: 'interstate_regular';
}
.font_handwritten{
	font-family: 'Hoefler';
}

.uppercase {
	text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
	border: 0;
	border-bottom: 1px solid;
	margin-bottom: 0px;
	padding: 0px;
	width: 100%;
	background-color: transparent;
	border-radius: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"],
textarea:focus {
	outline: none;
}

label {
	padding: 0px 0;
	display: block;
}

textarea {
	border-radius: 0;
	border: 1px solid;
	width: 100%;
	background-color: transparent;
	resize: none;
}

input[type="submit"] {
	background: none;
	border: none;
	border-bottom: 2px solid;
	padding: 5px 0;
}

a {
	color: #f5a921;
	text-decoration: none;
}

a:hover {
	color: rgba(227, 187, 26, 1);
	text-decoration: none;
}
a.font_white{
	color: #fff;
}
.border_link a{
	display: inline-block;
	padding: 10px 20px;
	border: 2px solid #fff;
	border-radius: 4px;
	color: #fff;
}
.border_link a:hover{
	color: #C98C37;
	border: 2px solid #C98C37;
	background-color: #EAE2DA;
}

.font_yellow a, .font_yellow a:hover, .font_yellow a:visited{
	color: #EAC66E;
	color: #C98C37;
	text-decoration: none;
}

.full_size_div {
	position: fixed;
	z-index: 0;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background-size: cover;
	min-height: 700px;
}


.fixed_full_bg{
	position: fixed;
	width: 100vw;
	height: 100vh;
	left: 0;
	top: 0;
	z-index: 0;
	background-size: cover;
	background-position: center center;
}

.main_section{
	position: relative;
	padding: 13vh 5vw;
}
.main_section_title{
	width: auto;
	height: 90px;
	margin: 0 auto;
	position: relative;
}
.main_section_title img{
	width: auto;
	height: 100%;
}

#gallery-body .carousel-control-next,
#gallery-body .carousel-control-prev,
.carousel_containers .carousel-control-next,
.carousel_containers .carousel-control-prev{
	opacity: 1;
	padding: 0;
	background: rgba(255,255,255,0);
	width: 60px;
	height: 60px;
	margin: auto 50px;
	border-radius: 100%;
	border: 2px solid #fff;
	box-shadow: 0 4px 4px rgba(0,0,0,0.25);
	transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);/* easeOutQuart */
	transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000);/* easeOutQuart */
}
#gallery-body .carousel-control-next:hover,
#gallery-body .carousel-control-prev:hover,
.carousel_containers .carousel-control-next:hover,
.carousel_containers .carousel-control-prev:hover {
	background: #EAE2DA;
	border: 2px solid #C98C37;
	color: #C98C37;
}


.slider{
	position: relative;
	width: 100%;
	height: 100%;
	
}

.slider .slide{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-webkit-mask-image: url(../img/gallery_mask-03.svg?v1);
    -webkit-mask-position: center;
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
}

/*
.slider .slide.right{
	left: auto;
	right: 0;
}
*/
.slider .slide img{
	position: relative;
	width: 100%;
	object-fit:cover;
	height: 100%;
	opacity: 0;
	transform: scale(1.05);
	filter: brightness(0.5) blur(15px);
}
.slider .slide.active img{
	opacity: 1;
	transform: scale(1);
	filter: brightness(1) blur(0px);
}
.slider .slide.ease img{
	transition: all 2500ms cubic-bezier(0.645, 0.045, 0.355, 1.000); /* easeInOutCubic */
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000); /* easeInOutCubic */
}


.dots{
	position: absolute;
	left: 0;
	top:103%;
	width: 100%;
	display: flex;
	justify-content: flex-end;
	gap:1vw;
}
.dots .dot{
	position: relative;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #D9D9D9;
}
.dots .dot.active{
	background-color: #C98C37;
}

.page_content{
	position: relative;
	min-height: 100vh;
	padding: 10vh;
}


@media(min-height:1200px){
	#theatre_container.main_section,
	#musical_container.main_section{
		display: flex;
		flex-direction: column;
    	justify-content: center;
    	height: 100vh;
	    gap:2vh;
	}
	
}
@media(max-width:1300px){
	.main_section_title {
	    height: 70px;
    }
}

@media(max-height:800px){
	.main_section_title {
	    height: 60px;
    }
}

@media(max-width:992px){
	
	.main_section_title {
/* 	    max-width: 350px; */
	    height: 70px;
    }
}

@media(max-width:768px){
	.fixed_full_bg{
		height: 100dvh;
	}
}
@media(max-width:600px){
	.main_section_title {
/*     	width: 80%; */
    	height: 35px;
    }
    .main_section{
		padding: 12vh 20px;
    }
	.slider .dots{
		top: 105%;
		gap:1.5vw;
		padding-right: 2vw;
	}
    .slider .dots .dot{
		width: 5px;
		height: 5px;
	}
	
}



/* MENU */

#menu_main,
#menu_btn,
#menu_logo{
	position: absolute;
	z-index: 1;
}


#menu_logo{
	left: 10vw;
    top: 10px;
    width: 14vw;
}
#menu_logo img{
	width: 100% !important;
	height: auto !important;
}

#menu_mobile_container {
	height: auto;
}

.mobile_menu_logo {
	display: none;
}

#rss_mobile,
#menu_newsletter {
	display: none;
}
#menu_btn {
	position: absolute;
	right: 20px;
    top: 24px;
	z-index: 100;
	transform: scale(0.6);
	display: none;
}

#menu_btn button {
	outline: none !important;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	background-color: #FFBB5C;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
	background-color: #FFBB5C;
}

#menu_main{
	position: absolute;
	width: 100vw;
	max-width: 100%;
	top: 40px;
	font-family: 'interstate_regular';
	font-size: 15px;
}
#menu_mobile_container{
	position: relative;
	width: 100%;
}
#menu_left{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	gap:2vw;
	
}

#menu_main .menu_link{
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
	position: relative;
}
#menu_main .menu_link.current_page{
	color: #FFBB5C;
}
#menu_main .menu_link.current_page:before{
	content: '';
	position: absolute;
	width: 14px;
	height: 18px;
	top: -20px;
	left: calc(50% -  7px);
	background-image: url("../img/menu_selected_star.svg");
	background-size: contain;
	background-repeat: no-repeat;
	animation: pulse 1s ease-in-out infinite;
}
@keyframes pulse {
	0% {
		transform: scale(0.8);
	}
	50% {
		transform: scale(1);
	}
	100% {
		transform: scale(0.8);
	}
}

#menu_right {
    position: absolute;
    right: 5vw;
    top: 0;
    display: flex;
    gap: 1vw;
}
#menu_main #menu_right .menu_link{
	color: #FFBB5C;
}

@media(max-width:1700px){
	#menu_logo {
    	top: 20px;
    }
}

@media(max-width:1200px){
	#menu_main {
	    font-size: 13px;
	}
}
@media(max-width:1100px){
	#menu_left {
    	gap: 1.5vw;
	}
	#menu_right {
		gap:0.7vw;
	}
}

@media(max-width:992px){
	#menu_btn{
		display: block;
	}
	#menu_logo {
    	left: calc(50% - 12.5vw);
		width: 25vw;
	}
	#menu_main{
		position: fixed;
		height: 100dvh;
		width: 0vw;
		z-index: 100;
		top: 0;
		left: auto;
		right: 0;
		font-size: 3vh;
		overflow: hidden;
		transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */
		transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */
		box-shadow: 0 0 20px rgba(0,0,0,0);
	}
	#menu_main.active{
		height: 100dvh;
		width: 100vw;
		box-shadow: 0 0 20px rgba(0,0,0,1);
	}
	
	#menu_mobile_container{
		position: absolute;
		right: 0;
		height: 100dvh;
		width: 100vw;
		padding-bottom: 5vh;
		display: flex;
		flex-direction: column;
    	justify-content: center;
    	gap:4vh;
	    align-items: center;
	    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5f4f98+0,060f50+100 */
		background: rgb(95,79,152); /* Old browsers */
		background: -moz-linear-gradient(top,  rgba(95,79,152,1) 0%, rgba(6,15,80,1) 100%); /* FF3.6-15 */
		background: -webkit-linear-gradient(top,  rgba(95,79,152,1) 0%,rgba(6,15,80,1) 100%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(to bottom,  rgba(95,79,152,1) 0%,rgba(6,15,80,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5f4f98', endColorstr='#060f50',GradientType=0 ); /* IE6-9 */
	    transform: scale(1.1);
	    transition: all 1200ms cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */
		transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */
	}
	.active #menu_mobile_container {
	    transform: scale(1);
	}
	
	#menu_left {
		height: auto;
	    flex-direction: column;
	    align-items: center;
	    
	}
	
	.mobile_menu_logo {
	    display: block;
	    width: 65%;
	    height: auto;
	    margin: 0 auto;
	}
	#rss_mobile{
		display: block;
		position: absolute;
		bottom: 10px;
	    text-align: center;
	    width: 100%;
	    font-size: 10px;
		font-family: 'garamond';
	}
	#menu_newsletter{
		display: block;
		position: relative;
		
		text-align: center;
		font-size: 2vh;
	}
	#menu_newsletter img{
		width: 15vw;
		max-width: 75px;
	}
	#menu_main .menu_link.current_page:before{
		top: calc(50% - 9px);
		left: -20px;
	}
	#menu_right{
	    position: relative;
	    font-size: 1.5vw;
	    width: 100%;
	    justify-content: center;
	    right: auto;
	}
}

@media(max-width:767px){
	#menu_btn{
		right: 15px;
		top: 12px;
	}
	#menu_logo {
    	left: calc(50% - 17.5vw);
    	width: 35vw;
	}

}

@media(max-width:600px){
	.page-template-temp_home #menu_btn {
    	right: 0px;
		top: 0px;
	}
	#menu_right{
	    font-size: 3.5vw;
	    gap:3vw;
	}
}



/* SPONSORS */

#sponsors {
	position: relative;
	width: 100%;
	display: flex;
	height: 60px;
	flex-wrap: wrap;
}

#sponsors .sponsors_left {
	width: 60%;
	background-color: #fff;
	padding: 5px 20px;
	display: flex;
	justify-content: space-around;
	height: 100%;
}

#sponsors .sponsors_right {
	width: 40%;
	background-color: #e2112c;
	padding: 5px 20px;
	display: flex;
	justify-content: space-around;
	height: 100%;
}

#sponsors .sponsors_bottom {
	width: 100%;
	flex: 1;
	font-size: 8px;
	line-height: 10px;
	padding: 3px 5px;
	background-color: #D9D9D9;
	text-align: center;
	color: #000;
}


.sponsor {
	display: inline-block;
	height: 30px;
	position: relative;
	padding: 0 2px;
}

#sponsors img {
	height: 100%;
	width: auto;
}

#sponsors .divider {
	width: 1px;
	height: 100%;
	background-color: #666;
	transform: scaleY(0.7);
	transform-origin: center center;
}




#sponsor_image {
	display: none;
	position: relative;
	width: 100%;
	height: 70px;
	text-align: center;
	background-color: white;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+50,e2112c+51,e2112c+100 */
	background: #ffffff;
	/* Old browsers */
	background: -moz-linear-gradient(left, #ffffff 0%, #ffffff 50%, #e2112c 51%, #e2112c 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(left, #ffffff 0%, #ffffff 50%, #e2112c 51%, #e2112c 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, #e2112c 51%, #e2112c 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e2112c', GradientType=1);
	/* IE6-9 */

}

#sponsor_image img {
	height: 100%;
	width: auto;
	z-index: 1;
	position: relative;
}

#sponsor_image:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 16px;
	background-color: #D9D9D9;
	bottom: 0;
	left: 0;
	z-index: 0;

}

#mobile_sponsor {
	display: none;
}

@media(max-width:1500px) {
	#sponsors {
		height: 55px;
	}
}

@media(max-width:1200px) {

	#sponsors {
		height: 45px;
	}

	#sponsor_image {
		height: 52px;
	}

	#sponsor_image:after {
		height: 12px;
	}

	#sponsors .sponsors_bottom {
		font-size: 7px;
		line-height: 9px;
	}
}

@media(max-width:992px) {
	.sponsor {
		height: 20px;
	}
}

@media(max-width:850px) {

	#sponsors {
		height: 35px;
		margin-top: 5px;
	}

	#sponsors .sponsors_bottom {
		font-size: 7px;
		line-height: 9px;
	}

	#sponsor_image {
		height: 43px;
	}

	#sponsor_image:after {
		height: 10px;
	}

}

@media(max-width:767px) {

	#sponsor_image {
		height: 62px;
		margin-top: 8px;
	}

	#sponsor_image:after {
		height: 15px;
	}

	#mobile_sponsor {
		display: inline-block;
	}

	#desktop_sponsor {
		display: none;
	}

}

@media(max-width:600px) {
	.sponsor {
		height: 15px;
	}

	#sponsors {
		display: none;
	}

	#sponsor_image {
		display: block;
		height: auto;
		width: 100%;
	}

	#sponsor_image img {
		width: 100%;
		height: auto;
	}
}



/* FOOTER */
#footer_content {
	font-size: 10px;
	padding: 10px 0;
}

#footer_content .container-fluid{
	padding-bottom: 15px;
}
.footer{
	position: relative;
    margin-top: -40px;	
}
@media(max-width:850px) {
	.footer{
		position: relative;
	    margin-top: -50px;	
	}
	#footer_content {
    	padding: 0px 0;
	}
}

/* COOKIES */
#cookies-footer {
	position: fixed;
	bottom: 100px;
	left: 15px;
	width: 35vw;
	max-width: 600px;
	border-radius: 15px;
	padding: 23px;
	text-align: justify;
	background-color: #222;
	color: #fff;
	font-size: 11px;
	display: none;
	opacity: 0;
	z-index: 100;
	transition: all 2500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	/* easeOutQuart */
	transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000);
	/* easeOutQuart */
}

#cookies-footer.out {
	opacity: 1;
}

#cookies-footer.active {
	display: block;
}

#cookies-footer a {
	color: #fff;
	text-decoration: underline;
}

.cookies-close {
	background-color: #fff;
	border-radius: 15px;
	padding: 4px 10px;
	color: #000;
	text-align: center;
	cursor: pointer;
	max-width: 200px;
	margin: 8px auto 0;
	position: relative;
}

@media(max-width:767px) {
	#cookies-footer {
		max-width: initial;
		width: calc(100% - 30px);
		bottom: 20px;
	}
}

/* MODAL */

.modal-content{
	background-color: #1d0a2d;
}
.modal-header{
	border: 0;
}
.modal_close{
	position: absolute;
	right: 15px;
	top: 15px;
}
.modal_close .close{
	color: #fff;
	opacity: 1;
	font-size: 2.5rem;
}
.modal-body{
	padding: 2rem;
}


/* PDF VIEWER */

#pdf_container{
	position: relative;
	z-index: 9;
	padding-top: 100px;
}
#pdf_logo{
	position: relative;
	width: 50%;
	max-width: 300px;
	margin: 0 auto 50px;
}

/* ---- particles.js container ---- */
#particles-js {
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 1;
	background-image: url("");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}


#tsparticles {
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 1;
	display: none;
}

#site_frame{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	min-height: 100dvh;
}
#site_frame .corner{
	position: absolute;
	width: 105px;
	height: 105px;
	background-image: url("../img/frame_corner.png");
	background-size: contain;
	background-repeat: no-repeat;
}
#site_frame .left_top{
	left: 20px;
	top: 20px;
}
#site_frame .left_bottom{
	left: 20px;
	bottom: 20px;
	transform: scaleY(-1);
}
#site_frame .right_top{
	right: 20px;
	top: 20px;
	transform: rotate(180deg) scaleY(-1);
}
#site_frame .right_bottom{
	right: 20px;
	bottom: 20px;
	transform: rotate(180deg);
}
#site_frame:before,
#site_frame:after{
	content: '';
	position: absolute;
	left: 27px;
	top: 0;
	width: 2px;
	height: 100%;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#bb9c90+10,bb9c90+35,bb9c90+65,bb9c90+90&0+10,1+35,1+65,0+90 */
background: -moz-linear-gradient(top,  rgba(187,156,144,0) 10%, rgba(187,156,144,1) 35%, rgba(187,156,144,1) 65%, rgba(187,156,144,0) 90%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(187,156,144,0) 10%,rgba(187,156,144,1) 35%,rgba(187,156,144,1) 65%,rgba(187,156,144,0) 90%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(187,156,144,0) 10%,rgba(187,156,144,1) 35%,rgba(187,156,144,1) 65%,rgba(187,156,144,0) 90%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00bb9c90', endColorstr='#00bb9c90',GradientType=0 ); /* IE6-9 */
}

#site_frame:after{
	left: auto;
	right: 27px;
}

@media(max-width:1300px){
	#site_frame .corner{	
		width: 65px;
		height: 65px;
	}
	#site_frame .left_top{
		left: 14px;
	}
	#site_frame .left_bottom{
		left: 14px;
	}
	#site_frame .right_top{
		right: 14px;
	}
	#site_frame .right_bottom{
		right: 14px;
	}
	#site_frame:before{
		left: 17px;
	}
	#site_frame:after{
		right: 17px;
	}
}

@media(max-width:767px){
	#site_frame .corner{	
		width: 45px;
		height: 45px;
	}
	#site_frame .left_top{
		left: 10px;
		top: 10px;
	}
	#site_frame .left_bottom{
		left: 10px;
		bottom: 10px;
	}
	#site_frame .right_top{
		right: 10px;
		top: 10px;
	}
	#site_frame .right_bottom{
		right: 10px;
		bottom: 10px;
	}
	#site_frame:before{
		left: 12px;
		width: 1px;
	}
	#site_frame:after{
		right: 12px;
		width: 1px;
	}
}
@media(max-width:600px){
/*
	#site_frame .corner{	
		width: 35px;
		height: 35px;
	}
	#site_frame .left_top{
		left: 5px;
		top: 5px;
	}
	#site_frame .left_bottom{
		left: 5px;
		bottom: 5x;
	}
	#site_frame .right_top{
		right: 5px;
		top: 5px;
	}
	#site_frame .right_bottom{
		right: 5px;
		bottom: 5px;
	}
*/
	#site_frame:before,
	#site_frame:after{
		display: none;
	}
}


/* MUSICAL */
#musical_container .content{
	position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 5vh auto;
}
#musical_container .wp-block-columns{
	align-items: center !important;
}

#musical_container .left_column{
	display: flex;
	flex-direction: column;
}

@media(max-width:1700px){
	#musical_container .content{
		max-width: 800px;	
	}
}
@media(max-width:781px){
	#musical_container .left_column{
		flex-direction: row;
		justify-content: center;
		gap: 2vw;
		align-items: center;
	}
	
}


/* Teatro */

#theatre_container .content{
	position: relative;
    width: 100%;
    max-width: 900px;
    margin: 5vh auto;
    z-index: 5;
}

#theatre_menu {
	position: absolute;
	left: -225px;
	width: 215px;
	top: 80px;
	opacity: 1;
	z-index: 2;
}

#theatre_container .title {
	z-index: 6;
	position: relative;
}



#theatre_container .content .info {
	padding: 0 20px;
}

.theatre_info {
	display: none;
	opacity: 0;
	transform: scale(1);
	filter: brightness(3);
	z-index: 1;
	transition: all 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
	/* easeInOutQuart */
	transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
	/* easeInOutQuart */
}

.theatre_info.active {
	display: block;
}

.theatre_info.active.show {
	opacity: 1;
	transform: scale(1);
	filter: brightness(1);
}

.theatre_info .image {
	position: relative;
	width: 100%;
}

.theatre_info .image img {
	width: 100%;
	height: auto;
}

#como-llegar {
	position: relative;
	top: -50px;
}

#theatre_menu .inner-sales {
	padding: 17px 30px;
}

.theatre_btn {
	position: relative;
}

.theatre_btn .fa {
	position: absolute;
	right: 0;
	top: 25%;
	font-size: 20px;
}

/*
#como-llegar .info{
	position: absolute;
    width: 300px;
    left: 90%;
    bottom: 0;	
    font-family: 'interstate_regular';	
}
*/
#como-llegar .info{
	position: relative;
    width: 100%;
    font-family: 'interstate_regular';
    margin-top: 15px;	
    text-align: center;
}

#como-llegar .theather_image{
	margin-top: -80px;
}

#como-llegar .wp-block-column{
	font-size: 14px;
	padding: 0 15px;
}

#theatre_menu .inner-sales.active{
	color: #C98C37;
	border: 2px solid #C98C37;
	background-color: #EAE2DA;
}
@media(max-width:1500px){
	#theatre_container .content{
	    max-width: 700px;
    }
    #theatre_container .main_section_title {
    	height: 70px;
	}
}
@media(max-width:1200px){
	
	 #theatre_container .main_section_title {
    	height: 60px;
	}
	
	#como-llegar .info {
	    position: relative;
	    width: 100%;
	    left: 0;
	    bottom: auto;
	    margin-top: 30px;
	}

	#theatre_menu {
		position: relative;
		left: 0;
		width: 100%;
		top: 0;
		opacity: 1;
		text-align: center;
		margin-bottom: 15px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap:20px;
	}

	#como-llegar {
		position: relative;
		top: -70px;
	}

/*
	#theatre_bg {
		background-position: top center;
		position: absolute;
		height: 70vh;
		min-height: auto;
		background-image: url("../img/teatro_mobile_bg.jpg") !important;
	}

	#theatre_bg:after {
		content: '';
		position: absolute;
		bottom: -200px;
		left: 0;
		width: 100%;
		height: 400px;
		background-image: url("../img/bg_conector.png");
		background-size: cover;
		background-position: center cente;
	}

	body.page-template-temp_theatre {
		background-image: url("../img/purple_bg.jpg") !important;
		background-size: cover;
		background-position: center center;
	}
*/
}
@media(max-width:992px){
	 #theatre_container .main_section_title {
    	height: 50px;
	}
	 #theatre_bg{
		background-position: right center;	 
	 }
}

@media(max-width:767px){
	 #theatre_container .main_section_title {
    	height: auto;
    	width: 80%;
	}
	 #theatre_container .main_section_title img{
		 width: 100%;
		 height: auto;
	 }
	
}


/* Tickets types */
.inner-sales,
.c-accordion__item_ {
	position: relative;
	padding: 18px 14px;
	text-align: center;
	
	border: 2px solid #ffff;
	border-radius: 4px;
	margin-bottom: 15px;
	cursor: pointer;
	background-color: rgba(0,0,0,0);
	box-shadow: 0 4px 4px rgba(0,0,0,0.25);
	overflow: hidden;
	transition: all 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
	/* easeInOutQuart */
	transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
	/* easeInOutQuart */
}

/*
.inner-sales.active{
	color: #C98C37;
    border: 2px solid #C98C37;
    background-color: #EAE2DA;

}
*/
.inner-sales:hover {
	transform: scale(1.05);
}

.inner-sales:before,
.inner-sales:after,
.c-accordion__item_:before,
.c-accordion__item_:after {
	content: '';
	position: absolute;
	width: calc(100% - 1px);
	height: calc(100% - 1px);
	left: 0;
	top: 0;
	border: none;
	border-radius: 10px;
	box-shadow: inset 0.1em 0.1em 0.1em 0 rgba(83, 46, 112, 0.1), inset -0.1em -0.1em 0.1em 0 rgba(224, 201, 242, 0.1);
	opacity: 0.5;
	pointer-events: none;
}

.inner-sales:after,
.c-accordion__item_:after {
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	left: -2px;
	top: -2px;

}

.c-accordion__item {
	position: relative;
	background-color: rgba(234,226,218,0);
	padding: 15px 40px;
	
	text-align: left;
	border: 2px solid rgba(0,0,0,0);
	border-radius: 4px;
	margin-bottom: 0;
	cursor: pointer;

	box-shadow: 0 4px 4px rgba(0,0,0,0);
	overflow: hidden;
	transition: all 800ms cubic-bezier(0.165, 0.840, 0.440, 1.000);/* easeOutQuart */
	transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000);/* easeOutQuart */
}
.c-accordion__item:hover{
	background-color: rgba(234,226,218,0.3);
}

.c-accordion__title {
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
}
.content .c-accordion__title:after {
    color: #fff;
    font-family: arial;
    font-weight: bold;
}
.content .is-open>.c-accordion__title:after {
    content: "−";
    color: #C98C37;
}


.is-open.c-accordion__item {
	padding: 30px 40px;
	color: #C98C37;
	border: 2px solid #C98C37;
	background-color: #EAE2DA;
	margin-bottom: 10px;
	
}
.c-accordion__content{
	margin-top: 15px;
}


.sales-link {
	position: relative;
	transition: transform 900ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
	/* easeInOutQuart */
	transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
	/* easeInOutQuart */

}

.inner-sales:hover .sales-link {
	transform: scale(1.05);
}

.sales-txt .discount_flex {
	display: flex;
	flex-direction: column;
	font-size: 14px;
	line-height: 18px;
}

.sales-txt p {
	margin: 0;
}


.sales-txt .fa {
	position: relative;
	top: 1px;
}


@media(max-width:600px){
	.is-open.c-accordion__item {
		padding: 25px 15px;
	}
	.c-accordion__item{
		padding: 15px 15px;
	}
	.c-accordion__title {
    	font-size: 16px;
    }
}




/* FAQs */
#faqs_container .content {
	position: relative;
    width: 100%;
    margin: 5vh auto;
    max-width: 800px;
}

#faqs_container .content .scroll::-webkit-scrollbar {
    width: 1em;
}
 
#faqs_container .content .scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0.0);
    background-color: rgba(255,255,255,0.3);
	border: 6px solid transparent;
    border-radius: 10px;
    background-clip: content-box;
}
 
#faqs_container .content .scroll::-webkit-scrollbar-thumb {
	background-color: #C98C37;
	border: 6px solid transparent;
	border-radius: 10px;
	background-clip: content-box;
}
.scroll{
	position: relative;
	width: 100%;
	
}

.masked-overflow {
   --scrollbar-width: 8px;
    --mask-height: 32px;
    overflow-y: auto;
    height: 100%;
    padding-bottom: var(--mask-height);
    padding-right: 20px;
    --mask-image-content: linear-gradient( to bottom, transparent, black var(--mask-height), black calc(100% - var(--mask-height)), transparent );
    --mask-size-content: calc(100% - var(--scrollbar-width)) 100%;
    --mask-image-scrollbar: linear-gradient(black, black);
    --mask-size-scrollbar: var(--scrollbar-width) 100%;
    -webkit-mask-image: var(--mask-image-content), var(--mask-image-scrollbar);
    -webkit-mask-size: var(--mask-size-content), var(--mask-size-scrollbar);
    -webkit-mask-position: 0 0, 100% 0;
    -webkit-mask-repeat: no-repeat, no-repeat;
    -moz-mask-image: var(--mask-image-content), var(--mask-image-scrollbar);
    -moz-mask-size: var(--mask-size-content), var(--mask-size-scrollbar);
    -moz-mask-position: 0 0, 100% 0;
    -moz-mask-repeat: no-repeat, no-repeat;
    mask-image: var(--mask-image-content), var(--mask-image-scrollbar);
    mask-size: var(--mask-size-content), var(--mask-size-scrollbar);
    mask-position: 0 0, 100% 0;
    mask-repeat: no-repeat, no-repeat;
}
#faqs_container .masked-overflow {
	height: 60vh;
}

@media(max-width:600px){
	#faqs_container .masked-overflow {
		-webkit-mask-image: none;
		-moz-mask-image: none;
		mask-image: none;
		overflow: auto;
		height: auto;
		padding-right: 0;
	}
	#faqs_container .wp-block-spacer{
		display: none;
	}
}


/* CAST */

#cast_carousel_container{
	position: relative;
	width: 100%;
	margin: 3vh auto;
}
.cast_carousel_container{
	position: relative;
	
	background-image: url("../img/postcard_1x.webp");
	background-size: contain;
	width: 1200px;
	height: 698px;
	margin: 0 auto;
	
}
.cast_grid{
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding: 5vh 5vw;
	opacity: 0;
	transform: rotate(-1deg);
	pointer-events: none;
	transition: opacity 1000ms cubic-bezier(0.165, 0.840, 0.440, 1.000);/* easeOutQuart */
	transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000);/* easeOutQuart */
}
.cast_grid.active{
	opacity: 1;
	pointer-events: all;
}
.cast_grid .character{
	position: relative;
	width: 25%;
	padding: 0 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 0px;
	text-transform: uppercase;
	text-align: center;
	font-size: 14px;
	transform: rotate(1deg);
	cursor: pointer;
}
.cast_grid .character .image {
    width: 100%;
    max-width: 150px;
    filter: brightness(5);
    opacity: 0;
    transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */
	transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */
}
.cast_grid .character.active .image {
	filter: brightness(1);
    opacity: 1;
}
.cast_grid .character img {
    width: 100%;
    height: auto;
}

.cast_grid .character .name {
	color: #000;
	transform: translateY(-15px);
	opacity: 0;
	text-align: center;
	transition: all 1000ms cubic-bezier(0.165, 0.840, 0.440, 1.000);/* easeOutQuart */
	transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000);/* easeOutQuart */
	transition-delay: 500ms;
}
.cast_grid .character.active .name {
   transform: translateY(0px);
   opacity: 1;
}
.cast_grid .character .role {
	color: #C98C37;
	transform: translateY(-15px);
	opacity: 0;
	transition: all 1000ms cubic-bezier(0.165, 0.840, 0.440, 1.000);/* easeOutQuart */
	transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000);/* easeOutQuart */
	transition-delay: 700ms;

}
.cast_grid .character.active .role {
   transform: translateY(0px);
   opacity: 1;
}

.cast_grid .character .description{
	display: none;
}

#cast_container{
	padding: 13vh 0;
}
.cast_menu{
	display: none;
}

#character_description{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
    align-items: center;
    padding: 5vh 10vw;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1000ms cubic-bezier(0.165, 0.840, 0.440, 1.000);/* easeOutQuart */
	transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000);/* easeOutQuart */
}
#character_description.active{
	opacity: 1;
	pointer-events: all;
}
#character_description .character_info{
	display: flex;
	gap:2vw;
	width: 100%;
	align-items: center;
	transform: rotate(-1deg);
}
#character_description .character_info .left{
	width: 30%;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
}
#character_description .character_info .left .image{
	width: 100%;
	margin-top: -30px;
}
#character_description .character_info .left .name{
	color: #000;
}
#character_description .character_info .left .role{
	color: #C98C37;
}

#character_description .character_info .left img{
	width: 100%;
	height: auto;
}

#character_description .character_info .right{
	width: 70%;
	color: #000;
	font-size: 16px;
}

#character_description .close_btn {
    position: absolute;
    right: -30px;
    top: -60px;
    z-index: 20;
    cursor: pointer;
    color: #C98C37;
    background: #EAE2DA;
    font-size: 20px;
    line-height: 44px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    border: 2px solid #C98C37;
    box-shadow: 0 8px 10px rgba(0,0,0,0.2);
    border-radius: 100px;
    transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);/* easeOutQuart */
	transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000);/* easeOutQuart */
}
#character_description .close_btn:hover{
	font-size: 24px;
	color: #C98C37;
}

@media(max-width:1500px){
	.cast_carousel_container{
		width: 1080px;
	    height: 630px;
    }
    .cast_grid .character .image{
	    max-width: 130px;
    }
}

@media(max-width:1300px){
	.cast_carousel_container {
	    width: 960px;
	    height: 560px;
	}
	.cast_grid .character .image{
	    max-width: 110px;
    }
    .cast_grid .character{
	    font-size: 13px;
    }
    #character_description{
		padding: 5vh 6vw;
    }
    #character_description .character_info .right{
		font-size: 14px;
	}
	 #character_description .character_info .left{
		font-size: 16px;
	}
}

@media(max-width:1150px){
	.cast_carousel_container {
	   width: 790px;
	   height: 460px
	}
	.cast_grid .character .image{
	    max-width: 80px;
    }
    .cast_grid .character{
	    font-size: 12px;
	    padding: 0 5px;
	    margin-bottom: 10px;
    }
    #character_description .character_info .right{
		font-size: 12px;
		width: 80%;
	}
	 #character_description .character_info .left{
		font-size: 14px;
		width: 20%;
	}
    
}
.mobile_tile{
	display: none;
}
.mobile_tile img{
	width: 100%;
	height: auto;
}
@media(max-width:992px){
	.carousel_containers{
		margin-top: 90px;
	}
	.cast_carousel_container {
    	width: 100%;
		height: auto;
		background-image: url(../img/postcard_tile.png);
		background-repeat: repeat-y;
		padding: 5vh 0;
	}
	.mobile_tile.head {
	    position: absolute;
	    display: block;
	   width: 100%;
	   top: -60px;
	    display: block;
	     
	}
	.mobile_tile.bottom{
	    position: absolute;
	    width: 100%;
	    display: block;
	    left: 0;
	    bottom: -50px;
	}
	.cast_grid{
		position: relative;
		opacity: 1;
		pointer-events: all;
		padding: 0vh 5vw;
	}
	.cast_grid .character {
    	width: 50%;
    	font-size: 16px;
    }
    .cast_grid .character .image {
    	max-width: 180px;
	}
	.cast_grid .character .image, 
	.cast_grid .character .name,
	.cast_grid .character .role{
		opacity: 1;
		transform: translateY(0);
		filter: brightness(1);
		font-size: 14px;
	}
	.cast_grid .character .role{
		font-size: 12px;
	}
	.carousel_containers .carousel-control-next,
	.carousel_containers .carousel-control-prev{
		display: none;
	}
	#character_description{
		position: fixed;
		background-image: url("../img/gradient_bg.jpg");
		background-size: cover;
		padding: 5vh 0vw;
	}

	#character_description .character_info{
		background-image: url(../img/postcard_1x.webp);
		background-size: 100% 100%;
		background-repeat: no-repeat;
		flex-direction: column;
		padding: 22vw 25px;
		gap:0;
		transform: rotate(0);
	}
	#character_description .character_info .left{
		width: 100%;
	}
	#character_description .character_info .left .image{
		width: 30%;
	}
	#character_description .character_info .right{
		width: 100%;
	}
	#character_description .character_info .right .description{
		position: relative;
	    height: 185px;
	    overflow: scroll;
		padding: 0px 2.5vw;
    }
/*
	#character_description .character .right .description::-webkit-scrollbar {
	    width: 1em;
	}
	 
	#character_description .character .right .description::-webkit-scrollbar-track {
	    -webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0.0);
	    background-color: rgba(255,255,255,0.3);
		border: 6px solid transparent;
	    border-radius: 10px;
	    background-clip: content-box;
	}
	 
	#character_description .character .right .description::-webkit-scrollbar-thumb {
		background-color: #C98C37;
		border: 6px solid transparent;
		border-radius: 10px;
		background-clip: content-box;
	}
*/
	
	
    #character_description .close_btn {
	   right: 40px;
	    top: 30px;
	    font-size: 19px;
	    line-height: 33px;
	    width: 30px;
	    height: 30px;
	    box-shadow: none;
	    border: 1px solid #C98C37;
    }
}
@media(max-width:767px){
	.mobile_tile.head{
		top:-40px;
	}
	.mobile_tile.bottom {
	    bottom: -30px;
	}
}
@media(max-width:767px){
	.mobile_tile.head{
		top:-40px;
	}
	.mobile_tile.bottom {
	    bottom: -30px;
	}
}
@media(max-width:600px){
	.carousel_containers{
		margin-top: 50px;
	}
	.mobile_tile.head{
		top:-18px;
	}
	.mobile_tile.bottom {
	    bottom: -17px;
	}
	#cast_container{
		padding: 12vh 20px;
	}
	.cast_grid .character .image {
    	max-width: 100px;
	}
	.cast_grid .character .role{
		font-size: 10px;
	}
}