/* Shared soundtrack controls for the SPA area and its two offers. */
.lbpromo26-music-toggle {
  position: fixed;
  z-index: 90;
  right: 26px;
  bottom: 26px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: rgba(17, 24, 22, .76);
  box-shadow: 0 10px 30px rgba(7, 13, 11, .18);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.lbpromo26-music-toggle:hover {
  border-color: rgba(255, 255, 255, .68);
  background: rgba(17, 24, 22, .9);
  transform: translateY(-2px);
}

.lbpromo26-music-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.lbpromo26-music-toggle__waves,
.lbpromo26-music-toggle__off {
  transition: opacity .22s ease;
}

.lbpromo26-music-toggle__waves { opacity: 0; }
.lbpromo26-music-toggle__off { opacity: 1; }
.lbpromo26-music-toggle.is-playing .lbpromo26-music-toggle__waves { opacity: 1; }
.lbpromo26-music-toggle.is-playing .lbpromo26-music-toggle__off { opacity: 0; }

@media (max-width: 720px) {
  .lbpromo26-music-toggle {
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }
}
