/* Standalone variables
========================================================================== */
/*
==========================================================================
    Mixins - typography - body
========================================================================== */
.c-video-box:not(.c-video-box--content) {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.c-video-box:not(.c-video-box--content) .c-video-box__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-video-box__video {
  position: absolute;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-video-box--content {
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  position: relative;
}
.c-video-box--content .c-video-box__video {
  position: relative;
  width: 100%;
  height: auto;
}
