.modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background-color: rgba(63, 63, 63, 0.582);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  width: 88%;
  max-width: 400px;
  position: relative;
  /* box-shadow: 0 0.5px 0 2px 5px rgb(168, 168, 168); */
  border: 2px solid rgb(160, 160, 160);
}
.close-btn img{
 width: 22px;
}
.close-btn{
  cursor: pointer;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}
/* .close-btn {
  background: #a50e0e;
  color: white;
  border: none;
  padding: 0.2rem 0.8rem;
  border-radius: 1rem;
  cursor: pointer;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  font-size: 13px;
}

.close-btn:hover {
  background: #740505;
} */
.process_modal_form_inp input, .process_modal_form_inp textarea {
  padding: 0.5rem;
  border-radius: 0.3rem;
  /* border: 1px solid #cccccc; */
  border: none;
  margin-bottom: 0.4rem;
  width: 100%;
  background: #dfdbd8;
}
.process_modal_form_wrapper {
  /* padding: 1rem;
    background: #e0e0e0; */
  margin-top: 1rem;
  /* border-radius: .5rem; */
}

.process_modal_form_submitBtn_wrapper{
  text-align: right;
}
.process_modal_form_submitBtn {
  padding: 0.5rem 1.5rem;
  border-radius: 1.5rem;
  background: green;
  color: white;
  border: none;
  margin-top: 0.2rem;
  cursor: pointer;
  margin-left: .5rem;
}
.process_modal_form_submitBtn:active{
  background: #b1b1b1;
  transform: .4s;
}
.process_modal_enquiry_icon_wrapper img{
  width: 28px;
  cursor: pointer;
}
.process_modal_enquiry_icon_wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
}
.process_modal_enquiry_icons{
  display: flex;
  gap: .5rem;
  /* background: #dddddd; */
  padding: .5rem;
  border-radius: .5rem;
  margin-top: .5rem;
  align-items: center;
  /* flex-direction: column; */
  /* box-shadow: 0 0.5px 6px .5px #a7a7a7; */
  border: 1px solid #cfcfcf;
}
.process_modal_enquiry_icons_wrapper{
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.process_modal_formTitle{
  padding: 0 1rem;
}