
.mejs-offscreen{
  display: none;
}


div.voice {
  margin: 0 0 20px;
  padding: 0;
}

div.voice p{
  margin: 0;
  padding: 0;
  text-align: left;
  font: 18px 'miniaturecregular', serif;
  line-height: 24px;
  color: rgb(127,171,202);
}

div.voice a{
  margin: 0;
  padding: 0;
  font: 15px 'miniaturecregular', serif;
  color: rgb(127,171,202);  
  display: block;
  width: 100px;
}

div.voice a:hover {
  color: rgb(127,171,202);  
}

div.voice a img{
  display: inline-block;
  margin: 0;
  padding: 0;  
}
div.voice a span{
  display: inline-block;
  margin-left: 5px;
  padding:0;
  /*line-height: 0px;*/
  line-height: 10px;
  vertical-align: bottom;
}

/** audio player styles **/
.audio-player, .audio-player div, .audio-player h6, .audio-player a, .audio-player span, .audio-player button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

div.audio-player {
  /* мой стиль*/
  display: inline-block;
  
  position: relative;
  width: 450px;
  height: 40px;
  margin: 10px 0 0;
  border: solid 1px rgb(127,171,202);
  background: white;
}


/* play/pause control */
.mejs-controls .mejs-button button {
  cursor: pointer;
  display: block;
  position: absolute;
  text-indent: -9999px;
}

.mejs-controls .mejs-play button, .mejs-controls .mejs-pause button {
  width: 34px;
  height: 34px;
  top: 7px;
  left: 7px;
  background-color: transparent;
  /*background: transparent url('playpause.png') 0 0 no-repeat;*/
}

.mejs-controls .mejs-play button::after {
    content: ''; 
    position: absolute; 
    left: 0px; top: 0px;
    border: 12px solid transparent;
    border-left: 25px solid rgb(127,171,202);
}

.mejs-controls .mejs-pause button::after {
    content: ''; 
    position: absolute; 
    left: 2px; top: 1px;
    width: 8px;
    height: 22px;
    background-color: rgb(127,171,202);
}
.mejs-controls .mejs-pause button::before {
    content: ''; 
    position: absolute; 
    left: 14px; top: 1px;
    width: 8px;
    height: 22px;
    background-color: rgb(127,171,202);
}

/* mute/unmute control */
.mejs-controls .mejs-mute button, .mejs-controls .mejs-unmute button {
  width: 18px;
  height: 20px;
  top: 9px;
  right: 73px;
  background: transparent url('/images/audio.png') 0 0;
}
.mejs-controls .mejs-unmute button { background-position: 0 -19px; }


/* volume scrubber bar */
.mejs-controls div.mejs-horizontal-volume-slider {
  display: block !important;
  position: absolute;
  top: 15px;
  right: 67px;
  cursor: pointer;
}


.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  position: absolute;
  width: 60px;
  height: 8px;
  background: #bbb;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  position: absolute;
  width: 0;
  height: 8px;
  top: 0px;
  left: 0px;
  background: rgb(127,171,202);
}


/* time scrubber bar */
.mejs-controls div.mejs-time-rail { width: 200px; }
 
.mejs-controls .mejs-time-rail span {
  position: absolute;
  display: block;
  width: 250px;
  height: 8px;
  top: 15px;
  left: 130px;
  cursor: pointer;
}
 
.mejs-controls .mejs-time-rail .mejs-time-total { 
  background: #bbb;
  width: 210px !important; /* fixes display bug using jQuery 1.8+ */
}
.mejs-controls .mejs-time-rail .mejs-time-loaded {
  top: 0;
  left: 0;
  width: 0;
  background: white;
  border: solid 1px rgb(127,171,202);

}
.mejs-controls .mejs-time-rail .mejs-time-current {
  top: 0;
  left: 0;
  width: 0;
  background: rgb(127,171,202);
}

/* metallic sliders */
.mejs-controls .mejs-time-rail .mejs-time-handle {
  position: absolute;
  display: block;
  width: 8px;
  height: 18px;
  top: -5px;
  background: rgb(81,130,166);
  /*border: solid 1px rgb(127,171,202);*/
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
  position: absolute;
  display: block;
  width: 6px;
  height: 16px;
  top: -4px;
  background: rgb(81,130,166);
}


/* time progress tooltip */
.mejs-controls .mejs-time-rail .mejs-time-float {
  position: absolute;
  display: none;
  width: 33px;
  height: 23px;
  top: -30px;
  margin-left: -17px;
  z-index: 9999;
  border: solid 1px rgb(127,171,202);
  background: white;
}
 
.mejs-controls .mejs-time-rail .mejs-time-float-current {
  width: 33px;
  display: block;
  left: 0;
  top: 6px;
  font: 10px 'miniaturecregular', serif;
  color: #666;

  text-align: center;
  z-index: 9999;
}

.mejs-time{
  display: block;
  position: absolute;
  top: 12px;
  left: 43px;
  font: 14px 'miniaturecregular', serif;
  color: #666;
}

.mejs-time span.mejs-currenttime, .mejs-time span.mejs-duration{
  color: #666;
}

.mejs-time span{
  color: rgb(127,171,202);
}

/** clearfix **/
.clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
.clearfix { display: inline-block; }
 
html[xmlns] .clearfix { display: block; }
* html .clearfix { height: 1%; }