@charset "utf-8";
/* CSS Document */
:root {
    --primary: #E2639F;
    --secondary: #E8168C;
    --title-color: #1E2939;
    --subtitle-color: #666;
    --text-color: #1E2939;
    --input-placeholder-color: #ADADAD;
    --input-text-color: #888888;
    --checkbox-color: #E8168C;
    --label-color: #2B2B2B;
    --label-color-hover: #1E2939;
    --red: #FF0000;
}

/* inter-300 - latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/inter-v20-latin-300.woff2') format('woff2'),
    url('../fonts/inter-v20-latin-300.ttf') format('truetype');
}

/* inter-regular - latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2'),
    url('../fonts/inter-v20-latin-regular.ttf') format('truetype');
}

/* inter-500 - latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/inter-v20-latin-500.woff2') format('woff2'),
    url('../fonts/inter-v20-latin-500.ttf') format('truetype');
}

/* inter-600 - latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/inter-v20-latin-600.woff2') format('woff2'),
    url('../fonts/inter-v20-latin-600.ttf') format('truetype');
}

/* inter-700 - latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inter-v20-latin-700.woff2') format('woff2'),
    url('../fonts/inter-v20-latin-700.ttf') format('truetype');
}

/* inter-800 - latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/inter-v20-latin-800.woff2') format('woff2'),
    url('../fonts/inter-v20-latin-800.ttf') format('truetype');
}

/* inter-900 - latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/inter-v20-latin-900.woff2') format('woff2'),
    url('../fonts/inter-v20-latin-900.ttf') format('truetype');
}

/*FIN FONT-FACE*/
p {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

.cke_chrome {
    border-color: var(--secondary) !important;
    border-radius: 10px;
    overflow: hidden;
}

@-webkit-keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-moz-keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-o-keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-ms-keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

html {
    height: 100%;
    scroll-padding-top: 100px;
}

html.no-scroll {
    overflow: hidden;
}

::-moz-selection { /* Code for Firefox */
    color: #FFF;
    background: var(--primary);
}

::selection {
    color: #FFF;
    background: var(--primary);
}

/* CKEDITOR GESTINA */
.cke_editable {
    font-family: "Inter", serif;
    font-weight: 400 !important;
    overflow: auto;
    font-size: 15px;
    color: var(--input-text-color) !important;
}

.ui-widget {
    font-family: "Inter", Arial, sans-serif !important;
}

.ui-widget-header {

    border: 1px solid var(--primary) !important;
    background: var(--primary);
    background-position-x: 0;
    background-position-y: 0;
    color: #FFF;
    font-weight: bold;
    position: absolute;
}

.ui-widget-header {
    color: white;
}

.ui-widget-header .ui-icon {
    background-color: white;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border-color: var(--primary);
    background-color: var(--primary);
}

a.ui-corner-all.ui-state-hover {
    background: none;
    border: none;
}

a.ui-corner-all.ui-state-hover .ui-icon {
    background-color: #ccc;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 1px solid #e1e1e1;
    color: #1E2939;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid var(--secondary);
    background: var(--secondary);
    color: #FFF;
}

.ui-datepicker .ui-datepicker-title {
    font-size: 17px;
}

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover, .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    top: 2px !important;
}

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-prev {
    left: 0 !important;
}

.ui-datepicker .ui-datepicker-next {
    right: 0 !important;
}

.ui-widget-header .ui-icon {
    background-image: url("../img/iconos/circle-left.svg");
    background-color: transparent !important;
    background-size: 17px;
    background-position: 0;
    width: 20px;
    height: 20px;
}

.ui-datepicker-next .ui-icon {
    background-image: url("../img/iconos/circle-right.svg");
}

strong {
    font-weight: 600
}

/* FIX margin listas*/
.cke_editable {
    overflow-y: auto;
}

.cke_editable, .cke_editable li {
    margin: 20px;
}

.cke_editable strong {
    font-weight: bold;
}

* {
    padding: 0;
    margin: 0;
    outline: none;
}

body {
    font-family: "Inter", serif;
    font-weight: 400;
    padding: 0;
    font-size: 16px;
    color: var(--text-color);
    line-height: normal;
    /*overflow: hidden;*/
    padding-right: 0 !important;
}

body:not(.cke_editable) {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wow {
    visibility: hidden;
}

/*AUTOCOMPLETE*/
.ui-autocomplete {
    position: absolute;
    max-height: 250px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    width: 250px;
    z-index: 9900000999;
    background-color: white !important;
    border: 1px solid #DCDCDC !important;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
}

.ui-menu .ui-menu-item-wrapper {
    font-size: 1rem;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border-color: #ECECEC;
    background: #ECECEC;
    font-weight: normal;
    color: #666666 !important;
    margin: 0 !important;
    border: none !important;
}

.ui-autocomplete .ui-menu-item-wrapper {
    position: relative;
    padding: 11px 20px;
    color: #999999;
    font-size: 16px;
    cursor: pointer;
}

.ui-autocomplete-clientes .ui-menu-item:last-child {
    background: var(--secondary);
    color: #FFF;
    font-weight: 600;
}

.ui-autocomplete-clientes .ui-menu-item:last-child .ui-menu-item-wrapper {
    color: #FFF;
}

.ui-autocomplete-clientes .ui-menu-item:last-child .ui-menu-item-wrapper::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border: 1px solid #FFF;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.ui-menu .ui-menu-item {
    display: block;
}

/* IE 6 doesn't support max-height
* we use height instead, but this forces the menu to always be this tall
*/
* html .ui-autocomplete {
    height: 250px;
}

.ui-autocomplete-loading {
    background: white url("https://jqueryui.com/resources/demos/autocomplete/images/ui-anim_basic_16x16.gif") center right 10px no-repeat !important;
}

/*FIN AUTOCOMPLETE*/

/* INICIO COMUNES */
form {
    overflow: hidden
}

.contenido > .container-fluid {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto
}

.trans-04 {
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.subTituloSeccion {
    word-wrap: break-word;

    color: var(--subtitle-color);

    margin-bottom: 30px;

    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.subTituloSeccion a, .tituloSeccion a {
    color: currentColor;
    transition: all .3s ease-in-out;
}

.subTituloSeccion a:hover, .tituloSeccion a:hover {
    color: var(--primary);
}

.tituloSeccion {
    color: var(--title-color);

    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 2px;
}

.textoSeccion {
    color: var(--text-color);
    word-wrap: break-word;

    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.textoSeccion2 {
    font-size: 25px;
    line-height: 46px;
}

.textoSeccion3 {
    font-size: 16px;
    line-height: 25px;
}

.textoSeccion table {
    /*width: 100%;*/
    max-width: 100%;
    /*text-align: center;*/
    color: var(--text-color);
    margin-bottom: 0 !important;

    border-collapse: collapse;
    border-color: var(--primary);
    /*border-style: hidden; !* hide standard table (collapsed) border *!*/
}

.textoSeccion table td, .textoSeccion table th {
    border-top: 1px solid;
    border-color: var(--primary);
    padding: 8px 10px;
}

.lh-156 {
    line-height: 156%;
}

.textoSeccion a:not(.btnStandard) {
    color: var(--secondary);
    text-decoration: underline;
}

.textoSeccion.white a:not(.btnStandard) {
    color: #FFF;
    text-decoration: underline;
}

.textoSeccion a:not(.btnStandard):hover {
    text-decoration: underline;
}

.textoSeccion strong, .textoSeccion b {
    font-weight: 700;
}

.textoSeccion ul, .textoSeccion ol {
    margin-left: 45px;
    margin-top: 10px;
}

.btnStandard {
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;

    color: #FFF;

    box-sizing: border-box;
    font-size: 14px;
    font-weight: 500;

    background: var(--secondary);

    border: 1px solid var(--secondary);

    border-radius: 10px;

    text-decoration: none !important;
    text-align: center;

    -webkit-transition: all .5s ease-in-out !important;
    transition: all .5s ease-in-out !important;

    padding: 16px;

    /*overflow: hidden;*/
    outline: none;

    path {
        transition: all .3s ease-in-out;
    }
}

.btn-peq {
    padding-top: 10px;
    padding-bottom: 10px;
}

.btn-2 {
    padding: 4px 10px 4px 4px;
    color: var(--secondary);
    background: #FCE7F3;
    border-color: #FCE7F3;
    gap: 4px;
}

.num-flotante {
    position: absolute;
    top: -5px;
    right: -5px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    border-radius: 100px;
    background-color: var(--secondary);
    outline: 1px solid white;

    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-weight: 700;

    padding: 5px;
}

.btnStandard.disabled, .btnStandard[disabled] {
    border-color: #959595 !important;
    background-color: #959595 !important;
    color: #FFFFFF !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.btnStandard:not(.disabled):active, .btnStandard:not(.disabled):hover, .btnStandard:not(.disabled):focus, .active > .btnStandard:not(.disabled), .btnStandard.active, .btn-inv {
    color: var(--secondary);
    background-color: #FFF;

    path {
        stroke: var(--secondary);
    }
}

.btn-inv:not(.disabled):active, .btn-inv:not(.disabled):hover, .btn-inv:not(.disabled):focus, .active > .btn-inv:not(.disabled), .btn-inv.active {
    color: #FFF;
    background-color: var(--secondary);

    path {
        stroke: #FFF;
    }
}

.btn-solo-icono {
    padding: 10px 16px;
    background: var(--secondary);
    border: 1px solid var(--secondary);
    border-radius: 10px;

    svg {
        transition: all .3s ease-in-out;
    }

    path {
        stroke: #FFF
    }

    &:hover svg {
        transform: scale(1.2);
    }
}

.sinResultados {
    color: #777777;
    text-align: center;
    padding: 120px 0;
}

.btnCerrar {
    text-transform: uppercase;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: 100%;
}

.no-scroll {
    overflow: hidden !important;
}

ul, ol {
    padding: 0;
}

input[type='number'] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* FIN COMUNES */

/* INICIO HEADER */
header {
    position: relative;
    z-index: 1111;
    background-color: white;
}

#wrapper {
    flex-grow: 1;
}

.current_section_acceder #wrapper {
    margin-top: 0;
}

.olvidePass, .olvidePass:hover {
    font-size: 15px;
    color: var(--primary) !important;
    display: block;
    text-decoration: underline;
}

.margin-left-3 + .olvidePass {
    margin-left: 28px;
}

body.logged #wrapper {
    display: grid;
    grid-template-columns: 295px minmax(0, 1fr);
    gap: 30px;
    min-height: 100dvh;

    aside {
        position: sticky;
        top: 0;
        left: 0;
        height: 100dvh;
        padding-top: 30px;
    }

    article {
        margin-top: 40px;
        padding-right: 30px;
        padding-bottom: 30px;
    }
}

