.laika-cookie-notice {
	z-index: 99999;
	display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 15px;
    max-width: 500px;
	margin: 0 auto;
	position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 10px 15px;
    background: #f9f9f9;
    color: #000;
	font-size: 14px;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.laika-cookie-text a {
    color: #000;
    text-decoration: underline;
	transition: color .15s ease-in-out;
}

.laika-cookie-text a:hover{
	color: #000;
}

.laika-cookie-button {
    background: #000;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    outline: none;
    box-shadow: unset;
}

.laika-cookie-button:hover {
    background: #0d70b8;
}
@media(max-width:767.98px){
	.laika-cookie-notice {
		flex-direction: row;
        gap:8px;
	}
}