div#starwood_spotify {
  display: flex;
  position: fixed;
  z-index: 100;
  bottom: 120px;
  align-items: center;
  right: 0;
  flex-direction: row;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}

div#starwood_spotify.close {
  right: -360px;
}

div#starwood_spotify .starwood_spotify--button button {
  position: relative;
  color: #282828;
  border-radius: 3px 0 0 3px;
  background: #f2f0e9;
  padding: 20px 30px 20px 60px;
  font-family: Brown, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: .75rem;
  line-height: .875rem;
  text-align: center;
  letter-spacing: .2em;
  width: 200px;
  height: auto;
  border: 0;
  box-sizing: border-box;
  transition: 0.3s ease;

  @media only screen and (max-width: 768px) {
    color: #f2f0e9;
    font-size: 0;
    width: 80px;
    padding: 20px 30px 20px 20px;
  }
}

div#starwood_spotify.mobile.top .starwood_spotify--button button {
  font-size: .75rem;
  color: #282828;
  padding-top: 50px;
  width: 160px;
}

div#starwood_spotify.mobile.top .starwood_spotify--button button:after {
  left: 60px;
}

div#starwood_spotify .starwood_spotify--button button:hover {
  animation: bounce-left 1s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

div#starwood_spotify .starwood_spotify--button button:focus {
  outline: 2px solid #5e9ed6 !important;
  border-radius: 2px;
  outline-offset: 2px;
}

@keyframes bounce-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-10px);
  }
}

div#starwood_spotify .starwood_spotify--button button:after {
  content: ' ';
  background-image: url(/themes/custom/onehotels/assets/img/spotify.png);
  width: 30px;
  height: 30px;
  position: absolute;
  left: 20px;
  top: 12px;
  background-repeat: no-repeat;
}

#starwood_spotify .starwood_spotify--content {
  height: 152px;
}

div#starwood_spotify.open .starwood_spotify--button {
  display: none;
}

div#starwood_spotify ~ .c-ugc-tab {
  display: none;
}

article.restaurant ~ div#starwood_spotify {
  z-index: 110;
}