
/**********************/
/**********************/
/*                    */
/*     ATTENZIONE     */
/*    LEGGI  SOTTO    */
/*                    */
/**********************/
/**********************/

/*SE SI SCEGLIE DI USARE QUESTO FOGLIO DI STILE BISOGNA CHE GLI ELEMENTI <div id="footerSpace"></div> PRESENTI IN img.html SIANO SETTATI COSì <div id="footerSpace" style="margin-top: 100vh;"></div>*/


/*importazione font google*/
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*animation keyframes*/
@keyframes letMeAppear{
    from{
        opacity: 0;
        bottom: calc(0);
    }
    to{
        opacity: 1;
        bottom: calc(60px + 25px + 10px); 
    }
}
@keyframes slideMeFromLeft{
    from{
        opacity: 0;
        left: -10%;
    }
    to{
        opacity: 1;
        left: 75%;
    }
}
@keyframes slideBoxOut {
    from{
    }
    to{
    }
}

@keyframes increaseOpacity {
    from{
        opacity: 0.2;
        cursor: not-allowed;
    }
    to{
        opacity: 1;
        cursor: pointer;
    }
}

@keyframes moreOpacity {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

@keyframes speedScrollRight{
    to{
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes slideMeIn{
    0%{
        right: -25vw;
        opacity: 0;
    }
    50%{
        opacity: 0.2;
    }
    100%{
        right: 2vw;
        opacity: 1;
    }
}

@keyframes slideMeFromBottom{
    0%{
        bottom: -10vh;
        opacity: 0;
    }
    50%{
        opacity: 0.2;
    }
    100%{
        bottom: 25px;
        opacity: 1;
    }
}

@keyframes bounce {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-10px);
    }
}

html, body{
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(0,0,0);
    width: 100vw;
    height: auto;
    min-height: 100vh;
    /*overflow: hidden;*/
    padding: 0;
    margin: 0;
    font-family: 'Jost', sans-serif;
    overflow-y: hidden;
}
*{
    margin: 0;
    padding: 0;
    position: relative;
    float: left;
}
span, br, strong, em, a{
    margin: unset;
    padding: unset;
    position: unset;
    float: unset;
}
/*sposto il contenitore di tutti i div che serviranno a creare 
pdf lontano dalla parte visibile al fine che non entrino
mai in contatto con la schermata*/
#hiddenContainer{
    position: fixed;
    top: -1000vh;
    left: -100000vw;
}
/*classi generiche per la gestione degli elementi della pagina*/
.show{
    display: block !important;
}
.hideMe{
    display: none !important;
}
.strong{
    font-weight: bold !important;
}
.forbitten{
    color: rgb(180,180,180) !important;
    cursor: not-allowed !important;
}
.fontWeightClass{
    font-weight: 400 !important;
    color: rgb(30,30,30) !important;
}
#contentItem{
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    height: 100vh;
    min-width: 100vw!important;;
    min-height: 100vh;
    max-width: 100vw!important;
    max-height: 220vh;
    position: absolute;
    top: 0;
    left: 0;
    overflow-y: scroll;
    overflow-x: hidden !important;
}
/*gestione pulsanti di configurazione view*/
ul.settingPanel{
    padding: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    background: rgba(255,255,255,0.75);
    box-shadow: 0 0 5px rgb(220,220,220);
    font-size: 1em;
    text-transform: lowercase;
    cursor: pointer;
    position: absolute;
    bottom: 2vw;
    left: 2vw;
    z-index: 999;
    list-style: none;
    opacity: 0;
}
.settingPanelAppeared{
    animation: increaseOpacity;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
}
li.settingItem{
    width: auto;
    height: 15px;
    padding: 5px;
    margin-right: 15px;
    margin-left: 15px;
}
p.settingName{
    width: 100%;
    height: 15px;
    font-size: 0.6em;
    color: rgb(90,90,90);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
    line-height: 17.5px;
}
span.settingIcon{
    width: 100%;
    height: 30px;
    text-align: center;
    color: rgb(0,0,0);
    font-size: 30px;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 200,
  'GRAD' -25,
  'opsz' 20
}
ul.featureList{
    max-width:calc(100% - 25px - 2vw);
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgb(180,180,180);
    margin: 25px;
    margin-left: 2vw;
    margin-top: 35vh;
}
li.featureItem{
    width: 100%;
    margin-bottom: 10px;
    font-weight: 200;
    display: none;
    font-family: 'Jost', sans-serif;
    font-size: 1.3em;
    color: rgb(150,150,150);
    letter-spacing: 1px;
    float: left;
    clear: both;
}
span.featureName{
    font-size: 0.7em;
    font-weight: 200;
    color: rgb(180,180,180);
}
/*gestione delle bio*/
.bioContainer{
    max-width:calc(100% - 25px - 2vw - 25px);
    margin: 0;
    padding: 0;
    margin: 25px;
    margin-left: 2vw;
    margin-top: 35vh;
    height: calc(65vh - 150px);
    overflow-y: scroll;
    padding-right: 25px;
}
.bioTitle{
    width: calc(100% - 10px);
    text-align: left;
    font-size: 3em;
    color: rgb(90,90,90);
    font-weight: 300;
    padding-left: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgb(90,90,90);
    margin-bottom: 25px;
}
p.bioText{
    width: calc(100% - 10px);
    padding-left: 10px;
    font-size: 1em;
    line-height: 1.2em;
    color: rgb(120,120,120);
    text-align: left;
}
.imgVerticale, .imgQuadrata{
    margin: 0 !important;
    padding: 0 !important;
    min-width: 50vw !important;
    max-width: 50vw !important;
    width: 50vw !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    background-repeat: no-repeat !important;
    background-position: center top !important;
    background-size: contain !important; /* passare a cover per immagine a tutto schermo MA CON TAGLI, CONTAIN, adatta la foto al contenitore*/
    overflow: hidden;
    box-sizing: border-box;
}

