﻿.cookie_banner {
    position: fixed;
    right: 0;
    bottom: 0;
    background: var(--color_RockBlue);
    padding: var(--space_2);
    display: flex;
    width: var(--shell_side_R);
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,.25);
    z-index: 500;
    gap: var(--space_2);
    font-family: var(--font_BovinoMedium);
    color: var(--color_LunarGreen);
}

.cookie_banner_button {
    background: white;
    color: black;
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    font-weight: 600;
}


    .cookie_banner_button:hover {
        opacity: .8;
    }


@media(max-width:700px) {

    .cookie_banner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie_banner_button {
        width: 100%;
    }
}
