.custom_modal_overlay {
  position: fixed;
  z-index: 3 !important;
  top: 7rem;
  left: 18%;
  right: 0;
  bottom: 0;
  background: black;
  opacity: 0.75;
}

.custom_modal_dialog {
  z-index: 4 !important;
  position: fixed;
  top: 7rem;
  left: 18%;
  right: 0;
  bottom: 0;
}

.custom_modal_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  width: 50%;
  padding: 2rem;
}

.custom_modal_close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.custom_modal_close button {
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
  background-color: transparent !important;
}

.custom_modal_close button i {
  color: #2b4b1b;
  font-size: 2rem;
  font-weight: 600;
}

.custom_modal_content header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom_modal_content header h2 {
  font-weight: 500;
  font-size: 2rem;
  line-height: 3rem;
}

.custom_modal_content_body {
  margin: 1.5rem 0;
}

/* Mobile */
@media (max-width: 700px) {
  .custom_modal_overlay {
    left: 0;
  }

  .custom_modal_dialog {
    left: 0;
  }

  .custom_modal_inner {
    width: 80%;
    padding: 1rem;
  }

  .custom_modal_close button i {
    font-weight: 500;
  }

  .custom_modal_content header h2 {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
}

/* Tablet and Smaller Desktop */
@media (min-width: 701px) and (max-width: 1120px) {
}