.swiperContainer{
    position: absolute;
    left: 25vw;
}
.infoContainer{
    position: absolute;
    left: 0;
}
.bookContainer{
    position: absolute;
    right: 0;
}

.infoContainer, .bookContainer{
    margin: 0 !important;
    padding: 0 !important;
    background-color: rgb(255,255,255);
    min-width: 25vw !important;
    max-width: 25vw !important;
    width: 25vw !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden;
    box-sizing: border-box;
}
.infoGridContainer{
    position: absolute !important;
    top: 0;
    left: 0;
}
/*
IMMAGINE ORIZZONTALE TRATTATA COME LE IMMAGINI VERTICALI PER ADATTARLE AL LAYOUT
.imgOrizzontale{
    min-width: 100vw !important;
    min-height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    background-repeat: no-repeat !important;
    background-position: center top !important;
    background-size: cover !important;
}
*/
/*NB aggiunta anche img orizzontale per adattare a nuovo design*/
.imgOrizzontale{
    min-width: 50vw !important;
    max-width: 50vw !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    background-repeat: no-repeat !important;
    background-position: center !important; /* IMMAGINE CENTRATA ALTRIMENTI STA ATTACCATA ALL'INIZIO PAGINA*/
    background-size: contain !important;
}
.containBG{
    background-repeat: no-repeat !important;
    background-position: center top !important;
    background-size: contain !important;
}


.swiper, .mainGridContainer, .gridContainer{
    min-width: 50vw;
    max-width: 50vw;
    min-height: 100vh;
    max-height: 100vh;
    z-index: 9999;
}

.mainInfo{
    width: 50vw;
    height: 100vh;
    min-width: 50vw;
    min-height: 100vh;
    position: absolute;
    left:0;
}

.button-next:after, .button-prev:after {
    content:none !important;
}

.backToOriginButton, .button-next, .button-prev{
    position: absolute;
    bottom: 25px;
    left: calc(50px);
    height: 50px;
    width: 50px;
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    color: rgb(0,0,0);
    transition: 0.5s;
    opacity: 1;
    padding: 10px;
    line-height: 50px;
    text-align: center;
    font-size: 2em;
    cursor: pointer;
    z-index: 99999;
}

.backToOriginButton{
    bottom: 150px;
    opacity: 0.2;
    cursor: not-allowed;
    transform: rotate(90deg);
}
.button-prev{
    bottom: 100px;
    opacity: 0.2;
    cursor: not-allowed;
    transform: rotate(90deg);
}
.button-next{
    transform: rotate(90deg);
    bottom: 50px;
}

.backToOriginButtonVisible{
    animation: increaseOpacity;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}
/*setting download panel*/
ul.downloadedBookList{
    width: calc(100% - 70px);
    margin-top: 25px;
    list-style: none;
    margin-left: 35px;
    margin-right: 35px;
}
li.downloadedBookItem{
    width: auto;
    padding: 5px;
    border-radius: 50px;
    padding-left: 10px;
    padding-right: 10px;
    float: left;
    clear: both;
    cursor: pointer;
    transition: 0.2s;
    background: transparent;
}
li.downloadedBookItem:hover{
    transition: 0.2s;
    background:  rgb(220,220,220);
}
.selectedDownloadedBook{
    background-color: black !important;
    color: rgb(255,255,255) !important;
    transition: 0.2s !important;
    font-weight: 200;
    letter-spacing: 2px;
}
/*setting feature section*/
.modelName{
    width: 100%;
    position: absolute;
    left: 2vw;
    top: calc(25vh - 1em);
    font-size: 3.5em;
    font-weight: 200;
    font-family: 'Jost', sans-serif;
    color: rgb(40,40,40);
    text-transform: uppercase;
    text-align: left;
}
/*setting for long model name*/
.reducedModelName{
    width: 100%;
    position: absolute;
    left: 2vw;
    top: calc(25vh - 1em);
    font-size: 2em;
    font-weight: 200;
    font-family: 'Jost', sans-serif;
    color: rgb(40,40,40);
    text-transform: uppercase;
    text-align: left;
}
/*gestione book*/

ul.listBook{
    position: absolute;
    width: calc(50% - 16px);
    list-style: none;
    top: calc(50vh  - 2em);
    font-size: 1em;
    padding-right: 15px;
    border-right: 1px solid rgb(40,40,40);
    right: -25vw;
}
ul.visibleListBook{
    right: 2vw !important;
}
ul.listBookAppeared{
    animation: slideMeIn;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
}
.bookListTitle{
    color: rgb(40,40,40);
    text-transform: capitalize;
    letter-spacing: 2px;
    text-align: right;
    width: 100%;
    font-size: 1.5em;
    font-weight: 500;
}
li.singleBookName{
    color: rgb(150,150,150);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: right;
    width: 100%;
    cursor: pointer;
    transition: 0.2s;
}

li.singleBookName:hover{
    opacity: 0.5;
    transition: 0.2s;
}
/*settaggio grid view*/
.picContainer{
    width: 50vw;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
    position: absolute;
    right: 0;
    top: 0;
}
.gridImg{
    width: calc((50vw / 4) - 20px);
    height: calc((50vw / 4) - 20px);
    float: left;
    position: relative;
    margin: 10px;
    padding: 0;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    cursor: pointer;
}

