/* Hide Submit Button */
.form-submit-button {
    display: none !important;
  }
  
/* Hide Print Button */
  #print-preview {
    display: none !important;
  }

/* Hide Additional wrapper sections */
#form-element-wrapper_2
{
    display: none;
}

/* TO CONTROL SCREEN SCROLL*/
.form-section, .form-item {
    display: block;
    overflow: hidden;
    padding-left: inherit;
    padding-bottom: 16px;
}

  /* Hiding Language dropdown*/
  #form-element-wrapper_1 {
      visibility: hidden !important;
  }

/*------------------------------------------------------*/

.header_container {
    display: flex;
    justify-content: space-between;
    column-gap: 30px !important;
}

.divTableRow {
    display: table-row;
}

.divTableCell{
    display: table-cell;
    text-align: justify;
    padding-bottom: 10px;
}

/* **************************** */ 

/* Responsive code for Mobile Devices */ 

@media only screen and (max-width: 768px)
{
   .header_container {
   flex-direction: column;
   justify-content: center;
   align-items: center !important;
}
}
@media screen and (max-device-width: 821px) 
and (max-device-height: 1181px) 
and (min-device-width: 819px) 
and (min-device-height: 1179px) {

}

/* Media query for 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 {
    flex-direction: column;
    justify-content: center;
    align-items: center !important;
}

}