@charset "UTF-8";
/* 

Theme Name: Novocuadro
Version: 1.0
Author: Imagen Consulting
*/






/* RGPD */

.gdpr.gdpr-privacy-bar .gdpr-wrapper .gdpr-right .gdpr-buttons button.gdpr-agreement,
.gdpr.gdpr-reconsent-bar .gdpr-wrapper .gdpr-right .gdpr-buttons button.gdpr-agreement{
	background-color: transparent;
	border-color: var(--white);
	text-shadow: none;
}

/* GENERAL */

:root {
	font-size: 16px;
	
	/* -Separator -*/
	
	--separator: 120px;
	
	/*	Fonts */
	--font-main: 'Source Sans Pro', sans-serif;
	--font-sourcesanspro: 'Source Sans Pro', sans-serif;
	--font-montserrat: 'Montserrat', sans-serif;
	--font-cardo: 'Cardo', serif;
	
	/*	Font size */
	
	--fs8: 0.5rem;
	--fs10: 0.625rem;
	--fs11: 0.6875rem;
	--fs12: 0.75rem;
	--fs13: 0.8125rem;
	--fs14: 0.875rem;
	--fs15: 0.9375rem;
	--fs16: 1rem;
	--fs17: 1.0625rem;
	--fs18: 1.125rem;
	--fs19: 1.1875rem;
	--fs20: 1.25rem;
	--fs21: 1.3125rem;
	--fs22: 1.375rem;
	--fs24: 1.5rem;
	--fs25: 1.5625rem;
	--fs28: 1.75rem;
	--fs30: 1.875rem;
	--fs32: 2rem;
	--fs34: 2.125rem;
	--fs35: 2.1875rem;
	--fs38: 2.375rem;
	--fs40: 2.5rem;
	--fs45: 2.8125rem;
	--fs50: 3.125rem;
	--fs55: 3.4375rem;
	--fs80: 5rem;
	--fs160: 10rem;
	
	/*	Colours */
	--body: #FDFDFD;
	--text: #191616;
	--black100: #000000;
	--white100: #ffffff;
	--bg-light: #f5f5f5;
	
	--black: #191616;
	--darkgrey: #717270;
	--grey: #BDBCBB;
	--lightgrey: #E2E2E2;
	--white: #FDFDFD;
	
	--main: #191616; /* --black */
}

.row-mb{
	margin-bottom: 2rem;
}

iframe{
	border: none;
}

html{
	overflow-x: hidden;
}

.rotate-90{
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
		transform: rotate(90deg);
}

.strong-blue strong{
	color: var(--main);
	font-weight: 600;
}

.column-2{
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
	-moz-column-gap: 2rem;
	-webkit-column-gap: 2rem;
	column-gap: 2rem;
}

.column-3{
	-moz-column-count: 3;
	-webkit-column-count: 3;
	column-count: 3;
}

.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
}

.triangle{
	position: relative;
}

.triangle-down{
	position: absolute;
	bottom: 2rem;
	left: calc(50% - 30px);
	width: 60px;
	height: 30px;
	z-index: 1;
	border: 0;
}

.triangle:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	border-style: solid;
	border-width: 0 100px 100px 0;
	border-color: transparent var(--brown) transparent transparent;
}

.triangle-down:after{
	content: none;
}

.triangle-down:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 30px solid var(--brown);
	z-index: -1;
}

.box-square{
	display: inline-block;
	position: relative;
	border: 1px solid var(--main);
	margin-right: .5rem;
	width: 12px;
	height: 12px;
}

.box-square:after{
	content: '';
	position: absolute;
	top: 1px;
	left: 1px;
	right: 1px;
	bottom: 1px;
	background-color: none;
}

.box-square.square-blue:after{
	background-color: #89C6ED;
}

.box-square.square-green:after{
	background-color: #63A516;
}

.overflow-hidden{
	overflow: hidden;
}

.box-content{
	position: relative;
	padding: var(--separator) 0;
}

.bg-main{
	padding: 30px 0;
	background-color:var(--red);
}

.bg-light{
	background-color: #F8F8F8 !important;
}

body{
	background-color: var(--body);
}

body, a{
	font-family: var(--font-main);
	font-size: var(--fs16);
	color: var(--text);
}

.nav-item .dropdown-toggle::after {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: .255em;
	vertical-align: .255em;
	/* content: "\f078"; */
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	border-top: 0;
	border-right: 0;
	border-bottom: 0;
	border-left: 0;
}

.policy-content a{
	display: inline-block;
}

a{
	display: block;
}

a:hover{
	color: inherit;
}

strong{
	font-weight: 700;
}

.semibold{
	font-weight: 600;
}

.text-main{
	color: var(--main) !important;
}

.link-hidden{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.link-white,
.link-black,
.link-transparent,
.link-main,
.link-main:hover{
	display: inline-block;
	border: 1px solid var(--main);
	background-color: var(--main);
	color: var(--white);
	padding: 0.5rem 1rem;
	text-transform: uppercase;
	text-align: center;
	position: relative;
}

.padding-min,
.padding-min:hover{
	padding: .5rem 1rem;
}

.link-main:hover{
	background-color: var(--white);
	color: var(--main);
}

.link-transparent:hover img,
.link-white:hover img,
.link-main:hover img{
	-webkit-filter: invert(1);
	filter: invert(1);
}

.link-transparent{
	background-color: transparent;
	color: var(--white100);
	border: 1px solid var(--white100);
}

.link-transparent:hover{
	background-color: var(--white);
	color: var(--black100);
}

.link-white{
	background-color: var(--white100);
	color: var(--black100);
	border: 1px solid var(--black100);
}

.link-white:hover{
	background-color: var(--black100);
	color: var(--white100);
}

.box-bg-black .link-white,
.box-bg-black .link-white:hover{
	border: 1px solid var(--white100);
}

.link-black{
	background-color: var(--black100);
	color: var(--white100);
	border: 1px solid var(--white100);
}

.link-black:hover{
	background-color: var(--white100);
	color: var(--black100);
}

.link-absolute{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.link-download{
	background-image: url('images/download.svg');
	background-position: calc(100% - 1rem) center;
	background-size: 34px 23px;
	background-repeat: no-repeat;
}

.link-download:hover{
	background-image: url('images/download-hover.svg');
}

.border-bg{
	position: relative;
}

.border-bg:before{
	content: '';
	position: absolute;
	top: calc(50% + .5rem);
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #D3D3D3;
}

.box-bottom{
	margin-top: 5rem;
}

.box-bottom p:last-child{
	margin-bottom: 0;
}

.ver-mas{
	display: block;
	color: var(--main);
	padding: .75rem 1.5rem;
	margin-top: 30px;
	position: relative;
	z-index: 1;
}

.ver-mas span{
	border-radius: 3px;
	border: 1px solid var(--black);
	padding: .75rem 1.5rem;
}

.ver-mas:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--black);
	z-index: -1;
}

