.globalPlayer {
  background: #2f2f2f;
  border-top: 1px solid #646462;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
}

.globalPlayer .container {
  display: flex;
  min-height: 75px;
}

.globalPlayer-playerWrap,
.globalPlayer-ctas {
  width: 50%;
}

.globalPlayer-playerWrap {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  min-width: 520px;
  justify-content: flex-start;
}

.globalPlayer-player,
.globalPlayer-track {
  background: #000;
  overflow: hidden;
}

.globalPlayer-track {
  margin-left: 20px;
}

.globalPlayer-player > iframe {
  margin: -59px -10px -112px -27px;
}

.globalPlayer-track > iframe {
  margin: -120px -18px -55px -26px;
}

.globalPlayer-ctas {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.globalPlayer-ctas ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.globalPlayer-ctas li:not(:first-child) {
  margin-left: 10px;
}

.globalPlayer-ctas a {
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
}

.globalPlayer-ctas a:hover {
  opacity: 1;
}

.globalPlayer-ctas img {
  height: 40px;
  width: auto;
}

@media screen and (max-width: 928px) {
  .globalPlayer-playerWrap {
    justify-content: space-between;
    width: 100%;
  }
  .globalPlayer-ctas {
    display: none;
  }
}

@media screen and (max-width: 568px) {
  .globalPlayer .container {
    padding: 0 10px;
  }
  .globalPlayer-playerWrap {
    min-width: 0;
    width: auto;
  }
  .globalPlayer-ctas {
    display: flex;
  }
  body.is-ios .globalPlayer-ctas li.globalPlayer-ctas-android,
  body.is-unknown-os .globalPlayer-ctas li.globalPlayer-ctas-android {
    display: none;
  }
  body.is-android .globalPlayer-ctas li.globalPlayer-ctas-ios {
    display: none;
  }
  .globalPlayer-track {
    display: none;
  }
}
