/** Shopify CDN: Minification failed

Line 211:19 Expected identifier but found whitespace
Line 211:24 Unexpected ";"

**/


/* CSS from section stylesheet tags */
.parent {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 12px;
}

.parent .music-section {
  width: 100%;
}

.parent  div:empty:not(.fixed-overlay, .bg-overlay, .empty-space, .drawer__body, .no-empty)

 {
    display:block;
}

@media screen and (min-width: 768px) {
  .parent {
    flex-direction: row;
  }
}

.parent .spotify-playlist iframe {
  border: none;
  width: 100%;
  border-radius: 12px;
  height: 100%;
}

.parent .other-playlist {
  padding: 21px;
}

.parent .music-section .genre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
}

@media screen and (min-width: 768px) {
  .parent .music-section .genre-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.parent .left {
  padding: 7px;
  border-radius: 10px;
}

.header1 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: left;
}

.parent .befor-after {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Simple audio player styling */
.simple-player {
  width: 100%;
  height: 50px;
  background-color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: relative;
}

.play-button {
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 10px;
  border: 1px solid #eee;
}

.play-button svg {
  width: 18px;
  height: 18px;
  fill: #555;
}

.progress-container {
  flex-grow: 1;
  padding: 0 5px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background-color: #eee;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #555;
  border-radius: 2px;
}

.time-display {
  margin-left: 10px;
  font-size: 11px;
  color: #777;
  min-width: 43px;
  text-align: right;
}

/* Volume control styling */
.volume-control {
  display: flex;
  align-items: center;
  margin-left: 10px;
  position: relative;
}

.volume-button {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: white;
}

.volume-button svg {
  width: 18px;
  height: 18px;
  fill: #555;
}

.volume-slider-container {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 120px;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  z-index: 10;
}

.volume-control:hover .volume-slider-container {
  display: flex;
}

  
.volume-slider {
  width: 4px;
  height: 90px;
  background-color: #eee;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.volume-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-color: #555;
  border-radius: 2px;
}

/* Hide all other volume controls */
.volume-slider-horizontal, 
.volume-fill-horizontal {
  display: none !important;
}
  background-color: #eee;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  margin-left: 5px;
  overflow: hidden;
  transition: width 0.3s ease;
}

.volume-fill-horizontal {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 70%;
  background-color: #555;
  border-radius: 2px;
}

.volume-control.hover-active .volume-slider-horizontal {
  width: 60px;
  display: block;
}

/* Hide native audio player but leave it functional */
.native-audio {
  display: none;
}

@media screen and (min-width: 480px) {
  .parent .befor-after {
    flex-direction: row;
  }
}

.parent .befor-after > div {
  flex: 1;
}

.parent .befor-after p {
  text-align: left;
  margin-top: 5px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .parent .befor-after p {
    text-align: left;
    margin-top: 5px;
    font-weight: 500;
  }
   
  .parent .spotify-playlist iframe {
    border: none;
    width: 100%;
    border-radius: 12px;
    height: 500px;
  }

  
}