@charset "UTF-8";
.wvpl-style-light {
  --background: var(--bc);
  --background-shade: var(--bc-s);
  --foreground: var(--fc);
  --foreground-shade: var(--fc-s);
  --highlight: var(--hc);
  --highlight-shade: var(--hc-s);
  --wave: var(--wc);
  --wave-shade: var(--wc-s);
  --progress: var(--pc);
  --progress-shade: var(--pc-s);
  --cursor: var(--cc);
  --cursor-shade: var(--cc-s);
}

.wvpl-style-dark {
  --background: var(--fc);
  --background-shade: var(--fc-s);
  --foreground: var(--bc);
  --foreground-shade: var(--bc-s);
  --highlight: var(--hc-s);
  --highlight-shade: var(--hc);
  --wave: var(--wc);
  --wave-shade: var(--wc-s);
  --progress: var(--pc);
  --progress-shade: var(--pc-s);
  --cursor: var(--cc);
  --cursor-shade: var(--cc-s);
}

.wvpl-style-color-scheme {
  --background: var(--bc);
  --background-shade: var(--bc-s);
  --foreground: var(--fc);
  --foreground-shade: var(--fc-s);
  --highlight: var(--hc);
  --highlight-shade: var(--hc-s);
  --wave: var(--wc);
  --wave-shade: var(--wc-s);
  --progress: var(--pc);
  --progress-shade: var(--pc-s);
  --cursor: var(--cc);
  --cursor-shade: var(--cc-s);
}
@media (prefers-color-scheme: light) {
  .wvpl-style-color-scheme {
    --background: var(--bc);
    --background-shade: var(--bc-s);
    --foreground: var(--fc);
    --foreground-shade: var(--fc-s);
    --highlight: var(--hc);
    --highlight-shade: var(--hc-s);
    --wave: var(--wc);
    --wave-shade: var(--wc-s);
    --progress: var(--pc);
    --progress-shade: var(--pc-s);
    --cursor: var(--cc);
    --cursor-shade: var(--cc-s);
  }
}
@media (prefers-color-scheme: dark) {
  .wvpl-style-color-scheme {
    --background: var(--fc);
    --background-shade: var(--fc-s);
    --foreground: var(--bc);
    --foreground-shade: var(--bc-s);
    --highlight: var(--hc-s);
    --highlight-shade: var(--hc);
    --wave: var(--wc);
    --wave-shade: var(--wc-s);
    --progress: var(--pc);
    --progress-shade: var(--pc-s);
    --cursor: var(--cc);
    --cursor-shade: var(--cc-s);
  }
}

