@media (max-width: 768px) {
    .cookie-banner {
        left: 5px!important;
        margin: 0px 20px 0px 20px!important;
    }

    .cookie-button {
        align-self: self-start!important;
    }
}

.cookie-banner {
	font-size:12px;
    position: fixed;
    bottom: 20px;
    left: 105px;
    background-color: #ffffff;
    color: black;
    padding: 15px 20px;
    margin: 0px 0px 0px 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 640px;
}

.cookie-button {
    background-color: #c98c5f;
    ; color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 3px;
    cursor: pointer;
}


.cookie-button:hover {
    background: #d0b08a;
    color: white;
}

#cookieBanner a {
	text-decoration:underline;
	color: #2781B9;
}
.cookie-banner.hidden {
	display:none;
}