/*  Стили "по умолчанию"  */

div#amplitude-player {
  /* background: #FFFFFF; */
  box-shadow: 0 2px 12px 8px rgba(0, 0, 0, 0.1);
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  max-height: 715px;
  transform: unset !important;
}

div#amplitude-left {
  padding: 0px;
  border-right: 1px solid #CFD8DC;
  width: 50%;
  display: flex;
  flex-direction: column;
}

div#amplitude-left img {
  width: 100%;
}

div#amplitude-left div#player-left-bottom {
  flex: 1;
  background-color: #F1F1F1;
  padding: 20px 10px;
}

div#amplitude-left div#player-left-bottom div#volume-container:after {
  content: "";
  display: table;
  clear: both;
}

div#amplitude-right {
  padding: 0px;
  overflow-y: scroll;
  width: 50%;
  display: flex;
  flex-direction: column;
}

div#amplitude-right div.song {
  cursor: pointer;
  padding: 10px;
}

div#amplitude-right div.song div.song-now-playing-icon-container {
  float: left;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

div#amplitude-right div.song div.song-now-playing-icon-container img.now-playing {
  display: none;
  margin-top: 15px;
}

div#amplitude-right div.song div.play-button-container {
  display: none;
  background: url("/img/amplitudejs/list-play-light.png") no-repeat;
  width: 22px;
  height: 22px;
  margin-top: 10px;
}

div#amplitude-right div.song div.play-button-container:hover {
  background: url("/img/amplitudejs/list-play-hover.png") no-repeat;
}

div#amplitude-right div.song.amplitude-active-song-container div.song-now-playing-icon-container img.now-playing {
  display: block;
}

div#amplitude-right div.song.amplitude-active-song-container:hover div.play-button-container {
  display: none;
}

div#amplitude-right div.song div.song-meta-data {
  float: left;
  width: calc( 100% - 110px);
}

div#amplitude-right div.song div.song-meta-data span.song-title {
  color: #272726;
  font-size: 16px;
  display: block;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

div#amplitude-right div.song div.song-meta-data span.song-artist {
  color: #607D8B;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

div#amplitude-right div.song img.bandcamp-grey {
  float: left;
  display: block;
  margin-top: 10px;
}

div#amplitude-right div.song img.bandcamp-white {
  float: left;
  display: none;
  margin-top: 10px;
}

div#amplitude-right div.song span.song-duration {
  float: left;
  width: 55px;
  text-align: center;
  line-height: 45px;
  color: #607D8B;
  font-size: 16px;
  font-weight: 500;
}

div#amplitude-right div.song:after {
  content: "";
  display: table;
  clear: both;
}

div#progress-container {
  width: 70%;
  float: left;
  position: relative;
  height: 20px;
  cursor: pointer;
}

/* IE 11 */

div#progress-container:hover input[type=range].amplitude-song-slider::-webkit-slider-thumb {
  display: block;
}

div#progress-container:hover input[type=range].amplitude-song-slider::-moz-range-thumb {
  visibility: visible;
}

div#progress-container progress#song-played-progress {
  width: 100%;
  position: absolute;
  left: 0;
  top: 8px;
  right: 0;
  width: 100%;
  z-index: 60;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 5px;
  background: transparent;
  border: none;
}

/* Needed for Firefox */

@media all and (-ms-high-contrast: none) {
  div#progress-container *::-ms-backdrop, div#progress-container progress#song-played-progress {
    color: #00A0FF;
    border: none;
    background-color: #CFD8DC;
  }
}

@supports (-ms-ime-align: auto) {
  div#progress-container progress#song-played-progress {
    color: #00A0FF;
    border: none;
  }
}

div#progress-container progress#song-played-progress[value]::-webkit-progress-bar {
  background: none;
  border-radius: 5px;
}

div#progress-container progress#song-played-progress[value]::-webkit-progress-value {
  background-color: #00A0FF;
  border-radius: 5px;
}

