/* =========================================================
   MUNDO TODO TECNOLOGÍA
   CSS GENERAL DEL SISTEMA
========================================================= */

/* =========================================================
   CONTENEDOR
========================================================= */

.mt-container {
    padding-bottom: 30px;
}


/* =========================================================
   ENCABEZADOS DE PÁGINA
========================================================= */

.mt-page-header {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
}

.mt-page-header h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 600;
}

.mt-page-header p {
    margin-bottom: 0;
}


/* =========================================================
   BARRA DE ACCIONES
========================================================= */

.mt-toolbar {
    margin-bottom: 20px;
}

.mt-toolbar .form-group {
    margin-bottom: 0;
}


/* =========================================================
   PANELES
========================================================= */

.mt-panel {
    border-radius: 4px;
    overflow: hidden;
}

.mt-panel .panel-heading {
    font-weight: 600;
}


/* =========================================================
   TABLAS
========================================================= */

.mt-table {
    margin-bottom: 0;
}

.mt-table thead th {
    vertical-align: middle;
    white-space: nowrap;
    font-weight: 600;
}

.mt-table tbody td {
    vertical-align: middle;
}


/* =========================================================
   COLUMNA DE OPCIONES
========================================================= */

.mt-opciones {
    text-align: center;
    white-space: nowrap;
}

.mt-opciones .btn {
    margin: 1px;
}


/* =========================================================
   MENSAJE CUANDO NO HAY REGISTROS
========================================================= */

.mt-empty {
    padding: 35px !important;
    text-align: center;
    color: #777;
}


/* =========================================================
   FORMULARIOS
========================================================= */

.mt-form-group {
    margin-bottom: 15px;
}

.mt-form-group label {
    font-weight: 600;
}


/* =========================================================
   BOTONES
========================================================= */

.mt-btn-icon {
    width: 34px;
    height: 34px;
    padding: 6px 8px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .mt-page-header h3 {
        font-size: 22px;
    }

    .mt-table {
        font-size: 13px;
    }

    .mt-toolbar {
        margin-bottom: 15px;
    }

}
/* =========================================================
   MODALES
========================================================= */

.modal-header-danger {
    background-color: #dd4b39;
    color: #fff;
}

.modal-close-white {
    color: #fff !important;
    opacity: 1;
}

.modal-close-white:hover,
.modal-close-white:focus {
    color: #fff !important;
    opacity: .8;
}

.modal-warning-icon {
    margin-bottom: 15px;
}

.modal-warning-icon i {
    font-size: 50px;
    color: #f39c12;
}

.modal-body h4 {
    font-weight: 600;
}

.modal-body .alert {
    margin-top: 20px;
    margin-bottom: 0;
}

.modal-footer .btn {
    margin-left: 5px;
}
/* =========================================================
   DETALLE DE ARTÍCULO
========================================================= */

.mt-articulo-show {
    padding-bottom: 30px;
}

.mt-articulo-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
}

.mt-articulo-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.mt-articulo-header h3 {
    margin: 0;
    font-weight: 600;
}

.mt-articulo-header .btn {
    margin-left: 5px;
}

.mt-articulo-body {
    padding: 20px;
}


/* =========================================================
   GALERÍA DEL ARTÍCULO
========================================================= */

.mt-articulo-imagen-principal {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 10px;
}

.mt-articulo-miniaturas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.mt-articulo-miniatura {
    width: 75px;
    height: 75px;
    object-fit: contain;
    padding: 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}

.mt-articulo-miniatura:hover {
    border-color: #3c8dbc;
}


/* =========================================================
   INFORMACIÓN
========================================================= */

.mt-articulo-nombre {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 28px;
    font-weight: 600;
}

.mt-articulo-codigo {
    color: #777;
    margin-bottom: 20px;
}

.mt-articulo-info {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    overflow: hidden;
}

.mt-articulo-info-row {
    display: flex;
    padding: 12px 15px;
    border-bottom: 1px solid #e5e5e5;
}

.mt-articulo-info-row:last-child {
    border-bottom: 0;
}

.mt-articulo-info-label {
    width: 40%;
    font-weight: 600;
    color: #555;
}

.mt-articulo-info-value {
    width: 60%;
}


/* =========================================================
   PRECIOS
========================================================= */

.mt-articulo-precios {
    margin-bottom: 20px;
}

.mt-articulo-precio {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
}

.mt-articulo-precio:first-child {
    border-radius: 5px 5px 0 0;
}

.mt-articulo-precio:last-child {
    border-radius: 0 0 5px 5px;
    border-bottom: 0;
}


/* =========================================================
   DESCRIPCIÓN
========================================================= */

