html {
    min-height: 100%;
    background-color: #7F83FF;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1,
h1 *,
h2,
h2 *,
h3,
h3 *,
h4,
h4 *,
h5,
h5 *,
h6,
h6 *,
.h1,
.h1 *,
.h2,
.h2 *,
.h3,
.h3 *,
.h4,
.h4 *,
.h5,
.h5 *,
.h6,
.h6 * {
    font-weight: bold;
}

body {
    min-height: 100%;
    background-color: transparent;
}

#main {
    position: relative;
    padding: 30px 30px 0px 30px;
}

@media screen and (max-width: 768px) {
    #main {
        padding: 15px 15px 0px 15px;
    }
}

#main .logo-with-payoff {
    width: 250px;
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    #main .logo-with-payoff {
        display: none;
    }
}

#main > .main-card {
    overflow: hidden;
    min-height: calc(100vh - 30px);
    padding: 30px 30px 10px 30px;
}

.card {
    border: 0;
    border-radius: 25px 25px 0 0;
}

.color-primary {
    color: #7F83FF;
}

.btn {
    border-radius: 1000px;
    min-width: 150px;
    padding: 0.5em 2em;
}

    .btn.btn-primary {
        background-color: #7F83FF;
        border-color: #7F83FF;
    }

        .btn.btn-primary:focus, .btn.btn-primary:active, .btn.btn-primary:hover {
            background-color: #7F83FF !important;
            border-color: #7F83FF !important;
        }

    .btn.btn-grey {
        background-color: #535659;
        border-color: #535659;
        color: #fff;
    }

        .btn.btn-grey:focus, .btn.btn-grey:active, .btn.btn-grey:hover {
            background-color: #333 !important;
            border-color: #333 !important;
        }

    .btn.btn-blue {
        background-color: #003a79;
        border-color: #003a79;
        color: #fff;
    }

        .btn.btn-blue:focus, .btn.btn-blue:active, .btn.btn-blue:hover {
            background-color: #002c5b !important;
            border-color: #002c5b !important;
        }

    .btn.btn-play-new {
        background-color: #535659;
        border-color: #535659;
        color: #fff;
    }

        .btn.btn-play-new:focus, .btn.btn-play-new:active, .btn.btn-play-new:hover {
            background-color: #2b2d2f !important;
            border-color: #2b2d2f !important;
        }

.btn-share {
    position: absolute;
    left: 0;
    bottom: 20vh;
    border-radius: 0 100px 100px 0;
    min-width: 0;
    line-height: 1;
    padding: 7px 20px 1px 32px !important;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -ms-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
    width: 67px;
    height: 38px;
    z-index: 999;
}

.btn-share .btn {
        background-color: #7F83FF;
        border-color: #7F83FF;
        min-width: 30px;
        width: 30px;
        height: 38px;
        border-radius: 0 100px 100px 0;
        padding: 4px 4px 7px 0px;
        position: absolute;
        left: 0;
        top: 0;
}

.btn-share:hover {
     width: fit-content;
     background-color: #003A79;
}

    .btn-share .share {
        color: #fff;
        display: none;
        text-align: center;
        padding: 3px 0px 0px 10px;
    }

.btn-share:hover .share {
        cursor: pointer;
        display: block;
}

.btn-share .share svg {
        width: 17px;
        margin-left: 5px;
}

@media screen and (max-width: 768px) {
    .btn.btn-share {
        width: 40px;
        height: 40px;
        left: -10px;
        bottom: 45%;
        z-index: 1;
    }
}

.intro .avatar {
    width: 100px;
}

footer {
    text-align: right;
}

    footer .crif {
        width: 70px;
    }