.waveplayer-empty {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.waveplayer-container {
  container: waveplayer-container/inline-size;
  display: inline;
}

.waveplayer {
  --font-scale-xs: .75;
  --font-scale-sm: .875;
  --font-scale-md: 1;
  --font-scale-lg: 1.125;
  --font-scale-xl: 1.25;
  --font-scale: var(--font-scale-xs);
  --font-size: 16px;
  --base-font-size: calc( var(--font-scale) * var(--font-size) );
  --icon-scale: 1;
  --large-icon-scale: 1.6;
  font-size: var(--base-font-size);
  --height: 60px;
  --thumbnail-scale: 1;
  --thumbnail-playlist-scale: .25;
  --thumbnail-size: calc( var(--thumbnail-scale) * var(--height) );
  --thumbnail-playlist-size: calc( var(--thumbnail-playlist-scale) * var(--height) );
  container: waveplayer/inline-size;
}
.waveplayer.wvpl-size-xs {
  --height: 80px;
  --font-scale: var(--font-scale-xs);
}
.waveplayer.wvpl-size-sm {
  --height: 120px;
  --font-scale: var(--font-scale-sm);
}
.waveplayer.wvpl-size-md {
  --height: 160px;
  --font-scale: var(--font-scale-md);
}
.waveplayer.wvpl-size-lg {
  --height: 200px;
  --font-scale: var(--font-scale-lg);
}
.waveplayer::before {
  content: unset;
}
.waveplayer * {
  font-family: var(--default-font-family);
  line-height: normal;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  word-break: keep-all;
  text-rendering: optimizeLegibility;
}
.waveplayer *::before {
  content: unset;
}
.waveplayer .skin-error {
  border: 1px solid #000;
  background-color: rgba(217, 140, 140, 0.5);
  justify-content: center;
  text-align: center;
  padding: 10px;
}
.waveplayer .wvpl-hidden {
  display: none;
}
.waveplayer:not(.active) {
  opacity: 0.4;
}
.waveplayer.active {
  opacity: 1;
  transition: all 150ms ease-in-out;
  height: fit-content;
}
.waveplayer.active.null {
  opacity: 0;
  height: 0;
}
ul.products .waveplayer .waveplayer-no-thumbnail > a > img {
  display: none !important;
}
.waveplayer a.wvpl-link {
  text-decoration: none !important;
}
.waveplayer .wvpl-waveform {
  overflow: hidden;
}
.waveplayer .wvpl-waveform canvas {
  transform: scaleY(1);
  transition: transform 150ms ease-in-out;
}
.loading.waveplayer .wvpl-waveform canvas {
  transform: scaleY(0);
}

.waveplayer .wvpl-separator {
  flex: 1 1 auto;
}
.wvpl-sqsm.waveplayer .wvpl-separator, .wvpl-sqmd.waveplayer .wvpl-separator, .wvpl-sqlg.waveplayer .wvpl-separator, .wvpl-sqxl.waveplayer .wvpl-separator {
  flex: 1 1 auto;
}

@container waveplayer (width < 360px) {
  .waveplayer .wvpl-separator {
    flex: 1 0 100%;
  }
}
.waveplayer .wvpl-volume {
  flex-direction: column;
  justify-content: flex-end;
  cursor: ew-resize;
  padding-bottom: 5px;
  display: flex;
}
@container waveplayer (width < 960px) {
  .waveplayer .wvpl-volume {
    display: none;
  }
}
.waveplayer .wvpl-info {
  padding-top: 5px;
}
.waveplayer.playing .wvpl-icon.wvpl-play::before {
  content: "";
}
.waveplayer.analyzing .wvpl-icon.wvpl-play::before, .waveplayer.loading .wvpl-icon.wvpl-play::before, .waveplayer.seeking .wvpl-icon.wvpl-play::before {
  content: "";
  animation: wvpl-spin 1.5s infinite linear;
}
.waveplayer.loading:not(.active) .wvpl-icon.wvpl-play::before {
  font-size: 2em !important;
}
.waveplayer div.wvpl-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  opacity: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  text-align: center;
  font-weight: 100;
  color: RGB(var(--wave));
  z-index: 5;
  transition: opacity 0.3s ease-in-out 0s, visibility 0s linear 0.3s;
}
.waveplayer.analyzing .wvpl-position, .waveplayer.analyzing .wvpl-duration, .waveplayer.analyzing .wvpl-wave {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out 0s, visibility 0s linear 0s;
}
.waveplayer.analyzing .wvpl-overlay {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out 0s, visibility 0s linear 0s;
}
.waveplayer .wvpl-loading {
  width: 200px;
  height: 2px;
  background-color: RGB(var(--progress));
  position: relative;
  margin: 0 auto;
}
.waveplayer .wvpl-loading > div {
  width: 0;
  height: 2px;
  background-color: RGB(var(--wave-shade));
  position: absolute;
  top: 0;
  left: 0;
}
.waveplayer div .wvpl-overlay > div.percentage {
  font-size: smaller;
  font-weight: 200;
}
.waveplayer div .wvpl-overlay > div.message {
  font-size: smaller;
  font-weight: 200;
}
.waveplayer .wvpl-overlay svg {
  width: 48px;
  height: 40px;
  fill: RGB(var(--foreground));
  margin: 10px auto;
}
@keyframes wvpl-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes pulse {
  0% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.25;
  }
}
@keyframes pulse {
  0% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.25;
  }
}
.waveplayer .wvpl-genres {
  flex: 1 1 100%;
  overflow: hidden;
  order: 10;
  padding-left: 0.5em;
  margin-left: var(--thumbnail-playlist-size);
}
.waveplayer .wvpl-genres a {
  text-transform: lowercase;
  text-decoration: none !important;
  font-size: smaller;
  line-height: 1.8em;
  display: inline-block;
  font-weight: 600;
  color: RGB(var(--foreground));
  padding: 0;
  margin-right: 5px;
  border-radius: 999px;
}
.waveplayer .wvpl-genres a:hover {
  color: RGB(var(--foreground-shade));
}
.waveplayer .wvpl-tax {
  flex: 1 1 100%;
  overflow: hidden;
  order: 10;
}
.waveplayer .wvpl-tax a {
  text-transform: lowercase;
  text-decoration: none !important;
  font-size: smaller;
  line-height: 1.8em;
  display: inline-block;
  font-weight: 600;
  color: RGB(var(--foreground));
  padding: 0;
  margin-right: 5px;
  border-radius: 999px;
}
.waveplayer .wvpl-tax a:hover {
  color: RGB(var(--foreground-shade));
}

ul.products li.waveplayer-product .woocommerce-loop-product__link {
  width: 100%;
}

