/* ==================== SIM SINGLE PRODUCT PAGE ==================== */
/* Phong cách hub.mobifoneplus.vn */

/* ---- Reset ---- */
.sim-single-wrapper *,
.sim-single-wrapper *::before,
.sim-single-wrapper *::after {
    box-sizing: border-box;
}

/* ---- Wrapper ---- */
.sim-single-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px 40px;
    font-family: 'Segoe UI', 'Open Sans', -apple-system, sans-serif;
    color: #333;
    line-height: 1.5;
}

/* ---- Breadcrumb ---- */
.sim-single-breadcrumb {
    padding: 12px 0;
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.sim-single-breadcrumb a {
    color: #005baa;
    text-decoration: none;
    transition: color 0.2s;
}

.sim-single-breadcrumb a:hover {
    color: #003d7a;
    text-decoration: underline;
}

.sim-bc-sep {
    margin: 0 8px;
    color: #ccc;
}

.sim-bc-current {
    color: #555;
    font-weight: 600;
}

/* ---- Layout 2 cột ---- */
.sim-single-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.sim-single-main {
    flex: 1;
    min-width: 0;
}

.sim-single-sidebar {
    flex: 0 0 300px;
    min-width: 300px;
    position: sticky;
    top: 80px;
}

/* ============================================================
   HERO CARD - SIM INFO
   ============================================================ */
.sim-hero-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 91, 170, 0.15);
}

.sim-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #003d7a 0%, #005baa 30%, #0078d4 70%, #00a4ef 100%);
}

.sim-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
}

.sim-hero-pattern::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 200px;
    height: 200%;
    background: rgba(255,255,255,0.04);
    transform: rotate(15deg);
}

.sim-hero-pattern::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 10%;
    width: 150px;
    height: 200%;
    background: rgba(255,255,255,0.03);
    transform: rotate(-10deg);
}

.sim-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 30px;
    color: #fff;
}

.sim-hero-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
}

.sim-hero-info {
    flex: 1;
}

.sim-hero-phone {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sim-hero-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sim-hero-price-badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
}

.sim-hero-type-badge {
    background: rgba(255,255,255,0.12);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
}

.sim-hero-cat-badge {
    background: linear-gradient(135deg, rgba(255,102,0,0.8), rgba(255,136,51,0.8));
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ============================================================
   SIM INFO GRID
   ============================================================ */
.sim-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.sim-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eef1f5;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.sim-info-item svg {
    flex-shrink: 0;
}

.sim-info-label {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.sim-info-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.sim-info-price {
    color: #e53e3e;
    font-weight: 800;
    font-size: 15px;
}

/* ============================================================
   SECTIONS & STEPS
   ============================================================ */
.sim-single-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid #eef1f5;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.sim-single-step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.sim-single-step-num {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #005baa, #0078d4);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,91,170,0.25);
}

.sim-single-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

/* ============================================================
   CARRIER TABS
   ============================================================ */
.sim-sp-carrier-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.sim-sp-carrier-tab {
    padding: 8px 22px;
    border: 2px solid #e4e8ed;
    border-radius: 24px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
}

.sim-sp-carrier-tab:hover {
    border-color: #005baa;
    color: #005baa;
}

.sim-sp-carrier-tab.active {
    background: #005baa;
    border-color: #005baa;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,91,170,0.2);
}

/* ============================================================
   PLANS LIST
   ============================================================ */
.sim-sp-plans-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px;
    color: #005baa;
    font-size: 14px;
}

.sim-sp-plans-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 4px;
}

.sim-sp-plans-list::-webkit-scrollbar {
    width: 4px;
}

.sim-sp-plans-list::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.sim-sp-plans-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* ---- Plan Card ---- */
.sim-sp-plan-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border: 2px solid #eef1f5;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.sim-sp-plan-card:hover {
    border-color: #b3d4f5;
    background: #f8fbff;
}

.sim-sp-plan-card.selected {
    border-color: #005baa;
    background: #eef5ff;
    box-shadow: 0 0 0 1px #005baa;
}

.sim-sp-plan-card input[type="radio"] {
    display: none;
}

.sim-sp-plan-radio {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-top: 2px;
    position: relative;
    transition: all 0.2s;
}

