html .for-mobile-view {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
html .for-mobile-view table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
html .for-mobile-view table td, html .for-mobile-view table th {
  padding: 10px !important;
  border: 1px solid #ccc !important;
  text-align: left !important;
}
@media (max-width: 768px) {
  html .vertical_table thead {
    display: none;
  }
  html .vertical_table, html .vertical_table tbody, html .vertical_table tr, html .vertical_table td {
    display: block;
    width: 100%;
  }
  html .vertical_table tr {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #fff;
  }
  html .vertical_table td {
    text-align: left;
    padding: 8px;
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
  }
  html .vertical_table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
  }
}
