/* Media Element Player styles */

/* Player background */
.oe-mejs-container.mejs-container,
.oe-mejs-container .mejs-controls,
.oe-mejs-container .mejs-embed,
.oe-mejs-container .mejs-embed body {
  background-color: #efefef;
	border-radius: 10px;
}

/* Player controls */
.oe-mejs-container .mejs-button > button {
  background-image: url("../img/mejs-controls-dark.svg");
}

.oe-mejs-container .mejs-time {
  color: #888888;
}

/* Progress and audio bars */

/* Progress and audio bar background */
.oe-mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.oe-mejs-container .mejs-controls .mejs-time-rail .mejs-time-total {
  background-color: #fff;
}

/* Track progress bar background (amount of track fully loaded)
  We prefer to style these with the main accent color of our theme */
.oe-mejs-container .mejs-controls .mejs-time-rail .mejs-time-loaded {
  background-color: rgba(209 142 1, 0.075);
}

/* Current track progress and active audio volume level bar */
.oe-mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.oe-mejs-container .mejs-controls .mejs-time-rail .mejs-time-current {
  background: #d18e01;
}

/* Reduce height of the progress and audio bars */
.oe-mejs-container .mejs-time-buffering,
.oe-mejs-container .mejs-time-current,
.oe-mejs-container .mejs-time-float-current,
.oe-mejs-container .mejs-time-hovered,
.oe-mejs-container .mejs-time-loaded,
.oe-mejs-container .mejs-time-marker,
.oe-mejs-container .mejs-time-total,
.oe-mejs-container .mejs-horizontal-volume-total,
.oe-mejs-container .mejs-time-handle-content {
  height: 3px;
}

.oe-mejs-container .mejs-time-float-corner	{
	height: 3px;
	border-color: #d18e01 transparent transparent;
}
.oe-mejs-container .mejs-time-float-current	{
	color: #888;
}

.oe-mejs-container .mejs-time-float	{
	height: 15px;
	border: none;
	background-color: transparent;
}

.oe-mejs-container .mejs-time-handle-content {
  top: -6px;
}

.oe-mejs-container .mejs-time-total {
  margin-top: 8px;
}

.oe-mejs-container .mejs-horizontal-volume-total {
  top: 19px;
}

/* WordPress audio playlist styles */

.wp-playlist-light {
  box-shadow: 3px 3px 0 #e2e2e2;
}

/* Captions - Track titles / subtitles, time */
.wp-playlist-light .wp-playlist-caption,
.wp-playlist-light .wp-playlist-item-length {
  color: #787878;
}

/* Captions - Current track */
.wp-playlist-light .wp-playlist-current-item .wp-playlist-item-title {
  font-size: 16px;
}

.wp-playlist-light .wp-playlist-item-album {
  font-style: normal;
}

.wp-playlist-light .wp-playlist-item-artist {
  text-transform: none;
  opacity: .8;
}

/* Playlist items */
.wp-playlist-light .wp-playlist-item {
  padding: 10px 0;
  border-bottom-color: #efefef;
}

.wp-playlist-light .wp-playlist-item:last-child {
  padding-bottom: 0;
}

.wp-playlist-light .wp-playlist-playing {
  font-weight: normal;
  border-bottom-color: #d18e01;
}

.wp-playlist-light .wp-playlist-item-length {
  top: 10px;
}

.wp-playlist-current-item {
	display: none;
}