.sim-sp-plan-card.selected .sim-sp-plan-radio {
    border-color: #005baa;
}

.sim-sp-plan-card.selected .sim-sp-plan-radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    background: #005baa;
    border-radius: 50%;
}

.sim-sp-plan-content {
    flex: 1;
    min-width: 0;
}

.sim-sp-plan-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.sim-sp-plan-name {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.sim-sp-plan-hot-badge {
    background: linear-gradient(135deg, #ff4444, #ff6600);
    color: #fff;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sim-sp-plan-price-tag {
    font-size: 17px;
    font-weight: 800;
    color: #e53e3e;
    white-space: nowrap;
}

.sim-sp-plan-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.sim-sp-plan-feature {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #555;
    background: #f5f7fa;
    padding: 4px 10px;
    border-radius: 6px;
}

.sim-sp-plan-feature svg {
    width: 14px;
    height: 14px;
    color: #005baa;
    flex-shrink: 0;
}

.sim-sp-plan-benefits-toggle {
    font-size: 12px;
    color: #005baa;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.sim-sp-plan-benefits-toggle:hover {
    text-decoration: underline;
}

.sim-sp-plan-benefits {
    display: none;
    margin-top: 10px;
    padding: 12px 14px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 12px;
    color: #555;
}

.sim-sp-plan-benefits.show {
    display: block;
}

.sim-sp-plan-benefits ul {
    margin: 0;
    padding: 0 0 0 16px;
    list-style: none;
}

.sim-sp-plan-benefits ul li {
    position: relative;
    padding: 3px 0;
    padding-left: 14px;
}

.sim-sp-plan-benefits ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #005baa;
    border-radius: 50%;
}

/* ---- Plan Skip ---- */
.sim-sp-plan-skip {
    margin-top: 12px;
}

.sim-sp-plan-card-skip {
    border-style: dashed;
    border-color: #d0d5dd;
}

.sim-sp-plan-card-skip:hover {
    border-color: #999;
}

.sim-sp-plan-skip-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sim-sp-plan-skip-text strong {
    font-size: 14px;
    color: #555;
}

.sim-sp-plan-skip-text span {
    font-size: 12px;
    color: #999;
}

/* ============================================================
   ORDER SUMMARY
   ============================================================ */
.sim-sp-order-summary {
    background: #f5f8fc;
    border-radius: 10px;
    padding: 18px 20px;
    border: 1px solid #e4e8ed;
    margin-bottom: 20px;
}

.sim-sp-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.sim-sp-summary-label {
    font-size: 14px;
    color: #666;
}

.sim-sp-summary-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.sim-sp-summary-phone {
    color: #005baa;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.sim-sp-summary-highlight {
    color: #e53e3e;
    font-weight: 700;
}

.sim-sp-summary-divider {
    height: 1px;
    background: #dde2e8;
    margin: 8px 0;
}

.sim-sp-summary-total .sim-sp-summary-label {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.sim-sp-summary-total .sim-sp-summary-value {
    font-size: 22px;
    font-weight: 900;
    color: #e53e3e;
}

/* ---- Action Buttons ---- */
.sim-sp-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.sim-sp-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.sim-sp-btn-buy {
    background: linear-gradient(135deg, #ff6600, #ff8833);
    color: #fff;
    flex: 1.5;
    box-shadow: 0 4px 14px rgba(255,102,0,0.25);
}

.sim-sp-btn-buy:hover {
    background: linear-gradient(135deg, #e55b00, #ff6600);
    box-shadow: 0 6px 20px rgba(255,102,0,0.35);
    transform: translateY(-2px);
}

.sim-sp-btn-cart {
    background: #fff;
    color: #005baa;
    border: 2px solid #005baa;
}

.sim-sp-btn-cart:hover {
    background: #f0f7ff;
    transform: translateY(-1px);
}

.sim-sp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ---- Note ---- */
.sim-sp-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
    background: #fff8e1;
    border-radius: 8px;
    font-size: 13px;
    color: #666;
    border: 1px solid #ffe0b2;
}

.sim-sp-note svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================================
   SIDEBAR BOXES
   ============================================================ */
.sim-sidebar-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid #eef1f5;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.sim-sidebar-box-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #005baa, #0068c9);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sim-sidebar-box-body {
    padding: 16px;
}

/* Support items */
.sim-support-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f2f5;
}

.sim-support-item:last-of-type {
    border-bottom: none;
}

.sim-support-label {
    font-size: 13px;
    color: #666;
}

.sim-support-value {
    font-size: 13px;
    font-weight: 600;
    color: #005baa;
    text-decoration: none;
}

.sim-support-value:hover {
    text-decoration: underline;
}

.sim-support-phone {
    font-size: 16px;
    font-weight: 800;
    color: #e53e3e;
}

.sim-support-hours {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 12px;
    background: #e8f5e9;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #2e7d32;
}

/* Commitment list */
.sim-commitment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sim-commitment-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    font-size: 13px;
    color: #444;
    border-bottom: 1px solid #f5f5f5;
}

