@font-face {
  font-family: "Berlin Sans FB";
  src: url("../assets/fonts/berlin_sans_fb.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../assets/fonts/myriadpro_regular.otf");
  font-weight: 400;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../assets/fonts/myriadpro_bold.otf");
  font-weight: 600;
}
@font-face {
  font-family: "Bell MT";
  src: url("../assets/fonts/BellMT.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Bahnschrift";
  src: url("../assets/fonts/bahnschrift.ttf");
  font-weight: 400;
}
body {
  height: 100vh;
  overflow-x: hidden;
  background: #45a4d8;
  background: -moz-linear-gradient(90deg, #45a4d8 0%, #7656a2 100%);
  background: -webkit-linear-gradient(90deg, #45a4d8 0%, #7656a2 100%);
  background: linear-gradient(90deg, #45a4d8 0%, #7656a2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#45a4d8",endColorstr="#7656a2",GradientType=1);
}

h1, h2, h3, h4, h5, h6, span, p, li, a, div {
  font-family: "Myriad Pro", sans-serif;
  color: #484747;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.my-container {
  width: 100%;
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.nav-links-modal {
  display: block;
  transition-duration: 0.5s;
  text-align: center;
  padding-left: 10px;
  padding-top: 70px;
  top: 0;
  left: 0%;
  background: #45a4d8;
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 1000;
  overflow-x: hidden;
  transform: translateX(-100%);
}

.nav-links-modal-open {
  transform: translateX(0%);
}

.nav-links li {
  padding: 15px 0;
}
.nav-links li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 25px;
  font-weight: bold;
  transition-duration: 0.2s;
}
.nav-links li a:active {
  color: white;
}
.nav-links li a:hover {
  color: white;
}

.my-navbar {
  padding: 0 10px;
  flex-basis: 65px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-hamburge-close {
  background-image: url(../assets/img/close.png) !important;
}

.nav-hamburger {
  position: relative;
  z-index: 1001;
  transition-duration: 0.2s;
  height: 100%;
  flex-basis: 30px;
  color: #fff;
  cursor: pointer;
}
.nav-hamburger:active {
  transform: scale(1.1);
}
.nav-hamburger i {
  position: absolute;
  font-size: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.customer-label {
  font-size: 16px;
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar-logo {
  transition-duration: 0.2s;
}
.navbar-logo:active {
  transform: scale(1.1);
}
.navbar-logo img {
  user-select: none;
  max-width: 65px;
}

.screens {
  flex: 1;
  background: #fff;
  overflow: hidden;
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
  position: relative;
}

.screens-carousel, .screens-carousel > .slick-list, .screens-carousel > .draggable, .slick-list > .slick-track, .draggable > .slick-track, .slick-slide > div, .slick-current > div, .slick-active > div {
  height: 100%;
}

#screens-prev, #screens-next {
  display: block;
  margin-top: 0;
  position: absolute;
  top: 10px;
  text-align: center;
  background: #cecece;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  cursor: pointer;
}
#screens-prev i, #screens-next i {
  color: #848484;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#screens-prev:focus, #screens-prev i:focus, #screens-next:focus, #screens-next i:focus {
  outline: none;
}

#screens-prev:after, #screens-next:after {
  content: "";
  font-size: 0;
}

#screens-prev {
  left: 30px;
}

#screens-next {
  right: 30px;
}

.screens-title {
  display: block;
  padding-top: 10px;
  text-align: center;
  color: #45a4d8;
  font-size: 16px;
}

.now-playing, .channels, .schedules {
  position: relative;
  width: 100%;
  height: 100%;
  transition-duration: 0.5s;
}

.now-playing-container, .channels-container, .schedules-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.now-playing-higher, .channels-higher {
  flex-basis: 60px;
}

.channels-lower {
  flex: 1;
}

.now-playing-lower {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.channels-list {
  height: calc(100%);
  height: -webkit-calc(100%);
}

.now-playing-circle-container {
  flex-basis: 230px;
  width: 100%;
  position: relative;
}

.now-playing-circle {
  height: 230px !important;
  width: 230px !important;
  margin: 0px auto 0 auto;
}

.ldBar.label-center > .ldBar-label {
  color: transparent;
}

.now-playing-img {
  height: 180px;
  width: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 100%;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #45a4d8;
  background-position: center center;
}

.song {
  padding-left: 35px;
}

.song-details {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 200px;
  margin: 0 auto 0 auto;
  position: relative;
  flex-basis: 48px;
}

.song-playing-icon {
  margin-left: -30px;
  cursor: pointer;
  position: relative;
  left: -20px;
  font-size: 25px;
  text-align: right;
}

.icon-thumb {
  color: #7656a2;
}

.icon-star-f {
  color: #ffd209;
}

.icon-star-r {
  color: #cecece;
}

.song-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#song-artist, #song-name #song-title {
  margin-bottom: 0px;
  font-weight: 600;
  color: #343a40;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.song-list-container-show {
  height: calc(100% - 60px);
  height: -webkit-calc(100% - 60px);
  padding-bottom: 50px;
}

.song-list-container-hide {
  height: 90px;
  padding-bottom: 0px;
}

@media screen and (max-height: 520px) {
  .song-list-container {
    display: none;
  }

  .now-playing-container {
    overflow: hidden;
    overflow-y: auto;
  }
}
.song-list-container {
  transition-duration: 0.5s;
  width: 100%;
  bottom: 0;
  transform-origin: top;
  background: #fff;
  position: absolute;
}

.song-list-trigger {
  display: block;
  margin-top: 0px;
  margin-bottom: 0px;
  color: #7656a2;
  font-size: 22px;
  font-family: "Berlin Sans FB";
  cursor: pointer;
}

.song-list {
  width: 100%;
  overflow: hidden;
  overflow-y: auto;
  user-select: none;
  transition-duration: 0.4s;
  padding-top: 20px;
}

.song-list-hide {
  opacity: 0;
  height: calc(0%);
}

.song-list-show {
  opacity: 1;
  height: calc(100% - 32px);
}

.song, .channel {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 20px 10px;
}

.song-info-name {
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.song-info-artist {
  font-size: 16px;
  color: #707070;
  text-transform: capitalize;
  margin-bottom: 0px;
}

.song-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-basis: 60px;
}

.song-rate span {
  cursor: pointer;
  text-align: center;
  border-radius: 100%;
}

.song-rate-pop {
  display: inline-block;
  height: 25px;
  width: 25px;
  line-height: 25px;
  font-size: 18px;
}

.song-rate-star {
  font-size: 25px;
}

.song-rate-pop {
  background: #7656a2;
  background: -moz-linear-gradient(90deg, #7656a2 0%, #5674a2 100%);
  background: -webkit-linear-gradient(90deg, #7656a2 0%, #5674a2 100%);
  background: linear-gradient(90deg, #7656a2 0%, #5674a2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7656a2",endColorstr="#5674a2",GradientType=1);
}

.floating-modal p {
  user-select: none;
  cursor: pointer;
  background: #fff;
  transition-duration: 0.2s;
  padding: 5px 10px;
}
.floating-modal p:hover {
  background: #cecece;
}

.channels-lower {
  position: relative;
}

.channels-list {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  overflow-y: auto;
}

.channel-play {
  height: 40px;
  width: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  border-radius: 100%;
  background: #7656a2;
  background: -moz-linear-gradient(90deg, #7656a2 0%, #5674a2 100%);
  background: -webkit-linear-gradient(90deg, #7656a2 0%, #5674a2 100%);
  background: linear-gradient(90deg, #7656a2 0%, #5674a2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7656a2",endColorstr="#5674a2",GradientType=1);
  margin-right: 20px;
  cursor: pointer;
}

.channel-close {
  color: #7656a2;
}

.channel-open {
  color: red;
}

.channel-collapse i {
  font-size: 30px;
  cursor: pointer;
}

.channel-song-list {
  padding-top: 0;
  padding: 0 5px;
  height: 100%;
  transition-duration: 0.5s;
  overflow: hidden;
}

.channel-song-list-show {
/*  max-height: 2000px; */
}

.channel-song-list-hide {
  max-height: 0px;
}

.channel {
  background: #fff;
  z-index: 1;
  position: relative;
}

.channel-name {
  font-size: 16px;
}

.now-playing-channel {
  font-size: 14px;
}

.upcoming-events {
  padding-top: 0;
  font-weight: bold;
}

.upcoming-events-date {
  padding-top: 0;
  font-size: 15px;
  font-weight: bold;
  font-family: "Bell MT", serif;
  color: #505050;
}

.schedules-higher {
  flex-basis: 80px;
}

.schedules-lower {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.schedules-toggle-container {
  padding: 0 25px;
  margin: 5px 0 10px 0;
  height: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.schedules-toggle-title {
  font-family: "Bell MT", serif;
  font-size: 15px;
}

.schedule-green {
  color: #28a745;
}

.schedules-toggle {
  cursor: pointer;
  position: relative;
  height: 15px;
  width: 40px;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  transition-duration: 0.2s;
}

.schedules-toggle-inactive {
  background: #9b9b9b;
}
.schedules-toggle-inactive .schedules-slide {
  transform: translate(0%, -50%);
  left: 0;
}

.schedules-toggle-active {
  background: #19ff19;
}
.schedules-toggle-active .schedules-slide {
  transform: translate(-50%, -50%);
  left: 100%;
}

.schedules-slide {
  top: 50%;
  transition-duration: 0.2s;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  background: #fff;
  position: absolute;
  left: 0;
}

.schedules-list {
  height: calc(100% - 40px);
  width: 100%;
  position: absolute;
  overflow: hidden;
  overflow-y: auto;
}

.schedule {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  padding: 20px 10px;
}

.schedule-date {
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 15px;
  font-family: "Bell MT", serif;
}

#player {
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.player-container {
  width: 90%;
}

#track-time {
  height: 20px;
  margin-top: 5px;
  overflow: hidden;
}

#current-time {
  font-family: "Bahnschrift", sans-serif;
  float: left;
}

#track-length {
  font-family: "Bahnschrift", sans-serif;
  float: right;
}

#current-time, #track-length {
  color: transparent;
  font-size: 15px;
  background-color: rgba(118, 86, 162, 0.1);
  border-radius: 10px;
  transition: 0.3s ease all;
}

#track-time.active #current-time, #track-time.active #track-length {
  color: #7656a2;
  background-color: transparent;
}

#s-area, #seek-bar {
  position: relative;
  height: 4px;
  border-radius: 4px;
}

#s-area {
  margin-top: 10px;
  background-color: #cecece;
}

#ins-time {
  position: absolute;
  top: -29px;
  color: #fff;
  font-size: 12px;
  white-space: pre;
  padding: 5px 6px;
  border-radius: 4px;
  display: none;
}

#s-hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0.2;
  z-index: 2;
}

#ins-time, #s-hover {
  background-color: #3b3d50;
}

