/**
 * Сообщение о файлах cookie — в оформлении сайта.
 * Полоса внизу экрана, не перекрывает содержимое и закрывается кнопкой.
 */

.background_alertcookie {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;

    padding: 16px clamp(16px, 4vw, 40px);
    background: rgba(15, 24, 38, .96);
    color: #fff;
    font-family: var(--gvm-text, Georgia, serif);
    font-size: .93rem;
    line-height: 1.5;
    box-shadow: 0 -8px 30px rgba(10, 18, 30, .25);
}

.text_alertcookie {
    flex: 1 1 420px;
    min-width: 0;
    color: rgba(255, 255, 255, .88);
}

.link_alertcookie a {
    color: var(--gvm-accent, #c8a86b);
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}
.link_alertcookie a:hover { color: #fff; }

.button_alertcookie { margin-left: auto; }

.background_alertcookie .button {
    padding: .6em 1.6em;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: var(--gvm-radius, 2px);
    color: #fff;
    font-family: var(--gvm-serif, Georgia, serif);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease;
}
.background_alertcookie .button:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
}

@media (max-width: 640px) {
    .background_alertcookie { font-size: .88rem; padding: 14px 16px; }
    .button_alertcookie { margin-left: 0; }
}

@media print { .widget_alertcookie { display: none !important; } }