.bg-cover-header{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	min-height: 350px;
	position: relative;
}

.bg-cover{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	/* height: 100%; */
	/* min-height: 350px; */
	position: relative;
	transform:scale(1.3);
}

.bg-cover .box-hover{
	transform:scale(0.8);
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	right: 1rem;
	top: 1rem;
	opacity: 0;
	-webkit-transition: .3s all;
	transition: .3s all;
	background-color: rgba(253,253,253,.85);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
}

.bg-cover:hover .box-hover{
	opacity: 1;
}

.bg-cover .box-hover .titulo{
	color: var(--black);
/*	font-size: var(--fs22);*/
	font-size: var(--fs16);
	text-transform: uppercase;
	text-align: center;
	white-space: nowrap;
	overflow: hidden !important;
	max-width: 100%;
	text-overflow: ellipsis;
	padding: 0 1rem;
}

.bg-cover .box-hover .subtitulo{
	font-size: var(--fs16);
	color: var(--black);
	white-space: nowrap;
	overflow: hidden !important;
	max-width: 100%;
	text-overflow: ellipsis;
	/* margin-bottom: 3rem; */
}

.bg-cover .box-hover img{
	max-height: 78px;
	max-width: 99px;
}

/*
.bg-cover .box-hover .box-links{
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: var(--white)
}

.bg-cover .box-hover a{
	color: var(--white);
	font-size: var(--fs12);
	font-style: italic;
	font-weight: 300;
	display: inline-block;
	margin: 0 .25rem;
}

.bg-cover .box-hover a:hover{
	text-decoration: underline;
}
*/

.box-map{
	height: 600px;
	border-bottom: 1px solid var(--lightgrey);
}

#gmap{
	height: 100%;
}

.double-bounce1, .double-bounce2 {
	background-color: var(--main);
} 

/* TEXTOS */

.titulo,
.subtitulo{
	font-family: var(--font-main);
/*	font-size: var(--fs25);*/
	font-size: var(--fs22);
	font-weight: 600;
	color: var(--main);
	position: relative;
	line-height: normal;
	text-transform: uppercase;
	margin-top: 1rem;
}

.modal-title{
	font-size: var(--fs22);
	text-transform: uppercase;
}

.subtitulo p,
.subtitulo{
	text-transform: initial;
/*	font-size: var(--fs20);*/
	font-size: var(--fs16);
	font-weight: 400;
	margin-top: 0;
}

.subtitulo-single{
	text-transform: uppercase;
	font-weight: 700;
}

.subtitulo:first-letter{
	text-transform: capitalize;
}

.separador:after{
	content: '';
	position: absolute;
	top: -.5rem;
	left: 0;
	width: 36px;
	height: 4px;
	background-color: var(--main);
}

.separadorCenter:after{
	left: calc(50% - 10px);
}

.separadorVertical{
	position: relative;
	height: 95px;
	width: 100%;
	margin-bottom: 2rem;
}

.separadorVertical:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 95px;
	background-color: var(--lightgrey);
}

.text, p{
	font-family: var(--font-main);
	font-size: var(--fs16);
	font-weight: 400;
	color: var(--text);
}

.text p:last-child{
	margin-bottom: 0;
}

.policy-content *{
	font-family: var(--font-main);
	/* font-size: var(--fs16); */
	color: var(--text);
}

.nota{
	font-family: var(--font-main);
	font-size: var(--fs16);
	font-weight: 400;
	color: var(--darkgrey);
}

cite{
	font-family: var(--font-main);
	font-size: var(--fs16);
	font-weight: 300;
	color: var(--black);
	font-style: italic;
	padding-top: 1rem;
	padding-right: 3rem;
	position: relative;
	display: block;
}

cite:before,
cite:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('images/comillas-comienzo.svg');
	background-size: 20px 16px;
	width: 20px;
	height: 16px;
}

cite:after{
	top: inherit;
	left: inherit;
	bottom: -1rem;
	background-image: url('images/comillas-fin.svg');
	background-repeat: no-repeat
}

.big-text{
	position: absolute;
	top: -50px;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
}

.big-text p{
	font-family: var(--font-cardo);
	color: rgba(248,248,248,.55);
	text-transform: uppercase;
	line-height: normal;
}

/* MODAL */

.modal-header{
	border-bottom: 0;
}

.modal .frm_style_formidable-style.with_frm_style input[type=password],
.modal .frm_style_formidable-style.with_frm_style input[type=email],
.modal .frm_style_formidable-style.with_frm_style input[type=tel],
.modal .frm_style_formidable-style.with_frm_style input[type=url],
.modal .frm_style_formidable-style.with_frm_style input[type=text]{
	border: 1px solid var(--grey) !important;
	background-color: #fff !important;
	border-radius: 0 !important;
	padding: .5rem !important;
	font-weight: 300 !important;
	color: var(--black) !important;
	height: inherit !important;
	font-size:  0.875rem;
}

.modal .frm_style_formidable-style.with_frm_style .frm_submit button{
	font-size: 0 !important;
	background-color: var(--black100) !important;
	width: 58px !important;
	height: 36px !important;
	color: var(--white100) !important;
	margin-top: -29px !important;
	background-image: url('images/send-newsletter.svg') !important;
	background-size: 21px 18px !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

.modal .frm_style_formidable-style.with_frm_style .frm_submit button:hover{
	background-image: url('images/send-newsletter-hover.svg') !important;
}

.modal .frm_style_formidable-style.with_frm_style #field_tnucg_label.frm_primary_label,
.modal .frm_style_formidable-style.with_frm_style #field_tnucg_label.g-recaptcha-response {
	display: none !important;
}

.modal .frm_style_formidable-style.with_frm_style a,
.modal .frm_style_formidable-style.with_frm_style .frm_checkbox label{
	color: var(--black100) !important;
}

.modal-header .close{
	position: absolute;
	top: 1rem;
	right: 1rem;
}

.modal-header .close img{
	width: 20px;
}

.modal-newsletter .modal-content{
	background-image: url('images/bg-newsletter.jpg');
	background-position: bottom left;
	background-size: 249px 178px;
	background-repeat: no-repeat;
/*
	min-width: 565px;
	min-height: 356px;
*/
	border: 0;
	border-radius: 0;
	box-shadow: 3px 3px 30px rgba(0,0,0,.6);
}

.modal-newsletter .titulo{
/*	font-size: var(--fs30);*/
	margin-top: 3rem;
}

.modal-newsletter .frm_style_formidable-style.with_frm_style .form-field{
	margin-bottom: 0 !important;
}

.modal-newsletter .subtitulo{
	font-size: var(--fs16);
}

