/**
 * --------------------------------------------------------------------------------------------
 * FONT
 *
 * Apply font-size, line-height, and letter-spacing in one go.
 *
 * @usage
 *    @include font($font-size $line-height $letter-spacing);
 *    // All arguments are optional
 * --------------------------------------------------------------------------------------------
 */

@media (min-width: 750px) {
  html[dir="rtl"] .video-embed {
    margin-left: 0;
    margin-right: 25%;
  }
}

@media (min-width: 1200px) {
  html[dir="rtl"] .video-embed {
    margin-right: 20%;
  }
}

@media (min-width: 750px) {
  .video-embed__container {
    padding-left: 7.14286%;
    padding-right: 7.14286%;
  }

  html[dir="rtl"] .video-embed__container {
    padding-left: 14.28571%;
  }
}

@media (min-width: 1200px) {
  .video-embed__container {
    padding-left: 4.54545%;
    padding-right: 9.09091%;
  }

  html[dir="rtl"] .video-embed__container {
    padding-left: 0;
    padding-right: 4.54545%;
  }
}

.video-embed__container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: .0625rem;
  height: 100%;
  background-color: #5b616b;
  opacity: .49;
}

@media (min-width: 750px) {
  .video-embed__container::before {
    left: 0;
  }
}

html[dir="rtl"] .video-embed__container::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .video-embed__container .caption {
  font-family: "Helvetica Neue LT Arabic Roman", helvetica;
  letter-spacing: 0;
  font-size: .9375rem;
  line-height: 1.6875rem;
}

@media (min-width: 1200px) {
  html[dir="rtl"] .video-embed__container .caption {
    font-size: 1.125rem;
    line-height: 1.875rem;
  }
}

/*# sourceMappingURL=video.css.map */
