#cookie-popup {
    right: 30px;
    bottom: 30px;
    max-width: 395px;
}

#cookie-popup.light {
    background-color: #fff;
    color: #393d4d;
}

#cookie-popup {
    box-sizing: border-box;
    position: fixed;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 8px 1px rgb(0 0 0 / 25%);
    font-family: inherit;
    z-index: 999997;
    background-color: white;
    margin: 10px;
}

#cookie-popup .title-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    height: 40px;
}

#cookie-popup h4 {
    font-family: inherit;
    font-weight: 700;
    font-size: 18px;
}

#cookie-popup.light p,
#cookie-popup.light ul {
    color: #393d4d;
    color: var(--cookie-popupProDark);
}

#cookie-popup p,
#cookie-popup ul {
    font-size: 14px;
    margin-bottom: 20px;
}

#cookie-popup .btn-wrap {
    display: flex;
    flex-direction: row;
    font-weight: 700;
    justify-content: center;
    margin: 0 -5px 0 -5px;
    flex-wrap: wrap;
}

#cookie-popup .btn-wrap button {
    flex-grow: 1;
    padding: 0 7px;
    margin: 0 5px 10px 5px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    min-width: 130px;
    line-height: 36px;
    border: none;
    font-family: inherit;
    font-size: 16px;
    transition: box-shadow .3s;
}

#cookie-popup .p-accetta {
    background-color: rgb(17, 17, 17);
    color: #fff;
}

#cookie-popup .p-rifiuta {
    color: rgb(17, 17, 17);
    font-size: 20px;
    font-weight: bold;
}

#cookie-popup .btn-wrap button:hover {
    transition: box-shadow .4s cubic-bezier(.25, .8, .25, 1), transform .4s cubic-bezier(.25, .8, .25, 1);
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 30%);
    transform: translate3d(0, -1px, 0);
}