.cookie-alert {
    position: fixed;
    z-index: 1000;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
}
@media screen and (min-width: 768px) {
    .cookie-alert {
        bottom: 1.25rem;
        max-width: 51.25rem;
    }
}
.cookie-alert__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 19px;
    padding: 0.5rem;
    background-color: #fff;
    box-shadow: 0 1px 0.9375rem 0 rgba(0, 0, 0, 0.12);
    border-radius: 0.5625rem;
    font-family: "Open Sans", sans-serif;
}
@media screen and (min-width: 768px) {
    .cookie-alert__wrapper {
        gap: 16px;
        padding: 0.5rem;
        padding-left: 1.25rem;
        flex-direction: row;
        align-items: center;
    }
}
.cookie-alert__text {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.4;
    padding: 0.5rem 0.6875rem 0 0.6875rem;
}
@media screen and (min-width: 768px) {
    .cookie-alert__text {
        padding: 0;
    }
}
.cookie-alert__text a {
    text-decoration: none;
    color: #0096EA;
    color: var(--G-color-link);
}
.cookie-alert__text a:hover, .cookie-alert__text a:focus-visible {
    text-decoration: underline;
}
.cookie-alert__btn {
    padding: 0.5rem 1.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.7;
    flex-shrink: 0;
}