div.player {
    background: url();
}

.player__visualisation {
    position: absolute;
    left: 138px;
    top: 25px;
}





.player__visualisation #canvas {
    display: block;
    width: 455px;
    height: 35px;
}

.player__play-btn {
    position: absolute;
    margin: 40px 0 0 95px;
    display: inline-block;
    height: 40px;
    width: 40px;
    z-index: 5;
    opacity: .6;
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

a.player__play-btn:hover {
  opacity: .9;
}


div.player a.play { background: url(); }

.play-btn-icon {
  display: block;
}

.player.status-play .play-btn-icon,
.player.status-playing .play-btn-icon {
    position: relative;
    top: 8px;
    left: 2px;
    height: 32px;
    width: 32px;
    background: url(/img/pause.svg) no-repeat;
    background-size: 22px;
}
.player.status-pause .play-btn-icon {
    position: relative;
    top: 6px;
    height: 40px;
    width: 40px;
    background: url(/img/play.svg) no-repeat;
    background-size: 24px;
}










.content.podcasts ul.tracks li {
    background-position: 0 4px;
}

ul.tracks button,
.v-player button {
  display: inline;
  overflow: visible;
  width: auto;
  text-align: left;
  background: none;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.3;
  color: #663;
  -moz-user-select: text;
  text-decoration: underline;
  transition: all 0.5s ease;
}

ul.tracks button:hover {
  color: #000;
}








/*
input[type=range].seek-line__range {
  -webkit-appearance: none;
     -moz-appearance: none;
  margin: 3px 0;
  width: 100%;
}
input[type=range].seek-line__range:focus {
  outline: none;
}
input[type=range].seek-line__range::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #ffffff;
  border-radius: 0px;
  border: 0px solid #000101;
}
input[type=range].seek-line__range::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #ffffff;
  height: 6px;
  width: 6px;
  background-color: #000000;
  border-radius: 4px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
  margin-top: -2.5px;
}
input[type=range].seek-line__range:focus::-webkit-slider-runnable-track {

}
input[type=range].seek-line__range::-moz-range-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #ffffff;
  border-radius: 0px;
  border: 0px solid #000101;
}
input[type=range].seek-line__range::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #ff0000;
  height: 6px;
  width: 6px;
  background-color: #000000;
  border-radius: 4px;
  cursor: pointer;
}
input[type=range].seek-line__range::-ms-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 4px 0;
  color: transparent;
}
input[type=range].seek-line__range::-ms-fill-lower {
  background: #ffffff;
  border: 0px solid #000101;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range].seek-line__range::-ms-fill-upper {
  background: #ffffff;
  border: 0px solid #000101;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range].seek-line__range::-ms-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #ff0000;
  height: 6px;
  width: 6px;
  background-color: #000000;
  border-radius: 4px;
  cursor: pointer;
}
input[type=range].seek-line__range:focus::-ms-fill-lower {
  background: #ffffff;
}
input[type=range].seek-line__range:focus::-ms-fill-upper {
  background: #ffffff;
}
.seek-line__range-blank {
    display: block;
    height: 1px;
    background-color: rgba(255,255,255,0.4);
    margin-top: 3px;
}
.seek-line.enabled .seek-line__range-blank { display: none; }
.seek-line.disabled .seek-line__range { display: none; }
*/





/* Progress bar */
/*
div.player .seek-line {
    position: absolute;
    left: 135px;
    top: 59px;
}
.seek-line {
    position: relative;
    width: 460px;
    height: 6px;
}
.seek-line__line {
    position: relative;
    top: 3px;
    height: 1px;
    background-color: #ff0000;
}
.seek-line__bullet {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 4px;
    border-radius: 3px;
    border: 1px #ff0000 solid;
    background-color: #000000;
    font-size: 0;
    line-height: 0;
}
*/

.progress_bar {
  position: absolute;
  width: 460px;
  height: 20px;
  left: 135px;
  top: 52px;
  opacity: 0.6;
  transition: opacity 0.2s linear;
}
.player.isTrack .progress_bar {
  cursor: pointer;
}
.player.isTrack .progress_bar:hover {
  opacity: 1;
}

.progress_bar__line {
   position: relative;
   top: 9px;
   height: 1px;
   background-color: #fff;
}
.progress_bar__trigger {
   width: 5px;
   height: 5px;
   border: 1px #fff solid;
   border-radius: 50%;
   background-color: #000;
   position: absolute;
   left: 0px;
   top: 6px;
}

.player:not(.isTrack) .progress_bar__trigger {
  display: none;
}





/* Volume bar */
.volume_bar {
  position: absolute;
  right: 32px;
  bottom: 10px;
  opacity: 0.6;
  transition: opacity 0.2s linear;
  cursor: pointer;
}
.volume_bar:hover {
  opacity: 0.8;
}
.volume_bar__icon {
  width: 20px;
  height: 20px;
}
.volume_bar__seeker {
  position: absolute;
  top: -45px;
  left: 0px;
  width: 20px;
  height: 45px;
  display: none;
}
.volume_bar__seeker-line {
  width: 1px;
  height: 45px;
  position: absolute;
  bottom: 0px;
  left: 9px;
  background-color: #777777;
}
.volume_bar__seeker-line-inner {
  width: 1px;
  height: calc(0.7*45px);
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: #ffffff;
}
/* === Volume bar === */












.player__on-air {
  position: absolute;
  right: 70px;
  top: 10px;
  font-family: Arial, serif;
  font-size: 12px;
  color: #d6d6d6;
  text-decoration: none;
  text-transform: lowercase;
  display: block;
  cursor: pointer;
}

.player__on-air_icon {
  width: 6px;
  height: 6px;
  border: 1px #d1cd00 solid;
  border-radius: 50%;
  display: inline-block;
}
.player__on-air .player__on-air_icon .inner {
  transition: all 0.2s linear;
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 50%;
  position: relative;
  left: 1px;
  top: 1px;
}

.player:not(.isTrack) .player__on-air_icon .inner{
  background-color: #FFF;
}

.player__on-air_text {
  display: inline-block;
}

.player__on-air:hover .player__on-air_text {
  color: #ffffff;
}
.player__on-air:hover .player__on-air_icon {
  border-color: #ffffff;
}
.player:not(.isTrack) .player__on-air {
  color: #d6d6d6;
}




/* other styles !!! needed to be added, but with no changing the main css file */
.caution {
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  /*width: 710px;*/
}

.caution__inner {
  padding: 40px 265px 10px 10px;
  width: 710px;
  text-align: left;
  margin: 0 auto;
}


header { z-index: 1012; }

div.backtotop { z-index: 1011; }
.preloading {
  display: none;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1010;
}

/* video player */

.player#vid_player {
  position: absolute;
  width: 670px;
  top: -180px;
  height: 180px;
  margin: 0;
  opacity: 0;
  transition: all 0.1s linear;
}

