.el-ablesetermine .table-wrapper-outer {
	opacity: 0;
	transition: ease-in-out opacity 0.3s;
}
.el-ablesetermine.initialized  .table-wrapper-outer {
	opacity: 1;
}
.ablese-table-body tr {
	display: none;
}
.ablese-table-body tr.show {
	display: table-row;
}
.ablese-table {
	opacity: 0;
	height: 0;
	transition: ease-in-out opacity 0.1s;
}
.el-ablesetermine.results-showing .ablese-table {
	opacity: 1;
	height: auto;
}

/*---- INPUT ----*/
.ablese-input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 2rem;
}
.ablese-input label {
	font-size: 1.2rem;
	margin-bottom: 0.2rem;
}
#PlzInput {
	max-width: 37.5rem;
	margin-bottom: 2rem;
	transition: ease-in-out opacity 0.3s;
}
#PlzInput:disabled {
	opacity: 0.3;
}

/*---- INFO ----*/

.ablese-info {
	display: none;
	text-align: center;
}
.no-results .ablese-info {
	display: block;
}


/*---- LOADING ----*/

/* RING */
.library-loader {
	text-align: center;
}
.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid var(--primary-color-100);
  border-color: var(--primary-color-100) transparent var(--primary-color-100) transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.el-ablesetermine.initialized .lds-dual-ring {
	display: none;
}
/* DESIGN */

.ablese-table {
	font-size: 1.6rem;
	line-height: 1.5;
	font-weight: 400;
	font-style: normal;
}
.ablese-table {
	border: 1px solid var(--primary-color-15);
	table-layout: fixed;
}
.ablese-table tbody tr {
	border-bottom: 1px solid var(--primary-color-15);
}
.ablese-table tbody tr:last-child {
	border-bottom: none !important;
}
.ablese-table tbody tr:nth-child(even) {
	background-color: var(--primary-color-07);
}
.ablese-table thead td {
	font-weight: 600 !important;
	font-size: 16px;
	letter-spacing: 0em;
}
.ablese-table thead tr {
	background-color: var(--primary-color-100);
}
.ablese-table thead tr td {
	font-weight: 700;
	color: white;
}
.ablese-table tr > td {
	position: relative;
	padding: 1.3rem 2rem;
}
.ablese-table tbody tr > td:not(:first-child) {
	border-left: 1px solid var(--primary-color-15);
}



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

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

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

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

.el-ablesetermine.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-ablesetermine.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-ablesetermine.table-scrollable .table-wrapper-outer[data-scrollstate="onmyway"]:after,
.el-ablesetermine.table-scrollable .table-wrapper-outer[data-scrollstate="onmyway"]:before {
	opacity: 0;
	animation: none;
}
@keyframes table-overflow-outer {
	0% { right: 0; opacity: 1; }
	100% { right: 20px; opacity: 0; }
}

@media only screen and (max-width:600px) {
	.ablese-table-header td {
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}
}