/* Shared cookie-consent module, intentionally loaded alongside global.css on every public page. */

.cookie-consent-banner {
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 16px;
    font-size: 14px;
    z-index: 1000;
    width: 100%;
}

.row-cookie-explaining {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 900px;
}

.cookie-text {
    max-width: 70%;
    flex-grow: 1;
    margin-right: 10px;
    align-self: center;
}

.cookie-consent-button {
    flex-shrink: 0;
    width: 100px;
    height: 31px;
    align-self: center;
    border-radius: var(--button-border-radius, 25px);
    font-size: 14px;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-links);
}

.cookie-link {
    color: var(--default-color);
}

.cookie-consent-button.btn-success {
    background-color: var(--background-buttons-color);
    color: rgb(253, 253, 253);
}

.cookie-consent-button.btn-success:hover {
    background-color: #141414;
}