div#progress-container progress#song-played-progress::-moz-progress-bar {
  background: none;
  border-radius: 5px;
  background-color: #00A0FF;
  height: 5px;
  margin-top: -2px;
}

div#progress-container progress#song-buffered-progress {
  position: absolute;
  left: 0;
  top: 8px;
  right: 0;
  width: 100%;
  z-index: 10;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 5px;
  background: transparent;
  border: none;
  background-color: #D7DEE3;
}

div#progress-container progress#song-buffered-progress[value]::-webkit-progress-bar {
  background-color: #CFD8DC;
  border-radius: 5px;
}

div#progress-container progress#song-buffered-progress[value]::-webkit-progress-value {
  background-color: #78909C;
  border-radius: 5px;
  transition: width .1s ease;
}

div#progress-container progress#song-buffered-progress::-moz-progress-bar {
  background: none;
  border-radius: 5px;
  background-color: #78909C;
  height: 5px;
  margin-top: -2px;
}

div#progress-container progress::-ms-fill {
  border: none;
}

@-moz-document url-prefix() {
  div#progress-container progress#song-buffered-progress {
    top: 9px;
    border: none;
  }
}

@media all and (-ms-high-contrast: none) {
  div#progress-container *::-ms-backdrop, div#progress-container progress#song-buffered-progress {
    color: #78909C;
    border: none;
  }
}

@supports (-ms-ime-align: auto) {
  div#progress-container progress#song-buffered-progress {
    color: #78909C;
    border: none;
  }
}

div#progress-container input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 7.5px 0;
  position: absolute;
  z-index: 9999;
  top: -7px;
  height: 20px;
  cursor: pointer;
  background-color: inherit;
}

div#progress-container input[type=range]:focus {
  outline: none;
}

div#progress-container input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 0px;
  cursor: pointer;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  background: #0075a9;
  border-radius: 0px;
  border: 0px solid #010101;
}

div#progress-container input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #00a0ff;
  height: 15px;
  width: 15px;
  border-radius: 16px;
  background: #00a0ff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7.5px;
}

div#progress-container input[type=range]:focus::-webkit-slider-runnable-track {
  background: #00adfb;
}

div#progress-container input[type=range]::-moz-range-track {
  width: 100%;
  height: 0px;
  cursor: pointer;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  background: #0075a9;
  border-radius: 0px;
  border: 0px solid #010101;
}

div#progress-container input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #00a0ff;
  height: 15px;
  width: 15px;
  border-radius: 16px;
  background: #00a0ff;
  cursor: pointer;
}

div#progress-container input[type=range]::-ms-track {
  width: 100%;
  height: 0px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

div#progress-container input[type=range]::-ms-fill-lower {
  background: #003d57;
  border: 0px solid #010101;
  border-radius: 0px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
}

div#progress-container input[type=range]::-ms-fill-upper {
  background: #0075a9;
  border: 0px solid #010101;
  border-radius: 0px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
}

div#progress-container input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #00a0ff;
  height: 15px;
  width: 15px;
  border-radius: 16px;
  background: #00a0ff;
  cursor: pointer;
  height: 0px;
  display: block;
}

@media all and (-ms-high-contrast: none) {
  div#progress-container *::-ms-backdrop, div#progress-container input[type="range"].amplitude-song-slider {
    padding: 0px;
  }
  div#progress-container *::-ms-backdrop, div#progress-container input[type=range].amplitude-song-slider::-ms-thumb {
    height: 15px;
    width: 15px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: -8px;
  }
  div#progress-container *::-ms-backdrop, div#progress-container input[type=range].amplitude-song-slider::-ms-track {
    border-width: 15px 0;
    border-color: transparent;
  }
  div#progress-container *::-ms-backdrop, div#progress-container input[type=range].amplitude-song-slider::-ms-fill-lower {
    background: #CFD8DC;
    border-radius: 10px;
  }
  div#progress-container *::-ms-backdrop, div#progress-container input[type=range].amplitude-song-slider::-ms-fill-upper {
    background: #CFD8DC;
    border-radius: 10px;
  }
}

