/* modal */
.customModal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  overflow: hidden !important; /* Prevent scrolling of the modal itself */
}

.customModal-content {
  background-color: #fff;
  padding: 20px;
  margin: 10px;
  border-radius: 10px; /* Rounded corners for a modern look */
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 100vh; /* Limit modal height */
  overflow-y: auto; 
  transform: scale(0.7); /* Start smaller for zoom effect */
  transition: transform 0.3s ease-in-out, opacity 0.3s ease; /* Add opacity for smoother transition */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); 
  opacity: 0; /* Start hidden */
}

.customModal.show .customModal-content {
  transform: scale(1); 
  opacity: 1; /* Fade in effect */
}


.customModal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customModal-header button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}
.customModal-header button:hover{
    color: red;
}
.customModal-header h2{
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  color: rgb(65, 64, 64);

}
  .customModal-body{
    height: auto;
    min-height: 100px;
    max-height: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    padding: 5px;
    margin: 5px;
  }
  /* .customModal-body div{
 flex-wrap: wrap;
  } */
  .customModal-body-content{
    flex: 1;
    width: 100%;
    display: flex;
    gap: 10px;
    /* flex-wrap: wrap; */

  }
  .customModal-footer-container {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .customModal-button-cancel {
    border: 2px solid #FF0C0C;
    border-radius: 50px;
    padding: 10px;
    width: 100%;
    max-width: 100px;
    background-color: white;
    margin: 10px;
    color: #FF0C0C;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }

  .customModal-button-cancel:hover {
    background-color: #FF0C0C;
    color: white; 
  }

  .customModal-button-confirm {
    border: 2px solid #4DAC51;
    border-radius: 50px;
    padding: 10px;
    width: 100%;
    max-width: 100px;
    background-color: white;
    color: #4DAC51;
    margin: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }

  .customModal-button-confirm:hover {
    background-color: #4DAC51;
    color: white; 
  }

  .customModal-w-5 {
    max-width: 500px;
    height: auto;
    max-height: 400px;
  }

  /* common */
  body.modal-open {
    max-height: 500px !important;
    height: 100px !important;
    overflow: hidden !important;
  }
  .common-btn {
    padding: 10px 20px;
    background-color: #4DAC51;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .common-btn:hover {
    background-color: #218838;
    color: white;
  }
  .custom-main-header {
    font-weight: 800;
    font-size:18px;
    font-family: 'Poppins'; 
    text-align: center;
}
.custom-main-footer{
    color: gray;
    font-weight: 400;
    font-size: 15px;
}
.body_img{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.body_img img{
    height: 60px;
    width: 60px;
    margin: 5px;
}
.body_img span{
color: #4DAC51;
margin: 5px;
font-size: 16px;
}
.custom_img-hw {
  height: 90px;
  width: 90px;
}
.input-group-content{
  margin-bottom: 0px !important;
}
/* country flag */
.iti__country {
  display: none !important;
}
.iti--separate-dial-code .iti__selected-flag {
background-color: transparent !important;
border-radius: 5px;
cursor: not-allowed !important;
}

.iti__arrow {
  display: none !important;
}
.iti__country-list {
  display: none !important;
}