@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1600px;
    }
    .faqHeader {
        font-size: 27px;
        margin: 20px;
    }
}

.map-container {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-container iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.noticiaPartido {
    height: 463px;
}


body{
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding-bottom: 250px;
}

    
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    
}

.logo {
    transition: 0.2s linear;
}

.logo:hover {
    filter: brightness(80%);
}

.img_carrusel {
    width: 100%;
    object-fit: cover;
}

.carnet { 
    background-image: url('../../images/carnetplantilla.png');
    width: 800px;
    height: 600px;
 }

.numSocio {
    margin-top: 305px;
    margin-right: 35px;
 }

 .nombreSocio{
    margin-top: 35px;
 }

 @media (max-width: 767px) {
    .carnet { 
        background-image: url('../../images/carnetplantilla.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .numSocio {
        font-size: small;
        margin-top: 302px;
        margin-right: 35px;
    }

    .nombreSocio{
    font-size: small;
    margin-top: 20px;
    }
}

.cardNoticia{
    height: 120px;
}

#noticia .container {
  position: relative;
  z-index: 10;
}

#noticia .noticia-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#noticia .noticia-col .img {
  position: relative;
}

#noticia .noticia-col .img img {
  border-radius: 4px 4px 0 0;
}

#noticia .noticia-col .icon {
  width: 64px;
  height: 64px;
  text-align: center;
  position: absolute;
  background-color: #0D47A1;
  border-radius: 50%;
  border: 4px solid #fff;
  left: calc( 50% - 32px);
  bottom: -30px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#noticia .noticia-col i {
  font-size: 28px;
  line-height: 0;
  color: #fff;
  transition: 0.3s;
}

#noticia .noticia-col:hover .icon {
  background-color: #fff;
}

#noticia .noticia-col:hover i {
  color: #0D47A1;
}

#noticia .noticia-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#noticia .noticia-col h2 a {
  color: #000;
}

#noticia .noticia-col h2 a:hover {
  color: #0D47A1;
}

#noticia .noticia-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
  
}


/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/
.aviso-cookies {
	display: none;
	background: #7193c7;
	padding: 20px;
	width: calc(100% - 40px);
	max-width: 300px;
	line-height: 150%;
	border-radius: 10px;
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 100;
	padding-top: 60px;
	box-shadow: 0px 2px 20px 10px rgba(222,222,222,.25);
	text-align: center;
}

.aviso-cookies.activo {
	display: block;
}

.aviso-cookies .galleta {
	max-width: 100px;
	position: absolute;
	top: -50px;
	left: calc(50% - 50px);
}

.aviso-cookies .titulo,
.aviso-cookies .parrafo {
	margin-bottom: 15px;
}

.aviso-cookies .boton {
	width: 100%;
	background: #595959;
	border: none;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	text-align: center;
	padding: 15px 20px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s ease all;
	border-radius: 5px;
	margin-bottom: 15px;
	font-size: 14px;
}

.aviso-cookies .boton:hover {
	background: #000;
}

.aviso-cookies .enlace {
	color: #4DBFFF;
	text-decoration: none;
	font-size: 14px;
}

.aviso-cookies .enlace:hover {
	text-decoration: underline;
}

.fondo-aviso-cookies {
	display: none;
	background: rgba(0,0,0,.20);
	position: fixed;
	z-index: 99;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
}

.fondo-aviso-cookies.activo {
	display: block;
}

.no-seleccionable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; 
}