@supports (-ms-ime-align: auto) {
  div#progress-container input[type=range].amplitude-song-slider::-ms-thumb {
    height: 15px;
    width: 15px;
    margin-top: 3px;
  }
}

div#progress-container input[type=range]:focus::-ms-fill-lower {
  background: #0075a9;
}

div#progress-container input[type=range]:focus::-ms-fill-upper {
  background: #00adfb;
}

div#control-container {
  margin-top: 25px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

div#control-container div#repeat-container {
  width: 25%;
  float: left;
  padding-top: 5px;
}

div#control-container div#repeat-container div#repeat {
  width: 24px;
  height: 19px;
  cursor: pointer;
}

div#control-container div#repeat-container div#repeat.amplitude-repeat-off {
  background: url("/img/amplitudejs/repeat-off.svg");
}

div#control-container div#repeat-container div#repeat.amplitude-repeat-on {
  background: url("/img/amplitudejs/repeat-on.svg");
}

div#control-container div#repeat-container div#shuffle {
  width: 23px;
  height: 19px;
  cursor: pointer;
  float: right;
}

div#control-container div#repeat-container div#shuffle.amplitude-shuffle-off {
  background: url("/img/amplitudejs/shuffle-off.svg");
}

div#control-container div#repeat-container div#shuffle.amplitude-shuffle-on {
  background: url("/img/amplitudejs/shuffle-on.svg");
}

@media all and (-ms-high-contrast: none) {
  div#control-container *::-ms-backdrop, div#control-container div#control-container {
    margin-top: 40px;
    float: none;
  }
}

div#control-container div#central-control-container {
  width: 50%;
  float: left;
}

div#control-container div#central-control-container div#central-controls {
  width: 130px;
  margin: auto;
}

div#control-container div#central-control-container div#central-controls div#previous {
  display: inline-block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: url("/img/amplitudejs/prev.svg");
  background-repeat: no-repeat;
  float: left;
  margin-top: 10px;
  margin-right: -5px;
}

div#control-container div#central-control-container div#central-controls div#play-pause {
  display: inline-block;
  width: 60px;
  height: 60px;
  cursor: pointer;
  float: left;
}

div#control-container div#central-control-container div#central-controls div#play-pause.amplitude-paused {
  background: url("/img/amplitudejs/play.svg");
}

div#control-container div#central-control-container div#central-controls div#play-pause.amplitude-playing {
  background: url("/img/amplitudejs/pause.svg");
}

div#control-container div#central-control-container div#central-controls div#next {
  display: inline-block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: url("/img/amplitudejs/next.svg");
  background-repeat: no-repeat;
  float: left;
  margin-top: 10px;
  margin-left: -5px;
}

div#control-container div#volume-container {
  width: 25%;
  float: left;
  padding-top: 20px;
}

div#control-container div#volume-container div#shuffle-right {
  width: 23px;
  height: 19px;
  cursor: pointer;
  margin: auto;
}

div#control-container div#volume-container div#shuffle-right.amplitude-shuffle-off {
  background: url("/img/amplitudejs/shuffle-off.svg");
}

div#control-container div#volume-container div#shuffle-right.amplitude-shuffle-on {
  background: url("/img/amplitudejs/shuffle-on.svg");
}

div#control-container div.amplitude-mute {
  cursor: pointer;
  width: 25px;
  height: 19px;
  float: left;
}

div#control-container div.amplitude-mute.amplitude-not-muted {
  background: url("/img/amplitudejs/volume.svg");
  background-repeat: no-repeat;
}

div#control-container div.amplitude-mute.amplitude-muted {
  background: url("/img/amplitudejs/mute.svg");
  background-repeat: no-repeat;
}

div#control-container:after {
  content: "";
  display: table;
  clear: both;
}

div#amplitude-player div#repeat-container div#repeat {
  margin-left: 10px;
  margin-right: 20px;
  float: left;
}

div#amplitude-player div#volume-container div#shuffle-right {
  display: none;
}

