/*font-family: 'Exo 2', sans-serif;*/

@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Exo+2:400,700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Exo 2", sans-serif;
    background-color: #EFEFEF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #111111;
}

img {
    max-width: 100%;
    height: auto;
}


hr {
    width: 100%;
    background-color: #001489;
}

ul {
    list-style: none;
}

footer {
    background-color: #111111;
}

footer p {
    color: white;
    font-weight: 200;
    font-style: italic;
    text-align: center;
    font-size: .7em;
}

/*GENERALES ARRIBA*/

.fecha1 {
    font-size: 1rem;
    padding: .1rem .3rem .1rem .3rem;
    background-color: #111111;
    color: white;
    border-radius: .2rem;
}

.nolink {
    text-decoration: none;
}

.nobutton {
    border: none;
    box-shadow: none;
    text-decoration: none;
    padding: 0;
}





/* ENCABEZADO */

header {
    background-color: #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 9998;
}

header img {
    height: 100%;
    padding: .5em
}

#iconmenu {
    border: none;
    outline: none;
    text-decoration: none;
    color: white;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

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

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



/* MENU DESPLEGABLE */

header nav {
    background-color: rgba(0, 0, 0, 0.90);
    color: white;
    position: fixed;
    right: -70vw;
    top: 0;
    height: 100vh;
    min-width: 70vw;
    z-index: 999;
    transition: all .6s ease;
}

.menuvisible {
    right: 0;
    transition: all .6s ease;
}

header nav ul {
    padding-top: 4rem;

}

header nav a {
    color: white;
    display: block;
    padding: .5em 2em;
    text-align: left;
    text-decoration: none;
    font-size: 1.1em;
}


/* SUBMENU INSTITUCIONAL INTERNO */

.submenu {
    position: sticky;
    top: 3rem;
    z-index: 9997;
    margin: 2rem 0 0 0;
}


.submenu ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
}

.submenu ul li {
    display: flex;
    flex-basis: 100%;
}

.submenu ul li a {
    background-color: #001489;
    color: white;
    font-size: 1.1em;
    text-decoration: none;
    padding: .5em;
    display: flex;
    flex-basis: 100%;
    justify-content: center;
}

.submenu a:hover {
    background-color: #17635a;
}









/*SLIDESHOW*/

.slideshow-container {
    max-width: none;
    text-align: center;
}

.slideshow-container img {
    max-width: 100vw;
    height: calc(1*100vw);
    margin: 0 auto;
    object-fit: cover;
}

.overlay {
    background-image: linear-gradient(to bottom, rgba(20, 41, 172, .25), rgba(20, 41, 172, .5), rgba(20, 41, 172, .75), rgba(20, 41, 172, .9));
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(1*100vw);
    margin: 0 auto;
    opacity: .85;
}

.mySlides {
    max-width: 100vw;
    height: auto;
    margin: 0 auto;
    border: none;
}

.text {
    background-color: hsla(220, 8%, 15%, 0);
    text-align: left;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 2.5rem;
}

.text h2 {
    background-color: none;
    text-transform: uppercase;
    margin-bottom: .3rem;
    margin-top: .5rem;
    font-size: 1.2rem;

}

.slideshow {
    position: relative;
}

.puntos {
    margin-top: .5rem;
    margin-bottom: .5rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -2.5rem
}

.prev {
    left: 0;
    color: white;
    font-weight: normal;
    font-size: 3rem;
    margin-top: -5rem;
    padding: 0rem .7rem .5rem .5rem;
}

.next {
    right: 0;
    color: white;
    font-weight: normal;
    font-size: 3rem;
    margin-top: -5rem;
    padding: 0rem .5rem .5rem .7rem;
}


/*ÚLTIMO PARTIDO*/


.cabezada {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 3rem auto 1rem auto;
}

.cabezada::after {
    content: '';
    padding-bottom: .5rem;
    border-bottom: 10px solid #000;
    width: 15rem;
    display: block;
    margin: 0 auto;
    border-image:
        linear-gradient(to right, rgba(0, 0, 0, 0), rgba(20, 41, 172, .7) 10%, rgba(20, 41, 172, .8) 12%, rgba(20, 41, 172, 1) 18%, #1abc71 80%, rgba(0, 0, 0, 0)) 0 0 1 0;
}


.resultados {
    margin: 0 auto 1rem auto;
    color: #001489;
    font-size: 1.3rem;
}


.ultimopartido {
    margin: 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}

.bloquegrande .ultimopartido {
    margin: 0 1em;
}


.ultimopartido ul {
    display: flex;
    margin: 0 .5rem .5rem;
    text-align: center;
    display: flex;
    justify-content: center;

}

.ultimopartido ul li {
    display: flex;
    align-items: center;
}


.icon {
    width: 1.5rem;
    height: 1.5rem;

}

.ultimopartido .icon {
    margin-left: .5rem;
}


.ultimopartido ul li p {
    text-align: left;
    font-size: .8rem;
    margin: .3rem;
}

.equipos {
    display: flex;
    justify-content: space-around;
    margin: 1rem 1rem 2rem 1rem;
}

.equipos > div {
    text-align: center;
}

.equipos p {
    font-size: .8rem;
}

.equipos img {
    height: 4.5rem;
}

.equipos h4 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: .5rem;
    letter-spacing: 0.1rem;
    text-align: center;
    margin: 0;
    border-bottom: 2px solid #17635a;
    width: fit-content;
    height: fit-content;
}

