:root{
    --colore1: rgba(239, 62, 35, 1);
    --colore2: rgba(95, 182, 201, 1);
    --sfondo-timeline: #2B2B31;
}

.colore-1{
    background-color: var(--colore1);
}	
.colore-2{
    background-color: var(--colore2);
}

#menu-selezione{
    position: fixed;
    width: 50%;
    top: -100%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

#menu-selezione > div,
#menu-selezione > div > div{
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

#menu-selezione.mostra{
    top: 70px;
}

.seleziona-colore{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
    background-color: yellow;
}

.swiper-slide{
    z-index: 1;
}

#slide-copertina {
    z-index: 3;
}

.slide-cnt .colore-1, .slide-cnt .colore-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    font-size: 100px;
    color: #fff;
    padding: 8vh 10vw;
}

.attiva-colore::after {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 50%;
    background-color: black;
    opacity: .1;
    z-index: 101;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    mix-blend-mode: overlay;
}

.attiva-colore:hover::after{
    -webkit-transform: scale(3);
    transform: scale(3);
    opacity: .7;
}

.attiva-colore{
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.colore-2:not(.attiva-colore) {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

#swiper.colore-2-attivo:not(.fai-animazioni) .slide-cnt {
    -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg);
}

#swiper.colore-1-attivo:not(.fai-animazioni) .slide-cnt {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
}

#swiper.fai-animazioni.colore-2-attivo .slide-cnt {
    -webkit-animation: flip-horizontal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
            animation: flip-horizontal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    /* -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg); */
}

#swiper.fai-animazioni.colore-1-attivo .slide-cnt {
    -webkit-animation: flip-horizontal-top 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
            animation: flip-horizontal-top 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    /* -webkit-transform: rotateX(0);
            transform: rotateX(0); */
}

.slide-cnt {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

@-webkit-keyframes flip-horizontal-bottom {
    0% {
        -webkit-transform: rotateX(0);
                transform: rotateX(0);
    }
    100% {
        -webkit-transform: rotateX(-180deg);
                transform: rotateX(-180deg);
    }
}
@keyframes flip-horizontal-bottom {
    0% {
        -webkit-transform: rotateX(0);
                transform: rotateX(0);
    }
    100% {
        -webkit-transform: rotateX(-180deg);
                transform: rotateX(-180deg);
    }
}

@-webkit-keyframes flip-horizontal-top {
    0% {
        -webkit-transform: rotateX(-180deg);
                transform: rotateX(-180deg);
    }
    100% {
        -webkit-transform: rotateX(0);
                transform: rotateX(0);
    }
}
@keyframes flip-horizontal-top {
    0% {
        -webkit-transform: rotateX(-180deg);
                transform: rotateX(-180deg);
    }
    100% {
        -webkit-transform: rotateX(0);
                transform: rotateX(0);
    }
}

.freccia{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--bg-color);
    border-radius: 50%;
    cursor: pointer;
    background-color: transparent;;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 14px;
    transition: all .3s ease-out;	
    overflow: hidden;
    position: relative;
}

.freccia::after {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 50%;
    background-color: white;
    opacity: .1;
    z-index: 101;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    mix-blend-mode: overlay;
}

.freccia:hover::after{
    -webkit-transform: scale(3);
    transform: scale(3);
    opacity: .3;
}

.freccia-sx{
    background-image: url(../img/freccia-sx.svg);
}
.freccia-dx{
    background-image: url(../img/freccia-dx.svg);
}

#switch-cnt{
    width: 240px;
    overflow: hidden;
    transition: all .3s ease-out;
}

.nascondi-switch #switch-cnt{
    width: 0;
}

.nascondi-switch .freccia{
    border: 2px solid white;
    background-color: var(--sfondo-timeline);
}
.nascondi-switch .freccia-sx{
    background-image: url(../img/freccia-bianca-sx.svg);
}
.nascondi-switch .freccia-dx{
    background-image: url(../img/freccia-bianca-dx.svg);
}

