.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: 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: #e6382a;
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 3px;    
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.laika-cookie-button:hover {
    background: #f55d51;
    color:#fff;
}
@media(max-width:767.98px){
	.laika-cookie-notice {
        flex-direction: row;
        align-items: flex-start;
        font-size: 12px;
        margin-right: auto;
        left: 15px;
        margin: 0;
        gap: 8px;
        right: 15px;
        bottom: 90px;
    }    
    .laika-cookie-text {
        margin-right: auto;
    }
    .laika-cookie-button {
        font-size: 12px;
        font-weight: 600;
        padding: 8px 0;
        width: 112px;
        margin-left: auto;
    }
}