@charset "utf-8";
/* CSS Document */

/* Toggle-Boxes */
.nksimpletogglesContainer {
	color: inherit;
}
.nksimpletogglesContainer > div {
	background-color: transparent;
	border-color: rgba(127, 127, 127, 0.35);
	color: inherit;
}
.nksimpletogglesContainer > div > button {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	align-items: center;
	appearance: none;
	background: none;
	border: 0;
	color: inherit;
	font: inherit;
	text-align: left;
	padding-left: 0;
	padding-right: 0;
	padding-top: 1em;
	padding-bottom: 1em;
	text-transform: uppercase;
	font-size: 0.9em;
	line-height: 2em;
	cursor: pointer;
}
.nksimpletogglesContainer .theIcon {
	display: inline-flex;
	flex: 0 0 1.25em;
	align-items: center;
	justify-content: center;
	width: 1.25em;
	height: 1.25em;
}
.nksimpletogglesContainer.icon-left .theIcon {
	margin-right: 0.75em;
}
.nksimpletogglesContainer.icon-right .theIcon {
	margin-left: auto;
}
.nksimpletogglesContainer .theIcon svg {
	display: block;
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
}
@media (min-width: 60rem) {
	.nksimpletogglesContainer > div > button {
		font-size: 0.8em;
	}
}
.nksimpletogglesContainer.jsInitiated > div > button svg {
	fill: currentColor;
	transition: fill 0.25s ease-in-out, transform 0.25s ease-in-out;
}
.nksimpletogglesContainer > div > button {
	transition: color 0.25s ease-in-out;
}
/* maxHeight Effekt */
.nksimpletogglesContainer.jsInitiated > div > div {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease-in-out, padding 0.25s ease-in-out;
}
.nksimpletogglesContainer.jsInitiated > div.jsActive > div {
	padding-top: 0.5em;
	padding-bottom: 1.5em;
}



/* THEME: Lines Between */
.nksimpletogglesContainer.theme-linesBetween > div {
	border-bottom-style: solid;
	border-bottom-width: 2px;
}
/* THEME: BORDER BOX */
.nksimpletogglesContainer.theme-borderBoxes > div,
.nksimpletogglesContainer.theme-roundedThinBorders > div {
	border-style: solid;
	border-width: 2px;
	margin-bottom: 0.75em;
	padding: 0 1em;
}
/* THEME: ROUNDED THIN BORDERS */
.nksimpletogglesContainer.theme-roundedThinBorders > div {
	border-width: 1px;
	border-radius: 0.75em;
}


/* HOVER / ACTIVE Colors etc */
.nksimpletogglesContainer > div > button:hover,
.nksimpletogglesContainer.jsInitiated > div.jsActive > button {
	color: inherit;
}
.nksimpletogglesContainer > div > button:hover svg,
.nksimpletogglesContainer.jsInitiated > div.jsActive > button svg {
	fill: currentColor;
}

/* ICON ANIMATION */
.nksimpletogglesContainer.animation-rotate45 > div.jsActive > button svg {
	transform: rotate(45deg);
}
.nksimpletogglesContainer.animation-rotate90 > div.jsActive > button svg {
	transform: rotate(90deg);
}
.nksimpletogglesContainer.animation-rotate180 > div.jsActive > button svg {
	transform: rotate(180deg);
}
