/* ═══════════════════════════════════════════════════
   CEMSA — Cabeçalho v2 (Layout de Duas Linhas da Imagem)
   Linha 1: Barra Superior Azul (Fixed)
   Linha 2: Barra de Navegação Branca (Fixed)
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Reset e Espaçamento Base ────────────────────── */
body {
    padding-top: 96px !important; /* 52px topbar + 44px navbar */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

/* ════════════════════════════════════════════
   LINHA 1: BARRA SUPERIOR AZUL
   ════════════════════════════════════════════ */
.cemsa-topbar {
    background-color: #0d47a1 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 52px !important;
    z-index: 1050 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    overflow: visible !important;
}

.cemsa-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    padding: 0 12px;
}

/* Logo da Barra Superior */
.cemsa-topbar-logo {
    display: flex;
    align-items: center;
}

.cemsa-topbar-logo a {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

.logo-cabecalho {
    height: 36px !important;
    width: auto !important;
    max-height: 36px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    transition: transform 0.2s ease !important;
}

.logo-cabecalho:hover {
    transform: scale(1.03) !important;
}

.cemsa-logo-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    margin: 0 8px;
    font-weight: 300;
}

.cemsa-logo-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
}

/* Ações do Lado Direito */
.cemsa-topbar-actions-wrapper {
    display: flex;
    align-items: center;
}

.cemsa-topbar-actions-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cemsa-topbar-actions-nav > li {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Botão CEMSA BI */
.btn-cemsa-bi {
    background-color: #ff9800 !important;
    color: #000000 !important;
    border: none !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 6px rgba(255,152,0,0.4) !important;
    transition: background-color 0.2s, box-shadow 0.2s, padding 0.2s !important;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: auto !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.btn-cemsa-bi:hover,
.btn-cemsa-bi:focus {
    background-color: #e65100 !important;
    box-shadow: 0 4px 10px rgba(255,152,0,0.5) !important;
    color: #ffffff !important;
}

.btn-cemsa-bi .glyphicon {
    font-size: 13px;
}

/* Ícones de Notificação / Ajuda da Barra Superior */
.cemsa-topbar-icon-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    transition: background 0.2s, color 0.2s !important;
    text-decoration: none !important;
}

.cemsa-topbar-icon-link:hover,
.cemsa-topbar-icon-link:focus,
.cemsa-topbar-actions-nav > li.open > .cemsa-topbar-icon-link {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

/* Link de Usuário da Barra Superior */
.cemsa-topbar-user-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: background 0.2s !important;
    max-width: 180px;
    height: auto !important;
}

.cemsa-topbar-user-link:hover,
.cemsa-topbar-user-link:focus,
.cemsa-topbar-actions-nav > li.open > .cemsa-topbar-user-link {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
}

.cemsa-topbar-username {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cemsa-topbar-user-link .caret {
    border-top-color: rgba(255, 255, 255, 0.8) !important;
    margin-left: 2px;
}

/* ════════════════════════════════════════════
   LINHA 2: BARRA DE NAVEGAÇÃO BRANCA
   ════════════════════════════════════════════ */
.cemsa-navbar-v2 {
    background-color: #ffffff !important;
    border: none !important;
    border-bottom: 1px solid #e2e8f0 !important;
    position: fixed !important;
    top: 52px !important;
    left: 0 !important;
    right: 0 !important;
    height: 44px !important;
    min-height: 44px !important;
    z-index: 1040 !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06) !important;
}

.cemsa-navbar-v2 .container-fluid {
    height: 44px;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .cemsa-navbar-v2 .navbar-collapse {
        padding: 0 !important;
        height: 44px !important;
    }
}

.cemsa-navbar-v2 .navbar-nav {
    margin: 0 !important;
    height: 44px;
    display: flex;
    align-items: center;
}

.cemsa-navbar-v2 .navbar-nav > li {
    float: none !important;
    display: inline-block;
}

/* Links do Menu Principal */
.cemsa-navbar-v2 .navbar-nav > li > a {
    color: #475569 !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    height: 44px !important;
    padding: 0 16px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: transparent !important;
    border-bottom: 3px solid transparent !important;
    transition: all 0.15s ease !important;
    text-decoration: none !important;
}

.cemsa-navbar-v2 .navbar-nav > li > a:hover,
.cemsa-navbar-v2 .navbar-nav > li > a:focus,
.cemsa-navbar-v2 .navbar-nav > li.open > a {
    color: #0d47a1 !important;
    border-bottom-color: #0d47a1 !important;
}

/* Ícone de Material Design nos menus */
.cemsa-menu-icon {
    font-size: 18px !important;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.15s;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.cemsa-navbar-v2 .navbar-nav > li > a:hover .cemsa-menu-icon,
.cemsa-navbar-v2 .navbar-nav > li.open > a .cemsa-menu-icon {
    opacity: 1;
}

/* ── Estilos de Dropdowns (Bootstrap Padrão) ───────── */
.dropdown-menu {
    border-radius: 8px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e2e8f0 !important;
    padding: 6px 0 !important;
    margin-top: 1px !important;
    background: #ffffff !important;
    z-index: 1200 !important;
    animation: cemsa-dropdown-fade 0.15s ease;
}

@keyframes cemsa-dropdown-fade {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu > li > a {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 9px 16px !important;
    color: #334155 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: background 0.15s, color 0.15s !important;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    background: #eff6ff !important;
    color: #0d47a1 !important;
}

.dropdown-menu > li > a .cemsa-menu-icon {
    font-size: 16px !important;
}

/* ══════════════════════════════════════════════
   PAINEL DE NOTIFICAÇÕES
   ══════════════════════════════════════════════ */

/* Botão gatilho de notificação */
.cemsa-notif-trigger {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none !important;
    transition: background 0.2s !important;
}

.cemsa-notif-trigger:hover,
.cemsa-notif-trigger:focus {
    background: rgba(255,255,255,0.15) !important;
    color: #fff !important;
}

.cemsa-notif-trigger .material-icons {
    font-size: 22px;
}

/* Badge de contagem */
.cemsa-notif-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 8px;
    line-height: 16px;
    text-align: center;
    border: 2px solid #0d47a1;
    box-sizing: border-box;
}

/* Painel do dropdown */
.cemsa-notif-panel {
    width: 340px !important;
    padding: 0 !important;
    border-radius: 12px !important;
    overflow: hidden;
    margin-top: 8px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08) !important;
    border: 1px solid #e2e8f0 !important;
}

.cemsa-notif-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    color: #fff;
}

