/* 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: 16px;
}
.header_container {
    display: flex;
    justify-content: space-between;
    column-gap: 30px !important;
}
.horizontal-line {
    border: none;
    height: 1px;
    background-color: #000;
    width: 100%;
    margin: 20px 0;
  }
  .horizontal-line1 {
    border: none;
    height: 2px;
    background-color: #000;
    width: 100%;
    margin-top: 50px;
  }
  .paraMargin {
    margin-bottom: -2px;
  }
  .form-field {
    flex: 1;
    display: flex;
    align-items: baseline;
}
.blank-line {
        display: inline-block; 
        border-bottom: 1px solid black;
        width: 300px;
       }

.blanklinecallout {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.Checkboxsize {
    width: 14px;
    height: 14px;
    background-color: white;
    border-radius: 5%;
    vertical-align: middle;
    border: 1px solid black;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}
.form-field .jtext {
    display: block;
    margin-top: -22px;
    padding-inline-start: 30px;
    line-height: 25px;
}
.form-fieldPadding {
    padding-top: 8px;
    padding-inline-start: 10px;
}
ol {
    margin-inline-start: 20px;
    margin-inline-end: 20px;
}
ul {
    list-style: none;
    margin-inline-start: 10px;
    margin-inline-end: 20px;
}

.form-field1 {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.newline {
    flex-grow: 1;
    border-bottom: 1.5px solid #000;
    height: 18px;
    margin-bottom: 10px;
    margin-inline-end: 10px;
}
@media only screen and (max-width: 768px)
 {
        .header_container {
        flex-direction: column;
        justify-content: center;
        align-items: center !important;
           }
        .form-field1 {
        display: grid;
        }

 }