/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .easy-fill-form *,
 .easy-fill-form ::before,
 .easy-fill-form ::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 .eff-form-page {
   background: 0% 0% / cover white;
   border: 1px solid #f7f7f7;
   display: flex;
   height: auto;
   margin-bottom: 40px;
   position: relative;
   width: 700px;
 }
 .eff-form-page:hover {
   border: 1px dashed #2d7fea !important;
 }
 .eff-form-page-img {
   height: 100%;
   width: 100%;
 }
 .eff-form-page .checkbox .label,
 .eff-form-page .date .label {
   font-size: 10px;
   vertical-align: top;
 }
 .easy-fill-form .eff-submit-btn,
 .eff-signature-pad .sign-action-btn {
   background: transparent;
   border-radius: 4px;
   color: #397df3;
   cursor: pointer;
   border: 1px solid #397df3;
   transition: 0.5s;
   font-size: 16px !important;
   padding: 8px 40px;
   margin: 0;
 }
 .eff-signature-wrap {
   background: rgba(0, 0, 0, 0.5);
   left: 0;
   position: fixed;
   top: 0;
   width: 100vw;
   height: 100vh;
   z-index: 10;
 }
 .eff-signature-pad {
   background-color: white;
   border-radius: 8px;
   left: 50%;
   max-width: 80%;
   position: absolute;
   top: 50%;
   transform: translate(-50%, -50%);
   width: 420px;
   z-index: 10;
 }
 .eff-signature-pad .sign-head {
   align-items: center;
   border-bottom: 1px solid #dee2e6;
   display: flex;
   justify-content: space-between;
   padding: 0.75rem;
 }
 .eff-signature-pad .sign-close {
   cursor: pointer;
   font-size: 2rem;
   line-height: 1;
 }
 .eff-signature-pad .sign-canvas {
   padding: 0.75rem;
 }
 .eff-signature-pad canvas {
   border: 1px solid black;
   width: 100%;
 }
 .eff-signature-pad .sign-foot {
   border-top: 1px solid #dee2e6;
   display: flex;
   gap: 8px;
   justify-content: flex-end;
   padding: 0.75rem;
 }
 
 .eff-ai-form {
   border-radius: 16px;
   flex-direction: column;
 }
 
 .eff-ai-form-header {
   align-items: center;
   border-bottom: 2px solid #2d7fea;
   display: flex;
   margin-bottom: 12px;
   max-height: 65px;
   padding: 9px 16px;
 }
 .eff-ai-form-header-img {
   align-items: flex-end;
   display: flex;
   flex: 0 0 20%;
   height: 37px;
 }
 .eff-ai-form-header-img img {
   max-width: 100%;
   max-height: 100%;
   object-fit: contain;
   vertical-align: middle;
 }
 .eff-ai-form-desc {
   background: #fbfbfb;
   border: 1px solid #f3f4f7;
   flex: 0 0 60%;
   padding: 8px 24px;
   position: relative;
   width: 100%;
 }
 .eff-ai-form-desc h4 {
   color: #3f455a;
   font-size: 12px;
   font-weight: 600;
   margin-bottom: 3px;
   margin-top: 0;
   line-height: 14.52px;
   text-align: center;
 }
 .eff-ai-form-desc p {
   color: #7c85a2;
   display: block;
   font-size: 10px;
   font-weight: 400;
   line-height: 12.1px;
   margin-top: 0;
   margin-bottom: 1rem;
   overflow: hidden;
   text-align: center;
   text-overflow: ellipsis;
   width: 100%;
   white-space: unset;
 }
 
 .eff-ai-form-body {
   min-height: 683px;
   padding: 0 24px;
 }
 .eff-ai-form-body .row {
   display: flex;
   flex-wrap: wrap;
 }
 .eff-ai-form-body .field {
   display: flex;
   flex: 0 0 auto;
   flex-direction: column;
   margin-bottom: 1rem;
   width: 100%;
 }
 .eff-ai-form-body .field.half {
   padding-left: 0.5rem;
   padding-right: 0.5rem;
   width: 50%;
 }
 .eff-ai-form-body .field label {
   color: #2a2f3c;
   font-size: 12px;
   font-weight: 500;
   line-height: 16.8px;
   margin-bottom: 5px;
 }
 .eff-ai-form-body input[type="text"],
 .eff-ai-form-body input[type="date"],
 .eff-ai-form-body textarea {
   border: 1px solid #d5d8e1;
   border-radius: 0.375rem;
   font-size: 12px;
   line-height: 1.5;
   padding: 0.375rem 0.75rem;
   padding-right: 30px;
 }
 .eff-ai-form-body input[type="text"],
 .eff-ai-form-body input[type="date"] {
   height: 32px;
 }
 .eff-ai-form-body input[type="checkbox"] {
   margin-right: 0.25rem;
   width: max-content;
 }
 .eff-ai-form-body textarea {
   min-height: calc(1.5em + 0.75rem + 2px);
 }
 
 
 
 .ajax-messages {
   position: relative;
   margin: 20px 0;
   padding: 10px;
   border-radius: 5px;
   display: none; /* Hidden initially */
 }
 
 .ajax-messages .alert {
   padding: 15px;
   border: 1px solid transparent;
   border-radius: 4px;
   position: relative;
 }
 
 .ajax-messages .alert-success {
   color: #3c763d;
   background-color: #dff0d8; /* Light green background */
   border-color: #d6e9c6;
 }
 .ajax-messages .alert-error {
   color: #a94442; /* Dark red text */
   background-color: #f2dede; /* Light red background */
   border-color: #ebccd1; /* Red border */
 }
 
 .ajax-messages .close-ajax-msg {
   position: absolute;
   top: 15px;
   right: 0px;
   background: transparent;
   border: none;
   font-size: 14px;
   cursor: pointer;
   display: none; /* Hidden initially */
 }
 
 .ajax-messages .close-ajax-msg:hover {
   color: #000;
 }
 
 .ajax-messages .eff-form-message {
   display: inline-block;
   width: 100%;
   font-size: 14px;
   padding: 10px;
 }
 
 
 .eff-error-message{
   color: rgb(216, 0, 12);
   font-family: Arial, sans-serif;
   font-size: 13px;
   display: none;
 }
 .eff-error-display-message{
   color: #000000;
   font-family: Arial, sans-serif;
   font-size: 12px;
 
 }
 .eff-email-address, .eff-location{
   width: 700px  !important;
   border: 1px solid #d5d8e1 !important;
   border-radius: 5px !important;
   padding: .5rem 1rem !important;
   transition: all .3s !important;
   margin-bottom: 14px ;
   height: 48px;
 }
 @media only screen and (max-width: 600px) {
   .eff-ai-form   {
     width: auto; /* Unsets the width */
   }
   .eff-email-address, .eff-location{
     width: 100%  !important;
   }
 }
 
 /* Unset width for tablets (max-width: 1024px) */
 @media only screen and (min-width: 601px) and (max-width: 1024px) {
   .eff-ai-form  {
     width: auto; /* Unsets the width */
   }
   .eff-email-address, .eff-location{
     width: 100%  !important;
   }
 }
 @media only screen and (max-width: 600px) {
   .easy-fill-form  {
     overflow: auto; /* Unsets the width */
   }
 }
 
 /* Unset width for tablets (max-width: 1024px) */
 @media only screen and (min-width: 601px) and (max-width: 1024px) {
   .easy-fill-form  {
     overflow: auto; /* Unsets the width */
   }
 }
 
 
 
 
 
 