.cemsa-notif-panel-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.cemsa-notif-panel-title .material-icons {
    font-size: 20px;
    color: #ffd54f;
}

.cemsa-notif-refresh-btn {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.cemsa-notif-refresh-btn:hover {
    background: rgba(255,255,255,0.28);
}

.cemsa-notif-refresh-btn .material-icons {
    font-size: 18px;
}

.cemsa-notif-progress {
    height: 4px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    background: #e2e8f0;
}

.cemsa-notif-panel-body {
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
}

.cemsa-notif-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    color: #94a3b8;
    gap: 8px;
}

.cemsa-notif-empty .material-icons {
    font-size: 40px;
    color: #cbd5e1;
}

.cemsa-notif-empty p {
    margin: 0;
    font-size: 13px;
    text-align: center;
}

/* ══════════════════════════════════════════════
   PAINEL DO USUÁRIO
   ══════════════════════════════════════════════ */

/* Botão gatilho do usuário */
.cemsa-user-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 5px 10px !important;
    border-radius: 24px !important;
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none !important;
    transition: background 0.2s !important;
    background: rgba(255,255,255,0.1) !important;
}

.cemsa-user-trigger:hover,
.cemsa-user-trigger:focus,
.open > .cemsa-user-trigger {
    background: rgba(255,255,255,0.22) !important;
    color: #fff !important;
}

/* Avatar circular com inicial */
.cemsa-user-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    border: 1.5px solid rgba(255,255,255,0.4);
    text-transform: uppercase;
    line-height: 1;
}

.cemsa-user-caret {
    font-size: 18px !important;
    transition: transform 0.2s;
    opacity: 0.7;
}

