/* Functions & Mixins */
/* ==== Containers & Responsive Mixins ==== */
/* Defines convenience mixins for common breakpoint targets.
these are small, medium, mediumlarge, and large. These variables should be defined prior to use.
*/
/* Universal breakpoints */
.video-embed {
  position: relative;
  width: 35rem;
  height: 19.6875rem; }
  .video-embed:focus, .video-embed:focus-visible {
    outline: 2px solid #3b3c43; }
  @media (max-width: 560px) {
    .video-embed {
      width: 100%;
      height: calc(100vw * 0.56); } }
  .video-embed__thumbnail {
    width: 100%;
    height: 100%; }
  .video-embed__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 7.5rem;
    height: 7.5rem; }
    @media (max-width: 560px) {
      .video-embed__icon {
        width: 21vw;
        height: 21vw; } }
  .video-embed__video-iframe {
    width: 100%;
    height: 100%; }
    @media (max-width: 560px) {
      .video-embed__video-iframe {
        height: calc(100vw * 0.56); } }
  .video-embed__button {
    border: none;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 7.5rem;
    height: 7.5rem;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border: 0;
    background-color: transparent;
    padding: 0; }

.video-16x9 .video-embed {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 40rem;
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 18px rgba(0, 0, 0, 0.16); }
  .video-16x9 .video-embed.-iframe-active {
    padding-bottom: 56.25%; }
    @supports (aspect-ratio: 16/9) {
      .video-16x9 .video-embed.-iframe-active {
        padding-bottom: 0;
        aspect-ratio: 16 / 9; } }
  .video-16x9 .video-embed.-error-no-thumbnail {
    background-color: #d8d8d8;
    padding-bottom: 56.25%; }
    @supports (aspect-ratio: 16/9) {
      .video-16x9 .video-embed.-error-no-thumbnail {
        padding-bottom: 0;
        aspect-ratio: 16 / 9; } }
    .video-16x9 .video-embed.-error-no-thumbnail::before {
      content: 'Video';
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 100%;
      padding: 2rem 0;
      font-size: 24px;
      font-size: 1.5rem;
      font-weight: 500;
      text-align: center;
      color: #3b3c43;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
  .video-16x9 .video-embed:focus, .video-16x9 .video-embed:focus-visible {
    outline: 2px solid #3b3c43; }
  .video-16x9 .video-embed__thumbnail {
    width: 100%; }
  .video-16x9 .video-embed__icon {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: none;
            box-shadow: none; }
  .video-16x9 .video-embed__video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }
  .video-16x9 .video-embed__button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: transparent;
    border: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 3.75rem;
    height: auto; }
