.VideoPlayer {
  position: relative;
}
.VideoPlayer-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.VideoPlayer-video video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.VideoPlayer-video--sixteen_by_nine {
  padding-top: 56.25%;
}
.VideoPlayer-video--four_by_three {
  padding-top: 75%;
}
.VideoPlayer-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.VideoPlayer-scrubber {
  width: 100%;
}
.VideoPlayer-play_pause {
  float: left;
  background: transparent;
  border-width: 0px;
  padding: 5px 10px;
}
.VideoPlayer-play_pause.is-VideoPlayer--paused:before {
  content: "\EA12";
  font-family: 'icon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: inherit;
  font-size: 15px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  float: left;
}
.VideoPlayer-play_pause.is-VideoPlayer--paused .VideoPlayer-pause_text {
  display: none;
}
.VideoPlayer-play_pause.is-VideoPlayer--playing:before {
  content: "\EA13";
  font-family: 'icon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: inherit;
  font-size: 15px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  float: left;
}
.VideoPlayer-play_pause.is-VideoPlayer--playing .VideoPlayer-play_text {
  display: none;
}
.VideoPlayer-scrubber {
  float: left;
  background: transparent;
  border-width: 0px;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  margin: 0 10px;
}
.VideoPlayer-scrubber_range {
  background: #C2C2C2;
  height: 5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}
.VideoPlayer-scrubber_fill {
  background: #0022ee;
  height: 5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.VideoPlayer-scrubber_knob {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 100%;
  width: 20px;
  height: 20px;
  background-color: #0022ee;
  border: 2px solid white;
}
.VideoPlayer-mute {
  float: left;
  background: transparent;
  border-width: 0px;
  padding: 5px 10px;
}
.VideoPlayer-mute.is-VideoPlayer--muted:before {
  content: "\EA14";
  font-family: 'icon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: inherit;
  font-size: 15px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  float: left;
}
.VideoPlayer-mute.is-VideoPlayer--muted .VideoPlayer-mute_text {
  display: none;
}
.VideoPlayer-mute.is-VideoPlayer--audible:before {
  content: "\EA15";
  font-family: 'icon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: inherit;
  font-size: 15px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  float: left;
}
.VideoPlayer-mute.is-VideoPlayer--audible .VideoPlayer-unmute_text {
  display: none;
}