.vid_player .player#vid_player {
  position: absolute;
  top: 10px;
  height: 180px;
  opacity: 1;
}

.sticky.vid_player .player#vid_player {
  top: 10px;
  height: 180px;
}

.player#vid_player div.video {
  height: 180px;
  width: 350px;
  position: absolute;
  left: 160px;
  transition: all 0.2s linear;
  /*background: #252525;*/
  /*background: url(/img/white_noise.gif) 7px 0;*/
}

.sticky .player#vid_player div.video {
  height: 180px;
}

.player#vid_player .player__play-btn {
  margin: 50px 0 0 320px;
}

.sticky .player#vid_player .player__play-btn {
  margin-top: 15px;
}

.player#vid_player.status-pause .play-btn-icon {
    top: 6px;
    height: 40px;
    width: 40px;
    background-size: 35px;
}

.player#vid_player .close-btn {
   opacity: .4;
   position: absolute;
   margin: 0 0 0 540px;
   display: block;
   width: 12px;
   height: 12px;
   background: url(/img/close.svg) no-repeat;
   background-size: 12px;
   transition: all 0.2s linear;
}

.player#vid_player .fullscreen-btn {
   opacity: .4;
   position: absolute;
   margin: 0 0 0 520px;
   display: block;
   transform: rotateX(180deg);
   width: 12px;
   height: 12px;
   background: url(/img/full.svg) no-repeat;
   background-size: 12px;
   transition: all 0.2s linear;
}

.fullscreen .player#vid_player .fullscreen-btn {
   transform: rotateX(0deg);
}

.player#vid_player .volume_bar {
   opacity: .8;
   position: absolute;
   margin: 100px 0 0 520px;
   display: block;
   transition: all 0.2s linear;
   right: auto;
   bottom: auto;
}

.player#vid_player .skip_track-btn {
   opacity: .4;
   position: absolute;
   margin: 0;
   display: block;
   width: 20px;
   height: 20px;
   background: url(/img/skip-track.svg) no-repeat;
   background-size: 20px;
   transition: all 0.2s linear;
}

