@charset "UTF-8";

/*PARTE CORRESPONDIENTE CON ESTIRAR EL BODY AL 100% DE LA WEB*/
body, html{
    height:100%;
}
main{
    min-height: calc(100% - 75px - 310px);
}
.container{
    min-height: calc(100% - 75px - 287px);
}


/*PARTE CORRESPONDIENTE CON LA PERSONALIZACION DE LA WEB*/
header  {
    border-bottom: 1px solid white;
}

footer {
    border-top: 1px solid white;
}

body {
	background-color: rgba(204,194,38,0.1);
    /*background-color: #fff;*/
    color: #000;
    font-family: "Dosis", serif;
}

/* PARTE CORRESPONDIENTE CON EL ASPECTO DE TODOS LOS ENLACES DE LA PAGINA */
/* link no visitado */
a:link {
    color: #ADCA18;
}
/* link visitado */
a:visited {
    color: #ADCA18;
}
/* pasar raton por encima del link */
a:hover {
    color: #64b4cf;
}
/* link activo */
a:active {
    color: #ADCA18;
}



/*PARTE CORRESPONDIENTE CON EL MENU*/
.collapse, .navbar-collapse {
    margin-top: 10px;
    margin-bottom: 10px;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    /*background-color: #000;*/
    background-color: transparent;
}
.logoMenu {
    width: auto;
    height: 40px;

/*
    width: 230px;
    height: 40px;
*/

}
.logoMenu2 {
    margin: 10px auto;

    width: auto; /* width: 250px; */
    height: 50px;
}

/* FONDO Y BORDE DEL MENU */
.navbar-default {
    background-color: transparent;
    border-color: transparent;
}
/* COLOR DEL TEXTO DEL MENU */
.navbar-default .navbar-nav>li>a {
    color: #000;
    font-size: 15.8px;
}
/* COLOR DEL ELEMENTO ACTIVO DEL MENU */
.activo {
    background-color: #ADCA18;
    border-bottom: 2px solid #000;
}
.activo a {
    color: #000;
    font-weight: 600;
}
/*ELEMENTO CON HOVER EN EL MENU PARA EL BACKGROUND*/
.navbar-nav > li:hover {
    background-color: #ADCA18;
}
/* visited link */
nav > li > a:visited {
    color: #000;
}

/* mouse over link */
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
    color: #000;
}

/* selected link */
nav > li > a:active {
    color: #000;
}


/*ANIMACION PARA EL MENU DEL MOVIL*/
.navbar-default {
    margin-bottom: 0px;
}
.navbar-toggle {
    margin-right: 0px;
    border: 0px;
}
.bar1, .bar2, .bar3 {
    display: block;
    width: 30px;
    height: 4px;
    background-color: #ADCA18;
    margin: 5px 0;
    transition: 0.4s;

    border-radius: 2px;
}
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-7px, 5px) ;
    transform: rotate(-45deg) translate(-7px, 5px) ;
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-7px, -5px) ;
    transform: rotate(45deg) translate(-7px, -5px) ;
}
.barsBackground {
    background-color: #ADCA18;
}
/*FIN  ANIMACION MENU MOVIL*/


.colourOrange {
    color: #ADCA18;
}

.colourRed {
    color: red;
    font-size: 16px;
}

.containerDark {
    background-color: rgba(204,194,38,0.1);
}

.containerMediumDark {
    background-color: rgba(204,194,38,0.2);
}