.mt-articulo-descripcion {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    line-height: 1.7;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .mt-articulo-nombre {
        margin-top: 20px;
        font-size: 23px;
    }

    .mt-articulo-imagen-principal {
        height: 300px;
    }

    .mt-articulo-info-row {
        display: block;
    }

    .mt-articulo-info-label,
    .mt-articulo-info-value {
        width: 100%;
    }

    .mt-articulo-info-value {
        margin-top: 5px;
    }

    .mt-articulo-header .btn {
        margin-top: 10px;
        margin-left: 0;
        margin-right: 5px;
    }
}
/* =========================================================
   MUNDO TODO TECNOLOGÍA
   PÁGINA PRINCIPAL
========================================================= */

.mt-home-hero,
.mt-home-services,
.mt-home-cta,
.mt-home-footer {
    font-family: 'Raleway', sans-serif;
}


/* =========================================================
   HERO
========================================================= */

.mt-home-hero {
    position: relative;
    min-height: 680px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0f172a 0%,
            #172554 50%,
            #1d4ed8 100%
        );

    color: #fff;
}


.mt-home-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(59, 130, 246, .25),
            transparent 35%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(14, 165, 233, .15),
            transparent 35%
        );
}


.mt-home-hero-content {
    position: relative;

    z-index: 2;

    max-width: 780px;

    padding: 70px 0;
}


/* =========================================================
   LOGO
========================================================= */

.mt-home-logo {
    width: 58px;
    height: 58px;

    margin-bottom: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
}


.mt-home-logo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    background: transparent;
}


/* =========================================================
   MARCA
========================================================= */

.mt-home-brand {
    display: flex;
    flex-direction: column;

    margin-bottom: 28px;

    line-height: 1;
}


.mt-home-brand span {
    font-size: 1.05rem;
    font-weight: 800;

    letter-spacing: .5px;
}


.mt-home-brand small {
    margin-top: 6px;

    color: rgba(255,255,255,.65);

    font-size: .65rem;
    font-weight: 500;

    letter-spacing: 2px;
}


/* =========================================================
   STATUS
========================================================= */

.mt-home-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 22px;

    padding: 8px 14px;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 50px;

    background: rgba(255,255,255,.07);

    color: rgba(255,255,255,.85);

    font-size: .8rem;
    font-weight: 600;
}


.mt-home-status-dot {
    width: 8px;
    height: 8px;

    display: inline-block;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 0 4px rgba(34,197,94,.15);
}


/* =========================================================
   TITULO
========================================================= */

.mt-home-hero h1 {
    margin: 0;

    font-size: clamp(2.8rem, 7vw, 5.3rem);

    line-height: .98;

    font-weight: 300;

    letter-spacing: -3px;
}


.mt-home-hero h1 strong {
    display: block;

    font-weight: 800;
}


/* =========================================================
   DESCRIPCIÓN
========================================================= */

.mt-home-description {
    max-width: 650px;

    margin: 28px 0 32px;

    color: rgba(255,255,255,.78);

    font-size: 1.05rem;

    line-height: 1.7;
}


/* =========================================================
   BOTONES
========================================================= */

.mt-home-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


.mt-home-btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 22px;

    border-radius: 10px;

    text-decoration: none;

    font-size: .9rem;
    font-weight: 700;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.mt-home-btn:hover {
    transform: translateY(-2px);
}


.mt-home-btn-primary {
    background: #fff;

    color: #172554;

    box-shadow:
        0 8px 25px rgba(0,0,0,.15);
}


.mt-home-btn-primary:hover {
    background: #f8fafc;

    color: #172554;
}


.mt-home-btn-secondary {
    color: #fff;

    border: 1px solid rgba(255,255,255,.25);

    background: rgba(255,255,255,.08);
}


.mt-home-btn-secondary:hover {
    color: #fff;

    background: rgba(255,255,255,.15);
}


/* =========================================================
   FEATURES
========================================================= */

.mt-home-features {
    display: flex;
    flex-wrap: wrap;

    gap: 22px;

    margin-top: 35px;

    color: rgba(255,255,255,.7);

    font-size: .78rem;
}


.mt-home-features div {
    display: flex;
    align-items: center;

    gap: 7px;
}


.mt-home-features i {
    color: #60a5fa;
}


/* =========================================================
   SERVICES
========================================================= */

.mt-home-services {
    padding: 85px 0;

    background: #f8fafc;
}


.mt-home-section-heading {
    max-width: 700px;

    margin: 0 auto 50px;

    text-align: center;
}