.boton-a {
    color: white;
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 1rem;
    margin: 1rem 0 2rem 0;
    border-width: none;
    border-color: transparent;
    background-color: #17635a;
    width: 12rem;
    border-radius: .2rem;
}

.boton-a:hover {
    color: white;
    background-color: black;
}

.ultimopartido > .nobutton {
    margin: 1rem 0 2rem 0;
    background-color: #efefefef;
}

#caja {
    display: flex;
    margin: 0 1em 1em;
    justify-content: center;
}

.column1 {
    margin: 0 .5em 1em;
}

.column1 li {
    padding: 0 0 .5em;
}

.column2 {
    margin: 0 0 1em;
}

.column2 li {
    padding: 0 0 1.1em;
    text-align: left;
}

.lista {
    margin: 0 2em 1em;
}

.lista li {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
}

.titularessuplentes .resultados {
        margin-top: 2.5rem;
    }


.boton-b {
    color: white;
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 1rem;
    border-width: none;
    border-width: none;
    border-color: transparent;
    background-color: #d02630;
    width: 12rem;
    border-radius: .2rem;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.datosnotasecundaria > .nobutton {}

/* AGENDA DEPORTIVA INDEX */

.agendaindex {
    padding: 0 .4rem;
    text-align: center;
    box-shadow: 0rem 0rem .7rem .1rem #d9d9d9;
    margin: 1rem;
    background-color: white;
    border-radius: .3rem;
}

.agendaindexpartidofut {
    padding: 2rem 1rem;
}

.partidofuturo .cabezada {
    margin-bottom: 2rem;
}

.partidofuturo .grupoicon {
    margin: 1.5rem 1rem;
}


.agendaindex .cabezada {
    padding-top: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.cuerpocaja {
    color: #111111;
    padding: .5rem 0 .5rem 0;
    display: flex;
}

.agendaindex > div > .cuerpocaja {
    border-bottom: 1px solid #d9d9d9;
    border-top: 1px solid #d9d9d9;
}

.agendaindex > div > .cuerpocaja:first-child {
    border-top: none;
}

.agendaindex > div > .cuerpocaja:last-child {
    border-bottom: none;
}


.cuerpocaja > div {
    text-align: left;
    margin: .5em;
}

.cuerpocaja > div h5 {
    font-size: 1.3em;
    margin-bottom: .5rem;
}

.cuerpocaja > div p {
    font-weight: 700
}

.cuerpocaja > div > ul .clase {
    font-size: .9em;
}

.rival {
    font-weight: 700;
    margin-right: .5em;
}

.sede {
    font-weight: 700;
    margin-right: .5em;
}

.agendaindex > .nobutton {
    margin: 3rem 0 2rem 0;
}



/* SECCION NOTICIAS INDEX */

.noticiasindex {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.noticiasindex1 article {
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}



.noticiasindex1 article figure {
    position: relative;
}

.noticiasindex1 img {
    max-width: 100vw;
    height: auto;
    margin: 0 auto;
}

.overlay-2 {
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(20, 41, 172, 0), rgba(20, 41, 172, .3), rgba(20, 41, 172, .75), rgba(20, 41, 172, 1));
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(0.667*100vw);
    opacity: .8;
}

.noticiasindex1 figure > figcaption {
    text-align: left;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #f2f2f2;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 1.3rem;
}

.datosnotasecundaria {
    margin: 0 1rem 0 1rem;
}

.datosnotasecundaria p {
    margin: .5rem 0 .5rem 0;
    line-height: 1.1rem;
}


/* SECCION SPONSORS */


.sponsorindex {
    width: 100vw;
}


.overlay-sp {
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(23, 99, 90, 0), rgba(23, 99, 90, .3), rgba(23, 99, 90, .75), rgb(23, 99, 90, 1));
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(0.667*100vw);
    opacity: .8;
}

#sp {
    text-align: center;
    position: absolute;
    bottom: .5rem;
    left: 0;
    color: white;
}

#sp h4 {
    text-transform: uppercase;
    font-size: 3rem;
    text-shadow: .1em .1em .1em black
}

#sp p {
    text-transform: none;
    font-size: 1.5rem;
    text-shadow: 0 0 .5em black
}

#sp button {
    margin-top: 1.5rem;
    left: 0;
}

/*PAGINA SPONSOR */

.titleform {
    margin: 1rem 0 0 0;
    padding: .5em;
}

label {
    display: flex;

}

input {
    border-width: 1px;
    border-style: solid;
    border-color: rgb(169, 169, 169);

    border-radius: 1px;
    width: 50vh;
}

#nombre {
    margin-bottom: 1em;
    margin-top: .5em;
    padding: .5em;
    height: 10vh;
}

