/* Hide Submit Button */
.form-submit-button {
    display: none !important;
  }

/* Hiding Language dropdown*/

#form-element-wrapper_3{
    visibility: hidden !important;
  }
  
  /* Hide Print Button */
  #print-preview {
    display: none !important;
  }
  .divTableRow {
    display: flex;
    /*flex-direction: row;  Default to row */
    align-items: center; /* Center align items vertically */
}

.header_container {
  display: flex;
  justify-content: space-between;
  column-gap: 30px !important;
}
.L1left {padding-left:10px;
}

.L1right {   /* padding-right: 85px;*/
  background-color:  rgba(0, 103, 143, 1);
  margin-left: 14px;
  }


.main-container {
    color: rgba(0, 103, 143, 1);
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #005b80; /* Matching background */
    padding: 15px;
    direction: ltr !important;
    text-align: center !important;
}

.arrows {
    display: flex;
    gap: 5px; /* Space between arrows */
}

.arrow {
    width: 40px;
    height: 70px;
    clip-path: polygon(0% 0%, 45% 0%, 100% 50%, 45% 100%, 0% 100%, 55% 50%);
    background-color: gray;
}

.arrow:nth-child(1) { background-color: #5c7f99; }
.arrow:nth-child(2) { background-color: #a5b3bf; }
.arrow:nth-child(3) { background-color: #ffffff; }

.reverse {
    transform: scaleX(-1); /* Flipping the right arrows */
}




  
@media (max-width: 768px) {  
    .header_container {
      flex-direction: column;
      justify-content: center;
      align-items: center !important;
  }
 
    .L1left {
        padding-left: 0px !important;
        width: auto !important;
    }
    
    .L1right {
        padding-right: 0px !important;
        padding-top: 30px !important;
    }
    
    
    .header-container {
        flex-direction: column;
        text-align: center;
        padding: 10px;
        overflow-wrap: anywhere;
    }

    .arrows {
        margin-bottom: 5px;
        justify-content: center;
    }

    .reverse {
        margin-top: 5px;
    }

    .arrow {
        width: 30px; /* Reduce width */
        height: 50px; /* Reduce height */
    }
.center1{
    padding-bottom:20px;
}

}