.shapls_form_choices_wrap .shapls_choice_item {
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: center;
}

.shapls_form_choices_wrap .shapls_choice_item label {
    margin: 0px;
}

.shapls_form_choices_action_wrap {
    margin-top: 20px;
}

.shapls_form_choices_action_wrap input[type=submit] {
    padding: 10px 20px;
    border: 0px;
    border-radius: 2px;
    background: #3f9def;
    color: #fff;
}

.shapls_analytic_container {
    max-width: 280px;
}

.shapls_analytic_inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shapls_analytic_inner .shapls_choice_item {
    position: relative;
}

.shapls_analytic_inner .shapls_choice_item .shapls_choice_title {
    padding: 4px 0px;
}

.shapls_analytic_inner .shapls_choice_item .shapls_choice_fill {
    position: relative;
    background: var(--bar_bg_color);
    border-radius: 2px;
    overflow: hidden;
    width: 100%;
    height: 14px;
}

.shapls_analytic_inner .shapls_choice_item .shapls_choice_fill span.shapls_choice_fill_inner {
    width: 0%;
    height: 100%;
    background: var(--bar_fill_color);
    display: block;
}

.shapls_choice_item .shapls_choice_title {
    color: var(--bar_text_color);
}

.shapls_choice_item.selected .shapls_choice_title {
    font-weight: 700;
}

form.shapls_form_choices_form {
    padding: 20px 20px;
    background: #fbfbfb;
    border-radius: 10px;
    border: 1px solid #ccc;
}

form.shapls_form_choices_form.processing {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

form.shapls_form_choices_form.processing:after {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--spinner);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
}