.gridExplosionContainer, .singleImgExplosionContainer{
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
}
.singleImgExplosionContainer{
    width: auto !important;
    display: flex;
    overflow-x: scroll;
}
#gridExplosionID{
    max-width: unset;
    box-sizing: content-box;
    position: relative;
}
.gridExplosion{
    width: calc(100vw - 100px);
    height: calc(100vh - 100px);
    min-width: calc(100vw - 100px);
    min-height: calc(100vh - 100px);
    max-width: calc(100vw - 100px);
    max-height: calc(100vh - 100px);
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    margin: 50px;
}
span.closeGridExplosion{
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 15px;
    cursor: pointer;
    color: rgb(40,40,40);
    mix-blend-mode: difference;
    font-size: 2em;
    line-height: 1em;
    cursor: pointer;
    transition: 0.2s;
    z-index: 9999;
    font-weight: 400;
}
span.closeGridExplosion:hover{
    transition: 0.2s;
    transform: rotate(-90deg);
}
#imgIndex, #bookLenght, #bookName{
    z-index: 1000;
}
#imgIndex{
    position: absolute;
    color: rgb(90,90,90);
    text-align: right;
    bottom: 15px;
    right: 60px;
    font-size: 2em;
    line-height: 1em;
}
#bookLenght{
    position: absolute;
    color: rgb(120,120,120);
    text-align: right;
    bottom: 15px;
    right: 25px;
    font-size: 1.1em;
    line-height: 1em;
}
#bookName{
    position: absolute;
    color: rgb(120,120,120);
    text-align: right;
    text-transform: capitalize;
    bottom: 15px;
    right: 100px;
    font-size: 1em;
    width: 300px;
    border-bottom: 1px solid rgb(120,120,120);
    padding-bottom: 10px;
    padding-right: 15px;
    line-height: 1em;
}
span.navigate-next, span.navigate-before{
    font-size: 5em;
    line-height: 1em;
    position: fixed;
    top: calc(50vh - 1em);
    color: rgb(120,120,120);
    transition: 0.2s;
    cursor: pointer;
    opacity: 0.5;
    z-index: 9999;
}
span.navigate-next{
    right: 10px;
}
span.navigate-next:hover{
    transition: 0.2s;
    transform: translateX(10px);
    opacity: 1;
}
span.navigate-before{
    left: 10px;
}
span.navigate-before:hover{
    transition: 0.2s;
    transform: translateX(-10px);
    opacity: 1;
}

/*explosion-gallery*/
.explosion-gallery{
    flex-shrink: 0;
    width: calc(100vw - 100px);
    height: calc(100vh - 100px);
    min-width: calc(100vw - 100px);
    min-height: calc(100vh - 100px);
    max-width: calc(100vw - 100px);
    max-height: calc(100vh - 100px);
    margin: 50px;
    display: inline-block;
}
.singleImgExplosion{
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}
/*gestione label suggerimento "aggiungi alla lista"*/
.addRemMessage{
    padding: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    background: rgba(255,255,255,0.75);
    box-shadow: 0 0 5px rgb(220,220,220);
    font-size: 0.8em;
    text-transform: lowercase;
    cursor: pointer;
    position: absolute;
    bottom: calc(60px + 25px + 10px);
    left: 25px;
    z-index: 999;
    list-style: none;
    display: none;
}

.letMeApperClass{
    animation: letMeAppear;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}


/*gestione layout Composit*/
#composit{
    z-index: 0;
}
.page{
    width: calc(148mm - 20px); /* Larghezza A5 */
    height: calc(210mm - 20px); /* Altezza A5 */
    /*margin: 20px; /* Margini esterni */
    padding: 10px; /* Spaziatura interna */
    box-sizing: border-box;
    page-break-before: always; /* Inizia una nuova pagina per ogni blocco con classe 'page' */
    margin-bottom: 20px; /* Margine inferiore tra le pagine */
    background-color: white;      
}
.compositFront, .compositBack{
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
}
h1.compositName{
    width: 100% !important;
    max-height: 10mm !important;
    font-size: 8mm !important;
    line-height: 8mm !important;
    letter-spacing: 2mm !important;
    text-align: center !important;
    margin-top: 5mm !important;
    font-weight: 200;
}
.compositCover{
    width: 125mm !important;
    height: 170mm !important;
    min-width: 125mm !important;
    min-height: 170mm !important;
    max-width: 125mm !important;
    max-height: 170mm !important;
    margin-left: calc(11.5mm - 10px) !important;
    margin-right: calc(11.5mm - 10px) !important;
    margin-top: 5mm !important;
    margin-bottom: 5mm !important;
    background-color: grey;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center top !important;
}
.compositFrontLogo{
    width: 30mm;
    min-width: 30mm;
    max-width: 30mm;
    height: auto;
    margin-top: 2.5mm;
    margin-bottom: 2.5mm;
    margin-right: calc((140mm - 30mm) / 2);
    margin-left: calc((140mm - 30mm) / 2);
}
ul.compositFeatureList{
    width: 130mm !important;
    height: 7mm !important;
    min-width: 130mm !important;
    min-height: 7mm !important;
    max-width: 130mm !important;
    max-height: 7mm !important;
    list-style: none !important;
    margin-left: calc(9mm - 10px);
    margin-right: calc(9mm - 10px);
    margin-top: 5mm !important;
}
li.compositSingleFeature{
    width: calc((130mm / 7) - 3mm);
    height: 7mm !important;
    min-width: calc((130mm / 7) - 3mm);
    min-height: 7mm !important;
    max-width: calc((130mm / 7) - 3mm);
    max-height: 7mm !important;
    margin-left: 1.5mm;
    margin-right: 1.5mm;
    font-size: 0.6em;
    text-align: center;
}
span.compositFeatureName{
    font-weight: 600;
}
.singleCompositImgContainer{
    width: 140mm !important;
    height: 160mm !important;
    min-width: 140mm !important;
    min-height: 160mm !important;
    max-width: 140mm !important;
    max-height: 160mm !important;
    margin-left: calc(4mm - 10px);
    margin-right: calc(4mm - 10px);
    margin-top: 5mm
}
.singleCompositImg{
    width: calc((140mm / 2) - 7mm);
    height: calc((160mm / 2) - 7mm);
    margin: 3.5mm !important;
    position: absolute;
    background-size: contain !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}
