/**
 *  # cookies.css
 *	Полтзовательские кукки 
 */

/**
 * # cookies.css
 * Пользовательские cookies
 */

.cookie {
	position: fixed;
	right: 0;
	bottom: -100%;
	z-index: 1000;
	width: 100%;
	max-width: 600px;
	padding: 1.67em;
	background-color: #FBFBFF;
	border-radius: 10px;
	box-shadow: 1px 2px 23px 1px rgba(160, 160, 160, 0.64);
	font-size: 0.8rem;
	color: #3d4f9f;
	transition: all 0.9s ease-in;
}

.cookie.is-active {
	bottom: 0.56em;
	animation: slideInUp 0.36s ease-in 1;
}

/* Текст и эмодзи */
.cookie p {
	display: block;
	max-width: 93%;
	margin: 0 auto 2em;
}

.cookie .emoji {
	font-size: 1rem;
}

/* Кнопки */
.cookie .buttons-group {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.cookie button {
	width: 100%;
	max-width: 45%;
	padding: 0.67em;
	font-family: 'Montserrat-Bold', sans-serif;
	font-size: 0.8rem;
	border-radius: 10px;
	color: #4C4C4D;
	cursor: pointer;
}

/* Принять cookies */
.cookie button[aria-label='AcceptCookie'] {
	background: linear-gradient(135deg, #80D926, #5cb300);
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 0.6em 1.2em;
	transition: background 0.3s ease;
}

.cookie button[aria-label='AcceptCookie']:hover {
	background: linear-gradient(135deg, #5cb300, #80D926);
}

/* Отклонить cookies */
.cookie button[aria-label='DeclineCookies'] {
	background-color: #EBEBEF;
}

/* Ссылки */
.cookie a {
	color: #E700E7;
	text-decoration: underline;
}

.cookie a:hover {
	color: #7466F8;
}

/* Адаптивность */
@media only screen and (max-width: 768px) {
	.cookie {
		max-width: 80%;
		margin: 0 auto;
		left: 0;
		right: 0;
	}
}
