/* Hide Submit Button */
.form-submit-button {
    display: none !important;
  }
  
  /* Hide Print Button */
  #print-preview {
    display: none !important;
  }
  /* Hiding Language dropdown*/
   
  #form-element-wrapper_1{
      visibility: hidden !important;
    }

    /* TO CONTROL SCREEN SCROLL*/
.form-section, .form-item {
    display: block;
    overflow: hidden;
    padding-left: inherit;
    padding-bottom: 16px;
}
#form-element-wrapper_2
{
    display: none;
}

.header_container {
    display: flex;
    justify-content: space-between;
    column-gap: 30px !important;
}
/* Styling EDD logo and Seal with line */
.logo-left {
    padding-top: 45px;
  }
  
  .seal-right {
    margin-top: -10px;
  }
  
  .line1 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2.2px;
    background-color: black;
    margin-top: -26px;
  } 
  ul,ol{margin-right:20px;padding-bottom:0;}
  .styled-list {
      counter-reset: list-counter; /* Reset counter */
     
      list-style: none; /* Remove default numbering */
  }
  
  .styled-list li {
      counter-increment: list-counter; /* Increment counter */
      margin-bottom: 15px; /* Add space between items */
   
      position: relative;
  }
  
  .styled-list li::before {
      content: "(" counter(list-counter, lower-alpha) ") "; /* Add (a), (b), (c), etc. */
   
      margin-right: 10px;
      margin-left: 10px;
  }
  .custom-list {
    counter-reset: list-counter;
    list-style: none; 
  }
  
  .custom-list li {
    counter-increment: list-counter;
  }
  
  .custom-list li::before {
    content: "(" counter(list-counter, decimal) ") "; /* Now shows (1), (2), (3), etc. */
    margin-right: 10px;
    margin-left: 10px;
  }
  
  .divTableRow {
    display: table-row;
}



.divTableCellK{
    display: table-cell;
}
.Left1{
    margin-left:40px;
    margin-right:40px;
    margin-top:10px; margin-bottom:10px;
}
.adjustCell{
    padding-left: 40px ;
    margin-right: 40px;
}
.jtext {
    display:block;
    margin-top:-21px;
    padding-left: 40px ;
    margin-right: 40px;
    }
  
  @media only screen and (max-width: 768px)
  {
     .header_container {
     flex-direction: column;
     justify-content: center;
     align-items: center !important;
 }
 
 .line1 {
     margin-top: -150px;
   } 
      
 
 h1{
     text-align: center;
 }


 .seal-right{
     margin-top: 0;
 }
 }