.price-table-wrapper {
    margin-top: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
  }
  
  .price-table thead {
    background: #c8901f;
    color: #fff;
  }
  
.price-table th,
.price-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
    font-size: 15px;
    color: #000;
  }

@media (max-width: 768px) {
  .price-table {
    min-width: 520px;
  }

  .price-table th,
  .price-table td {
    padding: 10px 12px;
    font-size: 14px;
  }
}
  
  .price-table tbody tr:hover {
    background: #fafafa;
  }
  
  .price-table .up {
    color: #0bbf4b;
    font-weight: 600;
  }
  
  .price-table .down {
    color: #d93025;
    font-weight: 600;
  }
  
