: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";
}

.desktop-player {
  width: 375px;
  height: 100px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 -1px 10px 0 rgba(0, 0, 0, 0.08);
  position: fixed;
  bottom: 1em;
  z-index: 10000;
  transition: width 300ms ease, height 300ms ease;
}
:host(.animating) .desktop-player {
  overflow: hidden;
}
:host(.expanded) .desktop-player {
  width: 375px;
  height: 472px;
  border-radius: 10px;
}
:host(.collapsed) .desktop-player {
  background: transparent;
  box-shadow: 0 -1px 10px 0 rgba(0, 0, 0, 0);
  width: 79px;
  height: 79px;
}
:host(.collapsed) .desktop-player .small-player {
  background: transparent;
  padding: 0;
}
:host(.collapsed.chip--small) .desktop-player {
  width: 47px;
  height: 47px;
}
.desktop-player .header {
  box-sizing: border-box;
  height: 50px;
  border-radius: 10px 10px 0 0;
  color: white;
  text-transform: uppercase;
  padding: 18px 0 0 15px;
  font-size: 12px;
  font-weight: 700;
  background-color: var(--staytuned-main-color, #216fd4);
  background-image: linear-gradient(94.55deg, rgba(0, 0, 0, 0.2) -9.63%, rgba(0, 0, 0, 0) 115.96%);
  margin-bottom: 2px;
}
.desktop-player staytuned-tabs {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 300ms ease, opacity 300ms ease;
  display: flex;
  flex-direction: column;
}
:host(.expanded) .desktop-player staytuned-tabs {
  height: 348px;
  opacity: 1;
}
.desktop-player staytuned-tabs staytuned-tab {
  padding: 0 16px;
}
:host(.expanded) .desktop-player staytuned-tabs staytuned-tab {
  overflow-y: auto;
  flex: 1;
}
.desktop-player .chip-player {
  position: relative;
  background-color: #fdfdfd;
  padding: 23px 16px 13px;
  border-radius: 10px;
  height: 92px;
  box-shadow: 0px -1px 10px rgba(0, 0, 0, 0.08);
  transition: height 300ms ease, padding 0.3s ease;
}
:host(.collapsed) .desktop-player .chip-player {
  padding: 0;
  width: 79px;
  height: 79px;
}
:host(.collapsed.chip--small) .desktop-player .chip-player {
  width: 47px;
  height: 47px;
}
.desktop-player .chip-player .current-track-infos {
  overflow: hidden;
}
:host(.expanded) .desktop-player .chip-player .current-track-infos {
  max-width: 310px;
}
.desktop-player .chip-player .current-track-actions {
  display: flex;
  margin-left: 8px;
  max-width: 100%;
}
:host(.normal) .desktop-player .chip-player .current-track-actions {
  transition: max-width 300ms ease;
}
:host(.collapsed) .desktop-player .chip-player .current-track-actions {
  max-width: 0;
  margin-left: 0px;
}
.desktop-player .chip-player .current-track-actions * {
  display: block;
  position: relative;
  left: 0;
  opacity: 1;
}
:host(.normal) .desktop-player .chip-player .current-track-actions * {
  transition: left 800ms cubic-bezier(0.17, 0.67, 0.58, 1.27), opacity 800ms ease 100ms;
}
:host(.collapsed) .desktop-player .chip-player .current-track-actions * {
  left: 200px;
  opacity: 0;
}
.desktop-player .chip-player staytuned-button-close {
  position: absolute;
  top: 12px;
  right: 16px;
}
.desktop-player .chip-player .controls {
  width: 343px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  transition: all 500ms cubic-bezier(0.17, 0.67, 0.58, 1.27) 200ms;
  opacity: 1;
  transform: translateY(0);
}
:host(.collapsed) .desktop-player .chip-player .controls {
  opacity: 0;
  transform: translateY(75%);
}
.desktop-player .chip-player .controls staytuned-button-skip {
  width: 15px;
  height: 15px;
}
.desktop-player .chip-player .controls staytuned-button-play {
  margin: 0 10px;
  width: 24px;
  height: 24px;
}
.desktop-player .chip-player .controls .duration {
  font-weight: 500;
  font-size: 11px;
}
.desktop-player .chip-player .controls .duration.current-time {
  margin: 0 6px 0 14px;
}
.desktop-player .chip-player .controls .duration.whole-duration {
  margin: 0 12px 0 6px;
}
.desktop-player .chip-player .controls staytuned-slider {
  flex: 1;
}
.desktop-player .chip-player .controls staytuned-button-mute {
  margin-right: 14px;
}
.desktop-player .chip-player .controls staytuned-menu {
  margin-right: 10px;
}
.desktop-player .main-scrubber {
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -10px;
}