#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: 1073741823;
	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 {
	font-size: 20px;
	border-radius: 20px;
	border: solid black 4.5px;
	background-color: #fff;
	background-image: none;
	padding: 0px 20px;
	width: auto;
	line-height: 30px;
	color: #000;
}
.GDPRButton:hover {
	background-color: #fff;
	background-image: none;
	color: #000;
}
#GDPRPage input {
	position: absolute;
	opacity: 0;
}
#GDPRPage input[type=radio] + label {
	display: inline-flex;
	margin-top: 5px;
	box-sizing: border-box;
	width: 140px;
	height: 50px;
	border: 5px solid;
	border-color: #000;
	border-radius: 25px;
	padding: 0 0.5em 0 6px;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	text-align: right;
	color: black;
	font-size: 18px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	box-shadow: none;
}
#GDPRPage input[type=radio] + label::before {
	content: " ";
	display: block;
	flex: 0 0 34px;
	background: center / 100% 100% no-repeat;
	background-image: url("/resources/images/consent_0.png");
	height: 26px;
}
#GDPRPage input[type=radio]:checked + label {
	border-color: #00b800;
}
#GDPRPage input[type=radio]:checked + label::before {
	background-image: url("/resources/images/consent_2.png");
}
.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;
}

/* CCPA */
#CCPAOverlay {
	position: fixed;
	bottom: 0;
	z-index: 1000;
	width: 100%;
	height: fit-content;
	padding: 0.75rem;
	text-align: left;
	box-sizing: border-box;
	background-color: #334855;
}

.CCPAHidden {
	display: none;
}

#CCPAOverlay p, #CCPAOverlay a, #CCPAClose {
	margin: 0;
	color: #F7F7F7;
	font-size: 14px;
	font-family: sans-serif;
}

#CCPAOverlay div {
	display: flex;
	align-items: center;
	max-width: 800px;
	margin: 0 auto;
}

#CCPAClose {
	position: relative;
	float: right;
	margin-left: 0.75rem;
	padding: 0 1rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	color: #2b3d48;
	font-weight: bold;
	background: #ffc25f;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

body:not(.amp-geo-group-nafta) .ccpa-amp-link {
   display: none;
}

.privacy_update {
	display: none;
}