.asd-quiz-funnel {
    margin: 0 0 3rem 0;
    padding: 1rem;
    border-radius: .25rem;
    border: 1px solid #ddd;
    background-color: #fff;
}

.qf-counter {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.qf-quiz .qf-choices {
    margin: 0;
    padding: 0;
    text-align: center;
}

.qf-quiz .qf-choices > li {
    list-style: none;
    margin-bottom: .5rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
}

.qf-choice {
    color: #fff;
    opacity: 0.8;
    padding: 20px;
    cursor: pointer;
    background: #013e7d;
    border-radius: .25rem;
    transition: all 150ms ease-out;
    -webkit-transition: all 150ms ease-out;
}

.qf-choice-selected {
    opacity: 1;
}

.qf-question {
    padding: 1rem;
    text-align: center;
}

/* Quiz Funnel Result */

.qf-result {
    position: relative; 
}
.qf-result .qf-loadmore {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}
@media only screen and (min-width: 40em) { /* min-width 640px */
    .qf-quiz .qf-choices-2 {
        display: flex;
        justify-content: space-between;
    }
    .qf-quiz .qf-choices-2 .qf-choice {
        text-align: center;
    }
    .qf-choices.qf-choices-2 .qf-choice {
        width: 48%;
    }
}
@media only screen and (max-width: 40em) { 
    .qf-choice:first-of-type {
        margin-bottom: 15px;
    }
}
.qf-loader {
    background: rgba(255,255,255,0.65);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
} 
.qf-loader>div,
.qf-loader>div:before,
.qf-loader>div:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: qfload 1.8s infinite ease-in-out;
    animation: qfload 1.8s infinite ease-in-out;
}
.qf-loader>div {
    color: #013e7d;
    font-size: 10px;
    margin: 0 auto;
    position: relative;
    text-indent: -9999em;
    top: calc( 50% - 40px );
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
.qf-loader>div:before,
.qf-loader>div:after {
    content: '';
    position: absolute;
    top: 0;
}
.qf-loader>div:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.qf-loader>div:after {
    left: 3.5em;
}
@-webkit-keyframes qfload {
    0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em; }
    40% { box-shadow: 0 2.5em 0 0; }
}
@keyframes qfload {
    0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em; }
    40% { box-shadow: 0 2.5em 0 0; }
}