﻿.cookie_banner {
    background: #EFEFF7;
    padding: 24px 240px;
    z-index: 1000;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 80px;
}

.action_button {
    min-width: unset !important;
    min-height: unset !important;
    width: 150px !important;
    padding: 8px 16px !important;
}

.cookie_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.cookie_disabled_message {
    background-color: #FFFFFF;
    overflow: auto;
    max-height: 600px;
    border-radius: 4px;
    padding: 32px 40px;
    width: 640px;
    height: auto;
    flex-direction: column;
    box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}

@media only screen and (max-width: 1400px) {
    .cookie_banner {
        padding: 24px 160px;
        gap: 64px;
    }
}

@media only screen and (max-width: 1201px) {
    .cookie_banner {
        padding: 24px 80px;
        gap: 56px;
    }
}

@media only screen and (max-width: 961px) {
    .cookie_banner {
        padding: 24px 40px;
        gap: 48px;
    }

    .cookie_disabled_message {
        width: unset;
    }
}

@media only screen and (max-width: 767px) {
    .cookie_banner {
        padding: 24px 24px;
        gap: 32px;
    }

    .small_text {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}

@media only screen and (max-width: 475px) {
    .cookie_banner {
        flex-direction: column;
    }

    .action_button {
        width: 100% !important;
    }

    .cookie_disabled_message {
        max-height: 400px;
    }
}