aside {
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    height: 100%;
    display: flex;
    flex-direction: column;

    .crm-tpv-titulo {
        color: #666;
        font-weight: 400;
    }
}

#menu-web {
    margin-top: 20px;
    border-top: 1px solid #E6E6E6;
    flex-grow: 1;

    display: flex;
    flex-direction: column;
    padding-top: 15px;
    margin-bottom: 10px;
    overflow: auto;

    li {
        padding: 4px 15px;
    }

    a {
        display: flex;
        align-items: center;
        gap: 15px;

        color: #1E2939;
        font-size: 14px;
        font-weight: 500;

        padding: 15px 20px;
        border-radius: 10px;

        transition: all .3s ease-in-out;

        path {
            transition: all .3s ease-in-out;
        }

        &:hover, &.menu-seleccionado {
            background: var(--secondary);
            color: white;

            path {
                stroke: #FFF;
            }
        }
    }

    & li:last-child {
        margin-top: auto;
        border-top: 1px solid #E6E6E6;
        padding-top: 15px;

        a:not(:hover) {
            color: #666;

            path {
                stroke: #666;
            }
        }
    }
}

.num-pedidos-nuevos-web {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    margin-left: auto;
    padding: 0 6px;
    border-radius: 11px;
    background: var(--primary);
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

#aviso-pedidos-nuevos-web {
    position: fixed;
    z-index: 1050;
    top: 20px;
    right: 20px;
    max-width: calc(100vw - 40px);
    padding: 14px 18px;
    border-radius: 10px;
    background: var(--primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
}

#aviso-pedidos-nuevos-web:hover {
    color: #FFF;
    filter: brightness(1.08);
}

/* FIN HEADER */

/* INICIO SECCION LOGIN */
#bloque-acceso {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 600px;

    &, & > img {
        height: 100dvh;
    }
}

.el-osito-titulo {
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 15px;
    margin-top: 20px;
}

.crm-tpv-titulo {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    margin-top: 20px;
}

#bloque-login {
    width: 412px;
    max-width: 100%;
    padding: 12px;
}

#frm-reserva-notas {
    height: 135px;
}

/* FIN SECCION LOGIN */

.ver-todos:hover {
    color: var(--primary);

    path {
        stroke: var(--primary);
    }
}

/* INICIO SECCION INICIO */
.bloque-estadisticas {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 30px;
}

.item-estadistica {
    border-radius: 14px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    padding: 25px;
}

.item-estadistica-icono {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: var(--bg);
    margin-bottom: 15px;
}

.item-estadistica-valor {
    color: #1E2939;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px
}

.item-estadistica-titulo {
    margin-top: 2px;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

#tablas-estadisticas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.item-tabla-estadistica {
    border: 1px solid #E6E6E6;
    border-radius: 14px;
}

.item-tabla-estadistica-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    border-bottom: 1px solid #E6E6E6;

    font-size: 14px;
    font-weight: 600;
    line-height: 20px;

    a {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--secondary);
        font-size: 12px;
        font-weight: 500;
    }
}

.item-tabla-estadistica-body {
    max-height: 315px;
    overflow: auto;
}

.item-tabla-estadistica-body-item {
    padding: 12px 25px;
}

.item-tabla-estadistica-body-item + .item-tabla-estadistica-body-item {
    border-top: 1px solid #E6E6E6;
}

.item-tabla-estadistica-body-item-nombre {
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 4px;

    span {
        font-size: 12px;
    }
}

.item-tabla-estadistica-body-item-producto {
    font-size: 12px;
    line-height: 16px;
    margin-top: 4px;
}

.item-tabla-estadistica-body-item-texto {
    margin-top: 4px;
    color: #666;
    font-size: 12px;
    line-height: 16px;
}

.item-tabla-estadistica-body-item-valor {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;

    .pagado {
        font-size: 12px;
        font-weight: 400;
        margin-top: 3px;
    }
}

.item-dato {
    display: inline-flex;
    padding: 4px 13px;
    justify-content: center;
    align-items: center;

    font-size: 12px;
    line-height: 16px;

    border-radius: 100px;
}

.item-categoria {
    color: #9D0F61;
    background: #FCE7F3;
}

.item-tallas {
    color: #3699FF;
    background: #e1f0ff;
}

.table > thead > tr > th.th-tabs-tabla {
    background-color: white !important;
    padding-top: 2px !important;
    padding-bottom: 4px !important;
}

.tabs-tabla ul {
    margin-bottom: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;

    a, button {
        position: relative;
        color: #1E2939;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        transition: all .3s ease-in-out;
        padding: 15px 22px 15px;

        &::before {
            content: "";
            display: block;
            width: 100%;
            height: 2px;
            background: var(--secondary);
            position: absolute;
            bottom: 0;
            left: 0;
            transform: scaleX(0);
            transition: all .3s ease-in-out;
        }

        &.active, &:hover {
            color: var(--secondary);

            &::before {
                transform: scaleX(1);
            }
        }
    }
}

/* FIN SECCION INICIO */

/* INICIO SECCION CREAR/EDITAR ARTICULO */

#container-tallas-articulo {
    margin-top: 55px;
    padding-top: 10px;
    border-top: 1px solid #E6E6E6;
    overflow-x: auto;
}

#tabla-tallas-articulo {
    width: 100%;
    min-width: 615px;
    border-collapse: separate;
    border-spacing: 9px 6px;
    table-layout: fixed;
}

#tabla-tallas-articulo th {
    padding: 0 0 2px;
    color: #121D34;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
}

#tabla-tallas-articulo th:nth-child(1),
#tabla-tallas-articulo td:nth-child(1) {
    width: 78px;
}

#tabla-tallas-articulo th:nth-child(2),
#tabla-tallas-articulo td:nth-child(2) {
    width: 230px;
}

#tabla-tallas-articulo th:nth-child(3),
#tabla-tallas-articulo td:nth-child(3) {
    width: 88px;
}

