.custom-pop-inquiry {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  z-index: 10000;
  margin: 0;
}

.custom-pop-inquiry.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
}

.custom-pop-inquiry .div_info {
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  float: none;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.custom-pop-inquiry-content {
  display: flex;
  flex-direction: column;
  width: 800px;
  max-height: calc(100vh - 160px);
  padding: 100px 40px 40px;
  overflow-y: hidden;
  background: var(--bg-color);
}

.custom-pop-inquiry .cd-popup-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  background-color: #D9D9D9;
  color: #fff;
  z-index:10
}

.custom-pop-inquiry .cd-popup-close:hover {
  text-decoration: none;
}

.custom-pop-inquiry .input-position {
  position: relative;
}

@media screen and (max-width: 992px) {
   .custom-pop-inquiry-content {
    width: 720px;
   }
}

@media screen and (max-width: 767px) {
  .custom-pop-inquiry .div_info {
    top: auto;
    left: 0;
    bottom: -150%;
    transform: none;
    transition: bottom 0.3s ease-in-out;
    border-radius: var(--card-radius) var(--card-radius) 0 0;
  }
  .custom-pop-inquiry-content {
    width: 100%;
    max-height: calc(100vh - 120px);
    padding: 40px;
  }
  .custom-pop-inquiry-content .crm_inquiry_form_box {
    height: 100%;
    padding: 0 10px;
    overflow-y: hidden;
  }
  .custom-pop-inquiry.is-visible .div_info {
    bottom: 0;
  }
}
