.content-player {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100000;
  -webkit-transform: translateY(-140%);
          transform: translateY(-140%);
  height: 90px;
  width: 100%;
  max-width: 1000px;
  background: #fff;
  padding: 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  margin-left: -28px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.content-player.init {
  -webkit-transform: none;
          transform: none;
}

@media only screen and (max-width: 800px) {
  .content-player {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 20px;
    width: 100% !important;
    top: unset;
    left: 0 !important;
    bottom: 0;
    margin-left: 0;
    -webkit-transform: translateY(140%);
            transform: translateY(140%);
  }
}

.content-player #close {
  position: absolute;
  left: -50px;
  top: 10px;
  z-index: 100;
  width: 30px;
  height: 30px;
  border: 0;
  text-align: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
  outline: none;
  text-indent: -9999px;
  background-image: url("./img/close.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 980px) {
  .content-player #close {
    top: 110%;
    right: 0;
    left: unset;
  }
}

@media only screen and (max-width: 800px) {
  .content-player #close {
    top: -45px;
    right: 10px;
    left: unset;
  }
}

.audio-player {
  width: 100%;
  color: #555;
  font-size: 0.75em;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 6px auto;
      grid-template-rows: 6px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.audio-player .audio-name {
  float: left;
  width: 100%;
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 100;
}

.audio-player .audio-name span {
  font-weight: bold;
  color: #002395;
}

@media only screen and (max-width: 800px) {
  .audio-player .audio-name {
    font-size: 14px;
  }
}

.audio-player .player {
  position: relative;
  min-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.audio-player .time-wrapper {
  min-width: calc(100% - 65px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 800px) {
  .audio-player .time-wrapper {
    width: calc(100% - 50px);
  }
}

.audio-player .timeline {
  float: left;
  background: #ccc;
  width: 100%;
  height: 5px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.audio-player .timeline .progress {
  background: #06AEEF;
  width: 0%;
  height: 100%;
  border-radius: 4px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.audio-player .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0 20px;
  position: absolute;
  right: -20px;
  top: -10px;
}

.audio-player .controls > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.audio-player .controls .toggle-play {
  width: 25px;
  height: 25px;
  position: relative;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (max-width: 800px) {
  .audio-player .controls .toggle-play {
    margin-top: 5px;
  }
}

.audio-player .controls .toggle-play.play {
  left: 0;
  background-image: url("./img/play.svg");
}

.audio-player .controls .toggle-play.pause {
  background-image: url("./img/pause.svg");
}

.audio-player .time {
  width: 100%;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 12px;
  font-weight: normal;
}

.audio-player .time > * {
  padding: 2px;
}

.content-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  float: left;
  padding: 0 0 0 30px;
  margin-left: 30px;
  border-left: 1px solid #ccc;
  height: 100%;
}

@media only screen and (max-width: 800px) {
  .content-navigation {
    border-left: 0;
    border-bottom: 1px solid #ccc;
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.content-navigation button {
  width: 25px;
  height: 25px;
  outline: none;
  cursor: pointer;
  background-image: url("./img/play.svg");
  background-size: contain;
  background-repeat: no-repeat;
  border: 0;
  background-color: transparent;
}

.content-navigation button#prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.content-navigation button.disable {
  opacity: 0.3;
  cursor: default;
}

.content-navigation #current {
  font-size: 36px;
  font-weight: bold;
  padding: 0 46px;
  color: #002395;
}

.content-navigation #current:before {
  content: 'chapter ';
  margin-right: 10px;
  font-weight: 300;
  font-size: 16px !important;
  display: none;
}

@media only screen and (max-width: 800px) {
  .content-navigation #current:before {
    display: block;
  }
}

@media only screen and (max-width: 800px) {
  .content-navigation #current {
    font-size: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#contenthighlight {
  opacity: 0;
  position: absolute;
  z-index: -1;
  margin-left: -28px;
  margin-top: -15px;
  background: rgba(255, 255, 255, 0);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 0 6000px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 0 6000px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.8);
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

#contenthighlight:before {
  counter-reset: variable var(--currentChapter);
  content: counter(variable);
  position: absolute;
  top: 50px;
  left: 0;
  width: 60px;
  height: 60px;
  background: #06AEEF;
  margin-left: -80px;
  border-radius: 5px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 980px) {
  #contenthighlight:before {
    top: -80px;
    left: 80px;
    margin-left: -80px;
  }
}

#contenthighlight:after {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  margin-left: -20px;
  margin-top: 20px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #06AEEF;
}

@media only screen and (max-width: 980px) {
  #contenthighlight:after {
    top: -50px;
    margin-left: 20px;
    margin-top: 24px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@media only screen and (max-width: 800px) {
  #contenthighlight {
    display: none;
  }
}

.content {
  counter-reset: section;
}

.content .highlight {
  position: relative;
}

.content .highlight:before {
  counter-increment: section;
  content: counter(section);
  width: 40px;
  height: 40px;
  background: #06AEEF;
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  display: none;
  position: absolute;
  top: 65px;
  left: 10px;
}

.content .highlight:after {
  content: '';
  position: absolute;
  top: 105px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #06AEEF;
  display: none;
}

@media only screen and (max-width: 800px) {
  .init .content .highlight:before, .init .content .highlight:after {
    display: block;
  }
}

body.init .content .section {
  padding-top: 60px !important;
}
/*# sourceMappingURL=player.css.map */