.singleImgContainer{
    width: calc((140mm / 2) - 7mm);
    height: calc((160mm / 2) - 7mm);
    margin: 3.5mm !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
img.singleCompositImg{
    height: 100%
}
.firstCompositImg{
    top: 0;
    left: 0;
    background-repeat: no-repeat !important;
}
.secondCompositImg{
    top: 0;
    right: 0;
    background-repeat: no-repeat !important;
}
.thirdCompositImg{
    bottom: 0;
    left: 0;
    background-repeat: no-repeat !important;
}
.fourthCompositImg{
    bottom: 0;
    right: 0;
    background-repeat: no-repeat !important;
}
.compositRearlogo{
    width: 30mm;
    min-width: 30mm;
    max-width: 30mm;
    height: auto;
    margin-top: 5mm;
    margin-bottom: 1.5mm;
    margin-right: calc((140mm - 30mm) / 2);
    margin-left: calc((140mm - 30mm) / 2);
}
/*p.compositLastInfo{
    width: 90mm;
    height:10mm;
    font-size: 3mm;
    color: rgb(30,30,30);
    text-align: center;
    line-height: 1.1em;
    margin-left: calc((140mm - 90mm) / 2);
    margin-right: calc((140mm - 90mm) / 2);
    margin-top: 1mm;
    margin-bottom: 0mm;
}*/
.compositLastInfo{
    width: 134mm;
    height:21mm;
    min-width: 134mm;
    min-height:21mm;
    max-width: 134mm;
    max-height:21mm;
    margin-top: 1mm;
    margin-bottom: 0mm;
    /*background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background: url('/myfiles/img/sistem/composit-img/footer_composit.jpg');*/
    position: absolute;
    bottom: 0;
    object-fit: contain;
    left: calc((148mm - 134mm) / 2);
    right: calc((148mm - 134mm) / 2);
}

/*setting bottone download PDF*/
.downloadPdfButton{
    position: absolute;
    color: rgb(0,0,0);
    font-size: 1.5em;
    top: 15vh;
    right: 50px;
    cursor: pointer;
    mix-blend-mode: difference;
    z-index: 9999;
}
/*setting pannello download*/
#downloadSettingContainer{
    position: fixed;
}
.downloadSettingContainerClass{
    height: calc(40vh - 30px);
    width: calc((16.65vw * 2) - 0px);
    padding: 0;
    left: calc(50vw - 16.65vw);
    top: 30vh;
    color: rgb(40,40,40);
    z-index: 9999;
    transition: 0.4s;
    transform: rotateY(90deg);
}
.downloadSettingTitle{
    width: 100%;
    text-align: left;
    font-size: 1.2em;
    line-height: 1em;
    font-weight: 300;
    margin-bottom: 50px;
    margin-top: 25px;
    z-index: 9999;
}
ul.downloadSettingBooksList{
    width: calc(100% - 25px);
    list-style: none;
    margin-bottom: 25px;
    font-weight: 200;
    text-align: left;
    padding-left: 25px;
}
li.donwloadSettingsingleBook{
    width: 100%;
    font-size: 1.2em;
    line-height: 1em;
    text-transform: uppercase;
    color: rgb(90,90,90);
    margin-bottom: 10px;
    cursor: pointer;
}
p.downloadSettingButton{
    font-size: 1.2em;
    line-height: 30px;
    color: rgb(255,255,255);
    border: 1px solid rgb(30,30,30);
    background-color: rgb(30,30,30);
    padding: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    transition: 0.5s;
    opacity: 0.8;
    position: absolute;
    cursor: pointer;
    left: 15px;
    bottom: 25px;
}

p.downloadSettingButton:hover{
    transition: 0.2s;
    opacity: 1;
    padding-right: 50px;
}

