.product_table {
	background: none !important;
	border-collapse: collapse;
	width: 100%;
	margin-top: 50px;
  margin-bottom: 20px;
	min-width: 400px;

}

/*@media screen and (max-width : 1000px) {
  #product_table {

  }
}*/

.scroll_wrapper {
  width:100%;
  display: flex;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}

.product_table th {
  text-align: left;
	background: #0A6FAE;
	color: white;
	font-weight: 600;
	font-size: 20px;
}

.product_table tr th {
    padding: 23px 30px;
}

.product_table th {
    position: relative;
    border-right: none;
}

/*#product_table th:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, .6);
}*/

.product_table tr {
    border-top: 1px solid;
    border-bottom: 1px solid;
}

.product_table tr:last-child {
    border-bottom: 3px solid;
}

.product_table tr td {
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    padding: 23px 30px;
}

.product_table.td_left tr td {
    text-align: left;
    font-weight: 400;
    font-size: 20px;
    padding: 23px 30px;
}

.product_table th, .product_table td {
    white-space: nowrap;
}