/* Popup base */
.rox-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rox-popup.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rox-popup h4 {
  font-weight: 700;
  margin-bottom: 5px;
}
.rox-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 58, 58, 0.4);
}
.rox-popup__content {
  position: relative;
  background: #fff;
  max-width: 510px;
  width: 90%;
  padding: 60px 45px 40px;
  border-radius: 10px;
  z-index: 1;
  max-height: 90vh;
  overflow-y: auto;
}
.rox-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  padding: 11px;
}
.rox-popup__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 36px 0;
}
.rox-popup__grid img {
  max-width: 100%;
  height: auto;
  display: block;
}
.rox-popup__footer {
  text-align: center;
}
@media (max-width: 575.98px) {
  .rox-popup__content {
    padding: 40px 20px;
  }
  .rox-popup__grid {
    grid-template-columns: 1fr 1fr;
  }
}/*# sourceMappingURL=rox-popup.css.map */