@charset "utf-8";

/******** FARBDEFINITION **********/

.cs-highlight {
	color: black !important;
}

.cs-bg-highlight {
	background-color: black!important;
	color: white !important;	
}

input:checked + .cs-slider {
	background-color: black;
}

.cs-popup {
	font-size: 14px; 
	line-height: 19px;
}

/**********************************/


.cs-container {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99999;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
}

.cs-popup {
	box-sizing: border-box;
	width: 360px;
	background-color: white;
	color: #303030;
	padding: 15px 18px 10px 18px;
	border-radius: 4px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	max-height: 100%;
	overflow-y: auto;
	margin: 8px;
}

.cs-popup#cs-popup-individuell {
	width: 500px;
	display: none;
}

.cs-popup h3 {
/* 	text-transform: uppercase; */
	font-weight: 600;
	font-size: 18px;
	margin-top: 0px;
	margin-bottom: 15px;
}

.cs-button {
	box-sizing: border-box;
	display: inline-block;
	width: 100%;
	border-radius: 4px;
	text-align: center;
	text-decoration: none;
	font-size: 15px;	
	line-height: 17px;
	background-color: #F0F0F0;
	padding: 11px;
	margin-bottom: 7px;
}

.cs-button:hover {
	filter: brightness(95%);
}

.cs-button.cs-bg-highlight:hover {
	filter: brightness(110%);
}

.cs-footer {
	font-size: 12px;
	line-height: 18px;
	color: #909090;
	text-align: center;
}

.cs-footer a {
	text-decoration: none;
}

.cs-footer a:hover {
	text-decoration: underline;
}

.cs-kategorie {
	position: relative;
	background-color: #F8f8f8;
	padding: 6px 12px;
	margin-bottom: 10px;
}

.cs-kategorie h4 {
	margin-top: 0px;
	margin-bottom: 2px;
}

.cs-morelink {
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	margin-top: 2px;
}

.cs-details {
	font-size: 12px;
	line-height: 16px;
	display: none;
}

.cs-details table {
	margin-top: 10px;
	margin-bottom: 5px;
	width: 100%;
}

.cs-details th {
	padding: 2px 5px;
	background-color: white;
	text-align: left;
	vertical-align: top;
	width: 85px;
	border-bottom: 1px solid #F8f8f8;;
}

.cs-details td {
	padding: 2px 5px;
	background-color: white;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid #F8f8f8;;
}

.cs-switch {
	position: absolute;
	right: 12px;
	top: 8px;
	display: inline-block;
	width: 30px;
	height: 17px;
}

.cs-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.cs-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #d0d0d0;
	-webkit-transition: .3s;
	transition: .3s;
	border-radius: 17px;
}

.cs-slider:before {
	position: absolute;
	content: "";
	height: 13px;
	width: 13px;
	left: 2px;
	bottom: 2px;
	background-color: white;
	-webkit-transition: .3s;
	transition: .3s;
	border-radius: 50%;
}

input:checked + .cs-slider:before {
	-webkit-transform: translateX(13px);
	-ms-transform: translateX(13px);
	transform: translateX(13px);
}