.mt-home-section-heading > span {
    display: block;

    margin-bottom: 8px;

    color: #2563eb;

    font-size: .72rem;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.mt-home-section-heading h2 {
    margin: 0 0 14px;

    color: #111827;

    font-size: clamp(1.8rem, 4vw, 2.6rem);

    font-weight: 800;

    letter-spacing: -1px;
}


.mt-home-section-heading p {
    margin: 0;

    color: #6b7280;

    font-size: .95rem;

    line-height: 1.7;
}


/* =========================================================
   CARDS
========================================================= */

.mt-home-card {
    height: 100%;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    box-shadow:
        0 5px 20px rgba(15,23,42,.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.mt-home-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(15,23,42,.10);
}


.mt-home-card-image {
    height: 220px;

    overflow: hidden;

    background: #f1f5f9;
}


.mt-home-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .4s ease;
}


.mt-home-card:hover
.mt-home-card-image img {
    transform: scale(1.04);
}


.mt-home-card-body {
    padding: 25px;
}


.mt-home-card-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    border-radius: 12px;

    background: #eff6ff;

    color: #2563eb;

    font-size: 1.1rem;
}


.mt-home-card-body h3 {
    margin: 0 0 10px;

    color: #111827;

    font-size: 1.15rem;
    font-weight: 800;
}


.mt-home-card-body p {
    margin: 0;

    color: #6b7280;

    font-size: .88rem;

    line-height: 1.65;
}


/* =========================================================
   CTA
========================================================= */

.mt-home-cta {
    padding: 60px 0;

    background: #111827;

    color: #fff;
}


.mt-home-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.mt-home-cta-content > div {
    max-width: 650px;
}


.mt-home-cta-content span {
    display: block;

    margin-bottom: 7px;

    color: #60a5fa;

    font-size: .7rem;
    font-weight: 800;

    letter-spacing: 1.4px;
}


.mt-home-cta-content h2 {
    margin: 0 0 8px;

    font-size: 2rem;

    font-weight: 800;
}


.mt-home-cta-content p {
    margin: 0;

    color: #9ca3af;

    font-size: .9rem;
}


.mt-home-cta-button {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 13px 20px;

    border-radius: 10px;

    background: #2563eb;

    color: #fff;

    text-decoration: none;

    font-size: .88rem;
    font-weight: 700;

    white-space: nowrap;

    transition:
        background .2s ease,
        transform .2s ease;
}


.mt-home-cta-button:hover {
    background: #1d4ed8;

    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER
========================================================= */

.mt-home-footer {
    padding: 35px 0 20px;

    background: #0b1120;

    color: #fff;
}


.mt-home-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.mt-home-footer-content strong {
    display: block;

    margin-bottom: 5px;

    font-size: .95rem;
}


.mt-home-footer-content p {
    margin: 0;

    color: #6b7280;

    font-size: .78rem;
}


.mt-home-footer-links {
    display: flex;

    gap: 20px;
}


.mt-home-footer-links a {
    color: #9ca3af;

    text-decoration: none;

    font-size: .8rem;

    transition: color .2s ease;
}


.mt-home-footer-links a:hover {
    color: #fff;
}


.mt-home-footer-bottom {
    margin-top: 25px;

    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,.08);

    color: #6b7280;

    font-size: .7rem;

    text-align: center;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .mt-home-hero {
        min-height: 680px;
    }


    .mt-home-hero-content {
        padding: 80px 0 55px;
    }


    .mt-home-logo {
        width: 48px;
        height: 48px;
    }


    .mt-home-hero h1 {
        font-size: 3rem;

        letter-spacing: -2px;
    }


    .mt-home-description {
        font-size: .9rem;

        line-height: 1.6;
    }


    .mt-home-buttons {
        flex-direction: column;
    }


    .mt-home-btn {
        width: 100%;
    }


    .mt-home-features {
        flex-direction: column;

        gap: 10px;
    }


    .mt-home-services {
        padding: 60px 0;
    }


    .mt-home-card-image {
        height: 200px;
    }


    .mt-home-cta {
        padding: 45px 0;
    }


    .mt-home-cta-content {
        flex-direction: column;

        align-items: flex-start;
    }


    .mt-home-cta-button {
        width: 100%;

        justify-content: center;
    }


    .mt-home-footer-content {
        flex-direction: column;

        align-items: flex-start;
    }


    .mt-home-footer-links {
        width: 100%;
    }

}
/* =========================================================
   RECUPERACIÓN DE CONTRASEÑA
   MUNDO TODO TECNOLOGÍA
========================================================= */

.password-email-page {
    width: 100% !important;
    min-height: calc(100vh - 50px) !important;
    margin: 0 !important;
    padding: 40px 15px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #f5f7fb !important;
    box-sizing: border-box !important;
}

.password-email-page *,
.password-email-page *::before,
.password-email-page *::after {
    box-sizing: border-box !important;
}

/* =========================================================
   TARJETA
========================================================= */

.password-email-card {
    width: 100% !important;
    max-width: 440px !important;

    margin: 0 auto !important;
    padding: 35px 35px 28px !important;

    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 18px !important;

    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.10) !important;

    position: relative !important;
}

/* =========================================================
   LOGO
========================================================= */

.password-email-logo {
    width: 70px !important;
    height: 70px !important;

    margin: 0 auto 18px !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: transparent !important;
}

