
.cp-hidden		{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0, 0, 0, 0); border:0;}
.rtl-cp			{direction:rtl; text-align:right;}
.ltr-cp			{direction:ltr; text-align:left;}

.cookie-popup {
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	width:100%;
	background: #fc6e51;
	color: #fff;
	padding: 30px;
	font-size:2rem;
	line-height: 125%;
	transform: translateY(120%);
	z-index: 999999;
	transition: transform 0.6s ease;
	box-sizing: border-box;
}
.cookie-popup.show {
	transform: translateY(0);
}
.cookie-popup.hide {
	display: none;
}
.cookie-desc {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px; 
}
.cookie-desc span {
}

button.accept-btn {
	padding: 4px 12px;
	font-size: 100%;
	font-weight: bold;
	margin: 0 5px;
	background-color: #fff;
	color: #fc6e51;
	border: 2px solid #fff;
	border-radius: 6px;
	white-space: nowrap;
	transition: transform 0.4s;
	font-family: assistant, arial, helvetica, sans-serif;
}

button.accept-btn:hover,
button.accept-btn:focus {
	background-color: #fc6e51;
	color: #fff;
}
a.policy {
	color: #fff;
	white-space: nowrap;
}
a.policy:focus {
	color: #333;
}
a.policy:hover {
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 1050px) {
	.cookie-desc span	{display:block; width:100%; text-align:center;}
}

@media screen and (max-width: 480px) {
	.cookie-popup	{font-size:1.8rem;}
}


/*************** Accessibility ****************/
.Medium-View .cookie-popup			{display:block; overflow:auto;}
.Large-View .cookie-popup			{display:block; overflow:auto;}

.Light-Contrast .cookie-popup	 		{background:#c2d3fc !important; border:#333 1px solid;}
.High-Contrast .cookie-popup	 		{background:#000 !important;}
.High-Contrast button.accept-btn		{background-color:#003399; color:#fff; border-color:#bbb; font-weight:bold;}
.High-Contrast button.accept-btn:hover	{background-color:#330033; border-color:yellow;}


