@import url(fonts.css);

.audio-player {
  width: 80%;
  max-width: 350px;
  margin: 0 auto;
  background-color: #f6f8ff;
  padding: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: IranYekanFa, serif !important;
  direction: ltr;
}

.audio-player__poster {
  text-align: center;
}

.audio-player__poster img {
  width: 226px;
  height: 226px;
  border-radius: 8px;
  margin: 0 auto;
}

.audio-player__artist {
  font-size: 17px;
  font-weight: 700;
  margin-top: 20px;
  text-align: center;
}

.audio-player__timer {
  position: relative;
  margin: 0 auto;
  margin-top: 50px;
  width: 100%;
}

.audio-player__timer .timer-start {
  position: absolute;
  left: 0;
  top: 20px;
  font-size: 13px;
}

.audio-player__timer .timer-end {
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 13px;
}

.audio-player__timer .timer-range {
  appearance: none;
  border-radius: 5px;
  height: 4px;
  width: 100%;
  cursor: pointer;
}

.timer-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  background: black;
  border-radius: 50%;
  cursor: pointer;
}

.timer-range::-moz-range-thumb {
  appearance: none;
  width: 10px;
  height: 10px;
  background: black;
  border-radius: 50%;
  cursor: pointer;
}

.audio-player__control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 30px auto;
}

.audio-player__control > img {
  cursor: pointer;
}

.audio-loader {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 8px 20px;
  background-color: #f6f8ff;
  width: 80%;
  max-width: 350px;
  margin-bottom: 20px;
}

.audio-loader__poster {
  width: 226px;
  height: 226px;
  background-color: #f3f3f3;
  margin: 0 auto;
  margin-top: 13px;
}

.audio-loader__artist {
  width: 100px;
  height: 21px;
  background-color: #f3f3f3;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 50px;
}

.audio-loader__timer {
  width: 312px;
  height: 4px;
  background-color: #f3f3f3;
  margin: 0 auto;
  margin-top: 80px;
}

.audio-loader__volume {
  display: none;
}

.audio-loader__control {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  width: 312px;
}

.audio-loader__control > div {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f3f3f3;
  margin-bottom: 30px;
}

.audio-loader__control > div:nth-child(2) {
  height: 53px;
  width: 53px;
}

@media only screen and (min-width: 768px) {
  .audio-player {
    display: flex;
    width: 80vw;
    max-width: none;
    background: rgb(0, 176, 232);
    background: linear-gradient(
      180deg,
      rgba(0, 176, 232, 1) 0%,
      rgba(173, 235, 255, 1) 100%
    );
    color: white;
    border-radius: 8px;
  }
  .audio-player__poster img {
    border-radius: initial;
    margin-right: 40px;
  }

  .audio-player__artist {
    text-align: left;
  }

  .audio-player__timer {
    margin-top: initial;
    width: 312px;
  }

  .audio-player__timer .timer-start {
    left: 0;
    opacity: 0.8;
  }

  .audio-player__timer .timer-end {
    right: 0;
    opacity: 0.8;
  }

  .timer-range::-webkit-slider-thumb {
    background-color: white;
  }

  .timer-range::-moz-range-thumb {
    background-color: white;
  }

  .audio-player__volume {
    display: flex;
    align-items: center;
    margin-left: 10px;
    margin-top: 6px;
  }

  .audio-player__volume .volume-range {
    appearance: none;
    border-radius: 5px;
    width: 40px;
    height: 2px;
    margin-left: 5px;
    cursor: pointer;
  }

  .audio-player__volume img {
    cursor: pointer;
    width: 15px;
    height: 15px;
  }

  .volume-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
  }

  .volume-range::-moz-range-thumb {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
  }

  .audio-player__control {
    width: 312px;
    margin: 30px 0px;
  }

  .audio-loader {
    display: flex;
    margin: 0 auto;
    padding: 8px 20px;
    background-color: #00b0e8;
    background: linear-gradient(
      180deg,
      rgba(0, 176, 232, 1) 0%,
      rgba(173, 235, 255, 1) 100%
    );
    width: 80%;
    height: 266px;
    border-radius: 8px;
  }

  .audio-loader__poster {
    width: 226px;
    height: 226px;
    background-color: #f3f3f3;
    margin-top: 13px;
    margin-right: 40px;
  }

  .audio-loader__artist {
    width: 100px;
    height: 21px;
    background-color: #f3f3f3;
    margin-top: 41px;
    margin-bottom: 50px;
  }

  .audio-loader__timer {
    width: 312px;
    height: 4px;
    background-color: #f3f3f3;
  }

  .audio-loader__volume {
    width: 40px;
    height: 2px;
    background-color: #f3f3f3;
  }

  .audio-loader__control {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 312px;
  }

  .audio-loader__control > div {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f3f3f3;
  }

  .audio-loader__control > div:nth-child(2) {
    height: 53px;
    width: 53px;
  }
}

.audio-loader-animation {
  animation: loader-animation 1s linear infinite alternate;
}

@keyframes loader-animation {
  0% {
    background-color: hsl(200, 20%, 80%);
  }

  100% {
    background-color: hsl(200, 20%, 95%);
  }
}
