.w_cookies_notification{
    position: fixed;
    z-index: 1000;
    inset: auto auto 0 0;
    width: max-content;
    max-width: 100%;
    background-color: #000;
    padding: 10px;
    border-radius: 0 6px 0 0;

    display: flex;
    gap: 15px;

    @media(max-width: 1275px){
        padding: 10px 10px 50px 10px;
    }

    &.hidden {
        display: none;
    }

    & > * {
        color: #fff;
        font-size:14px;
        a {
            color: #76acff;
        }
    }

    button {
        border-radius: 4px;
        font-size: 12px;
        padding: 4px 8px;

        background: #2c2c2c;

        height: fit-content;
    }
}