/**
 * tiny-player v.0.2.0
 * irubataru.com
 *
 * Copyright (c) 2018-2020 Jonas Rylund Glesaaen
 *
 * MIT License
 */

.iru-tiny-player {
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
  border: 1px solid #a9acad;
  width: 220px;
  height: 35px;
}

.iru-tiny-player .song-main-info {
  margin: 10px 15px;
  font-size: 14px;
  font-family: 'Lato';
  display: flex;
  align-items: center;
}

.iru-tiny-player .song-main-info .song-timer{
    margin-right: 20px;
  }

.fa-play {
margin-right: 50px;
}

.iru-tiny-player .song-main-info .icon.fa-volume-up {
  margin-right: 0px;
}

.iru-tiny-player .song-main-info .icon.fa-stop {
   visibility: hidden;
  }

.iru-tiny-player .icon {
  margin-right: 10px;
  text-decoration: none;
  border-bottom: none;
  position: relative;
  color: #3c3c3c;
}

.iru-tiny-player .icon:hover {
  color: #a9acad;
}

.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 .icon.fa-stop {
  margin-right: -30px;
}

@media screen and (max-width: 480px) {
  .iru-tiny-player .song-main-info .icon.fa-stop {
    margin-right: 5px;
  }
  .iru-tiny-player .song-main-info {
    margin: 10px 10px;
    font-size: 1rem;
  }
   .iru-tiny-player .song-main-info .icon.fa-volume-up {
  visibility: hidden;
  }
  .iru-tiny-player .song-main-info .song-timer{
    margin-right: -15px;
    -webkit-margin-right: -15px;
  }
  .iru-tiny-player .icon {
    margin-right: 0px;
    min-width: 1rem;
    flex-basis: 1rem;
  }
   .iru-tiny-player .icon.fa-times {
    margin: 10px 10px;
    font-size:12px;
  }
}

@media screen and (max-width: 375px) {
 .iru-tiny-player .song-main-info .song-timer {
  margin-right: -20px;
  white-space: nowrap;
  color: #3c3c3c;
}
}


.iru-tiny-player .song-main-info .song-timer {
  white-space: nowrap;
  color: #3c3c3c;
}

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

.iru-tiny-player .song-seek {
  position: absolute;
  width: 250px;
  height: 60px;
}

.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: #a9acad;
}

.iru-tiny-player .icon.fa-times {
  margin:10px 10px;
  margin-top:10px;
  position: absolute;
  font-size: 14px;
  right: 0;
  top: 0;
}

@media screen and (max-width: 480px) {
 
}
