.st-widget > * {
  box-sizing: border-box;
}

.st-widget {
  display: flex;
  justify-content: center;
  background: transparent;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  flex-direction: column;
  overflow: hidden;
  user-select: none;
  cursor: pointer;
  z-index: 1;
  line-height: normal;
  --staytuned-player-scrubber-handle-color: var(--staytuned-widget-main-color);
  --staytuned-player-scrubber-height: 10px;
  --staytuned-external-link-color: white;
  --player-controls-bar-color: var(--staytuned-widget-main-color);
  --staytuned-button-play-circle-color: white;
  --staytuned-play-button-color: var(--staytuned-widget-main-color);
  --staytuned-player-scrubber-progress-color: #ffffff40;
  --staytuned-player-scrubber-duration-color: none;
  --staytuned-button-play-transition-time: 0.4s;
  --staytuned-button-play-scale-play-slot: 0.45;
  --staytuned-button-play-box-shadow: -2px 1px 11px rgba(0, 0, 0, 0.05);
}
.st-widget .widget-container {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.st-widget .widget-container.margin {
  margin: 2em 0;
}
.st-widget .powered {
  font-size: 12px;
  color: #656769c4;
  z-index: 1;
  position: absolute;
  bottom: -35px;
  right: 2px;
}
.st-widget .st-button-play {
  transform: 0.4s;
  position: absolute;
  right: 20px;
}
.st-widget .st-button-play staytuned-widget-button-play {
  width: 70px;
  height: 70px;
}
.st-widget .st-button-play.playing {
  transition: 0.4s;
  opacity: 1;
}
.st-widget .background-image {
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.st-widget .background-filter {
  width: 100%;
  height: 100%;
  transition: 0.4s;
}
.st-widget staytuned-slider {
  z-index: 3;
}
.st-widget .scrubber {
  display: block;
  position: absolute;
  width: 100%;
  bottom: 8px;
  transform: translate(0px, 50%);
}
.st-widget .infos {
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 40px 20px 40px 20px;
  color: white;
}
.st-widget .headline {
  z-index: 1;
  width: 62%;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}
.st-widget .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-right: 40px;
}
.st-widget .subtitle-container {
  width: 62%;
  font-size: 18px;
  display: flex;
  align-items: center;
  flex-direction: row;
  border: none;
  cursor: pointer;
  color: white;
  position: relative;
  margin-right: 10px;
  overflow: hidden;
  font-weight: 300;
}

.widget-container:hover {
  --staytuned-player-scrubber-progress-color: #ffffff80;
  --staytuned-button-play-circle-color: var(--staytuned-widget-main-color);
  --staytuned-play-button-color: white;
  --staytuned-button-play-scale-play-slot: 0.35;
  --staytuned-button-play-box-shadow: -2px 1px 11px rgba(0, 0, 0, 0.25);
}
.widget-container:hover .background-filter {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
.widget-container:hover .st-button-play.playing {
  opacity: 1;
}