*, *:before, *:after {
  box-sizing: inherit;
}
.player {
  width: 100%;
  position: relative;
  font-size: 0;
  overflow: auto;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.player__video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
/* Firefox Shadow DOM Fix */

*::-moz-list-bullet, *::-moz-list-number {
  display: none !important;
}
*::-moz-meter-bar {
  display: none !important;
}
:-moz-full-screen:not(:root)::backdrop {
  display: none !important;
}
*::backdrop {
  display: none !important;
}
:fullscreen:not(:root) {
  display: none !important;
}
::-webkit-media-controls {
  display: none !important;
}
::-webkit-media-text-track-container {
  display: none
}
.player[data-fullscreen=true] {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
  max-height: 100%;
  background-color: black;
}
.player[data-fullscreen=true] video {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  min-height: 50%;
  min-width: 50%;
  background-color: black;
}
.player[data-fullscreen=true] progress {
  display: none;
}
.player[data-fullscreen=true] .player__controls {
  z-index: 2147483648;
}
:-webkit-full-screen {
  background-color: transparent;
}
.player__controls {
  font-size: 24px;
  font-size: 28px;
  text-align: center;
  font-family: 'Work Sans', sans-serif;
  color: white;
}
.player__controls:hover {
  /*border-bottom: none;*/
  cursor: pointer;
}
.player__controls-hidden {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.desaturate {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
}
.player__fullscreen {
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: right;
  font-size: 20px;
}
.player__mute {
  position: absolute;
  top: 37px;
  right: 10px;
  text-align: right;
  font-size: 20px;
}
.player__play.hidden {
  opacity: 0;
}
.player__play:hover {
  cursor: none;
}
.player__play {
  position: absolute; //float: left; 
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-decoration: none; //border-bottom: 2px solid white;
  color: white; //padding-left: 5px;
  font-size: 73px;
  background: transparent;
  border: none;
  text-shadow: 0px 0px 23px rgba(0, 0, 0, 0.7); //height: 100px;
  //width: 100px;
  line-height: 110px;
  border-radius: 200px !important;
  opacity: 1; //transition: opacity 0.3s ease;
  pointer-events: none;
}
[data-device='phone'] .player__play {
  pointer-events: auto;
}
.player__play a {
  text-decoration: none;
}
.player__progress {
  display: block;
  width: 100%;
  margin: 0 auto;
  border: 0 none;
  padding: 0;
  margin: 0;
  background: lightgrey;
  position: absolute;
  bottom: 14px;
  left: 0;
  height: 7px;
  transition: height 0.3s;
}
.player__progress:hover {
  height: 24px;
  transition: height 0.3s;
}
.player__progress::-moz-progress-bar {
  background: black;
}
.player__progress::-webkit-progress-bar {
  background: transparent;
}
.player__progress::-webkit-progress-value {
  background: black;
}
/* hide the default Chrome video player styling */

::-webkit-media-controls-overlay-enclosure {
  display: none !important;
}
::-webkit-media-controls-enclosure {
  display: none !important;
}
::-webkit-media-controls {
  display: none !important;
}
/*  Needed to hide player controls in Safari Only */

::-webkit-full-screen {
  display: none !important;
}
::-webkit-media-controls {
  display: none !important;
}
::-webkit-media-controls-panel {
  display: none !important;
}
::-webkit-media-controls-play-button {
  display: none !important;
}
::-webkit-media-controls-volume-slider-container {
  display: none !important;
}
::-webkit-media-controls-volume-slider {
  display: none !important;
}
::-webkit-media-controls-mute-button {
  display: none !important;
}
::-webkit-media-controls-timeline {
  display: none !important;
}
::-webkit-media-controls-current-time-display {
  display: none !important;
}
::-webkit-full-page-media::-webkit-media-controls-panel {
  display: none !important;
}
::-webkit-media-controls-timeline-container {
  display: none !important;
}
::-webkit-media-controls-time-remaining-display {
  display: none !important;
}
::-webkit-media-controls-seek-back-button {
  display: none !important;
}
::-webkit-media-controls-seek-forward-button {
  display: none !important;
}
::-webkit-media-controls-fullscreen-button {
  display: none !important;
}
::-webkit-media-controls-rewind-button {
  display: none !important;
}
::-webkit-media-controls-return-to-realtime-button {
  display: none !important;
}
::-webkit-media-controls-toggle-closed-captions-button {
  display: none !important;
}
:-webkit-full-page-media::* {
  display: none !important;
}