.ng-lightbox.default {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #3D8A9C;
  background: rgba(72, 72, 72, 0.7);
  z-index: 9999;
  box-sizing: border-box;
}

.ng-lightbox.default * {
  box-sizing: border-box;
}

.ng-lightbox.default .ng-lightbox-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: flex;
  flex-flow: column;
  width: 95%;
  max-height: 95%;
  overflow: auto;
  max-width: 640px;
  color: #000;
  text-align: left;
  background-color: black;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.ng-lightbox.default .inner-wrapper {
  display: flex;
  flex-flow: row;
  width: 100%;
  justify-content: center;
}

.ng-lightbox.default .ng-lightbox-inner .close-popup {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  overflow: hidden;
  text-indent: -1000px;
  transition: opacity 0.2s;
  border: 0;
  background: none;
  box-shadow: 0 0;
}

.ng-lightbox.default .ng-lightbox-inner .close-popup:hover {
  opacity: 0.7;
}

.ng-lightbox.default .ng-lightbox-inner .close-popup:after,
.ng-lightbox.default .ng-lightbox-inner .close-popup:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #BB8B41;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.ng-lightbox.default .ng-lightbox-inner.top-thumbnail .close-popup:after,
.ng-lightbox.default .ng-lightbox-inner.top-thumbnail .close-popup:before {
  background-color: #BB8B41;
}

.ng-lightbox.default .ng-lightbox-inner .close-popup:after {
  width: 20px;
  height: 1px;
}

.ng-lightbox.default .ng-lightbox-inner .close-popup:before {
  width: 1px;
  height: 20px;
}

.ng-lightbox.default .ng-lightbox-inner.background-thumbnail {
  color: #3D8A9C;
  background: #fff;
}

.ng-lightbox.default .ng-lightbox-inner .thumb-wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
}

.ng-lightbox.default .ng-lightbox-inner .thumb-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.ng-lightbox.default .ng-lightbox-inner.background-thumbnail .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  opacity: 0.2;
  margin: 0;
}

.ng-lightbox.default .ng-lightbox-inner .content {
  position: relative;
  width: 50%;
  padding: 60px 30px 40px;
  font-size: 16px;
  line-height: 1.65;
  color: #231f20;
  font-weight: 400;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .ng-lightbox.default .ng-lightbox-inner .content {
    width: 100%;
  }
}

.ng-lightbox.default .ng-lightbox-inner .content .logo-image {
  width: 85%;
  margin-bottom: 35px;
}

.ng-lightbox.default .ng-lightbox-inner h3 {
  margin: 0 0 16px;
  text-transform: uppercase;
  color: white;
  font-size: 28px;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .ng-lightbox.default .ng-lightbox-inner h3 {
    font-size: 24px;
  }
}

.ng-lightbox.default .ng-lightbox-inner h4 {
  margin-bottom: 15px;
  color: white;
  font-size: 22px;
}

.ng-lightbox.default .ng-lightbox-inner p {
  margin-bottom: 10px;
}

.ng-lightbox.default .ng-lightbox-inner .buttons {
  margin-top: 35px;
  display: flex;
}

.ng-lightbox.default .ng-lightbox-inner .buttons a {
  font-weight: bold;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #BB8B41;
  color: black;
  height: 40px;
  padding: 0 20px;
  text-decoration: none;
  font-family: "Courier Pitch", sans-serif;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
}

.ng-lightbox.default .ng-lightbox-inner .buttons a:hover {
  color: white;
}

.ng-lightbox.default .ng-lightbox-inner .description.page-content {
  color: white;
}

@media (max-width: 767px) {
  .ng-lightbox.default .ng-lightbox-inner .content {
    padding: 20px;
    font-size: 15px;
  }
  .ng-lightbox.default .ng-lightbox-inner h3 {
    font-size: 20px;
  }
  .ng-lightbox.default .ng-lightbox-inner h4 {
    font-size: 17px;
  }
  .ng-lightbox.default .ng-lightbox-inner {
    padding-left: 0;
  }
  .ng-lightbox.default .ng-lightbox-inner .thumb-wrapper {
    display: none;
  }
}
