body {
	font-size: 1rem;
}

.cookies-container {
	width: 100%;
	margin: auto;
	padding-bottom: 4px;
	padding-top: 4px;
}

.cookies-subcontainer {
	width: 85%;
	margin: auto;
	font-size: 110%;

}

#cookies {
	width: 100%;
	position: fixed;
	bottom: 0;
	color: white;
	background-color: rgba(0,0,0,0.8);
	z-index: 1;
	display: none;
}

.cookies {
	min-height: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.cookies a {
	color: #aed0b3;
	font-weight: 500;
	text-decoration: none;
}

#cookies-btn {
	border-radius: 5px;
	padding: 8px 12px 8px 12px;
	font-size: 1rem;
	cursor: pointer;
	font: inherit;
	border: 3px solid white;
	background-color: black;
	color: white;
}

@media (max-width:1600px;) {
	.container {
		width: 100%;
	}
}
@media (max-width: 1024px;) {
	.cookies {
		padding: 10px 0;
	}
}