.laika-cookie-notice {
	z-index: 9999999999999999;
	display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 15px;
    max-width: 460px;
	margin: 0 auto 0 0;
	position: fixed;
    bottom: 20px;
    left: 32px;
    right: 20px;
    padding: 15px;
    background: #F8F7F7;
    color: #333;
	font-size: 14px;
    border-radius: 10px;
    box-shadow: 0 0px 4px rgb(0 0 0 / 15%);
}

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

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

.laika-cookie-button {
    background: #00509E;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s ease-in-out;
}

.laika-cookie-button:hover {
    background: #4a4141;
}
@media(max-width:767.98px){
	.laika-cookie-notice {
		font-size: 12px;
		line-height: 1.4;
		padding: 10px;
		gap: 10px;
		left: 12px;
		right: 12px;
	}
}