.balloon {
    border-radius: 0 20px 20px 20px;
    background-color: #424447;
    padding: 20px 20px 15px 20px;
    color: #fff;
    position: absolute;
    width: 300px;
    text-align: center;
}

    .balloon .icon {
        position: absolute;
        margin: auto;
        left: 0;
        right: 0;
        top: -25px;
        width: 40px;
        height: 40px;
        background: #ff0000;
        padding: 10px;
        border-radius: 100px;
    }

        .balloon .icon svg {
            width: 100%;
            height: 100%;
        }

.small-container {
    max-width: 760px;
    margin: auto;
    padding: 30px 0;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .small-container {
        padding-top: 0;
        margin-top: 0;
        padding-bottom: 0;
    }
}

input,
select {
    color: #555;
    border: 0;
    border-bottom: 1px solid #aaa;
    padding: 5px;
    outline: 0 !important;
    width: 300px;
    max-width: 100%;
}

.user-avatar {
    width: 50px;
    height: 50px;
    display: inline-block;
    padding: 10px;
    border-radius: 100px;
    border: 1px solid #000;
}

    .user-avatar.user-avatar-small {
        width: 35px;
        height: 35px;
        padding: 7px;
    }

    .user-avatar svg * {
        fill: #000;
    }

    .user-avatar.active, .user-avatar:hover {
        border-radius: 100px;
        background-color: #7F83FF;
        border: 1px solid #7F83FF;
    }

        .user-avatar.active svg *, .user-avatar:hover svg * {
            fill: #fff;
        }

.questions-container {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .questions-container {
        flex-direction: column;
    }
}

.questions-container .question {
    position: relative;
    padding: 20px;
    transform-origin: center;
}

    .questions-container .question .btn {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

        .questions-container .question .btn.next-question {
            display: none;
        }

    .questions-container .question .img {
        max-width: 230px;
        width: 100%;
        height: 300px;
        margin: auto;
        position: relative;
    }

    .questions-container .question img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 20px;
        border: 1px solid #000;
    }

    .questions-container .question.question-large .img {
        max-width: 430px;
        width: 100%;
        height: 500px;
    }

    .questions-container .question .custom-control {
        margin: 15px 0;
    }

.questions-container .status {
    display: block;
    color: #fff;
    padding: 20px;
    border-radius: 0 20px 0 0;
    position: absolute;
    top: 40%;
    white-space: nowrap;
    left: 100%;
    min-width: 170px;
}

@media screen and (max-width: 768px) {
    .questions-container .status {
        top: auto;
        bottom: 0;
        left: 0;
        border-radius: 0 20px 0 20px;
    }
}

.questions-container .question-success .status {
    background-color: #49a600;
}

.questions-container .question-error .status {
    background-color: #ff0000;
}

.progress-semicircular {
    position: absolute;
    top: 25%;
    left: -200px;
}

@media screen and (max-width: 1200px) {
    .progress-semicircular {
        display: none;
    }
}

.progress-semicircular div {
    display: flex;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    font-size: 0;
    transition: all 3s;
}

    .progress-semicircular div::after {
        content: "";
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        margin: 10px;
        border-radius: 50%;
        background: white;
        font-size: 1rem;
        text-align: center;
        transition: all 3s;
    }

.progress-circular {
    position: absolute;
    top: 15px;
    right: 15px;
    display: none;
}

@media screen and (max-width: 1200px) {
    .progress-circular {
        display: block;
    }
}

.progress-circular div {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 0;
    transition: all 3s;
}

    .progress-circular div::after {
        content: "";
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        margin: 5px;
        border-radius: 50%;
        background: white;
        font-size: 1rem;
        text-align: center;
        transition: all 3s;
    }