#tabla-tallas-articulo th:nth-child(4),
#tabla-tallas-articulo td:nth-child(4) {
    width: 86px;
}

#tabla-tallas-articulo th:nth-child(5),
#tabla-tallas-articulo td:nth-child(5) {
    width: 60px;
}

#tabla-tallas-articulo th:nth-child(6),
#tabla-tallas-articulo td:nth-child(6) {
    width: 20px;
}

#tabla-tallas-articulo td {
    padding: 0;
    vertical-align: middle;
}

#tabla-tallas-articulo .form-control-b {
    height: 30px;
    padding: 4px 9px;
    font-size: 12px !important;
    line-height: 20px;
    border-radius: 4px;
    --input-text-color: #666666;
}

.btn-eliminar-talla-articulo {
    padding: 0;
    border: 0;
    background: transparent;
}

#modal-grupo-tallas-articulo {
    max-height: 68vh;
}

#selector-grupo-tallas-articulo {
    max-height: 48vh;
    padding: 0 12px 4px 0;
}

.item-grupo-tallas-articulo {
    margin-bottom: 6px;
}

.valor-grupo-tallas-articulo {
    margin: 0;
    color: #121D34;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.cabecera-grupo-tallas-articulo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #121D34;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.cabecera-grupo-tallas-articulo .form-check-label,
.valor-grupo-tallas-articulo .form-check-label {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    cursor: pointer;
}

.cabecera-grupo-tallas-articulo .form-checkbox-text,
.valor-grupo-tallas-articulo .form-checkbox-text {
    color: #121D34;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.cabecera-grupo-tallas-articulo .form-check-input:indeterminate ~ .form-check-sign .check:before {
    display: block;
    width: 11px;
    height: 2px;
    margin: auto;
    background: var(--primary);
    content: "";
    transform: none;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.btn-toggle-grupo-tallas-articulo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent;
}

.btn-toggle-grupo-tallas-articulo svg {
    transition: transform .2s ease-in-out;
}

.grupo-tallas-articulo-abierto > .cabecera-grupo-tallas-articulo .btn-toggle-grupo-tallas-articulo svg {
    transform: rotate(90deg);
}

.valores-grupo-tallas-articulo {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    margin: 2px 0 5px 40px;
}

.grupo-tallas-articulo-abierto > .valores-grupo-tallas-articulo {
    display: flex;
}

.item-grupo-tallas-unica {
    padding-bottom: 2px;
}

/* FIN SECCION CREAR/EDITAR ARTICULO */

/* INICIO SECCION RESERVAS */
#pago-reserva-cliente {
    font-size: 14px;
    font-weight: 500;
}

#pago-reserva-telefono {
    color: #666;
    font-size: 12px;
    line-height: 16px;
}

.btn-toggle-active.reserva-pago-regalo {
    border: 0;
    background: transparent;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-toggle-active.reserva-pago-regalo.active {
    color: var(--secondary);
}

.reserva-pago-resumen {
    background: #FDF4FA;
    border: 1px solid #F0E6EF;
    border-radius: 10px;
    margin-top: 15px;
    padding: 15px 20px 10px;
}

.reserva-pago-resumen > div {
    display: flex;
    justify-content: space-between;
    margin: 3px 0;

    color: #666;
    font-size: 14px;

    &:first-child {
        color: var(--text-color);
    }
}

.reserva-pago-linea {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px 14px;

    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;

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

    strong {
        margin-left: auto;
    }

    & + .reserva-pago-linea {
        margin-top: 5px;
    }
}

.reserva-pago-linea span {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.reserva-pago-linea button {
    background: transparent;
    border: 0;
    color: var(--secondary);
}

#pago-reserva-pendiente {
    color: #EF4444;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

#pago-reserva-pagado-container {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.alert {
    z-index: 1000000031 !important;
}

.modal-dialog.modal-cobrar-venta .modal-body {
    padding: 15px 20px 25px;
}

.venta-cobro-resumen {
    background: #FDF4FA;
    border: 1px solid #F0E6EF;
    border-radius: 10px;
    padding: 15px 18px 12px;
}

.venta-cobro-cliente-seleccionado {
    align-items: center;
    background: #FFF;
    border: 1px solid var(--secondary);
    border-radius: 10px;
    color: #333;
    display: flex;
    font-size: 15px;
    justify-content: space-between;
    line-height: 20px;
    min-height: 55px;
    padding: 10px 20px;
}

.venta-cobro-cliente-seleccionado > span {
    min-width: 0;
}

.venta-cobro-cliente-seleccionado button {
    background: transparent;
    border: 0;
    flex-shrink: 0;
    margin-left: 10px;
    padding: 0;
}

#venta-cobro-saldo-container .form-checkbox-text {
    align-items: center;
    display: inline-flex;
    gap: 4px;
}

.venta-cobro-totales {
    margin-top: 8px;
}

.venta-cobro-total-fila {
    color: #666;
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    line-height: 22px;
}

.venta-cobro-total-fila > :last-child {
    margin-left: 15px;
    text-align: right;
}

.venta-cobro-total-intermedio {
    border-top: 1px solid #F0E6EF;
    margin-top: 5px;
    padding-top: 5px;
}

.venta-cobro-total-final {
    color: var(--text-color);
    font-weight: 400;
}

.venta-cobro-descuento-global {
    align-items: center;
    display: flex;
    gap: 25px;
}

.venta-cobro-descuento-global label {
    color: #666;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.venta-cobro-descuento-global .container-descuento-dinamico {
    margin: 0;
    width: 70px;
}

.venta-cobro-descuento-global .container-descuento-dinamico .inp-descuento-dinamico {
    border-radius: 9px !important;
    height: 48px !important;
    padding-right: 25px !important;
    text-align: center;
    width: 70px;
}

.venta-cobro-descuento-global .container-descuento-dinamico .btn-tipo-descuento-dinamico {
    height: 45px;
    border-radius: 20px;
}

.venta-cobro-forma-pago-label {
    color: #666;
    font-size: 14px;
    font-weight: 700;
}

.venta-cobro-anadir-pago .form-control-b {
    min-width: 0;
}

.venta-cobro-anadir-pago .btnStandard {
    min-width: 65px;
}

#pago-venta-pendiente {
    color: #EF4444;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

#pago-venta-pendiente.venta-cobro-pago-correcto {
    color: #23A26D;
}

#pago-venta-pagado-container {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.venta-cobro-acciones {
    align-items: center;
    border-top: 1px solid #E9E9E9;
    display: flex;
    gap: 70px;
    justify-content: space-between;
    margin-top: 20px;
    padding: 25px 45px 0;
}

.venta-cobro-acciones #btn-cobrar-venta {
    flex: 1;
    justify-content: center;
}

.venta-cobro-acciones #btn-aparcar-venta-modal {
    flex-shrink: 0;
}

.venta-cobro-acciones button:disabled,
.venta-cobro-anadir-pago button:disabled {
    cursor: not-allowed;
    opacity: .55;
}

@media (max-width: 575px) {
    .modal-dialog.modal-cobrar-venta .modal-body {
        padding-left: 12px;
        padding-right: 12px;
    }

    .venta-cobro-cliente-seleccionado {
        align-items: flex-start;
    }

    #venta-cobro-cliente-nif-container,
    #venta-cobro-cliente-telefono-container {
        display: block;
    }

    #venta-cobro-cliente-nif-container.d-none,
    #venta-cobro-cliente-telefono-container.d-none {
        display: none;
    }

    .venta-cobro-descuento-global {
        justify-content: space-between;
    }

    .venta-cobro-acciones {
        gap: 12px;
        padding-left: 0;
        padding-right: 0;
    }

    .venta-cobro-acciones > button {
        flex: 1;
        justify-content: center;
    }
}

#articulos-reserva {
    max-height: 195px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* FIN SECCION RESERVAS */

/* INICIO SECCION VENTA */
#container-venta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 30px;
}

#form-buscar {
    display: grid;
    gap: 30px;
    grid-template-columns: 500px auto;
    align-items: flex-end;

    &.devolucion input[type="search"] {
        background-color: #FFF5F5;
        border-color: #FCA5A5;
    }
}

#frm-articulo-devolucion:checked {
    --checkbox-color: #EF4444;

    & + span {
        color: #EF4444;

        path {
            stroke: #EF4444;
        }
    }

    & + .form-checkbox-text + .form-check-sign .check {
        background: #EF4444 !important;
        border-color: #EF4444 !important;
    }
}

