.trip_main {
  padding-top: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: small;
  background-color: rgb(255, 246, 232);
}

.trip_main:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.centered--heading {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  grid-column-gap: 1rem;
}

.fl-table2 {
  border-radius: 5px;
  font-size: 9px;
  font-weight: normal;
  border: none;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  border: #080808;
}

.fl-table2 td {
  text-align: center;
  padding: 4px;
}
.fl-table2 th {
  text-align: right;
  position: sticky;
  top: 0;
}

.fl-table2 td {
  border-right: 2px solid #f8f8f8;
  font-size: 9px;
}

.fl-table2 thead th {
  color: #080808;
  background: #a4b5ca;
}

.fl-table2 thead th:nth-child(odd) {
  color: #1d1c1c;
  background: #d9d1f8;
}

.fl-table2 tr:nth-child(even) {
  background: #d1d1d1;
}

@media (max-width: 767px) {
  .fl-table2 {
    display: block;
    width: 100%;
  }
  .table-wrapper:before {
    content: "Scroll horizontally >";
    display: block;
    text-align: right;
    font-size: 9px;
    color: white;
    padding: 0 0 10px;
  }
  .fl-table2 thead,
  .fl-table2 tbody,
  .fl-table2 thead th {
    display: block;
  }
  .fl-table2 thead th:last-child {
    border-bottom: none;
  }
  .fl-table2 thead {
    float: left;
  }
  .fl-table2 tbody {
    width: auto;
    position: relative;
    overflow-x: auto;
  }
  .fl-table2 td,
  .fl-table2 th {
    padding: 20px 0.625em 0.625em 0.625em;
    height: 60px;
    vertical-align: small;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    width: 120px;
    font-size: 9px;
    text-overflow: ellipsis;
    position: sticky;
    text-align: center;
  }
  .fl-table2 thead th {
    text-align: center;
    border-bottom: 4px solid#474545;
  }
  .fl-table2 tbody tr {
    display: table-cell;
    text-align: center;
  }
  .fl-table2 tbody tr:nth-child(odd) {
    background: none;
  }
  .fl-table2 tr:nth-child(even) {
    background: transparent;
  }
  .fl-table2 tr td:nth-child(odd) {
    background: #b4afaf;
    border-right: 4px solid #474545;
  }
  .fl-table2 tr td:nth-child(even) {
    border-right: 4px solid #474545;
  }
  .fl-table2 tbody td {
    display: block;
    text-align: center;
  }
}

/*table input filed css */
.in[type="text"] {
  border: 2px solid #aaa;
  border-radius: 5px;
  margin: 8px 0;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  transition: 0.3s;
  display: block;
  height: 3vh;
  font-size: small;

  margin-top: -3px;
}

.in[type="text"]:focus {
  border-color: dodgerBlue;
  box-shadow: 0 0 8px 0 dodgerBlue;
}