/* DIV CON LOS PROXIMOS EVENTOS DEL CALENDARIO */
.calendar1_index {
    margin-top: 20px;
    margin-bottom: 20px;

    padding-top: 20px;
    padding-bottom: 20px;

}
.calendar1_index > h2 {
    text-align: center;

    font-size: 25px;
    line-height: 1.7;
    font-style: normal;

    margin: 0 0 10px 0;
}
.calendar1_index > p {
    font-size: 17px;
    line-height: 24px;
    color: #000;
    padding: 0 10%;
    margin-bottom: 50px;
    font-weight: 400;
    text-align: center;
}
.parrafoTexto {
    font-size: 18px;
    line-height: 24px;
    color: #000;
    padding: 0 10%;
    margin-bottom: 50px;
    font-weight: 400;
    text-align: left;
}
.image_event > img {
    display: inline;

    /*CON ESTO CONSIGO QUE INDEPENDIENTEMENTE DE LA IMAGEN QUE SE CARGUE, SIEMPRE OCUPE EL ANCGO DEL WIDTH ENTERO Y NO DEJE ESPACIOS POR LOS LADOS*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;

    padding-right: 15px;
}
.image_event {
    text-align: center;

    margin-bottom: 15px;
}
.calendar1_event {
    margin-bottom: 40px;
}
.calendar1_title {
    font-size: 22px;

    margin-bottom: 20px;
}
/*ESTA CLASE DE DEBAJO NO LA HE USADO POR AHORA*/
.centerElements {
    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;
}
.linkCalendar_boton {
    background-color: #ADCA18;
    border-radius: 10px;
    border: 0px;

    padding: 15px;
    height: auto;
    width: 230px;

    text-align: center;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.8s ease;

    color: #fff;
}

.linkCalendar_boton:link {
    color: #fff;
}
.linkCalendar_boton:visited {
    color: #fff;
}
.linkCalendar_boton:hover {
    text-decoration: none;
    color: #fff;
    background-color: #86bcd8;
    transition: all 0.8s ease;
}
.linkCalendar_boton:active {
    color: #fff;
}


/* DIV CON LOS EVENTOS QUE HAN PASADO */
.calendar2_title {
    margin-bottom: 30px;
}
.calendar2_title > span, .calendar2_title > i {
    font-size: 70px;
}
.descriptionSection {
    font-size: 19px;
}
.sizeBoxImg {
    width: 100%;
    height: 360px;
}
.calendar2_event {
    margin-bottom: 20px;
}
.calendar2_event img {
    /*CON ESTO CONSIGO QUE INDEPENDIENTEMENTE DE LA IMAGEN QUE SE CARGUE, SIEMPRE OCUPE EL ANCGO DEL WIDTH ENTERO Y NO DEJE ESPACIOS POR LOS LADOS*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}
.calendar2_event, .component_event {
    position: relative;

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.vertical-center{
    position: absolute;
}
.vertical-center p {
    padding-left: 15px;
}
.title_old_event {
    font-size: 28px;
}
.description_old_event {
    font-size: 15px;
	color: #fff;
}
.textShadow{
    color: #fff;
    text-shadow: 2px 2px 4px #000;
    /*text-shadow: 2px 2px 4px #ADCA18;*/
}

/* COMPONENTES ORQUESTA */
.calendar3_event {
    margin-bottom: 40px;
}
.name_component {
    font-size: 26px;
	color: #fff;
}
.type_component {
    font-size: 22px;
}
.sizeBoxComponent {
    width: 100%;
    height: 350px;
}
.component_event, .component_event_other {
    margin-bottom: 30px;
}
.component_event_other .sizeBoxComponent > img {
    position: relative;
    clip: rect(0,auto,350px,0);
    right: 0px;
}
.component_event .sizeBoxComponent > img {
    position: absolute;
    clip: rect(0,auto,350px,0);
    right: 0px;
}






/*PARTE CORRESPONDIENTE CON LA PERSONALIZACION DEL CALENDARIO*/
.alinearCentro {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}
caption {
    color: #fff;
    padding-bottom: 15px;
    font-size: 18px;
}
table.calendario {
    margin-bottom: 10px;
}
.table-responsive {
    border: 0px;
    margin-top: 10px;
}
.calendario td a:link{
    color: #fff;
}
#agenda table.calendario {
    margin:0 auto;
    width:100%;
    border:1px dotted #ccc;
}
.calendario th {
    /*border:1px dotted #ccc;*/
    font-weight:bold;
    background:#666;
    color:white;
    padding:10px;
    font-size:12px;
    text-align: center;
}
.calendario td{
    padding:6px;
    text-align:center;
    border:1px dotted #ccc;
    width:auto;
    white-space:pre-line;
    font-size:19px;
}
.calendario td.evento {
    background:#ADCA18;
    font-weight: 600;
}
.calendario td.desactivada {
    background:#323232;
}
.calendario td.hoy{
    font-weight:600;
    padding-top: 0px;
    padding-bottom: 0px;
}
.calendario td a{
    text-decoration:none;
}
/*COLOR DEL ENLACE DE MES ANTERIOR Y MES SIGUIENTE*/
.siguiente,.anterior{
    color:#fff;
    text-decoration:none;
}
.siguiente:hover, .anterior:hover {
    color:#fff;
    text-decoration:none;
}
.monthsPreviousNext {
    margin-top: 15px;
    font-size: 20px;
    text-align: center;
}