.container-inp-cantidad {
    display: grid;
    width: 80px;
    justify-content: center;
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    margin: 0 auto;

    button {
        display: flex;
        width: 24px;
        height: 24px;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        background: #F3F4F6;
        color: #333;
        font-size: 17px;
    }

    input {
        height: initial;
        border: none;
        text-align: center;

        color: #666;
        font-size: 14px;
        font-weight: 500;
    }
}

.container-descuento-dinamico {
    display: flex;
    width: 55px;
    margin: 0 auto;
    position: relative;

    .inp-descuento-dinamico {
        width: 55px;
        height: 26px !important;
        text-align: right;
        padding: 5px 20px 5px 5px !important;
        border-radius: 4px !important;
        color: #ADADAD !important;
        font-size: 14px;
    }

    .btn-tipo-descuento-dinamico {
        height: 24px;
        border-left: 0;
        border-radius: 0 4px 4px 0;
        background: #FFF;
        color: #ADADAD;
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
        position: absolute;
        right: 1px;
        top: 1px;
        padding: 1px 4px 0 0;
    }
}

.container-precio-articulo-dinamico {
    display: flex;
    align-items: center;
    gap: 0px;
    --input-text-color: #333;
    max-width: 120px;


    input {
        width: 100%;
        height: initial !important;
        text-align: right;
        font-size: 14px !important;
        font-weight: 600;
        padding: 5px 10px !important;
        border-radius: 4px !important;

        & + button {
            margin-left: 5px;
        }

        &[readonly] {
            border: none !important;

            & + button {
                margin-left: 0;
            }
        }
    }
}

.tr-devolucion {
    color: #EF4444;

    .container-precio-articulo-dinamico {
        --input-text-color: #EF4444;
    }
}

#resumen-venta-container {
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    padding: 22px 25px;
}

#resumen-venta-titulo {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 10px;
}

.item-venta-resumen {
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.item-venta-resumen-titulo {
    color: #666;
}

.item-venta-resumen + .item-venta-resumen {
    margin-top: 6px;
}

#resumen-venta-total {
    padding-top: 10px;
    margin-top: 15px;
    border-top: 1px solid #E2E2E2;

    .item-venta-resumen-titulo {
        color: var(--text-color);
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
    }

    .item-venta-resumen-valor {
        color: var(--secondary);
        font-size: 18px;
        font-weight: 600;
        line-height: 26px;
    }
}

#venta-cobro-subtotal-articulos, #venta-cobro-descuento-articulos, #venta-cobro-ticket-devolucion {
    display: none;
}


.item-aparcado {
    border-radius: 10px;
    border: 1px solid #F0E6EF;
    background: #FFF;
    padding: 20px;
    color: #6B7280;
    font-size: 12px;
    line-height: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.item-aparcado-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-aparcado-fecha {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.item-aparcado-total {
    color: #1E2939;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.btn-eliminar-apartado {
    path {
        transition: all .3s ease-in-out;
    }

    &:hover path {
        stroke: var(--secondary);
    }
}

.item-aparcado-detalle-pagos {
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;
}

.item-aparcado-cliente {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    margin-bottom: 6px;
    min-height: 15px;
}

.item-aparcado-articulos {
    margin-bottom: 14px;
}

/* FIN SECCION VENTA */

/* INICIO SECCION ESTADISTICAS */
.caja-estadistica {
    border-radius: 10px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    padding: 20px;
}

.caja-estadistica-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;

    input, .bootstrap-select {
        height: 40px;
    }

    input.inp-date, .bootstrap-select>.dropdown-toggle {
        background-position: right 10px center;
    }
}
.caja-estadistica-titulo {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-tabs {
    list-style: none;
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 1px solid var(--secondary);
    background: #FFF;
    overflow: hidden;

    button {
        color: #666;
        font-size: 15px;
        font-weight: 400;
        transition: all .3s ease-in-out;
        padding: 10px 20px;

        &.active {
            color: #FFF;
            background-color: var(--secondary);
        }
    }
}

.btn-filtros {
    display: flex;
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: rgba(232, 22, 140, 0.15);
}

.caja-estadistica-grafico {
    height: 310px;
    margin-top: 20px;
}

.caja-estadistica-grafico canvas {
    max-width: 100%;
}



.bloque-derecha {
    position: fixed;
    top: 0;
    right: 0;
    width: 330px;
    height: 100dvh;
    padding: 35px 30px;
    background-color: white;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);

    &.open {
        transform: translateX(0);
    }
}
.bloque-derecha-header {
    position: relative;
    text-align: center;

    color: var(--secondary);
    font-size: 25px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 50px;

    .bloque-derecha-cerrar {
        position: absolute;
        top: -20px;
        right: 0;
        cursor: pointer;
    }
}

#estadisticas-reservas-ranking {
    display: grid;
    grid-template-columns: 500px minmax(0, 1fr);
    gap: 20px 30px;
}

.caja-estadistica-header #fecha-desde,
.caja-estadistica-header #fecha-hasta {
    width: 150px;
    padding-right: 35px;
}

.caja-estadistica-ranking .caja-estadistica-grafico {
    margin-left: -17px;
    margin-top: 5px;
    height: 330px;
}

.caja-estadistica-grafico-reservas {
    display: flex;
    align-items: center;
    gap: 35px;
    height: 180px;
    margin-top: 50px;
}

.canvas-reservas-contenedor {
    width: 190px;
    height: 190px;
    flex: 0 0 190px;
}

#canvas-reservas {
    width: 100% !important;
    height: 100% !important;
}

.caja-estadistica-grafico-detalle {
    width: 100%;
    max-width: 280px;
    color: #444;
    font-size: 16px;
}

.estadistica-reserva-detalle-linea,
.estadistica-reserva-detalle-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.estadistica-reserva-detalle-etiqueta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.estadistica-reserva-detalle-color {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.estadistica-reserva-detalle-color-completadas {
    background-color: #059669;
}

.estadistica-reserva-detalle-color-pendientes {
    background-color: #E8168C;
}

.estadistica-reserva-detalle-total {
    border-top: 1px solid #E6E6E6;
    margin-top: 4px;
    color: #666;
}

@media (max-width: 1366px) {
    #estadisticas-reservas-ranking {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .caja-estadistica-grafico-reservas {
        height: auto;
        flex-direction: column;
        align-items: flex-start;
    }
}
/* FIN SECCION ESTADISTICAS */

/* INICIO SECCION CONFIGURACION */
#configuracion {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 30px;
}

#menu-configuracion {
    list-style: none;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;

    a {
        border-radius: 14px;
        display: flex;
        padding: 12px 16px;
        align-items: center;
        gap: 12px;
        transition: all .3s ease-in-out;

        color: #6B7280;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;

        path {
            transition: all .3s ease-in-out;
        }

        .item-menu-configuracion-num {
            display: flex;
            padding: 2px 8px;
            border-radius: 100px;
            background: #F3F4F6;

            color: #9CA3AF;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: 16px;

            transition: all .3s ease-in-out;

            margin-left: auto;
        }

        &:hover, &.menu-seleccionado {
            background: var(--bg);
            color: var(--tc);

            .item-menu-configuracion-num {
                background-color: white;
                color: var(--tc);
            }

            .item-icono {
                background: var(--bg);
            }

            path {
                stroke: var(--tc);
            }
        }
    }
}

.item-icono {
    border-radius: 10px;
    background: #F3F4F6;
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}

.container-titulos-configuracion {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;

    .item-icono {
        background-color: var(--bg);

        path {
            stroke: var(--tc);
        }
    }
}

.titulo-configuracion {
    color: #1E2939;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 2px;
}

.subtitulo-configuracion {
    color: #9CA3AF;
    font-size: 12px;
    line-height: 16px;
}

table.tablaGestina.tabla-grupo-tallas-dt {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 12px !important;
    background: transparent;
    overflow: visible;
}

table.tablaGestina.tabla-grupo-tallas-dt thead {
    display: none;
}

.tabla-grupo-tallas-dt.table > tbody > tr > td.td-grupo-tallas-card {
    padding: 0 !important;
    border: none !important;
    vertical-align: top;
}

.tabla-grupo-tallas-dt.table > tbody > tr:first-child > td {
    border-top: none;
}

.tabla-grupo-tallas-dt.table > tbody > tr > td {
    border-bottom: none;
}