input[type=range].amplitude-volume-slider {
  -webkit-appearance: none;
  width: calc( 100% - 33px);
  float: left;
  margin-top: 10px;
  margin-left: 5px;
}

@-moz-document url-prefix() {
  input[type=range].amplitude-volume-slider {
    margin-top: 0px;
  }
}

@supports (-ms-ime-align: auto) {
  input[type=range].amplitude-volume-slider {
    margin-top: 3px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0) !important;
    z-index: 999;
    position: relative;
  }
  div.ms-range-fix {
    height: 1px;
    background-color: #A9A9A9;
    width: 67%;
    float: right;
    margin-top: -6px;
    z-index: 9;
    position: relative;
  }
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, input[type=range].amplitude-volume-slider {
    margin-top: -24px;
    background-color: rgba(255, 255, 255, 0) !important;
  }
}

input[type=range].amplitude-volume-slider:focus {
  outline: none;
}

input[type=range].amplitude-volume-slider::-webkit-slider-runnable-track {
  width: 75%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  background: #CFD8DC;
}

input[type=range].amplitude-volume-slider::-webkit-slider-thumb {
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background: #00A0FF;
  cursor: pointer;
  margin-top: -4px;
  -webkit-appearance: none;
}

input[type=range].amplitude-volume-slider:focus::-webkit-slider-runnable-track {
  background: #CFD8DC;
}

input[type=range].amplitude-volume-slider::-moz-range-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  background: #CFD8DC;
}

input[type=range].amplitude-volume-slider::-moz-range-thumb {
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background: #00A0FF;
  cursor: pointer;
  margin-top: -4px;
}

input[type=range].amplitude-volume-slider::-ms-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  /*leave room for the larger thumb to overflow with a transparent border */
  border-color: transparent;
  border-width: 15px 0;
  /*remove default tick marks*/
  color: transparent;
}

input[type=range].amplitude-volume-slider::-ms-fill-lower {
  background: #CFD8DC;
  border-radius: 10px;
}

input[type=range].amplitude-volume-slider::-ms-fill-upper {
  background: #CFD8DC;
  border-radius: 10px;
}

input[type=range].amplitude-volume-slider::-ms-thumb {
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background: #00A0FF;
  cursor: pointer;
  margin-top: 2px;
}

input[type=range].amplitude-volume-slider:focus::-ms-fill-lower {
  background: #CFD8DC;
}

input[type=range].amplitude-volume-slider:focus::-ms-fill-upper {
  background: #CFD8DC;
}

input[type=range].amplitude-volume-slider::-ms-tooltip {
  display: none;
}

div#time-container span.current-time {
  color: #607D8B;
  font-size: 14px;
  font-weight: 700;
  float: left;
  width: 15%;
  text-align: center;
}

div#time-container span.duration {
  color: #607D8B;
  font-size: 14px;
  font-weight: 700;
  float: left;
  width: 15%;
  text-align: center;
}

div#time-container:after {
  content: "";
  display: table;
  clear: both;
}

div#meta-container {
  text-align: center;
  margin-top: 5px;
}

div#meta-container span.song-name {
  display: block;
  color: #272726;
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

div#meta-container div.song-artist-album {
  color: #607D8B;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

div#meta-container div.song-artist-album span {
  display: block;
}

body {
  /* height: 100vh; */
  /* -webkit-font-smoothing: antialiased; */
  /* font-family: Roboto,Arial,sans-serif; */
  /* line-height: 1.5;  */
}

/* Кастомные стили плейра */

/* цвет полоски за ползунком */

div#progress-container progress#song-played-progress[value]::-webkit-progress-value {
  background-color: #ff6541;
  border-radius: 5px;
}

/* цвет ползунка в прогресс-баре трека */

div#progress-container input[type=range]::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d;
  box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d;
  border: 1px solid #ff8a42;
  height: 15px;
  width: 15px;
  border-radius: 16px;
  background: #ff8a42;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7.5px;
}

/* ползунок громкости */

input[type=range].amplitude-volume-slider::-webkit-slider-thumb {
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background: #ff8a42;
  cursor: pointer;
  margin-top: -4px;
  -webkit-appearance: none;
}

