/* NOTE: This file is intended for programmers. Aspro technical support is not advised to work with him. */

.cookie-notification {
	position: fixed;
	bottom: -100%;
	left: 0;
	z-index: 10000000000;

	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	padding: 8px 15px;

	font-family: "Manrope", sans-serif;
	line-height: 1.2;

	background-color: #fff;
	border: 1px solid #e4e4e4;
	border-bottom: 3px solid #505050;

	transition: bottom 1s;
}

@media (min-width: 550px) {
	.cookie-notification {
		bottom: -100px;
		left: 15px;

		display: flex;
		align-items: center;
		justify-content: space-between;
		max-width: 650px;
	}

	.cookie-notification__text {
		margin-bottom: 0;
	}
}

.cookie-notification--show {
	bottom: 15px;
}

.cookie-notification__text {
	margin-right: 20px;
	margin-bottom: 10px;

	font-size: 13px;
}

.cookie-notification__button {
	flex-shrink: 0;

	text-align: right;
}

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

.cookie-notification .btn_all_articel {
	padding: 0 15px;
}

.cookie-notification__close {
	position: absolute;
	top: 2px;
	right: 2px;

	width: 22px;
	height: 22px;

	cursor: pointer;
	opacity: 0.3;

	transition: opacity 0.5s;
}

.cookie-notification__close:hover {
	opacity: 1;
}

.cookie-notification__close:before,
.cookie-notification__close:after {
	position: absolute;
	left: 10px;

	width: 2px;
	height: 23px;

	background-color: #333;

	content: " ";
}

.cookie-notification__close:before {
	transform: rotate(45deg);
}

.cookie-notification__close:after {
	transform: rotate(-45deg);
}