.switch {
    /* --_switch-bg-clr: var(--colore2);
    --_switch-bg-clr-on: var(--colore1); */
    --_switch-bg-clr: var(--bg-color);
    --_switch-bg-clr-on: var(--bg-color);
    --_switch-padding: 2px; /* padding around button*/
    --_slider-bg-clr: var(--colore1);
    --_slider-bg-clr-on: var(--colore2);
    --_slider-txt-clr: #ffffff;
    --_label-padding: 6px 30px 7px;
    --_switch-easing: cubic-bezier(
        0.47,
        1.64,
        0.41,
        0.8
    ); /* easing on toggle switch */
    color: white;
    width: fit-content;
    display: flex;
    justify-content: center;
    position: relative;
    border-radius: 9999px;
    cursor: pointer;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
    isolation: isolate;
}

.switch input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.switch > span {
    display: grid;
    place-content: center;
    transition: opacity 300ms ease-in-out 150ms;
    padding: var(--_label-padding);
}
.switch::before,
.switch::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    transition: inset 150ms ease-in-out;
}
/* switch slider */
.switch::before {
    background-color: var(--_slider-bg-clr);
    inset: var(--_switch-padding) 50% var(--_switch-padding)
        var(--_switch-padding);
    transition:
        inset 500ms var(--_switch-easing),
        background-color 500ms ease-in-out;
    z-index: -1;
    /* box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.3),
        0 1px rgba(255, 255, 255, 0.3); */
}
/* switch bg color */
.switch::after {
    background-color: var(--_switch-bg-clr);
    inset: 0;
    z-index: -2;
}
/* switch hover & focus */
/* .switch:focus-within::after {
    inset: -0.25rem;
} */
.switch:has(input:checked):hover > span:first-of-type,
.switch:has(input:not(:checked)):hover > span:last-of-type {
    opacity: 1;
    transition-delay: 0ms;
    transition-duration: 100ms;
}

/* checked - move slider to right */
.switch:has(input:checked)::before {
    background-color: var(--_slider-bg-clr-on);
    inset: var(--_switch-padding) var(--_switch-padding) var(--_switch-padding)
        50%;
}

.switch:has(input:checked)::after {
    background-color: var(--_switch-bg-clr-on);
}

/* checked - set opacity */
.switch > span:last-of-type,
.switch > input:checked + span:first-of-type {
    opacity: 0.75;
}
.switch > input:checked ~ span:last-of-type {
    opacity: 1;
}

.switch .span{
    pointer-events: none;
    -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Old versions of Firefox */
            -ms-user-select: none; /* Internet Explorer/Edge */
                user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */

}


#immagine-copertina {
    padding: 16px;
}

#immagine-copertina img {
    height: 100%;
}

.occhiello{
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: white
}

.titolo{
    font-weight: 700;
    font-size: 86px;
    line-height: 100%;
    letter-spacing: 0%;
    color: black;
    margin-top: 20px;
}	

.sottotitolo{
    margin-top: -38px;
    font-weight: 900;
    font-size: 160px;
    line-height: 100%;
    letter-spacing: 0%;
    color: white
}

.sommario{
    margin-top: 20px;
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    color: white
}	

.copertina-introduzione{
    width: 500px;
    font-family: "sole_headline", Georgia, Times, "Times New Roman", Serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    color: white
}

.copertina-colore{
    padding: 128px 64px;
}

.freccia-click{
    margin-top: 30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(0, 0, 0, 1);
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    transition: all .3s ease-in;
}

.freccia-click img{
    width: 46%;
}

.background {
    width: 100%;
    height: calc(100vh - 50px);
    position: relative;
    display: flex;
    justify-content: center;
}

