.fs-cookie-box {
	width:100%;
	min-height: 80px;
	background color: gray;
	background: black;
	font-family: "Roboto", sans-serif;
	color:  white;
	position: fixed;
	bottom: 0;
	z-index: 100;
	display: flex;
}

.fs-cookie-box-container {
	margin: auto;
}

.fs-cookie-main {
	display: flex; 
	align-items: center;
	padding: 20px;
}

.fs-cookie-banner {
	padding-right: 50px;
}

.fs-cookie-banner > p {
	margin: 0;
	font-weight: lighter;
}

.fs-cookie-main a:hover {
	text-decoration: none;
}

.fs-cookie-ok, .fs-cookie-more {
	width: auto;
	padding: 20px;
	height: 40px; 
	background: white; 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	color:  black;
	cursor: pointer;
	border-radius: 5px;
	font-weight: bolder;
	letter-spacing: 1px;
}

.fs-cookie-more {
	margin-left: 10px;
}

@media (max-width: 991px) {
	.fs-cookie-banner {
		width: auto;
	}

	.fs-cookie-main {
		flex-direction: column;
	}
	.fs-cookie-ok {
		margin-top: 10px;
		margin-bottom: 10px;
	}
}