.modal-newsletter .separador:after{
	top: initial;
	bottom: -1rem;
}

/* FORMIDABLE */

.frm_style_formidable-style.with_frm_style .frm_primary_label {
	font-family: var(--font-main) !important;
	font-size: var(--fs16) !important;
	font-weight: 400 !important;
	color: var(--black100) !important;
	line-height: 28px !important;
}
.with_frm_style .frm_inside_container.frm_label_float_top > label {
	top: -15px !important;
}
.with_frm_style .frm_radio input[type=radio]:checked:before, .with_frm_style .frm_checkbox input[type=checkbox]:checked:before {
	transform: scale(2) !important;
	position: relative;
	right: 6px;
}
.frm_style_formidable-style.with_frm_style .frm_checkbox label{
	font-family: var(--font-main) !important;
	font-size: var(--fs14) !important;
	font-weight: 400 !important;
	color: var(--black100) !important;
}

.frm_style_formidable-style.with_frm_style a{
	font-family: var(--font-main) !important;
	font-size: var(--fs14) !important;
	font-weight: 400 !important;
	color: var(--black100) !important;
	display: initial !important;
}

.frm_style_formidable-style.with_frm_style a:hover{
	text-decoration: underline;
}

.frm_style_formidable-style.with_frm_style .frm_submit button{
	border: 1px solid var(--black100) !important;
	border-radius: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	display: inline-block  !important;
	background-color: var(--black100) !important;
	color: var(--white100)  !important;
	padding: .75rem 1.5rem  !important;
	text-transform: uppercase !important;
	width: 40% !important;
	float: right !important;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.frm_style_formidable-style.with_frm_style .frm_submit button:hover{
	background-color: transparent !important;
	color: var(--black100)  !important;
}

.box-newsletter .frm_style_formidable-style.with_frm_style .frm_submit button{
	position: absolute !important;
	top: 0 !important;
	right: 0 !important;
	width: 25% !important;
	padding: 1rem !important;
	-webkit-transform: inherit !important;
	transform: inherit !important;
}

.with_frm_style .frm_submit{
	text-align: center;
}

.frm_style_formidable-style.with_frm_style .form-mailchimp  .frm_submit button{
	background-color: transparent !important;
	border: 1px solid var(--white) !important;
}

.frm_style_formidable-style.with_frm_style .frm_form_fields > fieldset{
	padding-bottom: 0 !important;
}

.frm_style_formidable-style.with_frm_style input,
.frm_style_formidable-style.with_frm_style select,
.frm_style_formidable-style.with_frm_style select option,
.frm_style_formidable-style.with_frm_style textarea{
	border: 0 !important;
	background-color: var(--white100) !important;
	border-radius: 0 !important;
	padding: .75rem 0 !important;
	font-weight: 300 !important;
	color: var(--black) !important;
	height: inherit !important;
	font-size:  0.875rem;
	padding: .75rem 1rem !important;
}


.profile-content .frm_style_formidable-style.with_frm_style input,
.profile-content .frm_style_formidable-style.with_frm_style select,
.profile-content .frm_style_formidable-style.with_frm_style select option,
.profile-content .frm_style_formidable-style.with_frm_style textarea,
.contact-content .frm_style_formidable-style.with_frm_style input,
.contact-content .frm_style_formidable-style.with_frm_style select,
.contact-content .frm_style_formidable-style.with_frm_style select option,
.contact-content .frm_style_formidable-style.with_frm_style textarea{
	background-color: #fff !important;
}

.frm_style_formidable-style.with_frm_style select{
	height: 42px !important;
	border-radius: 0 !important;
}

.frm_style_formidable-style.with_frm_style .form-mailchimp  input{
	border: 0 !important;
	border-bottom: 1px solid var(--darkred) !important;
	background-color: transparent !important;
	border-radius: 5px !important;
	color: var(--white) !important;
	font-size:  0.875rem;
}

.frm_style_formidable-style.with_frm_style textarea{
	resize: none;
}

.frm_style_formidable-style.with_frm_style input::placeholder,.frm_style_formidable-style.with_frm_style textarea::placeholder {
	color: var(--black) !important;
}

.frm_style_formidable-style.with_frm_style input::-webkit-input-placeholder,.frm_style_formidable-style.with_frm_style textarea::-webkit-input-placeholder {
	color: var(--black) !important;
}

.frm_style_formidable-style.with_frm_style input::-moz-placeholder,.frm_style_formidable-style.with_frm_style textarea::-moz-placeholder {
	color: var(--black) !important;
}

.frm_style_formidable-style.with_frm_style input:-ms-input-placeholder,frm_style_estilos-formidable.with_frm_style textarea:-ms-input-placeholder {
	color: var(--black) !important;
}

.frm_style_formidable-style.with_frm_style input:-moz-placeholder,.frm_style_formidable-style.with_frm_style textarea:-moz-placeholder {
	color: var(--black) !important;
}

.frm_style_formidable-style.with_frm_style .frm_default,
.frm_style_formidable-style.with_frm_style input.frm_default,
.frm_style_formidable-style.with_frm_style textarea.frm_default,
.frm_style_formidable-style.with_frm_style select.frm_default,
.frm_style_formidable-style.with_frm_style .placeholder,
.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,
.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-default {
	color: var(--black) !important;
}

.frm_style_formidable-style.with_frm_style .form-mailchimp input::placeholder,.frm_style_formidable-style.with_frm_style .form-mailchimp textarea::placeholder {
	color: var(--white) !important;
}

.frm_style_formidable-style.with_frm_style .form-mailchimp input::-webkit-input-placeholder,.frm_style_formidable-style.with_frm_style .form-mailchimp textarea::-webkit-input-placeholder {
	color: var(--white) !important;
}

.frm_style_formidable-style.with_frm_style .form-mailchimp input::-moz-placeholder,.frm_style_formidable-style.with_frm_style .form-mailchimp textarea::-moz-placeholder {
	color: var(--white) !important;
}

.frm_style_formidable-style.with_frm_style .form-mailchimp input:-ms-input-placeholder,frm_style_estilos-formidable.with_frm_style .form-mailchimp textarea:-ms-input-placeholder {
	color: var(--white) !important;
}

.frm_style_formidable-style.with_frm_style .form-mailchimp input:-moz-placeholder,.frm_style_formidable-style.with_frm_style .form-mailchimp textarea:-moz-placeholder {
	color: var(--white) !important;
}

.frm_style_formidable-style.with_frm_style .form-mailchimp .frm_default,
.frm_style_formidable-style.with_frm_style .form-mailchimp input.frm_default,
.frm_style_formidable-style.with_frm_style .form-mailchimp textarea.frm_default,
.frm_style_formidable-style.with_frm_style .form-mailchimp select.frm_default,
.frm_style_formidable-style.with_frm_style .form-mailchimp .placeholder,
.frm_style_formidable-style.with_frm_style .form-mailchimp .chosen-container-multi .chosen-choices li.search-field .default,
.frm_style_formidable-style.with_frm_style .form-mailchimp .chosen-container-single .chosen-default {
	color: var(--white) !important;
}

/* HEADER */

.header-wrapper{
	background-color: rgba(0,0,0,.8);
	-webkit-transition: .3s all;
	transition: .3s all;
/*	box-shadow: 0 3px 6px rgba(25,29,31,.16);	*/
}

.page-template-single-frame .header-wrapper,
.page-template-single-artist .header-wrapper,
.page-template-single-work .header-wrapper,
.single .header-wrapper{
	background-color: rgba(0,0,0,1);
}

.header-wrapper .navbar-expand-lg{
	padding: 1.2rem 0;
}

.header-wrapper .navbar-expand-lg .navbar-nav .nav-item{
	position: relative;
	border-top: 1px solid rgba(226,226,226,.5);
	padding-top: .75rem;
	margin-top: .75rem;
}

.header-wrapper .navbar-expand-lg .navbar-nav .nav-link{
	font-size: var(--fs16);
	padding: 0 1rem;
	text-transform: uppercase;
	line-height: normal;
	color: var(--white100);
}

.header-wrapper .navbar-expand-lg .navbar-nav .nav-link img{
	position: relative;
	top: -.5rem;
	right: 0;
}

.header-wrapper .navbar-expand-lg .navbar-nav .nav-item:first-child .nav-link{
	padding-left: 0;
}

.header-wrapper .navbar-expand-lg .navbar-nav .nav-item:last-child .nav-link{
	padding-right: 0;
}

/*
.header-wrapper .navbar-expand-lg .navbar-nav .nav-item:last-child .nav-link{
	border: 1px solid var(--main);
	background-color: var(--main);
	padding: .5rem 1rem;
	margin-left: 1rem;
	color: var(--white)
}

.header-wrapper .navbar-expand-lg .navbar-nav .nav-item:last-child:hover .nav-link{
	background-color: var(--transparent);
	color: var(--black)
}
*/

.header-wrapper .navbar-expand-lg .navbar-nav .nav-item.active .nav-link,
.header-wrapper .navbar-expand-lg .navbar-nav .nav-link:hover{
	color: var(--white);
	position: relative;
}

.header-wrapper .navbar-expand-lg .navbar-nav .nav-item.active .nav-link{
	font-weight: 600;
}

.header-wrapper-color{
	background-color: var(--black100);
}

body.search .header-wrapper{
	background-color: var(--black100);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 10rem;
	padding: .5rem 0;
	margin: .125rem 0 0;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	list-style: none;
	background-color: var(--black);
	background-clip: padding-box;
	border: none;
	border-radius: 0;
}

.dropdown-item{
	color: var(--white);
}

.dropdown-item.active, .dropdown-item:active{
	background-color: var(--darkgrey);
}

.box-topnav{
	position: absolute;
	top: 0px;
	right: 0;
	height: 59px;
	margin: 0;
}

.box-topnav li{
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 1rem;
}

.box-topnav li:last-child a{
	width: 35px;
	text-align: center;
}

.light-white-bg {
	background-color: rgba(255,255,255,0.15);
}

.box-topnav li a{
	font-family: var(--font-main);
	font-size: var(--fs16);
	font-weight: 300;
	color: var(--white100);
}


.box-topnav li a i{
	font-size: var(--fs18);
}

.box-topnav li a strong{
	font-weight: 600;
	text-transform: uppercase;
}

.box-search-menu{
	background-color: rgba(72,72,72,.5);
	padding: 0;
}

.box-search-menu a{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.box-search{
	position: fixed;
	top: -200px;
	left: 0;
	right: 0;
	background-color: var(--black);
	z-index: 1040;
	-webkit-transition: .6s all;
	transition: .6s all;
	color: var(--white);
	opacity: 0;
}

.box-search.box-search-visible{
	top: 0;
	opacity: 1;
}

.box-search input{
	width: 100%;
	border: 0;
	border-bottom: 1px solid #717270;
	padding: 1rem 0;
	font-size: var(--fs26);
	font-weight: 300;
	color: var(--white);
	text-transform: uppercase;
	background-color: transparent;
}

.box-search img.lupa {
	height:15px;
}

.box-search a {
	color:#ffffff;
	text-transform: uppercase;
	font-size: 1.4rem;
	padding: 10px;
}
/* TOP HEADER */

.top-header{
	position: relative;
	padding: 2rem 0;
}

.top-header:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: -100%;
	width: 1000%;
	height: 1px;
	background-color: var(--grey);
}

.box-languages{
	position: relative;
}

.box-languages:before{
	content: '';
	position: absolute;
	top: 50%;
	left: -.8rem;
	width: 1.6rem;
	height: 1px;
	background-color: var(--black);
}

/* HEADER */

.main-logo{
	max-width: 236px;
}

/* HOME */

.box-slick .slick-slide{
	height: 70vh;
}

.box-slick .slick-slide .box-links{
	position: absolute;
	bottom: 0;
	right: 1rem;
}

.box-slick .slick-slide .box-links .link-white{
	text-transform: inherit;
	padding: .25rem .5rem;
	margin: 0 .25rem;
	font-size: 14px;
	border-bottom: 0;
}

.box-slick .slick-slide .box-links .link-white:last-child{
	padding: .25rem .5rem;
	margin: 0 .25rem;
	text-decoration: underline;
	text-transform: uppercase;
	font-weight: 700;
}

.box-bg-black{
	background-color: var(--black100) !important;
}

.box-bg-light{
	background-color: var(--bg-light) !important;
}
.box-last-work .bg-cover{
	border: 8px solid var(--white100);
}
.box-last-work .bg-cover:hover{
	box-shadow: 0px 0px 15px rgba(0,0,0,0.7);
}

.box-last-work .row:not(:last-child){
	margin-bottom: 2rem;
}

.box-bg-black p,
.box-bg-black .text,
.box-bg-black .titulo,
.box-bg-black .subtitulo{
	color: var(--white100);
}

.box-bg-black .separador:after{
	background-color: var(--white100);
}

.box-slick-news{
	margin-top: 3rem;
}

.box-slick-news .slick-slide{
	margin: 0 .5rem;
}

.box-slick-news .category{
	padding-top: 1rem;
/*	color: var(--white);*/
}

.box-slick-news .category::first-letter{
	text-transform: capitalize;
}

.box-slick-news .titulo a{
	font-family: var(--font-montserrat);
	font-size: var(--fs14);
/*	font-weight: 600;*/
	padding-right: 3rem;
/*	color: var(--white);*/
}

.box-slick-news .slick-slide img.icon-news {
	display: inline-block;
	margin-top: -1rem;
	margin-left: .5rem;
	vertical-align: baseline;
}

.slick-prev, .slick-next {
	width: 24px;
	height: 58px;
	left: -10%;
	z-index: 9;
}

.slick-next {
	left: inherit;
	right: -10%;
}

.slick-prev:before, .slick-next:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 58px;
	background-size: 24px 58px;
	background-repeat: no-repeat;
	background-position: top left;
	background-image: url('images/slick-prev.svg');
/*
	-webkit-filter: invert(1);
	filter: invert(1);
*/
}

