/**
 * @file стилизация предупреждения о cookie
 */

#cookie-notification {
    margin-bottom: 1rem;
}

#cookie-notification p {
    margin: 0;
    font-size: 0.875em;
    text-align: left;
}

#cookie-notification .cookie-accept {
    display: none;
    margin: 0.625rem 0 0 0;
}

#cookie-notification.show {
    position: fixed;
    bottom: 0.625rem;
    left: 50%;
    width: calc(100% - var(--bs-gutter-x));
    transform: translateX(-50%);
    padding: calc(var(--bs-gutter-x) * 0.5);
    margin-bottom: 0;
    background-color: var(--bs-tertiary-bg);
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

#cookie-notification.show .cookie-accept {
    display: inline-block;
}

@media (min-width: 576px) {
    #cookie-notification.show {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    #cookie-notification .cookie-accept {
        margin: 0 0 0 1.5rem;
    }
}

@media (min-width: 1400px) {
    #cookie-notification.show {
        max-width: 68rem;
    }
}