#msj {
    width: 50vh;
    margin-bottom: 1em;
    margin-top: .5em;
    padding: .5em;
    height: 30vh;
    letter-spacing: normal;
    text-transform: none;
    text-align: start;
}

#email {
    margin-bottom: 1em;
    margin-top: .5em;
    padding: .5em;
    height: 10vh;
}

#telefono {
    margin-bottom: 1.5em;
    margin-top: .5em;
    padding: .5em;
    height: 10vh;
}

.form {
    justify-content: center;
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form button {
    align-self: center;
}

.margenessponsor {
    margin: 0;
}


/* NOTICIAS TERCIARIAS*/

.horizontalscroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    flex-shrink: 0;
}

.notaterciaria {
    margin: .3rem;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 40vw;
    display: inline-block;
}

.notaterciaria p {
    margin: .3rem;
}

.notaterciaria picture {
    position: relative;
}

.notaterciaria .fecha1 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: .3rem;
    margin-bottom: .5rem;
}

.notaterciaria .nolink p {
    color: black;
}

.notaterciaria .nolink h4 {
    color: black;
}

.notaterciaria .nolink:visited a {
    color: black;
}

button a {
    color: white;
}

.horizontalscroll .notaterciaria:first-child {
    margin-left: 0rem;
}

.horizontalscroll .notaterciaria:last-child {
    width: 40vw;
    height: calc(.667*40vw);
}

.horizontalscroll .notaterciaria:last-child p {
    position: absolute;
    top: -3.5rem;
    left: 1rem;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

.absolute {
    position: absolute;
    bottom: 0;
    left: 0;
}



/* PÁGINA INSTITUCIONAL */

.infoclub {
    text-align: center;
}

.infoclub h2 {
    font-size: 1.3em;
    text-align: left;
    margin: 1rem;
}

.infoclub p {
    font-size: .8rem;
    text-align: left;
}

.listado ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.listado ul li {
    text-align: left;
    margin: 1.5rem 1.1rem;
}

.listado ul li a {
    text-decoration: none;
}

.infoclub img * {
    max-width: 40em;
    height: auto;
    margin: 0 auto;
}

.overlay-3 {
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(20, 41, 172, 0), rgba(20, 41, 172, .3), rgba(20, 41, 172, .75), rgba(20, 41, 172, 1));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(0.667*45vw);
    opacity: .8;
}

#b {
    padding-bottom: 2rem;
}

.infoclub .datosnotasecundaria {
    margin-bottom: 1rem;
    font-size: 1rem;
}


/* INSTALACIONES INSTITUCIONAL */

.vistagaleria {
    margin: 1em 0 0 0;
    background-color: white;
    text-align: center;
    padding-bottom: 2em;
}

.vistagaleria h3 {
    margin: 0 1rem 1rem 1rem;
    padding-top: 1em;
    text-align: left;
}

.vistagaleria figure {
    display: inline-block;
    position: relative;
    flex-wrap: wrap;
    max-width: 45vw;
    text-align: center;
}

.vistagaleria figure > figcaption {
    text-align: left;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #f2f2f2;
    text-transform: uppercase;
}

.vistagaleria figure h4 {
    color: white;
    font-size: 1em;
    text-align: left;
    margin: 0 0 .5rem .5rem;
}




/* PÁGINA CONTACTO */

.mapa iframe {
    display: block;
    overflow: hidden;
    width: calc(100vw - 2rem);
    height: calc(1 * 100vw);
    max-width: 800px;
    max-height: 600px;
    margin: 1rem auto;
    border: solid 2px #17635a;
    box-shadow: 0rem 0rem .7rem .1rem #d9d9d9;
    border-radius: .3rem;
}

.margen1 {
    margin: 0 1rem 0 1rem
}

.subtitulocontacto {
    margin-bottom: .5rem;
    margin-top: 2rem;
}

.llamar {
    background-color: #17635a;
    text-align: center;
    margin-top: .5rem;
    margin: .3rem 0 0 0;
}

.tabla1 {
    display: flex;
}

.tabla1 ul {
    margin-right: 1.5rem;
}

.destacado2 {
    font-weight: bold;
    text-transform: uppercase;
    border-radius: .2rem;
    padding: 0 .2rem 0 0;
}

.interlinea1 {
    line-height: 1.3rem;
}

.vehiculo {
    margin-top: 1rem;
    font-size: 1rem;
}

.vehiculo:last-of-type {
    margin-bottom: 2rem;
}


/*PAGINA GALERIA*/

.vistagaleria2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 1em;
    margin-bottom: 2rem;
}

.vistagaleria2 figure {
    background-color: white;
    max-width: 48%;
    margin-bottom: .8rem;
    border-radius: .3rem;
    overflow: hidden;
}

.vistagaleria2 figure:nth-child(5) {
    margin-bottom: 0;
}

.vistagaleria2 figure:nth-child(6) {
    margin-bottom: 0;
}

.zoom:hover {
    transform: scale(1.1);
}

.zoom {
    border-radius: .3rem .3rem 0 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    transition: transform .5s ease;
}

.vistagaleria2 .icon {
    height: 1.2rem;
    margin: 0;
}

