@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&display=swap');

.container{
    margin: 0 50px;
}
.container.domande{
  margin-top: 185px;
  margin-bottom: 60px;
  min-height: 350px;
}
h1{
    color: #753BBD;
    font-family: "Lato", Sans-serif;
    font-weight: 600;
    margin-top: 40px;
}       
h3{
    color: #753BBD;
    font-family: "Lato", Sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}
p{
    margin-bottom: 10px;
}
ol li {
    /* list-style-type: upper-alpha; */
    list-style-type: none;
    cursor: pointer;
    position: relative;
}
ol li:before{
    content: " ";
    position: absolute;
    left: -15px;
    top: 10px;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background-color: #753BBD;
}        
ol li:after{
    content: " ";
    position: absolute;
    left: -13px;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: white;
}
ol li.selected p{
    background-color: #47D7AC;
    color: #753BBD;
    border-radius: 5px;
}        
ol li.selected:after{
    background-color: #47D7AC;
}
ol li p {
    /* display: inline-block; */
    margin: 0;
    padding: 3px 10px;
}
.domanda{
    margin-bottom: 20px;
    display: none;
}
.domanda:nth-child(2){
    display: block;
}
.nascosto{
    display: none;
}
.mostraRisultato{
    display: flex;
    align-items: center;
    width: 200px;
    color: white;
    background-color: #753BBD;
    border-radius: 50px;
    padding: 3px 10px;
    text-transform: uppercase;
    opacity: 1;
    height: 40px;
    /* transform: translate(0%, -100%); */
    transition: all 0.5s;
    cursor: pointer;
    margin-top: 40px;
}
.mostraRisultato span{
    display: flex;
    align-items:center;
    justify-content: center;
    padding: 0;
    background-color: #47D7AC;
    border-radius: 20px;
    font-weight: 100;
    width: 20px;
    height: 20px;
    position: relative;
    left: 9px;
}
.risposte{
    /* display: none; */
    position: relative;
    top:0;
    left:0;
    transition: all 0.5s;
}
.risposta{
    display: none;
    position: relative;
}
.risposta img{
    width: 100%;
    margin: auto;
    height: auto;
}
.risposta ul {
    list-style: none; /* Remove default bullets */
    padding-left: 2rem;
}

.risposta ul li::before {
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #753BBD; /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1.5em; /* Also needed for space (tweak if needed) */
    position: absolute;
}
.risposta span.chiudi{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #753BBD;
    padding: 5px;
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 100%;
    /* left: 100%; */
    right: -10px;
    top: -10px;
    line-height: 0;
    cursor: pointer;
    border: 3px solid #47D7AC;
}
.risposta span.chiudi i{ 
    margin-top: 1px;
}
.risposta.risultato{
    display: flex;
    position: absolute;
    position: fixed;
    flex-direction: column;
    top: -100vh;
    left: 50%;
    background-color: white;
    border-radius: 7px;
    transform: translate(-50%, -250%);
    width: calc(100% - 30px);
    max-width: 600px;
    z-index: 200000;
    padding: 20px;
    transition: all 0.5s;
}
.risposte .sfondoModal{
    display: none;
    position: fixed;
    top:0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10500;
    background-color: rgba(117, 59, 189, 68%);
    /* transition: all 0.5s; */
}
.risposte .risposta p{
    margin-bottom: 10px;
}
.risposte .risposta p a{
    color:rgba(117, 59, 189, 1);
}
/* condivisione social */
.socialShare-link {
    padding: 2px 8px 4px 8px !important;
    color: white!important;
    font-size: 14px;
    border-radius: 2px;
    margin-right: 2px;
    cursor: pointer;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    box-shadow: inset 0 -3px 0 rgba(0,0,0,.2);
    -moz-box-shadow: inset 0 -3px 0 rgba(0,0,0,.2);
    -webkit-box-shadow: inset 0 -3px 0 rgba(0,0,0,.2);
    margin-top: 2px;
    display: inline-block;
    text-decoration: none;
}

.socialShare-link:hover,.socialShare-link:active {
    color: white;
}

.socialShare-twitter {
    background: #00aced;
}

.socialShare-twitter:hover,.socialShare-twitter:active {
    background: #0084b4;
}

.socialShare-facebook {
    background: #3B5997;
}

.socialShare-facebook:hover,.socialShare-facebook:active {
    background: #2d4372;
}

.socialShare-social {
    /* margin: 20px 0px 25px 0px; */
    -webkit-font-smoothing: antialiased;
    font-size: 12px;
    text-align: right;
}
.socialShare-social i{
    line-height: inherit;
}
@media (max-width: 767px) {
    h1.page-title{
        margin-top: 150px;
    }
}
@media (min-width: 992px){
    h1, .centerP{
        text-align: center;
    }
    .container.domande {
        width: 70.815%;
        margin: auto;
        margin-top: 205px;
    }
}
@media (min-width: 1920px){
    .container.domande{
        margin-bottom: 0px;
        min-height: 600px;
    }
}