/* CSS Document */
body {
	background-color:#525659;
	color:#FFF;
}
.imgres {
	width:100%;
	height:auto;
}

.imagen-contenedor.listen {
    background-image: url('images/listen.jpg');
}

.titulo-contenedor {
	background-color:#bbb538;
	text-align:center;
	padding:2px;
}
.titulo-contenedor a, .titulo-contenedor a:link, .titulo-contenedor a:active, .titulo-contenedor a:visited, .titulo-contenedor a:focus, .titulo-contenedor a:hover {
	color:#FFF;
}
.titulo {
	font-size:24px;
	font-weight:700;
	color:#FFF;
	text-transform:uppercase;
	padding:5px;
}
.titulo-chico {
	font-size:18px;
	font-weight:700;
	color:#FFF;
	text-transform:uppercase;
	padding:5px;
}
.columna {
	padding:7px;
}
.columnaalcorte {
	padding:0px;
	padding-top:7px;
}


@media (min-width: 1200px) {
.arriba {
	padding-top:0px;
}
.derecha {
	padding-right:0px;
}
.abajo {
	padding-bottom:0px;
}
.izquierda {
	padding-left:0px;
}
}


.imagen-contenedor {
	background-size:cover;
	background-position:center center;
	min-height:190px;
}
.listen {
	min-height:200px;
}
.pointer {
	cursor:pointer;
}
.banner {
	margin-bottom:14px;
}
.news-grilla {
	background-color:#000;
            padding: 14px;
            height: 100%;
            min-height: 100%;
}
.news-entrada h2 {
	font-size:22px;
	font-weight:700;
	color:#bbb538;
	text-transform:uppercase;
	margin-top:0;
	padding-top:0;
}
.news-entrada p {
	font-size:16px;
}
.news-entrada p a {
    color: white;
    text-decoration: underline;
}
.btn-ver-mas, .btn-ver-mas:link, .btn-ver-mas:active, .btn-ver-mas:visited, .btn-ver-mas:focus {
	color:#bbb538;
	border:1px solid #bbb538;
	font-size:10px;
	background-color:transparent;
	border-radius:0;
}
.btn-ver-mas:hover {
	color:#FFF;
	border:1px solid #FFF;
	background-color:transparent;
	border-radius:0;
}
.footer {
	background-color:#000;
	color:#FFF;
	margin-top:7px;
}
.redes i {
	color:#bbb538;
	margin-left:5px;
}
.footer a {
	color:#fff;
}
.track-info {
	padding:5px 7px 5px 7px;
	font-weight:700;
	text-transform:uppercase;
}
.track {
	background-color:#bbb538;
	text-align:center;
}
.track a, .track a:link, .track a:active, .track a:visited, .track a:focus, .track a:hover {
	color:#FFF;
}
.track-row  {
	margin-right:7px;
	margin-left:7px;
}

.btn-primary, .btn-primary:link, .btn-primary:active, .btn-primary:visited, .btn-primary:focus {
	color:#FFF;
	border:0px;
	background-color:#bbb538;
	border-radius:0;
	font-weight:700;
}
.btn-primary:hover {
	color:#FFF;
	border:0px;
	background-color:#bbb538;
	border-radius:0;
	text-decoration:underline;
}


/*MENU FULL SCREEN MOVIL*/
/* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */   
  height: 100%;
  width: 0;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(0,0,0); /* Black fallback color */
  background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 25%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}