.password-email-logo img {
    width: 70px !important;
    max-width: 70px !important;
    height: 70px !important;
    max-height: 70px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    display: block !important;

    object-fit: contain !important;
    background: transparent !important;
    border: 0 !important;
}

/* =========================================================
   ENCABEZADO
========================================================= */

.password-email-header {
    width: 100% !important;

    margin: 0 0 25px !important;
    padding: 0 !important;

    text-align: center !important;
}

.password-email-icon {
    width: 48px !important;
    height: 48px !important;

    margin: 0 auto 13px !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background: #eef5ff !important;
    color: #0d6efd !important;

    font-size: 19px !important;
}

.password-email-header h2 {
    margin: 0 0 8px !important;
    padding: 0 !important;

    color: #111827 !important;

    font-size: 24px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;

    letter-spacing: -0.3px !important;
}

.password-email-header p {
    width: 100% !important;
    max-width: 350px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    color: #6b7280 !important;

    font-size: 13px !important;
    line-height: 1.6 !important;
}

/* =========================================================
   MENSAJE DE ÉXITO
========================================================= */

.password-email-success {
    width: 100% !important;

    margin: 0 0 20px !important;
    padding: 12px 13px !important;

    display: flex !important;
    align-items: flex-start !important;
    gap: 9px !important;

    border: 1px solid #bbf7d0 !important;
    border-radius: 9px !important;

    background: #f0fdf4 !important;
    color: #166534 !important;

    font-size: 12px !important;
    line-height: 1.5 !important;
}

.password-email-success > i {
    margin-top: 2px !important;

    color: #16a34a !important;
    font-size: 15px !important;
}

/* =========================================================
   CAMPO
========================================================= */

.password-email-field {
    width: 100% !important;

    margin: 0 0 20px !important;
    padding: 0 !important;
}

.password-email-field label {
    width: 100% !important;

    display: block !important;

    margin: 0 0 7px !important;
    padding: 0 !important;

    color: #374151 !important;

    font-size: 12px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
}

/* =========================================================
   INPUT
========================================================= */

.password-email-input {
    width: 100% !important;
    height: 50px !important;

    margin: 0 !important;
    padding: 0 13px !important;

    display: flex !important;
    align-items: center !important;

    background: #f8fafc !important;

    border: 1px solid #d9dee7 !important;
    border-radius: 9px !important;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease !important;
}

.password-email-input:focus-within {
    background: #ffffff !important;

    border-color: #0d6efd !important;

    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.10) !important;
}

.password-email-input > i {
    width: 20px !important;
    min-width: 20px !important;

    margin: 0 10px 0 0 !important;
    padding: 0 !important;

    color: #9ca3af !important;

    font-size: 14px !important;
    text-align: center !important;
}

.password-email-input input {
    width: 100% !important;
    min-width: 0 !important;

    height: 48px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    outline: none !important;

    background: transparent !important;

    color: #111827 !important;

    font-family: inherit !important;
    font-size: 13px !important;
    line-height: normal !important;

    box-shadow: none !important;
}

.password-email-input input:focus {
    border: 0 !important;
    outline: none !important;

    box-shadow: none !important;
}

.password-email-input input::placeholder {
    color: #a1a8b3 !important;
    opacity: 1 !important;
}

/* =========================================================
   ERROR
========================================================= */

.password-email-field.has-error .password-email-input {
    border-color: #dc3545 !important;
}

.password-email-field.has-error .password-email-input:focus-within {
    border-color: #dc3545 !important;

    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.08) !important;
}

.password-email-error {
    width: 100% !important;

    margin: 7px 0 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: flex-start !important;
    gap: 6px !important;

    color: #dc3545 !important;

    font-size: 11px !important;
    line-height: 1.4 !important;
}

.password-email-error > i {
    margin-top: 2px !important;
}

/* =========================================================
   BOTÓN
========================================================= */

.password-email-button {
    width: 100% !important;
    min-height: 50px !important;
    height: 50px !important;

    margin: 2px 0 0 !important;
    padding: 0 15px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    border: 0 !important;
    border-radius: 9px !important;

    background: #0d6efd !important;
    color: #ffffff !important;

    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 700 !important;

    line-height: 1 !important;

    cursor: pointer !important;

    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.20) !important;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease !important;
}

.password-email-button:hover {
    background: #0b5ed7 !important;
    color: #ffffff !important;

    transform: translateY(-1px) !important;

    box-shadow: 0 8px 18px rgba(13, 110, 253, 0.25) !important;
}

.password-email-button:focus {
    outline: none !important;

    background: #0b5ed7 !important;
    color: #ffffff !important;
}

.password-email-button:active {
    transform: translateY(0) !important;
}

.password-email-button i {
    margin: 0 !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: 13px !important;
}

/* =========================================================
   SEGURIDAD
========================================================= */

