.cookie-consent-banner {
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-mist);
    padding: 16px;
    font-size: 14px;
    z-index: 1000;
    width: 100%;
    display: none; 
}
.row-cookie-explaining{
	display: flex !important;
	flex-direction: row;
	 justify-content: space-between;
	margin:0 auto;
	max-width: 900px;
}
.cookie-text {
    max-width: 70%;  
}
.cookie-consent-button {
    flex-shrink: 0;  
}
.cookie-text {
    flex-grow: 1; 
    margin-right: 10px;
}
.cookie-link{
	color:var(--default-color);
}
.cookie-consent-button {
	width: 100px;
	height:31px;
	align-self: center;
    border-radius: 4px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}
.cookie-consent-button.btn-success {
    background-color: #000;
    color: #fff;
}
.cookie-consent-button.btn-success:hover {
    background-color: #333;
}