/* Mobile landscape media query */
.video-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  /* Above dark background */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  display: none; }
  @media (max-width: 595px) {
    .video-overlay {
      padding: 15px; } }
  .video-overlay.show {
    display: block;
    z-index: 5; }
  @media (min-width: 1195px) and (max-width: 1450px) {
    .video-overlay iframe {
      width: 500px;
      height: 300px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .video-overlay iframe {
      width: 450px;
      height: 280px; } }
  @media (min-width: 1200px) and (max-height: 950px) {
    .video-overlay iframe {
      width: 450px;
      height: 280px; } }
  @media (max-width: 991px) {
    .video-overlay iframe {
      width: 450px;
      height: 280px; } }
  @media (max-width: 767px) {
    .video-overlay iframe {
      width: 400px;
      height: 250px; } }
  @media (max-width: 595px) {
    .video-overlay iframe {
      width: 290px;
      height: 180px; } }
  @media (max-width: 359px) {
    .video-overlay iframe {
      width: 260px;
      height: 160px; } }
  .video-overlay .close-icon {
    position: absolute;
    top: -30%;
    right: -30%;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    z-index: 3;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }
    .video-overlay .close-icon:hover {
      color: #da1e5c; }
    @media (max-width: 991px) {
      .video-overlay .close-icon {
        right: -25%; } }
    @media (max-width: 767px) {
      .video-overlay .close-icon {
        right: -12%; } }
    @media (max-width: 595px) {
      .video-overlay .close-icon {
        right: -7%; } }

.pop-up {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 13;
  display: none; }
