: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 .cookie-policy-popup-btn {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
}

.cookie-policy-popup .cookie-policy-popup-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: #369;
    border-radius: 50%;
    padding: 4px;
    cursor: pointer;
    color: #fff;
}

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

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

.cookie-policy-popup .cookie-policy-popup-wrapper p {
    margin: 0;
}
