.art-modal-popup {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 98;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.25s;
  opacity: 0;
  visibility: hidden;
}
.art-modal-popup-container {
  max-width: 100%;
  margin: 15px;
  height: auto;
  background: white;
  position: relative;
  box-shadow: 0px 0px 4px 2px rgb(0 0 0 / 15%);
  display: flex;
}
.art-modal-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.art-modal-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.art-modal-popup-overlay {
  height: 100%;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.25); */
  position: absolute;
  top: 0;
  left: 0;
}
.art-modal-popup-content {
  z-index: 99;
  position: relative;
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.art-modal-popup-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  border-radius: 40px;
  background: white;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.art-modal-popup-btn .fal.fa-times {
  font-size: 22px;
  text-align: right;
  color: black;
}
.art-modal-popup-container p,
.art-modal-popup-container h1,
.art-modal-popup-container h2,
.art-modal-popup-container h3,
.art-modal-popup-container h4,
.art-modal-popup-container h5 {
  text-align: center;
  margin-bottom: 20px;
}
.modal-background-selected::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
}
.modal-background-selected > * {
  color: white;
  z-index: 99;
}

@media screen and (max-width: 992px) {
  .art-modal-popup-container {
    flex-direction: column !important;
  }
  .art-modal-image {
    width: 100% !important;
    height: 300px !important;
  }
  .art-modal-popup-content {
    width: 100% !important;
  }
}
