.xxx-cookies-tooltip{
	position: fixed;
	top: 10%;
	right: 15px;
	width: calc(100% - 30px);
	max-width: 515px;
	background: #FFFFFF;
	-webkit-box-shadow: 0px 4px 20px rgba(51, 62, 80, 0.2);
	box-shadow: 0px 4px 20px rgba(51, 62, 80, 0.2);
	border-radius: 5px;
	padding: 20px 15px;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	-o-transition: opacity 0.3s ease, transform 0.3s ease;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	z-index: -1;
	pointer-events: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	color: #333e50;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.xxx-cookies-tooltip.active{
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	z-index: 1000;
	pointer-events: auto;
}

.xxx-cookies-tooltip__content {
	font-size: 14px;
}

.xxx-cookies-tooltip__btn {
	-ms-flex-item-align: end;
	align-self: flex-end;
}

.xxx-cookies-tooltip .xxx-g-link {
	position: relative;
	background-color: transparent;
	border: none;
	color: #388ec3;
	padding: 0;
	outline: none;
	cursor: pointer;
	text-decoration: none;
	-webkit-transition: color 0.25s;
	-o-transition: color 0.25s;
	transition: color 0.25s;
}

.xxx-cookies-tooltip .xxx-g-link.xxx-di{
	display: inline;
}

.xxx-cookies-tooltip .xxx-g-link:hover {
	color: #7bc057;
}