/* Hide Submit Button */
.form-submit-button {
  display: none !important;
}

/* Hide Print Button */
#print-preview {
  display: none !important;
}

 /* TO CONTROL SCREEN H-SCROLL*/ 
/* .form-item { 
  display: block; 
  overflow: hidden; 
  padding-left: inherit; 
  padding-bottom: 16px; 
} */

/*to hide the blank space below the form footer*/
 #form-element-wrapper_2
{
  display: none;
} 

/*To hide the languages drop-down*/
#form-element-wrapper_3
{
visibility: hidden;
}
/* ------------------ */

/*------------------------------------------------------*/

.header_container {
  display: flex;
  justify-content: space-between;
  column-gap: 30px !important;
}

.divTableRow {
  display: table-row;
}

.divTableCell {
  display: inline;
  padding: 3px;
  width:55%;
}

.form-fieldr {
  display: flex;
  margin-bottom: 10px;
}

.jtext {
  /* margin-top: -9px;
  padding-left: 8px;
  padding-right: 5px; */
  margin-top: -9px;
  padding-left: 9px;
  padding-right: 20px;
}

.divtext {
  /* width: 74%; */
  width: 75%;
}

ul,ol {
  margin-right:20px;
}

li {
  padding-left:15px;
  padding-right:15px;
}

.Checkboxsize {
  width: 14px;
  height: 14px;
  background-color: white;
  border-radius: 5%;
  border: 1px solid grey;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor:not-allowed;
  margin-right: 8px;  
  padding: 10px;
  margin-top:10px;
  pointer-events: none;
}

.line {
  flex-grow: 1;
  border-bottom: 1.5px solid #000;
  margin-left: 5px;
  margin-bottom: 15px;
  margin-right:15px;
}

.blanklinecallout {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-field {
  display: flex;
  align-items: center;
 
}

.form-field .text {
  white-space: wrap;
  margin-bottom: 8px;
}

.halfline {
  flex-grow: 0.7;
  border-bottom: 1.5px solid black;
  margin-left: 5px;
  margin-bottom: 8px;
}

.divTableW {
  display: table;
  width: 100%;
  border-collapse: collapse; /* Mimics table border collapse */
}

.divTableRowW {
  display: table-row;
}

.divTableCellW {
  display: table-cell;
  padding: 10px;
  text-align: center; /* Centers the content */
  width: 35%;
}

/*------------------------------------------------------*/

 /* Media query for General Mobile devices */

@media only screen and (max-width: 768px)
{
  
.header_container {
  flex-direction: column;
  justify-content: center;
  align-items: center !important;
}
   
.Lright {
  text-align: center;
}

.form-field {
  display: block;
}
      
.form-fieldr {
  display: block;
}

.divtext {
  width: 100%;
}

.halfline {
flex-grow: 1;
}

}

/*------------------------------------------------------*/

 /* 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) 
 {  

.Lright {
  width: 39%;
}

.divtext {
  width: 100%;
}

}