 .player {
  height: 170px;
  width: 100%;
  background-color: #FBB845;
  margin-top: -1px;
}
.cover {
  width: 170px;
  float: left;
}
.cover img {
  height: 170px;
  width: 170px;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
  -webkit-filter: grayscale(1);
  opacity: .7;
}
.info {
  width: calc(100% - 170px);
  margin-left: 170px;
}
.slider {
  width: 100%;
  height: 12px;
  background-color: rgba(0,0,0,.2);
  border-radius: 0;
  cursor:pointer;
}

.slider div {
  width: 4px;
  height: 12px;
  margin-top: 1px;
  background-color: rgba(0,0,0,.5);
  border-radius: 0;
}
.timer_wrapper {
  width: 100%;
  display: block;
  overflow: hidden;
}
.timer-run {
  width: 50%;
  display: block;
  float: left;
  color: #fff;
  font-weight: 700;
  padding-left: 15px;
  font-size: 12px;
}
.timer {
  width: 50%;
  display: block;
  float: right;
  color: #fff;
  font-weight: 700;
  padding-right: 15px;
  text-align: right;
  font-size: 12px;
}
.play_icon {
  padding: 9px 0px 0px 0px;
  display: block;
  width: 48px;
  height: 48px;
  text-align: center;
  border: 1px solid #252525;
  border-radius: 50px;
  -webkit-box-sizing: initial;
  box-sizing: initial;
  margin: 0 auto;
  transition: 0.4s;
}
.play_icon:hover{
  border: 1px solid #fff;
}
.controls {
  margin-top: 20px;
}

.controls svg:nth-child(2) {
  margin-left: 5px;
  margin-right: 5px;
}

.play {
  padding: 0 3px;
  width: 30px;
  height: 30px;
  x: 0px;
  y: 0px;
  enable-background: new 0 0 25 25;
}

.play g {
  stroke: #252525;
  stroke-width: 1;
  stroke-miterlimit: 10;
}

.play g path {
  fill: #252525;
}

.play:hover {
  cursor: pointer;
}

.play_icon:hover g {
  stroke: #FFFFFF;
  cursor: pointer;
}

.play_icon:hover g path {
  fill: #FFFFFF !important;
  cursor: pointer;
}
.play_icon:hover #play g{
  stroke: #FFFFFF;
}
.step-backward {
  width: 18px;
  height: 18px;
  x: 0px;
  y: 0px;
  enable-background: new 0 0 25 25;
  margin-bottom: 5px;
}

.step-backward g polygon {
  fill: #FEFEFE;
}

.step-foreward {
  width: 18px;
  height: 18px;
  x: 0px;
  y: 0px;
  enable-background: new 0 0 25 25;
  margin-bottom: 5px;
}

.step-foreward g polygon {
  fill: #FEFEFE;
}

.pause {
  x: 0px;
  y: 0px;
  enable-background: new 0 0 25 25;
  width: 30px;
  height: 30px;
  position: absolute;
  margin-left: -31px !important;
  cursor: pointer;
}

.pause rect {
  fill: #252525;
}

.pause:hover rect {
  fill: #FFFFFF;
}

.step-backward g polygon:hover, .step-foreward g polygon:hover {
  fill: #EF6DBC;
  cursor: pointer;
}


.skip {
  float: right;
  margin-top: 10px;
}

.skip p {
  color: #2980b9;
}

.skip p:hover {
  color: #e74c3c;
  cursor: pointer;
}

.expend {
  padding: 0.5px;
  cursor: pointer;
}

.expend svg:hover g polygon {
  fill: #EF6DBC;
}