* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  width: 100%;
}

.main {
  padding: 1em 2em;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  place-content: center;
  background-image: linear-gradient(25deg, #000000, #808285);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.main button {
  padding: 10px 12px;
  margin: 0 10px;
}

.main #logo {
  top: 10px;
  left: 30px;
  font-size: 25px;
  color: #000000;
}

.main #logo i {
  margin-right: 15px;
}

.currentime {
  color: #ffffff;
  font-size: 20px;
}

/* left & right part */
.right,
.left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin: 2em 0;
}

/* song image */
.left img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  margin-bottom: 2em;
}

.left .loader {
  position: absolute;
  top: 0;
  bottom: 0;
}

/* both range slider part */
input[type="range"] {
  -webkit-appearance: none;
  background-color: #000000;
  width: 100%;
  outline: none;
  height: 2px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  background: #000000;
  border-radius: 50%;
  cursor: pointer;
}

.right input[type="range"] {
  width: 100%;
}

/* volume part */
.right .volume {
  width: 100%;
  color: #fff;
}

.right .volumaction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1em;
}

.right .volume p {
  font-size: 15px;
}

.right .volume i {
  cursor: pointer;
  padding: 8px 12px;
  background: #000000;
}

.right .volume i:hover {
  background-color: #1b5fb2;
}

.volume #volume_show {
  padding: 8px 12px;
  margin: 0 5px 0 0;
  background-color: #000000;
}

/* right part */
.right .middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2em;
}

.right .middle button {
  border: none;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  outline: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #000000;
}

.right #title {
  text-transform: capitalize;
  color: #fff;
  font-size: 35px;
}

.right #artist {
  text-transform: capitalize;
  color: #fff;
  font-size: 18px;
}

.right .duration {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 20px;
  margin-bottom: 2em;
}

.right .duration p {
  color: #fff;
  font-size: 15px;
  margin-left: 20px;
}

.right #auto {
  font-size: 18px;
  cursor: pointer;
  margin-top: 45px;
  border: none;
  padding: 10px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  border-radius: 10px;
}

.right #auto i {
  margin-left: 8px;
}

#play {
  background: #000000;
  color: black !important;
}

.right button:hover {
  background: #000000;
  color: black;
}

.right i:before {
  color: #fff;
  font-size: 20px;
}

.right .show_song_no {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 12px;
  color: #fff;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
}

.right .show_song_no p:nth-child(2) {
  margin: 0 5px;
}

@media (min-width: 961px) {
  .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
  }
  .left {
    width: 350px;
    margin: 4em;
  }
}

@media (min-width: 1025px) {
  /* big landscape tablets, laptops, and desktops */
}

@media (min-width: 1281px) {
  /* hi-res laptops and desktops */
}
/*# sourceMappingURL=main.css.map */