.popup-wrapper {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(125, 125, 125, 0.5);
  transition: all 0.33s ease;
  z-index: 999;
  border: 1px solid rgba(125, 125, 125, 0.75);
}
.popup-wrapper .banner-popup {
  transition: all 0.33s ease;
  width: 760px;
  height: 600px;
  margin: auto auto;
  position: relative;
  z-index: 3;
  display: block;
}
@media (max-width: 900px) {
  .popup-wrapper .banner-popup {
    width: 80vw;
    height: 80vh;
  }
}
.popup-wrapper .banner-popup .popup-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.popup-wrapper .banner-popup .popup-bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.popup-wrapper .banner-popup .close {
  position: absolute;
  background: #fff;
  width: 37px;
  height: 37px;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  top: 12px;
  right: 12px;
  z-index: 5;
  cursor: pointer;
}
.popup-wrapper .banner-popup .close .line {
  height: 1px;
  width: 24px;
  background: #2a2a2a;
  border-radius: 3px;
  position: absolute;
  transform-origin: center;
  transform: rotate(-45deg);
}
.popup-wrapper .banner-popup .close .line:nth-child(2) {
  transform: rotate(45deg);
}/*# sourceMappingURL=updates.css.map */