#imageModal.active {
  position: fixed !important;
  width: 100% !important;
  height: 100vh !important;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  display: block !important;
  background: #EFECE5 !important;
}
#imageModal img {
  width: auto !important;
  height: 100% !important;
  display: none !important;
}
#imageModal img.active {
  display: block !important;
}

.choose-your-abode .tabcontent .right .img-wrap svg {
  height: 100%;
  width: 100%;
}
.choose-your-abode .tabcontent .right .img-wrap svg .info {
  opacity: 1;
  transition: all 0.8s;
}
.choose-your-abode .tabcontent .right .img-wrap svg:hover .info {
  opacity: 1;
}
.choose-your-abode .tabcontent .right .img-wrap svg rect.store-space,
.choose-your-abode .tabcontent .right .img-wrap svg rect.kitchen-space,
.choose-your-abode .tabcontent .right .img-wrap svg .living-space, .choose-your-abode .tabcontent .right .img-wrap svg .bathroom-space, .choose-your-abode .tabcontent .right .img-wrap svg .bedroom-space {
  transition: all 0.3s;
  stroke: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  opacity: 1;
  fill: red;
  animation: blink-bg 0.5s infinite alternate;
}
@keyframes blink-bg {
  0% {
    fill: rgba(148, 38, 38, 0.3);
  }
  100% {
    fill: rgba(255, 0, 0, 0.1);
    stroke: red;
  }
}

.zoom-button {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  background-color: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
}

.zoom-button:hover {
  background-color: #0056b3;
}

/* Popup modal styles */
.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  position: relative;
  padding: 20px;
  background-color: #fff;
  max-width: 80%;
  max-height: 80%;
  overflow: auto;
}

#popup-image {
  width: 100%;
  height: auto;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
}/*# sourceMappingURL=home-new.css.map */