.cookie-banner {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    margin: 0px 10px;
    z-index: 1000;
    justify-content: center
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner .orange-color {
    color:#a00711;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.cookie-banner__wrap {
    max-width: 1000px;
    background: #FFF;
    border-radius: 5px;
    box-shadow: 0px 10px 48px 0px rgba(4, 4, 4, 0.30);
    padding: 24px 60px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
    color: var(--grey, #5B5B5B);
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-style: normal;
    line-height: 18px
}

.cookie-banner__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-banner .fw-700 {
    font-weight: 700;
}

.cookie-banner .fw-400 {
    font-weight: 400;
}

.cookie-banner .orange-btn {
    display: flex;
    max-width: 160px;
    width: 100%;
    height: 30px;
    padding: 5px 0px 4px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.79);
    text-align: center;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.30);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 120% */
    text-transform: uppercase;
    border: none;
    background-color: #a00711;
    border-radius: 0px;

}

@media only screen and (max-width: 768px) {
    .cookie-banner__text {
        gap: 4px;
    }

    .cookie-banner__text p {
        text-align: center;
    }

    .cookie-banner__wrap {
        flex-direction: column;
        gap: 10px;
        padding: 16px 10px;
        font-size: 12px;
        line-height: 14px;
    }

    .light-text {
        font-size: 11px;
        line-height: 14px;
    }

    .cookie-banner .orange-btn {
        padding: 6px 8px 4px 8px;
        max-width: 113px;
        width: 100%;
        font-size: 13px;
        line-height: 13px;
    }
}