:root{
    --bg1: linear-gradient(180deg,#22262A,#181A1D); 

    --bg2: linear-gradient(135deg,#2F3439,#1D1F23);

    --bg3: linear-gradient(135deg,#2C3136,#1D2023);

    --bg4: #040404;

    --border1:#22262A;
    --border2:#1A1D21;

    --box-shadow1:
    6px 6px 10px #151618,
    -6px -6px 10px #2c3136,
    inset 2px 2px 6px #33353b,
    inset -3px -3px 6px #151618;

    --box-shadow2:
    -6px -6px 10px #151618,
    6px 6px 10px #2c3136,
    inset 2px 2px 6px #33353b,
    inset -3px -3px 6px #151618;

    --box-shadow3:
    6px 6px 12px #151618,
    -6px -6px 12px #2c3136;
    

    --box-shadow4:
    inset 2px 2px 3px -2px rgba(167,169,171,0.322),
    inset 0px -1px 1px 0px #4a4c4e;

    --box-shadow5:
    8px 8px 12px #151618,
    -2px -2px 10px #2c3136,
    inset 2px 2px 3px #33353b,
    inset -2px -2px 3px #151618;

    --box-shadow6:
    10px 10px 12px #151618,
    -10px -10px 12px #2c3136,
    inset 4px 4px 8px #33353b,
    inset -4px -4px 8px #151618;

    --box-shadow7:
    10px 10px 12px #151618,
    -10px -10px 12px #2c3136,
    inset -4px -4px 8px #33353b,
    inset 4px 4px 8px #151618;
}


body {
    font-family: Helvetica, sans-serif;
    background: linear-gradient(120deg,rgba(27, 27, 27, 0.8),rgba(2, 9, 49, 0.8),rgba(4, 4, 4, 0.8)),url('https://th.bing.com/th/id/R.7c3eae9cb0493a6ba1afef1a8d8995a1?rik=QUsamBQD7UIVqg&riu=http%3a%2f%2fgetwallpapers.com%2fwallpaper%2ffull%2fc%2f5%2f9%2f1481947-gorgerous-club-wallpaper-3840x2160-for-hd.jpg&ehk=OEAwLeA%2bp5Grr10dj1lV%2fg8DGt7Zb84unoDa4efC95k%3d&risl=&pid=ImgRaw&r=0')no-repeat;
    background-position: top center;
    background-size: cover;
    font-weight: bold;
    }
    
    .player{
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: center;
      
      
  }
    .wrapper{
        margin-top:50px;
        margin-bottom: 40px;
        margin-left: 40px;
        margin-right: 40px;
      border: 1px solid transparent;
      padding: 30px;
      border-radius: 20px;
      background: url('https://th.bing.com/th/id/R.90987bbd23d4429a3f73f4164f62f209?rik=ll2QoxNO4lSaSQ&riu=http%3a%2f%2fwallpapercave.com%2fwp%2fxh8i4TA.jpg&ehk=mTazEy5Gx4Fpzjgcs1s9FRIMHQS%2f%2fgfYhv20wT0z7Qw%3d&risl=&pid=ImgRaw&r=0') no-repeat;
      background-position: center;
      background-size: cover;
      box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    }
    
    .details {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    }
    
    .track-art {
    margin: 25px;
    height: 250px;
    width: 250px;
    border:2px solid 	#FFFAFA;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    -moz-box-shadow: 0px 6px 5px black;
    -webkit-box-shadow: 0px 6px 5px black;
    box-shadow: 0px 6px 5px black;
    -moz-border-radius:190px;
    -webkit-border-radius:190px;
    border-radius:190px;
    }
    
    .now-playing {
        color:white;
    font-size: 18px;
    }
    
    .track-name {
        color:white;
    font-size: 30px;
    }
    
    .track-artist {
        color: #a9a7a7;
    margin-top: 5px;
    font-size: 18px;
    }
    
    .buttons {
        color:white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    }
    .active{
        color: black;
    }
    
    .repeat-track,
    .random-track,
    .playpause-track,
    .prev-track,
    .next-track {
    padding: 25px;
    opacity: 0.8;
    transition: opacity .2s;
    }
    
    .repeat-track:hover,
    .random-track:hover,
    .playpause-track:hover,
    .prev-track:hover,
    .next-track:hover {
    opacity: 1.0;
    }
    
    .slider_container {
        color:white;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    
    .seek_slider, .volume_slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 5px;
    border-radius:12px;
    background: #e87a03;
    -webkit-transition: .2s;
    transition: opacity .2s;
    }
    
    .seek_slider::-webkit-slider-thumb,
    .volume_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: white;
    border: 3px solid #e87a03;
    cursor: grab;
    border-radius: 100%;
    }
    
    .seek_slider:hover,
    .volume_slider:hover {
    opacity: 1.0;
    }
    
    .seek_slider {
    width: 60%;
    }
    
    .volume_slider {
    width: 30%;
    }
    
    .current-time,
    .total-duration {
        color:white;
    padding: 10px;
    }
    
    i.fa-volume-down,
    i.fa-volume-up {
    padding: 10px;
    }
    
    i,
    i.fa-play-circle,
    i.fa-pause-circle,
    i.fa-step-forward,
    i.fa-step-backward,
    p {
    cursor: pointer;
    }
    .randomActive{
        color: black;
    }
    .rotate {
        animation: rotation 8s infinite linear;
    }
    @keyframes rotation {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(359deg);
        }
    }
    .loader {
      height: 70px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .loader .stroke{
        background: #f1f1f1;
        height: 150%;
        width: 10px;
        border-radius: 50px;
        margin: 0 5px;
        animation: animate 1.4s linear infinite;
    }
      @keyframes animate {
        50% {
          height: 20%;
          background: #4286f4;
        }
    
        100% {
          background: #4286f4;
          height: 100%;
        }
      }

      @media (max-width:694px){
        .wrapper{
            width:350px;
        }
    }
      
    @media (max-width:427px){
        .wrapper{
            width:280px;
        }
        .random-track,.prev-track,.next-track,.repeat-track{
            font-size: 8px;
            padding:5px;
        }
        .playpause-track{
            font-size:10px;
            padding:5px;
        }
    }