/*=====================================================
                    Tipografia
======================================================*/
@font-face{
    font-family: "RobotoCondensedLight";
    src: url("../webfonts/robotocondensed-light.ttf"), 
    url("../webfonts/robotocondensed-light.eot"), 
    url("../webfonts/robotocondensed-light.woff"), 
    url("../webfonts/robotocondensed-light.woff2"), 
    url("../webfonts/robotocondensed-light.svg");
}
@font-face{
    font-family: "RobotoRegular";
    src: url("../webfonts/roboto-regular.ttf"), 
    url("../webfonts/roboto-regular.eot"), 
    url("../webfonts/roboto-regular.woff"), 
    url("../webfonts/roboto-regular.woff2"), 
    url("../webfonts/roboto-regular.svg");
}
@font-face{
    font-family: "OswaldLight";
    src: url("../webfonts/oswald-light.ttf"), 
    url("../webfonts/oswald-light.eot"), 
    url("../webfonts/oswald-light.woff"), 
    url("../webfonts/oswald-light.woff2"), 
    url("../webfonts/oswald-light.svg");
}

body,html{
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "RobotoRegular", "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    color: #1f2937;
    position: relative;
    background-color: #fff;
}

body{
    color: #1f2937;
}

:root{
    --brand-teal: #008b8b;
    --brand-teal-deep: #00777a;
    --brand-teal-soft: #e9f8f8;
    --brand-teal-softer: #f4fbfb;
    --brand-navy: #1d2d4a;
    --brand-gold: #d9a32f;
    --brand-gold-light: #f0c45c;
    --ui-border: #e7edf1;
    --ui-white: #ffffff;
}

a{
    color: #3348a5;
}

a:hover{
    color: #22337f;
}

.title{
    color: #111827 !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
}

.subtitle{
    color: #374151 !important;
    font-weight: 500 !important;
}

label,
.label,
.help,
.table,
.content,
.input,
.textarea,
.select select{
    color: #1f2937;
}

.input,
.textarea,
.select select{
    font-weight: 500;
}

