
/* Hide Submit Button */
.form-submit-button {
    display: none !important;
}

/* ------------------ */

#form-element-wrapper_16{
    visibility: hidden !important;
  }
/* Hide Print Button */
#print-preview {
    display: none !important;
}

/* TO CONTROL SCREEN SCROLL*/
.form-section, .form-item {
    display: block;
    overflow: hidden;
    padding-left: inherit;
    padding-bottom: 16px;
}

/* Hiding extra space at footer*/

#form-element-wrapper_18{ display:none;}

/* ----------------- */

/* Styling EDD logo along with telephone numbers */
/* Include media query */

.header_container {
    display: flex;
    justify-content: space-between;
    column-gap: 30px !important;
    }
    
.telephone {
    float: right;
    width: 40%;
    }

 ul,ol{ margin-right:35px;}

@media only screen and (max-width: 768px) {
 
    .header_container {
        flex-direction: column;
        justify-content: center;
        align-items: center !important;
    }
    .L1left{
        width:65%;
    }
    .telephone {
        float: right;
        width: 88%;
    }
    .address_block{
        text-align: center;
    }
    }


  /* Media Query for iPad Mini */
  @media only screen 
  and (min-width: 768px) 
  and (max-width: 768px) 
  and (min-height: 1024px) 
  and (max-height: 1024px)
  {
  
    .header_container {
        flex-direction: column;
        justify-content: center;
        align-items: center !important;
    }

    .L1left {
        width: 35%;
    }
    
        .telephone {
            float: right;
            width: 48%;
        }
      
    }