.informativa{
    color: white;
    width: 80vw;
    padding-left: 10vw;
    padding-top: 20vh;
    padding-bottom: 10vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.informativa a{
    text-decoration: underline;
    color: white;
}
.informativa h1{
    text-align: start;
}
.informativa h2{ 
    margin-block: 1.5vh;
}
.informativa h3{
    margin-block: 1vh;
}
.informativa p{
    margin-block: .5vh;
}
.informativa ul{
margin-block: 1.5vh;
list-style-position: inside;
}
.informativa li{
    margin-block: .5vh;
}



.priv-div {
    position: fixed;
    width: min(80vw, 112vh);
    min-width: 40vw;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #4b4b4b;
    border-radius: 2.5vh;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: #111 0 0 2vh;
}
.cookie {
    width: max(4vh, 2vw);
    height: max(4vh, 2vw);
    filter: invert(99%) sepia(5%) saturate(462%) hue-rotate(201deg) brightness(117%) contrast(92%);         /* whitesmoke */
}
.priv-button {
    padding: 1vh;
    white-space: nowrap;
    background-color: var(--main-color);
    font-weight: 500;
    color: var(--white);
    transition: .4s;
    font-size: 15px;
    border-radius: 1vh;
}
.priv-button:hover {
    background-color: var(--grey5);
    transform: scale(1.06);
    transition: .2s;
    cursor: pointer;
}
.priv-span {
    text-align: justify;
    color: var(--white);
}
.priv-a {
    color: var(--grey5);
    text-decoration: underline;
    font-weight: 600;
}
.priv-a:hover {
    color: var(--white);
}

@media (orientation: portrait) {
    .priv-div {
        width: 86vw;
        flex-direction: column;
        gap: max(1.6vh, .6vw);
        bottom: 3vw;
        padding: 1.5vh;
    }
    .priv-button {
        padding-inline: 3vh;
        width: 100%;
    }
    .informativa{
    padding-left: 10vw;
    padding-top: 10vh;
    }
}
@media (orientation: landscape) {
    .priv-div {
        flex-direction: row;
        gap: max(2.2vh, 1.2vw);
        bottom: 6vh;
        padding: 3vh;
    }
}