.vistagaleria2 figcaption {
    margin: .5rem;
}

.piealbum {
    display: flex;
    justify-content: space-between;
    background-color: white;
}

.piealbum > div {
    display: flex;
    align-items: center;
}

.vistagaleria2 h4 {
    line-height: 1rem;
    margin-top: .3rem;
    text-align: left;
}

.vistagaleria2 .nolink p {
    color: black;
}

.vistagaleria2 .nolink h4 {
    color: black;
}

.vistagaleria2 .nolink:visited a {
    color: black;
}



/*PAGINA VIDEOS*/

.galeriavideos a {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.galeriavideos > div {
    margin-bottom: 3rem;
}


.videoresponsive {
    position: relative;
    margin: 0 auto;
    height: 0;
    padding-bottom: 51.55%;
    box-shadow: 0 0 .2em black;
}

.videoresponsive iframe {
    display: none;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
}

.videoresponsive .viewok {
    display: block;
}

.vistavid {
    margin: .5rem 1rem 2rem;
}

.vistavid2 {
    margin: .5rem 0 .5rem;
}

#datosvideo {
    font-size: 1rem;
    margin: 0 1rem 1rem;
}



/*PAGINA ALBUM*/

#imgxl {
    display: none;
    position: relative;
    width: 100%;
}

.album {
    font-size: 1.2rem;
    border-bottom: none;
    text-transform: inherit;
    text-align: center;
    margin: 3rem auto 0 auto;

}

main > p {
    text-align: center;
    margin-bottom: .5rem;
}



.descripalbum {
    display: flex;
    justify-content: center;
    padding: 0;
    align-content: center;
}

.descripalbum > .icon {
    margin-left: 1rem;
    margin-right: .3rem;
    height: 1.2rem;
    width: auto;
}

.bajada {
    font-size: .8rem;
    text-align: center;
    padding: .5rem 1rem 0 1rem;
    margin: 0;
}

.vistaalbum {
    padding: .8em .8em;
}

.vistaalbum img {
    width: 48%;
}

.fancybox-caption h4 {
    font-size: 1.5rem;
}

.fancybox-caption p {
    font-size: 1rem;
    line-height: 1rem;
}

.descripcion {
    text-align: left;
}



/* PAGINA NOTICIAS*/

.noticiageneral {
    margin: 1rem;
    border-radius: .3rem;
    background-color: white;
}

.noticiageneral figure {
    overflow: hidden;
}

.noticiageneral:hover figure > img {
    transform: scale(1.1);
}

.noticiageneral figure > img {
    border-radius: .3rem .3rem 0 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    transition: transform .5s ease;
}

.noticiageneral figure > figcaption {
    margin-left: 1rem;
    margin-right: 1rem;
}

.overlay-4 {
    width: 100%;
    height: 100%;
}

.boton-c {
    flex: 1;
    height: auto;
    display: block;
    color: white;
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    padding: .5rem;
    background-image: linear-gradient(to right, rgba(20, 41, 172, 1) 0%, #1abc71 50%);
    border-radius: 0 0 .2rem .2rem;
}

.datosnotageneral {
    display: flex;
    flex-direction: column;
}

.datosnotageneral img {
    height: 2rem;
    opacity: .7;
    display: block;
    margin: 0;
    opacity: .5;
    padding: .3rem;
    color: white;
    border-radius: .2rem;
}

.datosnotageneral > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: .3rem 1rem;
}

.datosnotageneral > div > div {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
}

.datosnotageneral > div > div > p {
    background-color: #111111;
    opacity: .5;
    font-size: 1rem;
    padding: .4rem;
    color: white;
    border-radius: .2rem;
    margin-right: .5rem;
}

.datosnotageneral time {
    padding: .4rem;
}

.noticiageneral a > p {
    color: #111111;
    margin: .5rem 1rem .5rem 1rem;
    line-height: 1.3rem;
}

