.lightbox {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  color: #242124;
  height: 100%;
  z-index: 1000;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
  overflow: auto;
}
.lightbox .content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border:none;
  margin-top: 20px;
  padding: 0;
}
.lightbox .content .imageWrapper{
  width: 40%;
  border: 1px solid #ddd;
}
.lightbox .content .GDimage {
  width: 100%;
}
.lightbox .content h2 {
  margin-bottom: 20px;
}

.fixed {
  position: fixed;
}

.lightbox .close {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.lightbox .close img {
  width: 30px;
  height: 30px;
}

.lightbox .content .buttonRow {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 50px;
}

.lightbox .content .buttonRow button.buttonBlue {
  margin-top: 20px;
  color: #fff;
  font-family: Montserrat;
  font-weight: bold;
  font-size: 14px;
  border: 1px solid #fff;
  border-radius: 25px;
  padding: 10px 20px;
  background-color: #00121b;
}


.lightbox .container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}




