/*!*********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/audio-player.scss ***!
  \*********************************************************************************************************************/
/**
 * Elementor Audio Player Widget Styles
 */
/* Variables */
/* Main Player Container */
.eap-audio-player {
  position: relative;
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  margin: 16px 0;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.eap-audio-player.eap-ready {
  opacity: 1;
}
.eap-audio-player:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.eap-player-container {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}

/* Album Art */
.eap-album-art {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  margin-right: 16px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.eap-album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Player Content */
.eap-player-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
}

/* Track Info */
.eap-track-info {
  margin-bottom: 8px;
}

.eap-song-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333333;
}

.eap-artist-name {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #666666;
}

.eap-album-name {
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #999999;
}

/* Waveform Container */
.eap-waveform-container {
  width: 100%;
  height: 40px;
  margin: 8px 0;
  cursor: pointer;
  position: relative;
}

/* Hide default wavesurfer time indicator */
.eap-waveform-container > wave > wave > .wavesurfer-handle {
  display: none !important;
}

/* Player Controls */
.eap-player-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eap-controls {
  display: flex;
  align-items: center;
}
.eap-controls button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-right: 16px;
  color: #333333;
  font-size: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.eap-controls button:hover {
  color: #007AFF;
  background-color: rgba(0, 122, 255, 0.1);
}
.eap-controls button:active {
  color: #FF2D55;
  transform: scale(0.95);
}
.eap-controls button:focus {
  outline: none;
}

/* Volume Control */
.eap-volume-slider {
  width: 80px;
  height: 4px;
  background-color: #d1d1d1;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  margin-right: 16px;
  overflow: hidden;
}

.eap-volume-slider-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #007AFF;
  border-radius: 2px;
  transition: width 0.1s ease;
}

/* Time Display */
.eap-time-display {
  font-size: 12px;
  font-weight: 500;
  color: #666666;
  margin-left: auto;
}

/* Sticky Player */
.eap-sticky {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.eap-sticky.eap-sticky-active {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  border-radius: 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

/* Loading State */
.eap-loading .eap-waveform-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 2px solid rgba(0, 122, 255, 0.2);
  border-top-color: #007AFF;
  border-radius: 50%;
  animation: eap-spin 1s linear infinite;
}

@keyframes eap-spin {
  to {
    transform: rotate(360deg);
  }
}
/* Error State */
.eap-error {
  padding: 16px;
  border-radius: 8px;
  background-color: rgb(255, 242.5014492754, 241.8);
  color: #FF3B30;
  text-align: center;
  margin: 16px 0;
  border: 1px solid rgb(255, 203.8695652174, 201);
}

/* Animations */
@keyframes eap-waveform-pulse {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
.eap-is-playing .eap-waveform-container wave wave {
  animation: eap-waveform-pulse 1.5s ease-in-out infinite;
}

/* Responsive Styles */
@media (max-width: 767px) {
  .eap-album-art {
    width: 48px;
    height: 48px;
    margin-right: 12px;
  }
  .eap-song-title {
    font-size: 14px;
  }
  .eap-artist-name {
    font-size: 12px;
  }
  .eap-album-name {
    font-size: 11px;
  }
  .eap-controls button {
    margin-right: 12px;
    font-size: 20px;
    width: 28px;
    height: 28px;
  }
  .eap-volume-slider {
    width: 60px;
  }
  .eap-waveform-container {
    height: 32px;
  }
}
@media (max-width: 479px) {
  .eap-audio-player {
    height: auto;
    padding: 8px;
  }
  .eap-player-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .eap-album-art {
    width: 40px;
    height: 40px;
    margin-right: 8px;
  }
  .eap-track-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
  }
  .eap-waveform-container {
    height: 24px;
    margin: 4px 0;
  }
  .eap-player-controls {
    width: 100%;
  }
  .eap-controls button {
    margin-right: 8px;
  }
  .eap-volume-slider {
    width: 40px;
  }
}

/*# sourceMappingURL=audio-player.css.map*/