.password-email-security {
    width: 100% !important;

    margin: 22px 0 0 !important;
    padding: 11px 12px !important;

    display: flex !important;
    align-items: center !important;
    gap: 10px !important;

    background: #f8fafc !important;

    border: 1px solid #e8edf3 !important;
    border-radius: 9px !important;
}

.password-email-security > i {
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 8px !important;

    background: #ecfdf5 !important;
    color: #16a34a !important;

    font-size: 13px !important;
}

.password-email-security div {
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.password-email-security strong {
    margin: 0 !important;
    padding: 0 !important;

    color: #374151 !important;

    font-size: 11px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
}

.password-email-security small {
    margin: 0 !important;
    padding: 0 !important;

    color: #9ca3af !important;

    font-size: 10px !important;
    line-height: 1.4 !important;
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 575px) {

    .password-email-page {
        min-height: 100vh !important;

        padding: 20px 12px !important;
    }

    .password-email-card {
        max-width: 100% !important;

        padding: 28px 20px 22px !important;

        border-radius: 15px !important;
    }

    .password-email-logo {
        width: 60px !important;
        height: 60px !important;
    }

    .password-email-logo img {
        width: 60px !important;
        max-width: 60px !important;
        height: 60px !important;
        max-height: 60px !important;
    }

    .password-email-header h2 {
        font-size: 21px !important;
    }

    .password-email-header p {
        font-size: 12px !important;
    }

    .password-email-input {
        height: 48px !important;
    }

    .password-email-input input {
        height: 46px !important;
    }

    .password-email-button {
        height: 48px !important;
        min-height: 48px !important;
    }
}
/* =========================================================
   HISTORIAL LABORAL
   DISEÑO PREMIUM - MUNDO TODO TECNOLOGÍA
========================================================= */

.historial-card {
    width: 100%;
    margin: 0 0 24px;

    background: #ffffff;

    border: 1px solid #e7ebf0;
    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.04),
        0 12px 30px rgba(15, 23, 42, 0.05);

    transition:
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.historial-card:hover {
    border-color: #dce4ee;

    box-shadow:
        0 6px 16px rgba(15, 23, 42, 0.05),
        0 16px 35px rgba(15, 23, 42, 0.07);
}


/* =========================================================
   HEADER
========================================================= */

.historial-card-header {
    min-height: 72px;

    padding: 14px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #f5f8fc 100%
        );

    border-bottom: 1px solid #edf0f4;
}

.historial-card-heading {
    display: flex;
    align-items: center;
}

.historial-card-icon {
    width: 42px;
    height: 42px;

    margin-right: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf3ff;

    color: #0d6efd;

    border: 1px solid #dceaff;

    border-radius: 11px;

    font-size: 16px;

    box-shadow: 0 3px 8px rgba(13, 110, 253, 0.08);
}

.historial-card-heading h4 {
    margin: 0 0 3px;

    color: #172033;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: -0.2px;
}

.historial-card-heading p {
    margin: 0;

    color: #8b95a5;

    font-size: 11px;

    line-height: 1.4;
}

.historial-card-badge {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #dfe5ec;

    border-radius: 8px;

    color: #6b7280;

    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   BODY
========================================================= */

.historial-card-body {
    padding: 23px 22px 20px;

    background: #ffffff;
}


/* =========================================================
   GRID
========================================================= */

.historial-grid {
    display: grid;

    width: 100%;

    gap: 17px;
}

.historial-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}


/* =========================================================
   FORM GROUP
========================================================= */

.historial-form-group {
    width: 100%;

    margin-bottom: 18px;
}

.historial-full {
    width: 100%;
}

.historial-form-group label {
    display: flex;
    align-items: center;

    margin: 0 0 7px;

    color: #374151;

    font-size: 11px;
    font-weight: 700;

    line-height: 1.4;
}

.historial-label-icon {
    width: 17px;

    margin-right: 5px;

    color: #8b96a6;

    font-size: 11px;

    text-align: center;
}

.historial-required {
    margin-left: 3px;

    color: #dc3545;
}


/* =========================================================
   INPUT WRAPPER
========================================================= */

