html,body {
	height:100%;
	background: #fefefe;
	margin: 0;
  display: flex;
  flex-direction: column;
	font-family: 'Lexend Mega', sans-serif;
	color: #3B3A38;
}
button{
	background: transparent;
	border: none;
	font-family: 'Lexend Mega', sans-serif;
}
#rn-container{
	min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
	max-width: 1000px;
	margin: 0 auto;
}

/* Cebecera */
header {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: center;
	padding: 30px 60px 15px 60px;
	height: auto;
	z-index: 1;
}
header img{
	width: 80%;
	height: auto;
	margin: 0 auto;
}
header p{
	text-align: center;
	font-size: 1rem;
	font-weight: bold;
}

/* Facebook */
section#rn-fbk{
	flex-grow: 1;
	display: flex;
  flex-direction: column;
	align-items: center;
}
.btn-fbk{
	width: 100%;
	display: flex;
}
.btn-fbk a{
	margin: 0 auto;
	background-color: #1278F3;
	box-shadow: 0px 1px 3px #444;
	border-radius: 5px;
	padding: 0 40px;
}
.btn-fbk img, .btn-fbk p{
	display: inline-block;
	vertical-align: middle;
}
.btn-fbk img{
	width: 35px;
}
.btn-fbk p{
	color: #fefefe;
	margin: 0;
	font-size: 0.8rem;
}

/* Radio */
section#rn-radio{
	width: 100%;
	display: flex;
	flex-grow: 1;
  flex-direction: column;
	align-items: center;
}
.radio-container{
	width: 100%;
}
.player {
	background-color: #247EC5;
  display: flex;
	justify-content: center;
  padding: 0 10px;
}
.player .btns {
  display: grid;
  align-items: center;
  padding: 0 16px;
	cursor: pointer;
}
.text-player{
	display: grid;
	text-align: center;
	align-items: center;
}
.text-player p{
	font-size: 2rem;
	font-variant: small-caps;
	color: #fefefe;
}
.iconfont {
    font-family: "Font Awesome 5 Free";
    font-size: 6.5rem;
    font-style: normal;
		text-align: center;
		color: #fefefe;
}
.icon-play:before {
    content: "\f144";
}
.icon-pause:before {
    content: "\f28b";
}

/* Acciones */
#rn-actions{
	width: 100%;
	display: flex;
	flex-grow: 1;
	flex-direction: row;
	padding: 30px 0;
}
.btn-action{
  width: 42%;
	padding: 0 4%;
}
.btn-action a{
	text-decoration: none;
	width: 100%;
	display: block;
	box-shadow: 0px 1px 3px #444;
	border-radius: 5px;
}
.btn-action img, .btn-action p{
	display: inline;
	vertical-align: middle;
}
.btn-action button{
  padding: 10px;
	width: 100%;
}
.btn-action button img{
	width: 45px;
}
.btn-action button p{
	font-size: 1.2rem;
	text-transform: uppercase;
}

/* Pie */
footer {
	font-size: 0.6rem;
	width: 100%;
	display: flex;
	justify-content: center;
}

/* Instalacion */
#alertInstalacion{
	display: none;
	position: fixed;
	top: 0;
	z-index: 1;
	color: #333;
	bottom: 0;
	right: 0;
	left: 0;
	width: auto;
	max-width: 767px;
	height: min-content;
	margin: 0 auto;
	padding: 20px;
	align-items: center;
}
#alertInstalacion .contenedor-alerta{
	background: #FFFFFF;
	box-shadow: 0px 0px 10px #333;
	padding: 20px;
}
#alertInstalacion .contenedor-alerta h3 {
	text-align: center;
	text-transform: uppercase;
}
#alertInstalacion .contenedor-alerta ul{
	padding: 10px;
}
#alertInstalacion .contenedor-alerta li{
	list-style: none;
}
#alertInstalacion .contenedor-alerta p{
	text-align: center;
}
#alertInstalacion .contenedor-alerta img{
	margin: 0;
}
#alertInstalacion .contenedor-alerta #btn-instalado{
	cursor: pointer;
	margin: 15px auto;
	background: #247EC5;
	padding: 10px 20px;
	text-align: center;
	color: #fff;
}
