/*  CSS personalizzati per cookie modal*/
.cookie-consent-modal {
    display: none;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    align-items: flex-end;
}

.content {
    position: absolute;
    background-color: #fff;
    padding: 2vw 2vw;
    border-radius: 5px 5px 0 0;
    max-width: 400px;
}

.btns {
    display: flex;
    justify-content: flex-end;
    margin-top: 2em;
}

.btn {
    border: none;
    outline: none;
    padding: .8em 1.5em;
    margin-right: 1em;
    border-radius: 3px;
    text-transform: uppercase;
}

.btn.accept {
    background-color: #235f44;
    color: #fff;
}

.btn.cancel {
    color: #000;
}

.cookie-close-icon {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}