.downloadSettingIcon{
    position: absolute;
    font-size: 1.2em;
    line-height: 30px;
    color: rgb(255,255,255);
    opacity: 0;
    left: -10%;
}
p.downloadSettingButton:hover > .downloadSettingIcon{
    animation: slideMeFromLeft;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.closeDownloadSettingContainerButton{
    position: absolute;
    color: rgb(30,30,30);
    right: 0;
    top: 0;
    padding: 10px;
    font-size: 1.5em;
    text-align: center;
    transition: 0.5s;
    cursor: pointer;
    z-index: 9999;
}

.closeDownloadSettingContainerButton:hover{
    transition: 0.2s;
    transform: rotate(-90deg);
}

.donwloadSettingItemContainerClass{
    width: calc(16.65vw - 30px);
    padding: 15px;
    height: 100% !important;
    opacity: 1;
    position: absolute;
    right:0;
    top:0;
    background: rgba(255,255,255,0.75);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.downloadSettingContainerFully{
    animation: slideBoxOut;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.downloadSettingItemContainerVisible{
    animation: increaseOpacity;
    animation-delay: 0.15s;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.flipMe{
    transition: 0.2s;
    transform: rotateY(0deg) !important;
}

/*setting video*/
.videoLandscape{
    margin-top: calc((100vh - 28.125vw) / 2);
    margin-bottom: calc((100vh - 28.125vw) / 2);
}
.videoPortrait{
    margin-left: calc((50vw - 56.25vh) / 2);
    margin-right: calc((50vw - 56.25vh) / 2);
}
/*setting button download COMPOSIT*/

p.compositDownload{
    position: absolute;
    /*bottom: 25px;*/ /*parametro obsoleto - comanda aniamzione vedi classe sotto*/
    right: 25px; /*right: -25vw;*/
    font-size: 1em;
    line-height: 30px;
    color: rgb(255,255,255);
    border: 1px solid rgb(30,30,30);
    background-color: rgb(30,30,30);
    padding: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: 200;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    opacity: 1;
    cursor: pointer;
    border-radius: 0px;
    bottom: -10vh;
    /*top: calc(47vh  - 4em);*/
}

.downloadCompositAppeared{
    animation: slideMeFromBottom; /*animazione precedente keyframes --> "slideMeFromBottom"*/
    animation-duration: 0.7s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}

p.compositDownload:hover{
    transition: 0.2s;
    opacity: 1;
    padding-right: 50px;
}

.compositDownloadIcon{
    position: absolute;
    font-size: 1.2em;
    line-height: 30px;
    color: rgb(255,255,255);
    opacity: 0;
    left: -10%;
}

p.compositDownload:hover > .compositDownloadIcon{
    animation: slideMeFromLeft;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.testingAnimation{
    animation: speedScrollRight;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}
/*layout book*/
.downloadedBook{
    z-index: 0;
}
.pageA4{
    width: calc(210mm - 20px); /* Larghezza A4 */
    height: calc(297mm - 20px); /* Altezza A4 */
    /*margin: 20px; /* Margini esterni */
    padding: 10px; /* Spaziatura interna */
    box-sizing: border-box;
    page-break-before: always; /* Inizia una nuova pagina per ogni blocco con classe 'page' */
    margin-bottom: 20px; /* Margine inferiore tra le pagine */
    background-color: white;
}
.singleImgBook{
    width: calc(210mm - 7mm) !important;
    height: calc(297mm - 7mm) !important;
    margin: 3.5mm !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    background-size: contain !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}

/*share container*/
.shareContainer{
    width: calc(30vw - 20px);
    min-height: calc(20vh - 20px);
    max-height: calc(60vh - 20px);
    padding: 10px;
    position: fixed;
    top: 20vh;
    left: 35vw;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(5px);
    z-index: 99999;
    box-shadow: 0 0 15px rgb(220,220,220);
    display: none;
}
h1.shareTitle{
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 25px;
    font-size: 1em;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
}
ul.shareList{
    list-style: none;
    width: 100%;
}
li.shareItem{
    width: calc(25% - 20px);
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    color: rgb(40,40,40);
    opacity: 0.5;
    cursor: pointer;
    transition: 0.2s;
}
li.shareItem:hover{
    transition: 0.2s;
    opacity: 1;
}
i{
    width: 100%;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 1.5em;
}
.closeSharePanel{
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    font-size: 1.2em;
    cursor: pointer;
    transition: 0.2s;
}
.closeSharePanel:hover{
    transform: rotate(90deg);
    transition: 0.2s;
}
/*email validation css setting*/

.email-input{
    width: calc(100% - 50px);
    padding: 25px;
    opacity: 0;
}
p.inputInstruction{
    width: 100%;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 0.8em;
    color: rgb(30,30,30);
}
input.emailInputClass{
    width: calc(100% - 30px);
    padding: 15px;
    border: none;
    background: rgb(255,255,255);
    border-radius: 5px;
    font-size: 0.8em;
    color: rgb(40,40,40);
    text-align: center;
}

.validationNegativeMessage, .validationPositiveMessage{
    position: absolute;
    top: 150px;
    left: 30px;
    opacity: 0;
}
.validationNegativeMessage{
    color:rgb(173, 0, 0);
}
.validationPositiveMessage{
    color:rgb(0, 173, 43);
}
.validationMessageVisible{
    animation: moreOpacity;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.shareMailButton{
    float: right;
    margin-left: 5px;
    width: 50px;
    padding: 15px;
    padding-bottom: 10px;
    padding-top: 10px;
    background: transparent;
    border: 1px solid rgb(30,30,30);
    color: rgb(30,30,30);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 15px;
}
.shareMailButton:hover{
    transition: 0.2s;
    background: rgb(30,30,30);
    color: rgb(255,255,255);
}
/*setting downloaded book container*/
.downloadedBookContainer{
    width: calc(30vw - 20px);
    min-height: calc(25vh - 20px);
    height: auto;
    padding: 10px;
    position: fixed;
    top: 20vh;
    left: 35vw;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(5px);
    z-index: 99999;
    box-shadow: 0 0 15px rgb(220,220,220);
    display: none;
}
.downloadedText{
    width: 100%;
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 0.8em;
    color: rgb(40,40,40);
    letter-spacing: 1px;
    text-align: center;
}
.closingDownloadedItemContainerButton{
    font-size: 0.8em;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid rgb(30,30,30);
    color: rgb(30,30,30);
    width: 100px;
    padding: 15px;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-left: calc(50% - 60px);
    cursor: pointer;
    transition: 0.2s;
    margin-top: 75px;
}

.closingDownloadedItemContainerButton:hover{
    background: rgb(30,30,30);
    color: rgb(255,255,255);
    transition: 0.2s;
}
/*settaggio popUp contact*/
#contactSection{
    width: 80vw;
    height: 70vh;
    margin-top: 15vh;
    margin-left: 10vw;
    position: fixed;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    z-index: 99999;
    color: white; 
    display: none;
}
h1.contactSectionTitle{
    float: left;
    margin: 0;
    padding: 0;
    font-size: 2em;
    text-align: center;
    width: calc(100% - 100px);
    margin-left: 50px;
    margin-right: 50px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-transform: capitalize;
    min-height: 10vh;
    max-height: 10vh;
    line-height: 10vh;
    margin-top: -10vh;
    display: block;
    color: rgb(18,18,18);
}
p.closeContactSection{
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
    color: white;
    background: rgba(0,0,0,0.5);
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 1em;
    line-height: 1em;
    text-align: center;
    transition: 0.2s;
    cursor: pointer;
}
p.closeContactSection:hover{
    transition: 0.2s;
    opacity: 0.5;
}
.emailSection{
    float: left;
    position: relative;
    margin: 0;
    padding: 0;
    width: calc(40vw - 60px);
    max-height: calc(60vh - 60px);
    padding: 30px;
}
.sediSection{
    float: left;
    position: relative;
    margin: 0;
    padding: 0;
    width: calc(40vw - 60px);
    max-height: calc(70vh - 60px);
    padding-left: 60px;
}
.singleEmailSection{
    width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    position: relative;
    float: left;
    height: calc((70vh - 150px)/6);
}
h1.emailTitle{
    float: left;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    text-transform: uppercase;
    color: white;
    text-align: left;
    text-decoration: underline;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    margin-bottom: 5px;
    font-size: 1.5em;
}
p.emailPayOff, p.emailItem{
    float: left;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 1em;
}
span.emailAddress{
    transform: none;
    font-weight: bold;
    cursor: pointer;
}
.singleSede{
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
    max-height: calc(35vh);
    min-height: calc(35vh);
    min-width: 100%;
    max-width: 100%;
}
h1.emailTitle{
    text-transform: uppercase;
}
.background{
    width: calc(50% - 50px);
    min-width: calc(50% - 50px);
    height: calc(30vh - 50px);
    min-height: calc(35vh - 50px);
    min-height: calc(35vh - 50px);
    margin: 25px;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.7;
    border-radius: 15px;
}
h1.sedeTitle{
    width: calc(50% - 50px);
    float: left;
    position: relative;
    text-transform: uppercase;
    text-align: right;
    margin: 0;
    padding: 0;
    margin-right: calc(50%);
    text-decoration: underline;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    margin-bottom: 15px;
    margin-top: 100px;
    color: white;
}
p.sedetext{
    width: calc(50% - 50px);
    float: left;
    position: relative;
    text-align: right;
    margin: 0;
    padding: 0;
    margin-right: calc(50%);
    font-family: 'Arial', sans-serif;
    color: white;
}
/*gestione elementi specifici mobile/desktop*/
.desktop{
    display: block;
}
.mobile{
    display: none;
}
/*unico elemento determinato da id che deve mostrarsi solo in mobile e non in desktop*/
.settingItemMobile{
    display: none;
}
/*gestione elementi specifici mobile/desktop*/

/****************/
/*casi disperati*/
/****************/

/* Regole specifiche per Internet Explorer */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* Regole specifiche per IE */
    .imgVerticale, .imgQuadrata, .infoContainer, .infoGridContainer{
            margin: 0 !important;
            padding: 0 !important;
            min-width: calc(50vw - 10px) !important;
            max-width: calc(50vw - 10px) !important;
            width: calc(50vw - 10px) !important;
            min-height: 100vh !important;
            max-height: 100vh !important;
            background-repeat: no-repeat !important;
            background-position: center top !important;
            background-size: contain !important; /* passare a cover per immagine a tutto schermo MA CON TAGLI, CONTAIN, adatta la foto al contenitore*/
            overflow: hidden;
            box-sizing: border-box;
        }
    .infoContainer, .bookContainer{
        margin: 0 !important;
        padding: 0 !important;
        background-color: rgb(255,255,255);
        min-width: calc(25vw - 10px) !important;
        max-width: calc(25vw - 10px) !important;
        width: calc(25vw - 10px) !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        overflow: hidden;
        box-sizing: border-box;
    }
}

/* Regole specifiche per Firefox */
@-moz-document url-prefix() {
    /* Regole specifiche per Firefox */
    .imgVerticale, .imgQuadrata, .infoContainer, .infoGridContainer{
            margin: 0 !important;
            padding: 0 !important;
            min-width: calc(50vw - 10px) !important;
            max-width: calc(50vw - 10px) !important;
            width: calc(50vw - 10px) !important;
            min-height: 100vh !important;
            max-height: 100vh !important;
            background-repeat: no-repeat !important;
            background-position: center top !important;
            background-size: contain !important; /* passare a cover per immagine a tutto schermo MA CON TAGLI, CONTAIN, adatta la foto al contenitore*/
            overflow: hidden;
            box-sizing: border-box;
        }
    .infoContainer, .bookContainer{
        margin: 0 !important;
        padding: 0 !important;
        background-color: rgb(255,255,255);
        min-width: calc(25vw - 10px) !important;
        max-width: calc(25vw - 10px) !important;
        width: calc(25vw - 10px) !important;
        width: calc(25vw - 10px) !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        overflow: hidden;
        box-sizing: border-box;
    }
}

/* Regole specifiche per Chrome e Safari */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    /* Regole specifiche per Chrome e Safari */
    .imgVerticale, .imgQuadrata, .infoContainer, .infoGridContainer{
            margin: 0 !important;
            padding: 0 !important;
            min-width: calc(50vw - 10px) !important;
            max-width: calc(50vw - 10px) !important;
            width: calc(50vw - 10px) !important;
            min-height: 100vh !important;
            max-height: 100vh !important;
            background-repeat: no-repeat !important;
            background-position: center top !important;
            background-size: contain !important; /* passare a cover per immagine a tutto schermo MA CON TAGLI, CONTAIN, adatta la foto al contenitore*/
            overflow: hidden;
            box-sizing: border-box;
        }
    .infoContainer, .bookContainer{
        margin: 0 !important;
        padding: 0 !important;
        background-color: rgb(255,255,255);
        min-width: calc(25vw - 10px) !important;
        max-width: calc(25vw - 10px) !important;
        width: calc(25vw - 10px) !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        overflow: hidden;
        box-sizing: border-box;
    }
}



/********************/
/*                  */
/* SETTAGGIO MOBILE */
/*                  */
/********************/
@media (min-width: 279px) and (max-width: 823px) {
    
    .desktop{
        display: none;
    }
    .mobile{
        display: block;
    }
    #contentItem{
        overflow: hidden;
        max-height: 220vh;
    }
    .swiper, .mainGridContainer, .gridContainer{
        min-width: 100vw;
        max-width: 100vw;
        z-index: 9999;
    }
    .mobileAllFeaturesContainer{
        min-width:100vw;
        max-width: 100vw;
        height: 20vh;
        min-height: 20vh;
        max-height: 20vh;
        background: rgb(255,255,255);
        position: relative;
        bottom: 0;
    }
    .iconContainer{
        width: 80vw;
        height: 5vh;
        display: flex;
        gap: 10px;
        margin-left: 10vw;
        margin-right: 10vw;
    }
    .icon-wrapper {
        width: 25vw; /* Larghezza del 100% della viewport width */
        text-align: center;
    }
    span.mobileAllFeaturesItem{
        /*width: 20px;
        height: 20px;
        padding: 10px;
        border: 1px solid rgb(30,30,30);
        border-radius: 50px;
        margin-left: calc((100vw - 40px - 2px) / 8);
        margin-right: calc((100vw - 40px - 2px) / 8);
        text-align: center;
        line-height: 25px;*/
        font-size: 24px; /* Imposta la dimensione dell'icona */
        padding: 10px; /* Aggiunge spazi interni di 10px */
        border: 1px solid rgb(30,30,30);
        border-radius: 50%;
    }
    .sizeOpenButton{
        transform: rotate(0deg);
    }
    /*gestione titolo book visibile*/
    .bookOnShowTitle{
        width: 100%;
        height: auto;
        position: relative;
        text-align: center;
        font-weight: 300;
        font-size: 0.8em;
        margin-top: 5px;
        margin-bottom: 5px;
        right: 0;
        left: 0;
        color: rgb(120,120,120);
    }
    /*gestione container in maniera verticalizzata*/
    .swiperContainer{
        position: absolute;
        height: 65vh !important;
        right: 0;
        left: 0;
        top: 12vh;
    }
    .imgVerticale, .imgOrizzontale, .imgQuadrata, .swiper{
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        height: 67vh !important;
        min-height: 67vh !important;
        max-height: 67vh !important;
    }
    .infoContainer{
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        height: 12vh !important;
        min-height: 12vh !important;
        max-height: 12vh !important;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;

    }
    .bookContainer{
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        height: 20vh !important;
        min-height: 20vh !important;
        max-height: 20vh !important;
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
    }
    .modelName{
        width: 100%;
        position: absolute;
        left: 0;
        top: unset;
        bottom: 0;
        font-size: 1.5em;
        font-weight: 200;
        font-family: 'Jost', sans-serif;
        color: rgb(40,40,40);
        text-transform: uppercase;
        text-align: center;
    }
    /*setting change metric on mobile*/
    li.settingItemMobile{
        width: auto;
        height: 15px;
        padding: 5px;
        margin-right: 15px;
        margin-left: 15px;
        position: absolute;
        bottom: 15vh;
        right: 50px;
        transform: scale(1.5);
        padding: 5px;
        padding-top: 2.5px;
        padding-bottom: 2.5px;
        border: 1px solid rgb(30,30,30);
        border-radius: 50px;
        line-height: 15px;
        color: rgb(30,30,30);
        background: transparent;
        display: block;
    }
    /*setting features mobile*/
    ul.featureList{
        margin: 0;
        padding: 0;
        list-style: none;
        font-size: 1em;
        padding-right: 0px;
        border-right: none;
        width: calc(100vw - 50px);
        min-height: calc(100vh - 20px);
        max-height: calc(100vh - 20px);
        padding: 10px;
        padding-right: 25px;
        padding-left: 25px;
        position: fixed;
        top: 0vh;
        left: 0vw;
        background: rgba(255,255,255,0.7);
        backdrop-filter: blur(5px);
        z-index: 99999;
        box-shadow: 0 0 15px rgb(220,220,220);
        z-index: 99999;
        list-style: none;
        color: rgb(180,180,180);
        display: none;
    }
    li.featureItem{
        width: 80%;
        margin-right: 20%;
        margin-bottom: 10px;
        font-weight: 300;
        display: none;
        font-family: 'Jost', sans-serif;
        font-size: 1.3em;
        line-height: 1.3em;
        color: rgb(30,30,30);
        letter-spacing: 1px;
        float: left;
        clear: both;
    }
    span.featureName{
        display: inline-block;
        font-size: 0.7em;
        font-weight: 300;
        color: rgb(30,30,30);
        min-width: 20vw !important;
        color: rgb(255,255,255);
        background: rgb(30,30,30);
        padding: 5px;
        padding-top:2.5px;
        padding-bottom:2.5px;
        border-radius: 5px;
        line-height: 1.35em;
    }
    /*setting mobile list book*/
    ul.listBook{
        list-style: none;
        font-size: 1em;
        padding-right: 0px;
        border-right: 0px solid rgb(40,40,40);
        right: 0;
        width: calc(100vw - 50px);
        min-height: calc(100vh - 20px);
        max-height: calc(100vh - 20px);
        padding: 10px;
        padding-left: 25px;
        padding-right: 25px;
        position: fixed;
        top: 0vh;
        left: 0vw;
        background: rgba(255,255,255,0.7);
        backdrop-filter: blur(5px);
        z-index: 99999;
        box-shadow: 0 0 15px rgb(220,220,220);
        display: none;
        z-index: 99999;
    }
    li.singleBookName{
        color: rgb(30,30,30);
        text-transform: uppercase;
        letter-spacing: 2px;
        text-align: left;
        width: auto;
        padding: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
        margin-right: 20%;
        cursor: pointer;
        transition: 0.2s;
        border: 1px solid rgb(30,30,30);
        border-radius: 50px;
        margin-bottom: 10px;
        min-width: 50vw;
    }
    .fontWeightClass{
        font-weight: 400 !important;
        background: rgb(30,30,30) !important;
        color: rgb(255,255,255) !important;
        border-radius: 50px;
    }
    li.singleBookName:hover{
        opacity: 0.5;
        transition: 0.2s;
    }
    /*setting video*/
    .videoLandscape{
        margin-top: calc((80vh - 56.25vw) / 2);
        margin-bottom: calc((80vh - 56.25vw) / 2);
    }
    .videoPortrait{
        margin-left: calc((100vw - 56.25vh) / 2);
        margin-right: calc((100vw - 56.25vh) / 2);
    }
    /*setting mobile share*/
    .shareContainer{
        width: calc(100vw - 50px);
        min-height: calc(100vh - 20px);
        max-height: calc(100vh - 20px);
        padding: 10px;
        padding-right: 25px;
        padding-left: 25px;
        position: fixed;
        top: 0vh;
        left: 0vw;
        background: rgba(255,255,255,0.7);
        backdrop-filter: blur(5px);
        z-index: 99999;
        box-shadow: 0 0 15px rgb(220,220,220);
        display: none;
    }
    h1.shareTitle{
        width: 100%;
        text-align: center;
        margin-bottom: 25px;
        margin-top: 25px;
        font-size: 1.2em;
        letter-spacing: 2px;
        font-weight: 400;
        text-transform: uppercase;
        color: rgb(30,30,30);
    }
    ul.shareList{
        list-style: none;
        width: 100%;
    }
    li.shareItem{
        width: calc(20% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        text-align: center;
        color: rgb(40,40,40);
        opacity: 0.5;
        cursor: pointer;
        transition: 0.2s;
    }
    li.shareItem:hover{
        transition: 0.2s;
        opacity: 1;
    }
    i{
        width: 100%;
        text-align: center;
        margin-top: 25px;
        margin-bottom: 25px;
        font-size: 1.5em;
    }
    .closeSharePanel{
        position: absolute;
        top: 10px;
        right: 10px;
        padding: 10px;
        font-size: 1.2em;
        cursor: pointer;
        transition: 0.2s;
        color: rgb(30,30,30);
    }
    .closeSharePanel:hover{
        transform: rotate(90deg);
        transition: 0.2s;
    }
    /*setting download container*/
    .downloadedBookContainer{
        width: calc(100vw - 50px);
        min-height: calc(100vh - 20px);
        max-height: calc(100vh - 20px);
        padding: 10px;
        padding-right: 25px;
        padding-left: 25px;
        position: fixed;
        top: 0vh;
        left: 0vw;
        background: rgba(255,255,255,0.7);
        backdrop-filter: blur(5px);
        z-index: 99999;
        box-shadow: 0 0 15px rgb(220,220,220);
        display: none;
    }

    /*popup contact*/
    #contactSection{
        width: 100vw;
        height: 100vh;
        margin-top: 0;
        margin-left: 0;
        border-radius: 0;
        z-index: 99999999999;
        background: rgba(255,255,255,0.9);
        backdrop-filter: blur(5px);
        overflow-y: scroll !important;
    }
    h1.contactSectionTitle{
        font-size: 2em;
        width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
        min-height: unset;
        max-height: unset;
        line-height: 1em;
        margin-top: 25px;
        text-align: left;
        color: white;
    }
    p.closeContactSection{
        top: 10px;
        right: 20px;
        color: white;
    }
    .emailSection{
        width: calc(100vw - 40px);
        max-height: unset;
        height: auto;
        padding: 20px;
    }
    .sediSection{
        float: left;
        position: relative;
        margin: 0;
        padding: 0;
        width: calc(100vw - 40px);
        max-height: unset;
        height: auto;
        padding-left: 20px;
    }
    .singleEmailSection{
        width: 100%;
        margin: 0;
        padding: 0;
        margin-bottom: 15px;
        margin-top: 15px;
        position: relative;
        float: left;
        height: auto;
    }
    h1.emailTitle{
        font-weight: bold;
        font-family: 'Arial', sans-serif;
        margin-bottom: 5px;
        font-size: 1.2em;
    }
    p.emailPayOff, p.emailItem{
        float: left;
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        text-align: left;
        color: white;
        font-family: 'Arial', sans-serif;
        font-size: 1em;
    }
    p.emailPayOff{
        font-size: 0.8em;
    }
    span.emailAddress{
        transform: none;
        font-weight: bold;
        cursor: pointer;
    }
    .singleSede{
        position: relative;
        float: left;
        margin: 0;
        padding: 0;
        max-height: unset;
        min-height: unset;
        min-width: 100%;
        max-width: 100%;
    }
    h1.emailTitle{
        text-transform: uppercase;
    }
    .background{
        width: calc(100% - 0px);
        min-width: calc(100% - 0px);
        height: auto;
        min-height: unset;
        margin: 0px;
        margin-top: 30px;
        margin-bottom: 30px;
        opacity: 1;
        position: relative;
        float: left;
    }
    h1.sedeTitle{
        width: calc(100% - 0px);
        text-align: left;
        margin-right: 0;
        margin-bottom: 25px;
        margin-top: 25px;
        font-size: 1.5em;
    }
    p.sedetext{
        width: calc(100% - 40px);
        text-align: left;
        margin-right: 0;
    }
}
/*popup contact*/