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

audio { display:none;}

.iru-tiny-player {
  position: relative;
	background-color: white;
	//border: 1px solid rgba(0,0,0,0.87); /* OJS primary color */
	border: 1px solid DimGray; /* OJS primary color */
	border-radius: 3px;
}

.iru-tiny-player .song-main-info {
  display: flex;
  align-items: center;

	//justify-content: space-between;
	//color: #000000; /* OJS primary color */
	//color: rgba(0,0,0,0.87); /* OJS primary color */
	color: DimGray; /* OJS primary color */
	//margin: 0.6ex 2ex; /* Höhe der OJS-Buttons: 30px */
	margin-top: 0.6ex;
	margin-bottom: 0.6ex;
	margin-left: 2ex;
	margin-right: 1ex;
	font-size: 0.9rem;
}

@media screen and (max-width: 480px) {
  .iru-tiny-player .song-main-info {
	margin: 0.6ex 1ex; /* Höhe der OJS-Buttons: 30px */
	font-size: 0.9rem;
  }
}

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

.iru-tiny-player .icon:hover {
	color: #2b81b1; /* OJS primary light color */
}

@media screen and (max-width: 480px) {
  .iru-tiny-player .icon {
    margin-right: 0.25ex;
    min-width: 1rem;
    flex-basis: 1rem;
  }
}

.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: 2ex; // Text-Box weiter nach links
}

@media screen and (max-width: 480px) {
  .iru-tiny-player .song-main-info .icon.fa-stop {
    margin-right: 0.5ex;
  }
}

.iru-tiny-player .song-main-info .song-timer {
  margin-top: 0ex;
  margin-bottom: 0ex;
  margin-left: 2ex;
  margin-right: 1ex;
  white-space: nowrap;
  font-size: 0.85rem;
}


.iru-tiny-player .song-main-info .song-title {
  flex-grow: 1;
  white-space: nowrap;
	font-size: 0.9em;
  /*overflow: hidden;*/
}

.iru-tiny-player .song-seek {
  position: absolute;
  width: 100%;
  height: 100%;
}

.iru-tiny-player .song-progress {
  position: absolute;
	background-color: rgba(98, 98, 98, 0.15); /* daraus wird dann beim abspielen #e7e7e7 */
  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: #2b81b1; /* OJS primary light color */
}

.iru-tiny-player .icon.fa-times {
	margin: 0.4ex 1ex;
  position: absolute;
	font-size: 1.2rem;
  /*right: 0;*/
  top: 0;
}

@media screen and (max-width: 480px) {
  .iru-tiny-player .icon.fa-times {
	margin: 2ex 1.5ex;
	font-size: 1rem;
  }
}


.podcast_download {
	padding-top: 5px;
	float: left;
	font-size: 13px;
}

.podcast_download_text {
	padding-top: 5px;
	float: left;
	font-size: 13px;
	color: rgba(0,0,0,0.54);
}

.supplementary_galleys_links a:hover {
	//text-decoration: none;
}

.fa-download {
        //color: DimGray;
        //color: rgba(0,0,0,0.87);
}

