#social-opt-in {
	position: fixed;
	top: 25px;
	left: 50%;
	width: 100%;
	max-width: 1200px;
	transform: translateX(-50%);
	max-height: calc(100% - 50px);
	padding: 50px;
	background-color: rgba(255, 255, 255, 0.95);
	z-index: 999999999999999;
	overflow-y: auto;
	-webkit-box-shadow: 0 5px 23px -6px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0 5px 23px -6px rgba(0, 0, 0, 0.75);
	box-shadow: 0 5px 23px -6px rgba(0, 0, 0, 0.75);
	display: none;
	font-size: 20px;
}

#social-opt-in.social-opt-in--visible {
	display: block;
}

.social-opt-in__buttons {
	display: flex;
	flex-wrap: wrap;
}

.social-opt-in-wrapper {
	display: flex;
	flex: 1 0 auto;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	margin: 5px;
	max-width: 100%;
	padding: 10px;
	font-size: 20px;
	border: 1px solid #333;
	-webkit-box-shadow: 0 3px 13px -6px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0 3px 13px -6px rgba(0, 0, 0, 0.75);
	box-shadow: 0 3px 13px -6px rgba(0, 0, 0, 0.75);
	transition: all 0.3s ease-in-out;
}

/* .all-opt-in-wrapper .social-opt-in__button,
.necessary-opt-in-wrapper .social-opt-in__button,
.statistic-opt-in-wrapper .social-opt-in__button {
	padding: 10px;
	font-size: 20px;
	border: 1px solid #333;
	-webkit-box-shadow: 0 3px 13px -6px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0 3px 13px -6px rgba(0, 0, 0, 0.75);
	box-shadow: 0 3px 13px -6px rgba(0, 0, 0, 0.75);
	transition: all 0.3s ease-in-out;
} */

.all-opt-in-wrapper:hover,
.necessary-opt-in-wrapper:hover,
.statistic-opt-in-wrapper:hover {
	-webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, .35), 0 0 5px 0 rgba(0, 0, 0, .1);
	box-shadow: 0 6px 10px 0 rgba(0, 0, 0, .35), 0 0 5px 0 rgba(0, 0, 0, .1);
}

/* .all-opt-in-wrapper .social-opt-in__button--selected,
.statistic-opt-in-wrapper .social-opt-in__button--selected {
	background-color: #eff0ef;
} */

/* .necessary-opt-in-wrapper .social-opt-in__button {
	font-size: 20px;
	text-decoration: underline;
} */

.necessary-opt-in-wrapper span.social-opt-in__button-description {
	display: block;
	color: #000;
	font-size: 12px;
}

.social-opt-in-wrapper--disabled {
	display: none;
}

#social-opt-in__details-text {
	transition: all 0.5s ease-in-out;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
}

#social-opt-in__details-text.social-opt-in__details-text--visible {
	max-height: 1000px;
	opacity: 1;
}

#social-opt-in__details-toggle {
	padding-left: 15px;
	position: relative;
}

#social-opt-in__details-toggle a {
	display: inline-block;
}

.social-opt-in__details a:after {
	content: "";
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid #e30613;
	position: absolute;
	top: 10px;
	left: 0;
	transition: all 0.2s ease-in-out;
}

#social-opt-in__details-toggle.social-opt-in__details-link--visible:after {
	transform: rotateZ(180deg);
}

.social-opt-in__nav {
	margin-bottom: 10px;
}

.social-opt-in__buttons {
	margin-left: -5px;
	margin-right: -5px;
}

.social-opt-in__nav ul {
	flex-wrap: wrap;
	display: flex;
	justify-content: space-between;
	padding: 0;
	margin: 20px 0 0 0;
}

.social-opt-in__nav .social-opt-in__details {
	flex-grow: 1;
}

.social-opt-in__nav .social-opt-in__dataprivacy-url,
.social-opt-in__nav .social-opt-in__imprint-url {
	margin-left: 30px;
}

.social-opt-in__nav ul li {
	list-style: none;
}

.social-opt-in__cookieoverview {
	margin-top: 10px;
}

@media only screen and (max-width: 600px) {
	.social-opt-in-wrapper {
		display: block;
		text-align: center;
		width: 100%;
	}

	.social-opt-in-wrapper a {
		display: block;
	}

	.social-opt-in-wrapper.social-opt-in-wrapper--disabled {
		display: none;
	}

	.social-opt-in__nav ul {
		flex-direction: column-reverse;
		align-items: center;
	}

	.social-opt-in__nav .social-opt-in__dataprivacy-url,
	.social-opt-in__nav .social-opt-in__imprint-url {
		margin-left: 0;
	}
}