.sim-commitment-list li:last-child {
    border-bottom: none;
}

.sim-commitment-list li svg {
    flex-shrink: 0;
}

/* Guide list */
.sim-guide-list {
    margin: 0;
    padding: 0 0 0 24px;
    counter-reset: guide-step;
    list-style: none;
}

.sim-guide-list li {
    position: relative;
    padding: 8px 0 8px 8px;
    font-size: 13px;
    color: #444;
    counter-increment: guide-step;
    border-bottom: 1px solid #f5f5f5;
}

.sim-guide-list li:last-child {
    border-bottom: none;
}

.sim-guide-list li::before {
    content: counter(guide-step);
    position: absolute;
    left: -24px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: #005baa;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   SPINNER (reuse)
   ============================================================ */
.sim-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid #e4e8ed;
    border-top-color: #005baa;
    border-radius: 50%;
    animation: sim-sp-spin 0.7s linear infinite;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .sim-single-layout {
        flex-direction: column;
    }

    .sim-single-sidebar {
        flex: none;
        min-width: 100%;
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .sim-single-sidebar .sim-sidebar-box:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .sim-single-wrapper {
        padding: 0 10px 30px;
    }

    .sim-single-breadcrumb {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .sim-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px;
    }

    .sim-hero-phone {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .sim-hero-icon {
        width: 56px;
        height: 56px;
    }

    .sim-hero-icon svg {
        width: 36px;
        height: 36px;
    }

    .sim-info-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .sim-single-section {
        padding: 18px 16px;
    }

    .sim-single-step-title {
        font-size: 16px;
    }

    .sim-sp-plan-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .sim-sp-actions {
        flex-direction: column;
    }

    .sim-sp-summary-total .sim-sp-summary-value {
        font-size: 18px;
    }

    .sim-single-sidebar {
        grid-template-columns: 1fr;
    }

    .sim-single-sidebar .sim-sidebar-box:last-child {
        grid-column: auto;
    }
}

/* ---- Flatsome Override ---- */
.sim-single-wrapper input,
.sim-single-wrapper button {
    box-shadow: none !important;
    -webkit-appearance: none;
}

.sim-single-wrapper ul,
.sim-single-wrapper ol {
    margin: 0;
    padding: 0;
}

.sim-single-wrapper a {
    text-decoration: none;
}

/* ============================================================
   CARRIER BRAND COLORS - SINGLE PRODUCT
   MobiFone:  #0061af (blue)
   Viettel:   #ee0033 (red)
   VinaPhone: #00558a (teal/dark cyan)
   ============================================================ */

/* ---- Hero Card theo nhà mạng ---- */
.sim-hero-card.carrier-mobifone .sim-hero-bg {
    background: linear-gradient(135deg, #003d7a 0%, #0061af 30%, #0078d4 70%, #4da6ea 100%);
}
.sim-hero-card.carrier-viettel .sim-hero-bg {
    background: linear-gradient(135deg, #8b0020 0%, #cc0029 30%, #ee0033 70%, #ff4d6a 100%);
}
.sim-hero-card.carrier-vinaphone .sim-hero-bg {
    background: linear-gradient(135deg, #002e4d 0%, #003d66 30%, #00558a 70%, #0077b6 100%);
}

/* ---- Info item accent ---- */
.sim-single-wrapper.carrier-mobifone .sim-info-item svg {
    stroke: #0061af;
}
.sim-single-wrapper.carrier-viettel .sim-info-item svg {
    stroke: #ee0033;
}
.sim-single-wrapper.carrier-vinaphone .sim-info-item svg {
    stroke: #00558a;
}

/* ---- Step number theo nhà mạng ---- */
.sim-single-wrapper.carrier-mobifone .sim-single-step-num {
    background: linear-gradient(135deg, #0061af, #0078d4);
    box-shadow: 0 2px 8px rgba(0, 97, 175, 0.25);
}
.sim-single-wrapper.carrier-viettel .sim-single-step-num {
    background: linear-gradient(135deg, #cc0029, #ee0033);
    box-shadow: 0 2px 8px rgba(238, 0, 51, 0.25);
}
.sim-single-wrapper.carrier-vinaphone .sim-single-step-num {
    background: linear-gradient(135deg, #00558a, #0077b6);
    box-shadow: 0 2px 8px rgba(0, 85, 138, 0.25);
}

/* ---- Sidebar box header theo nhà mạng ---- */
.sim-single-wrapper.carrier-mobifone .sim-sidebar-box-head {
    background: linear-gradient(135deg, #0061af, #0078d4);
}
.sim-single-wrapper.carrier-viettel .sim-sidebar-box-head {
    background: linear-gradient(135deg, #cc0029, #ee0033);
}
.sim-single-wrapper.carrier-vinaphone .sim-sidebar-box-head {
    background: linear-gradient(135deg, #00558a, #0077b6);
}

/* ---- Guide list step numbers ---- */
.sim-single-wrapper.carrier-mobifone .sim-guide-list li::before {
    background: #0061af;
}
.sim-single-wrapper.carrier-viettel .sim-guide-list li::before {
    background: #ee0033;
}
.sim-single-wrapper.carrier-vinaphone .sim-guide-list li::before {
    background: #00558a;
}

/* ---- Carrier Tab colors trên trang single ---- */
.sim-sp-carrier-tab[data-carrier="mobifone"].active {
    background: #0061af;
    border-color: #0061af;
}
.sim-sp-carrier-tab[data-carrier="mobifone"]:hover {
    border-color: #0061af;
    color: #0061af;
}
.sim-sp-carrier-tab[data-carrier="viettel"].active {
    background: #ee0033;
    border-color: #ee0033;
}
.sim-sp-carrier-tab[data-carrier="viettel"]:hover {
    border-color: #ee0033;
    color: #ee0033;
}
.sim-sp-carrier-tab[data-carrier="vinaphone"].active {
    background: #00558a;
    border-color: #00558a;
}
.sim-sp-carrier-tab[data-carrier="vinaphone"]:hover {
    border-color: #00558a;
    color: #00558a;
}

/* ---- Plan card carrier feature badges ---- */
.sim-sp-plan-feature.carrier-badge-mobifone {
    background: #e6f0fa !important;
    color: #0061af !important;
    font-weight: 700 !important;
    border: 1px solid rgba(0, 97, 175, 0.15);
}
.sim-sp-plan-feature.carrier-badge-viettel {
    background: #fde8ec !important;
    color: #ee0033 !important;
    font-weight: 700 !important;
    border: 1px solid rgba(238, 0, 51, 0.15);
}
.sim-sp-plan-feature.carrier-badge-vinaphone {
    background: #e3f1f8 !important;
    color: #00558a !important;
    font-weight: 700 !important;
    border: 1px solid rgba(0, 85, 138, 0.15);
}

/* ---- Spinner theo nhà mạng ---- */
.sim-single-wrapper.carrier-viettel .sim-spinner {
    border-top-color: #ee0033;
}
.sim-single-wrapper.carrier-vinaphone .sim-spinner {
    border-top-color: #00558a;
}

/* ---- Support link colors ---- */
.sim-single-wrapper.carrier-mobifone .sim-support-value {
    color: #0061af;
}
.sim-single-wrapper.carrier-viettel .sim-support-value {
    color: #ee0033;
}
.sim-single-wrapper.carrier-vinaphone .sim-support-value {
    color: #00558a;
}
