.external-video {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.external-video img {
  width: 100%;
  height: auto;
  z-index: 0;
  cursor: pointer;
}
.external-video .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 90px;
  height: 90px;
  background-color: #333;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  z-index: 1;
  opacity: 0.8;
  border-radius: 90px;
  cursor: pointer;
}
.external-video .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent #aaa;
}
.external-video iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  position: absolute;
}
.external-video .playaction {
  position: absolute;
  z-index: 11 !important;
  width: 100%;
  height: 100%;
  cursor: pointer;
  top: 0;
  left: 0;
}
.external-video .videoWrapper {
  position: relative;
}
.external-video .videoWrapper .uc-embedding-wrapper {
  color: #303030;
}
.external-video .privacy-notice {
  color: #424242;
  text-align: center;
}

@media print, screen and (min-width: 40em) {
  .external-video .privacy-notice {
    position: absolute;
    bottom: 0;
    margin: 4%;
    padding: 14px;
    width: 90%;
    z-index: 12 !important;
    background-color: rgba(255, 255, 255, 0.8);
  }
}

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