.el-tables {
	font-size: 1.6rem !important;
	line-height: 1.5;
	font-weight: 400;
	font-style: normal;
}
.el-tables table {
	border: 1px solid var(--primary-color-15);
}
.el-tables.tableFixed table {
	table-layout: fixed;
}
.el-tables.leftColumnBold table tr > td:first-child {
	font-weight: 700 !important;
}

.el-tables tbody tr {
	border-bottom: 1px solid var(--primary-color-15);
}
.el-tables tbody tr:last-child {
	border-bottom: none !important;
}
.el-tables tbody tr td {
	/* color: #54534D; */
}
.el-tables tbody tr:nth-child(even) {
	background-color: var(--primary-color-07);
}
.el-tables thead td {
	font-weight: 600 !important;
	font-size: 16px;
	letter-spacing: 0em;
}
.el-tables thead tr {
	background-color: var(--primary-color-100);
}
.el-tables thead tr td {
	font-weight: 700;
	color: white;
	/* height: 60px;
	vertical-align: text-top; */
}
.el-tables tr > td {
	position: relative;
	padding: 1.3rem 2rem;
}
.el-tables.withLines tbody tr > td:not(:first-child) {
	border-left: 1px solid var(--primary-color-15);
}
.el-tables tr > td strong {
	font-weight: 600;
}



/*---- HORIZONTALER SCROLL ----*/

.el-tables.scroll.table-scrollable .table-wrapper {
	overflow-y: auto;
}

.el-tables.scroll.table-scrollable .table-wrapper table td {
	white-space: nowrap;	
}

.el-tables.scroll.table-scrollable .table-wrapper-outer {
	position: relative;
}

.el-tables.scroll.table-scrollable .table-wrapper-outer:before,
.el-tables.firstRowFixed.table-scrollable .table-wrapper-outer:before  {
	font-family: 'bakehouse-iconset' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	letter-spacing: 0;
	-webkit-font-feature-settings: "liga";
	-moz-font-feature-settings: "liga=1";
	-moz-font-feature-settings: "liga";
	-ms-font-feature-settings: "liga" 1;
	-o-font-feature-settings: "liga";
	font-feature-settings: "liga";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	animation: table-overflow-outer 2s infinite;  
	text-align: center;
	line-height: 40px;
	font-size: 22px;
	content: '\e9a2';
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
	background-color: rgba(0,0,0,.7);
	color: #fff;
	border-radius: 50%;
	transition: all .5s;
}
.el-tables.scroll.table-scrollable .table-wrapper-outer:after {
	content: '';
	display: block;
	width: 50px;
	height: 100%;
	position: absolute;
	right: 0px;
	margin-right: -1px;
	top: 0;
	z-index: 9;
	background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
	transition: all .5s;
}
.el-tables.scroll.table-scrollable .table-wrapper-outer[data-scrollstate="onmyway"]:after,
.el-tables.scroll.table-scrollable .table-wrapper-outer[data-scrollstate="onmyway"]:before {
	opacity: 0;
	animation: none;
	pointer-events: none;
}
@keyframes table-overflow-outer {
	0% { right: 0; opacity: 1; }
	100% { right: 20px; opacity: 0; }
}

@media only screen and (max-width:1023px) {
	/* .el-tables {
		font-size: 13px !important;
	} */
	.el-tables.tableFixed.scroll table {
		table-layout: auto;
	}
}

@media only screen and (max-width:767px) {

	/* REORDERED TABLE */
	.el-tables.reorder .name {
	/* 	border-bottom: 1px solid rgba(0,0,0,0.2); */
	/* 	text-transform: uppercase; */
	}

	.el-tables.reorder .key,
	.el-tables.reorder .value {
		float: left;
		width: 50%;
		box-sizing: border-box;
		padding: 10px 0;
	}

	.el-tables.reorder .row {
		margin-bottom: 10px;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}

	.el-tables.reorder .row:after {
		content: ".";
		clear: both;
		display: block;
		visibility: hidden;
		height: 0px;
	}

	/* FIXED FIRST ROW TABLE */
	.el-tables.firstRowFixed {
		position: relative;
	}

	.el-tables.firstRowFixed td:first-child {
		position: absolute;
		width: 150px;
		left: 0;
		padding-left: 0px;
		box-sizing: border-box;
	}
	.el-tables.firstRowFixed thead td:first-child {
		background: var(--primary-color-100);
	}
	.el-tables.firstRowFixed td:nth-child(2) {
		padding-left: 20px;
	}

	.el-tables.firstRowFixed td {
		/* white-space: nowrap;		 */
	}

	.el-tables.firstRowFixed .table-wrapper-outer {
		display: block;
		overflow-x: scroll;
	}
	.el-tables.firstRowFixed .table-wrapper:after {
		/* content: '';
		display: block;
		width: 30px;
		height: 100%;
		position: absolute;
		left: 0px;
		margin-right: -1px;
		top: 0;
		z-index: 9;
		background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
		background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
		background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
		background: var(--primary-color-100);
		transition: all .5s; */
	}

	.el-tables.firstRowFixed .table-wrapper-outer[data-scrollstate="onmyway"]:before {
		opacity: 0;
		animation: none;
		display: none;
	}

	.el-tables.firstRowFixed .table-wrapper-outer,
	.el-tables.firstRowFixed .table-wrapper:after {
		margin-left: 130px;
	}
}