.bonus__history-list {
	position      : absolute;
	display       : table;
	padding       : 10px 15px;
	opacity       : 0;
	background    : #ffc93e;
	border-radius : 5px;
	margin-top    : 15px;
	/*display       : none;*/
}

.bonus__history-item {
	display : table-row;
}

.bonus__history-item-cnt, .bonus__history-item-dt {
	display       : table-cell;
	width         : 50%;
	padding       : 5px 15px;
	border-bottom : 1px solid rgba(0, 0, 0, .3);
	margin        : 3px 0;
	font          : 500 15px 'San Francisco';
	color         : #000000;
}

.bonus__history-item:last-child .bonus__history-item-cnt, .bonus__history-item:last-child .bonus__history-item-dt {
	border-bottom : 0;
}

.bonus__history-item-cnt {
	border-right : 1px solid rgba(0, 0, 0, .3);
}

@media (max-width : 500px) {
	.bonus__history-list {
		padding : 5px;
	}

	.bonus__history-item-cnt, .bonus__history-item-dt {
		font-size : 12px;
	}

	.bonus__history-item-cnt {
		width : 60%;
	}

	.bonus__history-item-dt {
		width : 40%;
	}
}

@media (min-width : 768px) and (max-width : 1075px) {
	.bonus__history-list {
		padding : 5px;
	}

	.bonus__history-item-cnt, .bonus__history-item-dt {
		font-size : 12px;
	}

	.bonus__history-item-cnt {
		width : 60%;
	}

	.bonus__history-item-dt {
		width : 40%;
	}
}