#ps-cookie-consent {
    position: fixed;
    bottom: 20px; right: 20px; max-width: 50%;
    z-index: 99999;
    display: none;
    box-sizing: border-box;
    padding: 18px;
    border-radius: 18px;

    background: #ffffff;
    background: #202938;
    color: #000000;
    color: #ffffff;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.82);
    font-family: inherit;
border:1px solid black;
}

#ps-cookie-consent.ps-cookie-consent--visible {
    display: block;
}

#ps-cookie-consent * {
    box-sizing: border-box;
}

.ps-cookie-consent__inner {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}

.ps-cookie-consent__text {
    font-size: 15px;
    line-height: 1.45;
}

.ps-cookie-consent__text a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ps-cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.ps-cookie-consent__button {
    padding: 11px 16px;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
}

.ps-cookie-consent__button--accept {
    background: #097136;
}

.ps-cookie-consent__button--decline {
    background: #ae1920;
}

@media (max-width: 640px) {
    #ps-cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        top: auto;
        max-width: none;
        padding: 16px;
        border-radius: 16px;
    }

    .ps-cookie-consent__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ps-cookie-consent__actions {
        width: 100%;
        flex-direction: column;
    }

    .ps-cookie-consent__button {
        width: 100%;
    }
}