@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap");
:root {
  --h1size: 50px;
  --h2size: 35px;
  --h3size: 24px;
  --h4size: 20px;
  --h5size: 18px;
  --h6size: 15px;
  --bodysize: 16px;
  --rweight: 400;
  --mweight: 500;
  --sweight: 600;
  --bweight: 700;
  --eweight: 800;
  --bcweight: 900;
  --pfamily: "Roboto", sans-serif;
  --sfamily: "Oswald", sans-serif;
  --text: #000000;
  --white: #ffffff;
  --border: #e8e8e8;
  --heading: #f4014286;
  --primary: #f4014286;
  --secondary: #f4014286;
  --light-white: #f5f5f5;
  --light-secondary: #f4014286;
  --deep-heading: #f4014286;
  --primary-gdnt: linear-gradient(#f4014286, #f4014286);
  --hover-gdnt: linear-gradient(#f4014286, #f4014286);
  --banner-play: linear-gradient(
   #f4014286,
    #B5113E86
  );
  --banner-oly: linear-gradient(
    to top,
    #f4014286,
    #B5113E86
  );
  --video-icon: linear-gradient(
    #f4014286,
    #B5113E86
  );
  --video-oly: linear-gradient(rgba(91, 68, 114, 0.2), rgba(203, 48, 255, 0.3));
  --team-hover-oly: linear-gradient(
    #f4014286,
    #B5113E86
  );
  --show-oly: linear-gradient(rgba(127, 0, 255, 0.5), rgba(225, 0, 255, 0.5));
  --show-hover-oly: linear-gradient(
    #f4014286,
    #B5113E86
  );
  --blog-oly: linear-gradient(
    to top,
    #f4014286,
    #B5113E86
  );
  --blog-hover-oly: linear-gradient(
    to top,
    #f4014286,
    #B5113E86
  );
  --about-oly: linear-gradient(rgba(91, 68, 114, 0.2), rgba(203, 48, 255, 0.3));
  --counter-oly: linear-gradient(
    #f4014286,
    #B5113E86
  );
}
* {
  margin: 0px;
  padding: 0px;
  outline: 0px;
}
img {
  vertical-align: middle;
}
a {
  text-decoration: none;
  display: inline-block;
}
a:hover {
  text-decoration: none;
}
ul,
ol {
  list-style: none;
  margin-bottom: 0px;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-size: 15px;
  letter-spacing: 0.3px;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-size: 15px;
  letter-spacing: 0.3px;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  font-size: 15px;
  letter-spacing: 0.3px;
}
input::placeholder,
textarea::placeholder {
  font-size: 15px;
  letter-spacing: 0.3px;
}
button:focus {
  outline: none;
}
html,
body {
  scroll-behavior: smooth;
}
body {
  line-height: 28px;
  color: var(--text);
  font-size: var(--bodysize);
  font-weight: var(--rweight);
  font-family: var(--pfamily);
}
p {
  margin-bottom: 0px;
}


h2 {
  font-size: var(--h2size);
  font-weight: var(--bweight);
  text-transform: capitalize;
  letter-spacing: -0.8px;
  line-height: 43px;
}
h3 {
  font-size: var(--h3size);
  font-weight: var(--sweight);
  line-height: 32px;
}
h4 {
  font-size: var(--h4size);
  font-weight: var(--mweight);
  line-height: 30px;
}
h5 {
  color: var(--text);
  font-size: var(--h5size);
  font-weight: var(--mweight);
}
h6 {
  color: var(--light-white);
  font-size: var(--h6size);
  font-weight: var(--rweight);
}
.back2top-btn {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 2;
  display: none;
}
.back2top-btn a i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary-gdnt);
  -webkit-box-shadow: 0px 0px 17px 3px rgba(127, 0, 255, 0.35),
    0px 0px 17px 3px rgba(225, 0, 255, 0.35);
  box-shadow: 0px 0px 17px 3px rgba(127, 0, 255, 0.35),
    0px 0px 17px 3px rgba(225, 0, 255, 0.35);
  -webkit-animation: back2top 2.5s linear infinite;
  animation: back2top 2.5s linear infinite;
}
@-webkit-keyframes back2top {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes back2top {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.navbar-dropdown {
  position: relative;
}
.navbar-dropdown:hover .dropdown-list {
  visibility: visible;
  opacity: 1;
  top: 78px;
}
.navbar-fixed .navbar-dropdown:hover .dropdown-list {
  visibility: visible;
  opacity: 1;
  top: 98px;
}
.dropdown-list {
  position: absolute;
  top: 120px;
  left: 0px;
  z-index: 2;
  width: 240px;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  border-radius: 3px;
  background: var(--white);
  border-top: 2px solid var(--primary);
  -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.dropdown-list li {
  border-bottom: 1px solid var(--border);
}
.dropdown-list li:last-child {
  border-bottom: none;
}
.dropdown-link {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 25px;
  color: var(--text);
  text-transform: capitalize;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.dropdown-link:hover {
  color: var(--white);
  background: var(--primary-gdnt);
}
.dropdown-link.active {
  color: var(--white);
  background: var(--primary-gdnt);
}
@media (max-width: 1270px) {
  .navbar-dropdown {
    position: inherit;
  }
  .dropdown-list {
    position: inherit;
    visibility: visible;
    opacity: 1;
    width: 100%;
    display: none;
  }
}
.player {
  background: url(../../img/player-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 250px;
  height: 250px;
  border-radius: 50%;
}





.playermodal {
  background: url(../../img/player-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid var(--white);
}




.player-btn {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--banner-play);
  -webkit-animation: mahmud 2s linear infinite;
  animation: mahmud 2s linear infinite;
}
.player-btn i {
  font-size: 40px;
  color: var(--white);
  text-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
}
@-webkit-keyframes mahmud {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px #F40244,
      0px 0px 0px 0px #F40244;
    box-shadow: 0px 0px 0px 0px #F40244,
      0px 0px 0px 0px #F40244;
  }
  30% {
    -webkit-box-shadow: 0px 0px 0px 20px rgba(255, 127, 0, 0),
      0px 0px 0px 0px #F40244;
    box-shadow: 0px 0px 0px 20px rgba(255, 127, 0, 0),
      0px 0px 0px 0px #F40244;
  }
  60% {
    -webkit-box-shadow: 0px 0px 0px 20px rgba(255, 127, 0, 0),
      0px 0px 0px 15px rgba(255, 127, 0, 0);
    box-shadow: 0px 0px 0px 20px rgba(255, 127, 0, 0),
      0px 0px 0px 15px rgba(255, 127, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(255, 127, 0, 0),
      0px 0px 0px 15px rgba(255, 127, 0, 0);
    box-shadow: 0px 0px 0px 0px rgba(255, 127, 0, 0),
      0px 0px 0px 15px rgba(255, 127, 0, 0);
  }
}
@keyframes mahmud {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px #F40244,
      0px 0px 0px 0px #F40244;
    box-shadow: 0px 0px 0px 0px #F40244,
      0px 0px 0px 0px #F40244;
  }
  30% {
    -webkit-box-shadow: 0px 0px 0px 20px rgba(255, 127, 0, 0),
      0px 0px 0px 0px #F40244;
    box-shadow: 0px 0px 0px 20px rgba(255, 127, 0, 0),
      0px 0px 0px 0px #F40244;
  }
  60% {
    -webkit-box-shadow: 0px 0px 0px 20px rgba(255, 127, 0, 0),
      0px 0px 0px 15px rgba(255, 127, 0, 0);
    box-shadow: 0px 0px 0px 20px rgba(255, 127, 0, 0),
      0px 0px 0px 15px rgba(255, 127, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(255, 127, 0, 0),
      0px 0px 0px 15px rgba(255, 127, 0, 0);
    box-shadow: 0px 0px 0px 0px rgba(255, 127, 0, 0),
      0px 0px 0px 15px rgba(255, 127, 0, 0);
  }
}
.btn4 {
  border: none;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 35px;
  border-radius: 50px;
  text-transform: uppercase;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 8px 25px 0px rgba(72, 69, 90, 0.1);
  box-shadow: 0px 8px 25px 0px rgba(72, 69, 90, 0.1);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.btn4:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn-inline {
  color: var(--white);
  background: var(--secondary);
  border: 2px solid var(--secondary);
}
.btn-inline:hover {
  color: var(--white);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  background: var(--primary);
  border-color: var(--primary);
  -webkit-box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.1);
}
.btn-outline {
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  color: var(--white);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  background: var(--secondary);
  border-color: var(--secondary);
  -webkit-box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.1);
}
.icon i {
  width: 50px;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.icon-inline i {
  color: var(--white);
  background: var(--primary-gdnt);
}
.icon-inline i:hover {
  color: var(--white);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  background: var(--hover-gdnt);
  -webkit-box-shadow: 0px 5px 15px 0px rgba(72, 69, 90, 0.3);
  box-shadow: 0px 5px 15px 0px rgba(72, 69, 90, 0.3);
}
.section {
  padding: 115px 0px 0px;
}
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}
.section-heading h2 {
  background: var(--primary-gdnt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.section-heading h2::before {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  border-radius: 30px;
  background: var(--primary-gdnt);
}
.section-heading h2::after {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  border-radius: 30px;
  background: var(--primary-gdnt);
}
@media (max-width: 575px) {
  .section {
    padding: 60px 0px 0px;
  }
  .section-heading h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .section {
    padding: 80px 0px 0px;
  }
}
.header-bg {
  background: url(../../img/assets-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 16px 0px 0px;
      background: #da1f4a;
}
.header-logo img {
  width: 70px;
}
.header-content {
  text-align: center;
  margin-top: 18px;
}
.header-content h3 {
  font-size: 28px;
}
.header-btn {
  text-align: right;
  margin-top: 6px;
}
@media (max-width: 991px) {
  .header-part {
    display: none;
  }
}
.navbar-bg {
  background: url(../../img/assets-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background: #0d0c14;
}
.navbar-logo,
.navbar-toggle,
.slide-head {
  display: none;
}
.navbar-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.navbar-link {
  font-weight: 500;
  padding: 25px 0px;
  color: #ffffff;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.navbar-link:hover {
  color: #ffffff;
}
.navbar-link:hover i {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.navbar-link i {
  margin-right: 5px;
  margin-top: -2px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.navbar-link small {
  margin-left: 5px;
  font-size: 10px;
}
.navbar-item.active {
  z-index: 1;
}
.navbar-item.active .navbar-link {
  color: var(--primary);
}
.navbar-item.active .navbar-link i {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.navbar-player {
  position: relative;
  margin: 0px 150px;
}
.navbar-player .player {
  position: absolute;
  top: -100px;
  left: -34px;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.15);
}


.navbar-player .playermodal {
  position: absolute;
  top: -100px;
  left: -34px;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.15);
}

.navbar-fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 3;
  background: var(--white);
  -webkit-box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.15);
}
.navbar-fixed .navbar-link {
  padding: 35px 0px;
}
.navbar-fixed .player {
  top: -50px;
  width: 200px;
  height: 200px;
  margin-bottom: -100px;
}


.navbar-fixed .playermodal {
  top: -50px;
  width: 200px;
  height: 200px;
  margin-bottom: -100px;
}
.navbar-fixed .player .player-btn i {
  font-size: 35px;
}


.navbar-fixed .playermodal .player-btn i {
  font-size: 35px;
}
.navbar-btn {
  display: none;
}
@media (max-width: 991px) {
  .navbar-content {
    padding: 10px 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .navbar-logo {
    display: block;
  }
  .navbar-logo img {
    width: 45px;
  }
  .navbar-toggle {
    border: none;
    display: none;
    background: none;
    display: block;
  }
  .navbar-toggle i {
    color: var(--white);
    font-size: 16px;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background: #da1f4a;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
  }
  .navbar-toggle ii:hover {
    color: var(--white);
    background: var(--secondary);
  }
  .slide-head {
    width: 100%;
    padding: 30px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .slide-head a img {
    width: 55px;
  }
  .slide-head button {
    border: none;
    outline: none;
    background: none;
  }
  .slide-head button i {
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    color: var(--primary);
    background: var(--white);
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
  }
  .slide-head button i:hover {
    color: var(--white);
    background: var(--primary-gdnt);
  }
  .navbar-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: all linear 0.1s;
    transition: all linear 0.1s;
    z-index: 3;
  }
  .navbar-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  .navbar-overlay.active .navbar-slide {
    left: 0px;
  }
  .navbar-slide {
    position: fixed;
    top: 0px;
    left: -270px;
    z-index: 3;
    width: 260px;
    height: 100vh;
    overflow-y: hidden;
    overflow-x: hidden;
       padding: 10px;
    background: #fe0733;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-shadow: 8px 0px 12px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 8px 0px 12px 0px rgba(0, 0, 0, 0.15);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
  }
  .navbar-list {
    width: 100%;
    display: block;
    margin-bottom: 30px;
  }
  .navbar-list li {
  
  }
  .navbar-link {
    width: 100%;
    padding: 12px 0px;
    margin-right: 0px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .navbar-player {
    display: none;
  }
  .navbar-btn {
    display: block;
    text-align: center;
  }
  .navbar-fixed {
    border-radius: 0px 0px 10px 10px;
  }
  .navbar-fixed .navbar-link {
    padding: 12px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-player {
    margin: 0px 120px;
  }
}
.footer-part {
  padding: 80px 0px 80px;
  background: var(--primary-gdnt);
  border-radius: 50% 50% 0px 0px / 30%;
}
.footer-gape {
  margin-top: 120px;
}
.footer-logo {
  text-align: center;
  margin-bottom: 35px;
}
.footer-logo a img {
  width: 220px;
  margin-bottom: 30px;
}
.footer-logo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer-logo ul li {
  margin: 0px 10px;
}
.footer-logo .icon-inline i {
  color: var(--primary);
  background: var(--white);
  font-size: 18px;
}
.news-form {
  width: 650px;
  margin: 0 auto 80px;
  position: relative;
  -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
}
.news-form input {
  border: none;
  outline: none;
  width: 100%;
  height: 60px;
  border-radius: 50px;
  background: var(--white);
  padding: 0px 195px 0px 20px;
}
.news-form .btn {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 50px;
  padding: 12px 35px;
}
.footer-heading h3 {
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 20px;
}
.footer-heading p {
  color: var(--white);
  margin-bottom: 10px;
}
.footer-address li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-bottom: 1px solid var(--light-secondary);
  padding: 25px 0px;
}
.footer-address li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}
.footer-address li i {
  color: var(--white);
  font-size: 25px;
  margin-right: 15px;
}
.footer-address li p {
  color: var(--white);
}
.footer-link li {
  padding: 20px 0px;
  border-bottom: 1px solid var(--light-secondary);
}
.footer-link li:first-child {
  padding-top: 0px;
}
.footer-link li:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}
.footer-link li a {
  color: var(--white);
  text-transform: capitalize;
}
.footer-link li a:hover {
  text-decoration: underline;
}
.footer-link li a i {
  margin-right: 10px;
}
.footer-link ul li a i {
  color: var(--white);
  font-size: 16px;
  margin-right: 10px;
}
.footer-link ul li a:hover {
  text-decoration: underline;
}
.download-part {
  margin-top: 25px;
}
.download-part ul h5 {
  color: var(--white);
  margin-bottom: 5px;
  text-transform: capitalize;
}
.download-part ul li a img {
  width: auto;
  height: 60px;
  margin: 8px 0px;
}
@media (max-width: 767px) {
  .footer-part {
    padding: 60px 0px;
    border-radius: 50% 50% 0px 0px / 5%;
  }
  .footer-gape {
    margin-top: 60px;
  }
  .footer-logo {
    margin-bottom: 50px;
  }
  .footer-logo ul li {
    margin: 0px 8px;
  }
  .footer-logo .icon i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
  }
  .news-form {
    width: 100%;
  }
  .footer-address,
  .footer-link {
    margin-bottom: 50px;
  }
  .footer-heading,
  .footer-address,
  .footer-link,
  .download-part {
    margin-left: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-part {
    border-radius: 50% 50% 0px 0px / 12%;
  }
  .footer-address,
  .footer-link {
    margin-bottom: 50px;
  }
  .download-part ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .download-part ul li {
    margin-right: 25px;
  }
}
.copy-part {
  background: var(--deep-heading);
  padding: 15px 0px;
}
.copy-part ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.copy-part ul li {
  padding: 0px 30px;
  border-right: 1px solid var(--text);
}
.copy-part ul li:last-child {
  border-right: none;
}
.copy-part ul li h6 a {
  color: var(--light-secondary);
}
.copy-part ul li h6 a:hover {
  text-decoration: underline;
}
.copy-part ul li h6 span {
  color: var(--light-secondary);
}
@media (max-width: 575px) {
  .copy-part ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .copy-part ul li {
    border: none;
    padding: 6px 0px;
  }
}
.bottom-player {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 70px;
    background: linear-gradient(
307deg
, #190022d4, #fe0733d9,#2d0528c9);
  background-size: 400% 400%;

  -webkit-animation: AnimationName 10s ease infinite;
  -moz-animation: AnimationName 10s ease infinite;
  animation: AnimationName 10s ease infinite;
  line-height: 1;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(10px);

  -webkit-box-shadow: 0px -5px 15px 0px rgb(0 0 0 / 10%);
  box-shadow: 0px -5px 15px 0px rgb(0 0 0 / 10%);
  z-index: 20;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(3px);
}


.bottom-player2 {
  /* bottom: 0px; */
  left: 0px;
  position: absolute;
  right: 0;
  /* width: 100%; */
  height: 70px;
  /* border-radius: 10px 10px 0px 0px; */
  /* background: var(--white); */
  z-index: 99999999999999999999999999;
  /* -webkit-box-shadow: 0px -5px 15px 0px rgb(0 0 0 / 10%); */
  /* box-shadow: 0px -5px 15px 0px rgb(0 0 0 / 10%); */
   display: none;
}
.bottom-player .player {
  width: 100px;
  height: 100px;
  margin: -50px auto 0px;
  border: 8px solid var(--white);
  -webkit-box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
}



.bottom-player .playermodal {
  width: 100px;
  height: 100px;
  margin: -50px auto 0px;
  border: 8px solid var(--white);
  -webkit-box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
}

.bottom-player2 .player {
  width: 100px;
  height: 100px;
  margin: -50px auto 0px;
  border: 8px solid var(--white);
  -webkit-box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
}


.bottom-player2 .playermodal {
  width: 100px;
  height: 100px;
  margin: -50px auto 0px;
  border: 8px solid var(--white);
  -webkit-box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
}
.bottom-player .player-btn i {
  font-size: 24px;
}

.bottom-player2 .player-btn i {
  font-size: 24px;
}
@media (max-width: 991px) {
  .bottom-player {
    display: block;
  }

  .adiosamigo{

display: none;
  }


  .holaamigo{
    display: block!important;

  }
.amigoto{

  z-index: 99999999999999999999999999!important;
}
  .bottom-player2 {
    display: block;
  }

  .maicoltip{
    margin-bottom: 62px;

  }
}

body.modal-open {
  padding-right: 0px!important;
  overflow-y: hidden;
}
.modal-open .modal {
    overflow-x: hidden!important;
    overflow-y: hidden!important;
    padding-right: 0px!important;
}




















:root {
  --color-white: #fff;
  --color-black: #000;
  --color-red: red;
  --color-brand-red: #c6002b;
  --color-brand-grey: #939697;
  --palette-red-600: #c6002b;
  --palette-red-500: #cd212e;
  --palette-red-400: #e22c3a;
  --palette-red-300: #f4747c;
  --palette-red-200: #f79096;
  --palette-red-100: #f4adb1;
  --palette-orange-600: #fb6825;
  --palette-orange-500: #fc833e;
  --palette-orange-400: #fc9e65;
  --palette-orange-300: #fdb990;
  --palette-orange-200: #fdd5bb;
  --palette-orange-100: #fef1e8;
  --palette-yellow-600: #fcba38;
  --palette-yellow-500: #fdc64c;
  --palette-yellow-400: #fdd36f;
  --palette-yellow-300: #fddf96;
  --palette-yellow-200: #feecbf;
  --palette-yellow-100: #fff8e9;
  --palette-green-600: #46815a;
  --palette-green-500: #62aa7b;
  --palette-green-400: #78d297;
  --palette-green-300: #8bdea7;
  --palette-green-200: #9ce2b4;
  --palette-green-100: #ace7c0;
  --palette-blue-600: #0055b7;
  --palette-blue-500: #509da7;
  --palette-blue-400: #60bac6;
  --palette-blue-300: #68c8d5;
  --palette-blue-200: #84dae5;
  --palette-blue-100: #a3e2eb;
  --palette-purple-600: #793cb7;
  --palette-purple-500: #8d5bcd;
  --palette-purple-400: #a071dc;
  --palette-purple-300: #a586e5;
  --palette-purple-200: #b895f2;
  --palette-purple-100: #c7a3f5;
  --palette-grey-600: #27292d;
  --palette-grey-600-rgb: 39, 41, 45;
  --palette-grey-500: #3f4447;
  --palette-grey-500-rgb: 63, 68, 71;
  --palette-grey-400: #717277;
  --palette-grey-400-rgb: 113, 114, 119;
  --palette-grey-300: #a9afb2;
  --palette-grey-300-rgb: 169, 175, 178;
  --palette-grey-250: #dadfe3;
  --palette-grey-250-rgb: 218, 223, 227;
  --palette-grey-200: #e6eaed;
  --palette-grey-200-rgb: 230, 234, 237;
  --palette-grey-150: #edf1f3;
  --palette-grey-150-rgb: 237, 241, 243;
  --palette-grey-100: #f6f8f9;
  --palette-grey-100-rgb: 246, 248, 249;
  --accent-color: var(--palette-grey-600);
  --station-accent-background: var(--palette-grey-600);
  --station-accent-background-overlay: var(--accent-color);
  --station-accent-foreground: var(--color-white);
  --station-font-family: "Segoe UI", Helvetica, Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --body-bgcolor: var(--palette-grey-100);
  --body-font-family: var(--station-font-family);
  --body-font-size: 1.6rem;
  --body-font-size-2: 1.4rem;
  --body-text-color: var(--palette-grey-600);
  --secondary-text-color: var(--palette-grey-500);
  --caption-text-color: var(--palette-grey-400);
  --default-link-color: var(--palette-grey-600);
  --default-link-hover-color: var(--palette-grey-500);
  --station-link-color: var(--accent-color);
  --station-link-hover-color: var(--default-link-hover-color);
  --content-min-width: 90rem;
  --content-max-width: 128rem;
  --grid-vertical-spacing: 3.2rem;
  --base-grid-gap: 1.6rem;
  --region-row-gap: var(--grid-vertical-spacing);
  --grid-gutter-width: 1.6rem;
  --front-matter-grid-column: 2;
  --two-column-grid-template-columns: var(--grid-gutter-width)
    minmax(28.8rem, 1fr) var(--grid-gutter-width);
  --full-width-grid-template-columns: 1fr;
  --full-width-grid-block-template-columns: var(--grid-gutter-width)
    minmax(28.8rem, 1fr) var(--grid-gutter-width);
  --site-theme-foreground-color: var(--palette-grey-500);
  --site-theme-foreground-hover-color: var(--palette-grey-400);
  --site-theme-background-color: var(--color-white);
  --text-highlight-background: var(--color-black);
  --text-highlight-foreground: var(--color-white);
  --alert-background-color: var(--palette-blue-600);
  --alert-foreground-color: var(--color-white);
  --browser-checker-bg-color: var(--palette-grey-400);
  --browser-checker-text-color: var(--color-black);
  --eyebrow-text-color: var(--palette-grey-600);
  --byline-text-color: var(--palette-grey-600);
  --button-background-color: var(--palette-grey-600);
  --button-background-hover-color: var(--palette-grey-500);
  --button-foreground-color: var(--color-white);
  --button-border-color: var(--palette-grey-500);
  --secondary-button-background-color: transparent;
  --secondary-button-foreground-color: var(--palette-grey-600);
  --secondary-button-border-color: var(--palette-grey-500);
  --secondary-button-hover-background-color: var(--palette-grey-150);
  --secondary-button-hover-foreground-color: var(--palette-grey-600);
  --secondary-button-hover-border-color: var(--palette-grey-500);
  --secondary-button-active-background-color: var(--palette-grey-500);
  --secondary-button-active-foreground-color: var(--color-white);
  --secondary-button-active-border-color: var(--palette-grey-500);
  --block-theme-foreground-color: var(--body-text-color);
  --block-theme-background-color: var(--palette-grey-200);
  --block-theme-background-overlay: transparent;
  --heading-vertical-margin: 2.4rem;
  --card-heading-color: var(--palette-grey-600);
  --card-bg-color: var(--color-white);
  --card-text-primary-color: var(--palette-grey-600);
  --card-text-secondary-color: var(--palette-grey-500);
  --tabs-text-default-color: var(--palette-grey-500);
  --tabs-text-active-color: var(--palette-grey-600);
  --fader-bg-color: var(--palette-grey-200);
  --fader-width: 3.2rem;
  --fader-gradient: linear-gradient(
    90deg,
    rgba(var(--palette-grey-200-rgb), 0) 0%,
    var(--palette-grey-200) 90%
  );
  --viewmore-text-color: var(--palette-grey-600);
  --heading-text-color: var(--body-text-color);
  --container-max-width: 128rem;
  --container-horizontal-margin: 1.6rem;
  --container-block-vertical-margin: 1.6rem;
  --container-width: calc(100vw - var(--container-horizontal-margin) * 2);
  --container-block-width: var(--container-width);
  --navigation-zindex: 999;
  --playerbar-zindex: 9;
  --legalnotice-zindex: 10;
  --modal-zindex: 1000;
  --heading-font-weight: 900;
  --heading-margin-default: 0;
  --heading-1-font-size: 3.2rem;
  --heading-1-line-height: 3.6rem;
  --heading-2-font-size: 2.4rem;
  --heading-2-line-height: 2.8rem;
  --heading-3-font-size: 2.4rem;
  --heading-3-line-height: 2.8rem;
  --heading-4-font-size: 1.8rem;
  --heading-4-line-height: 2.2rem;
  --heading-5-font-size: 1.6rem;
  --heading-5-line-height: 2rem;
  --heading-6-font-size: 1.4rem;
  --heading-6-line-height: 1.6rem;
  --elevation-1: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.15);
  --elevation-4: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.15);
  --elevation-6: 0 0.5rem 0.8rem rgba(0, 0, 0, 0.15);
  --elevation-8: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.15);
  --elevation-up: 0 -0.1rem 0.3rem -0.3rem #000;
  --elevation-down: 0 0.1rem 0.3rem -0.3rem #000;
  --weather-icon-color: var(--color-white);
  --icon-default-width: 2.4rem;
  --icon-default-height: 2.4rem;
  --icon-primary-color: var(--palette-grey-500);
  --icon-secondary-color: var(--color-white);
  --icon-primary-hover-color: var(--palette-grey-400);
  --icon-secondary-hover-color: var(--color-white);
  --search-input-foreground: var(--palette-grey-600);
  --search-input-background: transparent;
  --search-container-background: var(--color-white);
  --search-input-placeholder: var(--palette-grey-400);
}





.alerts:not(:empty), .themed-block {
  max-width: none;
  position: relative;
}

.component-microsite-footer {
  --thumb-width: 50%;
  --thumb-max-width: 10rem;
  --thumb-margin-right: 1.6rem;
  margin: 0;
  padding: 1.6rem 0;
  width: 100%;
}
.component-microsite-footer .divider {
  margin: 0.8rem 0 3.2rem;
}
.component-microsite-footer .mini-bio {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.component-microsite-footer .mini-bio .thumb-container {
  width: var(--thumb-width);
  min-width: 10rem;
  max-width: var(--thumb-max-width);
  height: 100%;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  margin-right: var(--thumb-margin-right);
}
.component-microsite-footer .mini-bio .thumb-container img {
  border-radius: 50%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.component-microsite-footer .mini-bio figcaption {
  display: flex;
  flex-direction: column;
}
.component-microsite-footer .mini-bio figcaption .microsite-description {
  color: var(--palette-grey-500);
}
.component-microsite-footer .mini-bio figcaption .microsite-description a {
  text-decoration: none;
}
.component-microsite-footer
  .mini-bio
  figcaption
  .microsite-description
  a:hover:after {
  text-decoration: underline;
}
.component-microsite-footer
  .mini-bio
  figcaption
  .microsite-description
  .readmore {
  font-weight: 600;
  padding-left: 1ch;
}
@media screen and (min-width: 768px) {
  .component-microsite-footer {
    --thumb-max-width: 19.5rem;
    --thumb-margin-right: 3.2rem;
  }
}
.component-microsite-footer.themed-block {
  display: grid;
  grid-template-columns: var(--full-width-grid-block-template-columns);
}
.component-microsite-footer.themed-block .microsite-footer-content {
  grid-column: 2/-2;
}
.component-live-card {
  --thumb-width: 50%;
  --thumb-max-width: 36rem;
  --title-align: center;
  --title-size: 1.6rem;
  --text-color: var(--secondary-text-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.component-live-card .equalizer {
  order: 1;
}
.component-live-card .equalizer p {
  line-height: var(--heading-6-line-height);
  font-size: var(--heading-6-font-size);
  font-weight: var(--heading-font-weight);
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  color: var(--text-color);
  margin: 0;
}
.component-live-card .equalizer p .icon-equalizer {
  fill: var(--station-link-color);
}
@media screen and (max-width: 767px) {
  .component-live-card .equalizer + .thumb {
    margin-top: 1.6rem;
  }
}
.component-live-card .thumb {
  order: 2;
  width: var(--thumb-width);
  max-width: var(--thumb-max-width);
  height: 100%;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
}
.component-live-card .thumb > a {
  display: block;
  height: 100%;
  width: 100%;
}
.component-live-card .thumb img {
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.component-live-card .thumb .lazyload {
  min-height: 100%;
}
.component-live-card figcaption {
  order: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.component-live-card figcaption .song-rank {
  color: var(--station-link-color);
}
@media screen and (max-width: 767px) {
  .component-live-card figcaption .song-rank {
    display: none;
  }
}
.component-live-card figcaption .livecard-title {
  text-align: var(--title-align);
  margin-top: 1.3rem;
}
.component-live-card figcaption .livecard-title a {
  text-decoration: none;
}
.component-live-card figcaption .content {
  margin-top: 0.8rem;
}
.component-live-card figcaption .live-button {
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .component-live-card figcaption .show-time {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
.component-live-card.type-recent,
.component-live-card.type-topsong {
  margin-bottom: 2.4rem;
}
.component-live-card.type-recent .thumb img,
.component-live-card.type-topsong .thumb img {
  border-radius: 0.6rem;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.15);
}
.component-live-card.type-recent .track-details,
.component-live-card.type-topsong .track-details {
  margin: 0 auto;
  font-weight: 400;
  color: var(--text-color);
}
.component-live-card.type-recent .track-details a,
.component-live-card.type-topsong .track-details a {
  text-decoration: none;
  color: currentColor;
}
.component-live-card.type-microsite {
  --text-color: var(--block-theme-foreground-color);
  --heading-text-color: var(--block-theme-foreground-color);
  --thumb-max-width: 10rem;
}
.component-live-card.type-microsite .livecard-title {
  font-size: var(--heading-1-font-size);
  line-height: var(--heading-1-line-height);
}
@media screen and (min-width: 768px) {
  .component-live-card.type-microsite {
    --thumb-max-width: 19.5rem;
  }
}
.component-live-card.type-topsong.with-rank .thumb {
  position: relative;
}
@media screen and (max-width: 767px) {
  .component-live-card.type-topsong.with-rank .thumb:before {
    content: attr(data-rank);
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 4rem;
    background-color: #000;
    color: #fff;
    border-bottom: 0.1rem solid var(--palette-grey-100);
    border-right: 0.1rem solid var(--palette-grey-100);
    border-radius: 0.6rem 0;
    border-top: 0.1rem solid #000;
    border-left: 0.1rem solid #000;
  }
}
@supports (display: grid) {
  @media screen and (min-width: 768px) {
    .component-live-card.type-topsong figcaption {
      display: grid;
      justify-content: flex-start;
      grid-row-gap: 0.8rem;
    }
  }
}
.component-live-card.type-recent .track-details .album:before,
.component-live-card.type-topsong .track-details .album:before {
  content: "â€¢";
  display: inline-flex;
  padding: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .component-live-card.type-recent .track-details .album {
    display: none;
  }
}
.component-live-card.type-onair .livecard-title,
.component-live-card.type-recent .livecard-title,
.component-live-card.type-topsong .livecard-title {
  font-size: var(--heading-5-font-size);
  line-height: var(--heading-5-line-height);
}
@media screen and (min-width: 768px) {
  .component-live-card.type-onair .livecard-title,
  .component-live-card.type-recent .livecard-title,
  .component-live-card.type-topsong .livecard-title {
    font-size: var(--heading-3-font-size);
    line-height: var(--heading-3-line-height);
  }
}
@media screen and (min-width: 1060px) {
  .component-live-card .thumb {
    min-width: 17rem;
    max-width: 30rem;
  }
}
@supports (display: grid) {
  @media screen and (min-width: 768px) {
    .component-live-card {
      --title-size: 2.4rem;
      --title-align: left;
      --thumb-width: 100%;
      --thumb-max-width: 22.4rem;
      --caption-column: 1;
      --column-gap: 0;
      --template-columns: max-content 1fr;
      --template-rows: repeat(2, auto);
      display: grid;
      grid-template-columns: var(--template-columns);
      grid-template-rows: var(--template-rows);
      grid-column-gap: var(--column-gap);
      align-items: center;
    }
    .component-live-card.with-thumb {
      --caption-column: 2;
      --column-gap: 3.2rem;
    }
    .component-live-card .equalizer,
    .component-live-card .thumb,
    .component-live-card figcaption {
      order: unset;
    }
    .component-live-card .thumb {
      /* grid-column:1; */ /* grid-row:1; */
    }
    .component-live-card .equalizer {
      grid-column: var(--caption-column);
      grid-row: 1;
      margin: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      height: 100%;
    }
    .component-live-card figcaption {
      grid-column: var(--caption-column);
      grid-row: 1;
      margin: 0;
      align-items: flex-start;
      justify-content: center;
    }
    .component-live-card figcaption .livecard-title {
      margin: 0;
    }
    .component-live-card.type-onair,
    .component-live-card.type-recent {
      grid-row-gap: 0.9rem;
      align-items: flex-start;
    }
    .component-live-card.type-onair .thumb,
    .component-live-card.type-recent .thumb {
      grid-row: 1 / span 2;
    }
    .component-live-card.type-onair figcaption,
    .component-live-card.type-recent figcaption {
      grid-row: 2;
    }
    .component-live-card.type-recent,
    .component-live-card.type-topsong {
      --template-columns: minmax(auto, 1fr) 2fr;
      --thumb-max-width: unset;
    }
    .component-live-card.type-recent {
      --template-rows: 1fr 3fr;
    }
  }
}
.component-live-card + .component-divider {
  margin-bottom: 1.6rem;
}
.icon-equalizer {
  fill: var(--station-link-color);
}
.component-social-icons {
  --social-icon-horizontal-gap: 1.4rem;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}
.component-social-icons .icon-container {
  border-radius: 50%;
  width: var(--icon-default-width);
  height: var(--icon-default-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.component-social-icons .icon-container + .icon-container {
  margin-left: 0px;
}
.component-social-icons .icon-container svg .primary-path {
  fill: #000000;
}
.component-social-icons .icon-container svg .secondary-path {
  fill: #000000;
}
.component-social-icons .icon-container a {
  display: inline-flex;
  border: none;
}
.component-social-icons .icon-container a:active svg .primary-path,
.component-social-icons .icon-container a:hover svg .primary-path {
  fill: #000000;
}
.component-well.microsite {
  margin-top: 0;
  padding: 11px 0;
}
@media screen and (min-width: 1060px) {
  .microsite-header figcaption {
    align-items: flex-start;
  }
}
.microsite-header .component-social-icons {
  margin-top: 0px;
  justify-content: center;
}
@media screen and (min-width: 1060px) {
  .microsite-header .component-social-icons {
    justify-content: flex-start;
  }
}
.microsite-header .component-social-icons .icon-facebook .secondary-path {
  fill: transparent;
}
.component-microsite-menu {
  color: var(--block-theme-foreground-color);
  padding-top: 2.4rem;
  margin-bottom: -2.4rem;
  position: relative;
}
.component-microsite-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100vw;
  overflow-y: hidden;
  overflow-x: auto;
}
.component-microsite-menu ul li {
  font-size: 1.6rem;
  line-height: 2rem;
  text-align: center;
  white-space: nowrap;
  padding: 2.4rem 1.2rem;
}
.component-microsite-menu ul li a {
  color: currentColor;
  text-decoration: none;
  line-height: var(--heading-5-line-height);
  font-size: var(--heading-5-font-size);
  font-weight: var(--heading-font-weight);
  margin: var(--heading-margin-default);
}
#component-site-nav {
  box-shadow: var(--elevation-1);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: var(--navigation-zindex);
  background-color: var(--site-theme-background-color);
  width: 28rem;
  height: 100vh;
  overflow-y: auto;
  transform: translateX(-30rem);
  transition: all 0.5s ease;
  padding-bottom: 5rem;
  visibility: hidden;
}
#component-site-nav,
#component-site-nav a,
#component-site-nav button {
  color: var(--site-theme-foreground-color);
}
#component-site-nav a:active,
#component-site-nav a:hover,
#component-site-nav button:active,
#component-site-nav button:hover {
  color: var(--site-theme-foreground-hover-color);
}
#component-site-nav a:active svg .primary-path,
#component-site-nav a:hover svg .primary-path,
#component-site-nav button:active svg .primary-path,
#component-site-nav button:hover svg .primary-path {
  fill: var(--site-theme-foreground-hover-color);
}
@media (hover: none) {
  #component-site-nav {
    padding-bottom: 10rem;
  }
}
.with-playerbar #component-site-nav {
  height: calc(100vh - 6.2rem);
}
#component-site-nav * {
  font-size: 1.6rem;
}
#component-site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#component-site-nav > header {
  height: 7rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-right: 1.6rem;
}
#component-site-nav > header .component-station-logo {
  margin: 0;
}
#component-site-nav .menu-container a {
  text-decoration: none;
}
#component-site-nav .menu-container .submenu-container {
  position: relative;
  height: 0;
  visibility: hidden;
  padding: 0.6rem 2.4rem;
}
#component-site-nav .menu-container .submenu-container li a {
  font-size: var(--body-font-size-2);
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 0.6rem 0;
}
#component-site-nav .menu-container .menu-top-label {
  display: flex;
  flex-direction: column;
  min-height: 5rem;
  width: 100%;
}
#component-site-nav .menu-container .menu-top-label > a,
#component-site-nav .menu-container .menu-top-label > button {
  font-weight: 700;
  line-height: 1.8rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.6rem;
  width: 100%;
  height: 100%;
}
#component-site-nav .menu-container .menu-top-label > button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}
#component-site-nav .menu-container .menu-top-label.open .submenu-container {
  height: auto;
  visibility: visible;
}
#component-site-nav .menu-container.main-nav {
  padding: 1.2rem 0;
}
#component-site-nav .component-social-icons {
  padding: 0 1.6rem;
  height: 2rem;
}
#component-site-nav > footer {
  border-top: 0.1rem solid var(--palette-grey-300);
  margin-top: 3.2rem;
}
#component-site-nav > footer .search-container {
  border-bottom: 0.1rem solid var(--palette-grey-300);
}
#component-site-nav > footer .search-container * {
  font-family: inherit;
  font-size: var(--body-font-size-2);
}
#component-site-nav > footer .user-account {
  margin-top: 1.6rem;
}
#component-site-nav > footer .user-account * {
  font-size: 1.4rem;
}
#component-site-nav > footer .user-account .username {
  font-weight: 500;
}
#component-site-nav.open {
  transform: translateX(0);
  visibility: visible;
}
.theme-night #component-site-nav {
  --icon-primary-color: var(--site-theme-foreground-color);
  --icon-secondary-color: var(--site-theme-background-color);
  --icon-primary-hover-color: var(--site-theme-foreground-hover-color);
}
.theme-night #component-site-nav::-webkit-scrollbar {
  background-color: var(--palette-grey-600);
}
.theme-night #component-site-nav::-webkit-scrollbar-thumb {
  background-color: var(--palette-grey-500);
}
.nav-toggler {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0;
}
.nav-toggler:active,
.nav-toggler:hover {
  --icon-primary-color: var(--icon-primary-hover-color);
}
.component-station-logo {
  padding: 0.4rem 0;
}
.component-station-logo img {
  max-width: 15rem;
  max-height: 5.2rem;
}
#component-site-nav .user-account .user-info .username {
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.user-account {
  padding: 0 1.6rem;
  justify-content: flex-start;
}
.user-account,
.user-account .user-info {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.user-account .user-info {
  margin: 0;
}
.user-account .user-info .thumb img {
  width: 2.4rem;
  height: 2.4rem;
  overflow: hidden;
  border: 0.1rem solid var(--palette-grey-300);
  border-radius: 50%;
}
.user-account .options {
  display: flex;
}
.user-account .options > * {
  font-weight: 400;
  text-decoration: none;
}
.user-account .options > :active,
.user-account .options > :hover {
  text-decoration: underline;
}
.user-account .options .component-button:active,
.user-account .options .component-button:hover {
  opacity: 1;
  text-decoration: underline;
}
#component-site-nav .user-account {
  flex-direction: column;
  align-items: flex-start;
}
#component-site-nav .user-account.authenticated {
  justify-content: space-between;
}
#component-site-nav .user-account.authenticated > * {
  max-width: 100%;
}
#component-site-nav .user-account .user-info .thumb {
  margin-right: 1.6rem;
}
#component-site-nav .user-account .user-info .menu-toggler {
  display: none;
}
#component-site-nav .user-account .user-info .username {
  padding-right: 0.1rem;
}
#component-site-nav .user-account .options {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.6rem;
}
#component-site-nav .user-account .options > :first-child:after {
  content: "|";
  display: inline-block;
  color: var(--palette-grey-300);
  padding-left: 0.5rem;
  margin-right: 0.5rem;
}
.component-readmore {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.component-readmore .read-more-button {
  position: absolute;
  bottom: 5rem;
  width: 100%;
  text-align: center;
  z-index: 20;
  display: flex;
  justify-content: center;
}
.component-readmore.active:after {
  content: " ";
  z-index: 10;
  display: block;
  position: absolute;
  bottom: 0;
  height: 20rem;
  width: 100%;
  clear: both;
  background: linear-gradient(
    180deg,
    rgba(246, 248, 249, 0),
    var(--palette-grey-100)
  );
}
.component-ad-unit {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  overflow-x: hidden;
}
.component-ad-unit,
.component-ad-unit iframe {
  max-width: var(--container-width);
}
.component-ad-unit[data-position="3331"] {
  max-width: 100vw;
  width: 100%;
}
.component-ad-unit[data-position="3331"] iframe {
  max-width: 100vw;
}
@media screen and (hover: hover) {
  .native-share-button {
    display: none;
  }
}
.component-apptray {
  position: -webkit-sticky;
  position: sticky;
  bottom: 13rem;
  height: 0;
  right: 0;
  z-index: var(--playerbar-zindex);
}
.share-icons {
  --icon-primary-color: var(--button-background-color);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.content-header .share-icons {
  margin: 2rem 0 1rem;
}
.share-icons.social-top {
  margin-bottom: 2rem;
}
.share-icons button {
  cursor: pointer;
  margin: 0 0.2rem;
  display: inline-flex;
}
.share-icons button.custom-button {
  border: none;
  border-radius: 100%;
  height: 4rem;
  width: 4rem;
}
.share-icons button.custom-button,
.share-icons button.react-share__ShareButton {
  background-color: var(--icon-primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.share-icons button.custom-button svg circle,
.share-icons button.react-share__ShareButton svg circle {
  fill: var(--icon-primary-color);
}
.share-icons button.custom-button svg path,
.share-icons button.react-share__ShareButton svg path {
  fill: var(--icon-secondary-color);
}
.share-icons button:active,
.share-icons button:hover {
  --icon-primary-color: var(--button-background-hover-color);
}
.component-site-footer {
  background-color: var(--site-theme-background-color);
  color: var(--site-theme-foreground-color);
  padding: 3.2rem 0;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.theme-night .component-site-footer {
  --icon-primary-color: var(--site-theme-foreground-color);
  --icon-secondary-color: var(--site-theme-background-color);
  --icon-primary-hover-color: var(--site-theme-foreground-hover-color);
  --text-highlight-background: hsla(0, 0%, 100%, 0.99);
  --text-highlight-foreground: var(--color-black);
}
@supports (display: grid) {
  .component-site-footer {
    grid-area: footer;
  }
}
.component-site-footer .footer-row {
  width: 100%;
}
.component-site-footer a {
  color: var(--site-theme-foreground-color);
  text-decoration: none;
}
.component-site-footer a:active,
.component-site-footer a:hover {
  text-decoration: underline;
}
.component-site-footer .footer-links {
  font-style: normal;
  font-weight: 500;
  margin-bottom: 1.5rem;
  list-style: none;
}
.component-site-footer .footer-links .footer-national-links,
.component-site-footer .footer-links .footer-station-links {
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 0;
}
.component-site-footer .footer-links .footer-national-links li,
.component-site-footer .footer-links .footer-station-links li {
  padding: 0 2.4rem 1.6rem 0;
  list-style: none;
}
@media screen and (min-width: 1060px) {
  .component-site-footer .footer-links .footer-national-links li,
  .component-site-footer .footer-links .footer-station-links li {
    display: inline-block;
  }
}
.component-site-footer .footer-links .component-social-network-icons {
  margin-top: 2rem;
}
.component-site-footer
  .footer-links
  .component-social-network-icons
  .icon-container {
  width: 2rem;
  height: 2rem;
  border-radius: 10%;
}
.component-site-footer .footer-links .description {
  padding: 3.5rem 0 2.4rem;
  font-weight: 400;
}
.component-site-footer .footer-links .lower-footer-national-links {
  list-style: none;
  padding: 0;
  margin: 2.3rem 0 0;
}
.component-site-footer .footer-links .lower-footer-national-links li {
  font-weight: 400;
  display: inline-flex;
}
.component-site-footer .footer-links .lower-footer-national-links li img {
  height: 1rem;
  width: auto;
  margin-left: 0.2rem;
}
.component-site-footer
  .footer-links
  .lower-footer-national-links
  li:not(:last-child):after {
  content: "|";
  display: inline-block;
  padding-left: 0.5rem;
  margin-right: 0.5rem;
}
.component-site-footer .footer-links .lower-footer-national-links a {
  display: inline-block;
}
.component-site-footer
  .footer-links
  .lower-footer-national-links
  .public-inspection-file {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.component-site-footer
  .footer-links
  .lower-footer-national-links
  .public-inspection-file
  button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-left: 0.5rem;
  display: inline-flex;
  padding: 0;
  width: 1.4rem;
  height: 1.4rem;
}
.component-site-footer
  .footer-links
  .lower-footer-national-links
  .public-inspection-file
  button
  .icon-info {
  width: 100%;
  height: 100%;
}
.component-site-footer .footer-links .site-ownership {
  margin-top: 0.4rem;
  font-weight: 400;
  color: var(--palette-grey-400);
}
.theme-night .component-site-footer .footer-links .site-ownership {
  color: var(--site-theme-foreground-hover-color);
}
.component-asset-placeholder {
  margin: 2rem auto;
}
.component-asset-placeholder,
.component-asset-placeholder .image-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 100%;
}
.component-asset-placeholder img {
  display: inline-block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  border-radius: 0.6rem;
}
.component-image-asset {
  max-width: 100vw;
  width: 100%;
  margin: auto;
}
.component-image-asset .image-counter {
  display: none;
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 700;
  color: var(--palette-grey-500);
  margin-bottom: 0.8rem;
}
.component-image-asset .image-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 100%;
}
.component-image-asset .image-container a {
  border-bottom: none;
}
.component-image-asset .image-container img {
  display: inline-block;
  height: auto;
  width: auto;
  max-width: 100%;
  border-radius: 0.6rem;
}
.component-image-asset .image-credit {
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: 400;
  color: var(--palette-grey-400);
  padding: 0 1.6rem;
  margin: 0.4rem 0 0;
}
.component-image-asset figcaption {
  padding: 0;
  margin-top: 2.4rem;
}
@media screen and (min-width: 1060px) {
  .component-image-asset figcaption {
    padding: 0 3.2rem;
  }
}
.component-image-asset figcaption h4 {
  color: var(--palette-grey-600);
  margin: 0 0 1.6rem;
}
.component-image-asset figcaption p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: var(--palette-grey-500);
}
.component-site-header {
  box-shadow: var(--elevation-down);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 100%;
  min-height: 6.8rem;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  padding: 0 1.6rem;
  background-color: var(--site-theme-background-color);
  color: var(--site-theme-foreground-color);
}
.theme-night .component-site-header {
  --icon-primary-color: var(--site-theme-foreground-color);
  --icon-secondary-color: var(--site-theme-background-color);
  --icon-primary-hover-color: var(--site-theme-foreground-hover-color);
}
.sticky-pushdown .component-site-header {
  top: 8.2rem;
}
@media screen and (min-width: 1060px) {
  .component-site-header {
    padding: 0 3.2rem;
  }
  .sticky-pushdown .component-site-header {
    top: 12.2rem;
  }
}
.below-the-fold.sticky-pushdown .component-site-header {
  top: 0;
}
.component-site-header .main-header-items {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
}
@supports (display: grid) {
  .component-site-header .main-header-items {
    display: grid;
    grid-template-columns: 1fr 15rem 1fr;
    justify-content: center;
    align-items: center;
  }
}
.component-site-header .main-header-items .component-station-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.component-site-header .component-liveplayerbar {
  clear: both;
}
.search-user-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  justify-self: end;
  grid-column: 3;
}
.component-catalog-container {
  max-width: 100vw;
  width: 100%;
}
.component-catalog-container iframe {
  border: 0;
  margin: 0;
  height: 15rem;
  width: 100%;
}
.header-search {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.header-search .search-form {
  background-color: var(--search-container-background);
  margin: 0;
  position: absolute;
  right: 2rem;
  z-index: 10;
  width: 0;
  visibility: hidden;
  transition: all 0.1s ease-in;
}
.header-search .search-form input[type="search"] {
  width: 100%;
  display: none;
}
.header-search .search-form .search-submit {
  display: none;
}
@media screen and (min-width: 1060px) {
  .header-search .search-form {
    position: unset;
  }
  .header-search .search-form .search-container {
    padding: 0;
  }
}
.header-search .search-toggle {
  --search-icon-fill: var(--site-theme-foreground-color);
}
.header-search .search-toggle svg path {
  fill: var(--search-icon-fill);
}
.header-search .search-toggle:active,
.header-search .search-toggle:hover {
  --search-icon-fill: var(--site-theme-foreground-hover-color);
}
.header-search.open .search-form {
  visibility: visible;
  width: calc(100vw - 4.5rem);
}
.header-search.open .search-form input[type="search"] {
  display: initial;
  font-size: var(--body-font-size-2);
}
@media screen and (min-width: 1060px) {
  .header-search.open .search-form input[type="search"] {
    font-size: var(--body-font-size);
  }
}
.header-search.open .search-form .search-submit {
  display: initial;
}
@media screen and (min-width: 1060px) {
  .header-search.open .search-form {
    width: 30rem;
  }
}
.component-content-embed {
  --title-font-size: 1.4rem;
  --title-line-height: 1.8rem;
  --author-font-size: 1.2rem;
  --author-line-heigt: 1.4rem;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  width: 100%;
  max-height: 20.2rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .component-content-embed {
    --title-font-size: 2.4rem;
    --title-line-height: 2.8rem;
  }
}
.component-content-embed > * {
  width: 50%;
}
.component-content-embed .thumb-container {
  overflow: hidden;
  max-width: 36rem;
}
.component-content-embed .thumb-container > a {
  display: block;
  border-bottom: none;
  height: 100%;
}
.component-content-embed .thumb-container img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.component-content-embed figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.component-content-embed figcaption p {
  margin: 1rem 0;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .component-content-embed figcaption p {
    padding-left: 2rem;
  }
}
.component-content-embed figcaption .content-title {
  display: inline-flex;
}
.component-content-embed figcaption .content-title a {
  color: var(--station-link-color);
  font-size: var(--title-font-size);
  line-height: var(--title-line-height);
  font-weight: 700;
  border-bottom: none;
}
.component-content-embed figcaption .content-author {
  display: none;
  font-size: var(--author-font-size);
  line-height: var(--author-line-heigt);
}
.type-iheartcontent .component-content-embed figcaption .content-author {
  display: flex;
  align-items: center;
  color: var(--palette-grey-300);
  height: 4rem;
}
.header-user {
  display: none;
  flex-direction: column;
  margin-left: 1.6rem;
}
.header-user .user-account {
  --menu-right: 2.4rem;
  flex-direction: column;
  display: flex;
  width: auto;
  padding: 0;
  position: relative;
}
.header-user .user-account .user-info {
  position: relative;
}
.header-user .user-account .user-info .username {
  display: none;
}
.header-user .user-account .user-info .thumb button:active,
.header-user .user-account .user-info .thumb button:hover {
  --icon-primary-color: var(--site-theme-foreground-hover-color);
}
.header-user .user-account .options {
  box-shadow: var(--elevation-4);
  border-radius: 0.3rem;
  border: 0.1rem solid var(--palette-grey-200);
  background-color: #fff;
  flex-direction: column;
  overflow: hidden;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  top: 100%;
  right: calc(100% - var(--menu-right));
  min-width: 16rem;
  height: 0;
  padding: 0;
  max-height: 0;
  visibility: hidden;
  transition: max-height 0.2s ease-out, visibility 0.1s linear;
}
.header-user .user-account .options > * {
  line-height: 2.6rem;
  font-size: 1.6rem;
  width: 100%;
}
.header-user .user-account:active .options,
.header-user .user-account:hover .options {
  padding: 1.2rem;
  height: auto;
  visibility: visible;
  max-height: 10rem;
}
.header-user .user-account .menu-toggler {
  display: none;
}
.header-user .user-account.authenticated {
  --menu-right: 4.4rem;
}
.header-user .user-account.authenticated .menu-toggler {
  display: block;
  margin-left: 0.8rem;
}
@media screen and (min-width: 1060px) {
  .header-user {
    display: flex;
  }
}
.component-gallery {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 0;
  max-width: 100vw;
}
.component-gallery li {
  margin: 0 auto;
  width: 100%;
}
.component-gallery li + li {
  margin-top: 3.6rem;
}
.component-gallery .component-image-asset .image-counter {
  display: block;
}
.component-gallery .component-image-asset figcaption {
  padding-bottom: 0;
}
.component-gallery .component-image-asset figcaption :last-child {
  margin-bottom: 0;
}
.ihr-player-bar {
  position: fixed;
  z-index: var(--playerbar-zindex);
  height: 6rem;
  bottom: 0;
  left: 0;
  right: 0;
}
.ihr-player-bar .ihr-player-bar-content {
  display: flex;
  height: 100%;
}
.ihr-player-bar iframe {
  height: 100%;
  width: 100%;
}
.ihr-player-bar #ihr-player-cta {
  background-color: #ba0000;
  color: #fff;
  font: 400 1em sans-serif;
  padding: 1em;
  text-align: center;
  text-transform: uppercase;
}
.ihr-player-bar.ihr-has-cta iframe {
  width: 90%;
}
.ihr-player-bar.ihr-has-cta #ihr-player-cta {
  height: 100%;
  line-height: 2.5em;
  width: 10%;
  white-space: normal;
}
.ihr-player-bar-body-padding {
  height: 5em;
}
.component-embed-html ol ol li {
  list-style-type: lower-alpha;
}
.component-embed-html ol ol ol li {
  list-style-type: lower-roman;
}
.component-embed-html iframe {
  max-width: var(--container-width);
}
.component-embed-html blockquote {
  border-left: 0.8rem solid var(--accent-color);
  padding-left: 1.6rem;
}
@media screen and (min-width: 768px) {
  .component-embed-html > p {
    margin: 1.6rem 0 0;
  }
}
.component-static-player {
  grid-area: player-bar;
  background-color: var(--color-white);
  width: 100%;
  height: 6.2rem;
  bottom: 0;
  position: -webkit-sticky;
  position: sticky;
  box-shadow: 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  align-items: center;
  z-index: var(--playerbar-zindex);
  justify-content: space-between;
  padding: 0 1.2rem;
  display: grid;
  grid-template-columns: 4.4rem auto 4.4rem;
}
@media screen and (min-width: 1060px) {
  .component-static-player {
    padding: 0 2rem;
  }
}
.component-static-player:focus,
.component-static-player:hover {
  box-shadow: 0 -0.3rem 0.6rem rgba(0, 0, 0, 0.1);
}
.component-static-player a {
  text-decoration: none;
}
.component-static-player a:active svg,
.component-static-player a:hover svg {
  opacity: 0.8;
}
.component-static-player .play-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}
.component-static-player .play-icon a {
  display: inline-flex;
}
@media screen and (min-width: 1060px) {
  .component-static-player .play-icon {
    height: 4.7rem;
    width: 4.7rem;
  }
}
.component-static-player .play-icon svg {
  width: 100%;
  height: 100%;
}
.component-static-player .play-icon svg .primary-path {
  fill: var(--button-background-color);
}
.component-static-player .station-info {
  font-size: var(--heading-6-font-size);
  line-height: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: calc(100vw - 12rem);
  padding: 0 0.8rem;
  white-space: nowrap;
}
.component-static-player .station-info > p {
  margin: 0 auto;
}
.component-static-player .station-info .name-positioner {
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
  font-weight: 700;
}
.component-static-player .station-info .name-positioner a:active,
.component-static-player .station-info .name-positioner a:hover {
  color: var(--palette-grey-500);
}
.component-static-player .station-info .listen-now {
  line-height: var(--heading-4-font-size);
  text-overflow: ellipsis;
  overflow: hidden;
}
.component-static-player .station-info .listen-now a {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.component-static-player .station-info .listen-now a:active,
.component-static-player .station-info .listen-now a:hover {
  text-decoration: underline;
}
.component-static-player .station-info .listen-now span {
  padding-left: 0.6rem;
}
.component-static-player .station-info .listen-now .icon-externallink {
  width: 1.4rem;
  height: 1.4rem;
}
.component-static-player .live-indicator {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.component-static-player .live-indicator a {
  display: inline-flex;
}
.layout-detail .content-layout-container .content-block.type-html img {
  display: block;
  max-width: 100%;
  margin: 1rem auto;
  border-radius: 0.6rem;
}
.content-layout-container article {
  color: var(--palette-grey-500);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6rem;
  word-break: break-word;
}
.content-layout-container article .inline-image {
  margin: 0 1rem 1rem 0;
}
.content-layout-container article > * + * {
  margin-top: 2rem;
}
.content-layout-container article a {
  color: currentColor;
  text-decoration: none;
  border-bottom: 0.2rem solid #3f4447;
  border-bottom: 0.2rem solid var(--station-link-color);
  font-weight: 500;
  font-weight: 700;
  font-size: 1.6rem;
}
.content-layout-container article a:active,
.content-layout-container article a:hover {
  border-bottom-color: var(--palette-grey-600);
}
.content-layout-container .content-header + .component-readmore,
.content-layout-container .share-icons + .component-readmore,
.content-layout-container article + .share-icons {
  margin-top: 3.2rem;
}
.content-layout-container .component-divider {
  margin-top: 2.4rem;
}
.layout-detail {
  --eyebrow-text-color: var(--palette-grey-600);
}
.Toastify__toast-body a {
  color: inherit;
}
.component-eyebrow {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2rem;
  color: var(--eyebrow-text-color);
}
.component-eyebrow a {
  text-decoration: none;
  color: currentColor;
}
.component-onair-tile {
  position: relative;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  width: auto;
  justify-self: stretch;
  display: grid;
  grid-template-columns: var(--full-width-grid-block-template-columns);
}
.component-onair-tile .tile-container {
  grid-column: 2;
  width: 100%;
  max-width: 100vw;
  display: grid;
  grid-template-columns: minmax(21rem, 2fr) minmax(21rem, 2fr) 16rem;
  overflow-x: auto;
  padding: 1rem 0;
}
.component-onair-tile .tile-container > * {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.component-onair-tile .tile-container > * + * {
  border-left: 0.1rem solid var(--palette-grey-300);
  padding-left: 1.6rem;
}
.component-onair-tile .tile-container > .full-schedule {
  justify-content: flex-end;
}
.theme-night .component-onair-tile .tile-container::-webkit-scrollbar {
  background-color: var(--block-theme-background-color);
}
.theme-night .component-onair-tile .tile-container::-webkit-scrollbar-thumb {
  background-color: var(--palette-grey-500);
}
.component-onair-tile a {
  color: currentColor;
  text-decoration: none;
  cursor: pointer;
}
.component-onair-tile .thumb-container {
  display: inline-flex;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.component-onair-tile .thumb-container a {
  width: 100%;
  height: 100%;
}
.component-onair-tile .thumb-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.component-onair-tile figcaption {
  color: var(--site-theme-foreground-color);
  font-size: 1.4rem;
  font-weight: 700;
  padding-left: 0.8rem;
}
.component-onair-tile figcaption time {
  padding-left: 0.5rem;
  font-weight: 400;
}
.component-onair-tile figcaption .show-title {
  display: block;
  margin-top: 0.2rem;
}
.component-byline-display {
  display: inline-flex;
  flex-direction: row;
  padding: 0;
}
.component-byline-display .avatar {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.15);
  padding-right: 1rem;
  cursor: pointer;
}
.component-byline-display figcaption {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: var(--byline-text-color);
}
.component-byline-display figcaption .author {
  font-weight: 700;
}
.component-byline-display figcaption .card-date {
  font-size: 1.2rem;
  line-height: 1.6rem;
  opacity: 0.7;
}
.theme-night .component-byline-display figcaption .card-date {
  opacity: unset;
}
.component-title {
  color: var(--heading-text-color);
}
.component-title.component-container.block {
  margin-bottom: 0;
}
.theme-light .component-title {
  --block-theme-background-color: transparent;
}
.content-header.front-matter {
  max-width: none;
  background-color: var(--block-theme-background-color);
  position: relative;
}
.theme-night .content-header.front-matter > * {
  position: relative;
  z-index: 1;
}
.theme-night .content-header.front-matter:before {
  content: "";
  display: inline-flex;
  width: 100%;
  height: 100%;
  background-color: var(--block-theme-background-overlay);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.1;
}
.content-header {
  --vertical-spacing: 2.4rem;
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 1060px) {
  .content-header {
    --vertical-spacing: 3.2rem;
  }
}
.content-header a {
  color: currentColor;
  text-decoration: none;
}
.content-header a:active,
.content-header a:hover {
  text-decoration: underline;
}
.content-header .component-eyebrow {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2rem;
}
.content-header address {
  font-weight: 700;
  font-style: normal;
}
.content-header h1,
.content-header h2,
.content-header h3 {
  /* margin:.8rem 0 0 */
}
.content-header hr {
  margin: 0 0 1.6rem;
  background-color: var(--palette-grey-300);
  border: none;
  height: 0.1rem;
}

hr{

  opacity: 10;
}
.content-header.front-matter {
  --heading-text-color: var(--site-theme-foreground-color);
  --eyebrow-text-color: var(--site-theme-foreground-color);
  --byline-text-color: var(--site-theme-foreground-color);
  color: var(--site-theme-foreground-color);
  padding: var(--vertical-spacing) 0;
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: var(--two-column-grid-template-columns);
}
.theme-light .content-header.front-matter {
  --block-theme-background-color: transparent;
}
.content-header.front-matter > * {
  grid-column: var(--front-matter-grid-column);
}
.content-header.front-matter figure {
  margin: 0;
}
.component-find-station {
  background-color: #fff;
  width: 100%;
  padding: 0.375rem 0;
  box-shadow: 0 0.0625rem 0.25rem 0 rgba(0, 0, 0, 0.12);
  display: none;
}
.component-find-station.show {
  display: flex;
}
.component-find-station .content {
  display: inline-flex;
  flex-direction: column;
  width: calc(100% - 1rem);
  font-size: calc(var(--body-font-size) * 0.9);
  font-weight: 400;
  text-align: center;
  align-items: center;
}
.component-find-station .content span {
  line-height: 1.875rem;
  padding: 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .component-find-station .content {
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
  }
  .component-find-station .content span {
    padding-right: 1rem;
  }
}
.component-find-station .close-button {
  padding: 0.25rem;
  margin-right: 0.3rem;
}
.component-show {
  --item-width: 16.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: var(--item-width);
  margin: 0 auto;
}
.component-show a {
  text-decoration: none;
}
.component-show .thumb-container {
  box-shadow: var(--elevation-1);
  border-radius: 50%;
  overflow: hidden;
  height: var(--item-width);
  width: var(--item-width);
}
.component-show .thumb-container > a {
  display: block;
  height: 100%;
  width: 100%;
}
.component-show .thumb-container img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.component-show figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.2rem 0;
  width: 100%;
}
.component-show figcaption .card-title {
  text-align: center;
}
@media screen and (min-width: 1060px) {
  .component-show {
    --item-width: 17.3rem;
  }
}
.component-show-collection {
  display: flex;
  flex-direction: column;
}
.component-date-display {
  color: var(--palette-grey-400);
  font-size: 1.2rem;
}
.component-content-tile {
  background: var(--card-bg-color);
  color: var(--card-heading-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0.6rem;
}
.component-content-tile .thumb-container {
  overflow: hidden;
  width: 100%;
  height: 0.1rem;
  padding-bottom: 56.5%;
}
.component-content-tile .thumb-container > a {
  display: block;
  height: 100%;
  width: 100%;
}
.component-content-tile .thumb-container img {
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  border-radius: 0.6rem 0.6rem 0 0;
  display: block;
}
.component-content-tile .thumb-container img:hover {
  opacity: 0.8;
}
.component-content-tile figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.6rem;
  width: 100%;
  height: 100%;
}
.component-content-tile figcaption .card-title {
  text-decoration: none;
  color: currentColor;
}
.component-content-tile figcaption .card-title:hover {
  color: var(--palette-grey-400);
}
.component-content-tile figcaption * {
  text-align: left;
}
.component-content-tile figcaption > * + * {
  margin-top: 1rem;
}
.component-content-tile.thumb-left,
.component-content-tile.thumb-right {
  position: relative;
}
@media screen and (min-width: 768px) {
  .component-content-tile.thumb-left,
  .component-content-tile.thumb-right {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .component-content-tile.thumb-left.thumb-right,
  .component-content-tile.thumb-right.thumb-right {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .component-content-tile.thumb-left.external,
  .component-content-tile.thumb-right.external {
    max-height: 28rem;
  }
  .component-content-tile.thumb-left.external .thumb-container,
  .component-content-tile.thumb-right.external .thumb-container {
    align-self: flex-start;
  }
}
@media screen and (min-width: 1060px) {
  .component-content-tile.thumb-left.external,
  .component-content-tile.thumb-right.external {
    max-height: 32rem;
  }
}
.component-content-tile.thumb-left .thumb-container,
.component-content-tile.thumb-right .thumb-container {
  position: relative;
}
@media screen and (min-width: 768px) {
  .component-content-tile.thumb-left .thumb-container,
  .component-content-tile.thumb-right .thumb-container {
    width: 56%;
    padding-bottom: 0;
    height: auto;
    max-height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .component-content-tile.thumb-left .thumb-container img,
  .component-content-tile.thumb-right .thumb-container img {
    border-radius: 0.6rem 0 0 0.6rem;
  }
}
@media screen and (min-width: 768px) {
  .component-content-tile.thumb-left figcaption,
  .component-content-tile.thumb-right figcaption {
    justify-content: center;
    width: 44%;
    height: 100%;
  }
}
@media screen and (min-width: 1060px) {
  .component-content-tile.thumb-left figcaption,
  .component-content-tile.thumb-right figcaption {
    padding: 3.2rem;
  }
}
.component-feed .load-more-ad {
  grid-column: 1/-1;
}
.component-feed.feed-style-xsmall .component-content-tile,
.component-feed.feed-style-xxsmall .component-content-tile {
  background: transparent;
  flex-direction: row;
}
.component-feed.feed-style-xsmall .component-content-tile .thumb-container,
.component-feed.feed-style-xxsmall .component-content-tile .thumb-container {
  padding-bottom: 0;
  height: auto;
  width: 47%;
}
.component-feed.feed-style-xsmall .component-content-tile .thumb-container img,
.component-feed.feed-style-xxsmall
  .component-content-tile
  .thumb-container
  img {
  border-radius: 0.6rem;
}
.component-feed.feed-style-xsmall .component-content-tile figcaption,
.component-feed.feed-style-xxsmall .component-content-tile figcaption {
  justify-content: center;
}
.component-feed.feed-style-xsmall + .feed-style-xsmall,
.component-feed.feed-style-xsmall + .feed-style-xxsmall,
.component-feed.feed-style-xxsmall + .feed-style-xsmall,
.component-feed.feed-style-xxsmall + .feed-style-xxsmall {
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .component-feed.feed-style-xsmall .component-grid {
    grid-column-gap: 3.2rem;
    grid-row-gap: 1.6rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
.component-feed.feed-style-xsmall .component-grid .component-content-tile {
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .component-feed.feed-style-xsmall .component-grid .component-content-tile {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) {
  .component-feed.feed-style-xsmall
    .component-grid
    .component-content-tile
    .thumb-container {
    height: 0.1rem;
    padding-bottom: 56.5%;
    width: 100%;
  }
}
.component-feed.feed-style-xsmall
  .component-grid
  .component-content-tile
  figcaption {
  width: 53%;
  padding: 0 0 0 1.6rem;
}
@media only screen and (min-width: 768px) {
  .component-feed.feed-style-xsmall
    .component-grid
    .component-content-tile
    figcaption {
    justify-content: flex-start;
    width: 100%;
    padding: 1.6rem 0;
  }
}
.component-feed.feed-style-xsmall
  .component-grid
  .component-content-tile
  figcaption
  .card-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .component-feed.feed-style-xsmall
    .component-grid
    .component-content-tile
    figcaption
    .card-title {
    font-weight: 700;
  }
}
.component-feed.feed-style-xxsmall .component-grid {
  grid-gap: 0;
}
@media only screen and (min-width: 1060px) {
  .component-feed.feed-style-xxsmall .component-grid {
    padding-bottom: 2.4rem;
    grid-column-gap: 3.2rem;
    grid-row-gap: 1.6rem;
    grid-template-columns: repeat(5, 1fr);
  }
}
.component-feed.feed-style-xxsmall .component-grid .component-content-tile {
  align-items: flex-start;
}
@media only screen and (min-width: 1060px) {
  .component-feed.feed-style-xxsmall .component-grid .component-content-tile {
    flex-direction: column;
  }
}
.component-feed.feed-style-xxsmall
  .component-grid
  .component-content-tile
  .thumb-container {
  display: none;
}
@media only screen and (min-width: 1060px) {
  .component-feed.feed-style-xxsmall
    .component-grid
    .component-content-tile
    .thumb-container {
    display: block;
    height: 0.1rem;
    padding-bottom: 56.5%;
    width: 100%;
  }
}
@media only screen and (min-width: 1060px) {
  .component-feed.feed-style-xxsmall
    .component-grid
    .component-content-tile
    figcaption {
    justify-content: flex-start;
    padding: 1.6rem 0;
  }
}
.component-feed.feed-style-xxsmall
  .component-grid
  .component-content-tile
  figcaption
  .card-title {
  font-size: 1.6rem;
}
@media only screen and (min-width: 1060px) {
  .component-feed.feed-style-xxsmall
    .component-grid
    .component-content-tile
    figcaption
    .card-title {
    font-weight: 700;
  }
}
.component-feed.feed-style-small .component-grid.col-3 {
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  grid-column-gap: 1.6rem;
}
@media screen and (min-width: 1060px) {
  .component-feed.feed-style-small .component-grid.col-3 {
    grid-template-columns: repeat(3, minmax(27rem, 1fr));
    grid-column-gap: 3.2rem;
  }
}
.component-feed.feed-style-small .component-grid.col-3 .component-content-tile {
  width: 100%;
  max-width: 62.4rem;
  margin: 0 auto;
}
@media screen and (min-width: 1060px) {
  .component-feed.feed-style-small
    .component-grid.col-3
    .component-content-tile {
    max-width: 40.5rem;
  }
}
@media screen and (min-width: 1060px) {
  .component-page.two-column .component-feed.feed-style-small .component-grid {
    grid-template-columns: repeat(2, minmax(24rem, 1fr));
    grid-column-gap: 3.2rem;
  }
}
.component-feed.feed-style-small-scrollable .feed-cards {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  max-width: 100vw;
  padding: 1rem 0;
}
.component-feed.feed-style-small-scrollable .component-grid {
  width: auto;
  grid-template-columns: repeat(auto-fill, minmax(1fr, auto));
  grid-auto-flow: column;
}
.component-feed.feed-style-small-scrollable .component-grid .load-more-ad {
  display: none;
}
.component-feed.feed-style-small-scrollable
  .component-grid
  .component-content-tile {
  min-width: 24rem;
}
@media screen and (min-width: 1060px) {
  .component-feed.feed-style-small-scrollable .component-grid {
    grid-template-columns: repeat(3, minmax(27rem, 1fr));
    grid-column-gap: 3.2rem;
    grid-auto-flow: row;
  }
  .component-feed.feed-style-small-scrollable .component-grid .load-more-ad {
    display: block;
  }
}
@media screen and (min-width: 1060px) {
  .component-feed.feed-style-small-scrollable {
    overflow-x: inherit;
  }
}
.component-feed.feed-style-large,
.component-feed.feed-style-small {
  --base-grid-gap: 2.4rem;
}
.component-feed.feed-style-large .component-grid.col-2 {
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
}
@media screen and (min-width: 768px) {
  .component-feed.feed-style-large .component-grid.col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.component-feed.feed-style-square .component-grid {
  grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr));
  grid-column-gap: 1.7rem;
  grid-row-gap: 2.4rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .component-feed.feed-style-square .component-grid {
    grid-template-columns: repeat(4, minmax(17rem, 1fr));
  }
}
@media screen and (min-width: 1060px) {
  .component-feed.feed-style-square .component-grid {
    grid-gap: 3.2rem;
  }
}
.component-feed.feed-style-square .component-grid .component-content-tile {
  background: transparent;
}
.component-feed.feed-style-square
  .component-grid
  .component-content-tile
  .thumb-container {
  height: auto;
  padding-bottom: 0;
  width: 100%;
  overflow: unset;
}
.component-feed.feed-style-square
  .component-grid
  .component-content-tile
  .thumb-container
  img {
  border-radius: 0.6rem;
}
.component-feed.feed-style-square
  .component-grid
  .component-content-tile
  figcaption {
  padding: 1.2rem 0 0;
}
.component-feed.feed-style-square
  .component-grid
  .component-content-tile
  figcaption
  .card-title {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2rem;
}
.component-feed.podcasts-feed .component-heading {
  margin-top: 1.6rem;
  margin-bottom: 3.2rem;
}
.component-feed.podcasts-feed .component-heading .component-divider {
  display: none;
}
.component-feed.themed-block {
  grid-column: 1/-1;
  margin: 0 auto;
  padding: 3.2rem 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.component-feed.themed-block .feed-cards {
  width: 100%;
}
.component-html img {
  max-width: 100%;
  height: auto;
}
.component-newsletter a {
  color: var(--station-link-color);
  text-decoration: none;
  cursor: pointer;
}
.component-newsletter .link-button {
  text-decoration: none;
}
.component-newsletter .login-as {
  font-size: 1.4rem;
  text-align: right;
  margin-bottom: 1.6rem;
}
.component-newsletter .description {
  text-align: left;
}
.component-newsletter .description > button,
.component-newsletter .login-as > button {
  padding: 0 0.3rem;
  background-color: transparent;
  border: none;
  color: var(--station-link-color);
  cursor: pointer;
  font-size: inherit;
}
.component-newsletter .button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
}
.component-newsletter .button-wrapper button {
  margin-right: 1.5rem;
}
.component-newsletter .button-wrapper button:last-child {
  margin-right: 0;
}
.component-newsletter .user .profile {
  display: flex;
  flex-direction: column;
  background-color: var(--palette-grey-300);
  align-items: stretch;
  justify-content: flex-start;
  margin: 2rem auto 0;
  color: var(--palette-grey-500);
}
.component-newsletter .user .profile .user-image-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.component-newsletter .user .profile .user-image-wrapper .profile-pic {
  background-color: var(--color-white);
  border: 0.1rem solid var(--palette-grey-200);
  border-radius: 50%;
  display: inline-block;
  height: 9rem;
  margin: 1.75rem;
  overflow: hidden;
  width: 9rem;
}
.component-newsletter .user .profile .user-profile-details {
  width: 100%;
  background-color: var(--palette-grey-200);
  padding: 0 1.5rem 1.5rem;
}
.component-newsletter .user .profile .user-profile-details .profile-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}
.component-newsletter .user .profile .user-profile-details .profile-row .data,
.component-newsletter .user .profile .user-profile-details .profile-row .label {
  width: 50%;
}
.component-newsletter .user .profile .user-profile-details .profile-row .label {
  font-weight: 700;
  text-align: right;
  margin-right: 1.75rem;
}
.component-newsletter .user .profile .user-profile-details .profile-row .data {
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 50%;
}
.component-newsletter
  .user
  .profile
  .user-profile-details
  .profile-row
  .data.password {
  font-size: 3rem;
  line-height: 1.6rem;
}
@media screen and (min-width: 1060px) {
  .component-newsletter .user .profile {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
  }
  .component-newsletter .user .profile .user-image-wrapper {
    width: 34%;
  }
  .component-newsletter .user .profile .user-profile-details {
    width: 66%;
  }
}
.component-newsletter .user .options {
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 0.1rem solid var(--palette-grey-300);
  border-bottom: 0.1rem solid var(--palette-grey-300);
}
.component-newsletter .user .options .options-header {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.component-newsletter .user .options .station-lists li {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.component-newsletter .user .options .station-lists li input[type="checkbox"] {
  font-family: inherit;
  font-size: inherit;
  line-height: normal;
  width: 1.4rem;
}
.component-newsletter .user .options .station-lists li label {
  margin-left: 0.5rem;
  width: calc(100% - 1.4rem);
}
#sticky-anchor {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  top: 50rem;
  left: 0;
}



.blog-listing-one-like-bookmark ul li:nth-child(2n) {
  float: right;
}


.fab, .far {
  font-weight: 400;
  color: #fff;
  padding-right: 4px;
}


.component-site-footer {
  background-color: #fff;
  color: #000000;
  padding: 3.2rem 0;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.6rem;
}


.component-site-footer .footer-links {
  font-style: normal;
  font-weight: 500;
  margin-bottom: 1.5rem;
  list-style: none;
}


.component-site-footer .footer-links .footer-national-links, .component-site-footer .footer-links .footer-station-links {
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 0;
  font-size: 15px;
}


#containertext {
  height: 100px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}


.autor .fab{

  color:#000;
}


.lado .fab{

  color:#000;
  font-size: 100px;
}













@keyframes pulse {
  0% {
      transform: scale(1, 1);
  }
  50% {
      opacity: 0.3;
  }
  100% {
      transform: scale(1.45);
      opacity: 0;
  }
}

@import url('https://fonts.googleapis.com/css?family=Roboto');

/* offset-x > | offset-y ^| blur-radius | spread-radius | color */
@mixin shadowBox ($OffsetX, $OffsetY, $blurRadius, $spreadRadius, $colorShadow ){ 
-webkit-box-shadow: $OffsetX $OffsetY $blurRadius $spreadRadius $colorShadow;
-moz-box-shadow: $OffsetX $OffsetY $blurRadius $spreadRadius $colorShadow;
box-shadow: $OffsetX $OffsetY $blurRadius $spreadRadius $colorShadow;
}




@keyframes pulse {
  0% {
      transform: scale(1, 1);
  }
  50% {
      opacity: 0.3;
  }
  100% {
      transform: scale(1.45);
      opacity: 0;
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}


.nav-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  width: auto;
  height: auto;
  position: fixed;
  z-index: 8;
  bottom: 75px;
  right: 0px;
  padding: 5px;
  margin: 0px;
  @media (max-width: 360px) {
      width: 320px;
  }
}

.whatsapp-button {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  z-index: 8;
  transition: .3s;
  margin: 10px;
  padding: 7px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  
  background-color: rgb(255, 255, 255);
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  @include shadowBox( 1px, 1px, 6px, 0px, rgba(68, 68, 68, 0.705));
}

.circle-anime {
  display: flex;
  position: absolute;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  transition: .3s;
  background-color: rgb(119, 187, 74);
  animation: pulse 1.2s 6.0s ease infinite;
}

.popup-whatsapp {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
 


  background: url(img/whass.png);

  background-color: #e5ddd5;
  background-size: 100%;




  bottom: 85px;
  right: 6px;
  transition: .5s;
  border-radius: 10px;

  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  @include shadowBox( 2px, 1px, 6px, 0px, rgba(68, 68, 68, 0.705));
  animation: slideInRight .6s 0.0s both;

}



.contenedor2{
background: url(img/whass.png);
padding: 10px;
background-color: #e5ddd5;
  background-size: 100%;
  border-radius: 6px;

}
.topw {
display: flex;
flex-direction: column;
}
.bottomw {
display: flex;
flex-direction: row;
background: #efefef;
  padding: 11px;
}
.closePopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin: 0px 0px 15px 0px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: rgb(247, 96, 96);
  @include shadowBox( 1px, 1px, 2px, 0px, rgba(68, 68, 68, 0.705));

}





.closePopup:hover {
    background-color: rgb(247, 29, 29);
    transition: .3s;
}



.send-msPopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #efefef;
  margin: 0px 0px 0px 5px;
  border: none;
  outline: none;
  cursor: pointer;
  @include shadowBox( 1px, 1px, 2px, 0px, rgba(68, 68, 68, 0.705));

}




.send-msPopup:hover {
background-color: #f8f8f8;
transition: .3s;
}



.is-active-whatsapp-popup {
  display: flex;
  animation: slideInRight .6s 0.0s both;
}


  .whats-input[type=text] {
      width: 250px;
      height: 40px;
      box-sizing: border-box;
      border: 0px solid #ffffff;
      border-radius: 20px;
      font-size: 1.0em;
      background-color: #ffffff;
      padding: 0px 0px 0px 10px;
      -webkit-transition: width 0.3s ease-in-out;
      transition: width 0.3s ease-in-out;
      outline: none;
      transition: .3s;
      font-family: sans-serif;
     
  }
  .whats-input ::placeholder {
          /* Most modern browsers support this now. */
          color: rgba(68, 68, 68, 0.705);;
          opacity: 1;
      }
      [type=text]:focus {
          background-color: #f8f8f8;
          -webkit-transition: width 0.3s ease-in-out;
          transition: width 0.3s ease-in-out;
          transition: .3s;
      }
  


.icon-whatsapp-small {
  width: 24px;
  height: 24px;
}

.icon-whatsapp {
  width: 30px;
  height: 45px;
  animation: pulse 1.2s 6.0s ease infinite;
}

.icon-font-color{
color: #ffffff
}

.icon-font-color--black{
color: #a5abad
}

























.inline-photo {
  border: 1em solid #fff;
  border-bottom: 4em solid #fff;
  border-radius: .25em;
  box-shadow: 1em 1em 2em .25em rgba(0,0,0,.2);
  margin: 2em auto;
  opacity: 0;
  transform: translateY(4em) rotateZ(-5deg);
  transition: transform 4s .25s cubic-bezier(0,1,.3,1),
              opacity .3s .25s ease-out;
  max-width: 600px;
  width: 90%;
  will-change: transform, opacity;
  margin: 20px;
  
}

.inline-photo.is-visible {
  opacity: 1;
  transform: rotateZ(-2deg);
}

header {
  opacity: 0;
  transition: opacity .5s .25s ease-out;
}

header.is-visible {
  opacity: 1;
}

.main-photo {
  transform: scale(.8);
}

.heading {
  transform: translate(-50%, calc(-50% + 1em));
}

.is-visible .main-photo {
  transform: none;
}

.is-visible .heading {
  transform: translate(-50%, -50%);
}

.main-photo,
.heading {
  transition: transform 4s .25s cubic-bezier(0,1,.3,1),
              filter 10s 2s ease-out;
  will-change: transform;
  
}

.swiper-horizontal {
  
    overflow: hidden;
}

.bg-light{


  background: #fff!important;
}

/* Estilos para contenido de noticias */
.post-content {
  color: #000;
}

.post-content img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
}

/* Sidebar sticky */
#sidebar {
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

/* Etiqueta de categoría en cards */
.post-category.bg-danger {
  background-color: #da1f4a !important;
}

/* Modal Player - Sin backdrop */
#exampleModalPreview {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
#exampleModalPreview .modal-dialog {
  position: fixed;
  bottom: 70px;
  left: 0;
  right: 0;
  top: auto;
  margin: 0;
  max-width: 100%;
  height: calc(65vh - 70px);
}
#exampleModalPreview + .modal-backdrop,
.modal-backdrop {
  display: none !important;
  opacity: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
/* Permitir scroll cuando modal está abierto */
body.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
}
body.modal-open .fixed-bottom {
  padding-right: 0 !important;
}

/* Modal Player - Responsive para móvil */
@media (max-width: 991px) {
  #exampleModalPreview .modal-dialog {
    position: fixed !important;
    bottom: 70px !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    margin: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: calc(100vh - 120px) !important;
    transform: none !important;
  }
  #exampleModalPreview .modal-content {
    border-radius: 20px 20px 0 0 !important;
    max-height: calc(100vh - 120px) !important;
  }
  #exampleModalPreview .modal-body {
    padding: 2rem !important;
    padding-bottom: 75px !important;
  }
  #exampleModalPreview {
    z-index: 1050 !important;
    padding: 0 !important;
  }
  .bottom-player {
    z-index: 1060 !important;
  }
}

/* Programación - Espaciado entre foto y texto */
.programa2 {
  gap: 15px;
}
.programa2 img {
  margin-right: 15px !important;
}
.programa2 div {
  padding-left: 5px;
}

/* ===========================================
   SPA (Single Page Application) Styles
   =========================================== */

/* Indicador de carga durante navegación SPA */
body.spa-loading::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #da1f4a, #f4014a, #da1f4a);
  background-size: 200% 100%;
  animation: spa-loading-bar 1s linear infinite;
  z-index: 99999;
}

@keyframes spa-loading-bar {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Transición suave del contenido */
body.spa-loading main,
body.spa-loading section.about-part.maicoltip {
  opacity: 0.7;
  transition: opacity 0.15s ease-out;
}

/* Restaurar opacidad cuando termina la carga */
body:not(.spa-loading) main,
body:not(.spa-loading) section.about-part.maicoltip {
  opacity: 1;
  transition: opacity 0.15s ease-in;
}

/* Asegurar que elementos fijos no se afecten durante la transición */
.fixed-bottom,
.bottom-player,
.nav-bottom,
.modal,
audio#myVideo {
  opacity: 1 !important;
}