.historial-input-wrapper {
    width: 100%;
    height: 44px;

    display: flex;
    align-items: center;

    background: #fbfcfe;

    border: 1px solid #dfe4ea;

    border-radius: 9px;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.historial-input-wrapper:hover {
    border-color: #cbd3dd;
}

.historial-input-wrapper:focus-within {
    background: #ffffff;

    border-color: #0d6efd;

    box-shadow:
        0 0 0 3px rgba(13, 110, 253, 0.08);
}

.historial-input-wrapper > i {
    width: 18px;
    min-width: 18px;

    margin-left: 12px;
    margin-right: 9px;

    color: #9aa4b2;

    font-size: 12px;

    text-align: center;
}

.historial-input-wrapper .form-control {
    width: 100%;
    height: 42px;

    margin: 0;
    padding: 0 12px 0 0;

    background: transparent;

    border: 0 !important;
    outline: none !important;

    box-shadow: none !important;

    color: #1f2937;

    font-size: 12px;

    border-radius: 0;
}

.historial-input-wrapper .form-control::placeholder {
    color: #a7afba;

    opacity: 1;
}


/* =========================================================
   SALARIO
========================================================= */

.historial-salary-group {
    width: 260px;

    margin-bottom: 0;
}

.historial-salary-wrapper {
    height: 44px;

    display: flex;
    align-items: center;

    background: #fbfcfe;

    border: 1px solid #dfe4ea;

    border-radius: 9px;

    overflow: hidden;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.historial-salary-wrapper:focus-within {
    background: #ffffff;

    border-color: #0d6efd;

    box-shadow:
        0 0 0 3px rgba(13, 110, 253, 0.08);
}

.historial-currency {
    height: 100%;

    padding: 0 12px;

    display: flex;
    align-items: center;

    background: #f3f6fa;

    border-right: 1px solid #e1e6ec;

    color: #6b7280;

    font-size: 11px;
    font-weight: 700;
}

.historial-salary-wrapper .form-control {
    width: 100%;
    height: 42px;

    padding: 0 10px;

    background: transparent;

    border: 0 !important;

    box-shadow: none !important;

    color: #1f2937;

    font-size: 12px;
}

.historial-salary-wrapper .form-control:focus {
    outline: none !important;

    box-shadow: none !important;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .historial-card-header {
        padding: 14px 15px;
    }

    .historial-card-body {
        padding: 20px 15px 18px;
    }

    .historial-grid-2 {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .historial-salary-group {
        width: 100%;
    }

    .historial-card-heading p {
        font-size: 10px;
    }
}


@media (max-width: 480px) {

    .historial-card {
        border-radius: 13px;
    }

    .historial-card-icon {
        width: 38px;
        height: 38px;

        margin-right: 10px;

        font-size: 14px;
    }

    .historial-card-heading h4 {
        font-size: 14px;
    }

    .historial-card-heading p {
        display: none;
    }

    .historial-card-body {
        padding: 17px 12px 15px;
    }

    .historial-form-group {
        margin-bottom: 15px;
    }
}
/* =========================================================
   HISTORIAL LABORAL
   ESTILO GENERAL DEL SISTEMA
========================================================= */

.empresa-group.panel-primary {
    margin-bottom: 20px;

    border-color: #337ab7;

    border-radius: 4px;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);

    overflow: hidden;
}


/* =========================================================
   ENCABEZADO
========================================================= */

.empresa-group.panel-primary > .panel-heading {
    min-height: 45px;

    padding: 12px 15px;

    font-size: 14px;
    font-weight: 600;

    line-height: 20px;
}

.empresa-group.panel-primary > .panel-heading i {
    margin-right: 6px;
}

.empresa-group.panel-primary > .panel-heading .pull-right {
    font-size: 12px;
    font-weight: 600;

    opacity: .9;
}


/* =========================================================
   CONTENIDO
========================================================= */

.empresa-group.panel-primary > .panel-body {
    padding: 20px 15px 5px;

    background: #fff;
}


/* =========================================================
   LABELS
========================================================= */

.empresa-group .form-group > label {
    display: block;

    margin-bottom: 6px;

    color: #555;

    font-size: 12px;
    font-weight: 600;
}

.empresa-group .form-group > label i {
    width: 16px;

    margin-right: 4px;

    font-size: 12px;
}

.empresa-group .form-group > label .text-danger {
    margin-left: 2px;
}


/* =========================================================
   INPUTS
========================================================= */

.empresa-group .form-control {
    height: 38px;

    border-radius: 4px;

    border-color: #ddd;

    font-size: 13px;

    box-shadow: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.empresa-group .form-control:focus {
    border-color: #337ab7;

    box-shadow:
        0 0 0 2px rgba(51, 122, 183, .08);
}


/* =========================================================
   INPUT GROUP
========================================================= */

.empresa-group .input-group-addon {
    min-width: 48px;

    background: #f5f6f7;

    border-color: #ddd;

    color: #666;

    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   ESPACIADO
========================================================= */

.empresa-group .form-group {
    margin-bottom: 18px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .empresa-group.panel-primary > .panel-heading {
        padding: 11px 13px;
    }

    .empresa-group.panel-primary > .panel-body {
        padding: 17px 12px 3px;
    }

    .empresa-group .form-control {
        height: 40px;
    }

}
/* =========================================================
   SELECCIONAR EMPLEADO
========================================================= */

.panel-primary .table {
    margin-bottom: 0;
}

.panel-primary .table > thead > tr > th {
    background: #f5f7fa;

    color: #555;

    font-size: 12px;
    font-weight: 600;

    border-bottom: 1px solid #ddd;

    vertical-align: middle;
}

.panel-primary .table > thead > tr > th i {
    margin-right: 5px;

    color: #337ab7;
}

.panel-primary .table > tbody > tr > td {
    padding: 11px 10px;

    color: #555;

    font-size: 13px;

    vertical-align: middle;
}

.panel-primary .table > tbody > tr > td strong {
    color: #333;

    font-weight: 600;
}


/* =========================================================
   BOTONES
========================================================= */

.panel-primary .table .btn {
    margin: 2px;

    border-radius: 4px;

    font-size: 11px;
    font-weight: 600;
}

.panel-primary .table .btn i {
    margin-right: 4px;
}


/* =========================================================
   MENSAJE INFORMATIVO
========================================================= */

.panel-primary .alert-info {
    margin-bottom: 18px;

    padding: 10px 13px;

    font-size: 12px;

    border-radius: 4px;
}

.panel-primary .alert-info i {
    margin-right: 5px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .panel-primary .table > thead > tr > th,
    .panel-primary .table > tbody > tr > td {
        white-space: nowrap;
    }

    .panel-primary .table .btn {
        display: block;

        width: 100%;

        margin: 4px 0;
    }

}
#empleados {
    margin-bottom: 0;
}

#empleados thead th {
    vertical-align: middle;
}

#empleados tbody td {
    vertical-align: middle;
}

#empleados .btn {
    margin: 2px;
}

