.eventos-contenedor-inline > div,.eventos-contenedor-inline > a{
    display: inline-block;
}
.otros_eventos, .flex-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
}

.flex-container.lista-eventos > div {
    width: 31%;
}

.texto_central {
    max-width: 910px;
    margin: 80px auto 120px;
    text-align: center;
}
.texto_central h1 {
    font-family: "IbarraReal";
    color: #d6aa77;
    text-transform: uppercase;
    font-size: 34px;
    max-width: 485px;
    margin: 20px auto;
    text-align: center;
}
.texto_central.eventos{
    margin:80px auto 0;
}

.texto_central .titulo {
    font-size: 76px;
    line-height: 1;
    color: #dab480;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.texto_central .titulo:after {
    content: '';
    width: 50%;
    margin: 0 auto;
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    height: 2px;
    background: #dab480;
}

.texto_central .cuerpo {
    font-family: 'AvenirLTStdRoman';
    font-weight: 400;
    padding-top: 25px;
    margin-bottom: 25px;
    font-size: 20px;
}

.texto_central .cuerpo p {
    margin-bottom: 20px;
}
.texto_central .cuerpo p a {
    color: #d6aa70;
}

.texto_central .enlace_seccion {
    text-transform: uppercase;
    color: #dab480;
}

#formulario_eventos {
    margin: 30px auto 80px;
    max-width: 780px;
}

#formulario_eventos .intro_message {
    margin-bottom: 15px;
    font-size: 20px;
    font-family: 'AvenirLTStdRoman';
    /*font-weight: 700;*/
}

#formulario_eventos .mensaje_final {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

#formulario_eventos .mensaje_final.show_message {
    height: auto;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    padding: 20px;
    border: 1px solid #dab480;
    -webkit-box-shadow: 1px 1px 2px #dab480;
    -moz-box-shadow: 1px 1px 2px #dab480;
    box-shadow: 1px 1px 2px #dab480;
}

#formulario_eventos form.hide_form {
    opacity: 0;
}

#formulario_eventos .form_errors {
    -webkit-transition: opacity 0.3s ease-in;
    -moz-transition: opacity 0.3s ease-in;
    -ms-transition: opacity 0.3s ease-in;
    -o-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in;
    background: #a94442;
    color: #fff;
    text-transform: uppercase;
    padding: 15px;
    margin-bottom: 15px;
}

#formulario_eventos .form_errors.hide {
    opacity: 0;
    visibility: hidden;
    padding: 0;
    margin-bottom: 0;
    height: 0;
    overflow: hidden;
}

#formulario_eventos .field_group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 25px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#formulario_eventos .field_group.hidden {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    margin-bottom: 0;
}

#formulario_eventos .field_group .field_error {
    color: #a94442;
    opacity: 0;
    margin-right: 5px;
    -webkit-transition: opacity 0.5s linear;
    -moz-transition: opacity 0.5s linear;
    -ms-transition: opacity 0.5s linear;
    -o-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
}

#formulario_eventos .field_group.has_error .field_error {
    opacity: 1;
}

#formulario_eventos .field_group label {
    /*font-family: 'AvenirLTStdRoman';
                  font-weight: 700;*/
    font-size: 18px;
    text-transform: uppercase;
    width: 180px;
}

#formulario_eventos .field_group input, #formulario_eventos .field_group select, #formulario_eventos .field_group .custom_select {
    width: calc(100% - 225px);
    border: 1px solid #000;
    height: 28px;
    line-height: 28px;
    font-family: 'IbarraReal';
    padding: 0 10px;
}

#formulario_eventos .field_group input[type=radio] {
    width: auto !important;
    border: none !important;
    -webkit-appearance: radio;
    -moz-appearance: radio;
    -ms-progress-appearance: radio;
    margin-right: 5px;
    vertical-align: middle;
}

#formulario_eventos .field_group input[type=radio]:last-child {
    margin-left: 20px;
}

#formulario_eventos .field_group input[type=radio]:focus {
    -webkit-box-shadow: 0 0 0 #000;
    -moz-box-shadow: 0 0 0 #000;
    box-shadow: 0 0 0 #000;
}

#formulario_eventos .field_group input:focus, #formulario_eventos .field_group select:focus {
    outline: none;
    -webkit-box-shadow: 1px 1px 5px #000;
    -moz-box-shadow: 1px 1px 5px #000;
    box-shadow: 1px 1px 5px #000;
}

#formulario_eventos .field_group .custom_select {
    position: relative;
}

#formulario_eventos .field_group .custom_select select {
    width: 100%;
    border: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #fff url("/img/iconos/select_icon_2.jpg") no-repeat 100%;
    direction: rtl;
    padding-right: 45px;
    text-transform: uppercase;
    position: relative;
    right: -10px;
}

#formulario_eventos .field_group .custom_select select:focus {
    box-shadow: none;
}

#formulario_eventos .field_group .custom_select .trinagle {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 100%;
    background: #000;
    display: none;
}

#formulario_eventos .field_checkbox label {
    font-family: 'AvenirLTStdRoman';
    font-weight: 700;
    font-size: 14px;
    vertical-align: middle;
}

#formulario_eventos .field_checkbox label.has_error {
    color: #a94442;
    border: none;
}

#formulario_eventos .field_checkbox label.has_error a {
    color: #a94442;
}

#formulario_eventos .field_checkbox label a {
    color: #000;
}

#formulario_eventos .field_checkbox input {
    vertical-align: middle;
}

#formulario_eventos .field_checkbox .field_error {
    color: #a94442;
    opacity: 0;
    -webkit-transition: opacity 0.5s linear;
    -moz-transition: opacity 0.5s linear;
    -ms-transition: opacity 0.5s linear;
    -o-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
}

#formulario_eventos .field_checkbox.has_error .field_error {
    opacity: 1;
}

#formulario_eventos .submit {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
}

#formulario_eventos .submit input {
    background: #000;
    color: #fff;
    font-family: 'AvenirLTStdRoman';
    font-weight: 400;
    text-transform: uppercase;
    padding: 6px 12px;
    cursor: pointer;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#formulario_eventos .submit input:hover {
    border-color: #000;
    background: #fff;
    color: #000;
}

#formulario_eventos .submit input:focus {
    outline: none;
}

.overlay_formulario_eventos {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-transition: opacity 0.2s ease-in;
    -moz-transition: opacity 0.2s ease-in;
    -ms-transition: opacity 0.2s ease-in;
    -o-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
}

.overlay_formulario_eventos.sending {
    opacity: 1;
    visibility: visible;
}

.fondo-titulo {
    text-transform: uppercase;
    text-align: center;
    margin: 0 25px;
    position: relative;
}
.fondo-titulo.show-1200{
     display:none;
 }

.fondo-titulo > img {
    margin: 0 auto;
    max-width: 520px;
    width:100%;
}