.grupo-tallas-card {
    display: block;
    background: #FFF;
    border: 1px solid #F0E6EF;
    border-radius: 14px;
    padding: 16px !important;
    margin-top: 0 !important;
}

.cabecera-grupo-tallas-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 16px;
}

.nombre-grupo-tallas {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #121D34;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.nombre-grupo-tallas strong {
    font-weight: 600;
}

.icono-grupo-tallas {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;

    svg {
        width: 18px;
        height: 18px;
    }

    path {
        stroke: #D97706;
    }
}

.contador-grupo-tallas {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 3px 9px;
    border-radius: 100px;
    background: #FFFBEB;
    color: #D97706;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.tabla-grupo-tallas-dt .container-btns-tabla {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding-top: 2px;
}

.tabla-grupo-tallas-dt .icon-tabla {
    width: 18px;
    height: 18px;

    svg {
        width: 18px;
        height: 18px;
    }

    path {
        stroke: #9CA3AF;
    }
}

.valores-grupo-tallas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.valores-grupo-tallas span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 12px;
    border: 1px solid #FDE68A;
    border-radius: 100px;
    background: #FFFBEB;
    color: #92400E;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.modal-dialog.modal900 {
    width: 900px;
}

#modal-grupo-tallas {
    .form-control-b {
        border-color: var(--primary);
        min-height: 70px;
        font-size: 18px !important;
    }
}

.cabecera-tallas-modal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;

    label {
        margin-bottom: 0;
    }

    span {
        color: #9CA3AF;
        font-size: 14px;
        line-height: 20px;
    }
}

.selector-valores-grupo-tallas {
    padding: 16px 18px 18px;
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    background: #FAFBFC;
}

.bloque-tipo-grupo-tallas + .bloque-tipo-grupo-tallas {
    margin-top: 14px;
}

.titulo-tipo-grupo-tallas {
    color: #111827;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 10px;
}

.opciones-tipo-grupo-tallas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.opcion-grupo-tallas {
    margin: 0;
    cursor: pointer;

    input {
        display: none;
    }

    span {
        display: inline-flex;
        align-items: center;
        min-height: 38px;
        padding: 7px 16px;
        border: 1px solid #E5E7EB;
        border-radius: 100px;
        background: #FFF;
        color: #6B7280;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        transition: all .3s ease-in-out;
    }

    input:checked + span {
        border-color: var(--primary);
        background: var(--primary);
        color: #FFF;
    }
}

/* FIN SECCION CONFIGURACION */

/* INICIO SCROLL BAR */
.custom-scroll-bar {
    scrollbar-width: thin;
    scrollbar-color: #DADADA #FFF;
    overflow: auto;
}

.custom-scroll-bar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    background-color: #FFF;
    border-radius: 10px;
}

.custom-scroll-bar::-webkit-scrollbar {
    width: 8px;
    background-color: #FFF;
}

.custom-scroll-bar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    background-color: #DADADA;
}

.custom-scroll-bar::-webkit-scrollbar-thumb {
    -webkit-box-shadow: none;
}

.custom-scroll-bar:hover {
    scrollbar-color: #DADADA #FFF;
}

.custom-scroll-bar:hover::-webkit-scrollbar-thumb {
    background-color: #DADADA;
}

/* FIN SCROLL BAR */

/* INICIO PAGINADOR */
.contienePaginador {
    margin: 0;
    color: #FFF;
    font-weight: normal;
    font-size: 0;
    display: inline-block;
}

.contienePaginador path {
    fill: var(--primary);
}

.contienePaginador a {
    color: var(--primary);
    text-decoration: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    margin: 0;
    font-size: 16px;
    vertical-align: middle;
    border: 1px solid var(--primary);
}

.contienePaginador a + a {
    margin-left: 7px;
}

.contienePaginador a:hover,
.contienePaginador a.paginaSeleccionada,
.contienePaginador a#enlaceAtras:hover,
.contienePaginador a#enlaceSiguiente:hover {
    color: #FFF;
    background: var(--primary);
    border-color: var(--primary);
}

.contienePaginador a#enlaceAtras:hover path,
.contienePaginador a#enlaceSiguiente:hover path {
    fill: #FFF;
}

/* FIN LISTADO */

/* INICIO DATATABLE */
#filtros-tabla {
    display: flex;
    align-items: flex-end;
    gap: 12px 30px;
    flex-wrap: wrap;
}

#filtros-tabla .filtro-fecha {
    width: 175px;
}

#filtros-tabla .filtro-fecha-mes {
    width: 160px;
}

#filtros-tabla .filtro-fecha-anyo {
    width: 105px;
}

div.dt-button-collection .dt-button-active:after {
    right: 7px;
}

div.dt-buttons .dt-button {
    white-space: normal;
}

div.dt-buttons > .dt-button.buttons-colvis {
    border: none !important;
    margin: 0 !important;
}

div.dt-buttons > .dt-button.buttons-colvis .dt-button-down-arrow {
    display: none;
}

table.table.dataTable {
    margin-bottom: 2px
}

.dt-container {
    position: relative;
}

