/* 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;
    }
#form-element-wrapper_2{
    display: none;
}
    /* TO CONTROL SCREEN SCROLL*/
.form-section, .form-item {
    display: block;
    overflow: hidden;
    padding-left: inherit;
    padding-bottom: 5px;
}
.header_container {
    display: flex;
    justify-content: space-between;
    column-gap: 30px !important;
}

.blanklinecallout {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.line{
    border-bottom:1.5px solid black;
    width:10%;
    display: inline-block;
}
table {
    width: 95%;
    border-collapse: collapse;
    margin-inline-start: 3%;
    margin-top: 10px;
    margin-bottom: 30px;
  }

  td{
    border: 1px solid black;
    padding: 4px;
    vertical-align: top;
  }

  th {width: 40%;
    border: 1px solid black;
    padding: 4px;
    vertical-align: top;
    font-weight: normal;
    text-align: start;
  }

  .contact-line {
    display: flex;
    justify-content: space-between;
   
    padding: 10px 0;
  }

  @media only screen and (max-width: 768px)
  {
     .header_container {
     flex-direction: column;
     justify-content: center;
     align-items: center !important;
  }

    .contact-line {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        flex-direction: column;
        gap: 5px;
    }
    table{
        width: 100%;
        margin-inline-start: 0;
    }
  }

  /* ipad mini*/
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 768px) 
and (min-device-height: 1024px) 
and (max-device-height: 1024px) 
and (-webkit-min-device-pixel-ratio: 1) 

{.header_container {
    display: flex;
    justify-content: space-between;
    column-gap: 30px !important;
}
.contact-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    flex-direction: unset;
    gap: 0px;}
}
