.cookies_files{
	position: fixed;
	bottom: 120px;
	left: 32px;
	z-index: 1000;
	max-width: 430px;
	display: flex;
	align-items: center;
	padding: 20px; 
	border-radius: 8px;
	box-shadow: 0px 1px 4px 0px rgba(12, 12, 13, 0.05),0px 1px 4px 0px rgba(12, 12, 13, 0.1);
	background: rgb(255, 255, 255);
	gap: 24px;
}
.cookies_files__txt{
	font-size: 15px;
	font-weight: 400;
	line-height: 140%;
}
.cookies_files__txt a{
	color: #1976D2;
}
.cookies_files__btn{
	padding: 7px 16px;
	border-radius: 4px;
	background: #1976D2;
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
	color: rgb(255, 255, 255);
	cursor: pointer;
}
@media (max-width:767px) {
	.cookies_files{
		flex-direction: column;
		align-items: baseline;
		gap: 11px;
		position: fixed;
		bottom: 16px;
		left: 15px;
		z-index: 1000;
		width: calc(100% - 30px);
	}
	.cookies_files__txt{
		font-size: 15px;
	}
	.cookies_files__btn{
		font-size: 13px;
	}
}