/* ------------------------------------------------------------ Scrollable tables */

.overthrow-enabled .scroll-table {
	position:relative;
	width:100%;
	overflow:hidden;
}

.overthrow-enabled .scroll-table:after {
	position:absolute;
	top:0;
	left:100%;
	width:50px;
	height:100%;
	border-radius:15px 0 0 15px / 125px 0 0 125px;
	box-shadow:-6px 0 5px rgba(0, 0, 0, 0.32);
	content:"";
}

.overthrow-enabled .scroll-table.shadow-left:before {
	position:absolute;
	top:0;
	right:100%;
	width:50px;
	height:100%;
	border-radius:0 15px 15px 0 / 0 125px 125px 0;
	box-shadow:6px 0 5px rgba(0, 0, 0, 0.32);
	content:"";
}

.overthrow-enabled .scroll-table.no-shadow-right:after {
	display:none;
}

.overthrow-enabled .scroll-table > .scroll-table-inner {
	width:100%;
	overflow:auto;
	margin:0 0 24px;
	padding:15px 0 0 0;
}