.lucente-fixed-menu{
    position: fixed;
    right: 25px;
    bottom: 10px;
    z-index: 4;
}

.lucente-fixed-menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    align-items: flex-end;
    gap: 10px;
}
.lucente-fixed-menu ul li{
    cursor: pointer;
}
.lucente-fixed-menu span {
    height: 25px;
    color: #FFFFFF;
    display: table-cell;
    vertical-align: middle;
    font-family: 'lucente-bold';
}

.lucente-fixed-menu span img {
    height: 28px;
    filter: invert(1);
}

.lucente-fixed-menu ul li span:first-child{
    opacity: 0;
    padding-bottom:6px;
    transition:opacity .7s;
    padding-right: 10px;
}

.lucente-fixed-menu ul li:hover span:first-child{
    opacity: 1;
}

.lucente-fixed-menu ul li:hover img{
    opacity: 1;
    filter: invert(54%) sepia(63%) saturate(2594%) hue-rotate(350deg) brightness(97%) contrast(92%);
}

body.page-id-6055 .marchio_storico {
    display: none;
}

.panel{
    position: fixed;
    width: 500px;
    height: 100vh;
    z-index: 999999;
    background-color: #FFFFFF;
    gap: 20px;
    top: 0;
    right: 0;
    transform: translateX(500px);
    opacity: 0;
    transition: transform .5s, opacity .7s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 90px 40px;
    overflow-y: scroll;
}

.panel.open {
    transform: translateX(0px);
    opacity: 1;
}

.panel .contenuto {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.panel .contenuto p{
   width: 100%;
}

.panel .contenuto a.btn {
    color: #ffffff;
    margin: 20px 0;
    padding: 0 20px;
}

.panel .contenuto .download {
    display: flex;
    flex-direction: row;
    background: #ee751c;
    align-items: center;
    flex: 1 0 100%;
    align-content: space-around;
    justify-content: space-between;
    margin: 10px 0;
    cursor: pointer;
}
.panel .contenuto .testo {
    display: flex;
    flex-direction: row;
    background: #FFFFFF;
}

.panel .contenuto .testo input,
.panel .contenuto .testo textarea{
    border: 1px solid #dddddd;
}

.panel .contenuto .testo input[type=submit] {
    background: #ee751c;
    padding: 10px 20px;
    color: #fff;
    font-size: 18px;
    border: none;
}

.panel .contenuto .testo > div {
    width: 100%;
}
.panel .contenuto .download span{
    padding: 20px;
    color: #ffffff;
}

.panel span.close {
    position: absolute;
    z-index: 8;
    top: 50px;
    right: 50px;
    cursor: pointer;
    font-weight: bolder;
    font-size: 24px;
}
.panel span.close img {
    width: 20px;
}
.panel .contenuto h3 {
    color:  #ee751c;
}


@media screen and (max-width: 782px) {
    .lucente-fixed-menu {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100vh;
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .lucente-fixed-menu {
        width: 100%;
    }

    .lucente-fixed-menu ul {
        align-items: center;
        gap: 24px;
        margin: 0;
    }

    .lucente-fixed-menu ul li {
        display: flex;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 5px;
    }
    .lucente-fixed-menu span {
        order: 1;

    }

    .lucente-fixed-menu ul li span:first-child {
        opacity: 1;
        order: 2;
    }

    .panel {
       width: 100vw;
    }

}