.svelte-question-container {
    margin-top: 25px;
}

/*-------------------- Values --------------------*/
.question-values {
    display: block;
}

.question-value {
    display: block;
    width: 100%;
    min-height: 36px;
    position: relative;
    background-color: #f7f7f7;
    margin-bottom: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
    text-align: left;    
    font-weight: normal;  
}

.question-value:hover {
    background-color: #cae4f1;
}

.question-value.active {
    background-color: #b2e7f5;
}

.question-value .radio {
    position: absolute;
    top: 50%;
    left: 11px;
    margin-top: -9px;    
}

.question-value .title {
    display: inline-block;
    margin: 7px 11px 8px 38px;
    color: #333333;
}