.waveplayer .wvpl-volume-slider, #wvpl-sticky-player .wvpl-volume-slider {
  grid-area: volume;
  width: 80px;
  height: 40px;
  z-index: 5;
  flex-direction: column;
  justify-content: center;
  position: relative;
  align-self: center;
  display: flex;
}
.waveplayer .wvpl-volume-slider .rail, #wvpl-sticky-player .wvpl-volume-slider .rail {
  background: RGB(var(--highlight-shade));
  height: 4px;
  padding: 0;
  border-radius: 4px;
  width: 100%;
  position: relative;
}
.waveplayer .wvpl-volume-slider .rail .value, #wvpl-sticky-player .wvpl-volume-slider .rail .value {
  background: RGB(var(--foreground));
  height: 4px;
  border-radius: 4px;
}
.waveplayer .wvpl-volume-slider .handle, #wvpl-sticky-player .wvpl-volume-slider .handle {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  left: 100%;
  margin-top: -6px;
  margin-left: -6px;
  border-radius: 12px;
  background: RGB(var(--foreground));
}
.waveplayer .wvpl-volume-slider .touchable, #wvpl-sticky-player .wvpl-volume-slider .touchable {
  width: 100%;
  height: 100%;
  position: absolute;
  cursor: pointer;
}
.waveplayer .wvpl-share, #wvpl-sticky-player .wvpl-share {
  position: relative;
}
.waveplayer .wvpl-share::before, #wvpl-sticky-player .wvpl-share::before {
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  content: "";
}
.waveplayer .wvpl-share:hover .wvpl-share-popup, #wvpl-sticky-player .wvpl-share:hover .wvpl-share-popup {
  opacity: 1;
  visibility: visible;
  right: 110%;
  transition: opacity 150ms 0s ease-in-out, right 150ms 0s ease-in-out, visibility 0s 0s ease-in-out;
}
.waveplayer .wvpl-share .wvpl-share-popup, #wvpl-sticky-player .wvpl-share .wvpl-share-popup {
  opacity: 0;
  visibility: hidden;
  right: 0;
  position: absolute;
  border-radius: 4px;
  background-color: RGB(var(--background));
  color: RGB(var(--foreground));
  padding: 2px;
  margin-top: -2px;
  white-space: nowrap;
  transition: opacity 150ms 0s ease-in-out, right 150ms 0s ease-in-out, visibility 0s 150ms ease-in-out;
}
.waveplayer .wvpl-share .wvpl-share-popup ul, #wvpl-sticky-player .wvpl-share .wvpl-share-popup ul {
  padding: 0 2px;
  margin: 0;
  list-style: none;
}
.waveplayer .wvpl-share .wvpl-share-popup ul li, #wvpl-sticky-player .wvpl-share .wvpl-share-popup ul li {
  text-align: center;
  display: inline-block !important;
  border: none !important;
  margin: 0 2px;
}
.waveplayer .wvpl-share .wvpl-share-popup ul li::before, #wvpl-sticky-player .wvpl-share .wvpl-share-popup ul li::before {
  padding: 0;
  margin: 0;
}
.waveplayer .wvpl-share .wvpl-share-popup ul li.wvpl-icon, #wvpl-sticky-player .wvpl-share .wvpl-share-popup ul li.wvpl-icon {
  padding: 0;
}
.waveplayer .wvpl-share .wvpl-share-popup ul li.wvpl-share_fb:hover, #wvpl-sticky-player .wvpl-share .wvpl-share-popup ul li.wvpl-share_fb:hover {
  color: #3b5998;
}
.waveplayer .wvpl-share .wvpl-share-popup ul li.wvpl-share_fb::before, #wvpl-sticky-player .wvpl-share .wvpl-share-popup ul li.wvpl-share_fb::before {
  font-family: "Font Awesome 5 Brands";
  font-weight: normal;
  content: "";
}
.waveplayer .wvpl-share .wvpl-share-popup ul li:hover, #wvpl-sticky-player .wvpl-share .wvpl-share-popup ul li:hover {
  background: none !important;
}
.waveplayer .wvpl-share .wvpl-share-popup ul li.wvpl-share_gp:hover, #wvpl-sticky-player .wvpl-share .wvpl-share-popup ul li.wvpl-share_gp:hover {
  color: #d34836;
}
.waveplayer .wvpl-share .wvpl-share-popup ul li.wvpl-share_gp::before, #wvpl-sticky-player .wvpl-share .wvpl-share-popup ul li.wvpl-share_gp::before {
  font-family: "Font Awesome 5 Brands";
  font-weight: normal;
  content: "";
}
.waveplayer .wvpl-share .wvpl-share-popup ul li.wvpl-share_tw:hover, #wvpl-sticky-player .wvpl-share .wvpl-share-popup ul li.wvpl-share_tw:hover {
  color: #00aced;
}
.waveplayer .wvpl-share .wvpl-share-popup ul li.wvpl-share_tw::before, #wvpl-sticky-player .wvpl-share .wvpl-share-popup ul li.wvpl-share_tw::before {
  font-family: "Font Awesome 5 Brands";
  font-weight: normal;
  content: "";
}
.waveplayer .wvpl-share .wvpl-share-popup ul li.wvpl-share_ln:hover, #wvpl-sticky-player .wvpl-share .wvpl-share-popup ul li.wvpl-share_ln:hover {
  color: #007bb5;
}
.waveplayer .wvpl-share .wvpl-share-popup ul li.wvpl-share_ln::before, #wvpl-sticky-player .wvpl-share .wvpl-share-popup ul li.wvpl-share_ln::before {
  font-family: "Font Awesome 5 Brands";
  font-weight: normal;
  content: "";
}
.waveplayer .wvpl-icon, #wvpl-sticky-player .wvpl-icon {
  flex: 0 0 1em;
  align-self: center;
  cursor: pointer;
}
.waveplayer .wvpl-icon::before, #wvpl-sticky-player .wvpl-icon::before {
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  font-size: calc( var(--icon-scale) * var(--base-font-size) );
  display: inline-block;
  text-align: center;
  transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
}
.waveplayer .wvpl-icon.wvpl-disabled, #wvpl-sticky-player .wvpl-icon.wvpl-disabled {
  opacity: 0.2;
  cursor: default;
}
.waveplayer .wvpl-icon.wvpl-play::before, #wvpl-sticky-player .wvpl-icon.wvpl-play::before {
  --icon-scale: var(--large-icon-scale);
}
.waveplayer .wvpl-stats, #wvpl-sticky-player .wvpl-stats {
  display: flex;
  align-items: center;
}
.waveplayer .wvpl-stats .wvpl-value, #wvpl-sticky-player .wvpl-stats .wvpl-value {
  font-size: smaller;
  margin-top: -1em;
  margin-left: 0.25em;
  font-size: smaller;
  font-weight: normal;
  vertical-align: 1px;
  display: none;
}
.waveplayer .wvpl-stats.wvpl-length_formatted .wvpl-value, #wvpl-sticky-player .wvpl-stats.wvpl-length_formatted .wvpl-value {
  font-size: inherit;
  margin-top: unset;
}
.waveplayer .wvpl-stats:hover, #wvpl-sticky-player .wvpl-stats:hover {
  /* transform:scale(1.25); */
}
.waveplayer .wvpl-stats:not(.wvpl-button), #wvpl-sticky-player .wvpl-stats:not(.wvpl-button) {
  display: flex;
}
@container waveplayer (width < 360px) {
  .waveplayer .wvpl-stats:not(.wvpl-button), #wvpl-sticky-player .wvpl-stats:not(.wvpl-button) {
    display: none;
  }
}
.waveplayer .wvpl-icon.wvpl-likes.disabled, #wvpl-sticky-player .wvpl-icon.wvpl-likes.disabled {
  cursor: default;
}
.waveplayer .wvpl-button, #wvpl-sticky-player .wvpl-button {
  cursor: pointer;
}
.waveplayer .wvpl-icon.wvpl-button::before, #wvpl-sticky-player .wvpl-icon.wvpl-button::before {
  transform: scale(1);
}
.waveplayer .wvpl-icon.wvpl-button:hover::before, #wvpl-sticky-player .wvpl-icon.wvpl-button:hover::before {
  opacity: 1;
  transform: scale(1.25);
}
.waveplayer .wvpl-icon.wvpl-play::before, #wvpl-sticky-player .wvpl-icon.wvpl-play::before {
  content: "";
}
.waveplayer .wvpl-icon.wvpl-prev::before, #wvpl-sticky-player .wvpl-icon.wvpl-prev::before {
  content: "";
}
.waveplayer .wvpl-icon.wvpl-next::before, #wvpl-sticky-player .wvpl-icon.wvpl-next::before {
  content: "";
}
.waveplayer .wvpl-icon.wvpl-volume_up::before, #wvpl-sticky-player .wvpl-icon.wvpl-volume_up::before {
  content: "";
}
.waveplayer .wvpl-icon.wvpl-volume_down::before, #wvpl-sticky-player .wvpl-icon.wvpl-volume_down::before {
  content: "";
}
.waveplayer .wvpl-icon.wvpl-volume_off::before, #wvpl-sticky-player .wvpl-icon.wvpl-volume_off::before {
  content: "";
  margin-right: 8px;
}
.waveplayer .wvpl-icon.wvpl-info-info::before, #wvpl-sticky-player .wvpl-icon.wvpl-info-info::before {
  content: "";
}
.waveplayer .wvpl-icon.wvpl-info-none::before, #wvpl-sticky-player .wvpl-icon.wvpl-info-none::before {
  content: "";
}
.waveplayer .wvpl-icon.wvpl-info-playlist::before, #wvpl-sticky-player .wvpl-icon.wvpl-info-playlist::before {
  content: "";
}
.waveplayer .wvpl-icon.wvpl-play_count::before, #wvpl-sticky-player .wvpl-icon.wvpl-play_count::before {
  content: "";
}
.waveplayer .wvpl-icon.wvpl-in_cart::before, #wvpl-sticky-player .wvpl-icon.wvpl-in_cart::before {
  content: "";
}
.waveplayer .wvpl-icon.wvpl-add_to_cart::before, #wvpl-sticky-player .wvpl-icon.wvpl-add_to_cart::before {
  content: "";
}
.waveplayer .wvpl-icon.wvpl-runtime::before, #wvpl-sticky-player .wvpl-icon.wvpl-runtime::before {
  content: "";
}
.waveplayer .wvpl-icon.wvpl-likes::before, #wvpl-sticky-player .wvpl-icon.wvpl-likes::before {
  content: "";
}
.waveplayer .wvpl-icon.wvpl-downloads::before, #wvpl-sticky-player .wvpl-icon.wvpl-downloads::before {
  content: "";
}
.waveplayer .wvpl-icon.wvpl-play_count::before, #wvpl-sticky-player .wvpl-icon.wvpl-play_count::before {
  content: "";
}
.waveplayer .wvpl-icon.wvpl-product::before, #wvpl-sticky-player .wvpl-icon.wvpl-product::before {
  content: "";
}
.waveplayer .wvpl-icon.wvpl-soundcloud::before, #wvpl-sticky-player .wvpl-icon.wvpl-soundcloud::before {
  content: "";
  font-family: "Font Awesome 5 Brands", FontAwesome;
  font-weight: normal;
  color: #f70;
}
.waveplayer .wvpl-icon.wvpl-spin::before, #wvpl-sticky-player .wvpl-icon.wvpl-spin::before {
  content: "";
  animation: wvpl-spin 1.5s infinite linear;
}
.waveplayer .wvpl-icon.wvpl-likes:hover::before, #wvpl-sticky-player .wvpl-icon.wvpl-likes:hover::before {
  color: #800;
}
.waveplayer .wvpl-icon.wvpl-likes.liked::before, #wvpl-sticky-player .wvpl-icon.wvpl-likes.liked::before {
  color: #e00;
}
.waveplayer .wvpl-icon.wvpl-likes.liked:hover::before, #wvpl-sticky-player .wvpl-icon.wvpl-likes.liked:hover::before {
  color: #e00;
}
.waveplayer .wvpl-icon.wvpl-downloads:hover::before, #wvpl-sticky-player .wvpl-icon.wvpl-downloads:hover::before {
  color: #07b;
}
.waveplayer .wvpl-icon.wvpl-product:hover::before, #wvpl-sticky-player .wvpl-icon.wvpl-product:hover::before {
  color: #96588a;
}
.waveplayer .wvpl-icon.wvpl-add_to_cart:hover::before, #wvpl-sticky-player .wvpl-icon.wvpl-add_to_cart:hover::before {
  color: #074;
}
.waveplayer .wvpl-icon.wvpl-in_cart::before, #wvpl-sticky-player .wvpl-icon.wvpl-in_cart::before {
  color: #0b7;
}
.waveplayer .wvpl-icon.wvpl-in_cart:hover::before, #wvpl-sticky-player .wvpl-icon.wvpl-in_cart:hover::before {
  color: #0b7;
}
.waveplayer .wvpl-icon.wvpl-soundcloud:hover::before, #wvpl-sticky-player .wvpl-icon.wvpl-soundcloud:hover::before {
  color: #f70;
}
.waveplayer .wvpl-icon.wvpl-likes.liked.disabled:hover,
.waveplayer .wvpl-icon.wvpl-likes.disabled:hover, #wvpl-sticky-player .wvpl-icon.wvpl-likes.liked.disabled:hover,
#wvpl-sticky-player .wvpl-icon.wvpl-likes.disabled:hover {
  transform: none;
}
.waveplayer symbol#waveform-animation path, #wvpl-sticky-player symbol#waveform-animation path {
  transform-origin: 4px 20px;
}