.navpaginas {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.navpaginas a {
    text-align: center;
    background-color: #001489;
    color: white;
    margin: .1rem;
    width: 2rem;
    height: 2rem;
    border-radius: .2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navpaginas a:nth-child(1) {
    background-color: #111111;
    opacity: .3;
    pointer-events: none;
}

.navpaginas a:nth-child(2) {
    background-color: #111111;
    opacity: .3;
    pointer-events: none;
}

.navpaginas a:hover {
    background-color: #111111;
}

.listaetiquetas {
    margin: 0 1rem 2rem 1rem;
}

.listaetiquetas > div {
    display: flex;
}

.listaetiquetas .icon {
    margin-right: .5rem;
}

.listaetiquetas ul {
    display: flex;
    flex-flow: row wrap;
    flex: 1 auto;
    text-align: center;
}

.listaetiquetas ul a {
    display: block;
    background-color: #111111;
    opacity: .3;
    text-decoration: none;
    padding: 0.5rem;
    margin-right: .3rem;
    margin-bottom: .3rem;
    border-radius: 3px;
    color: #fff;
}

.listaetiquetas ul a:hover {
    opacity: 1;
}

.listaetiquetas h3 {
    margin-bottom: .5rem;
}




/*PAGINA NOTICIA INIDIVIDUAL*/

.portada {
    position: relative;
}

.portada img {
    max-width: 100vw;
    height: auto;
    margin: 0 auto;
}

.encabezadonoticia {
    margin: 1rem 1rem 3rem 1rem;
}

.encabezadonoticia h2 {
    font-size: 2.3rem;
    line-height: 2.5rem;
    color: #001489;
    margin-bottom: 1.3rem;
    margin-top: 1rem;
    text-transform:
}

.encabezadonoticia > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-bottom: .3rem;
    padding-top: .4rem;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    border-top: 1px solid rgba(0, 0, 0, .3);
}

.encabezadonoticia > div > p {
    font-size: 1rem;
    text-transform: uppercase;
}

.encabezadonoticia > div > ul {
    display: flex;
    align-items: center;
}

.encabezadonoticia ul li img {
    height: 2.5rem;
    cursor: pointer;
}

.marcadornoticia {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-transform: uppercase;
    font-size: .8rem;
}

.marcadornoticia:before {
    content: "";
    background-color: #1abc71;
    height: 1rem;
    width: 3px;
    margin-right: .2rem;
}

.copetenoticia {
    margin-top: 1rem;
    font-size: 1.5rem;
}

.portada time {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 1rem;
}

.cuerponoticia {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.encabezadonoticia .cuerponoticia:first-child {}


.tags {
    border-top: 1px solid rgba(0, 0, 0, .3);
    padding-top: 1rem;
    margin-bottom: 3rem;
}


/*COMPARTIR REDES NOTICIA*/

.share__wrapper {
    display: flex;
    margin: 0;
}

.share__title {
    align-self: flex-end;
    margin-bottom: 0;
    font-size: 1.25rem;
}

.share__list {
    display: flex;
    flex: 1;
    margin: 0;
    list-style: none;
}

.share__item {
    & + & {
        margin-left: 1rem;
    }
}

.share__link {
    border: none;
    background-color: #EFEFEF;

    > * {
        pointer-events: none;
    }
}

.share__item img {
    opacity: .8;
}

.share__item:hover img {
    opacity: 1;
}






/*PAGINA SPONSOR */

label {
    display: flex;

}

input {
    border-width: 1px;
    border-style: solid;
    border-color: rgb(169, 169, 169);

    border-radius: 1px;
    width: 50vh;
}

#nombre {
    margin-bottom: 1em;
    margin-top: .5em;
    padding: .5em;
    height: 10vh;
}

#msj {
    width: 50vh;
    margin-bottom: 1em;
    margin-top: .5em;
    padding: .5em;
    height: 30vh;
    letter-spacing: normal;
    text-transform: none;
    text-align: start;
}

#email {
    margin-bottom: 1em;
    margin-top: .5em;
    padding: .5em;
    height: 10vh;
}

#telefono {
    margin-bottom: 1.5em;
    margin-top: .5em;
    padding: .5em;
    height: 10vh;
}

.form {
    justify-content: center;
    align-items: center;
}


/*REGISTRO OK */

.registrook {
    margin-top: 4.5em;
}


/*LOGIN ADMIN */

.clicklogin {
    background-color: #d02630;
    background-color: #d02630;
}

#login {
    color: white;
    font-size: .8rem;
    font-weight: bold;
    margin-bottom: 1em;
}

#login:hover {
    color: #d02630;
}

.behind {
    display: none;
}

#user,
#password {
    margin-bottom: 1em;
    margin-top: .5em;
    padding: .5em;
    height: 10vh;
}

.behind2 {
    background-color: #111111;

}

.behind2 section {
    margin-bottom: 4em;
    background-color: #EFEFEF;
    box-shadow: 0rem 0rem .2rem 0 #d9d9d9;
}

.behind2 h2 {
    color: black;
}


.behind2 div:last-child {
    display: flex;
    justify-content: center;
    margin: 0 2em;
}

.behind2 div:last-child button {
    padding: .5em;
    margin: 0 .3em 1em;

}




/*DEPORTES*/

.deporte {
    margin-bottom: 4rem;
}

.deporte h4 {
    margin-top: 1rem;
}

.portadadeporte {
    width: 100vw;
    height: calc(.45*100vw);
    object-fit: cover;
}

.portadadeporte img {
    width: auto;
    object-fit: cover;
    margin: 0 auto;
}

.deporte h3 {
    margin: .5rem 1rem;
}

.infodeporte {
    margin: 0 1rem 1rem 1rem;
}

.infodeporte > p {
    margin: .3rem 0;
}




/*DROPDOWN DEPORTES*/

.tab {
    margin: .5rem 1rem;
    cursor: pointer;
    background-color: #001489;
    border-radius: .3rem;
}

.tabtitulo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: .3rem;
    padding-bottom: .3rem;
}

.flechadeportes {
    color: white;
    font-size: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    transform: rotate(90deg);
    line-height: 0;
}

.girar {
    transform: rotate(-90deg);
    padding-bottom: .5rem;
}