.fondo-titulo > p {
    font-family: "IbarraReal";
    font-size: 26px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -55%);
    -moz-transform: translate(-50%, -55%);
    -ms-transform: translate(-50%, -55%);
    -o-transform: translate(-50%, -55%);
    transform: translate(-50%, -55%);
}
.input-suscribe{
    font-family:"AvenirLTStdRoman";
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-family:"AvenirLTStdRoman";
}
::-moz-placeholder { /* Firefox 19+ */
    font-family:"AvenirLTStdRoman";
}
:-ms-input-placeholder { /* IE 10+ */
    font-family:"AvenirLTStdRoman";
}
:-moz-placeholder { /* Firefox 18- */
    font-family:"AvenirLTStdRoman";
}

.rrss-container {
    margin-top: 100px;
}

.flex-container.rrss-container > div {
    width: 30%;
}

.flex-container.rrss-container > div:nth-child(2) {
    min-height: 500px;
}

.flex-container.rrss-container > div:first-child > div:first-child {
    min-height: 245px;
    margin: 0 5px 5px 0;
}
.flex-container.rrss-container.el-chef > div:first-child > div:first-child{
    min-height:0;
}

.flex-container.rrss-container > div:first-child > div:nth-child(2) {
    max-width: none;
    margin: 10px 5px 0 0;
    min-height: 245px;
}

.flex-container.rrss-container > div:first-child > div:nth-child(2) > div {
    min-height: 215px;
    position: relative;
}

.redes-der {
    position: relative;
    margin-left: 5px;
}

.redes-izq-1 {
    position: relative;
}

.filtro-gris {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, 0.35) none repeat scroll 0 0;
    top: 0;
    left: 0;
}
.contenedor-propio-evento{
    margin-bottom:100px;
}
.filtro-gris p {
    font-family: "IbarraReal";
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #FFF;
    text-transform: uppercase;
}