@media (max-width: 767px) {

    #empleados .btn {
        display: block;
        width: 100%;
        margin: 4px 0;
    }

}
/* =========================================================
   FORMULARIO DE INFORMACIÓN DEL EMPLEADO
   Mismo estilo del módulo de ingresos
   ========================================================= */

.container-fluid .panel-primary {
    margin-bottom: 20px;
}

.container-fluid .panel-primary > .panel-heading {
    min-height: 44px;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
}

.container-fluid .panel-primary > .panel-heading i {
    margin-right: 6px;
}

.container-fluid .panel-primary > .panel-body {
    padding: 20px 15px 5px;
}

.container-fluid .panel-primary .form-group {
    margin-bottom: 18px;
}

.container-fluid .panel-primary .form-group > label {
    display: block;
    margin-bottom: 6px;
    color: #555;
    font-size: 12px;
    font-weight: 600;
}

.container-fluid .panel-primary .form-group > label i {
    width: 16px;
    margin-right: 4px;
}

.container-fluid .panel-primary .form-control {
    height: 38px;
    border-radius: 4px;
    border-color: #ddd;
    box-shadow: none;
    font-size: 13px;
}

.container-fluid .panel-primary textarea.form-control {
    height: auto;
    resize: vertical;
}

.container-fluid .panel-primary .form-control:focus {
    border-color: #337ab7;
    box-shadow: 0 0 0 2px rgba(51, 122, 183, .08);
}

.container-fluid .panel-primary .input-group-addon {
    background: #f5f5f5;
    border-color: #ddd;
    color: #666;
    font-size: 12px;
    font-weight: 600;
}

.container-fluid .panel-primary .btn {
    border-radius: 4px;
}

#titulos-container .titulo-input {
    margin-bottom: 8px;
}


/* SELECT2 */

.container-fluid .select2-container {
    width: 100% !important;
}

.container-fluid .select2-container--default
.select2-selection--multiple {
    min-height: 38px;
    border-color: #ddd;
    border-radius: 4px;
}

.container-fluid .select2-container--default
.select2-selection--multiple
.select2-selection__choice {
    margin-top: 6px;
}


/* BOTONES */

.container-fluid form > .row .btn {
    margin-right: 5px;
}


/* MÓVIL */

@media (max-width: 767px) {

    .container-fluid .panel-primary > .panel-heading {
        padding: 11px 13px;
    }

    .container-fluid .panel-primary > .panel-body {
        padding: 17px 12px 3px;
    }

    .container-fluid .panel-primary .form-control {
        height: 40px;
    }

}
/* ==========================================
   MODALES DE CONTABILIDAD
   Pago / Abono
========================================== */