.tabtitulo h2 {
    font-size: 1.3rem;
    color: white;
    text-transform: uppercase;
    padding-left: .5rem;
    transition: all 0.3s ease;

    &:hover {
        cursor: pointer;
    }
}

.content-block {
    padding: .5rem;
    display: none;
    background-color: white;
    border-radius: 0 0 .3rem .3rem;
}

.content-block p {
    color: #111111;
}

.upperbold {
    font-weight: bold;
    text-transform: uppercase;
}

.categoriadeportes {
    margin-bottom: 1rem;
}

.categoriadeportes h4 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-transform: uppercase;
    margin-bottom: .1rem;
}

.categoriadeportes h4:before {
    display: block;
    content: "";
    background-color: #1abc71;
    height: 1rem;
    width: 3px;
    margin-right: .2rem;
}



/*TABLA HORARIOS*/

.table-scroll {
    position: relative;
    width: 100%;
    z-index: 1;
    overflow: scroll;
}

.table-scroll table {
    width: 100%;
    min-width: 40rem;
    margin: auto;
    border-collapse: separate;
    border-spacing: 0;
}

.table-wrap {
    position: relative;
}

.table-scroll th,
.table-scroll td {
    border-bottom: 1px solid #111111;
    background: #fff;
    vertical-align: top;
    text-align: center;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.table-scroll thead th {
    background: #111111;
    color: #fff;
}

th:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #EFEFEF;
    border-bottom: none;
}

thead th:first-child {
    z-index: 5;
}


/*CALENDARIO*/

.calendar {
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    width: 100%;
    height: auto;
    margin: 0 auto;
    font-size: 1rem;
    font-family: "Exo 2", sans-serif;
}

.calendar * {
    font-size: 1rem;
    font-family: "Exo 2", sans-serif;
}

.c-previous {
    border-radius: .3rem 0 0 0;
}

.c-next {
    border-radius: 0 .3rem 0 0;
}

.c-event-title {
    border-radius: .3rem .3rem 0 0;
}


.c-grid {
    width: auto;
    height: auto;
    margin: 1rem;
    border-radius: .3rem;
}

.c-event-grid {
    width: auto;
    height: auto;
    min-height: 5rem;
    margin: 1rem;
    position: static;
    border-radius: .3rem .3rem 0 0;
    display: none;
}

.calendar .c-pad-top {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.c-grid-title {
    background-color: #001489;
}

.c-week-day {
    background-color: #111111;
}

.c-event-title {
    background-color: #001489;
}

.c-day {
    background-color: none;
}

.c-today {
    background-color: #1abc71;
    color: white;
    font-weight: bold;
}


/*PAGINA CALENDARIO*/

.eventos {
    background-color: white;
    padding-bottom: 3rem;
}

.eventos > div {
    margin-top: .5rem;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.eventos > div > h3 {
    padding: 1rem;
    margin: 0 auto;
    text-transform: uppercase;
}


.eventos .agendaindex {
    padding: 0;
    text-align: center;
    box-shadow: none;
    margin: 0;
    background-color: none;
    border-radius: 0;
}

.eventos .agendaindex .cuerpocaja {
    padding: 1rem;
}

.eventos .agendaindex .cuerpocaja .nobutton {
    margin: 1.5rem 0 .5rem 0;
}

.boton-d {
    font-size: 1rem;
    font-weight: bold;
    padding: 1rem 3rem;
    background-color: #d02630;
    /*background-image: linear-gradient(45deg, #bc1a1a 10%, #001489 90%);*/
    color: white;
    border-radius: .2rem;
}



/*PIE */
footer {
    font-size: 1em;
    padding: .5em;
}

footer > p {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

/*PIE DEL CLUB */

#piedepagina {

    background-color: #111111;
    padding: 1rem 0 1rem 0;
}

#piedepagina h4 {
    color: white;
    text-align: center;
    margin: 1rem;
    font-size: 1rem;
}

#patrocinadores {
    margin-top: 1rem;
    text-align: center;
}

#contacto_club {
    color: white;
    margin-top: 1rem;
    text-align: center;
}

#contacto_club div {
    display: flex;
    justify-content: center;
    align-items: center;
}

#contacto_club div p {
    font-size: 1rem;
}

#contacto_club > .nobutton {
    margin: 2rem 0 2rem 0;
}




/*GENERALES ABAJO*/

.blue {
    color: #2E3191
}

.sponsorno2 {
    display: none;
}








/*MEDIA QUERYS*/

@media (min-width: 32rem) {

    /*SLIDESHOW*/


    .slideshow-container img {
        height: calc(.667*100vw);
    }

    .overlay {
        height: calc(.667*100vw);
    }

    .prev {
        font-size: 4rem;
        padding: 0rem .7rem .5rem 2rem;
    }

    .next {
        font-size: 4rem;
        padding: 0rem 2rem .5rem .7rem;
    }

    /*NOTICIAS SECUNDARIAS INDEX*/

    .noticiasindex1 figure > figcaption {
        margin-left: 4rem;
        margin-right: 4rem;
        margin-bottom: 2rem;
    }

    .datosnotasecundaria {
        margin: 0 4rem 0 4rem;
    }

    .datosnotasecundaria p {
        margin: .5rem 0 1rem 0;
        line-height: 1.1rem;
    }

    /*FOOTER*/

    footer > p {
        max-width: 30rem;
    }

    /*PIE DEL CLUB */

    #piedepagina {
        display: flex;
        justify-content: space-around;
    }

}




