#gdpr-analysis-fixed-container {
	position: fixed;
	padding: 0px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: 999999;
}

#gdpr-analysis-container {
    position: fixed;
    top: 0;
	padding: 0px;
	margin: 0px;
	resize: both;
    overflow: auto;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
	border: 1px solid #444;
    background: rgba(255, 255, 255, 0.5);
    height: 200px;
    width: 700px;
    z-index: 999999;
}

.logoImage {
	position: absolute;
	float: left;
	right: 10px;
	top: 5px;
	width: 30;
	height: 30;
	background-image: url('images/Logo_Webseite.svg');
    background-size: cover;
}

.logoImageLarge {
	width: 50;
	height: 50;
	background-image: url('images/Logo_Webseite.svg');
    background-size: cover;
}

#gdpr-analysis-containerheader {
	display: flex;
    cursor: move;
	width: 100%;
	background-color: #b0b0b0;
	color: white;
	height: 40px;
	padding: 2px;
	padding-left: 10px;
	border-bottom: 1px solid #444;
}

#gdpr-analysis-containerbody{
	width: 100%;
}

.akkordeonButton {
	display: block;
	padding: 8px;
	margin-bottom: 3px;
	border: 0px;
	font-weight: normal;
	cursor: pointer;
	transition: 0.5s;
	text-align: left;
	border-bottom: 1px solid #444;
}

.akkordeonButtonAktiv, .akkordeonButton:hover {
	background-color: #a5b519;
	color: #ffffff;
}

.gdprSaveButton {
	background-color: #2271b1;
	color: #ffffff;
	border: 1px solid #FFFFFF;
	cursor: pointer;
	font-size: 14px;
	border-radius: 3px;
	padding: 8px;
}

.gdprSaveButton:hover {
	background-color: #1d5e94;
}

.akkordeonEinheit {
	background-color: white;
	border: 1px solid #b0b0b0;
	padding: 12px;
	overflow: hidden;
	display: none;
}

.hiddenInput{
	background-color: #FFDDFF;
	color: #000000;
}

.coveredSubmissionType{
	background-color: #DDFFFF;
	color: #000000;
}

.ordinarySubmissionType{
	background-color: #e8e8e8;
	color: #000000;
}

.centered-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	padding: 50px;
    z-index: 9999991;
	background-color: rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 10px grey; /* Box shadow */
}

#blockingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 9999990;
}

.centered-alert {
	position: fixed;
	top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    background-color: rgb(250, 207, 200);
    border-radius: 8px;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
	padding: 20px;
    transition: opacity 300ms ease-in-out;
    z-index: 9999992;
    min-width: 200px; 
	cursor: move;
}

.centered-success {
	position: fixed;
	top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    background-color: rgb(216, 250, 200);
    border-radius: 8px;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
	padding: 20px;
    transition: opacity 300ms ease-in-out;
    z-index: 9999993;
    min-width: 200px; 
	cursor: move;
}

.centered-info {
	position: fixed;
	top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    background-color: rgba(250, 250, 200);
    border-radius: 8px;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
	padding: 20px;
    transition: opacity 300ms ease-in-out;
    z-index: 9999994;
    min-width: 200px; 
	cursor: move;
}

.schliessen_button{
    position: absolute;
    top: 10px;
    right: 10px;
    text-decoration: none;
    color: red;
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
}

.schliessen_button:hover {
	background-color: rgba(0, 0, 0, 0.2);
}