/* ============================================================
   Brand Solution – Application Styles (Metro-inspired)
   ============================================================ */

:root {
    --primary:   #1ba1e2;
    --success:   #60a917;
    --warning:   #fa6800;
    --danger:    #ce352c;
    --dark:      #1d1d1d;
    --sidebar-w: 240px;
    --header-h:  56px;
    --transition: .2s ease;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    background: #f0f0f0;
    margin: 0;
}

/* ---- Layout ------------------------------------------------ */
.app-sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: var(--sidebar-w);
    background: #1d1d1d;
    color: #ccc;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: width var(--transition);
    overflow-x: hidden;
}

.main-content {
    margin-left: var(--sidebar-w);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: margin-left var(--transition);
}

body.sidebar-collapsed .app-sidebar  { width: 56px; }
body.sidebar-collapsed .main-content { margin-left: 56px; }
body.sidebar-collapsed .sidebar-brand-text,
body.sidebar-collapsed .nav-label,
body.sidebar-collapsed .sidebar-nav-section { display: none; }

/* ---- Sidebar Brand ---------------------------------------- */
.sidebar-brand {
    padding: 0 16px;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: #111;
    flex-shrink: 0;
}
.sidebar-brand-icon { font-size: 22px; color: var(--primary); margin-right: 10px; flex-shrink: 0; }
.sidebar-brand-text { font-size: 16px; font-weight: 300; color: #fff; letter-spacing: .3px; flex: 1; }
.sidebar-brand-text strong { font-weight: 700; color: var(--primary); }
.sidebar-toggle-btn { background: none; border: none; color: #888; cursor: pointer; font-size: 18px; padding: 4px; flex-shrink: 0; }
.sidebar-toggle-btn:hover { color: #fff; }

/* ---- Sidebar Nav ------------------------------------------ */
.sidebar-nav { padding: 8px 0; overflow-y: auto; flex: 1; }

.sidebar-nav-section {
    padding: 16px 16px 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #555;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #aaa;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
    border-left: 3px solid transparent;
}
.sidebar-nav-item i { font-size: 15px; flex-shrink: 0; min-width: 22px; text-align: center; }
.sidebar-nav-item .nav-label { margin-left: 12px; font-size: 13px; }
.sidebar-nav-item:hover { background: #2a2a2a; color: #fff; }
.sidebar-nav-item.active { background: #1a3a4a; color: #fff; border-left-color: var(--primary); }
.sidebar-nav-item.logout-link:hover { background: #3a1a1a; color: #ff6b6b; }

/* ---- App Header ------------------------------------------- */
.app-header {
    height: var(--header-h);
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    position: sticky;
    top: 0;
    z-index: 900;
}
.header-left  { display: flex; align-items: center; flex: 1; gap: 12px; }
.header-right { display: flex; align-items: center; gap: 12px; }
.header-menu-btn { background: none; border: none; font-size: 20px; cursor: pointer; color: #666; display: none; }

.header-search-form  { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 3px; overflow: hidden; background: #f8f8f8; }
.header-search-input { border: none; background: none; padding: 6px 12px; font-size: 13px; outline: none; width: 280px; color: #333; }
.header-search-btn   { background: none; border: none; padding: 6px 10px; cursor: pointer; color: #888; font-size: 16px; }
.header-search-btn:hover { color: var(--primary); }

.header-badge  { font-size: 11px; padding: 3px 8px; border-radius: 2px; font-weight: 600; text-transform: uppercase; }
.badge-admin   { background: #e8f4fd; color: var(--primary); }
.badge-creator { background: #e8fde8; color: var(--success); }

.header-user { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 4px 8px; border-radius: 3px; position: relative; }
.header-user:hover { background: #f5f5f5; }
.user-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.user-name   { font-size: 13px; color: #333; }

/* ---- Page Content ----------------------------------------- */
.page-content { padding: 24px; flex: 1; }

.page-header  { margin-bottom: 0; }
.page-title   { font-size: 22px; font-weight: 600; margin: 0; color: #1d1d1d; }
.page-subtitle{ font-size: 13px; color: #777; margin-top: 2px; }

.app-footer { background: #fff; border-top: 1px solid #e5e5e5; padding: 12px 24px; font-size: 12px; color: #999; }

/* ---- BS Cards --------------------------------------------- */
.bs-card { background: #fff; border: 1px solid #e5e5e5; border-radius: 3px; margin-bottom: 0; }
.bs-card-header {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}
.bs-card-title  { font-size: 14px; font-weight: 600; margin: 0; color: #1d1d1d; }
.bs-card-title i { margin-right: 6px; color: var(--primary); }
.bs-card-body   { padding: 20px; }
.bs-card-footer { padding: 14px 20px; border-top: 1px solid #eee; background: #fafafa; }

/* ---- KPI Cards -------------------------------------------- */
.kpi-card {
    background: #fff;
    border-radius: 3px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #e5e5e5;
    margin-bottom: 0;
}
.kpi-icon { font-size: 32px; opacity: .7; flex-shrink: 0; }
.kpi-value { font-size: 26px; font-weight: 700; line-height: 1; }
.kpi-label { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: .5px; margin-top: 3px; }
.kpi-sub   { font-size: 11px; color: #aaa; margin-top: 2px; }

.kpi-blue   .kpi-icon { color: var(--primary); }
.kpi-green  .kpi-icon { color: var(--success); }
.kpi-orange .kpi-icon { color: var(--warning); }
.kpi-red    .kpi-icon { color: var(--danger); }
.kpi-purple .kpi-icon { color: #6b3fa0; }
.kpi-blue   { border-top: 3px solid var(--primary); }
.kpi-green  { border-top: 3px solid var(--success); }
.kpi-orange { border-top: 3px solid var(--warning); }
.kpi-red    { border-top: 3px solid var(--danger); }
.kpi-purple { border-top: 3px solid #6b3fa0; }

/* ---- Metro Inputs ----------------------------------------- */
.metro-input, .metro-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 13px;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.metro-input:focus, .metro-select:focus { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(27,161,226,.15); }
.metro-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; padding-right: 28px; cursor: pointer; }
textarea.metro-input { resize: vertical; min-height: 80px; }

.form-label  { display: block; font-size: 12px; font-weight: 600; color: #555; margin-bottom: 5px; }
.form-label.required::after { content: ' *'; color: var(--danger); }
.form-group  { margin-bottom: 16px; }

/* ---- Buttons (override Metro) ----------------------------- */
.button { border-radius: 2px !important; font-size: 13px !important; }
.w-100  { width: 100% !important; }

/* ---- Tables ----------------------------------------------- */
.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table th { padding: 10px 12px; text-align: left; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: #888; background: #fafafa; border-bottom: 2px solid #eee; white-space: nowrap; }
.table td { padding: 10px 12px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
.table.striped tr:nth-child(even) td { background: #fafafa; }
.table.compact th, .table.compact td { padding: 7px 12px; }
.table-footer { background: #fafafa; border-top: 1px solid #eee; }

/* ---- Status Badges ---------------------------------------- */
.badge-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
}
.status-active, .status-paid, .status-fully_paid { background: #e8fde8; color: #3a7d3a; }
.status-pending    { background: #fff3cd; color: #856404; }
.status-completed  { background: #e8f4fd; color: #0c5460; }
.status-inactive   { background: #f5f5f5; color: #999; }
.status-partially_paid { background: #fff0e0; color: #c85000; }
.status-paused     { background: #f0e8fd; color: #4a0c8a; }

/* ---- Role Badges ------------------------------------------ */
.badge-role {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}
.role-admin     { background: #ce352c; color: #fff; }
.role-sub_admin { background: #fa6800; color: #fff; }
.role-staff     { background: #1ba1e2; color: #fff; }
.role-creator   { background: #60a917; color: #fff; }
.role-me        { background: #6b3fa0; color: #fff; }

/* ---- Platform Badges -------------------------------------- */
.platform-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
}
.platform-tiktok    { background: #010101; color: #fff; }
.platform-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.platform-youtube   { background: #ff0000; color: #fff; }
.platform-facebook  { background: #1877f2; color: #fff; }
.platform-twitter   { background: #1da1f2; color: #fff; }
.platform-other     { background: #888; color: #fff; }

/* ---- Category Badges -------------------------------------- */
.badge-category { display: inline-block; padding: 2px 8px; border-radius: 2px; font-size: 11px; font-weight: 600; }
.cat-marketing      { background: #e8f4fd; color: #0c5460; }
.cat-logistics      { background: #fff3cd; color: #856404; }
.cat-creator_payment{ background: #e8fde8; color: #3a7d3a; }
.cat-ads            { background: #f0e8fd; color: #4a0c8a; }
.cat-tools          { background: #f5f5f5; color: #555; }
.cat-other          { background: #f0f0f0; color: #888; }

/* ---- Creator Avatars -------------------------------------- */
.creator-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.creator-avatar-placeholder { background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.creator-avatar-lg { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto; }
.creator-profile-pic { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto; }
.creator-avatar-placeholder-lg { width: 100px; height: 100px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 40px; font-weight: 700; margin: 0 auto; }
.user-avatar-lg { width: 80px; height: 80px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 700; margin: 0 auto 12px; }

/* ---- Detail List ------------------------------------------ */
.detail-list { margin: 0; }
.detail-list dt { font-size: 11px; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: .5px; margin-top: 10px; }
.detail-list dd { margin: 2px 0 0 0; font-size: 14px; color: #333; }

/* ---- Activity Feed ---------------------------------------- */
.activity-feed { padding: 0 16px; }
.activity-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
.activity-item:last-child { border-bottom: none; }
.activity-icon { width: 32px; height: 32px; border-radius: 50%; background: #f0f0f0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); }
.activity-text { font-size: 13px; }
.activity-time { font-size: 11px; color: #aaa; margin-top: 2px; }

/* ---- Comments --------------------------------------------- */
.comments-thread { max-height: 400px; overflow-y: auto; }
.comment-item { padding: 14px 20px; border-bottom: 1px solid #f0f0f0; }
.comment-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.comment-time { font-size: 11px; color: #aaa; margin-left: auto; }
.comment-body { font-size: 13px; line-height: 1.6; }
.comment-creator { background: #f0fff0; }
.comment-admin   { background: #fff; }

/* ---- Upload Zone ------------------------------------------ */
.upload-zone {
    border: 2px dashed #ddd;
    border-radius: 3px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--transition);
}
.upload-zone:hover { border-color: var(--primary); }

/* ---- Summary Stats ---------------------------------------- */
.summary-stat { margin-bottom: 16px; }
.summary-value { font-size: 22px; font-weight: 700; line-height: 1; }
.summary-label { font-size: 12px; color: #888; margin-top: 2px; }

/* ---- Info Row (creator profile) --------------------------- */
.info-row { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 13px; border-bottom: 1px solid #f5f5f5; }
.info-row:last-child { border-bottom: none; }

/* ---- Category Chip ---------------------------------------- */
.category-chip {
    background: #f0f0f0;
    border-radius: 3px;
    padding: 8px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.category-name  { font-size: 11px; font-weight: 600; text-transform: uppercase; color: #888; }
.category-value { font-size: 18px; font-weight: 700; color: #333; }
.category-count { font-size: 11px; color: #aaa; }

/* ---- Alerts ----------------------------------------------- */
.bs-alert {
    padding: 12px 16px;
    border-radius: 2px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.alert-success { background: #e8fde8; border-left: 4px solid var(--success); color: #2d5a1b; }
.alert-danger  { background: #fde8e8; border-left: 4px solid var(--danger);  color: #5a1b1b; }
.alert-warning { background: #fff3cd; border-left: 4px solid var(--warning); color: #856404; }
.alert-info    { background: #e8f4fd; border-left: 4px solid var(--primary); color: #0c3d5a; }

/* ---- Filter Form ------------------------------------------ */
.filter-form .row { align-items: flex-end; }

/* ---- Utilities -------------------------------------------- */
.fw-bold    { font-weight: 600; }
.text-small { font-size: 12px; }
.text-muted { color: #888; }
.p-0 { padding: 0 !important; }
.p-3 { padding: 12px !important; }
.p-4 { padding: 16px !important; }
.p-5 { padding: 24px !important; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px !important; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px !important; }
.mr-2 { margin-right: 8px; }
.ml-2 { margin-left: 8px; }
.ml-auto { margin-left: auto; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-end { justify-content: flex-end; }
.float-right { float: right; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.text-center { text-align: center; }
.fg-green { color: var(--success); }
.fg-red   { color: var(--danger); }
.fg-orange { color: var(--warning); }

/* ---- Auth ------------------------------------------------- */
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: #555; }
.metro-input { display: block; }

/* ---- Responsive ------------------------------------------- */
@media (max-width: 768px) {
    .app-sidebar { transform: translateX(-100%); width: var(--sidebar-w) !important; }
    .app-sidebar.mobile-open { transform: translateX(0); }
    .main-content { margin-left: 0 !important; }
    .header-menu-btn { display: flex !important; }
    .header-search-input { width: 160px; }
    .page-content { padding: 16px; }
    .kpi-card { flex-direction: column; text-align: center; }
}

/* ============================================================
   Custom Notification & Confirm Modal System
   ============================================================ */

/* ---- Overlay ---------------------------------------------- */
.bs-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: bsOverlayIn .2s ease;
}

@keyframes bsOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ---- Modal Box -------------------------------------------- */
.bs-modal {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 24px 80px rgba(0,0,0,.32), 0 4px 16px rgba(0,0,0,.12);
    max-width: 420px;
    width: 100%;
    overflow: hidden;
    animation: bsModalIn .28s cubic-bezier(.34,1.56,.64,1);
    position: relative;
}

@keyframes bsModalIn {
    from { opacity: 0; transform: scale(.88) translateY(24px); }
    to   { opacity: 1; transform: scale(1)  translateY(0); }
}

/* ---- Icon Banner ------------------------------------------ */
.bs-modal-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px 0;
}

.bs-modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

.bs-modal-icon.icon-confirm  { background: #fff3cd; color: #d48806; box-shadow: 0 0 0 8px #fff8e1; }
.bs-modal-icon.icon-alert    { background: #e8f4fd; color: #1ba1e2; box-shadow: 0 0 0 8px #e8f4fd; }
.bs-modal-icon.icon-success  { background: #e8fde8; color: #389e3a; box-shadow: 0 0 0 8px #e8fde8; }
.bs-modal-icon.icon-danger   { background: #fde8e8; color: #ce352c; box-shadow: 0 0 0 8px #fde8e8; }

/* ---- Modal Body ------------------------------------------- */
.bs-modal-body {
    padding: 20px 28px 12px;
    text-align: center;
}

.bs-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #1d1d1d;
    margin: 0 0 8px;
    line-height: 1.3;
}

.bs-modal-message {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ---- Modal Footer ----------------------------------------- */
.bs-modal-footer {
    padding: 16px 28px 28px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.bs-modal-footer button {
    flex: 1;
    max-width: 160px;
    padding: 11px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
    letter-spacing: .2px;
}

.bs-btn-cancel {
    background: #f0f0f0;
    color: #555;
}
.bs-btn-cancel:hover {
    background: #e0e0e0;
    color: #333;
}

.bs-btn-confirm-ok {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(27,161,226,.4);
}
.bs-btn-confirm-ok:hover {
    background: #1490cc;
    box-shadow: 0 6px 18px rgba(27,161,226,.5);
    transform: translateY(-1px);
}

.bs-btn-confirm-danger {
    background: var(--danger);
    color: #fff;
    box-shadow: 0 4px 14px rgba(206,53,44,.4);
}
.bs-btn-confirm-danger:hover {
    background: #b52e26;
    box-shadow: 0 6px 18px rgba(206,53,44,.5);
    transform: translateY(-1px);
}

.bs-btn-alert-ok {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(27,161,226,.4);
    max-width: 200px;
}
.bs-btn-alert-ok:hover {
    background: #1490cc;
    transform: translateY(-1px);
}

/* ---- Toast Notifications ---------------------------------- */
.bs-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99998;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.bs-toast {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.1);
    padding: 14px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 300px;
    max-width: 380px;
    pointer-events: all;
    animation: bsToastIn .3s cubic-bezier(.34,1.56,.64,1);
    border-left: 4px solid transparent;
}

@keyframes bsToastIn {
    from { opacity: 0; transform: translateX(60px) scale(.9); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes bsToastOut {
    from { opacity: 1; transform: translateX(0); max-height: 100px; margin-bottom: 0; }
    to   { opacity: 0; transform: translateX(60px); max-height: 0; margin-bottom: -10px; }
}

.bs-toast.removing { animation: bsToastOut .3s ease forwards; }

.bs-toast-success { border-left-color: #60a917; }
.bs-toast-error   { border-left-color: #ce352c; }
.bs-toast-warning { border-left-color: #fa6800; }
.bs-toast-info    { border-left-color: #1ba1e2; }

.bs-toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.bs-toast-success .bs-toast-icon { background: #e8fde8; color: #60a917; }
.bs-toast-error   .bs-toast-icon { background: #fde8e8; color: #ce352c; }
.bs-toast-warning .bs-toast-icon { background: #fff3cd; color: #fa6800; }
.bs-toast-info    .bs-toast-icon { background: #e8f4fd; color: #1ba1e2; }

.bs-toast-content { flex: 1; }
.bs-toast-title   { font-size: 13px; font-weight: 700; color: #1d1d1d; margin-bottom: 2px; }
.bs-toast-body    { font-size: 12px; color: #777; line-height: 1.4; }

.bs-toast-close {
    background: none;
    border: none;
    color: #bbb;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    flex-shrink: 0;
    line-height: 1;
}
.bs-toast-close:hover { color: #888; }

/* ---- Progress bar on toast -------------------------------- */
.bs-toast-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    border-radius: 0 0 10px 10px;
    animation: bsProgress linear forwards;
}
.bs-toast { position: relative; overflow: hidden; }
.bs-toast-success .bs-toast-progress { background: #60a917; }
.bs-toast-error   .bs-toast-progress { background: #ce352c; }
.bs-toast-warning .bs-toast-progress { background: #fa6800; }
.bs-toast-info    .bs-toast-progress { background: #1ba1e2; }

@keyframes bsProgress {
    from { width: 100%; }
    to   { width: 0%; }
}
