:root {
    --cookie-policy-popup-bg: #fdf5e3;
    --cookie-policy-popup-text: #000;
}

.cookie-policy-popup {
    display: none;
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    height: auto;
    background-color: var(--cookie-policy-popup-bg);
    color: var(--cookie-policy-popup-text);
    z-index: 999999;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: auto;
}

.cookie-policy-popup .cookie-policy-popup-wrapper {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    font-size: 12px;
    line-height: 1.2;
}

.cookie-policy-popup .cookie-policy-popup-wrapper .cookie-policy-popup-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-color: transparent;
    padding: 4px;
    position: absolute;
    top: 0;
    right: 0;
}

.cookie-policy-popup .cookie-policy-popup-wrapper .cookie-policy-popup-btn svg {
    height: 24px;
    width: 24px;
}