.rwd-table {
	background: #fff;
	overflow: hidden;
}

.rwd-table > thead > tr > th {
	background: #f5f5f5;
}

.rwd-table tr:nth-of-type(2n){
	background: #f5f6f7;
}

.rwd-table th, 
.rwd-table td {
	margin: 0.5em 1.5em;
}

.rwd-table {
	min-width: 100%;
}

.rwd-table th {
	display: none;
}

.rwd-table td {
	display: block;
}

.rwd-table td:before {
	content: attr(data-th) " : ";
	font-weight: bold;
	width: 100%;
	margin-bottom: 5px;
	/* display: inline-block; */
}

/*button area*/
.rwd-table td.btn-area:before {
	content: attr(data-th) "";
}

.rwd-table th, .rwd-table td:before {
	font-weight: bold;
	font-size: 1.1em;
	color: var(--BGBlue);
}

/* table border */
.rwd-table > tbody > tr > td {
    padding: 2px 0;
    border-top: none;
}
.rwd-table > tbody > tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}



@media screen and (min-width: 768px) {
	.rwd-table td:before {
		display: none;
	}
	.rwd-table th, .rwd-table td {
		display: table-cell;
		padding: 0.25em 0.5em;
	}
	.rwd-table th:first-child, 
	.rwd-table td:first-child {
		padding-left: 0;
	}
	.rwd-table th:last-child, 
	.rwd-table td:last-child {
		padding-right: 0;
	}
	.rwd-table th, 
	.rwd-table td {
		min-width: 100px;
		padding: 0.8em !important;
	}
	.rwd-table > tbody > tr > td {
        padding: 8px;
		border-top: 1px solid #ddd;
		border-bottom: 1px solid #ddd;
	}
	.rwd-table .main-topic {
		width: 50%;
		max-width: 380px;
		min-width: 280px;
	}
	.browse-time {
		max-width: 70px;
		min-width: 60px;
		text-align: center;
	}
	.rwd-table .table-progress{
		min-width: 185px;
	}
}

@media screen and (max-width: 375px) {
    .rwd-table td:before {
        /* display: inline-block; */
    }
}

@media print {
	.rwd-table td:before {
		display: none;
	}
	.rwd-table th, .rwd-table td {
		display: table-cell;
		padding: 0.25em 0.5em;
	}
	.rwd-table th:first-child, 
	.rwd-table td:first-child {
		padding-left: 0;
	}
	.rwd-table th:last-child, 
	.rwd-table td:last-child {
		padding-right: 0;
	}
	.rwd-table th, 
	.rwd-table td {
		min-width: 125px;
		padding: 0.8em !important;
	}
	.rwd-table > tbody > tr > td {
        padding: 8px;
		border-top: 1px solid #ddd;
		border-bottom: 1px solid #ddd;
	}
}