/**
 * tiny-player v.0.2.1
 * irubataru.com
 *
 * Copyright (c) 2018-2021 Jonas Rylund Glesaaen
 *
 * MIT License
 */

 .filter-bg.played img{
      opacity: 0.3;
  }

 .iru-tiny-player .btn-play-pause {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     left: 0;
     right: 0;
     text-align: center;
     width: 80px;
     height: 80px;
     background: var(--color-red);
     padding: 16px;
     font-size: 30px;
     border: solid 2px #fff;
     border-radius: 50%;
     margin: 0 auto;
     box-shadow: 10px 10px 13px -7px rgba(0,0,0,0.43);
     -webkit-box-shadow: 10px 10px 13px -7px rgba(0,0,0,0.43);
     -moz-box-shadow: 10px 10px 13px -7px rgba(0,0,0,0.43);
 }

 .iru-tiny-player .btn-play-pause i {
     color: #fff;
 }

 .iru-tiny-player .btn-play-pause{
     cursor: pointer;
 }

.iru-tiny-player .song-main-info {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 8px;
    color: #fff;
    width: 100%;
    left: 0;
}

.iru-tiny-player .song-main-info .song-timer {
  margin: 0ex 1ex;
  white-space: nowrap;
  margin: 0 auto;
  font-size: 14px;
}

.iru-tiny-player .song-main-info .song-title {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
}

.iru-tiny-player .wrapper-progressbar{
    position: relative;
}


.iru-tiny-player .song-seek {
  position: absolute;
  width: 100%;
  height: 10px;
  background: #fff;
  border-radius: 10px;
  bottom: 20px;
}

.iru-tiny-player .song-progress {
	position: absolute;
	background-color: var(--color-red);
	width: 0%;
	height: 10px;
    border-radius: 10px 0 0 10px;
    bottom: 20px;
}

.iru-tiny-player .icon.fa-times {
  margin: 2ex 2.5ex;
  position: absolute;
  font-size: 1.25rem;
  right: 0;
  top: 0;
}
