@import "main.css";
.menu {
  position: fixed;
  top: 0;
  height: 100%;
  left: 0;
  width: 350px;
  z-index: 1;
  transform: translate3d(0, 0, 1px);
  padding-top: 80px;
}
.menu .menu-block {
  padding: 0 20px;
}
.menu .menu-block__item {
  color: #000;
  cursor: pointer;
  padding: 4px 0;
  font-size: 18px;
}
.menu .menu-block__item--active {
  font-weight: bold;
}
.menu .menu-block__item .icons {
  display: none;
}
.menu .menu-block__item .icons.show {
  display: inline-block;
}
.menu .menu-block__item .icons .icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  vertical-align: middle;
  -webkit-transition: 0.2s transform ease, 0.2s opacity ease;
  -moz-transition: 0.2s all ease;
  -ms-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s transform ease, 0.2s opacity ease;
}
.menu .menu-block__item .icons .icon:hover {
  opacity: 0.8;
}
.menu .menu-block__item .icons .icon:focus,
.menu .menu-block__item .icons .icon:active {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0.8;
}
.menu .menu-block__item .icons .icon_play.state_play {
  background: url("../img/icon_play@2.png") no-repeat center;
  background-size: contain;
}
.menu .menu-block__item .icons .icon_play.state_pause {
  background: url("../img/icon_pause@2.png") no-repeat center;
  background-size: contain;
}
.menu .menu-block__item .icons .icon_download {
  background: url("../img/icon_download@2.png") no-repeat center;
  background-size: contain;
}
.content {
  text-align: justify;
  padding-bottom: 200px;
}
body {
  padding: 80px 0;
  scrollbar-width: none;
}
[v-cloak] {
  display: none;
}
::-webkit-scrollbar {
  display: none;
}
.player {
  position: fixed;
  width: 100%;
  height: 170px;
  bottom: 0;
  left: 0;
  background: white;
  text-align: center;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
  z-index: 3;
}
.player:after,
.player:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: -100px;
}
.player:before {
  left: 0;
  border-left: 0 solid transparent;
  border-right: 100vw solid transparent;
  border-bottom: 70px solid rgba(255, 255, 255, 0.99);
  top: -70px;
}
.player.hide {
  bottom: -170px;
}
.player .label {
  text-transform: lowercase;
  margin-top: 18px;
  color: #6c6c6c;
}
.player .controls {
  margin: 70px auto 0;
  user-select: none;
}
.player .controls input {
  background: transparent;
  width: 93%;
  padding: 0 18px;
  margin: 0 auto;
  -webkit-appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.player .controls input::-webkit-slider-runnable-track {
  height: 1px;
  width: 100%;
  border-radius: 5px;
  background: #6c6c6c;
}
.player .controls input::-webkit-slider-thumb {
  -webkit-appearance: none;
  /* Override default look */
  appearance: none;
  cursor: pointer;
  background: black;
  /* #147829 */
  background-size: contain;
  width: 8px;
  height: 20px;
  position: relative;
  top: -10px;
}
.player .controls .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: 6px;
  vertical-align: middle;
  -webkit-transition: 0.2s transform ease, 0.2s opacity ease;
  -moz-transition: 0.2s all ease;
  -ms-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s transform ease, 0.2s opacity ease;
}
.player .controls .icon:hover {
  opacity: 0.8;
}
.player .controls .icon:focus,
.player .controls .icon:active {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0.8;
}
.player .controls .icon_play.state_play {
  background: url("../img/icon_play@2.png") no-repeat center;
  background-size: contain;
}
.player .controls .icon_play.state_pause {
  background: url("../img/icon_pause@2.png") no-repeat center;
  background-size: contain;
}
.player .controls .icon_download {
  background: url("../img/icon_download@2.png") no-repeat center;
  background-size: contain;
}
/*# sourceMappingURL=style.css.map */