/*----------Seccion Content Radio----------*/
.radio-contenedor {
	overflow: hidden;
	position: relative;
	width: 100%;
}
.radio-wrapper {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
}

.radio-portada-wrap {
	width: 100%;
	position: relative;
}
.radio-portada-wrap img {
	width: 100%;
	object-fit: cover;
}

.radio-wrap-bottom {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 30px 15px;
}

.reproductor-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 60px 15px;
	order: 2;
}

.lista-reciente-wrap {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 40%;
	order: 1;
}
.lista-reciente-wrap h1 {
	font-size: 20px;
	font-weight: bold;
	color: #212529;
	border-bottom: 1px solid #B3B6B7;
	margin-bottom: 10px;
}
.lista-reciente-item {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #B3B6B7;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.lista-reciente-item img {
	width: 100%;
	object-fit: cover;
}
.lista-item-parrafo {
	padding: 5px 10px 5px 10px;
}
.lista-item-parrafo h2 {
	font-size: 16px;
	font-weight: bold;
	color: #212529;
	margin-bottom: 2px;
}
.lista-item-parrafo span {
	font-size: 14px;
	color: #343a40;
}

/*------ Inicio radio -------*/
.radio-box {
	position: relative;
	max-width: 320px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px;
	border-radius: 10px;
	background: #ced4da;
	border: 1px solid #808B96;
}
.radio-box-wrap {
	width: 100%;
	display: flex;
	padding: 2px 5px 10px 5px;
	align-items: center;
}
.radio-box-parrafo {
	color: #212F3D;
	font-size: 18px;
	outline: none;
	font-weight: 700;
	letter-spacing: -0.4px;
	margin-right: 10px;

	background: #29910F;
	background: linear-gradient(to right, #29910F 0%, #f08c00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.radio-box-img {
	width: 75px;
	position: absolute;
	right: 70px;
	top: 3px;
}

/* ---- Media Query ----- */
@media (max-width: 800px) {
	.reproductor-wrap {
		padding: 60px 0px;
	}
}