/*PARTE CORRESPONDIENTE CON EL CALENDAR DE DETLALES DE EVENTO*/
.spanCalendario {
    font-size: 16px;
    text-align: right;
    font-weight: bold;
    padding-left: 15px;
}
.calendarioDetallesEvento td a:link{
    color: #fff;
}
#agenda table.calendarioDetallesEvento {
    margin:0 auto;
    width:90%;
    border:1px dotted #ccc;
}
.calendarioDetallesEvento th {
    /*border:1px dotted #ccc;*/
    font-weight:bold;
    background:#666;
    color:white;
    padding:10px;
    font-size:12px;
    text-align: center;
}
.calendarioDetallesEvento th {
    font-size: 15px;
}
.calendarioDetallesEvento td{
    padding:6px;
    text-align:center;
    border:1px dotted #ccc;
    width:auto;
    white-space:pre-line;
    font-size:19px;
}
.calendarioDetallesEvento td.evento {
    background:#ADCA18;
    font-weight: 600;
}
.calendarioDetallesEvento td.diaLibre {
    cursor: pointer;
}
.calendarioDetallesEvento td.hoy{
    font-weight:600;
    padding-top: 0px;
    padding-bottom: 0px;
}
.calendarioDetallesEvento td a{
    text-decoration:none;
}




 /*Clase que tendra el tooltip */
.cssToolTip {
    position: relative; /* Esta clase tiene que tener posicion relativa */
    color: #ff8c00; /* Color del texto */
}
/* El tooltip */
.cssToolTip span {
    background: rgba(20,20,20,0.8);
    border: 2px solid #666;
    border-radius: 5px;
    box-shadow: 5px 5px 5px #333;
    /*color: #87cefa;*/
    display: none; /* El tooltip por defecto estara oculto */
    font-size: 16px;
    padding: 5px 5px 5px 5px;
    width: 180px;
    position: absolute; /* El tooltip se posiciona de forma absoluta para no modificar el aspezto del resto de la pagina */
    top: -100px; /* Posicion apartir de la parte superior del primer elemento padre con posicion relativa */
    left: -10px; /* Posicion apartir de la parte izquierda del primer elemento padre con posicion relativa */
    z-index: 100; /* Poner un z-index alto para que aparezca por encima del resto de elementos */
}
/* El tooltip cuando se muestra */
.cssToolTip:hover span {
    display: inline; /* Para mostrarlo simplemente usamos display block por ejemplo */
}
/*HACER QUE EL HR TENGA MENOS MARGIN*/
.cssToolTip hr {
    margin-top: 5px;
    margin-bottom: 5px;
}



/*PARTE CORRESPONDIENTE CON LOS COMPONENTES DE LA PAGINA*/
.filter-button {
    display: inline-block;

    font-size: 18px;
    text-align: center;
    color: #000;

    padding-left: 20px;
    padding-right: 20px;

    margin-top: 10px;
    margin-bottom: 5px;
}
.filter-button:hover {
    cursor: pointer;
}
.active, .filter-button:hover {
    border-bottom: 1px solid #ADCA18;
    padding-bottom: 5px;
}
.imageComponent {
    margin-bottom: 30px;
}


/* PARTE CORRESPONDIENTE CON LA GESTIÓN DE LA ZONA DEL USUARIO */
.colourIcons {
    color: #66b4cf;
}
.panel_title > i {
    font-size: 30px;
    margin-top: 20px;
}
.panel_title:hover {
    border-radius: 10px;

    text-decoration: none;
    color: #fff;
    background-color: rgba(0,0,0,0.3);
    transition: all 1s ease;
}
.form-horizontal .modal-body {
    color: #000;
}
p.modal-title {
    text-align: center;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #000;
    border-bottom: 1px solid #e5e5e5;
    font-family: Serif;
}
.spanFormuHeader {
    color: red;
    font-weight: 600;
    font-family: Serif;
    font-size: 16px;
    font-style: italic;
}
.spanFormu, .form-horizontal .modal-body legend {
    font-weight: 600;
    padding-left: 17px;
}
.form-horizontal .modal-body legend{
    margin-bottom: 10px;
    color: #4292bc;
}
.modal-footer .btn-secondary {
    color: #000;
}

/*PARTE CORRESPONDIENTE CON DAR DE BAJA AL COMPONENTE*/
.panel_Downgrade > i {
    font-size: 30px;
    margin-top: 20px;
}




/* FOOTER */
footer p {
    font-size: 22px;
}
.social_network {
    margin-top: 45px;
}
.social_network div {
    text-align: center;
}
.social_network div i{
    font-size: 50px;
}
.social_network div div {
    margin-bottom: 20px;
}
.footerBackground {
    /*background-image: url("../images/logo/logo.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;*/

    margin: auto;
    text-align: center;

    height: 100px;
}
.footerBackgroundText {
    height: 100%;
    width: 100%;

    /*background-color: rgba(0,0,0,0.7);*/
}