@container waveplayer (width < 720px) {
  .waveplayer .wvpl-volume-slider {
    display: none;
  }
}

#wvpl-sticky-player .wvpl-volume-slider {
  display: none;
}
@media screen and (min-width: 960px) {
  #wvpl-sticky-player .wvpl-volume-slider {
    display: flex;
  }
}

body.wvpl-variation-popup {
  height: 100%;
  overflow: hidden;
}
body.wvpl-variation-popup #wvpl-variation-popup.woocommerce.single-product {
  opacity: 1;
  visibility: visible;
  transition: opacity 400ms 0s ease-in-out, visibility 0s 0ms ease-in-out;
}

#wvpl-variation-popup.woocommerce.single-product {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: RGBA(var(--background), 0.85);
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms 0s ease-in-out, visibility 0s 200ms ease-in-out;
}
#wvpl-variation-popup.woocommerce.single-product .wvpl-variation-form {
  position: absolute;
  margin: 0;
  top: 50%;
  left: 50%;
  list-style: none;
  padding: 20px;
  display: grid;
  width: 100%;
  height: 100%;
  background: rgb(var(--background));
  border-radius: 4px;
  z-index: 0;
  overflow-y: auto;
  box-shadow: 0 0 5px #000;
  transform: translate(-50%, -50%);
  height: 100%;
}
@media screen and (min-width: 667px) {
  #wvpl-variation-popup.woocommerce.single-product .wvpl-variation-form {
    max-width: 400px;
    height: auto;
  }
}
#wvpl-variation-popup.woocommerce.single-product .wvpl-variation-form h4 {
  font-weight: 600;
  text-align: center;
  color: RGB(var(--foreground));
}
#wvpl-variation-popup.woocommerce.single-product .wvpl-variation-form form.cart {
  height: auto;
  margin: auto 0;
  padding: 0;
  text-align: center;
}
#wvpl-variation-popup.woocommerce.single-product .wvpl-variation-form form.cart .variations {
  border: 0;
  width: 100%;
}
#wvpl-variation-popup.woocommerce.single-product .wvpl-variation-form form.cart .variations th, #wvpl-variation-popup.woocommerce.single-product .wvpl-variation-form form.cart .variations td {
  text-align: center;
}
#wvpl-variation-popup.woocommerce.single-product .wvpl-variation-form form.cart .variations th {
  color: RGB(var(--foreground));
}
#wvpl-variation-popup.woocommerce.single-product .wvpl-variation-form form.cart a.reset_variations {
  margin: 0 auto 0.5em;
}
#wvpl-variation-popup.woocommerce.single-product .wvpl-variation-form form.cart .woocommerce-variation-description {
  text-align: left;
}
#wvpl-variation-popup.woocommerce.single-product .wvpl-variation-form .variations_button {
  padding: 0;
  text-align: center;
  float: none;
  display: flex;
  justify-content: center;
}
#wvpl-variation-popup.woocommerce.single-product .wvpl-variation-form .variations_button .quantity, #wvpl-variation-popup.woocommerce.single-product .wvpl-variation-form .variations_button button.button {
  float: none;
}
#wvpl-variation-popup.woocommerce.single-product .wvpl-variation-form .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
  cursor: pointer;
  color: RGB(var(--foreground));
}
#wvpl-variation-popup.woocommerce.single-product .wvpl-variation-form .close-button::before {
  content: "";
  font-family: "Font Awesome 5 Free", FontAwesome;
  line-height: 20px;
}
#wvpl-variation-popup.woocommerce.single-product .wvpl-variation-form .close-button:hover {
  color: RGB(var(--highlight));
}
#wvpl-variation-popup.woocommerce.single-product span.wvpl-icon.wvpl-button.wvpl-cart {
  text-align: center;
}
#wvpl-variation-popup.woocommerce.single-product span.wvpl-icon.wvpl-button.wvpl-cart::before {
  content: "";
}