.filter{
	-webkit-filter: invert(1);
	filter: invert(1);
}

.slick-next:before {
	background-image: url('images/slick-next.svg');
}


/* LIST WORKS */

.box-pagination .link-white{
	width: 40px;
	height: 40px;
	padding: inherit;
	background-color: var(--white100);
	color: var(--black100);
	border: 1px solid var(--black100);
	line-height: 38px;
}

.size-work{
	font-size: var(--fs14);
	font-weight: 400;
	margin-left: 8px;
}

.box-filter .form-control {
	border: 1px solid var(--black);
	border-radius: 0 !important;
	-webkit-appearance: none;
}

.box-filter select.form-control {
	background-image: url('images/arrow-select.svg');
	background-repeat: no-repeat;
	background-size: 6px 3px;
	background-position: calc(100% - .5rem) center;
}

.box-filter .box-bg-black{
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	padding: 0;
	-webkit-transition: .3s all;
	transition: .3s all;
}

.box-filter .box-bg-black.show-filter{
	opacity: 1;
	max-height: 1000px;
	overflow: inherit;
	padding: 1rem 0;
}

.open-filter:hover,
.open-filter{
	background-color: var(--black);
	color: var(--white100);
	display: inline-block;
	float: right;
	padding: 0 .5rem;
}