#blue-playlist-container {
  margin-top: 0px !important;
  z-index: 1000;
  position: fixed;
  height: 140px;
  display: inline-block;
  bottom: 0 !important;
  width: 100% !important;
  transform: unset !important;
}

div#amplitude-player {
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 1180px !important;
  position: relative !important;
  padding: 0 !important;
  z-index: 9999;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-radius: 10px 10px 0px 0px;
  box-shadow: 0px 6px 12px 0px rgba(0, 1, 2, 0.5) !important;
  overflow: hidden;
  height: 140px;
  background: #f1f1f1 !important;
}

div#amplitude-left {
  width: 100% !important;
}

.my_player {
  display: flex;
  justify-content: space-between;
}

.player_сс_left {
  flex: 0 0 auto;
}

.player_сс_center {
  flex: 1 0 auto;
  margin-top: 30px !important;
  border-radius: 10px;
  background: #fff;
  height: 80px;
  width: 60%;
}

.player_сс_right {
  flex: 0 0 auto;
  width: 235px;
}

#central-control-container {
  width: 100% !important;
  float: left;
}

#central-controls {
  /* border: 1px solid red !important;	 */
  display: block;
  margin: 0 !important;
  padding: 10px 35px 0px 35px;
  width: 235px !important;
}

.amplitude-prev {
  margin-right: 10px !important;
}

.amplitude-next {
  margin-left: 10px !important;
}

#progress-container {
  margin-top: 18px;
}

.player_сс_center>span.current-time, .player_сс_center>span.duration {
  color: #666 !important;
  font-weight: normal !important;
  font-family: 'roboto_condensedlight', sans-serif;
  font-size: 16px !important;
  margin-top: 29px;
}

#meta-container {
  /* border: 1px solid red; */
}

#meta-container>.artist-name, #meta-container>.song-name {
  display: inline !important;
  color: #333333 !important;
  font-family: 'robotoregular', sans-serif !important;
  font-size: 16px !important;
}

#meta-container>.artist-name, #meta-container>.dash, #meta-container>.song-name {
  position: relative;
  top: -2px;
}

#volume-container {
  /* margin-top: 7px; */
  display: block;
  width: 155px !important;
  padding: 0px 0px 0px 25px !important;
}

.amplitude-volume-slider {
  float: right !important;
  outline: 0;
  margin-top: 9px !important;
  border: 1px solid #ddd;
}

#repeat-container {
  margin: auto 0 !important;
  /* border: 1px solid red; */
  text-align: center;
  width: 70px !important;
  padding: 0px 35px 0px 5px;
}

.amplitude-repeat {
  display: inline;
  margin: 0 !important;
  /* margin-left: 35px !important; */
}

.amplitude-shuffle {
  display: inline;
  margin-right: 35px !important;
  display: none !important;
}

.amplitude-repeat-on {
  color: red !important;
}

/* Плейлист на странице DEMO. Начало */

#amplitude-right {
  width: 100% !important;
  border: 1px solid #ff8a42;
  max-height: 166px;
  position: absolute;
  top: 279px;
  z-index: 9980;
  background: #f1f1f1;
  border-radius: 0px 0px 8px 8px;
  overflow: hidden;
  /* box-shadow: 0px 6px 12px 0px rgba(0, 1, 2, 0.5);  */
}

.album_item.demopage {
  height: 280px !important;
}

.ai_cover.demopage {
  top: 0px;
  border: 1px solid #f1f1f1;
}

.demo_active_album {
  border-radius: 8px 8px 0px 0px !important;
  border: 1px solid #ff8a42 !important;
}

.demo_active_album_img {
  border-radius: 8px 8px 0px 0px !important;
}

/* Прячем полосу прокрутки 
#amplitude-right::-webkit-scrollbar { width: 0; }
#amplitude-right { -ms-overflow-style: none; }
#amplitude-right { overflow: -moz-scrollbars-none; }
*/

#amplitude-right::-webkit-scrollbar {
  width: 4px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