@media (min-width: 40rem) {

    /*SLIDESHOW*/

    .slideshow-container img {
        height: calc(.55*100vw);
        width: 100vw;
        object-fit: cover;
        object-position: center;
    }

    .overlay {
        height: calc(.55*100vw);
    }

    /*ULTIMO PARTIDO*/
    
    .bloqueultpar {
        max-width: 30rem;
        margin: 0 auto;
    }

    .agendaindex {
        max-width: 30rem;
        margin: 0 auto;
    }
    

    /*NOTICIAS INDEX*/

    .noticiasindex1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin-left: 1rem;
        margin-right: 1rem;
    }


    .noticiasindex1 article {
        width: 48%;
        height: 25rem;
        border-radius: .2rem;
        box-shadow: 0rem 0rem .7rem .1rem #d9d9d9;
        display: flex;
        flex-direction: column;
    }


    .noticiasindex1 img {
        width: 100%;
        height: auto;
        border-radius: .2rem .2rem 0 0;
    }

    .overlay-2 {
        position: absolute;
        background-image: linear-gradient(to bottom, rgba(20, 41, 172, 0), rgba(20, 41, 172, .3), rgba(20, 41, 172, .75), rgba(20, 41, 172, 1));
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(.667*46.5vw);
        opacity: .8;
    }

    .noticiasindex1 figure > figcaption {
        margin-left: 1rem;
        margin-right: 1rem;
        margin-bottom: 1rem;
    }

    .datosnotasecundaria {
        margin: 0 1rem 0 1rem;
        height: 9rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .datosnotasecundaria > a {
        display: flex;
        align-self: flex-end;
    }

    /*SPONSOR INDEX*/

    .sponsorindex {
        max-width: 30rem;
        margin: 0 auto;
    }

    .sponsorindex article {
        width: 30rem;
        height: auto;
        margin-top: 2rem;
    }

    .sponsorindex img {
        width: 30rem;
    }


    .overlay-sp {
        position: absolute;
        background-image: linear-gradient(to bottom, rgba(23, 99, 90, 0), rgba(23, 99, 90, .3), rgba(23, 99, 90, .75), rgb(23, 99, 90, 1));
        position: absolute;
        top: 0;
        left: 0;
        width: 30rem;
        height: calc(.667*30rem);
        opacity: .8;
    }

    #sp {
        text-align: center;
        position: absolute;
        bottom: ;
        left: 0;
        color: white;
    }

    #sp h4 {
        text-transform: uppercase;
        font-size: 3rem;
        text-shadow: .1em .1em .1em black
    }

    #sp p {
        text-transform: none;
        font-size: 1.5rem;
        text-shadow: 0 0 .5em black
    }

    #sp button {
        margin-top: 1.5rem;
        left: 0;
    }

    /*NOTICIA TERCIARA INDEX*/

    .horizontalscroll {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        flex-shrink: 0;
    }

    .notaterciaria {
        margin: .3rem;
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
        width: 27vw;
        display: inline-block;
    }

    .notaterciaria p {
        margin: .3rem;
    }

    .notaterciaria picture {
        position: relative;
    }

    .notaterciaria .fecha1 {
        position: absolute;
        bottom: 0;
        left: 0;
        margin-left: .3rem;
        margin-bottom: .5rem;
    }

    .horizontalscroll .notaterciaria:first-child {
        margin-left: 0rem;
    }

    .horizontalscroll .notaterciaria:last-child {
        width: 27vw;
        height: calc(.667*27vw);
    }

    .horizontalscroll .notaterciaria:last-child p {
        position: absolute;
        top: -3.5rem;
        left: 1rem;
        color: white;
        text-transform: uppercase;
        font-weight: bold;
    }


}


