﻿.support-select-header {
    background: #fff;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 20px;
}

    .support-select-header .badge-traffic-warning {
        background: #fff6e0;
        color: #d68a00;
        border: 1px solid #ffe4a3;
        border-radius: 20px;
        padding: 4px 14px;
        font-size: 12px;
        display: inline-block;
    }

    .support-select-header .support-select-brand {
        color: #e2233e;
        font-weight: bold;
        font-size: 13px;
    }

.support-select-title {
    font-weight: bold;
    margin: 12px 0 8px 0;
}

.support-select-desc {
    font-size: 13px;
    margin-bottom: 0;
}

.support-type-label {
    font-size: 13px;
    color: #555;
}

.support-type-options {
    margin: 0 -8px;
}

    .support-type-options > div {
        padding: 0 8px;
        margin-bottom: 10px;
    }

.support-option-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    margin: 0;
    width: 100%;
    transition: all .15s ease-in-out;
}

    .support-option-card input[type="radio"] {
        display: none;
    }

    .support-option-card.active {
        border: 2px solid #e2233e;
        background: #fff5f6;
    }

.support-option-icon {
    font-size: 22px;
    color: #e2233e;
    margin-left: 12px;
}

.support-option-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.support-option-title {
    font-weight: bold;
    font-size: 14px;
}

.support-option-sub {
    font-size: 12px;
    color: #888;
}

.support-option-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.support-option-card.active .support-option-radio {
    border-color: #e2233e;
}

    .support-option-card.active .support-option-radio::after {
        content: "";
        position: absolute;
        top: 3px;
        left: 3px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #e2233e;
    }
