#wcagicon {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-color: #212329;
	text-align: center;
	cursor: pointer;
	transition: 0.3s;
	z-index: 1002;
}
#wcagicon:hover { background: var(--Red); }
#wcagicon img { width: 50px; margin-top: 10px; }

#wcag {
	position: fixed;
	bottom: 0;
	top: 0;
	right: -300px;
	width: 300px;
	background-color: #212329;
	text-align: center;
	transition: 0.3s;
	z-index: 1001;
}
#wcag h4 { color: #fff; }
#wblock {
	position: absolute;
	bottom: 116px;
	right: 10%;
	width: 80%;
	text-align: center;
}
#wblock .fa-xmark {
	position: absolute;
	top: -30px;
	right: 10px;
	color: #fff;
	font-size: 25px;
	cursor: pointer;
	transition: 1s;
}
#wblock .fa-xmark:hover { transform: rotate(270deg); }
.wblock {
	display: block;
	margin-top: 20px; 
	padding: 10px 20px 20px 20px;
	background-color: var(--bgWhite);
	border-radius: 26px;
}
.wblock .regulator {
	position: relative;
	display: block;
	height: 36px;
	line-height: 36px;
	background: #f5f5f7;
	color: #000;
	border-radius: 18px;
}
.wblock .regulator .plus,
.wblock .regulator .minus,
.wblock .regulator .kontrast-black {
	position: absolute;
	top: 1px;
	height: 34px;
	width: 34px;
	border-radius: 50%;
	color: #fff;
	font-size: 26px;
	line-height: 34px;
	cursor: pointer;
}
.wblock .regulator .plus { background: #000; right: 1px; }
.wblock .regulator .minus { background: #000; left: 1px; }
.wblock .regulator .kontrast-black {
	background: linear-gradient(to left, #fff 50%, #000 0%);
	left: 1px;
}

@media only screen and (max-width: 749px)
{
	#wcagicon {	width: 50px; height: 50px; }
	#wcagicon img { width: 36px; margin-top: 7px; }
}