.player-controls {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.player-controls-time-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: inherit;
  height: 2px;
  border-radius: 1px;
  background-color: #00b3ff;
  transition: width 0.3s linear;
}

.player-controls .error-message {
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
}

.player-controls .error-message-background {
  width: inherit;
  height: inherit;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -ms-filter: blur(2px);
  -o-filter: blur(2px);
  filter: blur(2px);
}

.player-controls .error-message span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  font-size: 18px;
  color: red;
}

.player-controls-loading {
  width: inherit;
  height: inherit;
  display: inline-block;
  position: relative;
  background: url("/img/vendor/blueimp-gallery/loading.gif") center no-repeat;
  background-size: 64px 64px;
}

.player-controls__pause-button {
  visibility: hidden;
}

.player-controls__play-button {
  width: inherit;
  height: inherit;
  display: inline-block;
  position: relative;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.player-controls__play-button svg.icon {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  background-color: aqua;
  border-radius: 50%;
  width: 6.5rem;
  height: 6.5rem;
}

.player-controls__play-button svg.icon:hover {
  background-color: #00e6e6;
}

.player-controls__play-button:focus svg.icon, .player-controls__play-button:active svg.icon {
  outline: 0;
  box-shadow: 0 0 0 2px #4c9aff;
}

.player-controls__player-tools {
  transition: bottom 0.3s ease-in-out;
  box-sizing: border-box;
  width: inherit;
  height: auto;
  position: absolute;
  bottom: -38px;
  left: 0;
  padding: 10px;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

.player-controls__player-tools-active {
  bottom: 0;
}

.player-controls__player-progress-bar input[type='range'] {
  width: 100%;
  cursor: pointer;
}

.player-controls__player-func {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #fff;
}

.player-controls__player-func span,
.player-controls__player-func a {
  padding: 0 5px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.player-controls__player-func--right {
  text-align: right;
  display: flex;
  align-items: center;
}

.player-controls__player-func--right__volume, .player-controls__player-func--right__fullscreen {
  font-size: 20px;
  cursor: pointer;
}

.player-controls__player-func--right .active {
  color: #77f37787;
}

.player-controls__player-func--right__cc {
  padding: 0;
}

.player-controls__player-func--right__cc span {
  background-color: #969696;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  border-radius: 5px;
  vertical-align: super;
}

.player-controls__player-func--right__cc.cc-active span {
  background-color: #fff;
  color: #000;
}

.player-controls .view-count {
  position: absolute;
  right: 0;
  bottom: 0;
}

.player-controls .view-count [data-act='view_content_video'] {
  padding: 7.5px;
  color: #fff;
}

.player-controls .fade-enter-active,
.player-controls .fade-leave-active {
  transition: opacity 0.5s;
}

.player-controls .fade-enter,
.player-controls .fade-leave-to {
  opacity: 0;
}

@keyframes playerToolsAnimation {
  to {
    bottom: -38px;
  }
}

/*# sourceMappingURL=http://127.0.0.1/css/course-path/components/cn-player/player-controls.css.map */