.player#vid_player .skip_track-btn.next {
   margin: 80px 0 0 535px;
}

.skip_track-btn:hover, .close-btn:hover, .fullscreen-btn:hover {
  opacity: .8!important;
}

.player#vid_player .skip_track-btn.prev {
   margin: 80px 0 0 115px;
   transform: rotateY(180deg);
}

.v-player__video {
  position: relative;
}

.v-player.status-ended .v-player__video {
  /*background: #252525 url(/img/white_noise.gif) 7px 0px;*/
}

.v-player .v-player__white-noise,
.v-player .v-player__vk-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #252525 url(/img/white_noise.gif) center;
  background-size: cover;
}

/* Статусы, при которых белый шум отключается  */
/*.v-player.status-buffering .v-player__white-noise,*/
.v-player.status-playing .v-player__white-noise,
.v-player.status-paused .v-player__white-noise,
.vk_video .v-player__white-noise {
  display: none;
}

body.vk_video .v-player__frame {
  display: none;
}

body:not(.vk_video) .v-player__vk-container {
  display: none;
}

body.vk_video .tracks li.playing .video_cover div {
  width: 45px;
  height: 45px;
  background: url(/img/play.svg) no-repeat;
  position: relative;
  top: 35px;
  left: 95px;
  opacity: .85
}

/*body.vk_video .tracks li.playing:after {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  top: 10px;
  width: 14px;
  height: 14px;
  background-image: url(/img/sound.svg);
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 0 2px;
  z-index: 2;
}*/

.v-player__frame,
.v-player__vk-container {
  transition: height 0.5s;
}

.v-player__frame,
.v-player__vk-container {
  height: 180px;
}

.sticky .v-player__frame,
.sticky .v-player__vk-container {
  height: 180px;
}

.v-player__overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  cursor: pointer;
}

.vid_player header.sticky .logo {
  background-position: 22px 22px;
  height: 420px;
}








/* video player in fullscreen mode*/

.fullscreen .player#vid_player {
  position: absolute;
  top: 25px!important;
  height: 400px!important;
}


.vid_player.fullscreen .v-player__frame,
.vid_player.fullscreen .v-player__vk-container {
  height: 520px;
}

.fullscreen .player#vid_player div.video {
  height: 520px;
  width: 940px;
  left: 0;
  transition: all 0.2s linear;
  background-size: 900px;
}

.fullscreen .player#vid_player .close-btn {
   opacity: .4;
   margin: 0 0 0 975px;
   width: 16px;
   height: 16px;
   background-size: 16px;
}

.fullscreen .player#vid_player .fullscreen-btn {
   opacity: .4;
   margin: 0 0 0 950px;
   width: 16px;
   height: 16px;
   background-size: 16px;
}

.fullscreen .player#vid_player .player__play-btn {
  margin: 215px 0 0 460px;
}

.fullscreen .player#vid_player.status-pause .play-btn-icon {
    top: 6px;
    height: 80px;
    width: 80px;
    background-size: 70px;
}

.vid_player.fullscreen header.sticky .logo {
  background-position: 22px -430px;
  height: 70px;
}


/* mobile devices */
@media only screen
  and (max-device-width: 568px)
  and (min-device-width: 320px)
{
  .vid_player header.sticky #vid_player .v-player__frame
  .vid_player header.sticky #vid_player .v-player__vk-container {
    left: 0;
    width: 100%;
    height: 180px;
    background-size: 100%
  }

  .vid_player header.sticky .logo {
      background-position: 10px -380px;
      height: 70px;
  }

 

  header.sticky div.player,
  div.player {
    top: 0px;
    right: 0px;
    width: 100%;
    margin: 0;
  }
  div.player div.track,
  header.sticky div.player div.track {
    padding-left: 90px;
    padding-right: 60px;
    width: auto;
  }
  .player__cover {
    display: none;
  }
  .player__play-btn {
    margin-left: 25px;
    margin-top: 25px;
  }
  .player__visualisation {
    top: 32px;
    left: 84px;
    right: 60px;
    overflow: hidden;
    width: 280px;
  }
  .player .progress_bar {
    top: 59px;
    left: 85px;
    right: 60px;
    width: 280px;
  }
  .player__on-air {
    right: auto;
    left: auto;
    right: 5px;
    width: 75px;
    top: 12px;
  }
  .volume_bar {
    display: none;
  }
  .volume_bar__seeker {
    opacity: 0;
    width: 0px;
  }

  .caution__inner {
    padding: 10px 10px 20px 10px;
    width: auto;
  }

}