.main-container{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000428;
    background: -webkit-linear-gradient(to right, #004e92, #000428);
    background: linear-gradient(to right, #004e92, #000428);
}

.main-container > .login,
.main-container > .hero-body{
    height: auto;
    width: 100%;
    max-width: 400px;
    min-width: 300px;
}

.is-photo{
    max-width: 300px;
    height: auto;
    margin: 0 auto;
}

.text-condensedLight{
    font-family: "RobotoRegular", "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.tittles{
    font-family: "RobotoRegular", "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.full-width{
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}
.list-unstyle{
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}
.img-responsive{
    width: 100%;
    height: auto;
}
.divider-menu-h{
    height: 0 !important;
    border-top: 0;
    width: 100% !important;
    margin: 0 auto !important;
}

.page-container{
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
}

/*  Scrolls */
.scroll::-webkit-scrollbar{
    width: 8px;
}
.scroll::-webkit-scrollbar-thumb{
    background: rgba(0, 139, 139, 0.36);
    border-radius: 999px;
}
.scroll::-webkit-scrollbar-thumb:active,
.scroll::-webkit-scrollbar-thumb:hover{
    background: rgba(0, 119, 122, 0.58);
} 
.scroll::-webkit-scrollbar-track{
    background: #f3f7f8;
}
.scroll::-webkit-scrollbar-track:hover, 
.scroll::-webkit-scrollbar-track:active{
    background: #edf4f5;
}
/*=============Estilos barra superior*/
.navBar{
    height: 58px;
    color: var(--brand-navy);
    position: relative;
    margin-bottom: 24px;
    background: var(--ui-white);
    border-bottom: 1px solid var(--ui-border);
    box-shadow: 0 8px 22px rgba(29, 45, 74, 0.08);
    overflow: hidden;
}
.navBar::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 139, 139, 0.035) 0%, rgba(0, 139, 139, 0) 72%);
    pointer-events: none;
}
.navBar::after{
    content: "";
    position: absolute;
    top: -30px;
    right: 228px;
    width: 18px;
    height: 122px;
    background: linear-gradient(180deg, var(--brand-gold-light) 0%, var(--brand-gold) 100%);
    transform: rotate(37deg) skewX(-9deg);
    border-radius: 999px 999px 999px 999px / 76% 76% 34% 34%;
    box-shadow: 0 0 0 1px rgba(217, 163, 47, 0.12);
    pointer-events: none;
}
.navBar-options{
    line-height: 58px;
    min-height: 58px;
    padding: 0 18px;
    transition: all .3s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.navBar-toggle{
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    color: var(--brand-teal);
    font-size: 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 8px;
}
.navBar-toggle:focus{
    outline: none;
}
.navBar-toggle:hover{
    background-color: var(--brand-teal-soft);
}
.navBar-options-list{
    margin-left: auto;
}
.navBar-options-list .noLink{
    cursor: inherit;
}
.navBar-options-list ul{
    display: flex;
    align-items: center;
    gap: 10px;
}
.navBar-options-list ul li{
    min-height: 40px;
    line-height: 1;
    padding: 0;
    font-size: 15px;
    user-select: none;
    display: flex;
    align-items: center;
}
.navBar-options-list ul li{ outline: none; }
.navBar-options-list ul li a{
    box-sizing: border-box;
    color: var(--brand-navy);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.navBar-options-list ul li img{
    border: 2px solid var(--brand-teal);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: block;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 139, 139, 0.16);
}
.navBar-user-action .btn-exit{
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
}
.navBar-user-action .btn-exit i{
    font-size: 20px;
    color: var(--brand-teal);
}
.navBar-user-name{
    color: var(--brand-navy);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}
.navBar-user-avatar{
    min-width: 36px;
}
@media (max-width: 750px){
    .navBar{
        height: 52px;
        margin-bottom: 18px;
    }
    .navBar::after{
        right: 118px;
        top: -25px;
        width: 15px;
        height: 104px;
    }
    .navBar-options{
        min-height: 52px;
        line-height: 52px;
        padding: 0 10px;
    }
    .navBar-user-name{
        max-width: 104px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/*=============Estilos en comun navegacion lateral y contenido pagina*/
.navLateral,
.pageContent,
.navLateral-body{
    height: 100%;
}
.navLateral,
.pageContent{
    overflow-y: auto;
}
/*=============Estilos navegacion lateral*/
.navLateral{
    --sidebar-base: var(--brand-teal);
    --sidebar-base-strong: var(--brand-teal-deep);
    --sidebar-base-soft: var(--brand-teal-soft);
    --sidebar-surface: rgba(0, 139, 139, 0.07);
    --sidebar-surface-strong: rgba(0, 139, 139, 0.13);
    width: 248px;
    border-right: 1px solid var(--ui-border);
    transition: all .3s ease-in-out;
    position: relative;
    background: var(--ui-white);
    box-shadow: 8px 0 24px rgba(29, 45, 74, 0.08);
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 139, 139, 0.46) #f3f7f8;
}
.navLateral-change{
    pointer-events: none;
    opacity: 0;
    width: 0;
    border-right: none;
}
.navLateral-body{
    background: var(--ui-white);
    position: relative;
    min-height: 100%;
    height: auto;
    overflow: visible;
}
.navLateral-body::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 139, 139, 0.025) 0%, rgba(0, 139, 139, 0) 34%),
        radial-gradient(circle at bottom left, rgba(0, 139, 139, 0.10) 0, rgba(0, 139, 139, 0) 28%);
    pointer-events: none;
}
.navLateral-body::after{
    display: none;
}
.navLateral-body > *{
    position: relative;
    z-index: 1;
}
.navLateral-bottom-accent{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.navLateral-bottom-accent::before{
    content: "";
    position: absolute;
    left: 18px;
    right: -44px;
    top: 17px;
    height: 74px;
    border-top: 6px solid var(--brand-gold-light);
    border-radius: 999px 999px 0 0;
    box-shadow: 0 -1px 0 rgba(217, 163, 47, 0.30);
}
.navLateral-bottom-accent::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 38px;
    background: linear-gradient(145deg, rgba(0, 139, 139, 0) 0 45%, rgba(0, 139, 139, 0.10) 45% 100%);
}
.navLateral-brand{
    padding: 10px 0 8px;
    text-align: center;
}
.navLateral-brand-logoWrap{
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    background: #fff;
}
.navLateral-brand-logo{
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.navLateral-brand-logoWrap::before{
    display: none;
}
.navLateral-user-card{
    width: 100%;
    margin: 0;
    padding: 14px 22px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--ui-white);
    border-top: 1px solid var(--ui-border);
    border-bottom: 3px solid var(--brand-gold);
    border-radius: 0;
    box-shadow: none;
}
.navLateral-user-avatar{
    width: 46px;
    min-width: 46px;
}
.navLateral-user-avatar img{
    width: 46px;
    height: 46px;
    display: block;
    object-fit: cover;
    border: 2px solid var(--brand-teal);
    box-shadow: 0 5px 12px rgba(0, 139, 139, 0.16);
}
.navLateral-user-copy{
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.navLateral-user-name{
    color: var(--brand-navy);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.2;
}
.navLateral-user-meta{
    color: var(--brand-teal);
    font-size: 11px;
    line-height: 1.2;
    word-break: break-word;
}
.navLateral-body-cl,
.navLateral-body-cr{
    box-sizing: border-box;
    height: 77px;
    float: left;
    margin: 0;
    padding: 0;
    position: relative;
}
.navLateral-body-cl{
    width: 30%;
}
.navLateral-body-cl img{
    width: 48px;
    height: 48px;
    margin: 0 auto;
    display: block;
    margin-top: 12px;
}
.navLateral-body-cr{
    width: 70%;
    font-family: "RobotoRegular", "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 600;
    color: var(--brand-navy);
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 1.4;
}
.navLateral-body-tittle-menu{
    min-height: 48px;
    font-size: 12px;
    background: linear-gradient(90deg, rgba(0, 139, 139, 0.14) 0%, rgba(0, 139, 139, 0.06) 100%);
    color: var(--brand-navy);
    border-top: 1px solid var(--ui-border);
    border-bottom: 1px solid var(--ui-border);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.80);
}
.navLateral-body-tittle-icon{
    width: 16px;
    min-width: 16px;
    text-align: center;
    color: var(--brand-teal);
}
.navLateral-body-tittle-text{
    letter-spacing: 0.08em;
    font-size: 12px;
}
.menu-principal li,
.menu-principal li a{
    display: block;
}
#navLateral > .navLateral-body > nav > .menu-principal{
    padding: 0 0 72px;
}
.sub-menu-options.menu-principal{
    padding: 0;
}
.menu-principal li a{
    min-height: 47px;
    color: var(--brand-navy);
    position: relative;
    transition: all .3s ease-in-out;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: 0;
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.01em;
    border: 0;
}
.menu-principal li a:hover{
    color: var(--brand-navy);
    background-color: var(--sidebar-surface);
}
.menu-principal li a div.navLateral-body-cl,
.menu-principal li a div.navLateral-body-cr{
    height: auto;
    line-height: 1.2;
    float: none;
}
.menu-principal li a div.navLateral-body-cl{
    text-align: center;
    font-size: 17px;
    width: 20px;
    min-width: 20px;
    color: var(--brand-teal);
}
.menu-principal li a div.navLateral-body-cr{
    width: auto;
    color: inherit;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
    flex: 1;
}
.btn-subMenu span.fa-chevron-down{
    position: absolute;
    top: 50%;
    right: 20px;
    line-height: 1;
    height: auto;
    font-size: 10px;
    transition: all .3s ease-in-out;
    transform: translateY(-50%);
    color: var(--brand-navy);
}
.btn-subMenu + .sub-menu-options{
    transition: all .3s ease-in-out;
}
.sub-menu-options{
    height: 0;
    max-height: 0;
    background-color: var(--brand-teal-softer);
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s ease, opacity .2s ease, padding .2s ease;
}
.sub-menu-options li a{
    min-height: 36px;
    margin: 0;
    padding-left: 34px;
    padding-right: 18px;
    color: var(--brand-navy);
    font-size: 12px;
    width: 100%;
    border-radius: 0;
    font-weight: 600;
    background-color: var(--brand-teal-softer);
}
.sub-menu-options li a:hover{
    background-color: var(--sidebar-surface);
}
.sub-menu-options li a .navLateral-body-cl{
    width: 16px;
    min-width: 16px;
    font-size: 12px;
    color: var(--brand-teal);
}
.btn-subMenu-show{
    background-color: var(--sidebar-surface-strong);
}
.btn-subMenu-show .navLateral-body-cl,
.btn-subMenu-show .navLateral-body-cr{
    color: var(--brand-navy);
}
.btn-subMenu-show + .sub-menu-options{
    height: auto;
    max-height: 720px;
    overflow: hidden;
    background-color: var(--brand-teal-softer);
    opacity: 1;
    padding-top: 0;
    padding-bottom: 0;
}

.btn-subMenu-show span.fa-chevron-down{
    transform: translateY(-50%) rotate(180deg);
}

.menu-principal li a.is-active-menu,
.menu-principal li a.is-active-menu:hover{
    background: var(--brand-teal-soft);
    color: var(--brand-navy);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}
.menu-principal li a.is-active-menu::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: var(--brand-teal);
}

.menu-principal li a.is-active-menu .navLateral-body-cl,
.menu-principal li a.is-active-menu .navLateral-body-cr{
    color: inherit;
}

/*=============Estilos contenido pagina*/
.pageContent{
    width: calc(100% - 248px);
    background-color: #fff;
    transition: all .3s ease-in-out;
    color: #1f2937;
}
.pageContent-change{
    width: 100%;
}
/*=============Estilos detalle de venta*/
.sale-details{
    display: flex;
    justify-content: space-between;
    transition: all .3s ease-in-out;
    padding: 5px;
}
.sale-details:hover{
    background-color: rgba(0, 0, 0, 0.07);
}

/*=============Libreria comun de formularios*/
.ui-form-page-header,
.client-form-page-header{
    margin-top: 2px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}
