.sbs-flow-feedback {
    clear: both;
    width: 100%;
}

.sbs-category-form {
    position: relative;
}

.sbs-category-form .sbs_div {
    border: 1px solid transparent;
    border-radius: 8px;
    margin-bottom: 8px;
    padding: 8px;
    transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.sbs-category-form .sbs_div.enabled {
    background: #fff;
    border-color: #dfe7eb;
}

.sbs-category-form .sbs_div.is-active {
    border-color: #24b9d7;
    box-shadow: 0 0 0 3px rgba(36, 185, 215, .14);
}

.sbs-category-form .sbs_div.is-selected {
    background: #f3fbfd;
    border-color: #b9e7f0;
}

.sbs-category-form .sbs_div.disabled {
    background: #f6f8f9;
    border-color: #edf1f3;
    opacity: 1;
}

.sbs-category-form .sbs_div label {
    color: #374151;
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 6px;
}

.sbs-category-form .sbs_selectbox {
    background-color: #fff;
    border: 1px solid #cfd8dd;
    border-radius: 6px;
    color: #1f2933;
    min-height: 42px;
    padding: 8px 34px 8px 10px;
    transition: border-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.sbs-category-form .sbs_selectbox:focus {
    border-color: #24b9d7;
    box-shadow: 0 0 0 3px rgba(36, 185, 215, .18);
    outline: 0;
}

.sbs-category-form .sbs_selectbox:disabled {
    background-color: #eef2f4;
    border-color: #dbe3e7;
    color: #8a98a3;
    cursor: not-allowed;
}

.sbs-category-form .select2-container .select2-selection--single {
    border-color: #cfd8dd;
    border-radius: 6px;
    min-height: 42px;
}

.sbs-category-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #1f2933;
    line-height: 40px;
    padding-left: 10px;
}

.sbs-category-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.sbs-category-form .sbs_submit {
    margin-top: 10px;
}

.sbs-category-form .sbs_submit .btn {
    border-radius: 6px;
    font-weight: 700;
    min-height: 42px;
    padding-left: 16px;
    padding-right: 16px;
}

.sbs-category-form .sbs_submit .btn:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.sbs_loader {
    min-height: 0;
}

.sbs_loader div {
    animation: sbs-spin .7s linear infinite;
    background: transparent !important;
    border: 3px solid #d9eef3;
    border-top-color: #24b9d7;
    border-radius: 50%;
    height: 24px !important;
    width: 24px;
}

@keyframes sbs-spin {
    to {
        transform: rotate(360deg);
    }
}

.sbs-flow-status {
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.35;
    margin: 10px 0 0;
    padding: 9px 11px;
}

.sbs-flow-status.is-loading {
    background: #eef8fb;
    border-color: #c9eaf1;
    color: #147d92;
}

.sbs-flow-status.is-error {
    background: #fff1f0;
    border-color: #ffd5d1;
    color: #b42318;
}

.sbs-flow-status.is-empty {
    background: #fff8e6;
    border-color: #ffe8a3;
    color: #8a6116;
}

.sbs-flow-status.is-success {
    background: #e8f7ef;
    border-color: #c7ead8;
    color: #198754;
}

.sbs-selection-summary,
.sbs-results-filters {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.sbs-selection-chips {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    gap: 7px;
}

.sbs-selection-chip {
    background: #f3fbfd;
    border: 1px solid #b9e7f0;
    border-radius: 999px;
    color: #145d6b;
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    padding: 6px 10px;
}

.sbs-selection-chip strong {
    margin-right: 3px;
}

.sbs-reset-button {
    background: transparent;
    border: 1px solid #b9e7f0;
    border-radius: 999px;
    color: #177f94;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    text-decoration: none;
}

.sbs-reset-button:hover,
.sbs-reset-button:focus {
    background: #eef8fb;
    color: #0d5664;
}

@media (max-width: 767px) {
    .sbs-category-form .sbs_div {
        padding: 7px;
    }

    .sbs-selection-summary {
        align-items: flex-start;
        flex-direction: column;
    }
}
