#GDPRConsentOverlay {
	width:100%;
	height:100%;
	display:block;
	position:fixed;
	top:0;left:0;
	background-color:rgba(0,0,0,0.8);
	color:black;
	text-align:left;
	font-size:12px;
	z-index: 500;
	display: none;
	text-shadow: none;
}
#GDPRPage {
	background-color:white;
	border-radius:15px;
	box-sizing:border-box;
	padding:10px;
	max-width:600px;
	margin:15px auto;
	max-height: calc(100% - 30px);
	overflow-y: auto;
}
#GDPRPage a, #GDPRPage a:link, #GDPRPage a:visited, #GDPRPage a:hover {
	color: darkblue;
}
.GDPRTitle {
	font-size: 15px;
	text-align: center;
}
.GDPRButton {
	border: solid black 4.5px;
	border-radius: 20px;
	background-color: #fff;
	padding: 0px 20px;
	width: auto;
	height: auto;
	line-height: 30px;
	color: #000;
	font-size: 20px;
	text-shadow: none;
}
#GDPRPage input {
	position: absolute;
	opacity: 0;
}
#GDPRPage input[type=radio] + label {
	display: inline-block;
	text-align: right;
	padding-right: 20px;
	margin-top: 5px;
	line-height: 41px;
	position: relative;
	cursor: pointer;
	font-size: 18px;
	width: 130px;
	height: 50px;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: url(/images/btn_consent_0.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-color: transparent;
	color: black;
	box-shadow: none;
}
#GDPRPage input[type=radio]:checked + label {
	background-color: transparent;
	background-image: url(/images/btn_consent_2.png);
	color: black;
}
.GDPROpen {
	max-height: 500px;
	transition: max-height 0.25s ease-out;
}
.GDPRClosed {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease-out;
}
#GDPRQuestion1Buttons,#GDPRQuestion2Buttons {
	margin-bottom: 16px;
	text-align: center;
}
#GDPRSend,#GDPRQuestion1Subtext {
	text-align: center;
}
#GDPRError {
	text-align: center;
	color: red;
}

#ccpaBanner {
	position:  fixed;
	display: none;
	bottom: 0;
	z-index: 1000;
	width: 100%;
	padding: 1rem;
	font-size: 14px;
	text-align: left;
	box-sizing: border-box;
	background-color: #334855;
}

#ccpaBanner p, #ccpaBanner a, #ccpaClose {
	font-family: sans-serif;
	color: #F7F7F7;
}

#ccpaBanner div {
	display: flex;
	justify-content: space-between;
	max-width: 700px;
	margin: 0 auto;
}

#ccpaBanner p {
	margin: 0 0.5rem 0 0;
	max-width: 650px;
}

#ccpaClose {
	margin: 0;
	width: 32px;
	height: auto;
	font-weight: normal;
	font-size: 14px;
	background: none;
	border: none;
	cursor: pointer;
	box-shadow: none;
}