
div#modalImage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a1;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  div#modalImage .modal {
    position: relative;
  }
  
  div#modalImage .modal .modal-dialog {
    max-width: 600px;
    background: transparent;
    width: 100%;
    border-radius: 10px;
  }
  
  div#modalImage .modal .modal-dialog .modal-header {
    padding: 12px 20px 15px;
    border-bottom: 1px solid #e9e9e9;
  }
  body.modal-opened .modal .modal-dialog{
    overflow:visible !important;
  }
  
  div#modalImage .modal .modal-dialog button#closeImageModal {
   border-radius: 50%;
   width: 38px;
   height: 38px;
   background: linear-gradient(90.3deg, #0E65AA 2.44%, #1CACE7 102.75%);
   color: #fff;
   border: none;
   position: absolute;
   top: -21px;
   right: -21px;
   cursor: pointer;
  }
  
  div#modalImage .modal .modal-dialog .modal-header button#closeModal i {
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  
  div#modalImage .modal .modal-dialog .modal-header h4.modal-title {
    font-family: 'Darker Grotesque';
    font-size: 30px;
    font-weight: 700;
    margin: 0;
  }
  
  div#modalImage .modal .modal-dialog .modal-body {
    padding: 30px 20px;
  }
  
  div#modalImage .modal .modal-dialog .modal-content .modal-footer {
    padding: 12px 20px 15px;
    border-top: 1px solid #e9e9e9;
  }
  
  
  div#modalImage .modal .modal-dialog .modal-content .modal-footer button.btn-submit {
    border: none;
    padding: 14px 32px 15px;
    border-radius: 30px;
    cursor: pointer;
  }
  
  div#modalImage .modal .modal-dialog .modal-body label {
    font-family: 'open sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    margin: 0 0 5px 0;
    display: block;
  }
  
  div#modalImage .modal .modal-dialog .modal-body input {
    height: 48px;
    font-size: 14px;
    font-family: 'open sans', sans-serif;
    font-weight: 500;
  }
  
  div#modalImage .modal .modal-dialog .modal-body textarea {
    font-size: 14px;
    font-family: 'open sans', sans-serif;
    font-weight: 500;
  }
  
  
  div#modalImage .modal .modal-dialog .modal-body .form-field {
    margin: 0 0 15px 0;
  }
  
  div#modalImage .modal .modal-dialog .modal-body  .form-check {
    padding: 0 0px 0px 22px;
  }
  
  div#modalImage .modal .modal-dialog .modal-body .form-check label.form-check-label {
    font-size: 14px;
    color: #545454;
    font-weight: 400;
  }
  
  div#modalImage .modal .modal-dialog .modal-body .form-check input#flexCheckChecked {
    position: absolute;
    top: 4px;
    height: 16px;
    width: 16px;
    left: 0;
    margin: 0;
  }
  
  
  div#modalImage .modal .modal-dialog .modal-body .invalid-feedback {
    font-family: 'Open Sans';
    font-size: 13px;
    color: #8a1818;
    margin: 5px 0 0 0;
  }