.form-filter label{
	display: block;
	color: var(--white100);
	text-transform: uppercase;
}

.form-filter label.form-check-label{
	text-transform: capitalize;
	font-weight: 300;
}

/* SINGLE WORK */

.box-single-search{
	background-color: #E2E2E2;
	padding: 1rem 0;
}

.box-single-search p{
	font-size: var(--fs20);
}

.box-single-search p strong{
	font-weight: 600
}

.box-single-search p i{
	color: #717270;
	padding-left: 1rem;
}

.box-features{
	position: relative;
	padding: 2rem 0;
	margin: 2rem 0;
	border-top: 1px solid #E2E2E2;
	border-bottom: 1px solid #E2E2E2;
}

.box-share,
.box-points{
	float:right;
}

.box-share{
	position: relative;
	z-index: 2;
	float:right;
}

.box-share a{
	display: inline-block;
	margin-left: 1rem;
}

.box-points p{
	font-size: var(--fs22);
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	z-index: 2;
}

.box-frame span{
	margin-top: .5rem;
	display: inline-block;
	border: 1px solid var(--black100);
	width: 30px;
	height: 30px;
	text-align: center;
}

.box-frame span.active{
	background-color: var(--black100);
	color: var(--white100);
}

.box-frame a{
	/* margin-left: 1rem; */
	display: inline-block;
	text-transform: capitalize;
	text-decoration: underline;
	font-size: var(--fs14);
}

.box-download-brochure{
	background-color: #fff;
}

/* .box-custom p{
	line-height: normal;
} */

.box-custom span{
/*	color: var(--white);*/
	text-transform: none;
	display: block;
	margin-top: .5rem;
}

.box-custom ul li{
	color: var(--white);
}

/* LIST ARTISTS */

.artists-content .size-work{
	margin-bottom: 0;
}

.artists-content .box-last-work .row{
	margin-bottom: var(--separator);
}


/* SINGLE ARTIST */

.box-share.box-share-single-artist{
	top: 0;
	z-index: 2;
	position: relative;
}



/* COMPANY */

.box-taller{
	background-image: url('images/bg-taller.jpg');
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: auto 100%;
}

.list-paises{
	margin-top: var(--separator);
}

.list-paises p{
	color: var(--grey);
	text-transform: uppercase;
	font-size: var(--fs30);
	font-weight: 300;
	margin-bottom: 2rem;
}

/* FOOTER */

.footer{
	border-top: 1px solid var(--white100);
	background-color: var(--black100);
	padding-top: 6rem;
}

.footer .box-border-left{
	border-left: 1px solid #E2E2E2;
	padding: 0 1rem;
	margin: 0 2rem;
}

.footer p,
.footer .titulo,
.footer a,
.footer ul li p,
.footer ul li a{
	color: var(--white100);
	font-size: var(--fs14);
}

.footer li{
	margin-bottom: .5rem;
}

.footer .titulo{
	font-family: var(--font-main);
	margin-top: 0;
	margin-bottom: 1.5rem;
	position: relative;
/*	font-size: var(--fs22);*/
	font-size: var(--fs16);
}

.footer .logo{
	max-width: 224px;
}

.footer .link-transparent{
	text-align: left;
}

.footer .fab{
	margin-right: 1rem;
}


/* BOTTOM FOOTER */

.bottomfooter{
	color: var(--black100);
	background-color: var(--white100);
	font-size: var(--fs12);
	margin-top: 3rem;
}

.bottomfooter ul{
	margin-top: inherit;
}

.bottomfooter .legal-menu ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin-bottom: 0;
}

.bottomfooter .legal-menu ul li{
	margin-left:1rem;
	border-right: 1px solid var(--black100);
	padding-bottom: 0;
	padding-right: 1rem;
}

.bottomfooter .legal-menu ul li:last-child{
	margin-left:1rem;
	border-right: 0;
	padding-right: 0;
}

.bottomfooter a,
.bottomfooter ul li a{
	color: var(--black100);
	font-size: var(--fs12);
	display: inline-block;
}


.bg-none{
	background-image: none;
}

/*
.form-visible{
	background-color: #ffffff;
	border-radius: 15px;
	border: 1px solid #707070;
	padding: 2rem;
	margin-right: 1rem;
}

.form-visible p{
	font-size: var(--fs21);
}

.form-visible .subtitulo{
	color: var(--black);
}
*/

/* ARROW DOWN SLIDER */

.bounce {
	-moz-animation: bounce 3s infinite;
	-webkit-animation: bounce 3s infinite;
	animation: bounce 3s infinite;
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}







/* PAGINATION */


