/* Hide Submit Button */
.form-submit-button {
  display: none !important;
}
/* ------------------ */

/* Hide Print Button */
#print-preview {
  display: none !important;
  
}
/* ----------------- */
#form-element-wrapper_2{
  display: none;
}
/* Hiding Language dropdown*/

#form-element-wrapper_17 {
  visibility: hidden !important;
}
/* css for edd logo and header*/

/* TO CONTROL SCREEN SCROLLBAR*/
.form-item {
    display: block;
    overflow: hidden;
    padding-left: inherit;
    padding-bottom: 16px;
}

.blank-line {
    flex-grow: 1;
    border-bottom: 1.5px solid #000;
    width: 126px;
    display: inline-block;
}
.header_container {
  display: flex;
  justify-content: space-between;
  column-gap: 30px !important;
}

.grey-box {
    background-color: #e5e5e5;
    width: 40%;
    /* Adjust the width as needed*/
    border-radius: 0px;
    /* Remove this border-radius if rounded is not needed */
    padding-bottom: 10%;
    /* Adjust the height as needed*/
    float: left;
    position: relative;
}

.blanklinecallout {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}  
.divTable {
    display: table;
    width: 80%;
    border-collapse: collapse;
    margin-inline-end: auto;
}
.divTableBody {
    display: table-row-group;
}
.divTableRow {
    display: table-row;
}
.divTableCell, .divTableCell1 {
    display: table-cell;
    padding: 10px 0px; /* Reduced padding for less gap */
    white-space: nowrap;

}
.divTableCell1 {
    white-space: nowrap;
}

.notranslate {
    white-space: nowrap;
}
.blank-line{
    flex-grow: 1;
}
.Footer{
    text-align: center; 
    padding-left: 70px;
     padding-right: 70px;
}

@media screen and (max-device-width: 768px) {

    .header_container {
        flex-direction: column;
        justify-content: center;
        align-items: center !important;
    }
    .grey-box {
        background-color: #e5e5e5;
        width: 100%;
        border-radius: 0px;
        padding-bottom: 30%;
        float: left;
        position: relative;
        /* height: 91%; */
    }
    .divTableCell, .divTableCell1 {
        display: block;
        padding: 10px 0px;
        white-space: nowrap;
    }
    .blank-line {
        flex-grow: 1;
        border-bottom: 1.5px solid #000;
        width: 122%;
        display: inline-block;
    }
    .Footer {
        text-align: center; 
        padding-left: 0px;
         padding-right: 0px;
    }
}




/* 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;
}
.grey-box {
    background-color: #e5e5e5;
    width: 50%;
    border-radius: 0px;
    padding-bottom: 20%;
    float: left;
    position: relative;
    /* height: 91%; */
}
}