.c-lightbox {
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: auto;
  display: block;
  background: rgba(28, 28, 27, 0.8);
  z-index: 9999;
}
.c-lightbox.opened {
  visibility: visible;
  opacity: 1;
  position: fixed;
  height: inherit;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.c-lightbox .c-lightbox__content {
  background: #fff;
  border-radius: 0.5rem;
  max-width: 32.5rem;
  width: 100%;
  padding: 2.5rem;
  color: #1c1c1b;
  position: relative;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  text-align: left;
  margin: auto 0;
}
@media (max-width: 767px) {
  .c-lightbox .c-lightbox__content {
    padding: 1.875rem;
  }
}
.c-lightbox .c-lightbox__content p {
  margin-left: unset !important;
  margin-right: unset !important;
  max-width: none !important;
  font-size: 1rem !important;
}
@media (max-width: 767px) {
  .c-lightbox .c-lightbox__content p {
    font-size: 1rem !important;
  }
}
.c-lightbox__container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
}
@media (min-width: 768px) {
  .c-lightbox__container {
    padding: 2.5rem;
  }
}

.close-popup {
  color: #1c1c1b;
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  background: none !important;
}
.close-popup:after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: url(https://unilyweb2020dev.azureedge.net/media/uuzbwrlw/close-black.svg) no-repeat center;
  background-size: 0.75rem;
  position: relative;
}