.ui-form-page-header .title,
.client-form-page-header .title{
    display: none;
    margin: 0;
    font-size: 14px;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    color: rgba(29, 45, 74, 0.58) !important;
}
.ui-form-page-header .subtitle,
.client-form-page-header .subtitle{
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 !important;
    font-size: 26px;
    font-weight: 600 !important;
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: var(--brand-teal) !important;
}
.ui-form-page-icon,
.client-form-page-icon{
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(180deg, #12a9ac 0%, var(--brand-teal) 100%);
    box-shadow: 0 10px 22px rgba(0, 139, 139, 0.18);
    flex-shrink: 0;
}
.ui-form-page,
.client-form-page{
    padding-top: 10px !important;
}
.ui-form,
.client-form-ui{
    max-width: 100%;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}
.ui-form-card,
.client-form-card{
    border: 1px solid rgba(231, 237, 241, 0.92);
    border-radius: 22px;
    padding: 24px 30px 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
    box-shadow: 0 10px 28px rgba(29, 45, 74, 0.08);
}
.ui-form-section-title,
.client-form-section-title{
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 22px !important;
    padding-bottom: 14px;
    font-size: 19px !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    color: var(--brand-teal) !important;
    border-bottom: 2px solid rgba(0, 139, 139, 0.92);
}
.ui-form-section-icon,
.client-form-section-icon{
    font-size: 28px;
    line-height: 1;
    color: var(--brand-teal);
    flex-shrink: 0;
}
.ui-form .columns,
.client-form-ui .columns{
    margin-top: 0;
}
.ui-form .column,
.client-form-ui .column{
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}
.ui-form label,
.ui-form .label,
.client-form-ui label,
.client-form-ui .label{
    display: inline-block;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: var(--brand-navy);
}
.ui-form .input,
.ui-form .select select,
.client-form-ui .input,
.client-form-ui .select select{
    height: 2.5em;
    border-radius: 10px;
    border: 1px solid #d8e1e8;
    box-shadow: inset 0 1px 2px rgba(29, 45, 74, 0.03);
    background-color: #fff;
    color: var(--brand-navy);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    padding-left: 16px;
    padding-right: 16px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.ui-form .input::placeholder,
.client-form-ui .input::placeholder{
    color: #90a0b7;
}
.ui-form .select:not(.is-multiple):not(.is-loading)::after,
.client-form-ui .select:not(.is-multiple):not(.is-loading)::after{
    border-color: var(--brand-teal);
    right: 1.25em;
    margin-top: -0.42em;
}
.ui-form .input:hover,
.ui-form .select select:hover,
.client-form-ui .input:hover,
.client-form-ui .select select:hover{
    border-color: #b9cad4;
}
.ui-form .input:focus,
.ui-form .input:active,
.ui-form .select select:focus,
.ui-form .select select:active,
.client-form-ui .input:focus,
.client-form-ui .input:active,
.client-form-ui .select select:focus,
.client-form-ui .select select:active{
    border-color: rgba(0, 139, 139, 0.86);
    box-shadow: 0 0 0 0.16em rgba(0, 139, 139, 0.14);
}
.ui-form .field.has-addons,
.client-form-ui .field.has-addons{
    align-items: stretch;
}
.ui-form .field.has-addons .control.is-expanded,
.client-form-ui .field.has-addons .control.is-expanded{
    flex: 1 1 auto;
}
.ui-form .field.has-addons .button.is-success,
.client-form-ui .field.has-addons .button.is-success{
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    width: 52px;
    min-width: 52px;
    padding: 0;
    border: 1px solid transparent;
    box-sizing: border-box;
    border-radius: 0 10px 10px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: linear-gradient(180deg, #14b8bc 0%, var(--brand-teal) 100%);
    box-shadow: none;
    vertical-align: top;
}
.ui-form .field.has-addons .button.is-success .icon,
.client-form-ui .field.has-addons .button.is-success .icon{
    margin: 0 !important;
}
.ui-form .field.has-addons .button.is-success .icon i,
.client-form-ui .field.has-addons .button.is-success .icon i{
    font-size: 18px;
    line-height: 1;
}
.ui-form .field.has-addons .button.is-success:hover,
.client-form-ui .field.has-addons .button.is-success:hover{
    background: linear-gradient(180deg, #12aeb2 0%, var(--brand-teal-deep) 100%);
}
.ui-form .field.has-addons .control.is-expanded .select select,
.client-form-ui .field.has-addons .control.is-expanded .select select{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.ui-form .field.has-addons .control.is-expanded .input,
.client-form-ui .field.has-addons .control.is-expanded .input{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.ui-form .checkbox,
.client-form-ui .checkbox{
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--brand-navy);
}
.ui-form .checkbox input,
.client-form-ui .checkbox input{
    width: 18px;
    height: 18px;
    accent-color: var(--brand-teal);
}
.ui-form-actions,
.client-form-actions{
    margin-top: 8px;
}
.ui-form-actions .button,
.client-form-actions .button{
    min-width: 144px;
    height: 48px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 18px rgba(29, 45, 74, 0.10);
}
.ui-form-actions .button + .button,
.client-form-actions .button + .button{
    margin-left: 12px;
}
.ui-form-footnote small,
.client-form-footnote small{
    font-size: 12.5px;
    line-height: 1.45;
    color: rgba(29, 45, 74, 0.66);
}
.ui-form .textarea,
.client-form-ui .textarea{
    border-radius: 12px;
    border: 1px solid #d8e1e8;
    box-shadow: inset 0 1px 2px rgba(29, 45, 74, 0.03);
    color: var(--brand-navy);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.ui-form .textarea:focus,
.ui-form .textarea:active,
.client-form-ui .textarea:focus,
.client-form-ui .textarea:active{
    border-color: rgba(0, 139, 139, 0.86);
    box-shadow: 0 0 0 0.16em rgba(0, 139, 139, 0.14);
}
.ui-form .radio,
.client-form-ui .radio{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-navy);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}
.ui-form .radio input,
.client-form-ui .radio input{
    accent-color: var(--brand-teal);
}
.ui-form .help,
.client-form-ui .help{
    color: rgba(29, 45, 74, 0.62);
    font-size: 12px;
    line-height: 1.45;
    margin-top: 6px;
}
.ui-form .fa-edit,
.ui-form .fa-pen,
.ui-form .fa-pen-alt,
.ui-form .fa-pen-square,
.ui-form .fa-pencil-alt,
.ui-form .fa-user-edit,
.client-form-ui .fa-edit,
.client-form-ui .fa-pen,
.client-form-ui .fa-pen-alt,
.client-form-ui .fa-pen-square,
.client-form-ui .fa-pencil-alt,
.client-form-ui .fa-user-edit{
    color: var(--brand-teal);
}
.ui-form .file.has-name,
.ui-form .file.is-boxed,
.client-form-ui .file.has-name,
.client-form-ui .file.is-boxed{
    width: 100%;
}
.ui-form .file-label,
.client-form-ui .file-label{
    width: 100%;
}
.ui-form .file-cta,
.ui-form .file-name,
.client-form-ui .file-cta,
.client-form-ui .file-name{
    border-color: #d8e1e8;
}
.ui-form .file-cta,
.client-form-ui .file-cta{
    background: linear-gradient(180deg, #12a9ac 0%, var(--brand-teal) 100%);
    color: #fff;
}
.ui-form .file-name,
.client-form-ui .file-name{
    flex: 1 1 auto;
    min-height: 40px;
    color: var(--brand-navy);
    background: #fff;
}
.ui-form #producto-foto-preview-wrapper,
.client-form-ui #producto-foto-preview-wrapper{
    border: 1px solid #d8e1e8 !important;
    border-radius: 14px !important;
    background: linear-gradient(180deg, #f8fbfc 0%, #f3f8f9 100%) !important;
}
.ui-form .mt-2 strong,
.ui-form .mt-2 p,
.ui-form .mt-2,
.client-form-ui .mt-2 strong,
.client-form-ui .mt-2 p,
.client-form-ui .mt-2{
    color: var(--brand-navy);
}

/*=============Libreria comun de documentos transaccionales*/
.ui-doc-page{
    padding-top: 10px !important;
}
.ui-doc-shell,
.devolucion-documento,
.dc-form{
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--brand-navy);
}
.ui-doc-toolbar{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.ui-doc-note{
    margin: 4px 0 0;
    color: rgba(29, 45, 74, 0.66);
    font-size: 13px;
    line-height: 1.5;
}
.ui-doc-top-grid{
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 16px;
    align-items: start;
}
.ui-doc-bottom-grid{
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
    gap: 16px;
    align-items: start;
}
.ui-doc-card{
    border: 1px solid rgba(231, 237, 241, 0.92);
    border-radius: 22px;
    padding: 22px 24px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
    box-shadow: 0 10px 28px rgba(29, 45, 74, 0.08);
}
.ui-doc-card-title{
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px !important;
    padding-bottom: 12px;
    font-size: 19px !important;
    font-weight: 600 !important;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--brand-teal) !important;
    border-bottom: 2px solid rgba(0, 139, 139, 0.92);
}
.ui-doc-card-title i{
    color: var(--brand-teal);
}
.ui-doc-shell .input,
.ui-doc-shell .select select,
.dc-form .input,
.dc-form .select select,
.devolucion-documento .input,
.devolucion-documento .select select{
    height: 2.5em;
    border-radius: 10px;
    border: 1px solid #d8e1e8;
    box-shadow: inset 0 1px 2px rgba(29, 45, 74, 0.03);
    background-color: #fff;
    color: var(--brand-navy);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    padding-left: 16px;
    padding-right: 16px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.ui-doc-shell .textarea,
.dc-form .textarea,
.devolucion-documento .textarea{
    border-radius: 12px;
    border: 1px solid #d8e1e8;
    box-shadow: inset 0 1px 2px rgba(29, 45, 74, 0.03);
    color: var(--brand-navy);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.ui-doc-shell label,
.ui-doc-shell .label,
.dc-form label,
.dc-form .label,
.devolucion-documento label,
.devolucion-documento .label{
    display: inline-block;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: var(--brand-navy);
}
.ui-doc-shell .input:hover,
.ui-doc-shell .select select:hover,
.dc-form .input:hover,
.dc-form .select select:hover,
.devolucion-documento .input:hover,
.devolucion-documento .select select:hover{
    border-color: #b9cad4;
}
.ui-doc-shell .input:focus,
.ui-doc-shell .select select:focus,
.ui-doc-shell .textarea:focus,
.dc-form .input:focus,
.dc-form .select select:focus,
.dc-form .textarea:focus,
.devolucion-documento .input:focus,
.devolucion-documento .select select:focus,
.devolucion-documento .textarea:focus{
    border-color: rgba(0, 139, 139, 0.86);
    box-shadow: 0 0 0 0.16em rgba(0, 139, 139, 0.14);
}
.ui-doc-shell .select:not(.is-multiple):not(.is-loading)::after,
.dc-form .select:not(.is-multiple):not(.is-loading)::after,
.devolucion-documento .select:not(.is-multiple):not(.is-loading)::after{
    border-color: var(--brand-teal);
    right: 1.25em;
}
.ui-doc-shell .field.has-addons,
.dc-form .field.has-addons,
.devolucion-documento .field.has-addons{
    align-items: stretch;
}
.ui-doc-shell .field.has-addons .control.is-expanded,
.dc-form .field.has-addons .control.is-expanded,
.devolucion-documento .field.has-addons .control.is-expanded{
    flex: 1 1 auto;
}
.ui-doc-shell .field.has-addons .button.is-success,
.dc-form .field.has-addons .button.is-success,
.devolucion-documento .field.has-addons .button.is-success{
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    width: 52px;
    min-width: 52px;
    padding: 0;
    border: 1px solid transparent;
    box-sizing: border-box;
    border-radius: 0 10px 10px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: linear-gradient(180deg, #14b8bc 0%, var(--brand-teal) 100%);
    box-shadow: none;
    vertical-align: top;
}
.ui-doc-shell .field.has-addons .button.is-success .icon,
.dc-form .field.has-addons .button.is-success .icon,
.devolucion-documento .field.has-addons .button.is-success .icon{
    margin: 0 !important;
}
.ui-doc-shell .field.has-addons .button.is-success .icon i,
.dc-form .field.has-addons .button.is-success .icon i,
.devolucion-documento .field.has-addons .button.is-success .icon i{
    font-size: 18px;
    line-height: 1;
}
.ui-doc-shell .checkbox,
.dc-form .checkbox,
.devolucion-documento .checkbox{
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--brand-navy);
}
.ui-doc-shell .checkbox input,
.dc-form .checkbox input,
.devolucion-documento .checkbox input{
    width: 18px;
    height: 18px;
    accent-color: var(--brand-teal);
}
.ui-doc-table.table,
.dc-table.table,
.dc-detail-static-table.table,
.devolucion-detalle-table.table,
.devolucion-cxp-table.table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
}
.ui-doc-table.table thead th,
.dc-table.table thead th,
.dc-detail-static-table.table thead th,
.devolucion-detalle-table.table thead th,
.devolucion-cxp-table.table thead th{
    background: rgba(0, 139, 139, 0.06);
    color: var(--brand-teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--ui-border);
}
.ui-doc-table.table tbody td,
.dc-table.table tbody td,
.dc-detail-static-table.table tbody td,
.devolucion-detalle-table.table tbody td,
.devolucion-cxp-table.table tbody td{
    color: var(--brand-navy);
    border-bottom: 1px solid rgba(231, 237, 241, 0.88);
    vertical-align: middle;
}
.sale-productos-box{
    border: 1px solid rgba(231, 237, 241, 0.92);
    border-radius: 22px;
    padding: 24px 30px 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
    box-shadow: 0 10px 28px rgba(29, 45, 74, 0.08);
}
.sale-productos-toolbar{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0.75rem;
}
.sale-detalle-table{
    table-layout: fixed;
}
.sale-detalle-table th,
.sale-detalle-table td{
    vertical-align: middle;
}
.sale-detalle-table .input,
.sale-detalle-table .select select{
    min-width: 0;
}
.sale-detalle-linea{
    width: 48px;
}
.sale-detalle-codigo{
    width: 90px;
}
.sale-detalle-descripcion{
    width: 310px;
}
.sale-detalle-bodega,
.sale-detalle-unidad{
    width: 72px;
}
.sale-detalle-cantidad{
    width: 72px;
}
.sale-detalle-precio,
.sale-detalle-descuento,
.sale-detalle-itbis,
.sale-detalle-subtotal{
    width: 92px;
}
.sale-detalle-accion{
    width: 62px;
}
.sale-detalle-add-row td{
    background: #fafafa;
}
.sale-productos-box .sale-detalle-table.table thead th{
    background: #f5f5f5;
    color: #363636;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: normal;
    text-transform: none;
    position: static;
    top: auto;
    z-index: auto;
    white-space: nowrap;
    border-bottom: 1px solid #dbdbdb;
}
.sale-productos-box .sale-detalle-table.table tbody td,
.sale-productos-box .sale-detalle-table.table tfoot td{
    color: #4a4a4a;
    border-bottom: 1px solid #dbdbdb;
    white-space: nowrap;
}
.sale-productos-box .sale-detalle-table .input.is-small{
    min-width: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.sale-productos-box .sale-detalle-table td:first-child{
    width: 48px;
    white-space: nowrap;
}
.sale-productos-box .sale-detalle-scroll{
    max-height: none;
    overflow-y: visible;
    overflow-x: auto;
}
.ui-product-detail-card{
    border: 1px solid rgba(221, 228, 235, 0.98);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(29, 45, 74, 0.05);
    overflow: hidden;
    padding: 14px 16px 12px !important;
}
.ui-product-detail-card .ui-form-section-title{
    margin-bottom: 10px;
}
.ui-product-detail-toolbar{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0 8px;
}
.ui-product-detail-search-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(186, 196, 255, 0.65);
    border-radius: 5px;
    background: linear-gradient(180deg, #f5f6ff 0%, #ecefff 100%);
    color: #4963d6;
    font-size: 13px;
    font-weight: 500;
    box-shadow: none;
}
.ui-product-detail-search-btn:hover,
.ui-product-detail-search-btn:focus{
    color: #3c54c0;
    border-color: rgba(152, 167, 255, 0.8);
    background: linear-gradient(180deg, #eef1ff 0%, #e6ebff 100%);
}
.ui-product-detail-table-wrap{
    padding: 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(120, 130, 148, 0.65) rgba(0, 0, 0, 0.04);
}
.ui-product-detail-table.table{
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
    background: #fff;
    margin-bottom: 0 !important;
}
.ui-product-detail-table.table thead th{
    background: #f6f7f9;
    color: #495057;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    border: 1px solid #dfe5eb;
    padding: 5px 6px;
    white-space: nowrap;
}
.ui-product-detail-table.table tbody td,
.ui-product-detail-table.table tfoot td{
    border: 1px solid #e1e7ee;
    padding: 3px 5px;
    vertical-align: middle;
    background: #fff;
}
.ui-product-detail-table.table tbody td.has-text-centered,
.ui-product-detail-table.table tfoot td.has-text-centered{
    padding-left: 4px;
    padding-right: 4px;
}
.ui-product-detail-table.table .input.is-small{
    min-height: 26px;
    height: 26px;
    padding: 0 7px;
    border-radius: 3px;
    border-color: #d9e0e7;
    box-shadow: none;
    font-size: 12px;
    background: #fff;
}
.ui-product-detail-table.table .input.is-small[readonly]{
    background: #fbfcfe;
    color: #516071;
}
.ui-product-detail-table.table .input.is-small:focus{
    border-color: rgba(0, 139, 139, 0.55);
    box-shadow: 0 0 0 1px rgba(0, 139, 139, 0.12);
}
.ui-product-detail-delete-btn{
    width: 26px;
    height: 26px;
    min-width: 26px;
    padding: 0;
    border-radius: 3px;
    border: 1px solid rgba(255, 196, 196, 0.9);
    background: #fff4f4;
    color: #e11d48;
    box-shadow: none;
}
.ui-product-detail-delete-btn:hover,
.ui-product-detail-delete-btn:focus{
    background: #ffe9e9;
    color: #c5163e;
    border-color: rgba(248, 163, 163, 0.95);
}
.ui-product-detail-add-row td{
    background: #fbfcfd !important;
}
.ui-product-detail-add-btn{
    width: 28px;
    height: 26px;
    min-width: 28px;
    padding: 0;
    border-radius: 3px;
    border: 1px solid rgba(186, 196, 255, 0.8);
    background: linear-gradient(180deg, #f5f6ff 0%, #ecefff 100%);
    color: #4963d6;
    box-shadow: none;
}
.ui-product-detail-add-btn:hover,
.ui-product-detail-add-btn:focus{
    color: #3c54c0;
    background: linear-gradient(180deg, #eef1ff 0%, #e6ebff 100%);
    border-color: rgba(152, 167, 255, 0.9);
}
.ui-product-detail-table-wrap::-webkit-scrollbar{
    height: 8px;
}
.ui-product-detail-table-wrap::-webkit-scrollbar-track{
    background: rgba(0, 0, 0, 0.04);
    border-radius: 999px;
}
.ui-product-detail-table-wrap::-webkit-scrollbar-thumb{
    background: rgba(120, 130, 148, 0.65);
    border-radius: 999px;
}
.ui-product-detail-table.table tbody td:first-child,
.ui-product-detail-table.table tfoot td:first-child{
    text-align: center;
    white-space: nowrap;
}
.ui-product-detail-table.table th:nth-child(1),
.ui-product-detail-table.table td:nth-child(1){
    width: 4%;
}
.ui-product-detail-table.table th:nth-child(2),
.ui-product-detail-table.table td:nth-child(2){
    width: 8%;
}
.ui-product-detail-table.table th:nth-child(3),
.ui-product-detail-table.table td:nth-child(3){
    width: 29%;
}
.ui-product-detail-table.table th:nth-child(4),
.ui-product-detail-table.table td:nth-child(4){
    width: 8%;
}
.ui-product-detail-table.table th:nth-child(5),
.ui-product-detail-table.table td:nth-child(5),
.ui-product-detail-table.table th:nth-child(6),
.ui-product-detail-table.table td:nth-child(6),
.ui-product-detail-table.table th:nth-child(7),
.ui-product-detail-table.table td:nth-child(7),
.ui-product-detail-table.table th:nth-child(8),
.ui-product-detail-table.table td:nth-child(8),
.ui-product-detail-table.table th:nth-child(9),
.ui-product-detail-table.table td:nth-child(9),
.ui-product-detail-table.table th:nth-child(10),
.ui-product-detail-table.table td:nth-child(10){
    width: 8%;
}
.ui-product-detail-table.table th:nth-child(11),
.ui-product-detail-table.table td:nth-child(11){
    width: 5%;
}
@media (min-width: 992px){
    .ui-product-detail-table.table{
        min-width: 0;
        table-layout: fixed;
    }
}
.ui-doc-total-row,
.dc-total-row,
.devolucion-totales-fila{
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.ui-doc-total-row label,
.dc-total-row label,
.devolucion-totales-fila label{
    margin-bottom: 0;
    font-weight: 700;
}
.ui-doc-total-dual,
.devolucion-totales-dual{
    display: grid;
    grid-template-columns: minmax(98px, 118px) auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}
.ui-doc-total-main,
.devolucion-totales-total{
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding-top: 8px;
}
.ui-doc-total-main label,
.devolucion-totales-total label{
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-teal);
}
.ui-doc-total-main .input,
.devolucion-totales-total .input{
    font-size: 22px;
    font-weight: 700;
    text-align: right;
}
.ui-doc-actions,
.devolucion-acciones{
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.ui-doc-readonly .input[readonly],
.ui-doc-readonly .textarea[readonly],
.ui-doc-readonly .select select[disabled],
.dc-detail-readonly .input[readonly],
.dc-detail-readonly .textarea[readonly],
.devolucion-detail-readonly .input[readonly],
.devolucion-detail-readonly .textarea[readonly]{
    background: #f8fafc;
    color: #334155;
    border-color: #dbe3ef;
    box-shadow: none;
}
.ui-doc-readonly .ui-doc-table .input[readonly],
.dc-detail-readonly .dc-table .input[readonly],
.devolucion-detail-readonly .table .input[readonly]{
    background: #fff;
}
.ui-doc-list-page{
    padding-top: 10px !important;
}
.ui-doc-list-card{
    background: #fff;
    border: 1px solid rgba(231, 237, 241, 0.92);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(29, 45, 74, 0.08);
    overflow: hidden;
}
.ui-doc-list-pill{
    display: inline-flex;
    align-items: center;
    padding: .28rem .72rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
}
.ui-doc-list-pill.is-soft{
    background: rgba(0, 139, 139, 0.1);
    color: var(--brand-teal);
}
.ui-doc-list-pill.is-success{
    background: #ecfdf5;
    color: #047857;
}
.ui-product-search-modal .modal-card{
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(29, 45, 74, 0.18);
}
.ui-product-search-modal .modal-card-head{
    background: linear-gradient(180deg, rgba(233, 248, 248, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-bottom: 1px solid var(--ui-border);
    padding: 18px 22px;
}
.ui-product-search-modal .modal-card-title{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--brand-teal);
}
.ui-product-search-modal .modal-card-title i{
    color: var(--brand-teal);
}
.ui-product-search-modal .modal-card-body{
    padding: 24px 22px 22px;
    background: #fff;
}
.ui-product-search-intro{
    margin: 0 0 16px;
    color: rgba(29, 45, 74, 0.68);
    font-size: 13px;
    line-height: 1.5;
}
.ui-product-search-actions{
    display: flex;
    justify-content: flex-start;
    margin: 14px 0 0;
}
.ui-product-search-results{
    margin-top: 16px;
}
.ui-product-search-table.table{
    border-collapse: separate;
    border-spacing: 0;
}
.ui-product-search-table.table tbody tr:hover{
    background: rgba(233, 248, 248, 0.55);
}
.ui-product-search-table.table td{
    vertical-align: middle;
    border-bottom: 1px solid rgba(231, 237, 241, 0.88);
}
.ui-product-search-name{
    color: var(--brand-navy);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}
.ui-product-search-meta{
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-top: 6px;
    color: rgba(29, 45, 74, 0.72);
    font-size: 12.5px;
    font-weight: 600;
}
.ui-product-search-meta span{
    white-space: nowrap;
}
@media (max-width: 991px){
    .ui-doc-top-grid,
    .ui-doc-bottom-grid{
        grid-template-columns: 1fr;
    }
    .ui-product-detail-toolbar{
        padding: 8px 0 8px;
    }
    .ui-product-detail-table-wrap{
        padding: 0;
    }
    .ui-product-detail-card{
        padding: 14px 14px 12px !important;
    }
    .ui-product-detail-table.table{
        min-width: 920px;
    }
}
.ui-config-page{
    padding-top: 10px !important;
}
.ui-config-card{
    border: 1px solid rgba(231, 237, 241, 0.92);
    border-radius: 22px;
    padding: 22px 26px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
    box-shadow: 0 10px 28px rgba(29, 45, 74, 0.08);
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}
.ui-config-card-title{
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px !important;
    padding-bottom: 12px;
    font-size: 19px !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    line-height: 1.25;
    color: var(--brand-teal) !important;
    border-bottom: 2px solid rgba(0, 139, 139, 0.92);
}
.ui-config-card-title i{
    color: var(--brand-teal);
}
.ui-config-card-subtitle{
    margin: 0 0 12px !important;
    color: var(--brand-navy) !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.3;
}
.ui-config-summary-title{
    margin: 0 0 18px !important;
    color: var(--brand-navy) !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    line-height: 1.25;
    text-align: center;
}
.ui-config-avatar-wrap{
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}
.ui-config-avatar-wrap img{
    border: 3px solid rgba(0, 139, 139, 0.24);
    box-shadow: 0 10px 24px rgba(29, 45, 74, 0.12);
}
.ui-config-copy{
    color: rgba(29, 45, 74, 0.80);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}
.ui-config-copy strong{
    color: var(--brand-navy);
}
.ui-config-notice{
    border: 1px solid rgba(0, 139, 139, 0.16);
    border-radius: 18px;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(233, 248, 248, 0.95) 0%, rgba(244, 251, 251, 0.98) 100%);
    box-shadow: 0 8px 20px rgba(29, 45, 74, 0.06);
}
.ui-config-notice .title,
.ui-config-notice .subtitle,
.ui-config-notice p{
    color: var(--brand-navy) !important;
}
.ui-config-notice .title{
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.3;
}
.ui-config-notice p{
    font-size: 15px;
    line-height: 1.6;
}
.ui-config-notice .tag,
.ui-config-role-tag.tag{
    border-radius: 999px;
    font-weight: 600;
}
.ui-config-role-list{
    color: var(--brand-navy);
}
.ui-config-role-list .button{
    border-radius: 999px;
}
.ui-config-table.table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
}
.ui-config-table.table thead th{
    color: var(--brand-navy);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    border-bottom: 1px solid var(--ui-border);
    background: rgba(0, 139, 139, 0.05);
}
.ui-config-table.table tbody td{
    color: var(--brand-navy);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    border-bottom: 1px solid rgba(231, 237, 241, 0.88);
    vertical-align: middle;
}
.ui-config-table.table.is-striped tbody tr:not(.is-selected):nth-child(even){
    background-color: rgba(244, 251, 251, 0.8);
}
.ui-config-table.table.is-hoverable tbody tr:hover{
    background-color: rgba(233, 248, 248, 0.9) !important;
}
.ui-config-permissions-grid .checkbox.card{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid rgba(231, 237, 241, 0.96);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 251, 251, 0.96) 100%);
    box-shadow: 0 6px 14px rgba(29, 45, 74, 0.05);
    padding: 16px 18px !important;
}
.ui-config-permissions-grid .checkbox.card input{
    margin-top: 4px;
    accent-color: var(--brand-teal);
}
.ui-config-permissions-grid .checkbox.card strong{
    color: var(--brand-navy);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}
.ui-config-permissions-grid .checkbox.card small{
    color: rgba(29, 45, 74, 0.64) !important;
    font-size: 12.5px;
    line-height: 1.45;
}
.ui-config-actions{
    margin-top: 18px;
}
.ui-config-actions .button{
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 18px rgba(29, 45, 74, 0.10);
}
.ui-config-photo-grid{
    align-items: stretch;
}
.ui-config-photo-grid .column{
    display: flex;
}
.ui-config-photo-grid .ui-config-card{
    width: 100%;
}
.ui-config-centered-file{
    display: flex;
    justify-content: center;
}
.ui-config-divider{
    height: 1px;
    border: 0;
    background: var(--ui-border);
    margin: 16px 0 18px;
}

/*=====================================================
                Compact List System
======================================================*/
.sale-list-bootstrap .sale-list-card,
.entity-list-bootstrap .entity-list-card,
.product-list-bootstrap .product-list-card,
.user-list-bootstrap .user-list-card,
.cashier-list-bootstrap .cashier-list-card,
.category-list-bootstrap .category-list-card,
.compra-list-bootstrap .compra-list-card,
.devolucion-list-bootstrap .devolucion-list-card,
.dc-list-card,
.cxc-list-bootstrap .cxc-list-card,
.cxp-list-bootstrap .cxp-list-card{
    border-radius: 1rem !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05) !important;
}

.sale-list-bootstrap .sale-list-head,
.sale-list-bootstrap .sale-list-row,
.entity-list-bootstrap .entity-list-head,
.entity-list-bootstrap .entity-list-row,
.product-list-bootstrap .product-list-head,
.product-list-bootstrap .product-list-row,
.user-list-bootstrap .user-list-head,
.user-list-bootstrap .user-list-row,
.cashier-list-bootstrap .cashier-list-head,
.cashier-list-bootstrap .cashier-list-row,
.category-list-bootstrap .category-list-head,
.category-list-bootstrap .category-list-row,
.compra-list-bootstrap .compra-list-head,
.compra-list-bootstrap .compra-list-row,
.devolucion-list-bootstrap .devolucion-list-head,
.devolucion-list-bootstrap .devolucion-list-row,
.dc-list-head,
.dc-list-row,
.cxc-list-bootstrap .cxc-list-head,
.cxc-list-bootstrap .cxc-list-row,
.cxp-list-bootstrap .cxp-list-head,
.cxp-list-bootstrap .cxp-list-row{
    column-gap: .78rem !important;
}

.sale-list-bootstrap .sale-list-head,
.entity-list-bootstrap .entity-list-head,
.product-list-bootstrap .product-list-head,
.user-list-bootstrap .user-list-head,
.cashier-list-bootstrap .cashier-list-head,
.category-list-bootstrap .category-list-head,
.compra-list-bootstrap .compra-list-head,
.devolucion-list-bootstrap .devolucion-list-head,
.dc-list-head,
.cxc-list-bootstrap .cxc-list-head,
.cxp-list-bootstrap .cxp-list-head{
    padding: .82rem 1.2rem .58rem !important;
}

.sale-list-bootstrap .sale-list-row,
.entity-list-bootstrap .entity-list-row,
.product-list-bootstrap .product-list-row,
.user-list-bootstrap .user-list-row,
.cashier-list-bootstrap .cashier-list-row,
.category-list-bootstrap .category-list-row,
.compra-list-bootstrap .compra-list-row,
.devolucion-list-bootstrap .devolucion-list-row,
.dc-list-row,
.cxc-list-bootstrap .cxc-list-row,
.cxp-list-bootstrap .cxp-list-row{
    padding: .72rem 1.2rem !important;
}

.sale-list-bootstrap .sale-list-head span,
.entity-list-bootstrap .entity-list-head span,
.product-list-bootstrap .product-list-head span,
.user-list-bootstrap .user-list-head span,
.cashier-list-bootstrap .cashier-list-head span,
.category-list-bootstrap .category-list-head span,
.compra-list-bootstrap .compra-list-head span,
.devolucion-list-bootstrap .devolucion-list-head span,
.dc-list-head span,
.cxc-list-bootstrap .cxc-list-head span,
.cxp-list-bootstrap .cxp-list-head span{
    font-size: .68rem !important;
    letter-spacing: .075em !important;
}

.sale-list-bootstrap .sale-main,
.entity-list-bootstrap .entity-main,
.product-list-bootstrap .product-main,
.user-list-bootstrap .user-main,
.cashier-list-bootstrap .cashier-main,
.category-list-bootstrap .category-main,
.compra-list-bootstrap .compra-main,
.devolucion-list-bootstrap .devolucion-main,
.dc-main,
.cxc-list-bootstrap .cxc-main,
.cxp-list-bootstrap .cxp-main{
    gap: .72rem !important;
}

.sale-list-bootstrap .sale-avatar,
.entity-list-bootstrap .entity-avatar,
.product-list-bootstrap .product-avatar,
.user-list-bootstrap .user-avatar,
.cashier-list-bootstrap .cashier-avatar,
.category-list-bootstrap .category-avatar,
.compra-list-bootstrap .compra-avatar,
.devolucion-list-bootstrap .devolucion-avatar,
.dc-avatar,
.cxc-list-bootstrap .cxc-avatar,
.cxp-list-bootstrap .cxp-avatar{
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    flex-basis: 40px !important;
    font-size: .9rem !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12) !important;
}

.product-list-bootstrap .product-avatar img{
    border-radius: 12px !important;
}

.sale-list-bootstrap .sale-title,
.entity-list-bootstrap .entity-title,
.product-list-bootstrap .product-title,
.user-list-bootstrap .user-title,
.cashier-list-bootstrap .cashier-title,
.category-list-bootstrap .category-title,
.compra-list-bootstrap .compra-title,
.devolucion-list-bootstrap .devolucion-title,
.dc-title,
.cxc-list-bootstrap .cxc-title,
.cxp-list-bootstrap .cxp-title,
.sale-list-bootstrap .sale-total,
.product-list-bootstrap .product-status,
.cashier-list-bootstrap .cashier-total,
.compra-list-bootstrap .compra-total,
.devolucion-list-bootstrap .devolucion-total,
.cxc-list-bootstrap .cxc-total,
.cxp-list-bootstrap .cxp-total{
    font-size: .95rem !important;
    line-height: 1.2 !important;
}

.sale-list-bootstrap .sale-subtitle,
.sale-list-bootstrap .sale-meta-text,
.sale-list-bootstrap .sale-contact-text,
.entity-list-bootstrap .entity-subtitle,
.entity-list-bootstrap .entity-meta-text,
.entity-list-bootstrap .entity-contact-text,
.product-list-bootstrap .product-subtitle,
.product-list-bootstrap .product-meta-text,
.product-list-bootstrap .product-contact-text,
.user-list-bootstrap .user-subtitle,
.user-list-bootstrap .user-meta-text,
.cashier-list-bootstrap .cashier-subtitle,
.cashier-list-bootstrap .cashier-meta-text,
.category-list-bootstrap .category-subtitle,
.category-list-bootstrap .category-meta-text,
.compra-list-bootstrap .compra-subtitle,
.compra-list-bootstrap .compra-meta-text,
.devolucion-list-bootstrap .devolucion-subtitle,
.devolucion-list-bootstrap .devolucion-meta-text,
.dc-subtitle,
.dc-meta-text,
.cxc-list-bootstrap .cxc-subtitle,
.cxc-list-bootstrap .cxc-meta-text,
.cxp-list-bootstrap .cxp-subtitle,
.cxp-list-bootstrap .cxp-meta-text{
    font-size: .8rem !important;
    margin-top: .08rem !important;
    line-height: 1.35 !important;
}

.sale-list-bootstrap .sale-pill,
.entity-list-bootstrap .entity-pill,
.product-list-bootstrap .product-pill,
.user-list-bootstrap .user-pill,
.cashier-list-bootstrap .cashier-pill,
.category-list-bootstrap .category-pill,
.compra-list-bootstrap .compra-pill,
.devolucion-list-bootstrap .devolucion-pill,
.dc-pill,
.cxc-list-bootstrap .cxc-pill,
.cxp-list-bootstrap .cxp-pill{
    padding: .24rem .62rem !important;
    font-size: .74rem !important;
    margin-bottom: .18rem !important;
    gap: .32rem !important;
}

.product-list-bootstrap .product-status-dot,
.entity-list-bootstrap .entity-status-dot{
    width: 30px !important;
    height: 18px !important;
}

.product-list-bootstrap .product-status-dot::after,
.entity-list-bootstrap .entity-status-dot::after{
    width: 12px !important;
    height: 12px !important;
    top: 3px !important;
    left: 3px !important;
}

.product-list-bootstrap .product-status-dot.is-active::after,
.entity-list-bootstrap .entity-status-dot.is-active::after{
    left: 15px !important;
}

.sale-list-bootstrap .sale-actions,
.entity-list-bootstrap .entity-actions,
.product-list-bootstrap .product-actions,
.user-list-bootstrap .user-actions,
.cashier-list-bootstrap .cashier-actions,
.category-list-bootstrap .category-actions,
.compra-list-bootstrap .compra-actions,
.devolucion-list-bootstrap .devolucion-actions,
.dc-actions,
.cxc-list-bootstrap .cxc-actions,
.cxp-list-bootstrap .cxp-actions{
    gap: .38rem !important;
}

.sale-list-bootstrap .sale-action-btn,
.entity-list-bootstrap .entity-action-btn,
.product-list-bootstrap .product-action-btn,
.user-list-bootstrap .user-action-btn,
.cashier-list-bootstrap .cashier-action-btn,
.category-list-bootstrap .category-action-btn,
.compra-list-bootstrap .compra-action-btn,
.devolucion-list-bootstrap .devolucion-action-btn,
.dc-action-btn,
.cxc-list-bootstrap .cxc-action-btn,
.cxp-list-bootstrap .cxp-action-btn{
    width: 32px !important;
    height: 32px !important;
    border-radius: .62rem !important;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05) !important;
}

.sale-list-bootstrap .sale-search-card,
.entity-list-bootstrap .entity-search-card,
.product-list-bootstrap .product-search-card{
    border-radius: 1rem !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05) !important;
    padding: .95rem 1rem !important;
    margin-bottom: 1rem !important;
}

.sale-list-bootstrap .sale-search-label,
.entity-list-bootstrap .entity-search-label,
.product-list-bootstrap .product-search-label{
    font-size: .72rem !important;
    margin-bottom: .5rem !important;
}

.sale-list-bootstrap .sale-search-hint,
.entity-list-bootstrap .entity-search-hint,
.product-list-bootstrap .product-search-hint{
    font-size: .8rem !important;
    margin-top: .55rem !important;
}

.sale-list-bootstrap .sale-search-summary,
.entity-list-bootstrap .entity-search-summary,
.product-list-bootstrap .product-search-summary{
    border-radius: .9rem !important;
    padding: .7rem .9rem !important;
}

.sale-list-bootstrap .sale-search-form,
.entity-list-bootstrap .entity-search-form,
.product-list-bootstrap .product-search-form{
    gap: .65rem !important;
}

.sale-list-bootstrap .sale-search-input,
.entity-list-bootstrap .entity-search-input,
.product-list-bootstrap .product-search-input{
    height: 44px !important;
    border-radius: .9rem !important;
    padding: 0 .95rem !important;
    font-size: .92rem !important;
}

.sale-list-bootstrap .sale-search-button,
.entity-list-bootstrap .entity-search-button,
.product-list-bootstrap .product-search-button{
    height: 44px !important;
    border-radius: .9rem !important;
    padding: 0 1.05rem !important;
    font-size: .88rem !important;
}

.sale-list-bootstrap .sale-search-clear,
.entity-list-bootstrap .entity-search-clear,
.product-list-bootstrap .product-search-clear{
    border-radius: .82rem !important;
    padding: .5rem .88rem !important;
    font-size: .82rem !important;
}

/*=====================================================
                    Media  Queries
======================================================*/
@media (max-width: 750px){
    .navLateral{
        pointer-events: none;
        opacity: 0;
        width: 0;
        border-right: none;
    }
    .navLateral-change{
        width: 248px;
        pointer-events: auto;
        opacity: 1;
        border-right: 1px solid var(--ui-border);
    }
    .pageContent{
        width: 100%;
    }
    .pageContent-change{
       width: calc(100% - 248px);
    }
    .navLateral-brand{
        padding-top: 14px;
    }
    .navLateral-brand-logo{
        max-width: 142px;
    }
    .ui-form-page-header .subtitle,
    .client-form-page-header .subtitle{
        font-size: 23px;
        gap: 14px;
    }
    .ui-form-card,
    .client-form-card{
        padding: 18px 18px 20px;
        border-radius: 18px;
    }
    .ui-form-section-title,
    .client-form-section-title{
        font-size: 17px !important;
    }
    .ui-config-card{
        padding: 18px 18px 20px;
        border-radius: 18px;
    }
    .ui-config-card-title{
        font-size: 17px !important;
    }
    .ui-form .input,
    .ui-form .select select,
    .ui-form .field.has-addons .button.is-success,
    .client-form-ui .input,
    .client-form-ui .select select,
    .client-form-ui .field.has-addons .button.is-success{
        height: 40px;
    }
    .ui-doc-shell .field.has-addons .button.is-success,
    .dc-form .field.has-addons .button.is-success,
    .devolucion-documento .field.has-addons .button.is-success{
        height: 40px;
        min-height: 40px;
        max-height: 40px;
    }
    .ui-form-actions .button,
    .client-form-actions .button{
        min-width: 0;
        width: 100%;
        margin: 0 0 10px !important;
    }
    .ui-config-actions .button{
        width: 100%;
        margin-bottom: 10px;
    }
}
