

/*аудиоплеер*/

/* Граница плеера */
.podcast-container {
  border: 2px solid #a587d6; 
  background:#ffffff; 
  border-radius: 24px;
  padding: 15px 24px;  
  display: flex;
  flex-direction: column;
  height: 100%;
}
.h-container {
  display: flex;
  margin-bottom: 15px;
}

.podcast-playpause {
  -webkit-flex: 0 0 52px;
  flex: 0 0 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  background: #ffffff;  /* Цвет кнопки Play/Pause */
  border-radius: 100%;
  cursor: pointer;
  margin-right: 14px;
}

.podcast-playpause:after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  height: 14px;
  border-color: transparent transparent transparent #7c5cb0;
  transition: 100ms all ease;
  will-change: border-width;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  margin-left: 3px;
}

.podcast-playpause.playing:after {
  border-style: double;
  border-width: 0px 0 0px 14px;
  margin-left: 0;
}

.podcast-title {   /* Название трека */
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 120%;
  text-transform: uppercase; /*свойство, чтобы название было всегда загл буквами*/
  color: var(--fon1);
  pointer-events: none;
  align-self:center;
}
.podcast-progress {
  border-radius: 6px;
  width: 100%;
  height: 8px;
  overflow: hidden;
  margin-top: auto;
  margin-bottom: 10px;
  cursor: pointer;
}

/* Полоса прогресса */
.podcast-progress::-webkit-progress-bar {    
  height: 8px;
  background: #a587d6;
  border-radius: 6px;
}
/* полоса прогресса для Мозиллы */
.podcast-progress::-moz-progress-bar {   
  border-radius: 6px;
  background: #7c5cb0;
}
/* Активная полоса прогресса */
.podcast-progress::-webkit-progress-value {  
  border-radius: 6px;
  background: #7c5cb0;
}
.podcast-progress::-moz-progress-value {  
  border-radius: 6px;
  background: #a587d6;
}
.podcast-progress::-webkit-progress-inner-element {
  border: none;
  padding: 0;
  margin: 0;
}
  
.f-container {
  display: flex;
  justify-content: space-between;
}
.podcast-time {
  pointer-events: none;
}

/* данные под полосой прогресса (минуты и скорость) */
.podcast-time,
.podcast-speed, 
.podcast-speed a {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 100%;
  color: #a587d6;
  text-decoration: none!important;
}

.podcast-speed a:hover,
.podcast-speed a.active  {
  color: var(--akcent2)!important;
}