html {
  --wvpl-sticky-player-height: 80px;
  transition: padding 150ms ease-in-out;
}
html.has-sticky-player-bottom {
  padding-bottom: var(--wvpl-sticky-player-height);
}
html.has-sticky-player-top {
  padding-top: var(--wvpl-sticky-player-height);
}

#wvpl-sticky-player {
  --icon-scale: 1;
  --large-icon-scale: 1.6;
  display: block;
  width: 100%;
  height: var(--wvpl-sticky-player-height);
  --sticky-thumbnail-height: calc( .6 * var(--wvpl-sticky-player-height) );
  bottom: calc( -1 * var(--wvpl-sticky-player-height) );
  border-top: 1px solid RGB(var(--highlight-shade));
  position: fixed;
  padding: 0;
  z-index: 999999;
  background-color: RGB(var(--background));
  color: RGB(var(--foreground));
  transition: all 150ms ease-in-out;
}
html.has-sticky-player-top #wvpl-sticky-player {
  top: calc( -1 * var(--wvpl-sticky-player-height) );
  bottom: unset;
  border-bottom: 1px solid RGB(var(--highlight-shade));
  border-top: none;
}

#wvpl-sticky-player * {
  user-select: none;
}
html.has-sticky-player-bottom #wvpl-sticky-player {
  bottom: 0;
}

