@-webkit-keyframes plyr-progress {
  to {
    background-position: 40px 0;
  }
}
@-o-keyframes plyr-progress {
  to {
    background-position: 40px 0;
  }
}
@keyframes plyr-progress {
  to {
    background-position: 40px 0;
  }
}
.plyr {
  position: relative;
  min-width: 290px;
  max-width: 100%;
}
.plyr,
.plyr *,
.plyr *::after,
.plyr *::before {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.plyr a,
.plyr button,
.plyr input,
.plyr label {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}
.plyr__sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  border: 0 !important;
}
.plyr__video-wrapper {
  position: relative;
}
.plyr video,
.plyr audio {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.plyr video::-webkit-media-text-track-container {
  display: none;
}
.plyr__video-embed {
  /* 16:9 */
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #000;
}
.plyr__video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 0;
}
.plyr__video-embed > div {
  position: relative;
  padding-bottom: 200%;
  -webkit-transform: translateY(-35.95%);
      -ms-transform: translateY(-35.95%);
       -o-transform: translateY(-35.95%);
          transform: translateY(-35.95%);
}
.plyr__video-embed.plyr iframe {
  pointer-events: none;
}
.plyr__captions {
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  padding: 20px 20px 30px;
  font-size: 18px;
  color: #fff;
  text-align: center;

  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.plyr__captions span {
  padding: 3px 10px;
  background: rgba(0, 0, 0, .9);
  border-radius: 2px;
}
.plyr__captions span:empty {
  display: none;
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: 21px;
  }
}
.plyr--captions-active .plyr__captions {
  display: block;
}
.plyr--fullscreen-active .plyr__captions {
  font-size: 28px;
}
.plyr__controls {
  position: relative;
  padding: 10px;
  line-height: 1;
  text-align: center;
  background: #fff;
  -webkit-box-shadow: 0 1px 1px rgba(52, 63, 74, .2);
          box-shadow: 0 1px 1px rgba(52, 63, 74, .2);

  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.plyr__controls::after {
  display: table;
  clear: both;
  content: '';
}
.plyr__controls--right {
  display: block;
  margin: 10px auto 0;
}
@media (min-width: 560px) {
  .plyr__controls--left {
    float: left;
  }
  .plyr__controls--right {
    float: right;
    margin-top: 0;
  }
}
.plyr__controls button {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 2px;
  overflow: hidden;
  color: #bdbdbd;
  vertical-align: middle;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 3px;
  -webkit-transition: background .3s ease, color .3s ease, opacity .3s ease;
       -o-transition: background .3s ease, color .3s ease, opacity .3s ease;
          transition: background .3s ease, color .3s ease, opacity .3s ease;
}
.plyr__controls button svg {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transition: fill .3s ease;
       -o-transition: fill .3s ease;
          transition: fill .3s ease;

  fill: currentColor;
}
.plyr__controls button.tab-focus:focus,
.plyr__controls button:hover {
  color: #fff;
  background: #3f51b5;
}
.plyr__controls button:focus {
  outline: 0;
}
.plyr__controls .icon--exit-fullscreen,
.plyr__controls .icon--muted,
.plyr__controls .icon--captions-on {
  display: none;
}
.plyr__controls .plyr__time {
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #bdbdbd;
  vertical-align: middle;
}
.plyr__controls .plyr__time + .plyr__time {
  display: none;
}
@media (min-width: 560px) {
  .plyr__controls .plyr__time + .plyr__time {
    display: inline-block;
  }
}
.plyr__controls .plyr__time + .plyr__time::before {
  margin-right: 10px;
  content: '\2044';
}
.plyr__tooltip {
  position: absolute;
  bottom: 100%;
  z-index: 2;
  padding: 10px 15px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: #bdbdbd;
  visibility: hidden;
  background: #fff;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 5px rgba(64, 64, 64, .1), 0 0 0 1px rgba(64, 64, 64, .1);
          box-shadow: 0 0 5px rgba(64, 64, 64, .1), 0 0 0 1px rgba(64, 64, 64, .1);
  opacity: 0;
  -webkit-transition: -webkit-transform .2s .1s ease, opacity .2s .1s ease, visibility .3s ease;
       -o-transition:      -o-transform .2s .1s ease, opacity .2s .1s ease, visibility .3s ease;
          transition:         transform .2s .1s ease, opacity .2s .1s ease, visibility .3s ease;
  -webkit-transform: translate(-50%, 10px) scale(.8);
      -ms-transform: translate(-50%, 10px) scale(.8);
       -o-transform: translate(-50%, 10px) scale(.8);
          transform: translate(-50%, 10px) scale(.8);
  -webkit-transform-origin: 50% 100%;
      -ms-transform-origin: 50% 100%;
       -o-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
}
.plyr__tooltip::after,
.plyr__tooltip::before {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  content: '';
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.plyr__tooltip::after {
  bottom: -8px;
  z-index: 1;
  border-top: 7px solid rgba(64, 64, 64, .2);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}
.plyr__tooltip::before {
  bottom: -6px;
  z-index: 2;
  border-top: 6px solid #fff;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}
.plyr button:hover .plyr__tooltip,
.plyr button.tab-focus:focus .plyr__tooltip,
.plyr__tooltip--visible {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, 0) scale(1);
      -ms-transform: translate(-50%, 0) scale(1);
       -o-transform: translate(-50%, 0) scale(1);
          transform: translate(-50%, 0) scale(1);
}
.plyr button:hover .plyr__tooltip {
  z-index: 3;
}
.plyr input[type='range']::-ms-tooltip {
  display: none;
}
.plyr input[type='range'].tab-focus:focus {
  outline: 1px dotted rgba(52, 63, 74, .8);
  outline-offset: 3px;
}
.plyr__progress {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(158, 158, 158, .2);
}
.plyr__progress--buffer[value],
.plyr__progress--played[value],
.plyr__progress--seek[type='range'] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  -webkit-appearance: none;
  padding: 0;
  margin: 0;
  vertical-align: top;
  background: transparent;
  border: none;

     -moz-appearance: none;
}
.plyr__progress--buffer[value]::-webkit-progress-bar,
.plyr__progress--played[value]::-webkit-progress-bar {
  background: transparent;
  -webkit-transition: width .2s ease;
          transition: width .2s ease;
}
.plyr__progress--buffer[value]::-webkit-progress-value,
.plyr__progress--played[value]::-webkit-progress-value {
  background: currentColor;
  -webkit-transition: width .2s ease;
          transition: width .2s ease;
}
.plyr__progress--buffer[value]::-moz-progress-bar,
.plyr__progress--played[value]::-moz-progress-bar {
  background: currentColor;
  transition: width .2s ease;
}
.plyr__progress--played[value] {
  z-index: 2;
  color: #3f51b5;
}
.plyr__progress--buffer[value] {
  color: rgba(158, 158, 158, .25);
}
.plyr__progress--seek[type='range'] {
  z-index: 4;
  cursor: pointer;
  outline: 0;
}
.plyr__progress--seek[type='range']::-webkit-slider-runnable-track {
  background: none;
  border: 0;
}
.plyr__progress--seek[type='range']::-webkit-slider-thumb {
  width: 1px;
  height: 10px;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
}
.plyr__progress--seek[type='range']::-moz-range-track {
  background: none;
  border: 0;
}
.plyr__progress--seek[type='range']::-moz-range-thumb {
  width: 1px;
  height: 10px;
  background: transparent;
  border: 0;

  -moz-appearance: none;
}
.plyr__progress--seek[type='range']::-ms-track {
  color: transparent;
  background: none;
  border: 0;
}
.plyr__progress--seek[type='range']::-ms-fill-lower,
.plyr__progress--seek[type='range']::-ms-fill-upper {
  background: none;
  border: 0;
}
.plyr__progress--seek[type='range']::-ms-thumb {
  width: 1px;
  height: 10px;
  background: transparent;
  border: 0;
}
.plyr__progress--seek[type='range']:focus {
  outline: 0;
}
.plyr__progress--seek[type='range']::-moz-focus-outer {
  border: 0;
}
.plyr__progress .plyr__tooltip {
  left: 0;
}
.plyr--is-touch .plyr--seek[type='range']::-webkit-slider-thumb {
  width: 40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.plyr--is-touch .plyr--seek[type='range']::-moz-range-thumb {
  width: 40px;
  transform: translateX(-50%);
}
.plyr--is-touch .plyr--seek[type='range']::-ms-thumb {
  width: 40px;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.plyr--loading .plyr__progress--buffer {
  color: transparent;
  background-color: rgba(158, 158, 158, .25);
  background-image: -webkit-linear-gradient(135deg, rgba(0, 0, 0, .15) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, .15) 50%, rgba(0, 0, 0, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(135deg, rgba(0, 0, 0, .15) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, .15) 50%, rgba(0, 0, 0, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(-45deg, rgba(0, 0, 0, .15) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, .15) 50%, rgba(0, 0, 0, .15) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
  -webkit-animation: plyr-progress 1s linear infinite;
       -o-animation: plyr-progress 1s linear infinite;
          animation: plyr-progress 1s linear infinite;
}
.plyr__controls [data-plyr='pause'],
.plyr--playing .plyr__controls [data-plyr='play'] {
  display: none;
}
.plyr--playing .plyr__controls [data-plyr='pause'] {
  display: inline-block;
}
.plyr__volume[type='range'] {
  display: inline-block;
  width: 100px;
  -webkit-appearance: none;
  padding: 0;
  margin: 0 10px 0 0;
  vertical-align: middle;
  cursor: pointer;
  background: transparent;
  border: none;

     -moz-appearance: none;
}
.plyr__volume[type='range']::-webkit-slider-runnable-track {
  height: 6px;
  background: #9e9e9e;
  border: 0;
  border-radius: 3px;
}
.plyr__volume[type='range']::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  -webkit-appearance: none;
  margin-top: -3px;
  cursor: ew-resize;
  background: #bdbdbd;
  border: 0;
  border-radius: 100%;
  -webkit-transition: background .3s ease;
          transition: background .3s ease;
}
.plyr__volume[type='range']::-moz-range-track {
  height: 6px;
  background: #9e9e9e;
  border: 0;
  border-radius: 3px;
}
.plyr__volume[type='range']::-moz-range-thumb {
  width: 12px;
  height: 12px;
  cursor: ew-resize;
  background: #bdbdbd;
  border: 0;
  border-radius: 100%;
  transition: background .3s ease;
}
.plyr__volume[type='range']::-ms-track {
  height: 6px;
  color: transparent;
  background: transparent;
  border-color: transparent;
  border-width: 3px 0;
}
.plyr__volume[type='range']::-ms-fill-lower,
.plyr__volume[type='range']::-ms-fill-upper {
  height: 6px;
  background: #9e9e9e;
  border: 0;
  border-radius: 3px;
}
.plyr__volume[type='range']::-ms-thumb {
  width: 12px;
  height: 12px;
  cursor: ew-resize;
  background: #bdbdbd;
  border: 0;
  border-radius: 100%;
  transition: background .3s ease;
}
.plyr__volume[type='range']:focus {
  outline: 0;
}
.plyr__volume[type='range']:focus::-webkit-slider-thumb {
  background: #3f51b5;
}
.plyr__volume[type='range']:focus::-moz-range-thumb {
  background: #3f51b5;
}
.plyr__volume[type='range']:focus::-ms-thumb {
  background: #3f51b5;
}
.plyr--is-ios .plyr__volume,
.plyr--is-ios [data-plyr='mute'],
.plyr--is-ios.plyr--audio .plyr__controls--right {
  display: none;
}
.plyr--is-ios.plyr--audio .plyr__controls--left {
  float: none;
}
.plyr--audio .plyr__controls {
  padding-top: 20px;
}
.plyr--audio .plyr__progress {
  top: 0;
  bottom: auto;
  background: #d6dadd;
}
.plyr.plyr--fullscreen,
.plyr--fullscreen-active {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #000;
}
.plyr.plyr--fullscreen video,
.plyr--fullscreen-active video {
  height: 100%;
}
.plyr.plyr--fullscreen .plyr__video-wrapper,
.plyr--fullscreen-active .plyr__video-wrapper {
  width: 100%;
  height: 100%;
}
.plyr.plyr--fullscreen .plyr__controls,
.plyr--fullscreen-active .plyr__controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.plyr--fullscreen-active.plyr--fullscreen--hide-controls.plyr--playing .plyr__controls,
.plyr.plyr--fullscreen.plyr--fullscreen--hide-controls.plyr--playing .plyr__controls {
  -webkit-transition: -webkit-transform .3s .2s ease;
       -o-transition:      -o-transform .3s .2s ease;
          transition:         transform .3s .2s ease;
  -webkit-transform: translateY(100%) translateY(5px);
      -ms-transform: translateY(100%) translateY(5px);
       -o-transform: translateY(100%) translateY(5px);
          transform: translateY(100%) translateY(5px);
}
.plyr--fullscreen-active.plyr--fullscreen--hide-controls.plyr--playing .plyr__captions,
.plyr.plyr--fullscreen.plyr--fullscreen--hide-controls.plyr--playing .plyr__captions {
  bottom: 5px;
  -webkit-transition: bottom .3s .2s ease;
       -o-transition: bottom .3s .2s ease;
          transition: bottom .3s .2s ease;
}
.plyr--fullscreen-active.plyr--fullscreen--hide-controls.plyr--playing.plyr--hover .plyr__controls,
.plyr.plyr--fullscreen.plyr--fullscreen--hide-controls.plyr--playing.plyr--hover .plyr__controls {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}
.plyr.plyr--fullscreen .plyr__captions,
.plyr--fullscreen-active .plyr__captions,
.plyr--fullscreen--hide-controls.plyr--fullscreen-active.plyr--playing.plyr--hover .plyr__captions {
  top: auto;
  bottom: 90px;
}
@media (min-width: 560px) {
  .plyr.plyr--fullscreen .plyr__captions,
  .plyr--fullscreen-active .plyr__captions,
  .plyr--fullscreen--hide-controls.plyr--fullscreen-active.plyr--playing.plyr--hover .plyr__captions {
    bottom: 60px;
  }
}
.plyr--fullscreen-active .icon--exit-fullscreen,
.plyr--muted .plyr__controls .icon--muted,
.plyr--captions-active .plyr__controls .icon--captions-on {
  display: block;
}
.plyr--fullscreen-active .icon--exit-fullscreen + svg,
.plyr--muted .plyr__controls .icon--muted + svg,
.plyr--captions-active .plyr__controls .icon--captions-on + svg {
  display: none;
}
.plyr [data-plyr='captions'],
.plyr [data-plyr='fullscreen'] {
  display: none;
}
.plyr--captions-enabled [data-plyr='captions'],
.plyr--fullscreen-enabled [data-plyr='fullscreen'] {
  display: inline-block;
}