#amplitude-right::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

#amplitude-right::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-color: #ff6541;
}

#amplitude-right>.song>.song-duration {
  color: #666 !important;
  font-weight: normal !important;
  font-family: 'roboto_condensedlight', sans-serif;
  font-size: 16px !important;
  float: right !important;
  width: 55px !important;
  text-align: right !important;
  margin-right: 10px !important;
}

#amplitude-right>.song {
  padding: 5px 5px 5px 5px !important;
  background: #f1f1f1 !important;
}

#amplitude-right>.amplitude-song-container {
  background: #f1f1f1 !important;
}

#amplitude-right>.amplitude-song-container:hover {
  background: #ff8a42 !important;
}

#amplitude-right>.song. .song-meta-data {
  color: #666 !important;
  width: 162px !important;
}

#amplitude-right>.song. .song-meta-data:hover {
  color: #fff !important;
}

#amplitude-right>.song:hover>.song-duration {
  color: #fff !important;
}

#amplitude-right>.song .song-title {
  padding-top: 3px !important;
}

#amplitude-right>.song .song-title {
  font-weight: bold !important;
}

#amplitude-right>.song .song-artist {
  font-weight: normal !important;
}

#amplitude-right>.song .song-title, #amplitude-right>.song .song-artist {
  font-family: 'roboto_condensedlight', sans-serif;
  font-size: 14px !important;
}

.song-now-playing-icon-container .now-playing {
  margin-top: 12px !important;
}

div#amplitude-right div.song div.play-button-container {
  margin-top: 12px !important;
}

div#control-container div#repeat-container div#repeat.amplitude-repeat-on {
  background: url(/img/amplitudejs/my-repeat-on.png) !important;
}

div#control-container div#repeat-container div#shuffle.amplitude-shuffle-on {
  background: url(/img/amplitudejs/my-shuffle-on.png) !important;
}

/* Плейлист на странице DEMO. Конец */

/* wave-form */

#jpSpeedControl {
  cursor: pointer;
  border: 1px solid #ff8a42;
  border-radius: 5px;
  font-size: 14px;
  padding: 2px 3px 3px 2px;
  width: 30px;
  font-size: 12px;
}

div.amplitude-wave-form {
  margin-top: -10px
}

div.amplitude-wave-form svg {
  stroke: #ff8a42;
  height: 50px;
  width: 100%;
  stroke-width: .5px
}

div.amplitude-wave-form svg g {
  stroke: #ff8a42;
  height: 50px;
  width: 100%
}

div.amplitude-wave-form svg g path {
  stroke: #ff8a42;
  height: 50px;
  width: 100%
}

#view_player {
  display: inline-block;
  width: 98px;
  height: 45px;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9998;
  border-radius: 5px 0px 0px 0px;
  box-shadow: 0px 6px 12px 0px rgba(0, 1, 2, 0.5) !important;
  overflow: hidden;
  background: url(/img/amplitudejs/mini-player.png) 7px 6px no-repeat #f1f1f1 !important;
  cursor: pointer;
}

#close_player {
  width: 13px;
  height: 11px;
  background: url(/img/amplitudejs/close-player.png) -3px -4px no-repeat #f1f1f1 !important;
  /* background: #000; */
  position: absolute;
  z-index: 9999;
  right: 12px;
  top: 12px;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

#close_player:hover {
  background: url(/img/amplitudejs/close-player-hover.png) -3px -4px no-repeat #f1f1f1 !important;
  transition: all 0.2s ease-out;
}

#minimize_player {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 9999;
  right: 36px;
  top: 12px;
  cursor: pointer;
  width: 13px;
  height: 11px;
}

#minimize_player span {
  width: 13px;
  height: 2px;
  background-color: #607d8b;

  transition: all 0.2s ease-out;
}

#minimize_player:hover  span{
  background-color: #ff8a42;
  transition: all 0.2s ease-out;
}

/* Кастомные стили плеера. Конец */

