.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: var(--Spa-tmn-orange, #D96C00);
    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: 29px;
    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-family: Scada;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 120% */
    text-transform: uppercase;
    border: none;
    background-color: #ff7f00;
    border-radius: 5px;
    box-shadow: 0 4px 0 rgba(186, 90, 1, 0.6), inset 0 0 7px rgba(249, 246, 192, 0.26);
    background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #ff7f00), color-stop(50%, #ff7f00), color-stop(50%, #d96c00), color-stop(100%, #d96c00));
    background-image: -moz-linear-gradient(left, #ff7f00 50%, #ff7f00 0%, #d96c00 50%, #d96c00 100%);
    background-image: -webkit-linear-gradient(left, #ff7f00 0%, #ffaa00 50%, #d96c00 50%, #d96c00 100%);
    background-image: linear-gradient(to right, #ff7f00 0%, #ff7f00 50%, #d96c00 50%, #d96c00 100%);
}

@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;
    }
}