.customPopup {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: fixed;
  z-index: 11;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  opacity: 0;
  display: flex;
  backdrop-filter: blur(0.5em);
  font-family: Roboto, sans-serif;
  font-size: 1em;
  transition: 0.5s ease;
}
.customPopupContentContainer {
  background-color: #fff;
  margin: auto;
  padding: 1em;
  border: 1px solid #888;
  border-radius: 1em;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
  row-gap: 1em;
  scale: 0.75;
  transition: 0.25s ease;
}
.customPopupContentContainer div:nth-child(3) {
  display: flex;
  position: relative;
}
.closeCustomPopupBtn {
  position: absolute;
  top: 1em;
  right: 1em;
  width: 1.5em;
  height: 1.5em;
  cursor: pointer;
}
.closeCustomPopupBtn svg {
  width: 1.5em;
  height: 1.5em;
  pointer-events: none;
}

/*img*/
.customPopupImg {
  aspect-ratio: 1 / 1;
  width: 100%;
  background-color: #ededed; 
  object-fit: cover; 
}

.customPopupImg.isLoad {
  background: linear-gradient(
      100deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 60%
    ) #ededed;
  background-size: 200% 100%;
  background-position-x: 180%;
  animation: 1.5s customPopupImgLoading ease-in-out infinite;
}

@keyframes customPopupImgLoading {
  to {
    background-position-x: -20%;
  }
}

.showPopupBackdrop {
  pointer-events: initial !important;
  opacity: 1 !important;
}
.showPopupContainer {
  scale: 1 !important;
}
@media (orientation: portrait) {
  .customPopupContentContainer {
    width: 90vw;
  }
}
@media (orientation: landscape) {
  .customPopupContentContainer {
    width: 30vw;
  }
}
.openBtnLocate {
  margin: 20px 0;
}
.customPopupTitle {
  font-weight: 700;
  margin: 0;
}
.outsetBoxShadow {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0.5em 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.timerDisplayContainer {
  display: inline-flex !important;
  column-gap: 0.5em;
  justify-content: center;
}
.countdownValueContainer {
  background: #f1f1f1;
  padding: 1em 0.5em;
  border-radius: 0.5em;
  width: 100%;
  text-wrap: nowrap;
  text-align: center;
  display: initial !important;
}
