@import "externos/swiper-bundle.min.css";
/*** EXTERNOS ***/
/*** contenidos comunes *****/
/*** RESET ***/
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
picture {
  padding: 0;
  margin: 0;
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:focus,
a:focus {
  outline: none;
}
ul,
li {
  list-style: none;
}
a,
button {
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:hover {
  text-decoration: none;
}
/**** FONTS ****/
/*** color ***/
/**** MIXINS LESS CLASES *****/
@media (min-width: 1024px) {
  .grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
  }
  .grid.gap-0 {
    gap: 0px;
    margin-bottom: 0px;
  }
  .grid.gap-60 {
    gap: 60px;
  }
  .grid.col-1 {
    grid-template-columns: 1fr;
  }
  .grid.col-1-500 {
    grid-template-columns: 1fr 500px;
  }
  .grid.col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid.xs-col-2-reverse {
    grid-template-columns: 1fr 1fr;
  }
  .grid.col-2-menu {
    grid-template-columns: 450px 300px;
    gap: 200px;
  }
  .grid.col-50-rest {
    grid-template-columns: 50px 1fr;
  }
  .grid.col-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid.col-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .grid.col-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  .grid.col-6 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
  .grid.col-2-1-1 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid.col-1-2-1 {
    grid-template-columns: 160px 1fr 160px;
  }
  .grid.col-1-3 {
    grid-template-columns: 270px 3fr;
  }
  .grid.col-3-1 {
    grid-template-columns: 3fr 270px;
  }
  .grid .column {
    display: block;
  }
  .grid.fix-height,
  .grid .column.fix-height {
    height: 80px;
  }
}
@media (min-width: 1300px) {
  .grid.col-1-2-1 {
    grid-template-columns: 160px 1fr 160px;
  }
  .grid.col-1-3 {
    grid-template-columns: 310px 3fr;
  }
  .grid.col-3-1,
  .grid.col-3-1-collapse-1300 {
    grid-template-columns: 3fr 310px;
  }
}
@media (max-width: 1023px) {
  .grid.invert {
    display: flex;
    flex-direction: column-reverse;
  }
  .grid.flex-order {
    display: flex;
    flex-direction: column;
  }
  .grid.flex-order .three:nth-of-type(1) {
    order: 2;
  }
  .grid.flex-order .one:nth-of-type(2) {
    order: 1;
  }
}
.grid.col-1-2-nobreak {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
}
.grid.col-2-nobreak {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.grid.col-50-rest-nobreak {
  grid-template-columns: 50px 1fr;
}
.grid .column.flx-center {
  display: flex;
  align-items: center;
}
.sticky {
  position: sticky;
  top: 0;
}
/***** REORDER *****/
@media (max-width: 1023px) {
  .grid.col-5 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
/***** UTILITIES ******/
@media (min-width: 1024px) {
  .mb-visible {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .mb-hiden {
    display: none !important;
  }
}
/***** CONTENIDOS COMUNES ******/
body.open {
  overflow: hidden !Important;
}
html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: "eurostile", sans-serif;
}
.main {
  display: block;
  height: auto;
  width: 100%;
  font-family: "eurostile", sans-serif;
  padding: 170px 0 0 0;
}
.main.stk {
  padding-top: 199px;
}
.wrapper {
  width: 1366px;
  display: block;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 1380px) {
  .wrapper {
    width: 100%;
    padding: 0 10px;
  }
}
.sticky-area {
  position: sticky;
  top: 20px;
}
@media (max-width: 700px) {
  .main.stk {
    padding-top: 60px;
  }
}
/***** animaciones ****/
.fadeIn {
  opacity: 0 !important;
  transition: ease 1s all;
}
.fadeIn.active {
  opacity: 1 !important;
}
.fadeInUp {
  transform: translateY(150px);
  opacity: 0 !important;
  transition: ease 1s all;
}
.fadeInUp.active {
  transform: translateY(0);
  opacity: 1 !important;
}
.fadeInRight {
  transform: translateX(150px);
  opacity: 0 !important;
  transition: ease 1s all;
}
.fadeInRight.active {
  transform: translatex(0);
  opacity: 1 !important;
}
.fadeInLeft {
  transform: translateX(-150px);
  opacity: 0 !important;
  transition: ease 1s all;
}
.fadeInLeft.active {
  transform: translatex(0);
  opacity: 1 !important;
}
@media (max-width: 1023px) {
  .main {
    padding: 60px 0 0 0;
  }
}
.hamburger {
  position: absolute;
  top: 24px;
  right: 20px;
  margin: 0;
  padding: 0px;
  cursor: pointer;
  z-index: 999;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: none;
  align-items: center;
}
.hamburger .hamburger-inner {
  position: relative;
  height: 18px;
  width: 30px;
  display: block;
  margin: 0;
  padding: 0;
}
.hamburger .bar {
  width: 30px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger.open .bar {
  background: #fff;
}
.hamburger .bar.bar2,
.hamburger .bar.bar3 {
  top: 7px;
  transform: matrix(0.99999, 0, 0, 0.99999, 0, 0);
}
.hamburger .bar.bar4 {
  top: 14px;
}
.hamburger.open .bar1,
.hamburger.open .bar4 {
  opacity: 0;
}
.hamburger.open .bar2 {
  height: 2px;
  transform: matrix(0.7071, 0.7071, -0.7071, 0.7071, 0, 0);
}
.hamburger.open .bar3 {
  height: 2px;
  transform: matrix(0.7071, -0.7071, 0.7071, 0.7071, 0, 0);
}
.header {
  display: block;
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 170px;
  overflow: hidden;
  background: url('../img/global/bg-top.png') center center no-repeat;
  background-size: cover;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.top-header {
  display: block;
  /*background: url('../img/global/bg-top.svg') center center no-repeat;*/

  width: 100%;
  position: relative;
}
.logo-head {
  display: block;
  width: 250px;
  margin: 5px auto 15px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.logo-head img {
  display: block;
  width: 100%;
}
.nav-menu {
  display: block;
}
.nav-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-menu ul li {
  margin: 0 30px;
}
.nav-menu ul li a {
  opacity: 1;
}
.nav-menu ul li a:hover {
  opacity: 0.8;
}
.logo-nav {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: 0;
  width: 110px;
  overflow: hidden;
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
}
.logo-nav img {
  display: block;
  width: 100%;
}
@media (min-width: 1024px) {
  .header.stiky {
    height: 50px;
  }
  .header.stiky .logo-head {
    width: 0px;
    opacity: 0;
    margin-top: 0;
    margin-bottom: 15px;
  }
  .header.stiky .logo-nav {
    opacity: 1;
  }
}
@media (max-width: 1023px) {
  .hamburger {
    display: block;
  }
  .header {
    height: 60px;
  }
  .logo-head {
    margin: 0;
    width: 130px;
    float: left;
  }
  .nav-menu {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: fixed;
    background: #e31b23;
    overflow: hidden;
    top: 60px;
    left: 0;
    width: 100%;
    max-height: 0;
  }
  .nav-menu ul {
    display: block;
    text-align: center;
    padding: 30px 20px;
  }
  .nav-menu ul li {
    margin: 0 0 20px 0;
  }
  .nav-menu.open {
    max-height: 600px;
  }
}
.footer {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: url('../img/global/bg-top.png') center center no-repeat;
  background-size: cover;
  padding: 40px 0;
  text-align: center;
}
.footer p {
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}
.footer p a {
  color: #fff;
  text-decoration: none;
  background-image: linear-gradient(#ffffff, #ffffff);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0% 2px;
  transition: background-size 0.3s ease-in-out;
  color: #ffffff;
  padding: 0 0 5px 0;
}
.footer p a:hover {
  background-size: 100% 2px;
}
.footer p.nomarg {
  margin-bottom: 0;
}
.footer .redes {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 0 0;
}
.footer .redes .soc {
  margin: 0 0 0 10px;
  font-size: 18px;
  color: #e31b23;
  background: #fff;
  border-radius: 50%;
  padding: 2px 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .redes .soc:hover {
  background: #fe921b;
}
.logo-foot {
  display: block;
  margin: 0 auto;
}
.logo-foot img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .footer p {
    font-size: 30px;
  }
  .logo-foot {
    width: 200px;
  }
}
/**** HOME ***/
.modulo {
  display: block;
  padding: 20px 0;
}
.radio-player {
  display: flex;
  align-items: flex-start;
}
.radio-player .thumb {
  border-radius: 20px 0 20px 0;
  width: 170px;
  min-width: 170px;
  max-width: 170px;
  overflow: hidden;
}
.radio-player .thumb img {
  display: block;
  width: 100%;
}
.radio-player .info {
  display: block;
}
.radio-player .info .datos {
  display: flex;
  align-items: center;
}
.radio-player .info .datos .vivo {
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  background: #e31b23;
  font-weight: 700;
  font-style: italic;
  line-height: 38px;
  padding: 0 30px 0 10px;
  border-radius: 0 10px 10px 0;
  position: relative;
  z-index: 3;
}
.radio-player .info .datos .cab {
  color: #fff;
  font-size: 21px;
  background: #fe921b;
  line-height: 38px;
  padding: 0 10px 0 40px;
  border-radius: 0 10px 10px 0;
  position: relative;
  z-index: 1;
  margin: 0 0 0 -30px;
  display: flex;
  align-items: center;
}
.radio-player .info .datos .cab .ico {
  background: #fff;
  color: #fff;
  border-radius: 50%;
  padding: 3px;
  font-size: 14px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}
.radio-player .info .datos .cab .ico i {
  color: #fe921b;
}
.radio-player .info .datos .cab a {
  color: #fff;
  display: flex;
  align-items: center;
}
.radio-player .prog {
  display: flex;
  align-items: center;
  padding: 20px;
}
.radio-player .prog .bt-play {
  width: 68px;
  min-width: 68px;
  max-width: 68px;
  overflow: hidden;
  cursor: pointer;
}
.radio-player .prog .bt-play img {
  display: block;
  width: 100%;
}
.radio-player .prog .nameprog {
  padding: 0 0 0 10px;
  font-family: "eurostile", sans-serif;
}
.radio-player .prog .nameprog h2 {
  color: #000;
  font-size: 34px;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 28px;
  display: block;
}
.radio-player .prog .nameprog p {
  color: #000;
  font-size: 28px;
  font-style: italic;
}
.radio-player .redes {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.radio-player .redes .phone {
  font-size: 14px;
  color: #3CC96A;
  background: #EFEFEF;
  border-radius: 10px;
  padding: 2px 10px 2px 40px;
  position: relative;
}
.radio-player .redes .phone a {
  color: #3CC96A;
  display: flex;
  align-items: center;
}
.radio-player .redes .phone a span {
  background: #3CC96A;
  color: #fff;
  border-radius: 50%;
  padding: 3px;
  font-size: 18px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 5px;
}
.radio-player .redes .phone a strong {
  font-weight: 400;
}
.radio-player .redes .soc {
  margin: 0 0 0 10px;
  font-size: 16px;
  color: #fff;
  background: #e31b23;
  border-radius: 50%;
  padding: 2px 10px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.radio-player .redes .soc:hover {
  background: #fe921b;
}
.stk .radio-player {
  position: fixed;
  box-shadow: 0 0 10px 0 #ADADAD;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  top: 50px;
  z-index: 99;
  background: #fff;
  width: 1366px;
}
.stk .radio-player .thumb {
  display: none;
}
.stk .radio-player .info {
  display: flex;
  align-items: center;
}
.stk .radio-player .info .datos {
  display: flex;
  align-items: center;
}
.stk .radio-player .info .datos .vivo span {
  display: none;
}
.stk .radio-player .prog {
  display: flex;
  align-items: center;
  padding: 5px 20px;
  max-width: 400px;
}
.stk .radio-player .prog .bt-play {
  width: 40px;
  min-width: 40px;
  max-width: 40px;
}
.stk .radio-player .prog .nameprog {
  padding: 0 0 0 10px;
}
.stk .radio-player .prog .nameprog h2 {
  font-size: 16px;
  line-height: 20px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.stk .radio-player .prog .nameprog p {
  font-size: 14px;
}
.publi {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e7e7e7;
  width: 100%;
  color: #333;
  font-size: 18px;
  text-align: center;
}
.destacado {
  padding: 40px 0;
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
.destacado .tit {
  display: block;
  margin: 0 0 40px 0;
}
.destacado .tit img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.destacado .btn {
  display: inline-block;
  margin: 0 0 20px 0;
}
.destacado .btn img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.destacado .btn:hover {
  opacity: 0.8;
}
.slide-destacados {
  display: block;
  position: relative;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto 40px;
}
.slide-destacados .swiper-button-next,
.slide-destacados .swiper-button-prev {
  color: #fff;
}
.slide-destacados .swiper-button-next:after,
.slide-destacados .swiper-button-prev:after {
  font-size: 30px;
  font-weight: 800;
}
.slider-uno img {
  max-width: 100%;
  display: inline-block;
}
.shows {
  padding: 40px 0;
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
.shows .tit {
  display: block;
  margin: 0 0 40px 0;
}
.shows .tit img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.shows .grilla-prog {
  display: block;
}
.shows .grilla-prog img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.apps {
  margin: 30px 0 0 0;
}
.apps p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
.apps p img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.apps a {
  display: inline-block;
  margin-left: 20px;
}
.playlist {
  padding: 40px 0;
  display: block;
  text-align: center;
}
.playlist .tit {
  display: block;
  margin: 0 0 20px 0;
}
.playlist .tit img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.playlist .subtit {
  color: #e31b23;
  font-size: 40px;
  display: block;
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 40px 0;
}
.item-box {
  text-align: left;
  margin-bottom: 30px;
}
.item-box figure {
  position: relative;
}
.item-box figure img {
  display: block;
  width: 100%;
}
.item-box figure .tag {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  background: url('../img/global/ic-fire.svg') center center no-repeat;
  background-size: cover;
}
.item-box p {
  color: #000;
  font-size: 24px;
  margin: 10px 0 0 0;
}
.item-box p a {
  color: #000;
}
.item-box p a:hover {
  color: #e31b23;
}
.videos {
  padding: 40px 60px 40px;
  display: block;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
.videos .tit {
  display: block;
  margin: 0 0 20px 0;
}
.videos .tit img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.baner-publi-radio img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.contacto {
  margin: 0;
  padding: 100px 0;
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
.contacto .tit {
  display: block;
  margin: 0 0 80px 0;
}
.contacto .tit img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.contacto .info-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.contacto .info-contact p {
  display: flex;
  align-items: center;
  text-align: left;
  margin-bottom: 30px;
}
.contacto .info-contact p img {
  max-width: 35px;
  min-width: 35px;
  margin: 0 20px 0 0;
}
.contacto .info-contact p span {
  color: #000;
  font-size: 26px;
  line-height: 35px;
}
.contacto .mapa iframe {
  width: 100%;
  height: 300px;
}
/***** MODAL REGISTRO *****/
.overlay-registro {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: fixed;
  z-index: -1;
  opacity: 0;
  background: rgba(0, 0, 0, 0.9);
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay-registro .form-area {
  position: relative;
  background: #fff;
  padding: 60px;
  max-width: 1200px;
}
.overlay-registro .form-area .tit {
  display: block;
  margin: 0 0 30px 0;
}
.overlay-registro .form-area .tit img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.overlay-registro .form-area .close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #777;
  font-size: 35px;
  line-height: 30px;
}
.overlay-registro.open {
  z-index: 99999;
  opacity: 1;
  transform: translateY(0px);
}
/*** custom inputs register ****/
.form-area input[type="text"] {
  font-family: "eurostile", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  display: block;
  width: 100%;
  border: solid 1px #E6E6E6;
  background: #E6E6E6;
  border-radius: 20px;
  text-indent: 20px;
  padding: 0 20px 0 0;
}
.form-area input[type="text"]:focus {
  -webkit-box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0.1);
  box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0.1);
}
.form-area input[type="tel"] {
  font-family: "eurostile", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  display: block;
  width: 100%;
  border: solid 1px #E6E6E6;
  background: #E6E6E6;
  border-radius: 20px;
  text-indent: 20px;
  padding: 0 20px 0 0;
}
.form-area input[type="tel"]:focus {
  -webkit-box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0.1);
  box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0.1);
}
.form-area input[type="password"] {
  font-family: "eurostile", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  display: block;
  width: 100%;
  border: solid 1px #E6E6E6;
  background: #E6E6E6;
  border-radius: 20px;
  text-indent: 20px;
  padding: 0 20px 0 0;
}
.form-area input[type="password"]:focus {
  -webkit-box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0.1);
  box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0.1);
}
.form-area input[type="email"] {
  font-family: "eurostile", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  display: block;
  width: 100%;
  border: solid 1px #E6E6E6;
  background: #E6E6E6;
  border-radius: 20px;
  text-indent: 20px;
  padding: 0 20px 0 0;
}
.form-area input[type="email"]:focus {
  -webkit-box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0.1);
  box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0.1);
}
.form-area input[type="number"] {
  font-family: "eurostile", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  display: block;
  width: 100%;
  border: solid 1px #E6E6E6;
  background: #E6E6E6;
  border-radius: 20px;
  text-indent: 20px;
  padding: 0 20px 0 0;
}
.form-area input[type="number"]:focus {
  -webkit-box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0.1);
  box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0.1);
}
.form-area input[type="checkbox"] {
  margin-right: 10px;
}
.form-area input[type="radio"] {
  margin-right: 10px;
}
.form-area input[type="phone"] {
  font-family: "eurostile", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  display: block;
  width: 100%;
  border: solid 1px #E6E6E6;
  background: #E6E6E6;
  border-radius: 20px;
  text-indent: 20px;
  padding: 0 20px 0 0;
}
.form-area input[type="phone"]:focus {
  -webkit-box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0.1);
  box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0.1);
}
.form-area input[type="date"] {
  font-family: "eurostile", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  display: block;
  width: 100%;
  border: solid 1px #E6E6E6;
  background: #E6E6E6;
  border-radius: 20px;
  text-indent: 20px;
  padding: 0 20px 0 0;
}
.form-area input[type="date"]:focus {
  -webkit-box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0.1);
  box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0.1);
}
.form-area select {
  font-family: "eurostile", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  display: block;
  width: 100%;
  border: solid 1px #E6E6E6;
  background: #E6E6E6;
  border-radius: 20px;
  text-indent: 20px;
  padding: 0 20px 0 0;
  height: 40px;
}
.form-area select:focus {
  -webkit-box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0.1);
  box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0.1);
}
.form-area label {
  color: #9f1318;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 5px 0;
  display: block;
}
.form-area .center-bt {
  text-align: center;
  display: block;
  padding: 0;
}
.form-area .btn-form {
  display: inline-block;
  background: #e31b23;
  font-family: "eurostile", sans-serif;
  color: #fff;
  text-transform: uppercase;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  font-weight: 700;
  padding: 0 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}
