.cookies-popup {
    z-index: 2;
    position: fixed;
    bottom: 4.89583rem;
    left: 0;
    display: flex;
    width: 100%;
    padding: 2.08333rem;
    justify-content: space-between;
    align-items: center;

    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(8.75px);
}
.cookies-popup p {
    width: 49.11458rem;
    flex-shrink: 0;

    color: #0223C6;
    font-feature-settings: 'calt' off;
    font-size: 0.83333rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 1rem */
    text-transform: uppercase;
}
.cookies-popup .wrap-buttons {
    display: flex;
    align-items: center;
    gap: 1.5625rem;
    align-self: stretch;
}
.cookies-popup a {
    color: #FFF;
    text-decoration: underline;
}
.cookies-popup .accept {
    color: #FFF;
    font-feature-settings: 'calt' off;
    font-size: 0.83333rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;

    display: flex;
    width: 14.84375rem;
    padding: 0.52083rem 1.5625rem;
    justify-content: center;
    align-items: center;
    gap: 0.52083rem;
    align-self: stretch;
    border: 1px solid #0223C6;
    background: #0223C6;
}
.cookies-popup .reject {
    color: #0223C6;
    font-feature-settings: 'calt' off;
    font-size: 0.83333rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;

    display: flex;
    width: 14.84375rem;
    padding: 0.52083rem 1.5625rem;
    justify-content: center;
    align-items: center;
    gap: 0.52083rem;
    align-self: stretch;
    border: 1px solid #0223C6;
    background: transparent;
}
@media (max-width: 767px) {
    .cookies-popup {
        bottom: 15.64rem;
        flex-direction: column;
        align-items: stretch;
        padding: 4rem;
    }
    .cookies-popup p {
        width: 100%;
        font-size: 2.5641rem;
        text-align: center;
    }
    .cookies-popup .wrap-buttons {
        margin: 2rem auto 0;
    }
    .cookies-popup .reject, .cookies-popup .accept {
        font-size: 2.5641rem;
        font-style: normal;
        font-weight: 400;
        width: 25rem;
        padding: 1.52083rem 2.5625rem;
    }
}