.iru-tiny-player {
  position: relative;
  display: inline-block;
  width: 100%;
}

.iru-tiny-player .song-main-info {
  margin: 2ex 2ex;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
}

@media only screen and (max-device-width: 600px) {
  .iru-tiny-player .song-main-info {
    font-size: 1rem;
  }
  .iru-tiny-player .icon{
    font-size: 1.5rem;
  }
}

.iru-tiny-player .icon {
  margin: 0px 1ex;
  min-width: 1.5rem;
  flex-basis: 1.5rem;
  text-decoration: none;
  border-bottom: none;
  position: relative;

  transition: 1s opacity; /*animates for 1 second*/
  -moz-transition: 1s opacity; /*For Firefox < 16.0*/
  -webkit-transition: 1s opacity; /*For WebKit (Chrome, Safari)*/
}

.iru-tiny-player .icon:hover {
  opacity: 0.6;
  transition: 0.5s opacity; /*animates for 1 second*/
  -moz-transition: 0.5s opacity; /*For Firefox < 16.0*/
  -webkit-transition: 0.5s opacity; /*For WebKit (Chrome, Safari)*/
}

.iru-tiny-player .icon:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
}

.iru-tiny-player .song-main-info{
  margin-right: 2ex;
}
.iru-tiny-player .icon.fa-pause, .iru-tiny-player .icon.fa-play{
  margin: 0px 0.75ex 0px 0.25ex;
}

.iru-tiny-player .song-main-info .icon.fa-step-forward, .iru-tiny-player .song-main-info .icon.fa-step-backward {
  font-size: 1rem;
  padding: 5px;
}


.iru-tiny-player .song-main-info .tracks-num {
  margin: 0ex 2ex;
  font-size: 0.95rem;
  white-space: nowrap;
}
.iru-tiny-player .song-main-info .song-num {
  font-size: 0.85rem;
  border-right: 1px solid;
  padding-right: 5px;
  margin-right: 5px; 
  white-space: nowrap;
}

.iru-tiny-player .song-main-info .song-timer {
  margin: 0ex 1ex;
  white-space: nowrap;

  -webkit-box-shadow: -14px 0px 15px 14px #fff;
  -moz-box-shadow: -14px 0px 15px 14px #fff;
     box-shadow: -14px 0px 15px 14px #fff; 
}
.darkmode .iru-tiny-player .song-main-info .song-timer{
  -webkit-box-shadow: -14px 0px 15px 14px#383735;
  -moz-box-shadow: -14px 0px 15px 14px #383735;
  box-shadow: -14px 0px 15px 14px #383735; 
}

.iru-tiny-player .song-main-info .song-title {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
}

.iru-tiny-player .song-progress {
  position: absolute;
  background-color: rgba(21, 29, 31, 0.15);
  width: 0%;
  height: 100%;
}

/*
.iru-tiny-player .song-volume-control {
  position: absolute;
  background-color: rgba(245, 245, 245, 0.85);
  width: 100%;
  height: 100%;
  top: 0;
}

.iru-tiny-player .song-volume-bar {
  position: absolute;
  top: 50%;
  left: 20%;
  height: 10px;
  margin: 0px auto;
  width: 80%;
  background-color: rgba(21, 29, 31, 0.9);
}

.iru-tiny-player .song-volume-bar#fg {
  height: 5px;
  margin: -2.5px auto;
  width: 60%;
}

.iru-tiny-player .song-volume-bar#fgg {
  height: 10px;
  margin: -5px auto;
  background-color: rgba(255, 255, 255, 0);
  width: 60%;
}

.iru-tiny-player .song-volume-bar#bg {
  height: 1.5px;
  margin: -0.75px auto;
  background-color: rgba(21, 29, 31, 0.75);
  width: 60%;
}

.iru-tiny-player .song-volume-dot {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 80%;
  margin: -7.5px auto;
  background-color: rgba(21, 29, 31, 0.9);
  border-radius: 7.5px;
  cursor: pointer;
}

.iru-tiny-player .song-volume-dot:hover {
  background-color: #18bfef;
}
*/