$maxWidthContent: 900px;

.angular-lightbox {
  &.hidden {
    display: none;
  }
}
.angular-lightbox > section {
    position: fixed;
    z-index: 100065;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.80);
}
.angular-lightbox > section > article {
      color: white;
}
.angular-lightbox > section > article > header a.close-btn {
    position: absolute;
    top: 60px;
    right: 30px;
    font-size: 3em;
    cursor: pointer;
    color: #DDD;

}

.angular-lightbox > section > article > content {
  margin: 0 auto;
  height: 70%;
  position: absolute;
  top: 11%;
  text-align: center;
  width: 100%;
/*  @media screen and (min-width: $maxWidthContent) {
    width: $maxWidthContent;
  } */
}
.angular-lightbox > section > article > content > iframe {
  max-width: $maxWidthContent;
  margin: 0 auto;
}
