/*
 Theme Name:   Promark Theme
 Theme URI:    https://promark-web.ru/
 Description:  Тема сайта для клиента Промарк Веб
 Author:       Promark
 Author URI:   https://promark-web.ru/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

/*
Уведомление о кукисах
*/

.cookie-notify {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: calc(100% - 40px);
	max-width: 1100px;
	margin: 0 auto;
	padding: 18px 22px;
	border-radius: 14px;
	background: var(--text);
	color: #fff;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.cookie-notify__text {
	font-size: 14px;
	line-height: 1.6;
	flex: 1 1 auto;
}

.cookie-notify__text a {
	color: inherit;
	text-decoration: underline;
}

.cookie-notify__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 20px;
	border: 0;
	border-radius: 10px;
	background: var(--primary);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.cookie-notify__button:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.cookie-notify__button:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
	.cookie-notify {
		left: 12px;
		right: 12px;
		bottom: 12px;
		width: calc(100% - 24px);
		padding: 16px;
		flex-direction: column;
		align-items: stretch;
	}

	.cookie-notify__text {
		font-size: 13px;
	}

	.cookie-notify__button {
		width: 100%;
	}
}