.form-area .btn-form:hover {
  background: #fe921b;
}
/****************************************************/
/*** RESPONSIVE ****/
.radio-player-mobile {
  display: none;
}
.d-none-mob {
  display: flex;
}
.d-none-desk {
  display: none;
}
@media (max-width: 1376px) {
  .stk .radio-player {
    width: 100%;
    left: 0;
  }
}
@media (max-width: 1150px) {
  .stk .radio-player .info .datos .cab {
    display: none;
  }
}
@media (max-width: 1023px) {
  .d-none-mob {
    display: none;
  }
  .d-none-desk {
    display: flex;
  }
  .radio-player {
    display: none;
    margin-bottom: 20px;
  }
  .stk .radio-player {
    top: 60px;
    display: flex;
  }
  .stk .radio-player .info {
    display: flex;
    align-items: center;
  }
  .stk .radio-player .info .datos {
    margin: 0;
  }
  .stk .radio-player .info .datos .vivo {
    padding: 3px 10px 3px 10px;
    min-width: 100px;
    font-size: 18px;
  }
  .stk .radio-player .redes {
    display: none;
  }
  /*****/
  .radio-player-mobile {
    display: block;
  }
  .radio-player-mobile .rd {
    display: flex;
    align-items: flex-start;
  }
  .radio-player-mobile .thumb {
    border-radius: 20px 0 20px 0;
    width: 130px;
    min-width: 130px;
    max-width: 130px;
    overflow: hidden;
  }
  .radio-player-mobile .thumb img {
    display: block;
    width: 100%;
  }
  .radio-player-mobile .info {
    display: block;
    width: 100%;
  }
  .radio-player-mobile .info .datos {
    display: flex;
    align-items: center;
  }
  .radio-player-mobile .info .datos .vivo {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    background: #e31b23;
    font-weight: 700;
    font-style: italic;
    line-height: 38px;
    padding: 0 15px 0 10px;
    min-width: 100px;
    border-radius: 0 30px 30px 0;
    position: relative;
    z-index: 3;
    flex: 0 1 auto;
  }
  .radio-player-mobile .info .datos .cab {
    flex: 100 1 auto;
    color: #fff;
    font-size: 16px;
    background: #fe921b;
    line-height: 19px;
    padding: 0 10px 0 35px;
    border-radius: 0 30px 30px 0;
    position: relative;
    z-index: 1;
    margin: 0 0 0 -30px;
    text-align: center;
    height: 38px;
    overflow: hidden;
  }
  .radio-player-mobile .info .datos .cab a {
    color: #fff;
  }
  .radio-player-mobile .prog {
    display: flex;
    align-items: center;
    padding: 10px;
  }
  .radio-player-mobile .prog .bt-play {
    width: 48px;
    min-width: 48px;
    max-width: 48px;
    overflow: hidden;
    cursor: pointer;
  }
  .radio-player-mobile .prog .bt-play img {
    display: block;
    width: 100%;
  }
  .radio-player-mobile .prog .nameprog {
    padding: 0 0 0 10px;
    font-family: "eurostile", sans-serif;
  }
  .radio-player-mobile .prog .nameprog h2 {
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 22px;
    display: block;
  }
  .radio-player-mobile .prog .nameprog p {
    color: #000;
    font-size: 16px;
    font-style: italic;
  }
  .radio-player-mobile .redes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 10px 0;
  }
  .radio-player-mobile .redes .soc {
    margin: 0 0 0 10px;
    font-size: 20px;
    color: #fff;
    background: #e31b23;
    border-radius: 50%;
    padding: 2px 10px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .radio-player-mobile .redes .soc:hover {
    background: #fe921b;
  }
  .radio-player-mobile .redes .soc.what {
    background: #3CC96A;
    width: 60px;
    height: 60px;
    font-size: 40px;
  }
  /*****/
  .slider-uno img {
    width: 100%;
  }
  .shows .grilla-prog,
  .apps p,
  .item-box {
    margin-bottom: 20px;
  }
  .apps {
    margin: 20px 0;
  }
  .contacto .info-contact p span {
    font-size: 24px;
    line-height: 30px;
  }
  .item-box p {
    font-size: 20px;
  }
  .videos {
    padding: 40px 10px 30px 10px;
  }
  .contacto .info-contact {
    margin-bottom: 40px;
  }
  .playlist .subtit {
    font-size: 28px;
  }
  .shows .tit {
    margin-top: 20px;
  }
  /*** form modal ***/
  .overlay-registro.open {
    z-index: 99999;
    opacity: 1;
    transform: translateY(0px);
    overflow-y: scroll;
    padding: 0;
    display: block;
  }
  .overlay-registro .form-area {
    padding: 40px 20px;
  }
  .form-area input {
    margin-bottom: 20px;
  }
}
@media (max-width: 439px) {
  .radio-player-mobile .info .datos .vivo {
    font-size: 21px;
  }
  .radio-player-mobile .info .datos .cab {
    font-size: 14px;
  }
}