.background.portrait {
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-1 .colore-1{
    background: url(../img/elementi/slide-1-colore-1.svg) center / cover no-repeat;
}

.slide-1 .colore-2{
    background: url(../img/elementi/slide-1-colore-2.svg) center / cover no-repeat;
}

.slide-2 .colore-1{
    background: url(../img/elementi/slide-2-colore-1.svg) center / cover no-repeat;
}

.slide-2 .colore-2{
    background: url(../img/elementi/slide-2-colore-2.svg) center / cover no-repeat;
}

.slide-3 .colore-1{
    background: url(../img/elementi/slide-3-colore-1.svg) center / cover no-repeat;
}

.slide-3 .colore-2{
    background: url(../img/elementi/slide-3-colore-2.svg) center / cover no-repeat;
}

.slide-4 .colore-1{
    background: url(../img/elementi/slide-4-colore-1.svg) center / cover no-repeat;
}

.slide-4 .colore-2{
    background: url(../img/elementi/slide-4-colore-2.svg) center / cover no-repeat;
}

.slide-5 .colore-1{
    background: url(../img/elementi/slide-5-colore-1.svg) center / cover no-repeat;
}

.slide-5 .colore-2{
    background: url(../img/elementi/slide-5-colore-2.svg) center / cover no-repeat;
}

.slide-timeline{
    background-color: var(--sfondo-timeline);
}
.slide-timeline .background{
    background: url(../img/elementi/timeline-1920.png) center / cover no-repeat;
    background-size: contain;
}

.slide-credits .background {
    background: url(../img/elementi/credits.svg) no-repeat center right, url(../img/elementi/credits-sx.svg) no-repeat center right 100%;
    background-color: #2B2B31;
}

.swiper-pagination-bullet-active {
    background: white;
}
.swiper-pagination-bullet {
    background: white;
}
.swiper-pagination-bullet-active-next {
    transition: scale(.75)!important;
}
.swiper-pagination-bullet-active-next-next {
    transition: scale(.45)!important;
}
.swiper-pagination-bullet {
    margin: 0 2px!important;
}

.contenuto-cnt {
    /* background-color: rgba(255, 255, 255, 0.3); */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 30vw;
}

.scheda-cnt{
    position: relative;
}

.grafico-titolo {
    font-weight: 600;
    font-size: 26px;
    line-height: 100%;
}
.grafico-svg {
    display: flex;
    justify-content: center;
    margin: 16px 0;
}
.grafico-svg img {
    height: 30vh;
    max-height: 300px;
}
.grafico-sommario {
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-top: 8px ;
}

.grafico-fonte{
    font-weight: 400;
    font-style: Regular;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 0%;
}

.scheda-titolo {
    font-family: "sole_display", Georgia, Times, "Times New Roman", serif;
    font-weight: 900;
    font-size: 86px;
    line-height: 86px;
}

.scheda-sommario {
    font-family: "sole_headline", Georgia, Times, "Times New Roman", Serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 31.2px;
    text-indent: 60px;
    margin-bottom: 16px;
} 

.scheda-sommario::before {
    content: "";
    height: 28px;
    width: 50px;
    background-image: url(../img/Logo24-rosso.svg);
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
}

.colore-2 .scheda-sommario::before {
    background-image: url(../img/Logo24-blu.svg);
}

.scheda-bottone {
    padding: 12px 56px 12px 16px;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 16px;
    text-transform: uppercase;
    border: 2px solid #FFFFFF;
    position: relative;
    overflow: hidden;
    position: relative;
    border-radius: 50px;
    width: fit-content;
    transition: all .3s ease-out;
    cursor: pointer;
}

.scheda-bottone:hover {
    background-color: white;
    color: var(--colore1);
}

.colore-2 .scheda-bottone:hover {
    color: var(--colore2);
}

.scheda-freccia {
    height: 44px;
    width: 44px;
    border: 2px solid #FFFFFF;
    position: absolute;
    top: -2px;
    right: -2px;
    display: flex;
    justify-content: center;
    align-self: center;
    border-radius: 50%;
    background-color: var(--colore1);
}   

.colore-2 .scheda-freccia{
    background-color: var(--colore2);
}

.scheda-visioni-titolo{
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0%;
    position: relative;
    padding-top: 28px;
}

.scheda-visioni-titolo::before{
    content: "";
    height: 40px;
    width: 28px;
    background-size: contain;
    background-image: url(../img/virgolette.svg);
    top: 0;
    left: 0;
    position: absolute;
    background-repeat: no-repeat;
}

.scheda-visioni-sommario{
    padding-top: 8px;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
}

.scheda-visioni-sommario + .scheda-visioni-titolo {
    margin-top: 24px;
}

a, a:link, a:visited, a:active, a:focus {
    text-decoration: none;
}

.credits-titolo{
    font-weight: 400;
    font-size: 56px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.credits-cnt{
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
    color: white;
    width: fit-content;
}

.credits-cnt span{
    font-weight: 700;
}

.credits-riga + .credits-riga {
    padding-top: 4px;
}

.nascondi-se-desktop{
    display: none;
}

@media screen and (max-width: 1660px) {
    .contenuto-cnt {
        width: 40vw;
    }

    .copertina-colore {
        padding: 5vh 64px;
    }

    .copertina-introduzione {
        width: 40vw;
    }

    .titolo{
        font-size: 80px;
    }

    .sottotitolo{
        font-size: 130px;
    }

    .sommario{
        font-size: 32px;
    }

    .slide-1 .colore-1{
        background-color: var(--colore1);
        background-image: url(../img/elementi/slide-1-colore-1-1440.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right;
    }

    .slide-1 .colore-2{
        background-color: var(--colore2);
        background-image: url(../img/elementi/slide-1-colore-2-1440.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right;
    }

    .slide-2 .colore-1{
        background-color: var(--colore1);
        background-image: url(../img/elementi/slide-2-colore-1-1440.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right;
    }

    .slide-2 .colore-2{
        background-color: var(--colore2);
        background-image: url(../img/elementi/slide-2-colore-2-1440.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right;
    }

    .slide-3 .colore-1{
        background-color: var(--colore1);
        background-image: url(../img/elementi/slide-3-colore-1-1440.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right;
    }

    .slide-3 .colore-2{
        background-color: var(--colore2);
        background-image: url(../img/elementi/slide-3-colore-2-1440.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right;
    }

    .slide-4 .colore-1{
        background-color: var(--colore1);
        background-image: url(../img/elementi/slide-4-colore-1-1440.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right;
    }

    .slide-4 .colore-2{
        background-color: var(--colore2);
        background-image: url(../img/elementi/slide-4-colore-2-1440.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right;
    }

    .slide-5 .colore-1{
        background-color: var(--colore1);
        background-image: url(../img/elementi/slide-5-colore-1-1440.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right;
    }

    .slide-5 .colore-2{
        background-color: var(--colore2);
        background-image: url(../img/elementi/slide-5-colore-2-1440.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right;
    }

}

@media screen and (max-width: 1275px) {
    div .copertina-colore:nth-child(1){
        padding-left: 32px;
        padding-right: 8px;	
    }
    div .copertina-colore:nth-child(2){
        padding-left: 8px;
        padding-right: 32px;	
    }

    .titolo{
        font-size: 68px;
    }

    .sottotitolo {
        font-size: 110px;
        margin-top: -30px;
    }
}
@media screen and (max-width: 780px) {
    body{
        overflow-y: auto;
    }
    .nascondi-se-desktop{
        display: initial;
    }
    .nascondi-se-mobile{
        display: none;
    }

    #swiper{
        overflow-x: hidden;
        overflow-y: auto;
    }

    .swiper-wrapper{
        display: block;
    }

    .swiper-slide{
        display: table;
        /* display: block; */
        position: relative;
        width: 200vw;
        color: white;
        transition: all .24s ease-in;
    }

    .slide-copertina,
    .slide-timeline,
    .slide-credits {
        width: 100vw;
    }

    .slide-cnt.absolute{
        display: table-row;
        /* display: block; */
        position: relative;
    }

    .background.colore-1,
    .background.colore-2 {
        display: table-cell;
        /* display: block; */
        width: 100vw;
        position: unset;
        overflow-x: hidden;
        overflow-y: hidden;
        vertical-align: top;
    }

    .swiper {
        height: auto;
    }

    .background {
        background-image: none!important;
        height: auto;
    }

    .colore-2-selezionato .swiper-slide:not(.slide-copertina):not(.slide-timeline):not(.slide-credits){
        transform: translateX(-100vw);
    }

    .contenuto-cnt {
        width: 100%;
        height: 100%;
    }

    .scheda-sfondo img{
        width: 100%;
        transform: translateY(1px);
    }

    .slide-cnt .colore-1, .slide-cnt .colore-2 {
        padding: 0;
        position: relative;
        -webkit-backface-visibility: unset;
        backface-visibility: unset;
    }

    .colore-2:not(.attiva-colore) {
        transform: none;
    }

    .grafico-cnt, .scheda-cnt, .scheda-colore-2-cnt, .slide-credits .flex {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 32px;
    }

    .grafico-cnt, .scheda-colore-2-cnt{
        padding-top: 56px;
    }
    .scheda-sommario {
        position: relative;
    }

    .scheda-visioni-sommario{
        font-size: 20px;
        line-height: 100%;
    }

    .scheda-titolo{
        font-size: 56px;
        line-height: 100%;
        margin-bottom: 10px;
    }

    .scheda-sommario{
        font-size: 26px;
        line-height: 31px;
    }

    .scheda-sfondo {
        padding-top: 32px;
        display: flex;
    }

    .timeline-titolo-1 {
        font-weight: 700;
        font-size: 32px;
        line-height: 100%;
        padding: 32px 20px 0 20px;
        overflow: hidden;
        white-space: nowrap;
    }
    .timeline-titolo-2 {
        font-weight: 800;
        font-size: 72px;
        line-height: 100%;
        padding: 0 20px;
        overflow: hidden;
        white-space: nowrap;
    }

    .slide-timeline{
        color: white;
        width: 100vw;
    }

    .slide-timeline img{
        width: 100%;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .slide-credits .background .flex {
        padding-bottom: 32px;
    }

    .slide-credits .background {
        background-color: white;
        background-image: none;
    }

    .credits-cnt{
        color: #2B2B31;
    }

    #slide-copertina{
        height: calc(100vh - 50px);

    }

    #titolazione,
    #bottoni-copertina {
        flex-direction: column;
    }
    #immagine-copertina {
        padding: 0;
    }
    #immagine-copertina img {
        height: auto;
        width: calc(100% - 40px);
    }

    div .copertina-colore{
        padding: 20px!important;
    }

    .copertina-introduzione {
        display: none;
    }

    .copertina-sopra {
        height: 100%;
        justify-content: flex-end;
    }

    div .copertina-colore:nth-child(1) .freccia-click {
        position: absolute;
        right: 20px;
        top: 55px;
        margin: 0;
        width: 80px;
        height: 80px;
    }

    div .copertina-colore:nth-child(2) .freccia-click {
        position: absolute;
        left:20px;
        bottom: 45px;
        margin: 0;
        top: unset;
        width: 80px;
        height: 80px;
    }

    .titolo {
        font-size: 32px;
        margin-top: 8px;
    }

    .sottotitolo {
        font-size: 72px;
        margin-top: -16px;
    }

    .sommario {
        font-size: 16px;
        margin-top: 4px;
    }

    .swiper-slide[data-selettore='1']{
        scroll-margin-top: 50px;
    }

    .credits-titolo{
        font-size: 20px;
        margin-bottom: 8px;
    }
    .credits-cnt {
        font-size: 18px;
        line-height: 22px;
    }

    .scheda-sommario::before {
        background-size: auto 26px;
        top: 2px;
    }
    .scheda-sommario {
        text-indent: 50px;
    }

    .swiper-wrapper .swiper-slide:not(.slide-copertina){
        border-bottom: solid 6px var(--bg-color);
    }

    .background + .background {
        border-top: solid 6px var(--bg-color);
    }

    /* .slide-credits .background {
        display: block;
    } */

    .bottone-ricomincia {
        text-align: center;
        padding: 8px;
        border-radius: 50px;
        text-transform: uppercase;
    }

    .bottone-ricomincia.colore-1 {
        background-color: var(--colore1);
    }
    .bottone-ricomincia.colore-2 {
        background-color: var(--colore2);
    }

    .colore-1-selezionato .bottone-ricomincia.colore-1{
        display: none;
    }
    .colore-2-selezionato .bottone-ricomincia.colore-2{
        display: none;
    }
}

@media screen and (max-width: 480px) {
    #menu-selezione.mostra {
        top: 60px;
    }
}