@charset "utf-8";

:root {
	--defaultgrey: #454646;
	--blue: #173884;
}

/* плашка про куки */
.cookies {
	display: none;
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 280px;
	z-index: 10000;
	border-radius: 5px;
	box-shadow: 0 0 10px #000;
}

.cookies--active {
	display: block;
}

.cookies__container {
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 5px;
	color: #000;
	background-color: #fff;
}

.cookies__h2 {
	margin-top: 0;
	margin-bottom: 10px;
}

.cookies__text {
	p {
		margin-top: 0;
		margin-bottom: 0;
		color: var(--defaultgrey);
		font-size: 10px;

		+p {
			margin-top: 5px;
		}

		&.ti {
			text-indent: 15px;
		}
	}

	a {
		color: var(--blue);
		text-decoration: none;
	}
}

.cookies__buttons-outer {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 10px;
}

.cookies__button {
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;

	width: 120px;
	height: 20px;
	line-height: 16px;

	font-family: Verdana, Arial, sans-serif;
	font-size: 10px;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;

	cursor: pointer;

	border: 1px solid currentColor;
	border-radius: 2px;
	color: var(--blue);
	background-color: #E9E7E7;

	&.disabled {
		color: #c1c2c3;
		border: 1px solid #c1c2c3;

		cursor: default;
		pointer-events: none;
	}
}