.indicator {
    background-color: #000;
    color: #fff;
    position: absolute;
    top: 0;
    width: 65px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .indicator.indicator-left {
        left: 0;
        border-radius: 0 0 20px 0;
    }

    .indicator.indicator-right {
        right: 0;
        border-radius: 0 0 0 20px;
    }

.custom-checkbox {
    padding-left: 13px;
}

/*START override for bootsrtap 5.3.3 */
.form-check-input {
    box-shadow: none !important;
}

    .form-check-input:checked {
        background-color: #7F83FF;
        border-color: #7F83FF;
    }
/*END override for bootsrtap 5.3.3 */
    .custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
        box-shadow: none !important;
    }

    .custom-checkbox .custom-control-input:active ~ .custom-control-label::before {
        background-color: #FFFFFF;
    }

    .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
        content: '';
        background-image: none;
    }

    .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
        border: #7F83FF 6px solid;
        background-color: #FFFFFF;
    }

    .custom-checkbox .custom-control-label::before {
        border-radius: 100px;
        width: 20px;
        height: 20px;
        background-color: #FFFFFF;
        border: #b8b8b8 1px solid;
    }

    .custom-checkbox label {
        cursor: pointer !important;
    }

.question-list-check {
    max-width: 500px;
}

.rotate {
    animation: spin 4s linear infinite;
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.result-container .small-container {
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    .result-container .small-container {
        margin-top: 60px;
    }
}

.result-container > .card {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 100px !important;
    overflow: visible !important;
}

.result-container .ninja-result {
    width: 100%;
    max-width: 600px;
    padding: 0 40px;
}

.result-container .result-avatar {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    top: -80px;
    margin: auto;
    z-index: 99999;
}

@media screen and (max-width: 768px) {
    .result-container .result-avatar {
        top: -60px;
        margin-bottom: 80px;
        flex-direction: column;
    }

        .result-container .result-avatar * {
            margin: auto;
        }
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after, .custom-checkbox .custom-control-input:active ~ .custom-control-label::after {
    background: #ff8001 !important;
    border-radius: 100px;
    border: 4px solid #fff;
    margin: 1px;
    width: 18px;
    height: 18px;
}

.result-container .result-avatar img {
    width: 300px;
}

.btn-download svg {
    width: 18px;
    margin-top: -7px;
    position: relative;
    top: 5px;
    margin-left: 5px;
}

.classifica {
    margin-bottom: 10px;
}

    .classifica > .row {
        font-weight: bold;
        max-width: 600px;
        margin: auto;
        display: flex;
        align-items: center;
    }

    .classifica .user-avatar {
        background-color: #fff;
        border: 0;
        width: 30px;
        height: 30px;
        padding: 6px;
    }

    .classifica.classifica-color-1 {
        background-color: rgba(0, 0, 0, 0.2);
    }

    .classifica.classifica-color-2 {
        background-color: rgba(0, 56, 199, 0.2);
    }

    .classifica.classifica-color-3 {
        background-color: rgba(0, 167, 67, 0.2);
    }

    .classifica.classifica-color-4 {
        background-color: rgba(255, 107, 0, 0.2);
    }

    .classifica.classifica-color-5 {
        background-color: rgba(255, 230, 0, 0.2);
    }

.sign-in-form {
    max-width: 400px;
    margin: auto;
}

.response {
    display: none;
}

.btn-floating {
    position: fixed;
    right: 40px;
    top: 40px;
}

.coin-image {
    position: fixed;
    bottom: 0;
    height: 90vh;
    right: -28vw;
    flex-shrink: 0;
    z-index: -999;
}

.logo-for-mobile {
    display: none;
}

@media screen and (max-width: 768px) {

    .crif-logo {
        padding-top: 20px;
    }

    .logo-for-mobile {
        display: block;
    }

    .coin-image {
        display: none;
    }

    .btn-floating {
        position: relative;
        right: 0px;
        top: 0px;
        margin-top: 5px;
        width: 75%;
    }

    .user-info-content {
        flex-direction: column;
    }

    .user-avatar {
        order: 2;
        margin-top: 1rem;
    }

    .second-word {
        order: 3;
        margin-left: 0;
    }

    .first-word {
        margin-right: 0;
    }
}

/*# sourceMappingURL=style.css.map */