html.has-sticky-player-top #wvpl-sticky-player {
  top: 0;
}

#wvpl-sticky-player .wvpl-container {
  height: 100%;
  display: grid;
  overflow: hidden;
  grid-template-areas: "controls wave" "controls info";
  grid-template-columns: 3em 1fr;
  grid-template-rows: 2fr 1fr;
  grid-column-gap: 0;
  padding: 0;
  padding-right: 40px;
}
@media screen and (min-width: 667px) {
  #wvpl-sticky-player .wvpl-container {
    grid-template-columns: 8em 1fr;
  }
}
@media screen and (min-width: 960px) {
  #wvpl-sticky-player .wvpl-container {
    grid-column-gap: 10px;
    grid-template-areas: "controls volume wave" "controls volume info";
    grid-template-columns: 8em 90px 1fr;
  }
}
@media screen and (min-width: 1200px) {
  #wvpl-sticky-player .wvpl-container {
    grid-template-areas: "controls volume wave info";
    grid-template-columns: 8em 90px 3fr 2fr;
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    padding: 0 40px;
  }
}
#wvpl-sticky-player .wvpl-container .wvpl-controls {
  grid-area: controls;
  display: flex;
  justify-content: space-evenly;
  width: 3em;
}
@media screen and (min-width: 667px) {
  #wvpl-sticky-player .wvpl-container .wvpl-controls {
    width: 8em;
  }
}
#wvpl-sticky-player .wvpl-container .wvpl-controls .wvpl-icon {
  flex: 0 0 1em;
  align-self: center;
  text-align: center;
  cursor: pointer;
}
#wvpl-sticky-player .wvpl-container .wvpl-controls .wvpl-icon::before {
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  display: inline-block;
  text-align: center;
  width: 1.75em;
  height: 1.75em;
  line-height: 1.75em;
  border-radius: 1.75em;
  transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
}
#wvpl-sticky-player .wvpl-container .wvpl-controls .wvpl-icon:not(.wvpl-disabled):hover::before {
  background-color: RGB(var(--background-shade));
  color: RGB(var(--highlight));
}
#wvpl-sticky-player .wvpl-container .wvpl-controls .wvpl-icon.wvpl-disabled {
  opacity: 0.2;
  cursor: default;
}
#wvpl-sticky-player .wvpl-container .wvpl-controls .wvpl-icon.wvpl-play::before {
  content: "";
}
.playing#wvpl-sticky-player .wvpl-container .wvpl-controls .wvpl-icon.wvpl-play::before {
  content: "";
}

