.customModalContainer {
  position: fixed;
  height: 100vh;
  display: flex;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  align-items: center;
  z-index: 1000;
  padding:50px 10px;
  background-color: rgba(0, 0, 0, 0.8);
  inset: 0;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.customModalContainer.show {
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
}
.customModal {
  max-width: 500px;
  border-radius: 10px;
  border: 1px solid #ddd;
  width: 100%;
  background-color: #fff;
}

.customModalHeader {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
}
.customModalHeader h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-2);
}
.customModalHeader button {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}
.customModalHeader button svg {
  width: 16px;
  height: 16px;
  fill: var(--default);
}
.customModalHeader button:hover svg {
  fill: black;
}
.custommodal-body {
  padding: 20px;
}
.form-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.modal-input-wrapper {
  width: 100%;
}
.modal-input-wrapper input,.modal-input-wrapper select {
  width: 100%;
  min-height: 25px;
  border-radius: 5px;
  outline: none;
  border: 1px solid #ddd;
  padding: 10px;
}
.modal-input-wrapper textarea {
  max-height: 180px;
  height: 100%;
  border-radius: 5px;
  width: 100%;
  min-height: 100px;
  outline: none;
  border: 1px solid #ddd;
  padding: 10px;
  resize: vertical;
}
.modal-input-wrapper button {
  position: relative;
  padding: 15px 45px;
  background: #fff;
  font-size: 17px;
  width: 100%;
  font-weight: 500;
  color: #323232;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid #f79f24;
  border-radius: 8px;
  transition:.3s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.modal-input-wrapper button:hover {
  border: 1px solid #f79f24;
  background: #f79f24;
  color:#fff;
}

/*modal*/