/* 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;
    }

    /* TO CONTROL SCREEN SCROLL*/
.form-section, .form-item {
    display: block;
    overflow: hidden;
    padding-left: inherit;
    padding-bottom: 16px;
}
#form-element-wrapper_2
{
    display: none;
}

.header_container {
    display: flex;
    justify-content: space-between;
    column-gap: 30px !important;
}
.divTableRow{
    padding-bottom:5px;
}

.Logo{

    padding-top:30px;
}

.grid-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two equal columns */
    gap: 20px; /* Space between columns */
    max-width: 800px; /* Adjust width as needed */
}

.grid-list ul {
    list-style-type: disc; /* Bullet points */
    padding-left: 20px; /* Proper indentation */
}

.iDate{
   padding-left:50%;}

   .addressTab1 {
    padding-left:20%;
    padding-right:20%;
}

.box {
    border: 2px solid black; /* Creates the box */
    padding: 5px;
    max-width: 100%; /* Adjust width as needed */
}

ul,ol{
    margin-right:20px;
}

.phone {
    padding-right: 40px;
}



@media only screen and (max-width: 768px)
 {
    .header_container {
    flex-direction: column;
    justify-content: center;
    align-items: center !important;
}

.iDate{
    padding-left:0%;
}

.addressTab1{
    padding-left:0;
    padding-right:0;
}

.grid-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column; /* Stack items */
    list-style-type: disc; /* Ensure bullets are visible */
    padding-left: 20px; /* Add padding for indentation */
    gap:10px;
    margin-bottom:20px;
    margin-right:20px;
}

.grid-list ul {
    list-style-type: disc; /* Ensure bullets remain */
    padding-left: 20px;
    margin: 0;
    display: contents;
}

.grid-list ul li {
    display: list-item; /* Ensures bullets are properly applied */
}

.grid-list ul:first-child li:nth-child(1) { order: 1; }
.grid-list ul:first-child li:nth-child(2) { order: 3; }
.grid-list ul:first-child li:nth-child(3) { order: 5; }
.grid-list ul:last-child li:nth-child(1) { order: 2; }
.grid-list ul:last-child li:nth-child(2) { order: 4; }
.grid-list ul:last-child li:nth-child(3) { order: 6; }
 }


 @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) 
 
 {  
    .grid-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two equal columns */
        
        max-width: 800px; /* Adjust width as needed */
    }
    
    .grid-list ul {
        list-style-type: disc; /* Bullet points */
        padding-left: 20px; /* Proper indentation */
    }
    
    .iDate{
       padding-left:50%;}
    
       .addressTab1 {
        padding-left:20%;
        padding-right:20%;
    }}


 