.cookie {
    position: fixed;
    z-index: 9999;
    left: 0;
    bottom: 0;
    right: 0;
    height: 60px;
    background-color: var(--color-light-100);
    transition: .3s;
}

.cookie__hide {
    opacity: 0;
    pointer-events: none;
}

.cookie__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 16px;
    gap: 16px;
    height: 100%;
}

.cookie__text a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cookie__link {
    border: 1px solid currentColor;
    transition: .3s;

    &:hover {
        color: var(--color-light-100);
        background-color: var(--color-dark-100);
        border-color: var(--color-dark-100);

        .event-nav__link-badge {
            color: var(--color-light-200);
        }
    }
}

@media (max-width: 1200px) {
    .cookie {
        height: auto;
        padding: 32px 80px 48px;
    }

    .cookie__wrapper {
        width: 100%;
        flex-direction: column;
        gap: 32px;
    }

    .cookie__text {
        text-align: center;
    }

    .cookie__text a {
        text-underline-offset: 8px;
    }

    .cookie__link {
        border-width: 3px;
    }
}