.pagination {
	height: 36px;
	display: inline-block;
  }
  .pagination ul {
	display: inline-block;
	*display: inline;
	/* IE7 inline-block hack */

	*zoom: 1;
	margin-left: 0;
	margin-bottom: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }
  .pagination li {
	display: inline;
  }
  .pagination a {
	float: left;
	padding: 0 14px;
	line-height: 34px;
	text-decoration: none;
	border: 1px solid #ddd;
	border-left-width: 0;
  }
  .pagination a:hover,
  .pagination .active a {
	background-color: #f5f5f5;
  }
  .pagination .active a {
	color: #999999;
	cursor: default;
  }
  .pagination .disabled span,
  .pagination .disabled a,
  .pagination .disabled a:hover {
	color: #999999;
	background-color: transparent;
	cursor: default;
  }
  .pagination li:first-child a {
	border-left-width: 1px;
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
  }
  .pagination li:last-child a {
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
  }

input.error {
	border-color: #f55753 !important;
}

.ok_msg {
	padding: 15px;
	border: 1px solid #D6E9C6;
	background-color: #DFF0D8;
	color: #468847;
	border-radius: 4px;
	margin: 0;
	margin-bottom: 20px;
}
.error_msg {
	background-color: #F2DEDE;
	border: 1px solid #EBCCD1;
	border-radius: 4px;
	color: #B94A48;
	font-size: 14px;
	margin: 0;
	margin-bottom: 20px;
}
span.error {
	color: #B94A48;
	font-weight: bold;
}

#cuadro_searchform {
	color:#fff;
}

.dropdown-colorselector>.dropdown-menu>li>.color-btn.selected {
	border: solid 3px lightgreen;
}
.dropdown-colorselector>.dropdown-menu>li>.color-btn.selected:after {
	content: "";
	font-family: '"Font Awesome 5 Free"';
	display: inline-block;
	font-size: 11px;
	color: #FFF;
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	line-height: 20px;
}

.btn-colorselector {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: transparent;
	vertical-align: middle;
	border-radius: 0;
	border-color: #fff;
	border: solid 1px;
}

.dropdown-colorselector {
	display: inline-block;
	margin-left:10px;
}

.orientacion-box {
	display: inline-block;
	float: right;
}

.label-horizontal {
	color: black;
	background-color: white;
	width: 50px;
	height: 25px;
	text-align: center;
}

.label-vertical {
	color: black;
	background-color: white;
	width: 14px;
	height: 25px;
	text-align: center;
}

.label-cuadrado {
	color: black;
	background-color: white;
	width: 25px;
	height: 25px;
	text-align: center;
}

input[type="checkbox"]:checked+label {
	color: white;
	background-color: black;
	border: solid 1px #fff
}

.label-tamanos {
	width:30px;
	font-size:10px;
	text-align: center;
}

.label-tamanom {
	width:30px;
	font-size:15px;
	text-align: center;
}

.label-tamanol {
	width:30px;
	font-size:20px;
	text-align: center;
}

.bucar-obras {
	width:100%;
	background-color: #fff;
	color: #000;
	text-transform: uppercase;
	padding: 6px;
	border: 1px solid #fff;
	cursor: pointer;
}

.bucar-obras:hover {
	background-color: #000;
	color: #fff;
}

#ancho,
#alto {
	background-color: transparent;
	border: 0;
	color: white;
}

.por_medidas {
	display: inline-block;
	float:right;
}

.por_medidas label {
	padding: 5px 10px;
}

.foto_ambiente {
	position:relative;
	overflow:hidden;
}
.foto_ambiente img.ambiente {
	width:100%;
	height: auto;
}
.cuadro_box{
	position: absolute;
	/* border: solid 1px; */
	text-align:center;
	white-space: nowrap;
	width: 50%;
	height: 50%;
	top: 10%;
	left: 10%;
}
.cuadro_box span {
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
.cuadro_box img.cuadro{
	max-width: 100%;
	max-height: 100%;
	box-shadow: 0 0 5px 0 rgba(0,0,0,.4);
}

.ambiente1 .cuadro_box {
	width: 42%;
	height: 52%;
	top: 2%;
	left: 26%;
}

.ambiente2 .cuadro_box {
	width: 50%;
	height: 49%;
	top: 2%;
	left: 40%;
}

.ambiente3 .cuadro_box {
	width: 36%;
	height: 49%;
	top: 2%;
	left: 37%;
}
.ambiente4 .cuadro_box {
	width: 49%;
	height: 43%;
	top: 2%;
	left: 12%;
}
.ambiente5 .cuadro_box {
	width: 42%;
	height: 35%;
	top: 17%;
	left: 19%;
}
.ambiente6 .cuadro_box {
	width: 35%;
	height: 29%;
	top: 21%;
	left: 61%;
}
.ambiente7 .cuadro_box {
	width: 29%;
	height: 48%;
	top: 2%;
	left: 42%;
}
.ambiente8 .cuadro_box {
	width: 36%;
	height: 48%;
	top: 2%;
	left: 25%;
}
.ambiente9 .cuadro_box {
	width: 47%;
	height: 48%;
	top: 2%;
	left: 29%;
}
.ambiente10 .cuadro_box {
	width: 53%;
	height: 57%;
	top: 2%;
	left: 20%;
}
.ambiente11 .cuadro_box {
	width: 53%;
	height: 57%;
	top: 2%;
	left: 20%;
}
.ambiente12 .cuadro_box {
	width: 48%;
	height: 47%;
	top: 6%;
	left: 26%;
}
.ambiente13 .cuadro_box {
	width: 47%;
	height: 40%;
	top: 12%;
	left: 13%;
}
.ambiente14 .cuadro_box {
	width: 53%;
	height: 51%;
	top: 2%;
	left: 20%;
}
.ambiente15 .cuadro_box {
	width: 60%;
	height: 57%;
	top: 2%;
	left: 15%;
}
.ambiente16 .cuadro_box {
	width: 63%;
	height: 57%;
	top: 2%;
	left: 20%;
}
.ambiente17 .cuadro_box {
	width: 65%;
	height: 71%;
	top: 2%;
	left: 34%;
}



/* .cuadrogallery{
	margin-right:90px;
}
.cuadrogallery img,
.nav-cuadrogallery img {
	max-width:100%;
}

.nav-cuadrogallery img {
	margin-bottom:7px;
}
.nav-cuadrogallery {
	position: absolute;
	top: 0;
	right: 12px;
	width: 85px;
} */
.cuadrogallery img{
	max-height:350px;
	display: block;
	margin:0 auto;
}

.nav-cuadrogallery img {
	margin-right:7px;
	margin-top:7px;
	max-height:75px;
}


.box-filter input,
.box-filter input:focus {
	border: solid 1px #fff !important;
	background-color: #000;
	color:#fff;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
	color: #fff;
	background-color: #000;
}
.bootstrap-select .dropdown-menu li a {
	cursor: pointer;
	user-select: none;
	color: #fff;
	background-color: #000;
}
.bootstrap-select .dropdown-menu li a:hover {
	font-style: italic;
}
.btn.dropdown-toggle.btn-light {
	color: #fff;
	background-color: #000;
	padding-left:40px;
}

button.dropdown-toggle[data-id='puntos'] {
	background-image: url("/wp-content/themes/novocuadro/images/dots.svg") ;
	background-size: 20px;
	background-position: 10px center;
	background-repeat: no-repeat;
}

button.dropdown-toggle[data-id='soportes'] {
	background-image: url("/wp-content/themes/novocuadro/images/features-white.svg") ;
	background-size: 20px;
	background-position: 10px center;
	background-repeat: no-repeat;
}

button.dropdown-toggle[data-id='tags'] {
	background-image: url("/wp-content/themes/novocuadro/images/points-white.svg") ;
	background-size: 20px;
	background-position: 10px center;
	background-repeat: no-repeat;
}

button.dropdown-toggle[data-id='tecnicas'] {
	background-image: url("/wp-content/themes/novocuadro/images/filter-white.svg") ;
	background-size: 20px;
	background-position: 10px center;
	background-repeat: no-repeat;
}

button.dropdown-toggle[data-id='artistas'] {
	background-image: url("/wp-content/themes/novocuadro/images/brochure-white.svg") ;
	background-size: 20px;
	background-position: 10px center;
	background-repeat: no-repeat;
}

.dropdown-colorselector a {
	color:#fff;
}


.color-container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
  }