@media screen and (max-width: 1200px) {
  #blue-playlist-container {
    padding: 0 10px;
  }
  .player_сс_center {
    width: 34% !important;
  }
}

@media screen and (max-width: 1024px) {
  #blue-playlist-container {
    width: 100% !important;
    /* transform: translateX(10px); */
  }
  div#amplitude-player {
    width: 100% !important;
    /* transform: translateX(-25px); */
  }
  .player_сс_center {
    width: 40% !important;
  }
}

@media screen and (max-width: 960px) {
  #blue-playlist-container {
    width: 100% !important;
    transform: translateX(10px);
  }
  div#amplitude-player {
    width: 100% !important;
    /* transform: translateX(-25px); */
  }
}

@media screen and (max-width: 768px) {
  #secondary_block_container {
    width: 100% !important;
  }
  #blue-playlist-container {
    width: 100% !important;
    transform: translateX(10px);
  }
  div#amplitude-player {
    width: 100% !important;
    transform: translateX(-25px);
  }
  .player_сс_right {
    display: none !important;
  }
  #central-controls {
    display: block;
    margin: 0 !important;
    padding: 20px 15px 0px 15px !important;
    width: 178px !important;
  }
  div#control-container div#central-control-container div#central-controls div#previous {
    /* display: none; */
  }
  div#control-container div#central-control-container div#central-controls div#next {
    /* display: none; */
  }
  #time-container {
    margin-right: 15px;
  }
  .amplitude-prev {
    margin-right: 3px !important;
  }
  .amplitude-next {
    margin-left: 3px !important;
  }
}

@media screen and (max-width: 640px) {
  #blue-playlist-container {
    height: 190px !important;
  }
  #secondary_block_container {
    width: 100% !important;
  }
  #blue-playlist-container {
    width: 100% !important;
  }
  div#amplitude-player {
    width: 100% !important;
    height: 190px !important;
    /* max-width: 600px !important;  */
  }
  .my_player {
    flex-wrap: wrap !important;
  }
  .player_сс_right {
    display: none !important;
  }
  .player_сс_center {
    margin-right: 15px !important;
    margin-left: 15px !important;
    display: inline-block !important;
    width: 70% !important;
    min-width: 250px !important;
    margin-top: 14px !important;
  }
  div#central-control-container {
    float: none;
  }
  #central-controls {
    display: block;
    margin: 0 !important;
    padding: 20px 5px 0px 5px !important;
    width: 100% !important;
  }
  #control-container {
    margin-top: 0px !important;
    margin: 0 auto;
  }
  .current-time {
    /* display: none; */
    font-size: 14px !important;
    float: left !important;
    width: 13%;
    margin-top: 20px !important;
    margin-left: 4px !important;
  }
  #progress-container {
    margin-left: 15px !important;
  }
  #meta-container {
    display: inline-block;
    width: 100%;
    min-width: 300px;
  }
  .album_item.demopage {
    height: 280px !important;
    position: relative !important;
  }
  #meta-container .artist-name, #meta-container .song-name {
    font-size: 14px !important;
  }
  div#time-container span.duration {
    font-size: 14px !important;
    float: right !important;
    width: 12%;
    margin-top: 20px !important;
    margin-right: 4px !important;
  }
  #progress-container {
    width: 64% !important;
  }
  div#control-container div#central-control-container div#central-controls div#previous, div#control-container div#central-control-container div#central-controls div#next {
    display: inline;
  }
  div#control-container div#central-control-container div#central-controls div#play-pause {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/** Хаки для Мозиллы. **/

@-moz-document url-prefix() {
  .amplitude-volume-slider {
    border: 0;
    background: transparent;
    position: relative;
    top: -10px;
  }
  #repeat-container {
    position: relative;
    top: -10px;
  }
}

/** Хаки для IE. **/

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .amplitude-volume-slider {
    border: 0;
    background: transparent;
    position: relative;
    top: -16px;
    padding: 0px;
  }
  #repeat-container {
    position: relative;
    top: -16px;
  }
  p.h2_text {
    font-weight: normal;
  }
}