div.dt-processing > div:last-child > div {
    background: var(--primary);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

table.dataTable.nowrap th, table.dataTable.nowrap td {
    white-space: initial;

    .nowrap {
        white-space: nowrap;
    }
}

table.dataTable td.td-nowrap {
    white-space: nowrap !important;
}

.inputsDatatable {
    margin-bottom: -42px;
    z-index: 11;
}

.dataTables_processing {
    z-index: 105
}

.dataTables_info, .dataTables_empty {
    white-space: inherit !important;
    color: #666;
    font-size: 15px;
}

.pagination > li > button {
    font-size: 15px;
    border: none !important;
    color: var(--secondary);
    padding: 0;
    transition: all .4s ease;
    box-shadow: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;

    border-left: 1px solid var(--secondary) !important;
}

.pagination > li > button:hover, .pagination > li > button:focus {
    background-color: var(--secondary) !important;
    color: white !important;
    text-decoration: none;
    box-shadow: none;
}

.pagination > li > button:hover path, .pagination > li > button:focus path {
    fill: #FFF;
}


ul.pagination > .dt-paging-button path {
    transition: all .3s;
}

.pagination-dt {
    flex-shrink: 0;
    padding-bottom: 5px;
}

.pagination-dt-info {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.dt-paging-button button {
    margin: 0 !important;
}

.dt-info {
    color: #666;
    text-align: center;
    font-size: 14px;
    font-style: italic;
}

.paginate_button.previous a {
    pointer-events: all !important;

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

.paginate_button.next a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

table.dataTable.nowrap th, table.dataTable.nowrap td {
    white-space: inherit;
    vertical-align: middle;

    strong {
        font-weight: 500;
    }

    strong.extra-bold {
        font-weight: 600;
    }

    small {
        font-size: 13px;
    }
}

.dt-13 {
    font-size: 13px
}

table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after {
    bottom: calc(50% - 14px);
}

.dt-paging .pagination {

    border: 1px solid var(--secondary);
    margin-bottom: 0;
    border-radius: 5px;
    overflow: hidden;


    li:first-child, li:last-child {
        display: none;
    }

    li:nth-child(2) button {
        border-left: none !important;
    }
}

.pagination > .active > button, .pagination > .active > button:hover, .pagination > .active > button:focus, .pagination button:hover {
    background: var(--secondary) !important;
    color: #FFF !important;
    border-color: var(--secondary) !important;
}

.paginate_button.next a:before, .paginate_button.previous a:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    display: block;
    font-size: 20px;
    padding: 0 0 !important;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-weight: 900;
}

.paginate_button.next:hover a:before, .paginate_button.previous:hover a:before {
    color: #FFF !important;
}

.paginate_button.previous a:before {
    content: "\f053";
}

.header-tabla-pagging-button {
    display: inline-flex;
    align-items: center;
    gap: 10px 25px;
}

.dataTables_wrapper .pagination {
    float: right;
    margin: 10px 0 !important;
    font-size: 0px;
    justify-content: flex-end;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    border-radius: 3px;
    overflow: hidden;
}

.dataTables_wrapper div.dataTables_length label {
    color: #1E2939;
    font-size: 16px;
}

.dataTables_wrapper div.dataTables_length label select {
    margin-left: 15px !important;
    width: 84px;
    padding-left: 25px;
    border-color: var(--primary);
    color: #5E6278 !important;
    line-height: initial;
}

.mostrarPedidos .input-icon > i {
    right: 15px;
    color: var(--primary);
}

.dataTableCenter {
    text-align: center;
}

.tablaGestina.table th, .tablaGestina.table td {
    padding: 12px 15px;
}

div.dataTables_wrapper div.dataTables_filter {
    text-align: left;
}

div.dataTables_wrapper div.dataTables_filter input.form-control:focus, div.dataTables_wrapper div.dataTables_filter input.bmd-form-group.is-focused .form-control {
    /*  -webkit-background-size: none !important;
      background-size: none !important;*/
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control {
    position: relative;
    padding-top: 37px;
    min-width: 100px !important;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
    position: absolute;
    top: 5px;
    left: 5px;
    border: none;
    content: "Expandir";
    background: var(--secondary);
    color: #FFF;
    padding: 3px 4px;
    border-radius: 5px;
    white-space: nowrap;
}

table.dataTable.dtr-inline.collapsed > tbody > tr.dtr-expanded > td.dtr-control:before, table.dataTable.dtr-inline.collapsed > tbody > tr.dtr-expanded > th.dtr-control:before {
    border: none;
    content: "Encoger";
}

tbody td.stroke {
    text-decoration: line-through;
}

table.tablaGestina tr.right td.dataTableCenter {
    text-align: right;
}

table.tablaGestina td.dataTableCenter {
    text-align: center;
    vertical-align: middle;
}

.table > thead > tr > th {
    color: #1E2939;
    background-color: #E6E6E6;
    padding: 13px 15px !important;

    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}

.table > thead > tr > th.dataTableCenter {
    text-align: center;
}

.tablaGestina {
    border: none;
    color: #666;
    font-size: 15px;
    font-weight: 400;
    border-radius: 15px !important;
    line-height: 20px;
    box-shadow: 0 0 0 1px #E6E6E6;
    overflow: hidden;
}

.table > :not(:first-child) {
    border-top: inherit;
}

.table > thead > tr > th {
    border-bottom: 1px solid #E6E6E6;
    background-color: #FDF4FA !important;
}

.table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    border-bottom: 1px solid #E6E6E6;
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tbody > tr:first-child > td {
    border-top: none;
}

em.error {
    display: none !important;
}

div.dt-processing {
    padding: 10px;
    font-size: 18px;
}

div.dt-processing > div:last-child {
    margin: 10px auto 0;
}

/* NOTA: quito el collapse porque sino no me redondea los border de la tabla*/
/*
.tablaGestina.table.dataTable {

    border-collapse: collapse !important;
}*/
.paddingLeftTabla {
    padding-left: 25px !important;
}

.tablaGestina.table td a {
    color: var(--text-color);
    transition: color .3s;
}

.tablaGestina.table td a i {
    transition: all .3s;
    color: var(--text-color);
    font-size: 20px;
}

.tablaGestina.table td a:hover, .tablaGestina.table td a:hover i, .tablaGestina.table td span:hover i {
    color: var(--secondary) !important;
}

.tablaGestina div.dataTables_wrapper div.dataTables_processing {
    margin-top: 0;
}

.dataTables_wrapper .dataTables_length {
    float: right !important;
}

.paginationFooter {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}

div.dataTables_wrapper .paginationFooter div.dataTables_paginate {
    float: right !important;
}

table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:before {
    opacity: 0 !important;
}

.dataTables_wrapper div.dataTables_length label:after {
    content: "\f107";
    color: var(--primary);
    font-family: "Font Awesome 5 Free";
    display: block;
    font-size: 18px;
    padding: 0 0 !important;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 19px;
    pointer-events: none;
}

.container-btns-tabla {
    white-space: nowrap;
    gap: 10px;
    display: flex;
    align-items: center;
}

.tablaGestina.table th.acciones-tabla,
.tablaGestina.table td.acciones-tabla {
    width: 1% !important;
    white-space: nowrap !important;
}

.tablaGestina.table td.acciones-tabla .container-btns-tabla {
    width: max-content;
}

.icon-tabla {
    display: inline-block;
    vertical-align: middle;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.icon-tabla svg {
    width: auto;
    max-height: 25px;
}

.icon-tabla, .icon-tabla path {
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.icon-tabla:hover {
    color: var(--secondary);
}

.icon-tabla:hover path {
    stroke: var(--secondary);
}

.saldo-fidelizacion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    color: var(--secondary);
    font-size: 15px;
    font-weight: 500;
    padding-top: 1px;
}

/* RESNPONSIVE */

@media (max-width: 991px) {
    .dataTables_wrapper:has(.tabla-custom-responsive) .dataTables_scrollBody {
        overflow-x: hidden !important;
    }

    table.tabla-custom-responsive.dataTable {
        display: block;
        width: 100% !important;
        min-width: 0 !important;
        white-space: normal;
    }

    table.tabla-custom-responsive.dataTable thead {
        display: table-header-group;
    }

    table.tabla-custom-responsive.dataTable thead > tr {
        display: none;
    }

    table.tabla-custom-responsive.dataTable thead > tr:has(> .th-tabs-tabla) {
        display: table-row;
    }

    table.tabla-custom-responsive.dataTable thead .th-tabs-tabla {
        display: table-cell !important;
    }

    table.tabla-custom-responsive.dataTable tbody {
        display: grid;
        gap: 12px;
    }

    table.tabla-custom-responsive.dataTable tbody > tr:not(.child) {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr);
        width: 100% !important;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    table.tabla-custom-responsive.dataTable tbody > tr.child {
        display: none !important;
    }

    table.tabla-custom-responsive.dataTable tfoot {
        display: block;
        margin-top: 12px;
    }

    table.tabla-custom-responsive.dataTable tfoot > tr {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
        gap: 10px;
        width: 100% !important;
        padding: 12px 14px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    table.tabla-custom-responsive.dataTable tfoot > tr > th,
    table.tabla-custom-responsive.dataTable tfoot > tr > td {
        display: block;
        min-width: 0;
        padding: 0 !important;
        border: 0 !important;
        white-space: normal !important;
        word-break: break-word;
    }

    table.tabla-custom-responsive.dataTable tfoot > tr > th:empty,
    table.tabla-custom-responsive.dataTable tfoot > tr > td:empty {
        display: none;
    }

    table.tabla-custom-responsive.dataTable tfoot > tr.tr-devolucion > td:not(:first-child):not(:nth-last-child(-n+2)) {
        display: none;
    }

    table.tabla-custom-responsive.dataTable tbody > tr:not(.child) > td {
        display: flex !important;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        width: 100% !important;
        min-width: 0;
        padding: 12px 14px !important;
        border: 0;
        border-top: 1px solid #eef0f2;
        white-space: normal !important;
        word-break: break-word;
        text-align: right !important;
    }

    table.tabla-custom-responsive.dataTable tbody > tr:not(.child) > td:first-child {
        border-top: 0;
    }

    table.tabla-custom-responsive.dataTable tbody > tr:not(.child) > td > * {
        min-width: 0;
        white-space: normal;
        word-break: break-word;
    }

    table.tabla-custom-responsive.dataTable tbody > tr:not(.child) > td > .tabla-custom-responsive-valor {
        flex: 1 1 0;
        min-width: 0;
        text-align: right;
    }

    table.tabla-custom-responsive.dataTable tbody > tr:not(.child) > td::before {
        content: attr(data-label);
        flex: 0 0 35%;
        min-width: 0;
        color: var(--primary);
        font-size: 12px;
        font-weight: 600;
        line-height: 1.4;
        text-transform: uppercase;
        white-space: normal;
        word-break: break-word;
        text-align: left;
    }

    table.tabla-custom-responsive.dataTable.dtr-inline.collapsed > tbody > tr:not(.child) > td.dtr-control::before {
        position: static;
        width: auto;
        height: auto;
        margin: 0;
        border: 0;
        border-radius: 0;
        background: none;
        content: attr(data-label) !important;
    }

    .pagination-dt-info {
        flex-direction: column;
        gap: 20px;
    }

    .pagination > li > button {
        min-width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .tabs-tabla ul {
        gap: 10px;
    }

    .container-btns-tabla {
        justify-content: flex-end;
    }

    #bloque-acceso {
        grid-template-columns: 1fr;
        background-image: url("../img/fondos/login.jpg");
        background-size: cover;
        background-position: center;

        img {
            display: none;
        }

        #bloque-login {
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 25px;
            max-width: calc(100dvw - 50px);
        }
    }
}

table.dataTable > tbody > tr.child span.dtr-title {
    display: inline-block;
    font-weight: bold;
    width: 30%;
    text-align: left;
    white-space: normal;
    align-items: center;
    word-break: break-word;
    vertical-align: middle;
}

span.dtr-data {
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    width: 68%;
    padding-left: 20px;
    text-align: start;
    word-break: break-word;
}

table.dataTable > tbody > tr.child ul.dtr-details {
    width: 100%;
}

.dataTablesInfoLeft .dt-info {
    text-align: left;
    margin-top: 16px;
    line-height: 130%;
    padding-top: 0 !important;
}

.header-tabla {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px 10px;
}

.header-tabla-filters {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px 30px;
    padding-top: 5px;
}

.dt-length {
    display: flex;
    align-items: center;
    gap: 8px;
}

div.dt-container div.dt-length select {
    width: 90px;
    height: 60px;
    text-align: center;
    border: 1px solid var(--secondary);
    outline: none !important;
    box-shadow: none !important;
    border-radius: 10px;
    font-size: 15px;
}

.dt-column-order {
    display: none;
}

.paginador-filtros {
    display: flex;
    align-items: center;
    gap: 10px 30px;
}


table.dataTable th.dt-type-numeric.dt-left, table.dataTable th.dt-type-date.dt-left, table.dataTable td.dt-type-numeric.dt-left, table.dataTable td.dt-type-date.dt-left {
    text-align: left;
}

table.dataTable th.dt-type-numeric.dt-center, table.dataTable th.dt-type-date.dt-center, table.dataTable td.dt-type-numeric.dt-center, table.dataTable td.dt-type-date.dt-center {
    text-align: center;
}

div.dt-container div.dt-search label {
    font-weight: 500;
}

div.dt-container div.dt-search {
    width: 500px;
    max-width: calc(100vw - 40px);
    text-align: left;
}

div.dt-container div.dt-search input {
    margin-left: 0;
    width: 100%;
    background-image: url("../img/iconos/buscar.svg");
    background-repeat: no-repeat;
    background-position: center right 14px;
    padding-right: 45px;
}

div.dt-scroll-body {
    border-color: var(--primary);
    border-width: 1px;

    height: initial !important;
    max-height: calc(100vh - 380px) !important;
}

.form-select {
    background-image: url("../img/iconos/select.svg");
    background-size: auto;
}

div.dt-container div.dt-length label {
    font-size: 16px;
    margin-bottom: 0;
    display: none;
}

@media only screen and (min-width: 1200px) {
    .autoEllipsis {
        table-layout: fixed;
    }

    .autoEllipsis.dataTable tbody tr td {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.destaca-tabla {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

/* FIN DATATABLE */

.tooltipster-base {
    z-index: 99999999999 !important;
}

.tooltipStandard {
    cursor: pointer;
}

.tooltipster-sidetip.tooltipster-base .tooltipster-box {
    font-weight: 400;
    background: var(--secondary);
    border: none;
    border-radius: 4px;
    color: #FFF;
    font-size: 12px;
    padding: 2px 5px;

    a {
        font-weight: 600;
        text-decoration: underline;
    }
}

.tooltipster-sidetip.tooltipster-base.tooltip-area .tooltipster-box {
    background: var(--secondary);
}

.tooltipster-sidetip.tooltipster-base .tooltipster-content {
    color: #FFF
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: var(--secondary) !important;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: var(--secondary) !important;
}

.tooltipster-sidetip.tooltipster-base.tooltip-area .tooltipster-arrow-background {
    border-bottom-color: var(--secondary) !important;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    border-left-color: var(--secondary) !important;
}

.tooltipster-sidetip .tooltipster-arrow-border {
    border: 10px solid transparent !important;
}

/* FIN TOOLTIP/BOXOVER*/

.tab-pane.active {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation: none;
}

/* MODAL */
.modal-dialog.modal622 {
    width: 622px
}

.modal-dialog.modal1050 {
    width: 1050px
}

.botoneraBlockUI {
    width: 100%;
}

.esperePorFavor {
    font-size: 0;
    border: 5px solid var(--primary);
    border-radius: 40px;
    height: 40px;
    margin: 0 auto;
    width: 40px;
    z-index: 1000007;
    -webkit-animation: pulsate 1s ease-out infinite;
    -moz-animation: pulsate 1s ease-out infinite;
    -ms-animation: pulsate 1s ease-out infinite;
    -o-animation: pulsate 1s ease-out infinite;
    animation: pulsate 1s ease-out infinite;
    display: block;
}

.modalEspere {
    box-shadow: none !important;
}

.modalEspere img {
    display: none
}

.modalEspere .modal-content {
    background-color: transparent;
    border: none;
}

.bloqueModal {
    display: none;
    text-align: left;
}

.modal .bloqueModal {
    display: block;
}

.modal {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
}

@media screen and (min-width: 768px) {
    .modal:before {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }
}

.modal-content {
    border: 1px solid #FFF;
    border-radius: 0.5rem;
}

.modal-header {
    border-bottom: none;
    text-align: center;
    padding: 0.5rem 1rem 1rem;
}

.modal-header .close {
    opacity: 1 !important;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 100;
    text-shadow: none;
    -webkit-appearance: initial;
    border: none;
    background: none;
}

.close:hover, .close:focus {
    outline: none;
}

.modal-header .modal-title {
    color: var(--secondary);
    font-size: 25px;
    text-align: center;
    width: 100%;
    border-bottom: none;
    text-transform: uppercase;
    margin-top: 20px;
    font-weight: 500;
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    min-width: 300px !important;
    max-width: calc(100% - 30px);
    /*min-width:450px !important;*/
}

.modal-dialog.modal-sm {
    min-width: 450px !important;
}

.modal-dialog.modal-lg {
    min-width: 950px !important;
}

.modal .btnStandard + .btnStandard {
    margin-left: 20px;
}

.modal-body {
    color: var(--text-color);
    font-size: 16px;
    text-align: center;
    padding: 0 1rem 1rem;
    line-height: 150%;
}

.modal-body a:not(.btnStandard) {
    color: var(--primary);
}

.modalEspere .modal-body {
    padding: 1rem;
}

.modal-body img {
    margin-right: 2px;
}

.modal-footer {
    padding: 10px 15px;
}

.modalAlert .modal-footer {
    text-align: center;
    border-top: none;
    padding-bottom: 20px;
}

.modalAlert .botoneraBlockUI {
    width: 100%;
}

.modal-dialog.modal-ticket-detalle .modal-content {
    border-radius: 20px;
}

.modal-dialog.modal-ticket-detalle .modal-body {
    padding: 0 20px 20px;
}

.detalle-ticket {
    color: #333;
    text-align: left;
}

.detalle-ticket-datos {
    display: grid;
    grid-template-columns: minmax(150px, 0.8fr) minmax(280px, 1.2fr);
    gap: 18px 30px;
    margin-bottom: 30px;
}

.detalle-ticket-cliente {
    grid-column: 1 / -1;
}

.detalle-ticket-dato {
    min-width: 0;
}

.detalle-ticket-label {
    display: block;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 2px;
}

.detalle-ticket-dato strong {
    font-size: 14px;
    font-weight: 500;
}

.detalle-ticket-pagos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
}

.detalle-ticket-pago {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.detalle-ticket-pago img {
    flex: 0 0 auto;
    margin: 0;
}

.detalle-ticket-tabla-container {
    overflow-x: auto;
    padding: 1px;
}

.table-modal {
    margin-bottom: 30px;
    min-width: 560px;
}

.table-modal th:first-child,
.table-modal td:first-child {
    width: 48%;
}

.detalle-reserva .table-modal th:first-child,
.detalle-reserva .table-modal td:first-child {
    width: 70%;
}

.table-modal td {
    vertical-align: middle;
}

.table-modal tbody tr:last-child td {
    border-bottom: none;
}

.table-modal td strong {
    color: #666;
    font-weight: 400;
}

.table-modal td small {
    color: #777;
    font-size: 12px;
    line-height: 16px;
}

.detalle-ticket-totales {
    width: min(100%, 415px);
    margin-left: auto;
    padding: 18px 16px;
    background: #FDF4FA;
    border: 1px solid #F3DFEC;
    border-radius: 10px;
}

.detalle-ticket-total {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 4px 0;
    font-size: 14px;
}

.detalle-ticket-total strong {
    flex: 0 0 auto;
    font-weight: 400;
    white-space: nowrap;
}

.detalle-ticket-total-final {
    border-top: 1px solid #E8DCE4;
    margin-top: 5px;
    padding-top: 10px;
    font-size: 16px;
    font-weight: 700;
}

.detalle-ticket-total-final strong {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 700;
}

.detalle-ticket-acciones {
    display: flex;
    justify-content: center;
    gap: 30px;
    border-top: 1px solid #E6E6E6;
    margin-top: 24px;
    padding-top: 30px;
}

.detalle-ticket-acciones .btn-ticket-pdf {
    justify-content: center;
    min-width: 200px;
    padding: 13px 20px;
}

.detalle-ticket-acciones .btn-ticket-pdf svg path {
    stroke: #FFF;
}

.detalle-ticket-acciones .btn-ticket-pdf:hover svg path,
.detalle-ticket-acciones .btn-ticket-pdf:focus svg path {
    stroke: var(--secondary);
}

.modal-dialog.modal-reserva-detalle .modal-content {
    border-radius: 20px;
}

.modal-dialog.modal-reserva-detalle .modal-body {
    padding: 0 24px 24px;
}

.titulo-detalle-reserva {
    align-items: center;
    display: inline-flex;
    gap: 10px;
}

.btn-editar-reserva-detalle {
    background: transparent;
    border: 0;
    padding: 0;
}

.detalle-reserva-datos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 24px;
}

.detalle-reserva-dato {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.detalle-reserva-label {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.detalle-reserva-dato > span:not(.detalle-reserva-label) {
    color: #666;
    font-size: 15px;
    line-height: 120%;

    & + span {
        margin-top: 4px;
    }
}

#detalle-reserva-articulos {
    font-size: 14px;

    strong {
        color: #333;
        font-weight: 500;
    }
}

.detalle-reserva-dato > span.rosa {
    color: var(--secondary);
}

.detalle-reserva-totales {
    background: #FDF4FA;
    border-radius: 14px;
    padding: 16px;
    font-size: 14px;
    color: #666;
}

#detalle-reserva-total {
    color: #333;
}

.detalle-reserva-totales > div {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}

.detalle-reserva-pendiente {
    border-top: 1px solid #E6E6E6;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
    padding-top: 10px !important;
    color: #666;
}

.detalle-reserva-notas {
    align-items: center;
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: 10px;
    color: #92400E;
    display: flex;
    gap: 5px;
    margin-top: 20px;
    padding: 12px;
    font-size: 14px;
}

.detalle-reserva-ticket-regalo {
    margin-top: 18px;
}

.detalle-reserva-ticket-regalo .btn-ticket-regalo {
    background: transparent;
    border: 0;
    color: #666;
    padding: 0;
}

.detalle-reserva-acciones {
    display: flex;
    gap: 30px;
    justify-content: center;
    border-top: 1px solid #E6E6E6;
    margin-top: 24px;
    padding-top: 30px;
}

.detalle-reserva-acciones .btn-ticket-pdf,
.detalle-reserva-acciones .btn-finalizar-reserva {
    justify-content: center;
    min-width: 200px;
    padding: 13px 20px;
}

.detalle-reserva-acciones .btn-ticket-pdf svg path {
    stroke: #FFF;
}

.detalle-reserva-acciones .btn-ticket-pdf:hover svg path,
.detalle-reserva-acciones .btn-ticket-pdf:focus svg path {
    stroke: var(--secondary);
}

button.icon-tabla {
    border: none;
    background: transparent;
    padding: 0;
}

@media screen and (max-width: 767px) {
    .modal-dialog.modal-ticket-detalle .modal-body {
        padding-right: 15px;
        padding-left: 15px;
    }

    .detalle-ticket-datos {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 22px;
    }

    .detalle-ticket-cliente {
        grid-column: auto;
    }

    .detalle-ticket-totales {
        width: 100%;
    }

    .detalle-ticket-acciones {
        flex-direction: column;
        gap: 12px;
        padding-top: 22px;
    }

    .detalle-ticket-acciones .btn-ticket-pdf {
        width: 100%;
        min-width: 0;
        margin-left: 0 !important;
    }

    .modal-dialog.modal-reserva-detalle .modal-body {
        padding-right: 15px;
        padding-left: 15px;
    }

    .titulo-detalle-reserva {
        font-size: 22px;
    }

    .detalle-reserva-datos {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .detalle-reserva-acciones {
        flex-direction: column;
        gap: 12px;
        padding-top: 22px;
    }

    .detalle-reserva-acciones > span,
    .detalle-reserva-acciones .btn-ticket-pdf,
    .detalle-reserva-acciones .btn-finalizar-reserva {
        width: 100%;
        min-width: 0;
    }
}

.verde, .gratis {
    color: #059669
}

.rojo {
    color: #EF4444
}

.rosa {
    color: var(--secondary);
}

/* FIN DE MODAL*/
.navbar-toggler:focus {
    box-shadow: none;
}

table.dataTable > tbody > tr.child ul.dtr-details {
    width: 100%;
}

.navbar-toggler {
    display: none
}

@supports (-webkit-touch-callout: none) {
    /* CSS specific to iOS devices */
}

@media only screen and (max-width: 1199px) {
    #container-venta {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 991px) {
    /*es, sm  y MD| Extra Small (XS), SM y MD xsm*/

    .btn-abre-menu {
        display: flex !important;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        border: 1px solid var(--secondary);
        flex-shrink: 0;
    }

    .tituloSeccion {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    body.logged #wrapper {
        display: block;

        aside {
            position: fixed;
            top: 0;
            left: 0;
            width: 300px;
            height: 100dvh;
            transition: all 0.3s ease-in-out;
            transform: translateX(-100%);
            z-index: 1111;

            &.open {
                transform: translateX(0);
            }
        }

        article {
            padding-right: 20px;
            padding-left: 20px;
            margin-top: 20px;
        }
    }

    #btn-cerrar-menu-web {
        position: absolute;
        right: 10px;
        top: 10px;
        display: block !important;
    }

    #menu-web a{
        padding: 10px 12px;
        font-size: 13px;
    }

    .item-tabla-estadistica-header, .item-tabla-estadistica-body-item {
        padding: 12px 15px;
    }
}

@media only screen and (max-width: 767px) {
    /*es y sm | Extra Small (XS) and SM */

    .bloque-estadisticas {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .item-estadistica{padding: 15px}

    #tablas-estadisticas {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    #configuracion {
        grid-template-columns: 1fr;
    }

    #form-buscar {
        grid-template-columns: 1fr auto;
    }

    .container-precio-articulo-dinamico {
        margin-left: auto;
    }

    .container-descuento-dinamico, .container-inp-cantidad  {
        margin-right: 0;
    }
}

@media only screen and (max-width: 575px) {
    /* ES */
}

/* Small devices (landscape phones, 576px and up) */
@media only screen and (min-width: 576px) and (max-width: 767px) {
    /* SM */
}

/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* MD */

    .bloque-estadisticas {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 15px;
    }
}

/* Large devices (desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    /* LG */
}

@media only screen and (min-width: 992px) and (max-width: 1365px) {

}

@media only screen and (min-width: 1366px) {

}

@media only screen and (min-width: 992px) and (max-width: 1919px) {
    body.logged #wrapper {
        grid-template-columns: 205px minmax(0, 1fr);
        gap: 20px;
    }

    #menu-web a{
        padding: 10px 12px;
        font-size: 13px;
    }

    .item-tabla-estadistica-body-item {
        padding: 12px 15px;
    }

    .bloque-estadisticas {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 15px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .bloque-estadisticas {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 15px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media only screen and (min-width: 1200px) and (max-width: 1365px) {
    /* xl */
}

/* Extra large devices (large desktops, 1366px and up) */
@media only screen and (min-width: 1366px) and (max-width: 1599px) {
    /* xxl */


}

/* Extra large devices (large desktops, 1366px and up) */
@media only screen and (min-width: 1600px) and (max-width: 1919px) {
    /* hdp */

    .bloque-estadisticas {
        gap: 15px;
    }
}

@media only screen and (min-width: 1600px) {

}

@media only screen and (min-width: 1920px) {
    /* FHD */
}
