.sr-only {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
@keyframes progress {
  to {
    background-position: 40px 0;
  }
}
.player {
  position: relative;
  max-width: 100%;
  min-width: 225px;
  margin-bottom: 0.5em;
  font-family: sans-serif;
}
.player,
.player *,
.player *::after,
.player *::before {
  box-sizing: border-box;
}
.player-video-wrapper {
  position: relative;
}
.player video {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.player svg {
  display: inline;
  vertical-align: middle;
  position: relative;
  top: 1px;
  width: 26px;
  height: 26px;
  fill: #cbd0d3;
}
.player-captions {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  min-height: 2.5em;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  text-align: center;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) {
  .player-captions {
    font-size: 24px;
  }
}
.player.captions-active .player-captions {
  display: block;
}
.player-controls {
  zoom: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  position: relative;
  padding: 10px 0;
  background: #eff0f2;
  line-height: 1;
  text-align: center;
}
.player-controls:before,
.player-controls:after {
  content: "";
  display: table;
}
.player-controls:after {
  clear: both;
}
.recent-post .player-controls {
  background: #cef1ef;
}
.player-controls-right {
  display: block;
  margin: 10px auto 0;
}
@media (min-width: 320px) {
  .player-controls-left {
    float: left;
  }
  .player-controls-right {
    float: right;
    margin-top: 0;
  }
}
.player-controls input + label,
.player-controls button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
  padding: 5px 10px;
  min-width: 0;
  box-shadow: none;
  transition: background .3s ease;
  border-radius: 3px;
  cursor: pointer;
}
.player-controls input + label svg,
.player-controls button svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
  transition: fill .3s ease;
}
.player-controls input + label,
.player-controls .inverted:checked + label {
  color: #000;
}
.player-controls button,
.player-controls .inverted + label,
.player-controls input:checked + label {
  color: #000;
}
.player-controls button,
.player-controls label {
  width: auto;
}
.player-controls button {
  border: 0;
  background: transparent;
  overflow: hidden;
}
.player-controls button[data-player="play"],
.player-controls button[data-player="pause"] {
  border-radius: 2em;
  background: #dfe5e8;
  width: 38px;
  height: 38px;
  padding: 5px 8px 5px 11px;
}
.recent-post .player-controls button[data-player="play"],
.recent-post .player-controls button[data-player="pause"] {
  background: #74a8a7;
  background: #000;
}
.recent-post .player-controls button[data-player="play"] svg,
.recent-post .player-controls button[data-player="pause"] svg {
  fill: #cbd0d3;
}
.player-controls button[data-player="pause"] {
  padding: 5px 10px;
}
.player-controls button:focus,
.player-controls input:focus + label {
  outline: 0;
}
.player-controls .icon-exit-fullscreen,
.player-controls .icon-muted,
.player-controls .icon-captions-on {
  display: none;
}
.player-controls .player-time {
  display: inline-block;
  vertical-align: middle;
  float: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0.5em;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.player-controls .player-time + .player-time {
  float: right;
}
@media (min-width: 320px) {
  .player-controls .player-time + .player-time {
    display: inline-block;
  }
}
.player-controls .player-time + .player-time::before {
  margin-right: 10px;
  color: #000000;
}
.player-tooltip {
  visibility: hidden;
  position: absolute;
  z-index: 2;
  bottom: 100%;
  margin-bottom: 10px;
  padding: 10px 15px;
  opacity: 0;
  background: #eff0f2;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  transform: translate(-50%, 30px);
  transition: transform .2s .2s ease, opacity .2s .2s ease;
}
.player-tooltip::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -5px;
  margin-left: -5px;
  width: 0;
  height: 0;
  transition: inherit;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #eff0f2 transparent transparent;
}
.player label:hover .player-tooltip,
.player input:focus + label .player-tooltip,
.player button:hover .player-tooltip,
.player button:focus .player-tooltip {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}
.player label:hover .player-tooltip,
.player button:hover .player-tooltip {
  z-index: 3;
}
.player-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
}
.player-progress-buffer[value],
.player-progress-played[value],
.player-progress-seek[type=range] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 10px;
  margin: 0;
  padding: 0;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
}
.player-progress-buffer[value]::-webkit-progress-bar,
.player-progress-played[value]::-webkit-progress-bar {
  background: transparent;
}
.player-progress-buffer[value]::-webkit-progress-value,
.player-progress-played[value]::-webkit-progress-value {
  background: currentColor;
}
.player-progress-buffer[value]::-moz-progress-bar,
.player-progress-played[value]::-moz-progress-bar {
  background: currentColor;
}
.player-progress-played[value] {
  z-index: 2;
  color: #000;
}
.player-progress-buffer[value] {
  color: rgba(0, 0, 0, 0.25);
}
.player-progress-seek[type=range] {
  z-index: 4;
  cursor: pointer;
  outline: 0;
}
.player-progress-seek[type=range]::-webkit-slider-runnable-track {
  background: none;
  border: 0;
}
.player-progress-seek[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  width: 20px;
  height: 10px;
}
.player-progress-seek[type=range]::-moz-range-track {
  background: none;
  border: 0;
}
.player-progress-seek[type=range]::-moz-range-thumb {
  -moz-appearance: none;
  background: transparent;
  border: 0;
  width: 20px;
  height: 10px;
}
.player-progress-seek[type=range]::-ms-track {
  color: transparent;
  background: none;
  border: 0;
}
.player-progress-seek[type=range]::-ms-fill-lower,
.player-progress-seek[type=range]::-ms-fill-upper {
  background: none;
  border: 0;
}
.player-progress-seek[type=range]::-ms-thumb {
  background: transparent;
  border: 0;
  width: 20px;
  height: 10px;
}
.player-progress-seek[type=range]:focus {
  outline: 0;
}
.player-progress-seek[type=range]::-moz-focus-outer {
  border: 0;
}
.player.loading .player-progress-buffer {
  animation: progress 1s linear infinite;
  background-size: 40px 40px;
  background-repeat: repeat-x;
  background-color: rgba(0, 0, 0, 0.25);
  background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.15) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.15) 75%, transparent 75%, transparent);
  color: transparent;
}
.player-controls [data-player='pause'],
.player.playing .player-controls [data-player='play'] {
  display: none;
}
.player.playing .player-controls [data-player='pause'] {
  display: inline-block;
}
.player-volume[type=range] {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100px;
  margin: 0 10px 0 0;
  padding: 0;
  cursor: pointer;
  background: none;
}
.player-volume[type=range]::-webkit-slider-runnable-track {
  height: 6px;
  background: #cbd0d3;
  border: 0;
  border-radius: 3px;
}
.player-volume[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin-top: -3px;
  height: 12px;
  width: 12px;
  background: #000;
  border: 0;
  border-radius: 6px;
  transition: background .3s ease;
  cursor: ew-resize;
}
.player-volume[type=range]::-moz-range-track {
  height: 6px;
  background: #cbd0d3;
  border: 0;
  border-radius: 3px;
}
.player-volume[type=range]::-moz-range-thumb {
  height: 12px;
  width: 12px;
  background: #000;
  border: 0;
  border-radius: 6px;
  transition: background .3s ease;
  cursor: ew-resize;
}
.player-volume[type=range]::-ms-track {
  height: 6px;
  background: transparent;
  border-color: transparent;
  border-width: 3px 0;
  color: transparent;
}
.player-volume[type=range]::-ms-fill-lower,
.player-volume[type=range]::-ms-fill-upper {
  height: 6px;
  background: #cbd0d3;
  border: 0;
  border-radius: 3px;
}
.player-volume[type=range]::-ms-thumb {
  height: 12px;
  width: 12px;
  background: #000;
  border: 0;
  border-radius: 6px;
  transition: background .3s ease;
  cursor: ew-resize;
}
.player-volume[type=range]:focus {
  outline: 0;
}
.player-volume[type=range]:focus::-webkit-slider-thumb {
  background: #d9dadc;
}
.player-volume[type=range]:focus::-moz-range-thumb {
  background: #d9dadc;
}
.player-volume[type=range]:focus::-ms-thumb {
  background: #d9dadc;
}
.player.ios .player-volume,
.player.ios [data-player='mute'],
.player.ios [data-player='mute'] + label,
.player-audio.ios .player-controls-right {
  display: none;
}
.player-audio.ios .player-controls-left {
  float: none;
}
.player-audio .player-controls {
  padding-top: 20px;
}
.player-audio .player-progress {
  bottom: 0;
  top: auto;
  background: #d6dadd;
}
.player-fullscreen,
.player.fullscreen-active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 10000000;
  background: #000;
}
.player-fullscreen video,
.player.fullscreen-active video {
  height: 100%;
}
.player-fullscreen .player-video-wrapper,
.player.fullscreen-active .player-video-wrapper {
  height: 100%;
  width: 100%;
}
.player-fullscreen .player-video-wrapper .player-captions,
.player.fullscreen-active .player-video-wrapper .player-captions {
  top: auto;
  bottom: 90px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .player-fullscreen .player-video-wrapper .player-captions,
  .player.fullscreen-active .player-video-wrapper .player-captions {
    bottom: 60px;
  }
}
@media (min-width: 768px) {
  .player-fullscreen .player-video-wrapper .player-captions,
  .player.fullscreen-active .player-video-wrapper .player-captions {
    bottom: 80px;
  }
}
.player-fullscreen .player-controls,
.player.fullscreen-active .player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.player-fullscreen.fullscreen-hide-controls.playing .player-controls,
.player.fullscreen-active.fullscreen-hide-controls.playing .player-controls {
  transform: translateY(100%) translateY(5px);
  transition: transform .3s 1s ease;
}
.player-fullscreen.fullscreen-hide-controls.playing .player-controls.hover,
.player.fullscreen-active.fullscreen-hide-controls.playing .player-controls.hover {
  transform: translateY(0);
  transition-delay: 0;
}
.player.fullscreen-active .icon-exit-fullscreen,
.player.muted .player-controls .icon-muted,
.player.captions-active .player-controls .icon-captions-on {
  display: block;
}
.player.fullscreen-active .icon-exit-fullscreen + svg,
.player.muted .player-controls .icon-muted + svg,
.player.captions-active .player-controls .icon-captions-on + svg {
  display: none;
}
.player [data-player='captions'],
.player [data-player='captions'] + label,
.player [data-player='fullscreen'],
.player [data-player='fullscreen'] + label {
  display: none;
}
.player.captions-enabled [data-player='captions'],
.player.captions-enabled [data-player='captions'] + label,
.player.fullscreen-enabled [data-player='fullscreen'],
.player.fullscreen-enabled [data-player='fullscreen'] + label {
  display: inline-block;
}
.player-controls-right {
  padding-top: 5px;
}
.player-controls-time {
  zoom: 1;
  margin: 0!important;
  float: left;
  width: 100%;
  margin-top: 15px!important;
  padding: 10px 5px 0 10px;
  border-top: 1px solid #dfe5e8;
}
.player-controls-time:before,
.player-controls-time:after {
  content: "";
  display: table;
}
.player-controls-time:after {
  clear: both;
}
.player__btn {
  margin-right: 1em;
  display: inline;
  font-family: sans-serif;
  color: #000;
  text-decoration: none;
}
.player__btn svg {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 2px;
  width: 26px;
  height: 26px;
  fill: #cbd0d3;
}
.player__btn svg:not(:root) {
  overflow: hidden;
}
/*# sourceMappingURL=player-style.css.map */