/* Hide the browser's default checkbox */
.color-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
  }
  
  /* Create a custom checkbox */
  .color-container  .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .color-container:hover input ~ .checkmark {
	background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .color-container input:checked ~ .checkmark {
	background-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
	content: "";
	position: absolute;
	display: none;
  }
  
  /* Show the checkmark when checked */
  .color-container input:checked ~ .checkmark:after {
	display: block;
  }
  
  /* Style the checkmark/indicator */
  .color-container .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
  }

.img-responsive {
	max-width: 100%;
}
#fav_box {
	position: relative;
}
#fav_counter {
	position: absolute;
	bottom: 0;
	right: 10px;
	background-color: black;
	color: white;
	border-radius: 50%;
	width: 16px;
	font-size: 10px;
	height: 16px;
	border: solid 1px white;
	text-align: center;
}

li.separator {
    border-right: 1px solid var(--gray);
}
span.post-date {
	font-size: 12px;
    color: var(--grey);
}
.post-title,
p.post-title {
	text-transform: uppercase;
    margin: 0;
    padding: 0;
    font-size: 15px;
	font-family: var(--font-montserrat);
	line-height: normal;
}
.post-line-separator {
	width: 15px;
	height:1px;
	margin-top: 10px;
    padding: 0;
    margin-bottom: 5px;
    border-top: solid 1px #000000;
}
.conainer_box_hidden_overflow {
	/* min-height:350px; */
	overflow:hidden;
}

.blog-content a {
	display:unset;
	text-decoration: underline;
}
.blog-content img {
	max-width:100%;
	height:auto;
	margin-bottom: 1rem;
}
.blog-content h3 {
	font-size:1.2rem;
}
.blog-content h2 {
	font-size:1.2rem;
	line-height: 2;
	margin-bottom: 40px;
}



.newsl-footer .frm_style_formidable-style.with_frm_style input[type=password],
.newsl-footer .frm_style_formidable-style.with_frm_style input[type=email],
.newsl-footer .frm_style_formidable-style.with_frm_style input[type=tel],
.newsl-footer .frm_style_formidable-style.with_frm_style input[type=url],
.newsl-footer .frm_style_formidable-style.with_frm_style input[type=text]{
	border: 1px solid var(--grey) !important;
	background-color: #fff !important;
	border-radius: 0 !important;
	padding: .5rem !important;
	font-weight: 300 !important;
	color: var(--black) !important;
	height: inherit !important;
	font-size:  0.875rem;
}

.newsl-footer .frm_style_formidable-style.with_frm_style .frm_submit button{
    font-size: 0 !important;
    background-color: #000000 !important;
    width: 58px !important;
    height: 34px !important;
    color: var(--white100) !important;
    margin-top: -53px !important;
    margin-right: 1px;
    background-image: url(images/send-newsletter.svg) !important;
    background-size: 21px 16px !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

/* .newsl-footer .frm_style_formidable-style.with_frm_style .frm_submit button:hover{
	background-image: url('images/send-newsletter-hover.svg') !important;
} */

.newsl-footer .frm_style_formidable-style.with_frm_style #field_tnucg_label.frm_primary_label,
.newsl-footer .frm_style_formidable-style.with_frm_style #field_tnucg_label.g-recaptcha-response {
	display: none !important;
}

.newsl-footer .frm_style_formidable-style.with_frm_style a,
.newsl-footer .frm_style_formidable-style.with_frm_style .frm_checkbox label{
	color: var(--white100) !important;
}
.newsl-footer .frm_style_formidable-style.with_frm_style .form-field{
	margin-bottom: 0 !important;
}
.newsl-footer input[type=checkbox]{
	margin-right:12px;
	margin-bottom:12px;
}
.policy-content ul {
	padding-left: 2rem;
	list-style: disc;
}

ul.share-icons li {
	display: inline-block;
	margin:0 1rem;
}


ul.share-icons li a {
	font-size: 2rem;
}



.favoritos .conainer_box_hidden_overflow {
	min-height: unset;
    border: 8px solid var(--white100);
}
.favoritos .bg-cover {
	height: 150px;
	width: 150px;
	min-height: unset;
}
.favoritos .bg-cover-header {
	height: 80px;
	width: 80px;
	min-height: unset;
	border: 4px solid var(--white100);
	margin:0 auto;
}
.favoritos a {
	font-size:unset;
}
.favoritos h1,
.favoritos h2,
.favoritos h3,
.favoritos h4 {
	text-transform: uppercase;
	font-weight: bold;
}

.favoritos .subtitulo {
	text-transform: none;
}

.favoritos .graylink {
	font-size: 0.8rem;
	color: var(--darkgrey);
    font-style: italic;
    text-decoration: underline;
}

.favoritos label {
	font-weight: bold;
}

.modal-novocuadro-big a {
	display: unset;
}
.modal-novocuadro .modal-content,
.modal-novocuadro-big .modal-content{
	border: 0;
	border-radius: 0;
	box-shadow: 3px 3px 30px rgba(0,0,0,.6);
}

.modal-novocuadro .modal-dialog{
	max-width: 500px;
}
.modal-novocuadro-big .modal-dialog{
	max-width: 700px;
}
.bg-cover-only{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
}

.gray_input {
	border-radius: 0;
	background-color: var(--bg-light);
	border-color: var(--bg-light);
}

.white_input {
	border-radius: 0;
	background-color: #ffffff;
	border-color: #ffffff;
}

