.css-serial {
  counter-reset: serial-number; /* Set the serial number counter to 0 */
 }
 .css-serial td:first-child:after {
  counter-increment: serial-number; /* Increment the serial number counter */
  content: counter(serial-number); /* Display the counter */
 }

.bmw-table {
  margin: auto;
  min-width: 300px;
  max-width: 100%;
  table-layout: fixed;
  white-space: nowrap;
  border-collapse: collapse;
}

.row-NO {
  width: 5%;
}

.row-name {
  width: 40%;
}

.bmw-table tr:first-child {
  border-top: none;
  background: #4a90e2;
  color: #fff;
}

.bmw-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #f5f9fc;
}

.bmw-table tr:nth-child(odd):not(:first-child) {
  background-color: #ebf3f9;
}

.bmw-table th {
  display: none;
}

.bmw-table td {
  display: block;
}

.bmw-table td:first-child {
  content: attr(data-th) "  " counter(serial-number);
  margin-top: .5em;
}

.bmw-table td:last-child {
  margin-bottom: .5em;
}

.bmw-table td:before {
  content: attr(data-th) "  ";
  font-weight: bold;
  width: 120px;
  display: inline-block;
  color: #000;
}

.bmw-table th,
.bmw-table td {
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bmw-table {
  color: #333;
  border-radius: .4em;
  overflow: hidden;
}

.bmw-table tr {
  border-color: #bfbfbf;
}

.bmw-table th,
.bmw-table td {
  padding: .5em 1em;
  word-wrap: break-word;
}
@media screen and (max-width: 601px) {
  .bmw-table tr:nth-child(2) {
    border-top: none;
  }
}
@media screen and (min-width: 600px) {
  .bmw-table tr:hover:not(:first-child) {
    background-color: #d8e7f3;
  }
  .bmw-table td:before {
    display: none;
  }
  .bmw-table th,
  .bmw-table td {
    display: table-cell;
    padding: .25em .5em;
  }
  .bmw-table th:first-child,
  .bmw-table td:first-child {
    padding-left: 0;
  }
  .bmw-table th:last-child,
  .bmw-table td:last-child {
    padding-right: 0;
  }
  .bmw-table th,
  .bmw-table td {
    padding: 1em !important;
  }
}

.bar .logo{ 
  max-width: none; 
  max-height: 30px; 
}