:host {
  display: block;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.player {
  --staytuned-player-scrubber-progress-color: var(--staytuned-main-color, #216fd4);
  --staytuned-player-scrubber-handle-color: var(--staytuned-main-color, #216fd4);
  --staytuned-button-play-spinner-color: var(--staytuned-main-color, #216fd4);
  --staytuned-button-play-circle-color: #ececec;
  --staytuned-player-scrubber-duration-color: #ececec;
  transform: none;
  opacity: 1;
  display: flex;
  flex-direction: column;
  width: 405px;
  height: 90vh;
  max-height: 720px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  position: fixed;
  z-index: 2147483647;
}
.player.collapsed {
  height: 0 !important;
  display: none;
}
:host(.mobile) .player {
  border-radius: 0;
  width: unset;
  height: unset;
  max-height: unset;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
}
.player header {
  position: relative;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  padding: 15px 24px;
  z-index: 10001;
  background: var(--staytuned-main-color, #216fd4);
  filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.08));
}
.player header .header-title {
  text-align: center;
  min-height: 20px;
  max-height: 20px;
}
.player header .header-collapse {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px 17px;
  width: 15px;
  height: 8px;
  cursor: pointer;
}
.player header:hover .header-filter {
  background-color: rgba(0, 0, 0, 0.1);
}
.player .header-filter {
  z-index: -1;
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  transition: 0.7s;
  background-color: rgba(0, 0, 0, 0);
}
.player .header-filter:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.player staytuned-navigation {
  flex: 1;
}
.player .powered-by-label {
  text-align: right;
  padding-right: 20px;
  padding-bottom: 5px;
}
.player .powered-by-label a {
  text-decoration: inherit;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  color: #656769;
}
.player .current-track .background {
  position: relative;
  padding: 20px 20px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), #ffffff), linear-gradient(180deg, var(--staytuned-main-color, #216fd4), var(--staytuned-main-color, #216fd4));
}
.player .current-track .background .rounded {
  border-radius: 100%;
}
.player .current-track .background h1 {
  padding: 0 0 3px 0;
}
.player .current-track .background::after {
  z-index: 0;
  content: "";
  width: 100%;
  height: 6px;
  background: white;
  position: absolute;
  bottom: -3px;
  right: 0;
}
.player .current-track img {
  display: block;
  margin: 0 auto 25px;
  width: 200px;
  height: 200px;
  box-shadow: 0px 1px 4px 2px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
.player .current-track h1 {
  font-weight: 900;
  font-size: 22px;
  line-height: 26px;
  color: #252729;
  margin: 10px 0;
}
.player .current-track .guide-button-link {
  z-index: 1;
  position: relative;
  display: block;
  margin: 20px 25px;
  padding: 14px 20px;
  background: var(--staytuned-main-color, #216fd4);
  border-radius: 6px;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.player .current-track .guide-button-link:hover .guide-button-link-filter {
  background-color: rgba(0, 0, 0, 0.3);
}
.player .current-track .guide-button-link-filter {
  z-index: -1;
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  transition: 0.7s;
  background-color: rgba(0, 0, 0, 0);
}
.player .current-track .guide-button-link-filter:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
.player .current-track .podcast-platform-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 20px;
  position: relative;
  font-weight: 300;
}
.player .current-track .podcast-platform-icons.small .icon {
  width: 40px;
  height: 40px;
}
.player .current-track .podcast-platform-icons .icon {
  width: 48px;
  height: 48px;
  margin-right: 30px;
  transition: transform 0.2s ease;
}
.player .current-track .podcast-platform-icons .icon:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.player .current-track .podcast-platform-icons .copyToolTip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  background: #1a1a1f;
  color: white;
  border-radius: 6px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
  font-size: 14px;
}
.player .current-track .podcast-platform-icons .copyToolTip p {
  margin: 0 20px;
}
.player .current-track .podcast-platform-icons .copyToolTip span {
  color: #42a0f4;
  cursor: pointer;
  margin-left: 5px;
}
.player .current-track .podcast-platform-icons .copyToolTip.display, .player .current-track .podcast-platform-icons .copyToolTip:hover {
  opacity: 1;
  z-index: 1000;
}
.player .current-track .subtitle {
  padding: 0 20px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 20px;
  color: #656769;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}
.player .current-track .description {
  padding: 0 20px;
  margin-top: 20px;
}
.player .current-track .description-text {
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  color: #a3a3a3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}
.player .current-track .description-text p {
  margin: 0 0 10px 0;
}
.player .current-track .description-text p:last-child {
  margin: 0;
}
.player .current-track .description-toggler {
  cursor: pointer;
  margin-top: 3px;
  color: #a3a3a3;
  font-size: 15px;
  line-height: 20px;
}
.player .timeline {
  padding: 0 10px;
}
.player .timeline h2 {
  margin-top: 20px;
  margin-left: 10px;
  margin-bottom: 0;
  font-weight: 200;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #646468;
}
.player staytuned-chapters {
  display: block;
  overflow: hidden;
}
.player .show-all-episodes,
.player .header-back {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 15px;
  line-height: 20px;
  color: var(--staytuned-main-color, #216fd4);
  vertical-align: middle;
}
.player .show-all-episodes path,
.player .header-back path {
  fill: var(--staytuned-main-color, #216fd4) !important;
}
.player .show-all-episodes {
  margin: 30px 0 10px 0;
  padding: 0 20px;
}
.player .show-all-episodes svg {
  margin-left: 10px;
}
.player .header-back {
  padding: 23px 23px 10px;
}
.player .header-back svg {
  margin-right: 10px;
}
.player .all-episodes {
  margin: 23px 0 12px;
  padding: 0 23px;
  font-size: 17px;
  line-height: 20px;
  color: #252729;
}
.player staytuned-player-controls {
  padding-top: 29px;
  padding-bottom: 27px;
  box-shadow: 0px -1px 5px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}
.player .full-screen-logo {
  z-index: 0;
  position: absolute;
  bottom: 30px;
  right: 15px;
  margin-right: 10px;
  margin-bottom: 10px;
  height: 25px;
  text-align: right;
}
.player .full-screen-logo svg .circle {
  transition: 0.4s;
}
.player .full-screen-logo:hover {
  cursor: pointer;
}
.player .full-screen-logo:hover svg .circle {
  fill: black;
}

@keyframes updateNotificationOpacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.notification {
  animation-name: updateNotificationOpacity;
  animation-duration: 0.5s;
  font-weight: 300;
  font-size: 17px;
  line-height: 22px;
  z-index: 1000;
  background: #ffffff;
  transition: 0.5s;
  width: 270px;
  height: 132px;
  border-radius: 10px;
  position: fixed;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
  color: black;
  display: flex;
  align-items: center;
  cursor: pointer;
  opacity: 1;
}
.notification.close {
  opacity: 0;
  z-index: -1;
}
.notification .close-notification-btn {
  transition: 0.5s;
  background: linear-gradient(white, white);
  width: 20px;
  height: 20px;
  border-radius: 100%;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: solid white 1px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
  opacity: 0;
}

.notification-background-filter {
  z-index: -1;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  transition: 0.7s;
  background-color: white;
}

.notification:hover .notification-background-filter {
  transition: 0.7s;
  background-color: var(--staytuned-notification-background-filter);
}
.notification:hover:not(.close) {
  opacity: 1 !important;
}
.notification:hover .close-notification-btn {
  opacity: 1;
}

.notification:hover.closeNotificationBtnHovered .notification-background-filter {
  background-color: white;
}

.close-notification-btn:hover {
  background: linear-gradient(var(--staytuned-notification-background-filter), var(--staytuned-notification-background-filter)), linear-gradient(white, white);
}

@keyframes slidein {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
staytuned-player-chip {
  animation-duration: 250ms;
  animation-name: slidein;
  transition: all 250ms ease;
}
staytuned-player-chip.collapsed {
  opacity: 0;
  transform: translateY(100px);
}