/**
 * SUMOshop Data protection v1.01
 * Copyright 2020 SUMOshop http://www.sumoshop.dk
 * All rights reserved
 */
#dataprotection {
	max-width: 640px;
	min-height: 375px;
}

#dataprotection-form-li-submit, #dataprotection-form-li-acceptall {
	float: left;
	width: 50%;
	position: fixed;
	bottom: 0;
	background-color: #ffffff;
}

#dataprotection-form-li-acceptall {
	right: 0;
}

#dataprotection-form-li-submit input, #dataprotection-form-li-acceptall input {
	width: calc(100% - 10px * 2);
	width: calc(100% - --var(basic-margin) * 2);
}

#dataprotection-form-li-required, #dataprotection-form-li-functionality, #dataprotection-form-li-statistics, #dataprotection-form-li-marketing {
	float: left;
	width: 25%;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}

#dataprotection-form::after {
	content: "";
	display: block;
	clear: both;
}

#dataprotection-form label {
	display: block;
	width: auto;
	font-weight: bold;
}

.dataprotection-type {
	transition: background-color 0.2s, opacity 0.2s;
	border-left: 1px solid #dddddd;
}

.dataprotection-type:first-child {
	border-left: none;
}

#dataprotection-form>ul.active .dataprotection-type:not(.active) {
	background-color: rgba(0, 0, 0, 0.05);
	opacity: 0.7;
}

.dataprotection-type input[type=checkbox] {
	display: block;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
}

.dataprotection-toggle {
	display: block;
	padding-left: 20px;
	text-align: center;
	background-image: url("../icon/open.svg");
	background-size: auto 10px;
	background-position: 0% 50%;
}

.active>.dataprotection-toggle {
	background-image: url("../icon/close.svg");
}

.dataprotection-details {
	float: left;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s;
}

.dataprotection-details.active {
	max-height: 3000px;
	margin-bottom: 60px;
	transition: max-height 0.4s;
}

.dataprotection-details .subheadline {
	display: none;
}

.dataprotection-details a {
	text-decoration: underline;
}