.cookie-popup {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 0;
	right: 0;
	z-index: 100;
	padding:0 15px;
}
.cookie-popup__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1000px;
	margin:0 auto;
	padding: 20px 50px;
	border: 1px solid #ececec;
	border-radius: 4px;
	background-color: #fff;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
	color: #333;
}
.cookie-popup__text {
	margin-right: 30px;
	font-size: 1em;
	line-height:1.5;
}
.cookie-popup__btn {
	padding: 12px 30px;
	border: none;
	border-radius: 4px;
	font-size: 1em;
	background-color: var(--main-template-color);
	color: #fff;
	cursor: pointer;
}
@media (max-width: 991px) {
	.cookie-popup__inner {
		padding: 15px;
	}
	.cookie-popup {
		bottom: 15px;
	}
}
@media (max-width: 575px) {
	.cookie-popup__inner {
		display:block;
	}
.cookie-popup__text {
		margin: 0 0 20px;
	}
}