.loading#wvpl-sticky-player .wvpl-container .wvpl-controls .wvpl-icon.wvpl-play::before {
  content: "";
  animation: wvpl-spin 1.5s infinite linear;
}

.analyzing#wvpl-sticky-player .wvpl-container .wvpl-controls .wvpl-icon.wvpl-play::before {
  content: "";
  animation: wvpl-spin 1.5s infinite linear;
}

.seeking#wvpl-sticky-player .wvpl-container .wvpl-controls .wvpl-icon.wvpl-play::before {
  content: "";
  animation: wvpl-spin 1.5s infinite linear;
}

#wvpl-sticky-player .wvpl-container .wvpl-controls .wvpl-icon.wvpl-prev, #wvpl-sticky-player .wvpl-container .wvpl-controls .wvpl-icon.wvpl-next {
  display: none;
}
@media screen and (min-width: 667px) {
  #wvpl-sticky-player .wvpl-container .wvpl-controls .wvpl-icon.wvpl-prev, #wvpl-sticky-player .wvpl-container .wvpl-controls .wvpl-icon.wvpl-next {
    display: flex;
  }
}
#wvpl-sticky-player .wvpl-container .wvpl-controls .wvpl-icon.wvpl-prev::before {
  content: "";
}
#wvpl-sticky-player .wvpl-container .wvpl-controls .wvpl-icon.wvpl-next::before {
  content: "";
}
#wvpl-sticky-player .wvpl-wave {
  grid-area: wave;
  display: flex;
  flex: 1;
  overflow: hidden;
  position: relative;
}
#wvpl-sticky-player .wvpl-wave .wvpl-waveform {
  flex: 1;
  margin: 0 5px;
  overflow: hidden;
  position: relative;
}
#wvpl-sticky-player .wvpl-wave .wvpl-waveform canvas {
  height: 100%;
  transform: scaleY(1);
  transition: transform 150ms ease-in-out;
}
.loading#wvpl-sticky-player .wvpl-wave .wvpl-waveform canvas {
  transform: scaleY(0);
}