.open > .cemsa-user-trigger .cemsa-user-caret {
    transform: rotate(180deg);
}

/* Painel dropdown */
.cemsa-user-panel {
    width: 290px !important;
    padding: 0 !important;
    border-radius: 12px !important;
    overflow: hidden;
    margin-top: 8px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08) !important;
    border: 1px solid #e2e8f0 !important;
}

/* Cabeçalho gradiente do painel */
.cemsa-user-panel-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 18px;
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 60%, #1976d2 100%);
    position: relative;
    overflow: hidden;
}

.cemsa-user-panel-header::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

/* Avatar grande no painel */
.cemsa-user-panel-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.45);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.cemsa-user-panel-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.cemsa-user-panel-name {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.01em;
}

.cemsa-user-panel-role {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.25);
    width: fit-content;
}

/* Seção de idiomas */
.cemsa-user-panel-section {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
}

.cemsa-user-panel-section-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.cemsa-user-panel-section-title .material-icons {
    font-size: 15px;
}

.cemsa-user-panel-langs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

/* Botão de idioma */
.cemsa-lang-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 7px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.15s;
    cursor: pointer;
    white-space: nowrap;
}

.cemsa-lang-btn:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #0d47a1;
    text-decoration: none !important;
}

.cemsa-lang-btn--active {
    background: #0d47a1 !important;
    border-color: #0d47a1 !important;
    color: #fff !important;
}

.cemsa-lang-btn--active:hover {
    background: #1565c0 !important;
    color: #fff !important;
}

/* Footer de logout */
.cemsa-user-panel-footer {
    padding: 12px 16px;
    background: #fafafa;
}

.cemsa-user-logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 9px 16px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.02em;
    font-family: 'Inter', sans-serif;
}

.cemsa-user-logout-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
    transform: translateY(-1px);
}

.cemsa-user-logout-btn .material-icons {
    font-size: 18px;
}

/* ── Dropdown Submenus (Nível 2) ───────────────── */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0 !important;
    left: 100% !important;
    margin-top: -6px !important;
    margin-left: -1px !important;
    border-radius: 0 8px 8px 8px !important;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block !important;
}

.dropdown-submenu > a::after {
    display: inline-block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #94a3b8;
    margin-top: 5px;
    margin-left: auto;
}

.dropdown-submenu:hover > a::after {
    border-left-color: #0d47a1;
}

/* ── Responsividade: Mobile / Tablet (<= 768px) ── */
@media (max-width: 768px) {
    body {
        padding-top: 52px !important; /* Apenas barra azul fica visivel fixed */
    }

    .cemsa-logo-sub,
    .cemsa-logo-divider {
        display: none !important;
    }

    /* Barra branca colapsável sob demanda */
    .cemsa-navbar-v2 {
        height: auto !important;
        min-height: auto !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }

    .cemsa-navbar-v2 .container-fluid {
        height: auto !important;
        padding: 0 !important;
    }

    .cemsa-navbar-v2 .navbar-header {
        position: fixed;
        top: 0;
        right: 0;
        height: 52px;
        z-index: 1060;
        margin: 0 !important;
    }

    /* Customização do Hamburguer do Bootstrap no Topbar */
    .cemsa-navbar-v2 .navbar-toggle {
        border: none !important;
        margin: 8px 10px 0 0 !important;
        padding: 10px !important;
        background: transparent !important;
    }

    .cemsa-navbar-v2 .navbar-toggle .icon-bar {
        background-color: #ffffff !important; /* Hambúrguer branco para contrastar no azul */
        width: 22px;
        height: 2px;
    }

    .cemsa-navbar-v2 .navbar-collapse {
        background: #ffffff !important;
        border-top: 1px solid #e2e8f0 !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
        position: fixed !important;
        top: 52px !important;
        left: 0 !important;
        right: 0 !important;
        max-height: calc(100vh - 52px) !important;
        overflow-y: auto !important;
        padding: 10px 0 !important;
    }

    .cemsa-navbar-v2 .navbar-nav {
        display: block !important;
        width: 100% !important;
        height: auto !important;
    }

    .cemsa-navbar-v2 .navbar-nav > li {
        display: block !important;
        width: 100% !important;
    }

    .cemsa-navbar-v2 .navbar-nav > li > a {
        height: 48px !important;
        padding: 0 20px !important;
        width: 100% !important;
        border-bottom: none !important;
        border-left: 3px solid transparent !important;
        display: flex !important;
        justify-content: space-between;
    }

    .cemsa-navbar-v2 .navbar-nav > li > a:hover,
    .cemsa-navbar-v2 .navbar-nav > li > a:focus,
    .cemsa-navbar-v2 .navbar-nav > li.open > a {
        border-left-color: #0d47a1 !important;
        background: #f8fafc !important;
    }

    /* Sub-dropdowns em mobile */
    .cemsa-navbar-v2 .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        background: #f8fafc !important;
        border-radius: 0 !important;
        padding: 4px 0 !important;
        margin: 0 !important;
    }

    .cemsa-navbar-v2 .dropdown-menu > li > a {
        padding: 10px 32px !important;
    }

    /* Submenus empilhados em mobile */
    .dropdown-submenu > .dropdown-menu {
        display: block !important;
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin: 0 !important;
        background: #f1f5f9 !important;
        box-shadow: none !important;
        border: none !important;
    }

    .dropdown-submenu > a::after {
        transform: rotate(90deg);
        margin-top: 6px;
    }

    .dropdown-submenu > .dropdown-menu > li > a {
        padding-left: 44px !important;
    }
}

