
/* cookies block */


.cookies {
	position: fixed;
	z-index: 99999999;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	max-width: 570px;
	width: 100%;
	padding: 20px;
	border: 1px solid #f0f1f7;
	border-radius: 20px 20px 0 0;
	background-color: #fff;
}

.cookies__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.cookies__text {
	width: calc(100% - 130px);
	color: #0a1b33;
	font-size: 14px;
}

.cookies__text a {
	color: #717ba3;
	transition: color 0.3s;
}

.no-touch .cookies__text a:hover {
	color: #557cea;
}

.cookies__wrap .btn2 {
	max-width: 120px;
	width: 100%;
	padding: 5px 10px;
	min-height: 48px;
	background: #4C1052;
	text-align: center;
	justify-content: center;
	display: flex;
	align-items: center;
	color: white;
	cursor: pointer;
}

.cookies__wrap .btn2:after {
	display: none;
}


























