@charset "utf-8";

#lnb_07 {display:none !important;}

.btn_scroll_top {display:none !important;}



.audio-player {
  display:none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2000;
  width: 100%;
  height: 50px;
  background: #02244d;
  font-family: arial;
  color: white;
  font-size: 0.75em;
  overflow: hidden;
}

.player {
	max-width: 1400px;
	margin: 0 auto;
	height: 50px;
}
.audio-player .timeline {
  width: 80%;
  height: 10px;
  margin: 20px 10px;
  cursor: pointer;
  justify-content: left !important;
  box-shadow: 0 2px 10px 0 #0008;
}
.audio-player .timeline .progress {
  background: coral;
  width: 0%;
  height: 100%;
  transition: 0.25s;
}
.audio-player .controls {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 50px;
}
.audio-player .controls > * {
  display: flex;
  justify-content: center;
  align-items: center;
}
.audio-player .name {
    width: 30%;
    background-color: #3b5b7e;
    padding: 5px;
    line-height: 1.2em;
}
.audio-player .controls .toggle-play.play {
  cursor: pointer;
  position: relative;
  left: 0;
  height: 0;
  width: 0;
  border: 7px solid #0000;
  border-left: 13px solid white;
  margin-left: 30px;
}
.audio-player .controls .toggle-play.play:hover {
  transform: scale(1.1);
}
.audio-player .controls .toggle-play.pause {
  height: 15px;
  width: 20px;
  cursor: pointer;
  position: relative;
  margin-left: 30px;
}
.audio-player .controls .toggle-play.pause:before {
  position: absolute;
  top: 0;
  left: 0px;
  background: white;
  content: "";
  height: 15px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:after {
  position: absolute;
  top: 0;
  right: 8px;
  background: white;
  content: "";
  height: 15px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:hover {
  transform: scale(1.1);
}
.audio-player .controls .time {
  display: flex;
}
.audio-player .controls .time > * {
  padding: 2px;
}
.audio-player .controls .volume-container {
  cursor: pointer;
  position: relative;
  z-index: 2;
  margin-left: 20px;
}
.audio-player .controls .volume-container .volume-button {
  height: 26px;
  display: flex;
  align-items: center;
}
.audio-player .controls .volume-container .volume-button .volume {
  transform: scale(0.7);
}
.audio-player .controls .volume-container .volume-button .volume:after {
  box-sizing: content-box;
}
.audio-player .controls .volume-container .volume-slider {
  position: absolute;
  left: -3px;
  top: 18px;
  z-index: -1;
  width: 0;
  height: 15px;
  background: white;
  box-shadow: 0 0 20px #000a;
  transition: 0.25s;
}
.audio-player .controls .volume-container .volume-slider .volume-percentage {
  background: coral;
  height: 100%;
  width: 75%;
}
.audio-player .controls .volume-container:hover .volume-slider {
  left: -123px;
  width: 120px;
}

@media screen and (max-width: 679px) {
   .audio-player .name {
    width: 900px;
    line-height: 1.2em;
    padding: 5px;
	}
}