/* ── Responsividade: Telas Pequenas (<= 480px) ───── */
@media (max-width: 480px) {
    .cemsa-bi-texto {
        display: none !important;
    }
    .btn-cemsa-bi {
        padding: 8px !important;
        border-radius: 50% !important;
        width: 34px;
        height: 34px;
        justify-content: center;
    }
    .cemsa-topbar-username {
        display: none !important;
    }
    .cemsa-topbar-user-link {
        padding: 6px !important;
    }
    .cemsa-notif-menu-new,
    .cemsa-user-menu-new {
        position: fixed !important;
        right: 8px !important;
        left: 8px !important;
        width: auto !important;
        top: 52px !important;
    }
}

@media (max-width: 360px) {
    .cemsa-topbar-inner {
        padding: 0 6px;
    }
    .cemsa-topbar-actions-nav {
        gap: 4px;
    }
}

/* ════════════════════════════════════════════
   TOPBAR MODO CONVIDADO (não logado)
   ════════════════════════════════════════════ */

/* Sem navbar: padding-top da body só precisa da topbar */
body.cemsa-guest {
    padding-top: 52px !important;
}

/* ── Correção: painéis de dropdown na topbar ficam FIXED
   para escapar do stacking context do header fixed ── */
.cemsa-topbar .dropdown-menu,
.cemsa-notif-panel,
.cemsa-user-panel {
    position: fixed !important;
    top: 52px !important;
    margin-top: 0 !important;
    /* Alinha à direita do viewport (dropdown-menu-right não funciona com fixed) */
    right: 12px !important;
    left: auto !important;
}

/* Painel de idiomas para convidado */
.cemsa-guest-lang-panel {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    margin-top: 8px !important;
    width: 240px !important;
    padding: 0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08) !important;
    border: 1px solid #e2e8f0 !important;
    z-index: 2000 !important;
}

.cemsa-guest-lang-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.cemsa-guest-lang-header .material-icons {
    font-size: 18px;
    color: #ffd54f;
}

.cemsa-guest-lang-panel .cemsa-user-panel-langs {
    padding: 12px;
    background: #fff;
}

/* ── Em telas pequenas, painéis ocupam toda a largura ── */
@media (max-width: 480px) {
    .cemsa-guest-lang-panel {
        position: fixed !important;
        top: 52px !important;
        right: 8px !important;
        left: 8px !important;
        width: auto !important;
    }
}

@keyframes cemsa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.cemsa-spin {
    animation: cemsa-spin 1s infinite linear !important;
    display: inline-block !important;
}