/*PARTE CORRESPONDIENTE CON EL CONTACTO*/
.oculto { display: none; }
.visible { display: inline; }

.sendButton button{
    font-weight: 600;
    font-size: 17px;

    background-color: #ADCA18;
}
form label {
    font-size: 16px;
}


#idFormContact .has-success, #idFormContact .help-block, #idFormContact .has-success .control-label{
    color: red;
}


/*PARTE CORRESPONDIENTE CON MOSTRAR EL MAPA EN LOS CONCIERTOS*/
#mapGoogle {
    width: 100%;
    height: 200px;
}
.titleEvent {
    border-bottom: 1px solid #ADCA18;
    font-size: 30px;
    margin-top: 150px;
    margin-bottom: 40px;
}

.titleGalleryEvent {
    border-bottom: 1px solid #ADCA18;
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}


/* BOTON DE SUBIR ARRIBA */
#divCookies span {
    width: 90%;
    background-color: rgba(102, 180, 207,0.7);
    border-radius: 10px;
    /*color: rgb(102,180,207);*/
    color: #000;
    font-weight: 600;
    font-size: 15px;
    padding: 10px;

    position: fixed;
    bottom: 3%;
    right: 5%;

    z-index: 10;
}


/*tablet*/
@media(min-width:760px){
    /*PARTE CORRESPONDIENTE CON LA CABECERA DEL SITIO WEB*/
    #imageNavbar {
        float: left;
    }
    .navbar-nav {
        float: right;
    }
    #imageNavbar img {
        width: 100px;
        height: auto;
    }
    /* COLOR DEL TEXTO DEL MENU */
    .navbar-default .navbar-nav>li>a {
        font-size: 15.4px;
    }

     /*PARTE CORRESPONDIENTE AL INDEX PARTE - CALEDARIO DE LOS PROXIMOS EVENTOS*/
    .calendar1_index > h2 {
        font-size: 36px;
    }
    .calendar1_index > p {
        font-size: 18px;
    }

    /*PARTE CORRESPONDIENTE AL INDEX DEL SITIO PARTE - EVENTOS DE EXITO*/
    .calendar2_title > span {
        font-size: 70px;
    }
    .sizeBoxImg {
        width: 100%;
        height: 280px;
    }
    .title_old_event {
        font-size: 30px;
    }

    /*PARTE CORRESPONDIENTE CON LOS COMPONENTES DE INDEX*/
    .name_component {
		color: #fff;
        font-size: 21px;
    }
    .type_component {
        font-size: 19px;
    }

    /*PARTE CORRESPONDIENTE CON EL CALENDARIO*/
    .calendario th {
        padding:10px;
        font-size:15px;
    }
    .calendario td{
        padding:8px;
        font-size:22px;
    }

    /*PARTE CORRESPONDIENTE CON MOSTRAR EL MAPA EN LOS CONCIERTOS*/
    #mapGoogle {
        height: 420px;
    }
}

/*monitor*/
@media(min-width: 1024px){

    /*PARTE CORRESPONDIENTE CON EL INICIO DE LA WEB*/
    .component_event .sizeBoxComponent > img, .component_event_other .sizeBoxComponent > img {
        position: absolute;
        right: 0px;
    }

    /*PARTE CORRESPONDIENTE CON LA CABECERA DEL SITIO WEB*/
    #imageNavbar img {
        width: 60px;
        height: auto;
        margin-top: 10px;
    }

    /*PARTE CORRESPONDIENTE CON LOS COMPONENTES DE INDEX*/
    .name_component {
        font-size: 26px;
    }
    .type_component {
        font-size: 22px;
    }

    /*PARTE CORRESPONDIENTE CON MOSTRAR EL MAPA EN LOS CONCIERTOS*/
    #mapGoogle {
        height: 400px;
    }
}


/*monitor gigante*/
@media(min-width: 1200px){
    /*PARTE CORRESPONDIENTE CON LA CABECERA DEL SITIO WEB*/
    #imageNavbar img {
        width: 60px;
        height: auto; /* 50px */
        margin-top: 0px;
    }

    /*PARTE CORRESPONDIENTE CON MOSTRAR EL MAPA EN LOS CONCIERTOS*/
    #mapGoogle {
        height: 400px;
    }
}