
.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: 15px;
	width:600px;
	max-width: calc(100% - 30px);
	background: #f4f4f4;
    border: #aaa 1px solid;
    border-bottom: 0;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	padding: 20px 20px 20px 20px;
	border-radius: 10px 10px 0 0;
	/*font-size:17px;
	line-height: 135%;*/
	transform: translateY(120%);
	z-index: 99999;
	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: 6px 15px;
	font-size: 100%;
	font-weight: normal;
	margin: 0 5px;
	background-color: #78737a;
	color: #fff;
	border: 0;
	white-space: nowrap;
	transition: transform 0.4s;*/
	/* font-family: 'xxxxxxxxxxxxx', sans-serif; */
}

button.accept-btn:hover,
button.accept-btn:focus {
	background-color: #ab1129;
	color: #fff;
}
a.policy {
	color: #777;
	white-space: nowrap;
	text-decoration: underline;
}
a.policy:focus {
	color: #333;
}
a.policy:hover {
	color: #ab1129;
	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;}

/******************************************************/
/*********************** Popup Privacy ****************/
.privacy-popup-wrapper {
	position:fixed;
	inset:0;
	z-index:99999;
	background:rgba(0,0,0,0.65);

	display:flex;
	align-items:center;
	justify-content:center;

	opacity:0;
	visibility:hidden;
	transition:opacity 0.3s ease, visibility 0.3s ease;
}

.privacy-popup-wrapper.active {
	opacity:1;
	visibility:visible;
}

.privacy-popup {
	position:relative;
	width:min(900px, 90%);
	max-height:85vh;
	background:#fff;
	border-radius:10px;
	padding:30px;
	box-sizing:border-box;

	transform:translateY(30px) scale(0.97);
	transition:transform 0.3s ease;
}	

.privacy-popup-wrapper.active .privacy-popup {
	transform:translateY(0) scale(1);
}

.privacy-close {
	position:absolute;
	top:10px;
	left:10px;

	width:35px;
	height:35px;

	border:0;
	background:transparent;

	font-size:30px;
	line-height:1;
	cursor:pointer;
}

.privacy-popup {
	direction:rtl;
	text-align:right;
}
.privacy-popup #HomePage DIV.PageTitle {
	display:block;
}
.privacy-popup-content {
	max-height:calc(85vh - 100px);
	overflow-y:auto;
    font-size: 1.7rem;
    line-height: 145%;
}
.privacy-popup-content h2 {
	display: block;
	margin:0 0 12px 0;
}
.privacy-popup-content p {
	margin:0 0 15px 0;
}
.privacy-popup-content ul {
	display: block;
	margin:0 0 15px 0;
	padding: 0 25px 0 0;
	list-style-position:inside;
}
.privacy-popup-content ul li {
   padding: 0 5px 5px 0;
   margin: 0;
}
.privacy-popup-content a.tel {
   color:inherit;
   text-decoration:none: 0;
}
.privacy-popup-content a.mail {
   color:#ab1129;
}

