.main_wrap table {
	border-collapse: collapse;
	width: 100%;
}
.main_wrap table th,
.main_wrap table td {
	position: relative;
	box-sizing: border-box;
	font-weight: normal;
	padding: 20px 0;
}
.main_wrap table th {
	vertical-align: top;
	text-align: left;
	width: 250px;
}
.main_wrap table  th::after,
.main_wrap table  td::after {
	content: "";
    background-image: linear-gradient(to right, #1F2F40, #1F2F40 1px, transparent 1px, transparent 5px);
    background-size: 5px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

@media only screen and (max-width: 767px) {
    .main_wrap table  {
   width: 100%;
  }
  
	.main_wrap table tr {
		display: block;
		padding: 10px 0;
		background-image: linear-gradient(to right, #1F2F40, #1F2F40 1px, transparent 1px, transparent 5px);
		background-size: 5px 1px;
		background-position: left bottom;
		background-repeat: repeat-x;
	}
	.main_wrap table th {
		font-weight: normal;
	}
	.main_wrap table th,
	.main_wrap table td {
		display: block;
		width: 100%;
		padding: 0;
	}
	.main_wrap table  th::after,
	.main_wrap table  td::after {
		display: none;
	}
}