@media (min-width: 64rem) {

    /*HEADER*/

    #iconmenu {
        display: none;
    }

    header {
        display: block;
        position: sticky;
        justify-content: space-between;
        top: -5rem;
    }

    header nav {
        background-image: url("../imagenes/img_83.jpg");
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
        color: white;
        position: static;
        right: 0;
        top: 0;
        height: auto;
        width: auto;
        transition: all .6s ease;
        display: flex;
        justify-content: flex-end;

    }

    .menuvisible {
        right: 0;
        transition: all .6s ease;
    }

    header nav ul {
        padding-top: 0;
        margin-top: 0;
        display: flex;
        margin-top: 5rem;
        width: 100vw;
        flex-basis: 100%;
        background-color: none;
    }

    header nav a {
        color: white;
        padding: .7em .7em .7rem .7rem;
        text-align: right;
        text-decoration: none;
        font-size: 1.1em;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        background-color: #111111;
    }

    header nav li:first-child {
        flex-basis: 100%;
    }

    header nav a:after {
        content: "";
        border-bottom: 3px solid #1abc71;
        width: 0rem;
        transition: .25s linear;
    }

    header nav a:hover:after {
        width: 2.5rem;
    }

    .logodoble {
        position: absolute;
        display: flex;
        top: 1rem;
        left: 1rem;
        transition: all 0.3s;
    }

    .escudo {
        width: 7rem;
        padding: 0;
    }


    #inicio {
        flex-grow: 1;
    }

    #navbar {
        transition: top .6s ease;
    }

    /*SLIDESHOW*/


    .slideshow-container {
        max-width: none;
        text-align: center;
    }

    .slideshow-container img {
        max-width: 100vw;
        height: calc(.5*100vw);
        object-fit: cover;
        object-position: top;
    }

    .overlay {
        height: calc(.5*100vw);
        margin: 0 auto;
        opacity: .85;
    }

    .text {
        background-color: hsla(220, 8%, 15%, 0);
        text-align: left;
        padding-left: 7rem;
        padding-right: 7rem;
        padding-bottom: 5rem;
    }

    .text h2 {
        background-color: none;
        text-transform: uppercase;
        padding-bottom: .3rem;
        font-size: 2rem;
    }

    .text p {
        font-size: 1.5rem;
    }

    .prev {
        left: 0;
        color: white;
        font-weight: normal;
        font-size: 5rem;
        margin-top: -5rem;
        padding: 0rem .7rem .5rem 2rem;
    }

    .next {
        right: 0;
        color: white;
        font-weight: normal;
        font-size: 5rem;
        margin-top: -5rem;
        padding: 0rem 2rem .5rem .7rem;
    }


    .bloquegrande {
        display: flex;
        margin: 0 auto;
        justify-content: center;
    }

    .bloquegrande h2 {
        margin-bottom: 3rem;
    }

    .noticiasindex {
        max-width: 37rem;
        background-color: #efefef;
        margin-left: 1.5rem;
    }


    .noticiasindex1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0 0 1rem 0;
        padding: 0;
    }

    .noticiasindex1 article:first-child {
        margin: 0;
    }

    .noticiasindex1 article:last-child {
        margin: 0;
    }

    .noticiasindex1 article {
        width: 18rem;
        height: 23rem;
        background-color: white;
    }


    .noticiasindex1 img {
        width: 100%;
        height: auto;
    }

    .overlay-2 {
        width: 100%;
        height: calc(.667*18rem);
    }

    .horizontalscroll {
        display: flex;
        flex-wrap: wrap;
        overflow-x: hidden;
        justify-content: space-between;
    }

    .notaterciaria {
        margin: 0 0 1rem 0;
        display: flex;
        flex-shrink: 0;
        width: 12rem;
        height: 13rem;
        background-color: white;
        border-radius: .3rem;
        box-shadow: 0rem 0rem .7rem .1rem #d9d9d9;
    }

    .notaterciaria p {
        margin: .3rem;
    }

    .notaterciaria picture {
        position: relative;
    }

    .notaterciaria picture img {
        border-radius: .3rem .3rem 0 0;
    }

    .notaterciaria .fecha1 {
        position: absolute;
        bottom: 0;
        left: 0;
        margin-left: .3rem;
        margin-bottom: .5rem;
    }

    .horizontalscroll .notaterciaria:last-child {
        width: 12rem;
        height: 13rem;
    }

    .horizontalscroll .notaterciaria:last-child img {
        width: 12rem;
        height: 13rem;
        object-fit: cover;
        border-radius: .3rem;
    }


    .horizontalscroll .notaterciaria:last-child p {
        font-size: 1.5rem;
        top: -8rem;
        margin: 1rem;
        left: 0;
    }

    #piedepagina {
        display: flex;
        justify-content: center;
    }

    #piedepagina div:first-child {
        margin-right: 2rem;
    }

    .sponsorindex {
        height: 27rem;
        display: flex;
        position: relative;
        justify-content: center;
        max-width: 100vw;
    }

    .noticiasindex2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    .sponsorindex article {
        width: 100vw;
        display: flex;
        justify-content: center;
    }

    .sponsorindex img {
        width: 30rem;
        height: auto;
        object-fit: cover;
    }


    .overlay-sp {
        position: absolute;
        background-image: linear-gradient(to bottom, rgba(23, 99, 90, 0), rgba(23, 99, 90, .3), rgba(23, 99, 90, .75), rgb(23, 99, 90, 1));
        top: 0;
        left: 0;
        width: 100vw;
        height: 27rem;
        opacity: .8;
    }

    #sp {
        text-align: center;
        position: absolute;
        bottom: 2rem;
        left: 50%;
        color: white;
    }

    #sp h4 {
        text-transform: uppercase;
        font-size: 3rem;
        text-shadow: .1em .1em .1em black;
        position: relative;
        left: -50%;
    }

    #sp p {
        text-transform: none;
        font-size: 1.5rem;
        text-shadow: 0 0 .5em black;
        position: relative;
        left: -50%;
    }

    #sp button {
        margin-top: 1.5rem;
        left: 0;
        position: relative;
        left: -50%;
    }




















    .sponsorno {
        display: none;
    }


}
