@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Page Content
2. Responsiv Page

******************************/
.header{
  position: relative;
}

.header::before{
  content: "";
  position: absolute;
  bottom: -81px;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url(../images/section/13_bg.JPG);
  transform: rotate(180deg);
  z-index: -1;
}

/*********************************
1. Page Content
*********************************/
.radio-station{
  padding: 60px 0 80px;
  min-height: calc(100vh - 200px);
}

.radio-station .page-title{
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 1px;
  margin: 10px 0 50px;
  line-height: 1.4;
  position: relative;
  display: inline-block;
}

.radio-station .page-title::before{
  content: "";
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 100px;
  height: 4px;
  background-color: var(--seconde-color);
}

.radio-station .page-title::after{
  content: "";
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 60px;
  height: 4px;
  background-color: var(--seconde-color);
}

.content{
  padding: 50px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content .music-player-main{
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 8px solid #00000042;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

.content .music-player-main.rotate{
  animation: rotate 100s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
  animation-delay: 5s;
  transform-origin: center;
}

.content .music-player-main:hover{
  animation: none;
}

@keyframes rotate{
  0%{
    transform: rotate(0);
  }
  100%{
    transform: rotate(360deg);
  }
}

.content .music-player-main::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #E4E2ED;
  border: 5px solid rgb(67 55 55 / 28%);
}

.music-player-main .top{
  width: 100%;
  height: 60%;
  position: relative;
}

.music-player-main .top .bg-img{
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.music-player-main .top .bg-img::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000026;
}

.music-player-main .top .bg-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 25%;
}

.music-player-main .top .timeline{
  width: 100%;
  height: 12px;
  background-color: #272c27ad;
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.music-player-main .top .timeline .seek{
  position: absolute;
  width: 0;
  height: 100%;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  background-color: #E4E2ED;
  transition: .3s linear;
}

.music-player-main .top .timeline .seek::after{
  content: "";
  position: absolute;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--seconde-color);
  top: 50%;
  transform: translateY(-50%);
}

.music-player-main .bottom{
  width: 100%;
  height: 45%;
  background-color: #34353C;
  display: flex;
  justify-content: center;
  position: relative;
}

.music-player-main .bottom .bottom-content{
  padding: 30px 0 0;
  position: relative;
}

.bottom .bottom-content h2{
  color: #E4E2ED;
  font-size: 33px;
  margin-bottom: 20px;
  text-align: center;
}

.bottom .controller{
  padding: 10px 0;
  display: flex;
  justify-content: center;
  text-align: center;
}

.bottom .controller span{
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}

.bottom .controller span i{
  line-height: 60px;
  font-size: 24px;
  color: #E4E2ED;
  font-family: "Font Awesome 5 Pro" !important;
  
}

.bottom .controller .play{
  background-color: var(--seconde-color);
  margin: 0 35px;
}

.bottom .option{
  width: 350px;
  height: 150px;
  border-radius: 50%;
  background-color: #28292F;
  margin-top: 13px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}

.bottom .option span{
  font-size: 20px;
  color: rgb(79 80 87);
  cursor: pointer;
}

.bottom .option span:not(:first-of-type){
  margin-right: 27px;
}

.bottom .option span.volume{
  position: relative;

}

.bottom .option span.volume i{
  font-size: 23px;
}

.bottom .option span.volume input[type = "range"]{
  -webkit-appearance: none;
  width: 60px;
  height: 3px;
  outline: none;
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  background-color: rgb(255 255 255 / 28%);
  display: none;
  cursor: pointer;
}

.bottom .option span.volume input[type = "range"].active{
  display: block;
}

.bottom .option span.volume input[type = "range"]::-webkit-slider-thumb{
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--seconde-color);
  cursor: pointer;
}

.bottom .option span.active i{
  color: #fff;
}

.bottom .option span i{
  font-family: "Font Awesome 5 Pro" !important;
}


/*********************************
2. Responsiv
*********************************/

/*********************
768px
**********************/
@media screen and (max-width:767px){
  .content .music-player-main{
    width: 530px;
    height: 530px;
  }

  .music-player-main .bottom .bottom-content{
    padding: 20px 0 0;
  }

  .bottom .bottom-content h2{
    font-size: 30px;
  }

  .bottom .controller{
    padding: 0;
  }

  .bottom .option{
    margin-top: 24px;
    padding-top: 7px;
  }
}

/*********************
575px
**********************/
@media screen and (max-width:575px){
  .radio-station .page-title{
    font-size: 30px;
  }

  .content .music-player-main{
    width: 400px;
    height: 400px;
    border-width: 4px;
  }

  .content .music-player-main::after{
    width: 60px;
    height: 60px;
  }

  .music-player-main .top .timeline{
    height: 8px;
  }

  .music-player-main .top .timeline .seek{
    left: 1px;
  }

  .music-player-main .top .timeline .seek::after{
    width: 15px;
    height: 15px;
  }

  .bottom .bottom-content h2{
    font-size: 25px;
    margin-bottom: 15px;
  }

  .bottom .controller span{
    width: 40px;
    height: 40px;
  }

  .bottom .controller .play{
    margin: 0 25px;
  }

  .bottom .controller span i{
    line-height: 40px;
    font-size: 18px;
  }

  .bottom .option{
    margin-top: 12px;
    padding-top: 6px;
  }

  .bottom .option span {
    font-size: 17px;
  }

  .bottom .option span.volume i{
    font-size: 20px;
  }
}

/*********************
400px
**********************/
@media screen and (max-width:400px){
  .content .music-player-main{
    width: 320px;
    height: 320px;
  }

  .content .music-player-main::after{
    width: 50px;
    height: 50px;
    border-width: 3px;
    z-index: 1;
  }

  .music-player-main .bottom .bottom-content{
    padding: 10px 0 0;
  }

  .bottom .bottom-content h2{
    font-size: 22px;
    margin-bottom: 13px;
  }

  .bottom .controller span{
    width: 35px;
    height: 35px;
  }

  .bottom .controller span i{
    line-height: 35px;
    font-size: 16px;
  }

  .bottom .option{
    margin-top: 8px;
    padding-top: 4px;
  }

  .bottom .option span{
    font-size: 15px;
  }

  .bottom .option span:not(:first-of-type){
    margin-right: 22px;
  }

  .bottom .option span.volume i{
    font-size: 18px;
  }

}