#wvpl-sticky-player .wvpl-wave .wvpl-position, #wvpl-sticky-player .wvpl-wave .wvpl-duration {
  width: 4ch;
  background-color: transparent;
  align-self: center;
  padding: 0;
  position: relative;
  transform: none;
  color: RGB(var(--foreground));
  opacity: 1;
  transition: opacity 150ms ease-in-out;
}
#wvpl-sticky-player .wvpl-wave .wvpl-position {
  text-align: right;
}
.loading#wvpl-sticky-player .wvpl-wave .wvpl-position {
  opacity: 0;
}

.loading#wvpl-sticky-player .wvpl-wave .wvpl-duration {
  opacity: 0;
}

#wvpl-sticky-player .wvpl-trackinfo {
  grid-area: info;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  transition: opacity 150ms ease-in-out;
  margin-bottom: 5px;
  overflow: hidden;
}
#wvpl-sticky-player .wvpl-trackinfo > :not(:last-child) {
  margin-right: 5px;
}
.loading#wvpl-sticky-player .wvpl-trackinfo {
  opacity: 0;
}

@media screen and (min-width: 1200px) {
  #wvpl-sticky-player .wvpl-trackinfo {
    margin: 0;
  }
}
#wvpl-sticky-player .wvpl-trackinfo img.wvpl-thumbnail {
  width: 16px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  flex: 0 0 20px;
  align-items: center;
  opacity: 1;
  transition: opacity 150ms ease-in-out;
}
@media screen and (min-width: 768px) {
  #wvpl-sticky-player .wvpl-trackinfo img.wvpl-thumbnail {
    width: 24px;
    height: 24px;
    flex: 0 0 var(--sticky-thumbnail-height);
  }
}
@media screen and (min-width: 1200px) {
  #wvpl-sticky-player .wvpl-trackinfo img.wvpl-thumbnail {
    width: var(--sticky-thumbnail-height);
    height: var(--sticky-thumbnail-height);
    flex: 0 0 var(--sticky-thumbnail-height);
  }
}
.loading#wvpl-sticky-player .wvpl-trackinfo img.wvpl-thumbnail {
  opacity: 0;
}

#wvpl-sticky-player .wvpl-trackinfo .wvpl-title, #wvpl-sticky-player .wvpl-trackinfo .wvpl-artist {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#wvpl-sticky-player .wvpl-trackinfo .wvpl-title {
  font-weight: 600;
}
#wvpl-sticky-player button.wvpl-sticky-player-toggle {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 5px;
  top: calc( var(--wvpl-sticky-player-height)/2 - 15px );
  background-color: transparent;
  padding: 0;
  color: RGB(var(--foreground));
  font-family: "Font Awesome 5 Free", FontAwesome;
  line-height: 30px;
  text-align: center;
  transition: all 150ms ease-in-out;
  font-size: var(--base-font-size);
  outline: none;
  font-weight: 900;
  border: none;
  cursor: pointer;
}
#wvpl-sticky-player button.wvpl-sticky-player-toggle::before {
  content: "";
}
html.has-sticky-player #wvpl-sticky-player button.wvpl-sticky-player-toggle {
  right: 5px;
}

html.has-sticky-player-top #wvpl-sticky-player button.wvpl-sticky-player-toggle::before {
  content: "";
}

.waveplayer::before,
.waveplayer *::before {
  content: unset;
}

#instance_track_data {
  display: none;
}

svg.icon-definitions {
  display: none;
}

[data-marker] {
  cursor: pointer;
}

@container waveplayer-container (width < 960px) {
  .waveplayer {
    --height: 160px;
    --font-scale: var(--font-scale-md);
  }
  .waveplayer.wvpl-size-xs {
    --height: 80px;
    --font-scale: var(--font-scale-xs);
  }
  .waveplayer.wvpl-size-sm {
    --height: 120px;
    --font-scale: var(--font-scale-sm);
  }
  .waveplayer.wvpl-size-md, .waveplayer.wvpl-size-lg {
    --height: 160px;
    --font-scale: var(--font-scale-md);
  }
}
@container waveplayer-container (width < 720px) {
  .waveplayer {
    --height: 120px;
    --font-scale: var(--font-scale-sm);
  }
  .waveplayer.wvpl-size-xs {
    --height: 80px;
    --font-scale: var(--font-scale-xs);
  }
  .waveplayer.wvpl-size-sm, .waveplayer.wvpl-size-md, .waveplayer.wvpl-size-lg {
    --height: 120px;
    --font-scale: var(--font-scale-sm);
  }
}
@container waveplayer-container (width < 360px) {
  .waveplayer.wvpl-size-xs, .waveplayer.wvpl-size-sm, .waveplayer.wvpl-size-md, .waveplayer.wvpl-size-lg {
    --height: 80px;
    --font-scale: var(--font-scale-xs);
  }
}