#seek-bar {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: #7656a2;
  transition: 0.2s ease width;
  z-index: 1;
}

#seek-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  border-radius: 3px;
  height: 10px;
  transform: translateY(-50%);
  background-color: #7656a2;
  transition: 0.2s ease width;
  z-index: 1;
}

#player-controls {
  width: 250px;
  margin: auto;
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.player-button {
  height: 40px;
  width: 40px;
  background: #7656a2;
  background: -moz-linear-gradient(90deg, #7656a2 0%, #5674a2 100%);
  background: -webkit-linear-gradient(90deg, #7656a2 0%, #5674a2 100%);
  background: linear-gradient(90deg, #7656a2 0%, #5674a2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7656a2",endColorstr="#5674a2",GradientType=1);
  border-radius: 100%;
  cursor: pointer;
}

.player-volume {
  color: #000;
  cursor: pointer;
}

.player-button-play {
  height: 60px;
  width: 60px;
}

.player-button i {
  display: block;
  color: #000;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
}

.player-button-play i {
  line-height: 60px;
}

.player-button, .player-button i {
  transition: 0.2s ease all;
}

.player-button:hover i {
  color: #fff;
}

@media screen and (min-width: 920px) {
  .screens-title, .now-playing-channel, .channel-name {
    font-size: 18px;
  }

  .schedules-toggle-title, .schedule-date {
    font-size: 17px;
  }
}
@media screen and (min-height: 650px) {
  .now-playing-circle-container {
    flex-basis: 280px;
  }

  .now-playing-circle {
    height: 280px !important;
    width: 280px !important;
  }

  .now-playing-img {
    height: 200px;
    width: 200px;
  }
}
@media screen and (min-height: 700px) {
  .now-playing-circle-container {
    flex-basis: 370px;
  }

  .now-playing-circle {
    height: 370px !important;
    width: 370px !important;
  }

  .now-playing-img {
    height: 280px;
    width: 280px;
  }
}
@media screen and (max-height: 568px) {
  .now-playing-circle-container {
    flex-basis: 200px;
  }

  .now-playing-circle {
    height: 200px !important;
    width: 200px !important;
  }

  .now-playing-img {
    height: 140px;
    width: 140px;
  }
}
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  height: 100% !important;
}

.popupTheme {
  height: 40px;
  width: 200px;
  background: #45a4d8;
  background: -moz-linear-gradient(90deg, #45a4d8 0%, #7656a2 100%);
  background: -webkit-linear-gradient(90deg, #45a4d8 0%, #7656a2 100%);
  background: linear-gradient(90deg, #45a4d8 0%, #7656a2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#45a4d8",endColorstr="#7656a2",GradientType=1);
}

.popupTheme i:hover {
  background: none;
}

.pop-items {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.pop-item {
  transition-duration: 0.2s;
  text-decoration: none !important;
}

.pop-item i {
  color: #fff;
}

.pop-item:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/*# sourceMappingURL=styles.css.map */
