﻿
.cookie-banner {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 10px 32px;
    background: #002D72;
    color: #fff;
    text-align: center;
    z-index: 999999;
    box-shadow: 0 3px 5px rgba(0,0,0,0.3);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .cookie-banner a {
        color: #fff;
        font-weight: 600;
    }

    .cookie-banner .cookie-close {
        box-sizing: border-box;
        display: inline-block;
        margin-left: 32px;
        padding: 7px 15px;
        background: #ffffff;
        border-radius: 0.3em;
        border: 3px solid rgba(0,0,0,0.15);
        color: #002D72;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
    }

        .cookie-banner .cookie-close:hover {
            background: #fff;
        }

body.cookie-banner-active {
    top: 100px;
    position: relative;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: top;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 5000;
}

@media screen and (max-width: 1253px) {
    body.cookie-banner-active {
        top: 90px;
    }
}

@media screen and (max-width: 605px) {
    body.cookie-banner-active {
        top: 106px;
    }
}

@media screen and (max-width: 447px) {
    body.cookie-banner-active {
        top: 128px;
    }
}


@media screen and (max-width: 359px) {
    body.cookie-banner-active {
        top: 150px;
    }
}
