.cookie-div {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
}

.cookie-consent {
	display: flex;
	flex-direction: column;
	background-color: #111528;
	color: #fff;
	font-size: 1rem;
	padding: 1em 1.8em;
	position: fixed;
	overflow: hidden;
	box-sizing: border-box;
	line-height: 1.5em;
	z-index: 99;
	transition: opacity 150ms, transform 150ms;
	width: 100%;
	bottom: 0;
}

.cookie-consent-content {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	text-align: justify;
}

.cookie-consent-content .more-info {
	color: #fff;
	opacity: 0.8;
}

.cookie-consent__btn-dismiss {
	background-color: #80b800;
	padding: 10px;
	border-radius: 5px;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}

.cookie-consent--box.hidden {
	transition: opacity 150ms, transform 250ms;
	opacity: 0;
	transform: scale(0);
}