#mce-EMAIL {
	border: 1px solid var(--grey) !important;
	background-color: #fff !important;
	border-radius: 0 !important;
	padding: .5rem !important;
	font-weight: 300 !important;
	color: var(--black) !important;
	height: 36px !important;
	font-size: 0.875rem;
	line-height: 1.3;
	font-family: "Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;
	margin-bottom: 12px;
	width:100%;
}


#mc-embedded-subscribe {
	font-size: 0 !important;
	background-color: #000000 !important;
	border: 0;
	width: 58px !important;
	height: 34px !important;
	color: var(--white100) !important;
	background-image: url(images/send-newsletter.svg) !important;
	background-size: 21px 16px !important;
	background-repeat: no-repeat !important;
	position: absolute;
	top: 1px;
	background-position: center center !important;
	right: 1px;
}
#mc_embed_signup_scroll {
	position:relative;
}
#mc_embed_signup_scroll a {
	display:unset;
}
#mc_embed_signup_scroll label {
	font-size: var(--fs14);
}

.otros_clientes p {
	width:100%;
	display: block;
	text-align: center;
}

.otros_clientes img {
	max-width:80%;
	opacity:0.6;
}

.title {
	font-family: var(--font-main);
/*	font-size: var(--fs35);*/
	font-size: var(--fs28);
	font-weight: 600;
	color: var(--main);
	line-height: normal;
	text-transform: uppercase;
	margin-top: 1rem;
	width: 100%;
}

.nav-cuadrogallery .slick-list {
	overflow: unset;
}

.blog-content p {
	line-height: unset;
}

.latest-posts-sidebar h3 {
	font-family: var(--font-main);
	font-size: var(--fs20);
	font-weight: 600;
	color: var(--main);
	position: relative;
	line-height: normal;
	text-transform: uppercase;
	margin-top: 1rem;
}

.latest-posts-sidebar a {
	text-transform: lowercase;
	display: block;
	line-height: normal;
	text-decoration:none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.latest-posts-sidebar > .row {
	margin-right: -5px;
	margin-left: -5px;
}
.latest-posts-sidebar > .row > [class*='col-'] {
	padding-right: 5px;
	padding-left: 5px;
}

.box-slick-cuadros-marcos .slick-slide {
	filter: brightness(50%);
}
.box-slick-cuadros-marcos .slick-list {
	overflow: visible;
}

.box-slick-cuadros-marcos .slick-slide.slick-active {
	filter: brightness(100%);
}

.box-slick-cuadros-marcos .slick-next {
	height: 100%;
	width: 50%;
	right: -50%;
}
.box-slick-cuadros-marcos .slick-prev {
	height: 100%;
	width: 50%;
	left: -50%;
}
.box-slick-cuadros-marcos .slick-next:before {
	top: 45%;
	left: 10%;
	filter: invert(1);
}
.box-slick-cuadros-marcos .slick-prev:before {
	top: 45%;
	left:unset;
	right: 10%;
	filter: invert(1);
}

.fancybox-content {
	padding:0;
}

.box-loader {
	display: none !important;
}

.buttonintitle {
	padding: 0.5rem 1rem;
	position: relative;
	top: -0.4rem;
}


form a {
	display:unset;
}

.fancybox-slide--html .fancybox-close-small {
	background-color:white;
}
.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    overflow: hidden;
    text-transform: capitalize;
}
.artista_listado div {
	width: 110px;
    height: 110px;
    overflow: hidden;
    display: inline-block;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 20px;
}
.artista_listado a {
    display: inline-block;
    font-size: 1.75rem;
}
.artista_listado_link {
	margin-top:40px;
}


.visible-sm {
	display:none;
}

.breadcrumbs {
	border-bottom: solid 1px #dee2e6;
	padding:7px;
	font-size:0.8rem;
}
.breadcrumbs a {
	display:inline-block;
	font-size:0.8rem;
}
.breadcrumbs a:hover {
	text-decoration:underline;
}

.showprint {
	display: none;
}
@media print {
	.footer,
	.hideprint,
	.delfav,
	.delmarco,
	header {
		display: none;
	}
	.showprint {
		display: block;
	}
	.border-left,
	.border-right, 
	.border-top,
	.border-bottom {
		border:0 !important;
	}
	section {
		border-bottom: solid 1px black;
	}
} 

#languagemenu {
	min-width: unset;
	text-align: center;
	padding: 5px 10px;
}

.box-news .slick-prev,
.box-news .slick-next {
	top:35%;
}

.language-flag {
	max-height: 20px;
    margin: 7px 0;
}

.language-flag.active {
	max-height: 16px;
    margin: 0;
}

#chlang img:nth-child(2) {
	position: absolute;
	top:11px;
}


.box-slider .slick-next {
	right:2%;
}
.box-slider .slick-prev {
	left:2%;
}

.lupabusqueda img {
	height:18px;
	vertical-align: middle;
}

.square {
	position: relative;
	width: 100%;
	min-height: unset;
}

.square:after {
	content: "";
	display: block;
	padding-bottom: 100%;
}

.titulo-index {
	color: var(--white);
	font-size:var(--fs22);
}
.subtitulo-index {
	color: var(--white);
	font-size:var(--fs16);
}

.lineh13 {
	line-height: 1.3rem;
}

h1,
h2,
h3,
h4,
h5,
h6{
	font-family: var(--font-montserrat) !important;
	font-weight: 500 !important;
}

h1.subtitulo,
h2.subtitulo,
h3.subtitulo,
h4.subtitulo,
h5.subtitulo,
h6.subtitulo{
	font-weight: 400 !important;
}

h1.subtitulo p,
h2.subtitulo p,
h3.subtitulo p,
h4.subtitulo p,
h5.subtitulo p,
h6.subtitulo p{
	font-family: var(--font-montserrat) !important;
}

h1.lineh13{
	font-family: var(--font-main) !important;
}

#search_menu {
	border: solid 1px #fff;
	margin-top: 10px;
}
.frm_style_formidable-style.with_frm_style .frm_submit button {
	padding: 1rem 2.5rem !important;
}
.footer_feder {
	margin-top:1rem;
	margin-bottom:1rem;
	text-align: center;
}
.footer_feder a {
	display:unset;
	text-decoration:underline;
}
.footer_feder div div p {
	margin-top:15px;
}
.footer_feder img {
	max-height:160px;
	max-width: 100%;
	margin-bottom:1rem;
	margin-top:1rem;
}
.header_feder {
	height: 58px;
	position: absolute;
	top: 0px;
	right: 15px;
}

.header_feder_container {
	width:80px;
}


.box-search-buttons {
	padding-top: 64px;
	padding-bottom: 0px;
}
.search-buttons {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	align-content: center;
	align-items: center;
}


@media (max-width: 991px) {
	.box-search-buttons {
		padding-top: 32px;
		gap:12px
	}
	.search-buttons a {
		width: calc(50% - 12px);
		padding:0.5rem;
	}
}