.modal-pago-overlay {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-pago {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    animation: aparecerModal .2s ease;
}

@keyframes aparecerModal {
    from {
        opacity: 0;
        transform: scale(.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-pago-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #eaf2f8;
    color: #1f4e79;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.modal-pago-icon.error {
    background: #fdeaea;
    color: #d9534f;
}

.modal-pago h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.modal-pago p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.modal-pago-warning {
    background: #f4f8fb;
    border-left: 4px solid #1f4e79;
    padding: 12px;
    text-align: left;
    font-size: 12px;
    color: #555;
    margin-bottom: 25px;
}

.modal-pago-warning i {
    color: #1f4e79;
    margin-right: 5px;
}

.modal-pago-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-modal-cancelar,
.btn-modal-confirmar,
.btn-modal-cerrar-error {
    border: none;
    border-radius: 5px;
    padding: 11px 18px;
    font-size: 13px;
    cursor: pointer;
    transition: .2s;
}

.btn-modal-cancelar {
    background: #eee;
    color: #555;
}

.btn-modal-cancelar:hover {
    background: #ddd;
}

.btn-modal-confirmar {
    background: #1f4e79;
    color: #fff;
}

.btn-modal-confirmar:hover {
    background: #163a5c;
}

.btn-modal-confirmar:disabled {
    opacity: .7;
    cursor: not-allowed;
}

.btn-modal-cerrar-error {
    background: #d9534f;
    color: #fff;
    margin-top: 10px;
}

.btn-modal-cerrar-error:hover {
    background: #c9302c;
}

.modal-error {
    border-top: 4px solid #d9534f;
}
/* =========================================================
   REPORTE DE FACTURAS
   Mismo tamaño y estilo visual que Reporte de Abonos
   ========================================================= */

.reporte-facturas {
    font-size: 14px;
}

/* ---------------------------------------------------------
   ENCABEZADO
   --------------------------------------------------------- */

.reporte-facturas .box-header {
    padding: 15px;
}

.reporte-facturas .box-title {
    font-size: 18px;
    font-weight: 600;
}

.reporte-facturas .box-title i {
    margin-right: 6px;
}

/* ---------------------------------------------------------
   FILTROS
   --------------------------------------------------------- */

.reporte-facturas .form-group {
    margin-bottom: 15px;
}

.reporte-facturas label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.reporte-facturas .form-control {
    height: 36px;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 3px;
}

.reporte-facturas select.form-control {
    height: 36px;
}

/* Botones principales */

.reporte-facturas .btn {
    min-height: 36px;
    padding: 7px 13px;
    font-size: 13px;
    border-radius: 3px;
}

.reporte-facturas .btn i {
    margin-right: 4px;
}

.reporte-facturas #btnPDF {
    min-height: 36px;
    padding: 7px 14px;
    font-size: 13px;
}

/* ---------------------------------------------------------
   CUADROS DE RESUMEN
   --------------------------------------------------------- */

.reporte-facturas .small-box {
    min-height: 100px;
    margin-bottom: 20px;
}

.reporte-facturas .small-box .inner {
    padding: 15px;
}

.reporte-facturas .small-box .inner h3 {
    font-size: 24px !important;
    line-height: 1.1;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.reporte-facturas .small-box .inner p {
    font-size: 14px;
    margin: 0;
}

.reporte-facturas .small-box .icon {
    font-size: 55px;
    top: 15px;
    right: 15px;
}

/* ---------------------------------------------------------
   TABLA
   --------------------------------------------------------- */

.reporte-facturas .table {
    margin-bottom: 0;
}

.reporte-facturas .table > thead > tr > th {
    font-size: 13px;
    font-weight: 600;
    padding: 9px 8px;
    vertical-align: middle;
    white-space: nowrap;
}

.reporte-facturas .table > tbody > tr > td {
    font-size: 13px;
    padding: 8px;
    vertical-align: middle;
}

.reporte-facturas .table th.text-right,
.reporte-facturas .table td.text-right {
    text-align: right;
}

/* ---------------------------------------------------------
   ESTADOS
   --------------------------------------------------------- */

.reporte-facturas .label {
    font-size: 11px;
    padding: 5px 8px;
    border-radius: 3px;
}

/* ---------------------------------------------------------
   BOTONES DE ACCIÓN
   --------------------------------------------------------- */

.reporte-facturas .btn-xs {
    padding: 5px 8px;
    font-size: 12px;
    line-height: 1.4;
}

.reporte-facturas .btn-xs i {
    margin-right: 2px;
}

/* ---------------------------------------------------------
   PAGINACIÓN
   --------------------------------------------------------- */

.reporte-facturas .pagination {
    margin: 15px 0 5px 0;
}

.reporte-facturas .pagination > li > a,
.reporte-facturas .pagination > li > span {
    padding: 6px 10px;
    font-size: 13px;
}

/* ---------------------------------------------------------
   MENSAJE SIN RESULTADOS
   --------------------------------------------------------- */

.reporte-facturas .alert {
    font-size: 13px;
    padding: 10px 15px;
}

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .reporte-facturas .small-box .inner h3 {
        font-size: 21px !important;
    }

    .reporte-facturas .small-box .icon {
        font-size: 45px;
    }

    .reporte-facturas .btn {
        margin-bottom: 5px;
    }

    .reporte-facturas .table {
        font-size: 12px;
    }

    .reporte-facturas .table > thead > tr > th,
    .reporte-facturas .table > tbody > tr > td {
        padding: 6px;
    }
}