.cookie-bar {
	display: none;
	position: fixed;
	z-index: 9999;
	right: 60px;
	bottom: 60px;
	background: rgba(26, 17, 10, .90);
	border-radius: 15px;
	max-width: 600px;
	padding: 40px;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.cookie-bar h4 {
	font-size: 28px;
	font-weight: 600;
	color: #bf977a;
	margin-bottom: 10px;
}

.cookie-bar p {
	font-size: 15px;
	line-height: 25px;
	color: #bf977a;
	margin: 0;
}

.cookie-bar-close {
	position: absolute;
	right: 25px;
	top: 25px;
	display: inline-block;
	width: 20px;
	height: 20px;
}

.cookie-bar-close::before,
.cookie-bar-close::after {
	content: '';
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	background: #f2e7df;
	margin-top: (6px / 2) * - 1;
	height: 6px;
}

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

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

.cookie-bar-close:hover::before,
.cookie-bar-close:hover::after {
	background-color: #fe897f;
}
