.modal__container h2 {
	font-size: 1.6rem;
	line-height: 1.1em;

}
.modal__container .description {

	background: #222;
	color: #fff;
	background: var(--decription-bg-color);
	color: var(--decription-color);
	margin: -3vw;
	margin-bottom: 25px;
	padding: 40px 3vw 20px 3vw;
}

.modal__container .description p {
	line-height: 1.1em
}

.modal__container .description h2,
.modal__container .description h3,
.modal__container .description a {
	color: var(--decription-color);
}


table.cookieslist {
	margin: 10px auto;
}

table.cookieslist th {
	text-transform: none;
	width: auto;
	font-size: 0.8em;
}

table.cookieslist th, table.cookieslist td {
	padding: 10px;
	text-align: left;
	font-size: 0.9em;
	line-height: 1.1em;
	vertical-align: top;
	font-weight: normal;
	hyphens: none;
	color: #666
}


table.cookieslist td:first-child,
table.cookieslist th:first-child {
	padding-left: 10px
}


table.cookieslist input[type=checkbox] {

	margin-left: 5px;
	visbibility: hidden;

}

table.cookieslist td.schalter {
	max-width: 120px;
}

table.cookieslist label {
	cursor: pointer;
	text-indent: -9999px;
	width: 60px;
	height: 30px;
	background: grey;
	display: block;
	border-radius: 100px;
	position: relative;
	margin-top: -20px;
	box-shadow: 0 3px 3px rgba(0, 0, 0, .2), 0 0 0 2px #ccc;

}

table.cookieslist label:after {
	content: '';
	position: absolute;
	top: 3px;
	left: 0px;
	width: 24px;
	height: 24px;
	background: #fff;
	border-radius: 90px;
	transition: 0.3s;
}

/*

table.cookieslist .schalter:focus-within {
	background: #ddd
}
*/

table.cookieslist input:checked + label {
	background: #bada55;
	background: var(--checkbox-bg-color);

}

table.cookieslist input[type=checkbox]:disabled + label {
	background: #ccc !important;
	background: var(--checkbox-bg-color);

}

table.cookieslist input:checked:disabled + label:after {
	left: calc(100% - 1px);
	transform: translateX(-100%);
}


table.cookieslist input:checked + label:after {
	left: calc(100% - 1px);
	transform: translateX(-100%);
}

table.cookieslist label:active:after {
	width: 60px;
}

tr.sessioncookiedisabled {
	background: #eee
}

input[type="submit"].save-button {
	padding: 15px;
	border: 0;
	line-height: 1.0rem;
	font-size: 0.9em;
	flex: 1 1 250px;
	font-family: "Helvetica57", Helvetica, Arial, sans-serif;
	background: #999;
	color: #eee;
	min-height: 15px;
	text-transform: none;
	background: var(--submit-back-color);
	color: var(--submitbutton-font-color);
	margin: 10px 0 0 0;
}


button#checkall {
	background: #bada55;
	color: #333;
	padding: 15px;
	font-size: 0.9em;
	font-family: "Helvetica57", Helvetica, Arial, sans-serif;
	line-height: 1.0rem;
	min-height: 15px;
	border: 0;
	flex: 1 1 250px;
	text-transform: none;
	background: var(--checkall-back-color);
	color: var(--checkall-font-color);
	margin: 10px 0 0 0;
}


.setting-button {
	background: #777;
	border: 0;
	position: fixed;
	bottom: 0;
	left: 0;
	line-height: 1.0em;
	padding: 0;
	display: flex;
	justify-content: center;
	width: 40px;
	height: 40px;
	align-items: center;
}

#settings-svg path {
	fill: #fff
}

.setting-button span {

	position: absolute;
	top: -1000px;
	left: -1000px;
	height: 0;
	display: block;

}


.setting-button:hover, #checkall:hover,
input[type="submit"].save-button:hover {
	box-shadow: inset 0px 0px 130px rgba(0, 0, 0, 0.5);
	color: #fff
}

a.cookiecr {
	color: #999 !important;
	text-decoration: none !important
}

.cookiebuttons {
	text-align: center;
	margin: 20px 0 10px 0;
	display: flex;
	flex-wrap: wrap
}

.angie {
	margin: 0
}

/**************************\
  Basic Modal Styles
\**************************/

.modal {

}

.modal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;

	min-height: 100vh;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100000;

}

.modal__container {
	background-color: #fff;
	padding: 3vw;
	max-width: 750px;
	border-radius: 0px;
	box-sizing: border-box;
	max-height: 100vh;
	margin: 20px;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	overflow-y: auto
}

.modal__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal__title {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.25;
	box-sizing: border-box;
}

.modal__close {
	background: transparent;
	border: 0;
}

.modal__header .modal__close:before {
	content: "\2715";
}

.modal__content {
	margin-top: 2rem;
	margin-bottom: 2rem;
	line-height: 1.5;

}


/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes mmfadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes mmslideIn {
	from {
		transform: translateY(15%);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes mmslideOut {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-10%);
	}
}

.micromodal-slide {
	display: none;
}

.micromodal-slide.is-open {
	display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
	animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
	animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
	animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
	animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
	will-change: transform;
}

@media screen and (max-width: 650px) {
	input[type="submit"].save-button {
		order: 2
	}

	button#checkall {
		order: 1
	}
}