.contenido-centrado {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.recuadro-suscripcion-borde p {
    font-size: 26px;
    font-family: "IbarraReal";
    font-weight: 600;
}

.contenedor-redes {
    margin-top: 100px;
}

/*****************************
        OTROS EVENTOS
*****************************/
.contenedor-otros-eventos, .otros-eventos-listado {
    margin-top: 100px;
}

.otros-eventos-listado {
    margin-bottom: 80px;
}

.otro-evento {
    height: 400px;
    width: 400px;
    margin: 10px;
    position: relative;
}

.otro-evento > div {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    background: rgba(214, 171, 112, .85);
    text-align: center;
    color: #FFF;
    font-family: "IbarraReal";
    font-weight: 600;
    text-transform: uppercase;
    width: 245px;
    height: 110px;
}

.otro-evento p {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.otro-evento.thanksgiving {
    background: url('/img/eventos/thanksgiving_home.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.otro-evento.visita {
    background: url('/img/eventos/visita_home.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.otro-evento.gastroatelier {
    background: url('/img/eventos/gastroatelier.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.otro-evento.algodonera {
    background: url('/img/eventos/algodonera_home2.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.otro-evento.galanes {
    background: url('/img/eventos/galanes_home.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.otro-evento.libro {
    background: url('/img/eventos/libro_home.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.otro-evento.taller-coronas {
    background: url('/img/eventos/taller-coronas_home.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.logos-cocina-italiana{
    text-align: center;
    margin-top: 40px;
}
.logos-cocina-italiana img{
    display: inline-block;
    max-width: 30%;
}
.logos-cocina-italiana img:first-child{
    padding-right: 5%;
}
.logos-cocina-italiana img:last-child{
    padding-left: 5%;
}
.otro-evento.cocina-italiana {
    background: url('/img/eventos/cocina-italiana_home.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}



/*Teatro Navidad 2017*/
.logos-teatro-navidad-2017{
    text-align: center;
    margin-top: 40px;
}
.logos-teatro-navidad-2017 img{
    display: inline-block;
    max-width: 30%;
}
.logos-teatro-navidad-2017 img:first-child{
    padding-right: 5%;
}
.logos-teatro-navidad-2017 img:last-child{
    padding-left: 5%;
}
.otro-evento.teatro-navidad-2017 {
    background: url('/img/eventos/teatro_navidad_2017_home.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


/*Teatro Navidad 2018*/
.logos-teatro-navidad-2018{
    text-align: center;
    margin-top: 40px;
}
.logos-teatro-navidad-2018 img{
    display: inline-block;
    max-width: 30%;
}
.logos-teatro-navidad-2018 img:first-child{
    padding-right: 5%;
}
.logos-teatro-navidad-2018 img:last-child{
    padding-left: 5%;
}
.otro-evento.teatro-navidad-2018 {
    background: url('/img/eventos/teatro_navidad_2018_home.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


/*Teatro Marzo 2019*/
.logos-teatro-marzo-2019{
    text-align: center;
    margin-top: 40px;
}
.logos-teatro-marzo-2019 img{
    display: inline-block;
    max-width: 30%;
}
.logos-teatro-marzo-2019 img:first-child{
    padding-right: 5%;
}
.logos-teatro-marzo-2019 img:last-child{
    padding-left: 5%;
}
.otro-evento.teatro-marzo-2019 {
    background: url('/img/eventos/teatro_marzo_2019_home.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


/*Cotton Evenings*/
.cotton-evenings h2{
    margin-top: 100px !important;
}
.cotton-evenings p{
    margin-top: 20px !important;
    margin-bottom: 40px !important;
}
.cotton-evenings .evento-contenedor-meses p{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}



.otro-evento.jazz {
    background: url('/img/eventos/jazz_home.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.otro-evento.crea-tu-evento {
    background: url('/img/eventos/subscribe_home.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.otro-evento.restaurante {
    background: url('/img/eventos/indian_restaurant_home_02.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.otro-evento.popup2018 {
    background: url('/img/eventos/popup2018_home.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.otro-evento p::after {
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -18px;
    width: 50px;
    border-top: 2px solid #FFF;
}

.algodonera-expositores {
    margin-top: 100px;
    font-family: "AvenirLTStdRoman";
    font-weight:400;
}

.algodonera-expositores > div {
    padding: 15px;
}

.algodonera-expositores > div > p:first-child {
    font-weight: 700;
}

.algodonera-expositores a {
    color: #D6AA70;
    font-family:"AvenirLTStdRoman";
}

/*****************************
        FIN OTROS EVENTOS
*****************************/

/*****************************
            GALERÍA
*****************************/
.galeria-slider a {
    cursor: zoom-in;
}

.galeria-slider a.bx-next, .galeria-slider a.bx-prev, .galeria-slider a.bx-pager-link {
    cursor: pointer;
}

.galeria-top > a:first-child, .galeria-bot > a:nth-child(2) {
    width: 28%;
}

.galeria-top > a:nth-child(2), .galeria-bot > a:first-child {
    width: 70%;
}

.galeria-top, .galeria-bot {
    width: 100%;
}

.galeria-top > a > div, .galeria-bot > a > div {
    width: 100%;
}

.galeria-top > a > div, .galeria-bot > a > div {
    min-height: 350px;
    display: inline-block;
}

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

.galeria-top {
    border-bottom: 0px solid #FFF;
}

.galeria-bot {
    border-top: 0px solid #FFF;
}

.galeria-top-left, .galeria-bot-right {
    width: 28%;
}

.galeria-top-right, .galeria-bot-left {
    width: 70%;
}

.galeria-top > a:first-child, .galeria-bot > a:first-child {
    border-right: 3px solid #FFF;
}

.galeria-top > a:nth-child(2), .galeria-bot > a:nth-child(2) {
    border-left: 3px solid #FFF;
}

.galeria-slider .bx-wrapper .bx-prev {
    left: -45px;
}

.galeria-slider .bx-wrapper .bx-next {
    right: -45px;
}

.restaurante-galeria .galeria-slider, .popup2018-galeria .galeria-slider {
    margin-top: 50px;
}

/*****************************
         FIN GALERÍA
*****************************/

section#eventos h2 {
    position: relative;
}

section#eventos h2 {
    font-family: "IbarraReal";
    color: #d6aa77;
    text-transform: uppercase;
    font-size: 34px;
    max-width: 485px;
    margin: 0 auto;
    text-align: center;
}

section#eventos p {
    font-family: "AvenirLTStdRoman";
    font-weight:400;
    max-width: 485px;
    text-align: center;
    font-size:16px;
    margin: 0 auto;
}

.evento-algodonera-izq, .evento-teatro-izq {
    text-align: center;
}
.evento-teatro-izq.teatro-navidad-2017{
    margin-top: 50px;
}
.evento-teatro-izq.teatro-navidad-2017 > p{
    margin: 40px auto 0;
}
.teatro-navidad-2017-container{
    margin: 20px 0 100px;
}
.evento-teatro-izq.teatro-navidad-2018{
    margin-top: 50px;
}
.evento-teatro-izq.teatro-navidad-2018 > p{
    margin: 40px auto 0;
}
.teatro-navidad-2018-container{
    margin: 20px 0 100px;
}
.evento-teatro-izq.teatro-marzo-2019{
    margin-top: 50px;
}
.evento-teatro-izq.teatro-marzo-2019 > p{
    margin: 40px auto 0;
}
.teatro-marzo-2019-container{
    margin: 20px 0 100px;
}

.evento-algodonera-der, .evento-teatro-der {
    padding: 45px 0px 0;
    text-align: center;
    margin-right: 30px;
}

.evento-contenedor-meses > span {
    display: inline-block;
    margin-right: 45px;
    padding: 12px 0;
    position: relative;
    text-transform: uppercase;
}
.evento-contenedor-meses.galanes{
    position:relative;
}


.evento-contenedor-meses.galanes > hr{
    width:8px;
    position:absolute;
    top:38px;
    left:50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    border-top:2px solid #000;
}
.evento-contenedor-meses.galanes > span:nth-child(2){
    margin-left:15px;
}
section#eventos .evento-contenedor-meses p {
    font-family: "IbarraReal";
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
}

.evento-contenedor-meses {
    margin: 65px 0 55px 0;
}

.evento-contenedor-meses > span:last-child {
    margin: 0;
}

.evento-contenedor-meses > span:before, .evento-contenedor-meses > span:after {
    border-top: 3px solid #DEAC5A;
    content: "";
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 56px;
}

.evento-contenedor-meses > span:before {
    top: -5px;
}

.evento-contenedor-meses > span:after {
    bottom: -5px;
}
.flex-container.lista-eventos.contenedor-algodonera{
    margin-top:100px;
}
.contenedor-algodonera {
    padding-bottom: 105px;
}

.flex-container.lista-eventos > div.evento-popup2018-izq, .flex-container.lista-eventos > div.evento-restaurant-izq, .flex-container.lista-eventos > div.evento-jazz-izq {
    padding-top: 25px;
    background: url('/img/eventos/fondo-granulado.png') repeat;
    background-size: 45px 45px;
    width: 50%;
    text-align: center;
    padding-bottom: 70px;
}
.flex-container.lista-eventos > div.evento-jazz-izq.thanksgiving {
    padding-top: 25px;
    background: none;
    background-color: #fff;
    background-size: 45px 45px;
    width: 50%;
    text-align: center;
    padding-bottom: 70px;
}
.flex-container.lista-eventos > div.evento-jazz-izq.visita, .flex-container.lista-eventos > div.evento-jazz-izq.gastroatelier {
    padding-top: 25px;
    background: none;
    background-color: #fff;
    background-size: 45px 45px;
    width: 50%;
    text-align: center;
    padding-bottom: 70px;
}

.flex-container.lista-eventos > div.evento-restaurant-der {
    width: 50%;
    background: url('/img/eventos/indian_restaurant_home_02.jpg') no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.flex-container.lista-eventos > div.evento-popup2018-der {
    width: 50%;
    background: url('/img/eventos/popup2018_home.jpg') no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.flex-container.lista-eventos > div.evento-restaurant-izq > .evento-contenedor-meses {
    margin: 5px 0 55px;
}

.contenedor-galanes > div:first-child {
    padding: 30px 0 140px;
}

.contenedor-galanes > div:nth-child(2) {
    padding: 112px 0 100px;
}

.contenedor-galanes > div:nth-child(2) > p {
    margin: 35px auto;
}
.eventos-galanes-parrafo-2{
    margin-top:0;
}

.evento-jazz-izq {
    text-align: center;
}

.evento-jazz-izq {
    padding-top: 140px;

}

.evento-jazz-izq > p {
    margin: 60px auto;
}

.flex-container.lista-eventos > div.evento-jazz-der {
    width: 50%;
}

.flex-container.lista-eventos > div.evento-jazz-izq, .flex-container.lista-eventos > div.evento-popup2018-izq, .flex-container.lista-eventos > div.evento-jazz-izq.thanksgiving, .flex-container.lista-eventos > div.evento-jazz-izq.visita, .flex-container.lista-eventos > div.evento-jazz-izq.gastroatelier {
    padding-top: 140px;
}

.flex-container.lista-eventos > div.evento-jazz-der {
    width: 50%;
    background: url(/img/eventos/jazz_home.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.flex-container.lista-eventos > div.evento-jazz-der.libro {
    width: 50%;
    background: url(/img/eventos/libro_home.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.flex-container.lista-eventos > div.evento-jazz-der.taller-coronas {
    width: 50%;
    background: url(/img/eventos/taller-coronas_home.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.flex-container.lista-eventos > div.evento-jazz-der.cocina-italiana {
    width: 50%;
    background: url(/img/eventos/cocina-italiana_home.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.flex-container.lista-eventos > div.evento-jazz-der.teatro-navidad-2017 {
    width: 50%;
    background: none;
}
.flex-container.lista-eventos > div.evento-jazz-der.teatro-navidad-2018 {
    width: 50%;
    background: none;
}
.flex-container.lista-eventos > div.evento-jazz-der.teatro-marzo-2019 {
    width: 50%;
    background: none;
}
.flex-container.lista-eventos > div.evento-jazz-der.thanksgiving, .flex-container.lista-eventos > div.evento-jazz-der.visita, .flex-container.lista-eventos > div.evento-jazz-der.gastroatelier {
    width: 50%;
    background: none;
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

.contenedor-propio-evento > div:first-child {
    padding-top: 105px;
}

.contenedor-propio-evento > div:nth-child(2) > div:first-child {
    margin-top: 140px;
}

.contenedor-propio-evento .recuadro-palabra {
    margin-top: 145px;
}

.recuadro-suscripcion {
    background-color: #d7ab72;
    min-width: 270px;
    max-width: 320px;
    margin: 45px auto;
    padding: 15px;
}

.recuadro-suscripcion-borde {
    border: 3px solid #FFF;
    height: 100%;
    text-transform: uppercase;
    color: #FFF;
    padding: 10px 15px;
}

section#eventos .recuadro-suscripcion-borde p {
    font-family: 'IbarraReal';
    margin-bottom: 5px;
    font-size: 20px;
}

.recuadro-suscripcion-borde input[type=text] {
    max-width: 275px;
    margin: 8px 8px;
    min-height: 35px;
    padding: 0 10px;
}

.recuadro-suscripcion-borde > button, #btn-sub {
    text-transform: capitalize;
    background: transparent;
    color: #FFF;
    height: 35px;
    width: 60px;
    text-align: center;
    border: 1px solid #FFF;
    font-family:"AvenirLTStdRoman";
}

.recuadro-suscripcion-borde > button:hover, #btn-sub:hover {
    cursor: pointer;
}

.filtro-modal {
    background: rgba(0, 0, 0, .4);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.modal-close {
    width: 25px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.filtro-modal {
    z-index: 1;
    display: none;
}

.modal-sub, .modal-subPopup, .modal-subAlgodonera {
    z-index: 2;
    display: none;
    position: fixed;
    background: #FFF;
    width: 60%;
    padding: 10px 40px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/****************************
        ALGODONERA
****************************/
.algodonera-header {
    padding: 20px 90px;
}

.background-hojas {
    background: url('/img/eventos/algodonera/fondo.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.algodonera-contenedor-texto-header {
    height: 400px;
    background: #FFF;
    text-align: center;
    margin: 0 auto;
}

.algodonera-contenedor-texto-header > img {
    width: 80%;
    max-width: 730px;
    margin: 80px auto 0;
}

.algodonera-contenedor-texto-header > hr {
    width: 37%;
    margin: 25px auto 0;
    border-top: 3px solid #d7ab72;
}

.algodonera-contenedor-direccion {
    margin: 45px 0;
    font-family: "IbarraReal";
    font-size: 20px;
}

.redes-der.cotton-evenings {
    background: rgba(0, 0, 0, 0) url("/img/eventos/cotton-evenings/redes/instagram.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.redes-izq-1.cotton-evenings {
    background: #00adb0 url("/img/eventos/cotton-evenings/redes/facebook.jpg") no-repeat scroll center center;
}

.redes-der.algodonera {
    background: rgba(0, 0, 0, 0) url("/img/eventos/algodonera/instagram.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.redes-izq-1.algodonera {
    background: #00adb0 url("/img/eventos/algodonera/facebook.jpg") no-repeat scroll center center;
}

.redes-der.visita {
    background: rgba(0, 0, 0, 0) url("/img/eventos/visita/redes/instagram.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.redes-izq-1.visita {
    background: #00adb0 url("/img/eventos/visita/redes/facebook.jpg") no-repeat scroll center center;
}

.redes-der.gastroatelier {
    background: rgba(0, 0, 0, 0) url("/img/eventos/gastroatelier/redes/instagram.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.redes-izq-1.gastroatelier {
    background: #00adb0 url("/img/eventos/gastroatelier/redes/facebook.jpg") no-repeat scroll center center;
}

.redes-der.popup2018 {
    background: rgba(0, 0, 0, 0) url("/img/eventos/popup2018/redes/instagram.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.redes-izq-1.popup2018 {
    background: #00adb0 url("/img/eventos/popup2018/redes/facebook.jpg") no-repeat scroll center center;
}

.algodonera-contenedor-proximos-eventos {
    text-align: center;
    padding: 10px 15px;
    margin-top: 100px;
}

.algodonera-contenedor-proximos-eventos > p, .contenedor-expositores > p {
    font-family: "AvenirLTStdRoman";
    font-weight:400;
    font-size: 20px;
    margin: 0 auto;
    text-align: center;
    max-width: 730px;
}
.contenedor-expositores > p{
    padding:10px;
    margin-top:55px;
}
.contenedor-expositores > p > a{
    color:#DEAC5A;
}

.algodonera-contenedor-proximos-eventos > img {
    margin: 80px auto 0;
    max-width: 465px;
}

.algodonera-contenedor-proximos-eventos > .fondo-titulo, .contenedor-imagenes-eventos {
    margin-top: 100px;
}

.contenedor-imagenes-eventos {
    justify-content: space-between;
    max-width: 1400px;
    margin: 100px auto 0;
}

.contenedor-imagenes-eventos > div:first-child {
    background: url('/img/eventos/algodonera/evento_01.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.contenedor-imagenes-eventos > div:nth-child(2) {
    background: url('/img/eventos/algodonera/evento_02.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.contenedor-imagenes-eventos > div:nth-child(3) {
    background: url('/img/eventos/algodonera/evento_03.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.algodonera-evento {
    position: relative;
    width: 31%;
    max-width: 400px;
    height: 225px;
}

.algodonera-evento-fecha {
    position: absolute;
    top: 0;
    left: 55px;
    font-family: "IbarraReal";
    font-weight: 600;
    font-size: 18px;
    color: #FFF;
    background: rgba(214, 171, 112, .85);
    line-height: 17px;
    text-transform: uppercase;
    min-width: 110px;
    min-height: 85px;
    text-align:left;
}

.algodonera-evento-fecha > span {
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.algodonera-evento-fecha > span > span {
    border-top: 2px solid #FFF;
    width: 40px;
    margin-top: 3px;
    display: block;
}

.subtitulo-eventos {
    margin: 0 auto;
    max-width: 465px;
    text-align: center;
}

.contenedor-expositores {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 100px auto 0;
    max-width: 1400px;
}

.algodonera-expositores.flex-container > div {
    text-align: center;
    width: 30%;
    margin-bottom: 20px;
    position: relative;
}

.algodonera-expositores.flex-container > div > a::before {
    content: "";
    width: 65px;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    border-top: 1px solid #D6AA70;
    position: absolute;
}

.algodonera-especial{
    position: relative;
    margin: 80px 40px 50px;
    min-height: 600px;
}
.algodonera-especial-contenido{
    position: absolute;
    top: 50%;
    left: 0;
    max-width: 40%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    background-color: #fff;
    padding: 30px;
    min-width: 500px;
}
.algodonera-especial-contenido > p{
    font-family: "AvenirLTStdRoman";
    font-weight: 400;
    font-size: 20px;
    margin: 20px auto;
    text-align: center;
    max-width: 730px;
    min-width: 500px;
}
.algodonera-especial-imagen{
    z-index: 1;
    max-width: 70%;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 600px;
    background: rgba(0, 0, 0, 0) url("/img/eventos/algodonera/especial/fondo.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/****************************
        FIN ALGODONERA
****************************/

/****************************
        RESTAURANTE
*****************************/
section#eventos p.titulo-restaurante-popup{
    font-family:"CottonhouseSlab2_3Regular_1";
    text-transform:uppercase;
    font-size:24px;
    text-align: center;
    margin:0 auto 40px;

}
.restaurante-contenedor-cabecera {
    background: #17B4B5;
    position: relative;
    min-height: 450px;
    background: url('/img/eventos/restaurante/arriba.png') no-repeat top center #17B4B5;
}

.restaurante-contenedor-centrado {
    text-align: center;
    padding: 20px;
    font-family: "AvenirLTStdRoman";
    font-weight:400;
    max-width: 740px;
    margin: 100px auto;
    font-size: 20px;
}

.restaurante-contenedor-centrado a {
    color: #d7ab72;
}

.restaurante-cabecera-izq {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.restaurante-cabecera-der {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.restaurante-cabecera-arriba {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.restaurante-cabecera-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 80%;
}

.restaurante-contenedor-mosaico {
    position: relative;
    min-height: 700px;
    max-width: 1440px;
    text-align: center;
    margin: 0 auto;
}

.restaurante-contenedor-mosaico > div {
    display: inline-block;
}

.restaurante-contenedor-mosaico > div:first-child {
    width: 28%;
    height: 100%;
    min-height: 700px;
}

.restaurante-contenedor-mosaico > div:nth-child(2) {
    width: 70%;
    min-height: 700px;
    height: 100%;
}

.restaurante-chef-texto {
    font-family: "AvenirLTStdRoman";
    font-weight:400;
    font-size: 18px;
    background: #FFF;
    padding: 0 50px;
}


.restaurante-mosaico-izq {
    background: url('/img/eventos/restaurante/chef-mostrador.jpg') no-repeat top center;
    background-position-y: -12px;
    border-right: 5px solid #FFF;
    background-size:300px 300px;
}

.restaurante-mosaico-der {
    background: url('/img/eventos/restaurante/chef-sofa.jpg') no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.restaurante-galeria {
    margin-top: 70px;
}

.restaurante-chef-texto > p {
    text-align:center;
    margin: 25px 0;
    font-size:18px;
}
.restaurante-chef-texto > p:first-child{
    margin-top:35px;
}

.restaurante-chef-texto a {
    margin-top: 35px;
    color: #E30613;
}

.restaurante-la-carta {
    margin-top: 100px;
}

.contenido-la-carta {
    margin-top: 40px;
    text-align: center;
    font-family: "IbarraReal";
    text-transform: uppercase;
}
.restaurante-contenedor-chef.flex-container > div{
    width:40%;
}
.restaurante-contenedor-chef.flex-container > div:nth-child(2){
    background:url('/img/eventos/restaurante/chef-mostrador.jpg') top center no-repeat;
}
.contenido-la-carta > ul > li {
    padding-bottom: 15px;
}

.precio-la-carta {
    margin: 35px 0;
    text-align: center;
    font-family: "IbarraReal";
    font-weight: 600;
    text-transform: uppercase;
}

.redes-izq-1.restaurante {
    background: #00ADB0 url('/img/eventos/restaurante/logo.png') center center no-repeat;
    -webkit-background-size: 300px 180px;
    background-size: 300px 180px;

}

.redes-der.restaurante {
    background: url('/img/eventos/restaurante/indio_rrss.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/****************************
        FIN RESTAURANTE
*****************************/

/****************************
            GALANES
*****************************/
.franja-negra {
    height: 25px;
    background: #221d1f;
    width: 100%;

}

.cabecera-galanes {
    justify-content: center;
    align-self: center;
    text-align: center;
}

.cabecera-galanes > div:first-child {
    width: 40%;
    text-align: right;
}

.cabecera-galanes > div:nth-child(2) {
    width: 60%;
    position: relative;
}

.cabecera-galanes img {
    margin: 0 auto;
    max-width: 75%;
    max-height: 400px;
}

.cabecera-galanes h1 {
    text-transform: uppercase;
    font-family: "CottonhouseSlab2_3Regular_1";
    font-size: 50px;
}

.galanes-contenido-central {
    font-family: "AvenirLTStdRoman";
    font-weight:400;
    font-size: 16px;
    text-align: center;
    margin-top: 100px;
}

.galanes-contenido-central > p {
    max-width: 725px;
    margin: 0 auto 25px;
    font-size:20px;
}
.galanes-contenido-central > p.galanes-nombre-parrafo{
    color:#d7ab72;
    font-weight:600;
    margin-bottom:0;
}
.galanes-cargo-parrafo{
    color:#d7ab72;
    font-style: italic;
}

.galanes-contenido-central > div > img {
    max-width: 150px;
    margin-bottom: 20px;
}

.galanes-contenido-central > div {
    position: relative;
}

.galanes-contenido-central > div > img::before {
    border-bottom: 2px solid #d7ab72;
    width: 100%;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
}

.algodonera-expositores.galanes {
    text-align: center;
}

.algodonera-expositores.galanes img {
    display: block;
    margin:0 auto 10px;
    max-width: 125px;
    max-height: 70px;
}

.contenedor-expositores.galanes {
    max-width: 1000px;
}

.algodonera-expositores.flex-container.galanes > div {
    text-align: center;
    margin-top: auto;
    display: -webkit-flex; /* Safari */
    -webkit-align-items: center; /* Safari 7.0+ */
    justify-content: center;
    flex-direction: column;
    display: flex;
    align-items: center;
    -ms-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.redes-izq-1.galanes {
    background: url('/img/eventos/galanes_home.jpg') top center no-repeat;
}

.redes-der.galanes {
    background: url('/img/eventos/galanes/instagram.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/****************************
        FIN GALANES
*****************************/

@-webkit-keyframes spinner_form {
    0%,
    100% {
        box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
    }
    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }
    25% {
        box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }
    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }
    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }
    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}

@keyframes spinner_form {
    0%,
    100% {
        box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
    }
    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }
    25% {
        box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }
    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }
    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }
    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}

@media screen and (max-width: 1200px) {
    .nav-space {
        margin: 93px;
    }
    .fondo-titulo.hidden-1200{
        display:none;
    }
    .fondo-titulo.show-1200{
        display:block;
    }
    .fondo-titulo.show-1200.restaurante, .fondo-titulo.show-1200.popup2018{
        margin-bottom:35px;
    }

    .restaurante-contenedor-chef.flex-container > div, .popup2018-contenedor-chef.flex-container > div{
        width:48%;
    }
    .restaurante-chef-texto, .popup2018-chef-texto{
        padding:0 15px;
    }
    .restaurante-chef-texto > p, .popup2018-chef-texto > p{
        margin-top:0;
    }
    .galeria-slider .bx-wrapper .bx-prev {
        display: none;
    }

    .galeria-slider .bx-wrapper .bx-next {
        display: none;
    }

    .flex-container.lista-eventos > div {
        width: 48%;
    }

    .flex-container.rrss-container > div {
        width: 49%;
    }


    .evento-algodonera-der, .evento-teatro-der {
        margin-right: 0;
    }
}

@media screen and (max-width: 992px) {

    .nav-space {
        margin-top: 62px;
    }
    .nav-space.max-space{
        margin-top:90px;
    }
    .flex-container.lista-eventos.contenedor-algodonera{
        margin-top:45px;
        display: flex;
        justify-content: space-between;
    }
    #formulario_eventos {
        max-width: 90%;
    }

    .texto_central {
        margin: 80px auto 75px;
    }

    .flex-container.lista-eventos > div, .flex-container.lista-eventos > div.evento-restaurant-izq, .flex-container.lista-eventos > div.evento-restaurant-der, .flex-container.lista-eventos > div.evento-jazz-der, .flex-container.lista-eventos > div.evento-jazz-izq, .flex-container.lista-eventos > div.evento-jazz-der.thanksgiving, .flex-container.lista-eventos > div.evento-jazz-der.visita, .flex-container.lista-eventos > div.evento-jazz-der.gastroatelier, .flex-container.lista-eventos > div.evento-jazz-der.libro, .flex-container.lista-eventos > div.evento-jazz-der.taller-coronas, .flex-container.lista-eventos > div.evento-jazz-der.cocina-italiana, .flex-container.lista-eventos > div.evento-jazz-der.teatro-navidad-2017, .flex-container.lista-eventos > div.evento-jazz-der.teatro-navidad-2018, .flex-container.lista-eventos > div.evento-jazz-der.teatro-marzo-2019 {
        min-height: 400px;
        width: 100%;
    }
    .flex-container.lista-eventos.thanksgiving-container, .flex-container.lista-eventos.visita-container, .flex-container.lista-eventos.gastroatelier-container{
        -webkit-flex-direction: row-reverse;
        -moz-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    .contenedor-jazz > div.evento-jazz-der, .contenedor-popup2018 > div.evento-restaurant-der, .contenedor-restaurante > div.evento-restaurant-der, .contenedor-libro > div.evento-jazz-der, .contenedor-taller-coronas > div.evento-jazz-der, .contenedor-cocina-italiana > div.evento-jazz-der, .contenedor-teatro-navidad-2017 > div.evento-jazz-der, .contenedor-teatro-navidad-2018 > div.evento-jazz-der, .contenedor-teatro-marzo-2019 > div.evento-jazz-der{
        order: 1;
    }
    .contenedor-jazz > div.evento-jazz-izq, .contenedor-popup2018 > div.evento-restaurant-izq, .contenedor-restaurante > div.evento-restaurant-izq, .contenedor-libro > div.evento-jazz-izq, .contenedor-taller-coronas > div.evento-jazz-izq, .contenedor-cocina-italiana > div.evento-jazz-izq, .contenedor-teatro-navidad-2017 > div.evento-jazz-izq, .contenedor-teatro-navidad-2018 > div.evento-jazz-izq, .contenedor-teatro-marzo-2019 > div.evento-jazz-izq{
        order: 2;
    }

    .contenedor-algodonera {
        padding-bottom: 30px;
    }

    .contenedor-galanes > div:first-child, .contenedor-galanes > div:nth-child(2) {
        padding: 30px 0;
    }

    .flex-container.lista-eventos > div.evento-jazz-izq {
        padding-top: 65px;
    }

    .flex-container.lista-eventos > div.evento-restaurant-izq, .flex-container.lista-eventos > div.evento-jazz-izq {
        padding-bottom: 40px;
    }
    .contenedor-propio-evento{
        margin-bottom:0;
    }
    .redes-der {
        margin: 0;
    }

    .evento-contenedor-meses > span {
        margin-right: 25px;
    }

    .evento-contenedor-meses > span > p {
        font-size: 22px;
        font-family: "CottonhouseSlab2_3Regular_1";
    }

    .contenedor-propio-evento > div:first-child {
        padding-top: 65px;
    }

    .contenedor-propio-evento .recuadro-palabra {
        margin-top: 25px;
    }

    .recuadro-suscripcion {
        margin: 30px auto;
    }

    .flex-container.rrss-container > div {
        width: 100%;
    }

    .flex-container.rrss-container > div:first-child > div:first-child, .flex-container.rrss-container > div:first-child > div:nth-child(2), .redes-der.restaurante, .redes-der.popup2018 {
        margin: 0;
    }

    .flex-container.rrss-container > div:nth-child(2) {
        min-height: 250px;
    }

    .recuadro-suscripcion-borde p {
        font-size: 18px;
    }

    .contenedor-otros-eventos, .otros-eventos-listado, .contenedor-redes, .rrss-container {
        margin-top: 35px;
    }

    /*******************
        RESTAURANTE
    ********************/
    .restaurante-cabecera-izq, .restaurante-cabecera-der {
        height: 140px;
    }

    .restaurante-contenedor-cabecera {
        background-size: 900px;
    }

    /*******************
        POPUP2018
    ********************/
    .popup2018-cabecera-izq, .popup2018-cabecera-der {
        height: 140px;
    }

    .popup2018-contenedor-cabecera {
        background-size: 900px;
    }

    /***********************
            ALGODONERA
    ***********************/
    .algodonera-header {
        padding: 15px;
   }

    .contenedor-expositores,.algodonera-contenedor-proximos-eventos,.algodonera-contenedor-proximos-eventos > .fondo-titulo, .contenedor-imagenes-eventos{
        margin-top:35px;
    }
    /************************
            GALANES
    ************************/
    .cabecera-galanes > div:first-child{
        width:100%;
        text-align: center;
        max-height:350px;
    }
    .cabecera-galanes > div:nth-child(2){
        width:100%;
        text-align: center;
    }

    .galanes-contenido-central, .contenedor-expositores.galanes, .algodonera-expositores{
        margin-top:35px;
    }
    .flex-container.lista-eventos > div.evento-jazz-izq.thanksgiving, .flex-container.lista-eventos > div.evento-jazz-izq.visita, .flex-container.lista-eventos > div.evento-jazz-izq.gastroatelier{
        width: 95%;
        padding: 20px;
        margin: 0 auto;
    }
    section#eventos .thanksgiving h2, section#eventos .visita h2, section#eventos .gastroatelier h2{
        font-size: 30px;
    }
    .contenedor-propio-evento > div:first-child{
        padding-top: 20px;
    }
    .flex-container.lista-eventos > div.evento-jazz-der.thanksgiving, .flex-container.lista-eventos > div.evento-jazz-der.visita, .flex-container.lista-eventos > div.evento-jazz-der.gastroatelier{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {

    .algodonera-especial{
        min-height: 600px;
        margin: 0;
        max-width: 100%;
    }
    .algodonera-especial-contenido{
        position: relative;
        margin: 0 auto;
        overflow: hidden;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        max-width: 100%;
        min-width: 100px;
    }
    .algodonera-especial-contenido > p{
        max-width: 768px;
        min-width: 100px;
        max-width: 100%;
    }
    .algodonera-especial-imagen{
        max-width: 100%;
        position: relative;
        width: 100%;
        height: 200px;
    }


    .logos-cocina-italiana img{
        display: block;
        max-width: 90%;
    }
    .logos-cocina-italiana img:first-child{
        padding-right: 0%;
        margin: 0 auto;
    }
    .logos-cocina-italiana img:last-child{
        padding-left: 0%;
        margin: 0 auto;
    }
    .flex-container.lista-eventos > div, .flex-container.lista-eventos > div.evento-restaurant-izq, .flex-container.lista-eventos > div.evento-restaurant-der, .flex-container.lista-eventos > div.evento-jazz-der, .flex-container.lista-eventos > div.evento-jazz-izq, .flex-container.lista-eventos > div.evento-jazz-der.thanksgiving, .flex-container.lista-eventos > div.evento-jazz-der.visita, .flex-container.lista-eventos > div.evento-jazz-der.gastroatelier, .flex-container.lista-eventos > div.evento-jazz-der.libro, .flex-container.lista-eventos > div.evento-jazz-der.taller-coronas, .flex-container.lista-eventos > div.evento-jazz-der.cocina-italiana, .flex-container.lista-eventos > div.evento-jazz-der.teatro-navidad-2017, .flex-container.lista-eventos > div.evento-jazz-der.teatro-navidad-2018, .flex-container.lista-eventos > div.evento-jazz-der.teatro-marzo-2019 {
        min-height: 350px;
        width: 100%;
    }
    .flex-container.lista-eventos > div.evento-jazz-der.thanksgiving, .flex-container.lista-eventos > div.evento-jazz-der.visita, .flex-container.lista-eventos > div.evento-jazz-der.gastroatelier{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .flex-container.lista-eventos > div.evento-jazz-izq, .flex-container.lista-eventos > div.evento-jazz-izq.thanksgiving, .flex-container.lista-eventos > div.evento-jazz-izq.visita, .flex-container.lista-eventos > div.evento-jazz-izq.gastroatelier{
        padding: 10px;
    }
    .texto_central {
        padding: 0 15px;

    }

    .texto_central .titulo {
        font-size: 35px;
    }

    .otros_eventos .evento.col_3, .otros_eventos .evento.col_4, .otros_eventos .evento.col_5 {
        width: 100%;
    }

    #formulario_eventos .field_group {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #formulario_eventos .field_group label, #formulario_eventos .field_group input, #formulario_eventos .field_group select, #formulario_eventos .field_group .custom_select {
        width: 100%;
    }

    .otros-eventos-listado {
        margin-bottom: 0;
    }

    .algodonera-evento{
        max-width:none;
        width:100%;
        margin-bottom:20px;
    }
    /******************************
            RESTAURANTE
    ******************************/
    .restaurante-mosaico-texto {
        min-width: 0;
        width: auto;
        display: block;
        position: static;
    }

    .restaurante-contenedor-mosaico > div {
        display: block;
    }

    .restaurante-contenedor-mosaico > div:first-child {
        display: none;
    }

    .restaurante-contenedor-mosaico > div:nth-child(2) {
        min-height: 400px;
        width: 100%;
    }
    .restaurante-chef-texto{
        padding: 0 15px;
    }

    .restaurante-contenedor-chef.flex-container > div{
        width:100%;
    }
    .restaurante-contenedor-chef.flex-container > div:nth-child(2){
            height:450px;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        background-position:center -50px;
        margin-bottom:35px;
    }
    .restaurante-la-carta {
        margin-top: 20px;
    }

    .restaurante-contenedor-centrado {
        margin: 40px auto;
    }

    .restaurante-contenedor-mosaico {
        min-height: 0;
    }

    .restaurante-contenedor-mosaico > div:nth-child(2) {
        min-height: 250px;
    }

    .restaurante-la-carta {
        margin: 0;
    }

    .restaurante-galeria, .restaurante-galeria .galeria-slider {
        margin-top: 35px;
    }

    .fondo-titulo > img {
        width: 100%;
    }

    .fondo-titulo > p {
        font-size: 18px;
    }

    .galeria-top > a:nth-child(2), .galeria-bot > a:nth-child(2), .galeria-top > a:first-child, .galeria-bot > a:first-child {
        border: 0;
    }

    .galeria-top > a:first-child, .galeria-bot > a:nth-child(2), .galeria-top > a:nth-child(2), .galeria-bot > a:first-child {
        width: 100%;
    }

    .galeria-top-left, .galeria-top-right, .galeria-bot-left, .galeria-bot-right {
        width: 100%;
        border: 0;
        border-bottom: 2px solid #FFF;
        border-top: 2px solid #FFF;
    }

    .galeria-top > a > div, .galeria-bot > a > div {
        min-height: 0;
        height: 20vh;
    }

    /******************************
            FIN RESTAURANTE
    *******************************/
    /**********************************
            ALGODONERA
    **********************************/
    .algodonera-expositores.flex-container > div {
        width: 100%;

    }

    /**********************************
            ALGODONERA
    **********************************/
}

/*Thanksgiving*/

.redes-izq-1.thanksgiving {
    background: transparent url("/img/eventos/thanksgiving/redes/facebook.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.redes-der.thanksgiving {
    background: rgba(0, 0, 0, 0) url("/img/eventos/thanksgiving/redes/instagram.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
/*Fin Thanksgiving*/

@media screen and (max-width: 450px) {
    .fondo-titulo > p{
        font-size:14px;
    }
}
/*Libro*/
.redes-der.libro {
    background: rgba(0, 0, 0, 0) url("/img/eventos/libro/redes/instagram.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.redes-izq-1.libro {
    background: transparent url("/img/eventos/libro/redes/facebook.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
/*taller-coronas*/
.redes-der.taller-coronas {
    background: rgba(0, 0, 0, 0) url("/img/eventos/taller-coronas/redes/instagram.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.redes-izq-1.taller-coronas {
    background: transparent url("/img/eventos/taller-coronas/redes/facebook.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
/*Teatro Navidad 2017*/
.redes-der.teatro-navidad-2017 {
    background: rgba(0, 0, 0, 0) url("/img/eventos/teatro-navidad-2017/redes/instagram.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.redes-izq-1.teatro-navidad-2017 {
    background: transparent url("/img/eventos/teatro-navidad-2017/redes/facebook.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
/*Teatro Navidad 2018*/
.redes-der.teatro-navidad-2018 {
    background: rgba(0, 0, 0, 0) url("/img/eventos/teatro-navidad-2018/redes/instagram.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.redes-izq-1.teatro-navidad-2018 {
    background: transparent url("/img/eventos/teatro-navidad-2018/redes/facebook.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
/*Teatro Marzo 2019*/
.redes-der.teatro-marzo-2019 {
    background: rgba(0, 0, 0, 0) url("/img/eventos/teatro-marzo-2019/redes/instagram.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.redes-izq-1.teatro-marzo-2019 {
    background: transparent url("/img/eventos/teatro-marzo-2019/redes/facebook.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
/*Teatro mayo 2019*/
.redes-der.teatro-mayo-2019 {
    background: rgba(0, 0, 0, 0) url("/img/eventos/teatro-mayo-2019/redes/instagram.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.redes-izq-1.teatro-mayo-2019 {
    background: transparent url("/img/eventos/teatro-mayo-2019/redes/facebook.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/*Perfume Marzo 2019*/
.redes-der.perfume-marzo-2019 {
    background: rgba(0, 0, 0, 0) url("/img/eventos/perfume-marzo-2019/redes/instagram.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.redes-izq-1.perfume-marzo-2019 {
    background: transparent url("/img/eventos/perfume-marzo-2019/redes/facebook.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
/*Cocina*/
.redes-der.cocina-italiana {
    background: rgba(0, 0, 0, 0) url("/img/eventos/cocina-italiana/redes/instagram.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.redes-izq-1.cocina-italiana {
    background: transparent url("/img/eventos/cocina-italiana/redes/facebook.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
/*Jazz*/
.redes-der.jazz {
    background: rgba(0, 0, 0, 0) url("/img/eventos/jazz/redes/instagram.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.redes-izq-1.jazz {
    background: transparent url("/img/eventos/jazz/redes/facebook.jpg") no-repeat scroll center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}



/*Teatro Fechas*/

.teatro-fechas.fecha-1 {
    background: url('/img/eventos/teatro-navidad-2017/fechas/fecha-17-dic.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.teatro-fechas.fecha-2 {
    background: url('/img/eventos/teatro-navidad-2017/fechas/fecha-23-dic.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.teatro-fechas.fecha-3 {
    background: url('/img/eventos/teatro-navidad-2017/fechas/fecha-7-ene.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.teatro-fechas.fecha-4 {
    background: url('/img/eventos/teatro-navidad-2017/fechas/fecha-14-ene.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
/*Teatro Fechas*/

.teatro-fechas.fecha-1 {
    background: url('/img/eventos/teatro-navidad-2018/fechas/fecha-23-dic.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.teatro-fechas.fecha-2 {
    background: url('/img/eventos/teatro-navidad-2018/fechas/fecha-13-ene.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.teatro-fechas {
    height: 300px;
    width: 300px;
    position: relative;
}

.teatro-fechas > div {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 20px;
    background: rgba(214, 171, 112, .75);
    text-align: center;
    color: #FFF;
    font-family: "IbarraReal";
    font-weight: 600;
    text-transform: uppercase;
    width: 75px;
    height: 100px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    max-height: 300px;
    max-width: 300px;
}
.contenedor-fechas > div{    
    margin:10px;
}
.contenedor-fechas > div:first-child {
    margin-left: 0px;
}

.contenedor-fechas > div:last-child {
    margin-right: 0px;
}

.teatro-fechas p {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 24px;
    font-size: 23px;
    font-weight: 600;
    text-align: left;
    margin: 5px 10px;
    max-height: 300px;
    max-width: 300px;
}
.teatro-fechas span {
    border-top: 1px solid #fff;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 40px;
}
/*Teatro Fechas*/




.jazz-menu > .texto_central{
    margin: 40px auto 120px;
}
.jazz-titulo-menu{
    color:#DAB480;
    text-transform: uppercase;
    font-family: 'IbarraReal';
    margin-top: 40px;
}
.jazz-titulo-menu{
    position: relative;
    font-size: 21px;
}
.jazz-titulo-menu::after{
    border-top: 2px solid #DAB480;
    bottom: -10px;
    content: "";
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 200px;
}
.jazz-precio{
    margin-top: 70px;
    font-weight: bold;
}


.jazz-concierto.concierto-1 {
    background: url('/img/eventos/jazz/conciertos/concierto-1.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.jazz-concierto.concierto-2 {
    background: url('/img/eventos/jazz/conciertos/concierto-2.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.jazz-concierto.concierto-3 {
    background: url('/img/eventos/jazz/conciertos/concierto-3.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.jazz-concierto.concierto-4 {
    background: url('/img/eventos/jazz/conciertos/concierto-4.jpg') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.jazz-concierto {
    height: 300px;
    width: 300px;
    position: relative;
}

.jazz-concierto > div {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 20px;
    background: rgba(214, 171, 112, .75);
    text-align: center;
    color: #FFF;
    font-family: "IbarraReal";
    font-weight: 600;
    text-transform: uppercase;
    width: 65px;
    height: 65px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    max-height: 300px;
    max-width: 300px;
}
.jazz-concierto:hover > div {
    width: 100%;
    height: 100%;
    padding: 0;
}
.jazz-concierto:hover > div > p.texto-concierto {
    display: none;
}
p.texto-concierto-hover{
    display: none;
    opacity: 0;
}
.jazz-concierto:hover > div > p.texto-concierto-hover {
    display: block;
    -webkit-animation: openText .3s both ease;
    -moz-animation: openText .3s both ease;
    -o-animation: openText .3s both ease;
    animation: openText .3s both ease;
    -webkit-animation-delay: 0.4s; /* Chrome, Safari, Opera */
    -moz-animation-delay: 0.4s;
    -ms-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
@-webkit-keyframes openText {
    0% {
    }
    100% {
        opacity: 1;
    }
}

.jazz-concierto:hover p {
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    top: 20px;
    max-width: 90%;
}

.jazz-concierto p {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 24px;
    font-size: 23px;
    font-weight: 600;
    text-align: left;
    margin: 5px 10px;
    max-height: 300px;
    max-width: 300px;
}
.jazz-concierto span {
    border-top: 1px solid #fff;
    display: block;
    margin-top: 3px;
    width: 40px;
}
.contenedor-conciertos, .contenedor-fechas{
    margin: 80px 0;
}
.contenedor-conciertos a{
    margin: 10px;
}
@media (max-width: 630px){
    .contenedor-fechas > div{    
        margin-left: 0;
        margin-right: 0;
    }
}