#cookie-box-banner{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	max-width: 100vw;
	height: 60px;
	background-color: #fbfbfa;
	z-index: 99999;
}
#cookie-box-banner .cookie-banner-container{
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 100vw;
	height: 60px;
	padding: 12px 25px;
}
@media screen and (max-width: 1060px){
	#cookie-box-banner, #cookie-box-banner .cookie-banner-container{
		height: auto;
	}
	#cookie-box-banner .cookie-banner-container{
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
	}
	p.cookie-banner-text{
		text-align: center;
		margin-bottom: 10px !important;
	}
}

#cookie-box-banner .cookie-banner-container p.cookie-banner-text{
		color: #555555;
		font-size: 18px;
		line-height: 16px;
		margin-bottom: 0;
		max-width: 100%;
}
#cookie-box-banner .cookie-banner-container p.cookie-banner-text span:first-of-type{
	margin-right: 6px;
	font-weight: 300;
}
#cookie-box-banner .cookie-banner-container p.cookie-banner-text a#cookie-banner-settings{
	text-decoration: none;
	color: #555555;
	transition: color 0.3s ease;
	font-weight: 300;
}
#cookie-box-banner .cookie-banner-container p.cookie-banner-text a#cookie-banner-settings:hover{
	color: #ff0000;;
}
#cookie-box-banner .cookie-banner-container a#cookie-banner-agree-btn{
	font-size: 16px;
	line-height: 16px;
	font-weight: 400;
	color: white;
	padding: 5px 14px;
	border-radius: 4px;
	background-color: #5f4c9e;
	border: 1px solid #5f4c9e;
	transition: 0.3s ease;
	text-decoration: none;
}
#cookie-box-banner .cookie-banner-container a#cookie-banner-agree-btn:hover{
	background-color: #ffffff;
	color: #5f4c9e;
}