/* ═══════════════════════════════════════════════════════════════
   CliEnCarRegO — Estilos globales (basat en StartingPoint)
   ═══════════════════════════════════════════════════════════════ */

:root {
    --primary: #BB1F35;
    --secondary: #d42540;
    --dark: #1a1a2e;
    --light: #f4f4f9;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);

}

/* ─── Base ──────────────────────────────────────────────────── */
* {
    font-family: inherit;
}

body {
    font-family: 'Tahoma', Geneva, Verdana, sans-serif;
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR — Glassmorphism
   ═══════════════════════════════════════════════════════════════ */
.navbar-custom {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    padding: 0 0 !important;
    height: 56px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.navbar-custom.nav-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

#site-footer {
    transition: transform 0.3s ease;
}
#site-footer.footer-hidden {
    transform: translateY(100%);
}


.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0;
    font-weight: 800;
    font-size: 1.4rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.navbar-brand-logo {
    width: auto;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 12px;
}

.navbar-brand-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    -webkit-text-fill-color: white;
}

.navbar-custom .nav-link {
    font-weight: 600;
    color: var(--dark) !important;
    position: relative;
    padding: 8px 15px;
    margin: 0 3px;
    transition: color 0.3s;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .navbar-custom .nav-link {
        font-size: .8rem;
        padding: 8px 10px;
        margin: 0 1px;
    }
}

.navbar-custom .nav-link:hover {
    color: var(--primary) !important;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-custom .nav-link:hover::after {
    width: 80%;
}

/* ─── Selector de idioma ─────────────────────────────────────── */
.lang-selector {
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--dark);
    outline: none;
    cursor: pointer;
    font-size: 0.78rem;
    font-family: inherit;
}

/* ─── Botons navbar: mateixa mida ───────────────────────────── */
.navbar-custom .navbar-toggler {
    border: 1px solid rgba(0,0,0,.15) !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 4px 8px;
}
.navbar-custom .navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-custom .btn {
    margin: 0;
}

.navbar-custom .btn-nav-login {
    font-size: 0.65rem !important;
    padding: 2px 8px !important;
    line-height: 1.4 !important;
    white-space: nowrap;
    border-radius: 50px !important;
    width: 120px;
    text-align: center;
    justify-content: center;
    color: #111 !important;
    background: #fff !important;
    border: 1px solid #999 !important;
}

.navbar-custom .btn-nav-login:hover {
    background: #f0f0f0 !important;
    color: #111 !important;
    border-color: #666 !important;
}

.user-badge-nav {
    font-size: 0.78rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: .35rem;
    white-space: nowrap;
}

.user-avatar-nav {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

/* ─── Columna dreta del navbar: botons en columna ─────── */
.navbar-right-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    padding-right: 6px;
}

.navbar-btn-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   HERO CAROUSEL
   ═══════════════════════════════════════════════════════════════ */
.carousel-item {
    height: 100vh;
    min-height: 500px;
    background: no-repeat center center scroll;
    background-size: cover;
}

.carousel-item-gradient-1 {
    background-image: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.carousel-item-gradient-2 {
    background-image: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
}

.carousel-item-gradient-3 {
    background-image: linear-gradient(135deg, #1a1a2e 0%, #ff5e62 100%);
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.55);
}

.carousel-caption-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 10;
    color: white;
    padding: 0 1rem;
}

.carousel-caption-center h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.carousel-caption-center p.lead {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 40px;
    opacity: .9;
}

/* ═══════════════════════════════════════════════════════════════
   BOTONES
   ═══════════════════════════════════════════════════════════════ */
.btn-gradient {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: none;
    transition: filter 0.25s, background 0.25s;
}

.btn-gradient:hover {
    background: linear-gradient(45deg, #8f1626, #6b0f1c);
    filter: brightness(0.88);
    box-shadow: none;
    color: white !important;
}

.btn-desa {
    background: #BB1F35;
    border: none;
    color: #fff;
    border-radius: 50px;
    padding: 12px 32px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .2s;
    box-shadow: none;
    text-decoration: none;
    display: inline-block;
}
.btn-desa:hover {
    background: #9b1828;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: none;
}

.btn-gradient-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .7);
    color: white;
    padding: 11px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
    white-space: nowrap;
}

.btn-gradient-outline:hover {
    background: rgba(255, 255, 255, .15);
    color: white;
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════════
   SECCIONES DE CONTENIDO
   ═══════════════════════════════════════════════════════════════ */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: .5rem;
}

.section-subtitle {
    color: #888;
    font-size: .95rem;
    margin-bottom: 2.5rem;
}

/* ─── Cards de módulos ───────────────────────────────────────── */
.module-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, .03);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
    color: inherit;
}

.module-card-icon {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #fff5f5, #fff0e6);
}

.module-card-icon.reservas-icon {
    background: linear-gradient(135deg, #f0f4ff, #e6f0ff);
}

.module-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.module-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: .4rem;
    color: var(--dark);
}

.module-card-desc {
    font-size: .88rem;
    color: #888;
    flex: 1;
    line-height: 1.6;
}

.module-card-cta {
    margin-top: 1rem;
    font-size: .85rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: gap .2s;
}

.module-card:hover .module-card-cta {
    gap: .7rem;
}

/* ─── Info negocio ───────────────────────────────────────────── */
.info-box {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .03);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
}

.info-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: .95rem;
    flex-shrink: 0;
}

.info-item-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #aaa;
    font-weight: 700;
    line-height: 1;
    margin-bottom: .2rem;
}

.info-item-value {
    font-size: .92rem;
    color: var(--dark);
    font-weight: 500;
}

.info-item-value a {
    color: var(--dark);
    text-decoration: none;
    transition: color .2s;
}

.info-item-value a:hover {
    color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   MODAL LOGIN (Bootstrap override)
   ═══════════════════════════════════════════════════════════════ */
.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-title {
    font-weight: 800;
    font-size: 1.3rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-footer {
    border-top: none;
}

.form-control {
    border-radius: 12px;
    padding: 12px 15px;
    border: 1.5px solid #e5e5e5;
    transition: all 0.3s;
    font-family: inherit;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(187, 31, 53, 0.15);
    border-color: var(--primary);
}

.form-label {
    font-size: .82rem;
    font-weight: 600;
    color: #888;
    letter-spacing: .03em;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
    background: #fff;
    color: var(--dark);
    border-top: 1px solid #e5e5e5;
    padding: 40px 0 20px;
    margin-top: 4rem;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.footer-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-size: .88rem;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-divider {
    color: #ccc;
    margin: 0 .5rem;
}

.instagram-icon {
    font-size: 1.8rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s;
    display: inline-block;
}

.instagram-icon:hover {
    transform: scale(1.15);
}

/* ═══════════════════════════════════════════════════════════════
   ANIMACIONES
   ═══════════════════════════════════════════════════════════════ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Móvil / Tablet
   ═══════════════════════════════════════════════════════════════ */
.dadesclient-w {
    width: 35%;
}

@media (max-width: 991px) {
    .ulizquierda {
        width: 100% !important;
    }

    .lilogopedido {
        width: 30% !important;
    }

    .ulderechag {
        width: 100% !important;

    }

    .navbar-custom {
        padding: 0 0 !important;
        height: auto !important;
    }

    #navbarNav {
        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0, 0, 0, .06);
        padding: 12px 0 16px;
        margin-top: 8px;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .09);
    }

    .navbar-custom .nav-link {
        padding: 10px 20px;
        margin: 0;
        border-radius: 8px;
        font-size: 1rem;
    }

    .navbar-custom .nav-link::after {
        display: none;
    }

    .navbar-custom .nav-link:hover {
        background: rgba(255, 94, 98, .07);
    }

    .navbar-right-col {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        margin-left: 0;
        margin-top: 4px;
        padding: 12px 16px 4px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        gap: 8px !important;
    }

    .navbar-btn-col {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 6px;
    }

    .navbar-btn-col .btn-nav-login,
    .navbar-mob-actions .btn-nav-login {
        width: auto;
        padding: 5px 14px;
    }

    .navbar-brand-logo,
    .navbar-brand-placeholder {
        width: auto;
        height: 44px;
    }

    .lilogocli {
        width: 50% !important;
        font-size: 0.6rem;
    }

    #lilogopedido {
        width: 20% !important;
        vertical-align: middle;
    }

    #lilogopedido #logopedido {
        width: 100%;
        height: auto;
        max-width: 60px;
    }

    #dadesclient {
        display: inline-block !important;
        vertical-align: middle;
        font-size: 0.55rem !important;
    }

    #dadesclient li {
        font-size: 0.55rem !important;
    }
}

@media (max-width: 576px) {
    .carousel-caption-center h1 {
        font-size: 1.8rem;
    }

    .btn-gradient,
    .btn-gradient-outline {
        padding: 10px 20px;
        font-size: .9rem;
    }
}

/* ─── Offset per la navbar fixed-top (pàgina de comandes) ──── */
.primercontenedor {
    margin-top: 56px !important;
}

@media (max-width: 991px) {
    .primercontenedor {
        margin-top: 50px !important;
    }
}

/* ── col del grid de productes ───────────────────────────────── */
[id^="idlintipo"] .col {
    display: flex !important;
    flex-direction: column !important;
    margin-top: 0 !important;
}

/* ── contenidor principal ────────────────────────────────────── */
.contenedorproductosencargo {
    width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    background: #fff;
    border: 1px solid #555;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    transition: box-shadow .2s, border-color .2s, transform .2s;
}
.contenedorproductosencargo:hover {
    border-color: #000;
    box-shadow: 2px 6px 18px rgba(0, 0, 0, .65);
    transform: translateY(-4px);
}

/* ── postprodsencargo i article s'estiren per omplir el contenidor ── */
.contenedorproductosencargo .postprodsencargo {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    width: 100% !important;
    margin: 0.25rem !important;
    padding: 0 !important;
}
.contenedorproductosencargo article.postencargo {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    width: 100% !important;
}
.contenedorproductosencargo article.postencargo > ul {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    background: #fff !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* ── li del botó s'ancla al fons ─────────────────────────────── */
.contenedorproductosencargo article.postencargo > ul > li:last-child {
    margin-top: auto !important;
    padding-top: 5px !important;
    padding-bottom: 3px !important;
}

/* ─── Icones FA4 compatibles amb FA6 (encarrego) ────────────── */
.icon-plus-sign::before {
    content: "\f055";
}

.icon-minus-sign::before {
    content: "\f056";
}

.icon-remove-circle::before {
    content: "\f057";
}

.icon-edit::before {
    content: "\f044";
}

.icon-save::before {
    content: "\f0c7";
}

.icon-backward::before {
    content: "\f048";
}

.icon-level-down::before {
    content: "\f149";
}

.icon-shopping-cart::before {
    content: "\f07a";
}

.icon-expand::before {
    content: "\f065";
}

.icon-compress::before {
    content: "\f066";
}

.icon-collapse::before {
    content: "\f066";
}

/* ─── icon-collapse / icon-expand: text amb font de l'app ──── */
.icon-collapse .icotip-txt,
.icon-expand .icotip-txt {
    font-family: 'Tahoma', Geneva, Verdana, sans-serif;
    font-weight: normal;
}

/* ─── grupotipo: font de l'app ──────────────────────────────── */
[id^="grupotipo"] {
    font-family: 'Tahoma', Geneva, Verdana, sans-serif !important;
}

/* ─── txtcodprod ─────────────────────────────────────────────── */
.txtcodprod {
    margin-left: 8px !important;
}

/* ─── Neutralitza margin/padding de postlimarcoimgweb ───────── */
.postlimarcoimgweb {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    border-radius: 16px 16px 0 0 !important;
}

/* ─── Neutralitza padding-left de Bootstrap als ul d'encarrego ─ */
.contenedorproductosencargo ul,
.postprodsencargo ul,
.ulizquierda ul,
.ulderechag ul,
.contenedor ul,
.postlimarcoimgweb ul {
    padding-left: 0 !important;
    margin: 0 !important;
}

/* ─── imgweb: cantonades rodones ────────────────────────────── */
.imgweb {
    border-radius: 12px !important;
    width: 96% !important;
    display: block !important;
    margin-right: 4px !important;
}

/* ─── numenfoto centrada sobre la foto ──────────────────────── */
.marcoimgweb {
    position: relative !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

/* ─── Badges sobre imatge de producte ───────────────────────── */
.img-badge {
    position: absolute; font-size: .65rem; font-weight: 700;
    padding: 3px 8px; border-radius: 4px; line-height: 1.4;
    z-index: 5; pointer-events: none;
}
.img-badge-esgotat   { top: 8px;    left: 8px;   background: #dc3545; color: #fff; }
.img-badge-encàrrec  { bottom: 8px; left: 8px;   background: #0d6efd; color: #fff; }
.img-badge-nopublica { top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(0,0,0,.65); color: #fff; text-align: center; }
.img-badge-baixa     { top: calc(50% - 30px); left: 50%; transform: translate(-50%, -50%); background: #BB1F35; color: #fff; text-align: center; font-weight: 700; }


/* ─── Icones d'al·lèrgens (absolut, part inferior foto, dreta→esquerra) ─── */
.prod-alergenos {
    position: absolute; bottom: 4px; right: 4px;
    display: flex; flex-direction: row-reverse; flex-wrap: wrap;
    gap: 2px; z-index: 6; pointer-events: none;
}
.alergen-icon {
    width: 22px; height: 22px; border-radius: 50%;
    border: 1px solid goldenrod; object-fit: cover;
    pointer-events: all;
}

/* ─── Cantonada d'estat top-right (stock + oferta) ──────────── */
.img-status-tr {
    position: absolute; top: 6px; right: 6px;
    display: flex; flex-direction: column; align-items: flex-end; gap: 3px;
    z-index: 5;
}
.st-badge {
    border: none; border-radius: 50px; padding: 2px 8px;
    font-size: .65rem; font-weight: 700; line-height: 1.5;
    white-space: nowrap; box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
a.st-badge   { text-decoration: none; }
.st-stock    { background: #0d6efd; color: #fff; transition: background .15s; }
.st-stock:hover { background: #BB1F35; color: #fff; }
.st-oferta   { background: #fd7e14; color: #fff; }
.st-agotar {
    position: absolute; top: 6px; left: 6px; z-index: 10;
    background: rgba(0,0,0,.65); color: #fff;
    font-size: .65rem; font-weight: 700;
    pointer-events: all; cursor: pointer;
    transition: background .15s;
}
.st-agotar:hover { background: rgba(187,31,53,.9) !important; }

.marcoimgweb .numenfoto {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: auto !important;
    height: auto !important;
    border: none;
    border-radius: 40px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* ─── Selector de quantitat en línia ────────────────────────── */
.iconminus,
.formpedidonumber,
.iconplus {
    display: inline-block !important;
    vertical-align: middle !important;
}

.formpedidonumber {
    margin-top: 8px !important;
}

.iconminus,
.iconplus {
    padding: 0 4px !important;
    line-height: 1 !important;
}

.iconminus {
    margin-left: -4px !important;
}

.iconplus {
    margin-left: -4px !important;
}

@media (max-width: 480px) {
    .iconminus {
        padding: 0 !important;
    }
}

.iconplus {
    margin-top: 4px !important;
}

/* ═══════════════════════════════════════════════════════════════
   ENCARREGO — CSS per resolució (fusionat des de encarrego/css/)
   ═══════════════════════════════════════════════════════════════ */

/* ─── styles_media_mini_movil.css ─────────────────────────────────────────────── */
@media screen and (min-width: 220px) and (max-width: 320px) {

    /* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px


@media screen and (min-width: 320px) and (max-width: 480px) {

*/
    .txtindex {
        font-size: 10px;
    }

    .imgindex {
        width: 100%;
    }

    .boxtxtdescres {
        width: 100%;
        height: 110px;
        list-style: none;
        text-align: center;
        vertical-align: top;
        display: inline-block;
        padding-top: 8px;
        padding-bottom: 4px;
        opacity: 100%;
        white-space: normal;
    }

    .boxtxtdescresxec {
        width: 100%;
        height: 900px;
        list-style: none;
        text-align: center;
        vertical-align: top;
        display: inline-block;
        padding-top: 8px;
        padding-bottom: 4px;
        opacity: 100%;
        white-space: normal;
    }

    .divindex {
        margin-right: 1%;
        width: 50%;
        display: inline-block;
        vertical-align: top;
    }

    .divtext {
        width: 40%;
        text-align:
            center;
        display:
            inline-block;
        vertical-align: top;
    }

    .divcss {
        width: 98%;
        margin: auto;
    }

    .headlogoecro {
        display: flex;
        align-items: flex-start;

    }

    .logoecro {
        width: 50px;
        animation: rotarY 2s ease-in-out forwards;
        transform-style: preserve-3d;
    }

    .texteencarrego {
        margin-left: 4px;
        margin-top: 1px;
        font-size: 18px;
        color: blue;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 1s ease-out forwards;
        animation-delay: 1s;
        text-align: left;
        vertical-align: top;
        padding-top: 0px;
    }

    .textelangline {
        width: 100px;
        margin-top: -10px;
        margin-left: 4px;
        font-size: 6px;
        font-weight: normal;
        font-style: italic;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 4s ease-out forwards;
        animation-delay: 1s;
        text-align: left;
    }

    .textecmdonline {
        width: 100px;
        margin-top: 0px;
        margin-left: 60px;
        font-size: 8px;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 2s ease-out forwards;
        animation-delay: 2s;
        text-align: left;
    }

    @keyframes rotarY {
        from {
            transform: rotateY(0deg);
        }

        to {
            transform: rotateY(360deg);
        }
    }

    @keyframes aparecerTexto {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }


    #nombreusuario {
        width: 96%;
        max-width: 280px;
    }

    #telefonopagador {
        width: 96%;
        max-width: 280px;
    }

    #correousuario {
        width: 96%;
        max-width: 280px;
    }

    .mensajereserva {
        min-width: 280px;
        max-width: 280%;
        width: 100%;
        box-sizing: border-box;

    }



    #elticket {
        margin-left: 0px;
        width: 100%;
        list-style:
            none;
        display: inline-block;
        vertical-align: top;
        padding: 2px;
        padding-top: 16px;
    }

    #seccioncookie {
        font-size: 12px;

    }

    div.centeredconsola {
        position: fixed;
        top: 10px;
        left: 10px;
        transform: translate(-50%, -50%);
    }

    div.centered {
        position: fixed;
        top: 50%;
        left: 60%;
        transform: translate(-50%, -50%);
    }

    .selectdia {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .selectdia:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    #diaservicio {
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 1.0em;
        color: #141938;
        font-weight: bolder;
    }

    * {
        margin: 0;
        padding: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    body {
        width: 100%;
        margin: 0px;

    }

    a {
        text-decoration: none;
        color: #BB1F35;
    }

    a:hover {
        text-decoration: none;
        color: white;
    }

    .txtlincompra {
        text-align: center;
        padding: 2px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 80%;
        border: none;
        color: white;
        font-size: 10px;
    }



    .txtentrelasylas {
        color: #000000;
        padding-bottom: 2px;
        width: 100%;
        font-size: 10px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .lahoraserv {
        width: 100px;
        font-size: 1em;
        border-color: grey;
        margin-left: 8px;
        margin-right: 8px;
        margin-top: 4px;
        border-style: solid;
        border-width: 1px;
        text-align: center;
        border-radius: 4px 4px 4px 4px;
        -webkit-datetime-edit: :-webkit-datetime-edit-fields-wrapper::-webkit-datetime-edit-text::-webkit-datetime-edit-month-field::-webkit-datetime-edit-day-field::-webkit-datetime-edit-year-field::-webkit-inner-spin-button::-webkit-calendar-picker-indicator;
        padding: 6px;
        font-size: 14px;
        font-weight: bold;
        color: blue;
    }

    .txtindique {
        margin: auto;
        width: 90%;
        text-align: center;
        margin-bottom: 8px;
        font-size: 10px;
    }


    .ullinprods {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        height: 22px;
    }

    .cabetick0 {
        margin-left: 0px;
        font-size: 12px;
    }

    .cabetick {
        margin-left: 2px;
        font-size: 12px;
    }

    .cabetick10 {
        margin-left: 4px;
        font-size: 12px;
    }


    .linprods1 {

        border: 0px solid #A8A8A8;
        text-align: center;
        background: red;
        padding: 4px;
        width: 100%;
        display: inline-block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 9px;

    }


    .linprods2 {
        border: 0px solid #A8A8A8;
        text-align: left;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 9px;
    }


    .linprods3 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        background: red;
        padding: 4px;
        width: 70%;
        display: inline-block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 9px;

    }


    .linprods4 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 9px;

    }


    .linprods5 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 9px;

    }

    .ullindata {
        list-style: none;
        width: 100%;
        display: inline-block;
        vertical-align: top;
    }

    .ullindatad {
        list-style: none;
        padding-left: 8px;
        width: 100%;
        display: none;
        visibility: hidden;
        vertical-align: top;
    }

    #frmcondiciones {
        list-style: none;
        width: 100%;
        vertical-align: top;
        margin: 0px;
        padding: 0px;
    }

    #libotonOK {
        margin-bottom: 60px;
        list-style: none;
        width: 100%;
        vertical-align: bottom;
    }

    .txtselec {
        color: #000000;
        margin-top: 6px;
        padding-top: 2px;
        width: 100%;
        font-size: 14px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }

    .txtgustosa {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 90%;
        margin-left: 5%;
        font-size: 12px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: justify;
    }

    .txtservdomi {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 100%;
        font-size: 9px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .txtservdomi2 {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 100%;
        font-size: 9px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .pobserv {

        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 1.2em;
        color: #141938;
        font-weight: bolder;

    }


    .txtmnuclient {
        list-style: none;
        width: 20%;
        display: inline-block;
        vertical-align: top;
        text-align: right;
    }

    .linkmnucli {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }

    .linkmnucli :hover {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }


    .linkcarta {
        text-align: right;
        width: 100%;
        text-align: center;
        vertical-align: middle;
        font-size: 10px;
    }

    .linkcarta :hover {
        width: 100%;
        text-align: center;
        padding-top: 2px;
        vertical-align: middle;
        font-size: 10px;
    }


    .classli {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
    }

    .txtstrneon {
        width: 100%;
        text-align: center;
        font-size: 10px;
        text-align: center;
        padding-top: 2px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        color: #000000;
    }

    h1 {
        font-weight: normal;
        font-size: 20px;
        text-align: justify;
    }

    h2 {
        font-weight: normal;
        font-size: 18px;
        text-align: justify;
    }

    h3 {
        font-weight: normal;
        font-size: 16px;
        text-align: justify;
    }

    h4 {
        font-weight: normal;
        font-size: 14px;
        text-align: justify;
    }

    h5 {
        font-weight: normal;
        font-size: 12px;
        text-align: justify;
    }

    header {
        color: #fff;
        margin-top: 0px;
        margin-bottom: 10px;
        background: black;
        font-size: 12px;
    }

    header .contenedor {
        overflow: hidden;
        margin-top: 0px;
    }

    header .logo {
        width: 100px;
        margin-left: 0px;
        margin-top: 6px;
        height: 30px;
        text-align: center;
    }

    header .logo a {
        color: #fff;
        font-size: 16px;
        line-height: 10px;
    }

    header .logo a:hover {
        text-decoration: none;
    }

    header .titonline {
        margin-left: 0px;
        margin-top: 0px;
        font-size: 10px;
    }

    .imglogo {
        width: 70%;
        margin-left: 15%;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }


    .lilogocli {
        width: 40%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: right;
    }


    .lilogoclim {
        width: 50%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .nombrepob {
        width: 100%;
        font-size: 10px;
        font-weight: bolder;

        text-align: center;

    }

    .nombre {
        margin-top: 10px;
        width: 100%;
        font-size: 18px;
        font-weight: bolder;

        text-align: center;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }


    .logopedido {
        width: 100%;
        vertical-align: top;
    }

    .txtulindex {
        width: 96%;
        margin-left: 2%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .divcss {
        width: 94%;
        margin: auto;
    }

    .enlang {
        list-style: none;
        font-size: 0.6em;
        margin-left: 65px;
        min-width: 60px;
        vertical-align: bottom;
        line-height: 4px;
        margin-top: 3px;
    }

    #navbar {
        position: fixed;
        top: 0px;
        width: 100%;
        display: block;
        transition: top 0.3s;
        z-index: 9991;
    }

    #navfot {
        position: fixed;
        bottom: 0px;
        width: 100%;
        display: block;
        transition: bottom 0.3s;
        z-index: 9992;
    }

    .alang {
        width: 100%;
        text-decoration: none;
        text-align: right;
        font-size: 10px;
        color: #fff;
        margin-top: 2px;
        margin-right: 4px;
    }

    .alang :hover {
        text-decoration: none;
        color: #fff;
    }


    .linktaf {
        text-decoration: none;
        color: #2f6d84;
        width: 100%;
    }

    .linktaf:hover {
        text-decoration: none;
        color: #BB1F35;
        width: 100%;
    }

    .login2 a {
        float: right;
        text-decoration: none;
        color: white;
        width: 100%;
        font-size: 10px;
    }

    .login2 a:hover {
        text-decoration: underline;
    }

    .iconstipo a {
        text-decoration: none;
        color: white;
    }

    .iconstipo a:hover {
        font-style: italic;
    }

    .primercontenedor {
        width: 99%;
        margin-left: 0.1%;
        margin-top: 60px;
    }

    .contenedormenu {
        width: 98%;
        margin-left: 1%;
    }


    .contenedormenucli {
        display: none;
        visibility: hidden;
    }

    .contenedor {
        width: 99%;
        margin-left: 0.5%;
        padding: 2px;
    }

    .contenedorbt {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .contenedorpeds {
        width: 90%;
        margin-left: 5%;
        padding: 4px;
    }


    .lblfechapanel {
        text-align: center;
        margin-top: 13px;
        font-size: 12px;
        vertical-align: middle;

        padding-left: 2px;
        padding-top: 2px;
        color: black;
        cursor: pointer;
    }


    .divfechapanel {
        position: fixed;
        right: 2px;
        top: 0;
        list-style: none;
        display: inline-block;
        width: 70px;
        height: 12px;
        font-size: 12px;
        vertical-align: top;
        text-align: center;
        background-color: white;
        border-style: none;
        border-radius: 4px;
        border-width: 1px;
        margin-top: 17px;
        z-index: 99980;
    }

    .divfechapanel2 {
        position: fixed;
        right: 0px;
        top: 0;
        list-style: none;
        font-size: 12px;
        display: inline-flex;
        width: 70px;
        height: 20px;
        vertical-align: top;
        text-align: center;
        cursor: pointer;
        z-index: 99981;
    }

    .divfechas {
        position: fixed;
        right: 2px;
        top: 42px;
        list-style: none;
        display: inline-block;
        width: 78px;
        vertical-align: top;
        text-align: left;
        background-color: white;
        border-style: solid;
        border-radius: 6px;
        background-color: white;
        border-width: 1px;
        margin-top: 2px;
    }

    .divfechapanel3 {
        position: fixed;
        right: 2px;
        top: 10;
        display: inline-block;
        width: 76px;
        vertical-align: top;
        text-align: left;
    }

    #hojapedido {
        width: 99%;
        margin-left: 0.5%;
        margin-top: 18px;
        padding: 2px;

    }

    .izquierda {
        float: left;
    }

    .derecha {
        float: right;
        margin-top: 4px;
        margin-bottom: 4px;
        margin-right: 4px;
    }

    .centro {
        float: left;
        width: 60%;
        list-style: none;
        font-size: 0.3em;
        vertical-align: top;
        top: 3px;
    }

    .post {
        width: 100%;
        margin-left: 4px;

        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);

        margin-bottom: 30px;
        padding: 12px;
    }

    .unidadesventa {
        font-size: 10px;
    }

    .btconsola {
        width: 99%;
        height: 100%;
        color: black;
        margin-left: 0.5%;
        margin-right: 0.5%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 50px;
        min-height: 46px;
        text-align: center;
        font-size: 20px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;

    }

    .btconsolados {
        width: 99%;
        height: 100%;
        color: black;
        margin-left: 0.5%;
        margin-right: 0.5%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 10px;
        min-height: 46px;
        text-align: center;
        font-size: 20px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;
    }

    .btconsolaseis {
        width: 99%;
        height: 100%;
        color: black;
        margin-left: 0.5%;
        margin-right: 0.5%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 10px;
        min-height: 46px;
        text-align: center;
        font-size: 20px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;

    }

    .ulnoves {
        width: 100%;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
        margin-top: 0px;
        background-color: #EF82A1;
    }


    .lesnoves {
        width: 12%;
        top: 2px;
        left: 2px;
        border-style: solid;
        border-radius: 24px;
        border-width: 1px;
        background-color: #FFFFFF;
    }

    .postcarta {
        width: 99%;
        margin-left: 0.5%;

    }

    .postlogin {
        width: 90%;
        margin-left: 5%;

        background: #fff;

        margin-top: 30px;

        padding: 12px;
    }

    .postpedido {
        width: 99%;
        margin-left: 0.5%;
        padding-top: 8px;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        width: 100%;
        list-style: none;
        padding: 8px;
        margin-bottom: 10px;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
    }

    .ulizquierda {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .ulcabped {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .ulderechag {
        margin-left: 20%;
        margin-top: 4px;
        vertical-align: top;
        padding-left: 0;
        width: 100%;
        list-style: none;
        display: inline-block;
        text-align: left;
        font-size: 6px;
    }

    .ulderechano {
        text-align: left;
        padding-left: 3px;
        margin-top: 120px;
        margin-left: 44%;
        width: 30%;
        background-color: white;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 7px;
    }

    .ulderecha {
        display: none;
    }

    .postpedido {
        width: 98%;
        margin-left: 1%;
        padding-top: 8px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }


    .txtnomenficha {
        color: #666666;
        width: 59%;
        font-size: 1.25em;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }

    .login {
        float: right;
        text-decoration: none;
        color: white;
        font-size: 10px
    }

    .login:hover {
        text-decoration: underline;
        font-size: 10px
    }


    .btn {
        padding: 15px;
        display: inline-block;
        margin: 15px 0;
        background: #595959;
        color: #fff;
        font-size: 1em;
        border-radius: 2px;
        border: none;
    }

    .btn:hover {
        text-decoration: none;
        background: #BB1F35;
    }

    .botobusca {
        margin-right: 12px;
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 1em;
        border-radius: 2px;
        border: none;
    }

    .botobusca:hover {
        text-decoration: none;
        background: #BB1F35;
    }

    .btnwprodn {
        margin-right: 12px;
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 1em;
        border-radius: 2px;
        border: none;
    }

    .btnwprodn:hover {
        text-decoration: none;
        background: #BB1F35;
    }


    .botoenter {
        color: rgba(255, 255, 255, .7);
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        font-size: 16px;
        line-height: 16px;
    }

    .botoenter:hover {
        color: #fff;
    }

    .icomenu {
        color: #666666;
        text-align: left;
        padding-bottom: 8px;
        font-size: 2em;
        list-style: none;
        vertical-align: top;
        cursor: pointer;
        margin-left: 4px;
    }


    .txticomenu {
        text-align: left;
        display: inline-block;
        visibility: visible;
        font-size: 24px;
        padding-top: 6px;
        list-style: none;
        vertical-align: top;
        text-align: left;
        color: #666666;
        cursor: pointer;
    }



    .txticobak {
        color: #666666;
        padding-bottom: 2px;
        width: 8%;
        font-size: 12px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        text-align: right;
        padding-left: 6px;
    }

    .txticobak2 {
        color: #666666;
        padding-bottom: 2px;
        width: 100%;
        font-size: 12px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        text-align: right;
        padding-left: 6px;
    }


    .txttitulo {
        width: 100%;
        font-size: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        margin-left: 6px;
    }

    .txticobk {
        color: #666666;
        width: 8%;
        font-size: 12px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: right;
        cursor: pointer;
        left: 0px;
    }

    .txtcarta {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: right;
        font-size: 10px;
        padding-bottom: 4px;
    }

    .txtmanual {
        width: 100%;
        margin-bottom: 20px;
        list-style: none;
        display: inline-block;
        vertical-align: bottom;
        text-align: center;
        opacity: 80%;
    }

    .txtmnuclient {
        list-style: none;
        width: 20%;
        display: inline-block;
        vertical-align: top;
        text-align: right;
    }

    .linkmnucli {
        width: 100%;
        text-align: right;
        vertical-align: top;
        font-size: 10px;
    }

    .linkmnucli :hover {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }

    .txtdescartac {
        width: 14%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
    }

    .txtdescarta {
        width: 23%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        padding-left: 3px;
    }

    .txtdescarta2 {
        width: 28%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;

    }

    .txtdescartai {
        width: 12%;
        list-style: none;
        display: inline-block;
        vertical-align: bottom;
        font-size: 12px;
        text-align: right;

    }

    .txtporenc {
        width: 2%;
        list-style: none;
        font-weight: bold;
        color: blue;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
        font-weight: bolder;
    }

    .txtvegeta {
        width: 1%;
        list-style: none;
        font-weight: bold;
        color: green;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
        font-weight: bolder;
    }

    .txtaquien {
        list-style: none;
        width: 99%;
        display: inline-block;
        vertical-align: top;

    }



    .txtselycon {
        list-style: none;
        width: 50%;
        display: inline-block;
        vertical-align: top;
        padding-top: 8px;

    }

    .txtsineces {
        list-style: none;
        width: 100%;
        display: inline-block;
        vertical-align: top;
        padding: 4px;
        margin-top: 6px;
    }

    .hazclickanun {
        list-style: none;
        width: 100%;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        padding: 4px;
        margin-top: 6px;

    }

    .txtresultados {
        list-style: none;
        font-size: 9px;
        width: 100%;
        display: inline-block;
        vertical-align: bottom;
        text-align: right;
    }






    .postprods {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        background: #fff;
        border-color: grey;
        border-style: solid;
        border-width: 1px;
        text-align: center;
        border-radius: 4px 4px 4px 4px;
        margin-bottom: 6px;
        padding: 8px;
        appearance: textfield;
    }

    .postprods input[type="number"]::-webkit-outer-spin-button,
    .postprods input[type="number"]::-webkit-inner-spin-button {
        margin: 0;
        appearance: textfield;
    }

    .postprodsencargo {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        background: #fff;
        border-radius: 12px;
        margin-bottom: 6px;
        padding: 4px;
    }

    .postprodsencargo input[type="number"]::-webkit-outer-spin-button,
    .postprodsencargo input[type="number"]::-webkit-inner-spin-button {
        margin: 0;
        appearance: textfield;
    }

    .postprodsweb {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-bottom: 14px;
        padding: 14px;
    }

    .postprodsweb input[type="number"]::-webkit-outer-spin-button,
    .postprodsweb input[type="number"]::-webkit-inner-spin-button {
        margin: 0;
        appearance: textfield;
    }

    .txtprodsel {
        margin: 0px;
        padding: 0px;
        width: 49%;
        text-align: left;
        vertical-align: top;
        vertical-align: bottom;
        opacity: 80%;
        margin: 0px;
        padding: 0px;
        font-size: 12px;
    }

    .txtnumlinpeds {
        vertical-align: top;
        opacity: 80%;
        width: 20%;
        font-size: 10px;
    }

    .txtwebcodi {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .txtweb {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-top: 6px;
    }

    .txtwebp {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-top: 6px;
        background-color: #f4f4f4;
        border-radius: 4px;
        padding: 2px;
    }

    .contenedorclientes {
        list-style: none;
        padding-right: 4px;
        width: 99%;
        height: 400px;
        min-height: 400px;
        max-height: 400px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    .txtcatalog {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
        margin-bottom: 16px;
    }

    .contenedormenucliente {
        list-style: none;
        padding-right: 4px;
        width: 99%;
        height: 340px;
        min-height: 340px;
        max-height: 340px;
        display: inline-block;
        vertical-align: top;
        overflow: hidden;
        margin-top: 10px;
        margin-bottom: 30px;
        margin-left: 1%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .contenedorproductos {
        list-style: none;
        padding-right: 4px;
        width: 24%;
        height: 420px;
        min-height: 420px;
        max-height: 420px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .contenedorproductosweb {
        list-style: none;
        padding-right: 2px;
        width: 23.8%;
        height: 600px;
        min-height: 600px;
        max-height: 600px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    .txticomm {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-left: 8px;
        padding-bottom: 2px;
    }


    .contenedorproductosencargo {
        list-style: none;
        padding-right: 2px;
        width: 100%;
        height: 472px;
        min-height: 472px;
        max-height: 472px;
        display: inline-block;
        vertical-align: top;
        padding-bottom: 8px;
        margin-bottom: 24px;
        margin-right: 1%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .postencargo {
        width: 100%;
        height: 442px;
        min-height: 442px;
        max-height: 442px;
    }

    .postweb {
        width: 100%;
        height: 326px;
        min-height: 326px;
        max-height: 326px;
    }

    .postlimarcoimgweb {
        width: 98%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        margin-left: 1%;
        ;
    }

    .marcoimgweb {
        width: 98%;
        margin-left: 1%;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .imgweb {
        width: 100%;
        max-height: 192px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }



    .imgwebcliente {
        width: 180px;
        max-height: 180px;
        min-width: 180px;
        max-width: 180px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .imgcliweb {
        width: 180px;
        max-height: 180px;
        min-width: 180px;
        max-width: 180px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .postmenucliente {
        width: 100%;
        list-style: none;
        display: inline-block;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-bottom: 30px;
        padding: 10px;
    }


    /* --- Post familias --- */

    .postfam {
        margin-bottom: 30px;
        padding: 30px;
        width: 70%;
        padding-top: 6px;
        padding-bottom: 8px;
        background: #fff;
        border-style: solid;
        border-width: 1px;
        border-radius: 6px 6px 6px 6px;
    }

    .postfam article .titulo {
        font-size: 28px;
        font-weight: normal;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .postfam article .titulo a {
        color: #000;
    }

    .postfam article .fecha {
        color: #747474;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .postfam article .thumb {
        margin-bottom: 20px;
    }

    .postfam article .thumb img {
        vertical-align: top;
        width: 100%;
    }

    .postfam article .extracto {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .postfam article .continuar {
        color: #BB1F35;
        font-weight: bold;
    }



    /* --- Paginacion --- */

    .paginacion {
        margin-bottom: 10px;
    }

    .paginacion ul {
        list-style: none;
        text-align: center;
    }

    .paginacion ul li {
        display: inline-block;
        margin: 0 5px;
        color: #fff;
    }

    .paginacion ul li a {
        display: block;
        padding: 10px 20px;
        background: #595959;
        color: #fff;
    }

    .paginacion ul li a:hover {
        background: #BB1F35;
        text-decoration: none;
    }

    .paginacion ul .active {
        background: #BB1F35;
        padding: 10px 20px;
    }

    .paginacion ul .disabled {
        background: #a8a8a8;
        padding: 10px 20px;
        cursor: not-allowed;
    }

    .paginacion ul .disabled:hover {
        background: #a8a8a8;
    }

    .legend {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 14px;
    }

    .legendT {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 16px;
        text-align: center;
        vertical-align: middle;
    }

    .legend2 {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 12px;
    }

    .formulario input[type="number"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 4px;
        width: 90px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #141938;
    }

    .btgrabap {
        padding: 2px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 90px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .btborrap {
        padding: 4px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 90px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .btgrabap:hover {
        background: #BB1F35;
    }

    .btborrap:hover {
        background: #BB1F35;
    }

    .btborrap {
        padding: 8px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 70px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnquita {
        padding: 6px;
        background: #595959;
        color: #fff;
        font-size: 16px;
        width: 16px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnquita:hover {
        background: #BB1F35;
    }

    #btadd {
        padding-top: 22px;
        padding-left: 1px;
        padding-bottom: 20px;
        vertical-align: bottom;
        background: #595959;
        margin-top: 22px;
        color: white;
        font-size: 16px;
        text-align: center;
        width: 28px;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    #btadd:hover {
        background: #BB1F35;
    }

    #botonnws {
        margin-left: 4px;
        background: #595959;
        vertical-align: top;
        color: #fff;
        font-size: 16px;
        width: 70px;
        border-radius: 4px;
        border: none;
        cursor: pointer;
    }

    #botonnws:hover {
        background: #BB1F35;
    }

    .botonnwp {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 180px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnwp:hover {
        background: #BB1F35;
    }


    .botonnwd {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 180px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnwd:hover {
        background: #BB1F35;
    }

    .postbuscacli {
        width: 100%;
        margin-left: 6px;
        padding: 3px;
        border-radius: 6px;
        border: solid;
        border-width: 1px;
        cursor: pointer;
        border-color: #999999;
    }


    .iddirenvid {
        width: 100%;
        margin-left: 6px;
        padding: 3px;
        display: inline-block;
        list-style: none;
    }


    .botototalista {
        padding: 5px;
        background: #7782ad;
        color: #fff;
        font-size: 12px;
        width: calc(100% - 8px);
        margin: 0 4px;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .botototalista:hover {
        background: #BB1F35;
    }

    .botoeliminar:hover {
        background: #fff;
        color: #7782ad;
    }

    .botototalista2 {
        padding: 5px;
        background: #7782ad;
        color: #fff;
        font-size: 12px;
        width: 100%;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .botototalista2:hover {
        background: #BB1F35;
    }


    /* --- Formularios --- */

    .formularioprecios {
        width: 100%;
        overflow: hidden;
    }

    .formulario {
        width: 100%;
        overflow: hidden;
    }

    .newpassword {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 4px;
        width: 60%;
        display: inline-block;
        margin-bottom: 4px;
        font-size: 12px;
        color: #141938;
    }

    #elorden {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #elorden:focus {
        border: 1px solid #595959;
        padding: 6px;
    }

    #seleccuales {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 240px;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #seleccuales:focus {
        border: 1px solid #595959;
        padding: 6px;
    }

    #frmunidadesventa {
        margin-top: 4px;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 10px;
        font-size: 12px;
        color: #141938;
    }

    #frmunidadesventa:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    .frmunidadesventa {
        margin-top: 4px;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 2px;
        font-size: 14px;
        color: #141938;
        text-align: center;
    }

    .frmunidadesventa:focus {
        border: 2px solid #595959;
    }

    #frmformatoventa {
        vertical-align: top;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 86%;
        margin-top: 6px;
        font-size: 18px;
        color: #141938;
    }

    #frmformatoventa:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    #frmimporte {
        vertical-align: top;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 40%;
        font-size: 18px;
        color: #141938;
    }

    #frmimporte {
        border: 2px solid #595959;
        padding: 10px;
        -moz-appearance: textfield;
    }

    .formpedido input[type="text"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formpedido input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .fechaservicio {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 2px;
        width: 120px;
        font-size: 14px;
        color: #141938;
    }

    .formpedido input[type="submit"]:hover {
        background: #BB1F35;
    }

    .numenfoto {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .botonOK {
        padding: 15px;
        margin-top: 60px;
        margin-right: 10%;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 80%;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonOK:hover {
        background: #BB1F35;
    }

    .formpedidonumber {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 4px;
        width: 60px;
        margin-top: 2px;
        font-size: 18px;
        color: #141938;
        text-align: center;
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .iconminus {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-right: 1px;
        visibility: hidden;
    }

    .iconplus {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-left: 1px;
        visibility: hidden;
    }

    .formularioprecios input[type="number"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 40%;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .formularioprecios input[type="number"]::-webkit-outer-spin-button,
    .formularioprecios input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .formulario input[type="text"],
    .formulario input[type="number"],
    .formulario input[type="email"],
    .formulario input[type="password"],
    .formulario input[type="label"],
    .formulario select[id="pais"],
    .formulario select[id="sector"],
    .formulario select[id="actividad"],
    .formulario select[id="id_especialidad"],
    .formulario select[id="tipoprod"],
    .formulario select[id="id_unimedpeso"],
    .formulario select[id="id_fam"],
    .formulario select[id="id_subfam"],
    .formulario select[id="li"],
    .formulario textarea {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 16px;
        width: 100%;
        display: block;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .formulario input[type="date"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        width: 110px;
        font-size: 18px;
        color: #141938;
    }

    .formulario input[type="date"]:focus {
        border: 2px solid #595959;
    }

    .formulario input[type="text"],
    .formulario input[type="date"],
    .formulario input[type="time"],
    .formulario input[type="number"],
    .formulario input[type="email"],
    .formulario input[type="password"],
    .formulario input[type="label"],
    .formulario select[id="tipo"],
    .formulario select[id="fam"],
    .formulario select[id="subfam"],
    .formulario textarea {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 16px;
        width: 100%;
        display: block;
        margin-bottom: 20px;
        font-size: 1em;
        color: #141938;
    }

    .formulario input[type="text"]:focus,
    .formulario input[type="date"]:focus,
    .formulario input[type="time"]:focus,
    .formulario input[type="number"],
    .formulario input[type="email"]:focus,
    .formulario input[type="password"]:focus,
    .formulario select[id="tipo"]:focus,
    .formulario select[id="fam"]:focus,
    .formulario select[id="subfam"]:focus,
    .formulario textarea:focus {
        border: 2px solid #595959;
        padding: 15px;
    }

    .formulario input[type="email"]:focus,
    .formulario input[type="password"]:focus,
    .formulario select[id="pais"]:focus,
    .formulario select[id="sector"]:focus,
    .formulario select[id="actividad"]:focus,
    .formulario select[id="tipoprod"]:focus,
    .formulario select[id="id_unimedpeso"]:focus,
    .formulario select[id="id_fam"]:focus,
    .formulario select[id="id_subfam"]:focus,
    .formulario textarea:focus {
        border: 2px solid #595959;
        padding: 15px;
    }

    .formulario textarea {
        max-width: 100%;
        min-width: 100%;
        min-height: 100px;
    }

    .formulario input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formulario input[type="submit"]:hover {
        background: #BB1F35;
    }

    .formbusca input {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 10px;
        width: 78%;
        display: inline-block;
        margin-bottom: 8px;
        font-size: 14px;
        color: #141938;
    }

    .formbusca select {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 10px;
        width: 100%;
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        color: #141938;
    }

    .formbusca input:focus,
    .formbusca select:focus {
        border: 2px solid #595959;
        padding: 4px;
    }

    .formulario textarea {
        max-width: 100%;
        min-width: 100%;
        min-height: 100px;
    }

    .formulario input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formulario input[type="submit"]:hover {
        background: #BB1F35;
    }

    .larger {
        width: 10px;
        height: 10px;
        transform: scale(1.5);
        margin: 10px;
    }

    .pequer {
        width: 10px;
        height: 10px;
        transform: scale(1);
        margin: 2px;
    }

    .iconselecc {
        padding: 10px;
        text-align: center;
        width: 48px;
        height: 40px;
        max-height: 40px;
        font-size: 18px;
        line-height: 18px;
        background: #6495ED;
        display: inline-block;
        color: white;
        vertical-align: bottom;
        border-radius: 18px 18px 18px 18px;
    }

    .iconselecc:hover {
        cursor: pointer;
    }

    .iconsbusca {
        padding: 10px;
        text-align: center;
        width: 48px;
        max-height: 48px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 0 0 3px;
    }

    .iconslogin {
        padding: 19px;
        text-align: center;
        width: 48px;
        max-height: 48px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 0 0 3px;
    }

    .iconspwr {
        padding: 10px;
        text-align: center;
        width: 30px;
        max-height: 30px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 3px 3px 3px;
    }

    .iconsalta {
        padding: 4px;
        text-align: center;
        width: 18px;
        max-height: 24px;
        font-size: 10px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        border-radius: 3px 0 0 3px;
    }

    .iconsup {
        padding: 4px;
        text-align: center;
        width: 18px;
        max-height: 24px;
        font-size: 10px;
        line-height: 18px;
        background: white;
        display: inline-block;
        color: black;
        vertical-align: top;
        border-radius: 3px 0 0 3px;
    }

    .errores {
        text-align: center;
        color: red;
    }

    .btnofecha {
        vertical-align: top;
        width: 22px;
        height: 22px;
        background: #BB1F35;
        color: #fff;
        font-size: 1em;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .btnofecha:hover {
        background: #333333;
    }

    .gridcontenedora {
        width: 100%;
        display: list-item;
    }

    .gridvacaciones {
        vertical-align: top;
        width: 100%;
        display: inline-block;
        margin-left: 2px;
        border: 1px solid #595959;
    }

    .gridhorarios {
        vertical-align: top;
        width: 100%;
        display: inline-block;
        border: 1px solid #595959;
    }

    .griddias {
        vertical-align: top;
        width: 100%;
        display: inline-block;
    }

    .gridhoras {
        vertical-align: top;
        width: 100%;
        display: inline-block;
    }

    .lineavacas {
        display: inline-block;
        vertical-align: top;
        list-style: none;
        width: 100%;
        margin: auto;
        padding: 3px;
    }

    .ulvac1 {
        margin-left: 10px;
        margin-right: 2px;
        width: 100%;
        vertical-align: top;
        font-size: 16px;
    }

    .livac1 {
        width: 194px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        margin-left: 12px;
    }

    .livac4 {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .ulvac2 {
        width: 210px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac2 {
        width: 70px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac3 {
        width: 110px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        height: 30px;
        text-align: center;
    }

    .lblvac {
        width: 80px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .lblvac2 {
        width: 40px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .btvac {
        width: 16px;
        height: 18px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .btaddvac {
        width: 26px;
        height: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 14px;
    }

    .livacas {
        vertical-align: top;
        list-style: none;
        width: 100%;
        display: inline-table;
        visibility: visible;
        margin-right: 0px;
        font-size: 0.8em;
    }

    .lidias {
        vertical-align: top;
        list-style: none;
        width: 13%;
        display: inline-block;
    }

    .labeldias {
        vertical-align: top;
        margin-left: 2px;
        color: red;
    }

    .horas {
        visibility: collapse;
        margin-left: 4px;
        width: 58px;
    }

    .legend {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 12px;
        vertical-align: top;
        width: 90%;
        display: inline-block;
        margin-left: 10px;
    }

    .lineasdias {
        margin-bottom: 2px;
        margin-top: 4px;
        font-size: 14px;
        vertical-align: top;
        width: 90%;
        display: inline-block;
    }

    .legend2 {
        text-align: left;
        vertical-align: bottom;
        height: 18px;
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 18px;
    }

    .grupo {
        width: 100%;
        margin-left: 6px;
    }

    .divlin {
        list-style: none;
        width: 33%;
        display: inline-block;
        padding-top: 20px;
    }

    .divmnulateral {
        list-style: none;
        width: 100%;
        display: inline-block;
        padding-top: 20px;
    }

    .checks {
        margin-left: 4px;
    }

    .idcsslin {
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 6px;
        font-size: 14px;
        color: red;
    }


    .buscarprod {
        width: 60%;
        margin-left: 20%;
        margin-bottom: 10px;
        display: none;
        visibility: hidden;
    }

    #cualbusca {
        width: 90%;
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 10px;
        color: #141938;
        font-weight: bolder
    }


    #verproductos {
        width: 100%;
        list-style: none;
        display: none;
        vertical-align: top;
    }


    #myBtn {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Fixed/sticky position */
        bottom: 56px;
        /* Place the button at the bottom of the page */
        left: 30px;
        /* Place the button 30px from the right */
        z-index: 99998;
        /* Make sure it does not overlap */
        border: none;
        /* Remove borders */
        outline: none;
        /* Remove outline */
        background-color: #BB1F35;
        /* Set a background color */
        color: white;
        /* Text color */
        cursor: pointer;
        /* Add a mouse pointer on hover */
        padding-top: 10px;
        /* Some padding */
        padding-bottom: 10px;
        padding-right: 14px;
        padding-left: 14px;
        border-radius: 8px;
        /* Rounded corners */
        font-size: 18px;
        /* Increase font size */
    }

    #myBtn:hover {
        background-color: white;
        /* Add a dark-grey background on hover */
        color: #BB1F35;
        border-style: solid;
        border-width: 1px;
        border-color: #BB1F35;
    }

    #myBtndwn {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Fixed/sticky position */
        top: 80px;
        /* Place the button at the bottom of the page */
        right: 30px;
        /* Place the button 30px from the right */
        z-index: 99999;
        /* Make sure it does not overlap */
        border: none;
        /* Remove borders */
        outline: none;
        /* Remove outline */
        background-color: #BB1F35;
        /* Set a background color */
        color: white;
        /* Text color */
        cursor: pointer;
        /* Add a mouse pointer on hover */
        padding-top: 10px;
        /* Some padding */
        padding-bottom: 10px;
        padding-right: 14px;
        padding-left: 14px;
        border-radius: 8px;
        /* Rounded corners */
        font-size: 18px;
        /* Increase font size */
    }

    #myBtndwn:hover {
        background-color: white;
        /* Add a dark-grey background on hover */
        color: #BB1F35;
        border-style: solid;
        border-width: 1px;
        border-color: #BB1F35;
    }



    .botclcnum {
        height: 48px;
        cursor: pointer;
        list-style: none;
        vertical-align: top;
        display: inline-block;
        width: 30%;
        text-align: center;
        background: red;
        padding-top: 10px;
        border-color: grey;
        border-style: solid;
        border-width: 1px;
        border-radius: 6px 6px 6px 6px;
        font-weight: bolder;
    }

    footer {
        background: #BB1F35;
        color: #fff;
        width: 100%;
        height: 50px;
        vertical-align: bottom;
        font-size: 9px;
        position: fixed;
        margin-bottom: 0px;
        bottom: 0px;
        background-color: #BB1F35
    }

    footer .copyright {
        text-align: center;
        font-size: 9px;
        padding: 8px 0;
    }
}

/* ─── styles_media_movil.css ─────────────────────────────────────────────── */
@media screen and (min-width: 320px) and (max-width: 480px) {

    /* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px

@media screen and (min-width: 320px) and (max-width: 480px) {

*/
    .txtindex {
        font-size: 10px;
    }


    .imgindex {
        width: 100%;

    }

    .boxtxtdescres {
        width: 100%;
        height: 110px;
        list-style: none;
        text-align: center;
        vertical-align: top;
        display: inline-block;
        padding-top: 8px;
        padding-bottom: 4px;
        opacity: 100%;
        white-space: normal;
    }

    .divindex {
        margin-right: 1%;
        width: 24%;
        display: inline-block;
        vertical-align: top;
    }

    .divtext {
        width: 40%;
        text-align: center;
        display: inline-block;
        vertical-align: top;
    }

    .divcss {
        width: 20%;
        display: inline-block;
        vertical-align: top;
    }

    .headlogoecro {
        display: flex;
        align-items: flex-start;

    }

    .logoecro {
        color: white;
        margin-top: 0px;
        width: 40px;
        height: 38px;
        animation: rotarY 2s ease-in-out forwards;
        transform-style: preserve-3d;
    }

    .texteencarrego {
        margin-left: 6px;
        margin-top: 4px;
        font-size: 18px;
        color: yellow;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 1s ease-out forwards;
        animation-delay: 1s;
        text-align: left;
        vertical-align: top;
        padding-top: 0px;
    }

    .textelangline {
        width: 100px;
        margin-top: -10px;
        margin-left: 4px;
        font-size: 6px;
        font-weight: normal;
        font-style: italic;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 4s ease-out forwards;
        animation-delay: 1s;
        text-align: left;
    }

    .textecmdonline {
        width: 100px;
        margin-top: 1px;
        margin-left: 76px;
        font-size: 8px;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 2s ease-out forwards;
        animation-delay: 2s;
        text-align: left;
    }

    @keyframes rotarY {
        from {
            transform: rotateY(0deg);
        }

        to {
            transform: rotateY(360deg);
        }
    }

    @keyframes aparecerTexto {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }


    #nombreusuario {
        width: 96%;
        max-width: 360px;
    }

    #telefonopagador {
        width: 96%;
        max-width: 360px;
    }

    #correousuario {
        width: 96%;
        max-width: 360px;
    }

    .mensajereserva {
        min-width: 390px;
        max-width: 390px;
        width: 100%;
        box-sizing: border-box;

    }

    #elticket {
        margin-left: 0px;
        width: 100%;
        list-style:
            none;
        display: inline-block;
        vertical-align: top;
        padding: 2px;
        padding-top: 16px;
    }

    #seccioncookie {
        font-size: 12px;

    }

    div.centeredconsola {
        position: fixed;
        transform: translate(-50%, -50%);
    }

    div.centered {
        position: fixed;
        top: 50%;
        left: 60%;
        transform: translate(-50%, -50%);
    }

    .selectdia {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .selectdia:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    #diaservicio {
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 1.2em;
        color: #141938;
        font-weight: bolder;
    }

    * {
        margin: 0;
        padding: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    body {
        width: 100%;
        margin: 0px;

    }

    a {
        text-decoration: none;
        color: #BB1F35;
    }

    a:hover {
        text-decoration: none;
        color: #2f6d84;
    }

    .txtlincompra {
        text-align: center;
        padding: 2px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 80%;
        border: none;
        color: white;
        font-size: 10px;
    }


    .txticobak {
        color: #666666;
        padding-bottom: 8px;
        width: 20%;
        font-size: 14px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
    }

    .txtentrelasylas {
        color: #000000;
        padding-bottom: 2px;
        width: 100%;
        font-size: 10px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .lahoraserv {
        width: 100px;
        font-size: 1em;
        border-color: grey;
        margin-left: 8px;
        margin-right: 8px;
        margin-top: 4px;
        border-style: solid;
        border-width: 1px;
        text-align: center;
        border-radius: 4px 4px 4px 4px;
        -webkit-datetime-edit: :-webkit-datetime-edit-fields-wrapper::-webkit-datetime-edit-text::-webkit-datetime-edit-month-field::-webkit-datetime-edit-day-field::-webkit-datetime-edit-year-field::-webkit-inner-spin-button::-webkit-calendar-picker-indicator;
        padding: 6px;
        font-size: 14px;
        font-weight: bold;
        color: blue;
    }

    .btconsola {
        width: 99%;
        height: 25%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        color: black;
        background: lightpink;
        margin: 0;
        font-size: 2em;
        border-color: black;
        margin-left: 2px;
        margin-right: 0px;
        margin-top: 0px;
        border-style: solid;
        border-width: 1px;
        text-align: center;
        border-radius: 4px 4px 4px 4px;
        -webkit-datetime-edit: :-webkit-datetime-edit-fields-wrapper::-webkit-datetime-edit-text::-webkit-datetime-edit-month-field::-webkit-datetime-edit-day-field::-webkit-datetime-edit-year-field::-webkit-inner-spin-button::-webkit-calendar-picker-indicator;
        padding: 6px;
    }


    .txtindique {
        margin: auto;
        width: 90%;
        text-align: center;
        margin-bottom: 8px;
        font-size: 10px;
    }


    .ullinprods {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        height: 22px;
    }

    .cabetick0 {
        margin-left: 0px;
        font-size: 12px;
    }

    .cabetick {
        margin-left: 2px;
        font-size: 12px;
    }

    .cabetick10 {
        margin-left: 4px;
        font-size: 12px;
    }


    .linprods1 {

        border: 0px solid #A8A8A8;
        text-align: center;
        background: red;
        padding: 4px;
        width: 100%;
        display: inline-block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 9px;

    }


    .linprods2 {
        border: 0px solid #A8A8A8;
        text-align: left;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 9px;
    }


    .linprods3 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        background: red;
        padding: 4px;
        width: 70%;
        display: inline-block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 9px;

    }


    .linprods4 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 9px;

    }


    .linprods5 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 9px;

    }

    .ullindata {
        list-style: none;
        width: 100%;
        display: inline-block;
        vertical-align: top;
    }

    .ullindatad {
        list-style: none;
        padding-left: 8px;
        width: 100%;
        display: none;
        visibility: hidden;
        vertical-align: top;
    }

    #frmcondiciones {
        list-style: none;
        width: 100%;
        vertical-align: top;
        margin: 0px;
        padding: 0px;
    }

    #libotonOK {
        margin-bottom: 60px;
        list-style: none;
        width: 100%;
        vertical-align: bottom;
    }

    .txtselec {
        color: #000000;
        margin-top: 6px;
        padding-top: 2px;
        width: 100%;
        font-size: 14px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }

    .txtgustosa {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 90%;
        margin-left: 5%;
        font-size: 12px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: justify;
    }

    .txtservdomi {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 100%;
        font-size: 9px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .txtservdomi2 {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 100%;
        font-size: 9px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .pobserv {

        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 1.2em;
        color: #141938;
        font-weight: bolder;

    }


    .txtmnuclient {
        list-style: none;
        width: 20%;
        display: inline-block;
        vertical-align: top;
        text-align: right;
    }

    .linkmnucli {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }

    .linkmnucli :hover {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }


    .linkcarta {
        width: 100%;
        margin-top: 8px;
        margin-bottom: 30px;
        text-align: center;
        padding-top: 2px;
        vertical-align: middle;
        font-size: 10px;
    }

    .linkcarta :hover {
        width: 100%;
        text-align: center;
        padding-top: 2px;
        vertical-align: middle;
        font-size: 10px;
    }


    .classli {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
    }

    .txtstrneon {
        width: 50%;
        text-align: center;
        font-size: 10px;
        text-align: center;
        padding-top: 4px;
        margin-left: 6px;
        margin-right: 6px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        color: #000000;
    }

    h1 {
        font-weight: normal;
        font-size: 22px;
        text-align: justify;
    }

    h2 {
        font-weight: normal;
        font-size: 20px;
        text-align: justify;
    }

    h3 {
        font-weight: normal;
        font-size: 16px;
        text-align: justify;
    }

    h4 {
        font-weight: normal;
        font-size: 14px;
        text-align: justify;
    }

    h5 {
        font-weight: normal;
        font-size: 12px;
        text-align: justify;
    }

    header {
        color: #fff;
        margin-top: 0px;
        margin-bottom: 10px;
        background: #BB1F35;
        font-size: 14px;
    }

    header .contenedor {
        overflow: hidden;
        margin-top: 0px;
    }

    header .logo {
        width: 130px;
        margin-left: 2px;
        margin-top: 4px;
        height: 20px;
    }

    header .logo a {
        color: #fff;
        font-size: 20px;
        line-height: 20px;
    }

    header .logo a:hover {
        text-decoration: none;
    }

    header .titonline {
        margin-left: 0px;
        margin-top: 0px;
        font-size: 10px;
    }


    .imglogo {
        width: 70%;
        margin-left: 15%;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }


    .lilogocli {
        width: 49%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }


    .lilogoclim {
        width: 50%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .nombrepob {
        width: 100%;
        font-size: 14px;
        font-weight: bolder;

        text-align: center;
    }

    .nombre {
        width: 100%;
        font-size: 16px;
        font-weight: bolder;

        text-align: center;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .logopedido {
        width: 100%;
        vertical-align: top;

    }

    .txtulindex {
        width: 96%;
        margin-left: 2%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .divcss {
        width: 94%;
        margin: auto;
    }

    .enlang {
        list-style: none;
        font-size: 0.6em;
        margin-left: 100px;
        min-width: 110px;
        vertical-align: bottom;
        margin-top: -2px;
        line-height: 8px;
    }

    #navbar {
        position: fixed;
        top: 0px;
        width: 100%;
        display: block;
        transition: top 0.3s;
        z-index: 9991;
    }

    #navfot {
        position: fixed;
        bottom: 0px;
        width: 100%;
        display: block;
        transition: bottom 0.3s;
        z-index: 9992;
    }


    .alang {
        width: 100%;
        text-decoration: none;
        text-align: right;
        font-size: 10px;
        color: #fff;
        margin-top: 2px;
        margin-right: 4px;
    }

    .alang :hover {
        text-decoration: none;
        color: #fff;
    }


    .linktaf {
        text-decoration: none;
        color: #2f6d84;
        width: 100%;
    }

    .linktaf:hover {
        text-decoration: none;
        color: #BB1F35;
        width: 100%;
    }

    .login2 a {
        float: right;
        text-decoration: none;
        color: white;
        width: 100%;
        font-size: 10px;
    }

    .login2 a:hover {
        text-decoration: underline;
    }

    .iconstipo a {
        text-decoration: none;
        color: white;
    }

    .iconstipo a:hover {
        font-style: italic;
    }

    .primercontenedor {
        margin-top: 60px;
    }

    .contenedormenu {
        width: 98%;
        margin-left: 1%;
    }


    .contenedormenucli {
        display: none;
        visibility: hidden;
    }

    .contenedor {
        width: 99%;
        margin-left: 0.5%;
        padding: 2px;
    }

    .contenedorbt {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .contenedorpeds {
        width: 90%;
        margin-left: 5%;
        padding: 4px;
    }

    .lblfechapanel {
        text-align: center;
        margin-top: 8px;
        font-size: 12px;
        vertical-align: middle;

        padding-left: 2px;
        padding-top: 2px;
        color: black;
        cursor: pointer;
    }

    .divfechapanel {
        position: fixed;
        right: 2px;
        top: 0;
        list-style: none;
        display: inline-block;
        width: 80px;
        height: 13px;
        font-size: 14px;
        vertical-align: top;
        text-align: center;
        background-color: white;
        border-style: none;
        border-radius: 4px;
        border-width: 1px;
        margin-top: 10px;
        z-index: 99980;
    }

    .divfechapanel2 {
        position: fixed;
        right: 0px;
        top: 0;
        list-style: none;
        display: inline-flex;
        width: 80px;
        height: 20px;
        vertical-align: top;
        text-align: center;
        cursor: pointer;
        font-size: 12px;
        z-index: 99981;
    }

    .divfechas {
        position: fixed;
        right: 0px;
        top: 20px;
        list-style: none;
        display: inline-block;
        width: 84px;
        vertical-align: top;
        text-align: left;
        background-color: white;
        border-style: solid;
        border-radius: 4px;
        border-color: white;
        border-width: 1px;
    }


    .divfechapanel3 {
        position: fixed;
        right: 0px;
        top: 22px;
        display: inline-block;
        width: 80px;
        vertical-align: top;
        text-align: left;
    }


    #hojapedido {
        width: 99%;
        margin-left: 0.5%;
        margin-top: 18px;
        padding: 2px;

    }

    .izquierda {
        float: left;
    }

    .derecha {
        float: right;
        margin-bottom: 4px;
        margin-right: 4px;
    }

    .centro {
        float: left;
        width: 50%;
        list-style: none;
        font-size: 0.5em;
        vertical-align: middle;
    }

    .post {
        width: 98%;
        margin-left: 1%;

        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);

        margin-bottom: 30px;
        padding: 12px;
    }

    .unidadesventa {
        font-size: 10px;
    }

    .btconsola {
        width: 96%;
        height: 100%;
        list-style: none;
        display: inline-block;
        color: black;
        margin-left: 2%;
        margin-right: 2%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 10px;
        min-height: 60px;
        text-align: center;
        font-size: 20px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;
    }

    .btconsolados {
        width: 96%;
        height: 100%;
        list-style: none;
        display: inline-block;
        color: black;
        margin-left: 2%;
        margin-right: 2%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 10px;
        min-height: 60px;
        text-align: center;
        font-size: 20px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;
    }

    .btconsolaseis {
        width: 96%;
        height: 100%;
        list-style: none;
        display: inline-block;
        color: black;
        margin-left: 2%;
        margin-right: 2%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 10px;
        min-height: 60px;
        text-align: center;
        font-size: 20px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;
    }


    .ulnoves {
        width: 100%;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
        margin-top: 0px;
        background-color: #EF82A1;
    }

    .lesnoves {
        width: 14%;
        top: 2px;
        left: 2px;
        border-style: solid;
        border-radius: 24px;
        border-width: 1px;
        background-color: #FFFFFF;
    }

    .postcarta {
        width: 99%;
        margin-left: 0.5%;

    }

    .postlogin {
        width: 90%;
        margin-left: 5%;

        background: #fff;

        margin-top: 30px;

        padding: 12px;
    }

    .postpedido {
        width: 99%;
        margin-left: 0.5%;
        padding-top: 8px;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        width: 100%;
        list-style: none;
        padding: 8px;
        margin-bottom: 10px;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
    }

    .ulizquierda {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .ulcabped {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .ulderechag {
        width: 100%;
        margin-left: 20%;
        margin-top: 4px;
        vertical-align: top;
        list-style: none;
        display: inline-block;
        text-align: left;
        font-size: 8px;
    }

    .ulderechano {
        text-align: left;
        padding-left: 3px;
        margin-top: 100px;
        margin-left: 44%;
        width: 30%;
        background-color: white;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .ulderecha {
        display: none;
    }

    .marqueei {
        padding-bottom: 8px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        margin-left: 10px;
        margin-top: 10px;
    }

    .txtnomenficha {
        color: #666666;
        width: 59%;
        font-size: 1.25em;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }

    .login {
        float: right;
        text-decoration: none;
        color: white;
        font-size: 10px
    }

    .login:hover {
        text-decoration: underline;
        font-size: 10px
    }


    .btn {
        padding: 15px;
        display: inline-block;
        margin: 15px 0;
        background: #595959;
        color: #fff;
        font-size: 1em;
        border-radius: 2px;
        border: none;
    }

    .btn:hover {
        text-decoration: none;
        background: #BB1F35;
    }

    .botobusca {
        margin-right: 12px;
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 1em;
        border-radius: 2px;
        border: none;
    }

    .botobusca:hover {
        text-decoration: none;
        background: #BB1F35;
    }

    .btnwprodn {
        margin-right: 12px;
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 1em;
        border-radius: 2px;
        border: none;
    }

    .btnwprodn:hover {
        text-decoration: none;
        background: #BB1F35;
    }


    .botoenter {
        color: rgba(255, 255, 255, .7);
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        font-size: 16px;
        line-height: 16px;
    }

    .botoenter:hover {
        color: #fff;
    }

    .icomenu {
        color: #666666;
        text-align: left;
        padding-bottom: 8px;
        font-size: 2em;
        list-style: none;
        vertical-align: top;
        cursor: pointer;
        margin-left: 4px;
    }


    .txticomenu {
        text-align: left;
        display: inline-block;
        visibility: visible;
        font-size: 24px;
        padding-top: 6px;
        list-style: none;
        vertical-align: top;
        text-align: left;
        color: #666666;
        cursor: pointer;
    }



    .txticobak {
        color: #666666;
        padding-bottom: 2px;
        width: 8%;
        font-size: 12px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        text-align: right;
        padding-left: 6px;
    }

    .txticobak2 {
        color: #666666;
        padding-bottom: 2px;
        width: 15%;
        font-size: 12px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        text-align: right;
        padding-left: 6px;
    }


    .txttitulo {
        width: 100%;
        font-size: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        margin-left: 4px;
    }

    .txticobk {
        color: #666666;
        width: 8%;
        font-size: 12px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: right;
        cursor: pointer;
        left: 0px;
    }

    .txtcarta {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: right;
        font-size: 10px;
        padding-bottom: 4px;
    }

    .txtmanual {
        width: 100%;
        margin-bottom: 20px;
        list-style: none;
        display: inline-block;
        vertical-align: bottom;
        text-align: center;
        opacity: 80%;
    }

    .txtmnuclient {
        list-style: none;
        width: 20%;
        display: inline-block;
        vertical-align: top;
        text-align: right;
    }

    .linkmnucli {
        width: 100%;
        text-align: right;
        vertical-align: top;
        font-size: 10px;
    }

    .linkmnucli :hover {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }

    .txtdescartac {
        width: 14%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
    }

    .txtdescarta {
        width: 23%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        padding-left: 3px;
    }

    .txtdescarta2 {
        width: 28%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;

    }

    .txtdescartai {
        width: 12%;
        list-style: none;
        display: inline-block;
        vertical-align: bottom;
        font-size: 12px;
        text-align: right;

    }

    .txtporenc {
        width: 2%;
        list-style: none;
        font-weight: bold;
        color: blue;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
        font-weight: bolder;
    }

    .txtvegeta {
        width: 1%;
        list-style: none;
        font-weight: bold;
        color: green;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
        font-weight: bolder;
    }

    .txtaquien {
        list-style: none;
        width: 99%;
        display: inline-block;
        vertical-align: top;

    }



    .txtselycon {
        list-style: none;
        width: 50%;
        display: inline-block;
        vertical-align: top;
        padding-top: 8px;

    }

    .txtsineces {
        list-style: none;
        width: 100%;
        display: inline-block;
        vertical-align: top;
        padding: 4px;
        margin-top: 6px;
    }

    .hazclickanun {
        list-style: none;
        width: 100%;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        padding: 4px;
        margin-top: 6px;

    }

    .txtresultados {
        list-style: none;
        font-size: 9px;
        width: 100%;
        display: inline-block;
        vertical-align: bottom;
        text-align: right;
    }






    .postprods {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        background: #fff;
        border-color: grey;
        border-style: solid;
        border-width: 1px;
        text-align: center;
        border-radius: 4px 4px 4px 4px;
        margin-bottom: 6px;
        padding: 8px;
        appearance: textfield;
    }

    .postprods input[type="number"]::-webkit-outer-spin-button,
    .postprods input[type="number"]::-webkit-inner-spin-button {
        margin: 0;
        appearance: textfield;
    }

    .postprodsencargo {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        background: #fff;
        border-radius: 12px;
        margin-bottom: 6px;
        padding: 4px;
    }

    .postprodsencargo input[type="number"]::-webkit-outer-spin-button,
    .postprodsencargo input[type="number"]::-webkit-inner-spin-button {
        margin: 0;
        appearance: textfield;
    }

    .postprodsweb {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-bottom: 14px;
        padding: 14px;
    }

    .postprodsweb input[type="number"]::-webkit-outer-spin-button,
    .postprodsweb input[type="number"]::-webkit-inner-spin-button {
        margin: 0;
        appearance: textfield;
    }

    .txtprodsel {
        margin: 0px;
        padding: 0px;
        width: 49%;
        text-align: left;
        vertical-align: top;
        vertical-align: bottom;
        opacity: 80%;
        margin: 0px;
        padding: 0px;
        font-size: 12px;
    }

    .txtnumlinpeds {
        vertical-align: top;
        opacity: 80%;
        width: 20%;
        font-size: 10px;
    }

    .txtwebcodi {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .txtweb {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-top: 6px;
    }

    .txtwebp {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-top: 6px;
        background-color: #f4f4f4;
        border-radius: 4px;
        padding: 2px;
    }

    .contenedorclientes {
        list-style: none;
        padding-right: 4px;
        width: 99.0%;
        height: 400px;
        min-height: 400px;
        max-height: 400px;
        display: inline-table;
        margin-top: 10px;
        box-sizing: border-box;
    }


    .txtcatalog {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
        margin-bottom: 16px;
    }

    .contenedormenucliente {
        list-style: none;
        padding-right: 4px;
        width: 99%;
        height: 340px;
        min-height: 340px;
        max-height: 340px;
        display: inline-block;
        vertical-align: top;
        overflow: hidden;
        margin-top: 10px;
        margin-bottom: 30px;
        margin-left: 1%;
        box-sizing: border-box;
    }

    .contenedorproductos {
        list-style: none;
        padding-right: 4px;
        width: 24%;
        height: 420px;
        min-height: 420px;
        max-height: 420px;
        display: inline-table;
        margin-top: 10px;
        box-sizing: border-box;
    }

    .contenedorproductosweb {
        list-style: none;
        padding-right: 2px;
        width: 23.8%;
        height: 600px;
        min-height: 600px;
        max-height: 600px;
        display: inline-table;
        margin-top: 10px;
        box-sizing: border-box;
    }


    .txticomm {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-left: 8px;
        padding-bottom: 2px;
    }


    .contenedorproductosencargo {
        list-style: none;
        padding-right: 2px;
        width: 48%;
        height: 432px;
        min-height: 432px;
        max-height: 432px;
        display: inline-block;
        vertical-align: top;
        padding-bottom: 8px;
        margin-bottom: 24px;
        margin-right: 1%;
        box-sizing: border-box;
    }

    .postencargo {
        width: 100%;
        height: 432px;
        min-height: 432px;
        max-height: 432px;
    }

    .postweb {
        width: 100%;
        height: 326px;
        min-height: 326px;
        max-height: 326px;
    }

    .postlimarcoimgweb {
        width: 94%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        margin-left: 3%;
        max-height: 160px;
    }

    .marcoimgweb {
        width: 98%;
        margin-left: 1%;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .imgweb {
        width: 100%;
        max-height: 152px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }



    .imgwebcliente {
        width: 180px;
        max-height: 180px;
        min-width: 180px;
        max-width: 180px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .imgcliweb {
        width: 180px;
        max-height: 180px;
        min-width: 180px;
        max-width: 180px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .postmenucliente {
        width: 100%;
        list-style: none;
        display: inline-block;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-bottom: 30px;
        padding: 10px;
    }


    /* --- Post familias --- */

    .postfam {
        margin-bottom: 30px;
        padding: 30px;
        width: 70%;
        padding-top: 6px;
        padding-bottom: 8px;
        background: #fff;
        border-style: solid;
        border-width: 1px;
        border-radius: 6px 6px 6px 6px;
    }

    .postfam article .titulo {
        font-size: 28px;
        font-weight: normal;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .postfam article .titulo a {
        color: #000;
    }

    .postfam article .fecha {
        color: #747474;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .postfam article .thumb {
        margin-bottom: 20px;
    }

    .postfam article .thumb img {
        vertical-align: top;
        width: 100%;
    }

    .postfam article .extracto {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .postfam article .continuar {
        color: #BB1F35;
        font-weight: bold;
    }



    /* --- Paginacion --- */

    .paginacion {
        margin-bottom: 10px;
    }

    .paginacion ul {
        list-style: none;
        text-align: center;
    }

    .paginacion ul li {
        display: inline-block;
        margin: 0 5px;
        color: #fff;
    }

    .paginacion ul li a {
        display: block;
        padding: 10px 20px;
        background: #595959;
        color: #fff;
    }

    .paginacion ul li a:hover {
        background: #BB1F35;
        text-decoration: none;
    }

    .paginacion ul .active {
        background: #BB1F35;
        padding: 10px 20px;
    }

    .paginacion ul .disabled {
        background: #a8a8a8;
        padding: 10px 20px;
        cursor: not-allowed;
    }

    .paginacion ul .disabled:hover {
        background: #a8a8a8;
    }

    .legend {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 14px;
    }

    .legendT {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 16px;
        text-align: center;
        vertical-align: middle;
    }

    .legend2 {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 12px;
    }

    .formulario input[type="number"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 4px;
        width: 90px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #141938;
    }

    .btgrabap {
        padding: 2px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 90px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .btborrap {
        padding: 4px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 90px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .btgrabap:hover {
        background: #BB1F35;
    }

    .btborrap:hover {
        background: #BB1F35;
    }

    .btborrap {
        padding: 8px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 70px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnquita {
        padding: 6px;
        background: #595959;
        color: #fff;
        font-size: 16px;
        width: 16px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnquita:hover {
        background: #BB1F35;
    }

    #btadd {
        padding-top: 22px;
        padding-left: 1px;
        padding-bottom: 20px;
        vertical-align: bottom;
        background: #595959;
        margin-top: 22px;
        color: white;
        font-size: 16px;
        text-align: center;
        width: 28px;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    #btadd:hover {
        background: #BB1F35;
    }

    #botonnws {
        margin-left: 4px;
        background: #595959;
        vertical-align: top;
        color: #fff;
        font-size: 16px;
        width: 70px;
        border-radius: 4px;
        border: none;
        cursor: pointer;
    }

    #botonnws:hover {
        background: #BB1F35;
    }

    .botonnwp {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 180px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnwp:hover {
        background: #BB1F35;
    }


    .botonnwd {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 180px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnwd:hover {
        background: #BB1F35;
    }

    .postbuscacli {
        width: 100%;
        margin-left: 6px;
        padding: 3px;
        border-radius: 6px;
        border: solid;
        border-width: 1px;
        cursor: pointer;
        border-color: #999999;
    }


    .iddirenvid {
        width: 100%;
        margin-left: 6px;
        padding: 3px;
        display: inline-block;
        list-style: none;
    }


    .botototalista {
        padding: 5px;
        background: #7782ad;
        color: #fff;
        font-size: 12px;
        width: calc(100% - 8px);
        margin: 0 4px;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .botototalista:hover {
        background: #BB1F35;
    }

    .botoeliminar:hover {
        background: #fff;
        color: #7782ad;
    }

    .botototalista2 {
        padding: 5px;
        background: #7782ad;
        color: #fff;
        font-size: 12px;
        width: 100%;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .botototalista2:hover {
        background: #BB1F35;
    }


    /* --- Formularios --- */

    .formularioprecios {
        width: 100%;
        overflow: hidden;
    }

    .formulario {
        width: 100%;
        overflow: hidden;
    }

    .newpassword {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 4px;
        width: 60%;
        display: inline-block;
        margin-bottom: 4px;
        font-size: 12px;
        color: #141938;
    }

    #elorden {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #elorden:focus {
        border: 1px solid #595959;
        padding: 6px;
    }

    #seleccuales {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 240px;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #seleccuales:focus {
        border: 1px solid #595959;
        padding: 6px;
    }

    #frmunidadesventa {
        margin-top: 4px;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 10px;
        font-size: 12px;
        color: #141938;
    }

    #frmunidadesventa:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    .frmunidadesventa {
        margin-top: 4px;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 2px;
        font-size: 14px;
        color: #141938;
        text-align: center;
    }

    .frmunidadesventa:focus {
        border: 2px solid #595959;
    }

    #frmformatoventa {
        vertical-align: top;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 86%;
        margin-top: 6px;
        font-size: 18px;
        color: #141938;
    }

    #frmformatoventa:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    #frmimporte {
        vertical-align: top;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 40%;
        font-size: 18px;
        color: #141938;
    }

    #frmimporte {
        border: 2px solid #595959;
        padding: 10px;
        -moz-appearance: textfield;
    }

    .formpedido input[type="text"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formpedido input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .fechaservicio {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 2px;
        width: 120px;
        font-size: 14px;
        color: #141938;
    }

    .formpedido input[type="submit"]:hover {
        background: #BB1F35;
    }

    .numenfoto {
        position: absolute;
        top: 50%;
        left: 25%;
        transform: translate(-50%, -50%);
    }

    .botonOK {
        padding: 15px;
        margin-top: 60px;
        margin-right: 10%;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 80%;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonOK:hover {
        background: #BB1F35;
    }

    .formpedidonumber {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 4px;
        width: 70px;
        margin-top: 2px;
        font-size: 18px;
        color: #141938;
        text-align: center;
        margin: 0;
        appearance: textfield;
    }

    .iconminus {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-right: 2px;
        visibility: hidden;
    }

    .iconplus {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-left: 2px;
        visibility: hidden;
    }

    .formularioprecios input[type="number"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 40%;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .formularioprecios input[type="number"]::-webkit-outer-spin-button,
    .formularioprecios input[type="number"]::-webkit-inner-spin-button {
        margin: 0;
        appearance: textfield;
    }

    .formulario input[type="text"],
    .formulario input[type="number"],
    .formulario input[type="email"],
    .formulario input[type="password"],
    .formulario input[type="label"],
    .formulario select[id="pais"],
    .formulario select[id="sector"],
    .formulario select[id="actividad"],
    .formulario select[id="id_especialidad"],
    .formulario select[id="tipoprod"],
    .formulario select[id="id_unimedpeso"],
    .formulario select[id="id_fam"],
    .formulario select[id="id_subfam"],
    .formulario select[id="li"],
    .formulario textarea {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 16px;
        width: 100%;
        display: block;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .formulario input[type="date"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        width: 110px;
        font-size: 18px;
        color: #141938;
    }

    .formulario input[type="date"]:focus {
        border: 2px solid #595959;
    }

    .formulario input[type="text"],
    .formulario input[type="date"],
    .formulario input[type="time"],
    .formulario input[type="number"],
    .formulario input[type="email"],
    .formulario input[type="password"],
    .formulario input[type="label"],
    .formulario select[id="tipo"],
    .formulario select[id="fam"],
    .formulario select[id="subfam"],
    .formulario textarea {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 16px;
        width: 100%;
        display: block;
        margin-bottom: 20px;
        font-size: 1em;
        color: #141938;
    }

    .formulario input[type="text"]:focus,
    .formulario input[type="date"]:focus,
    .formulario input[type="time"]:focus,
    .formulario input[type="number"],
    .formulario input[type="email"]:focus,
    .formulario input[type="password"]:focus,
    .formulario select[id="tipo"]:focus,
    .formulario select[id="fam"]:focus,
    .formulario select[id="subfam"]:focus,
    .formulario textarea:focus {
        border: 2px solid #595959;
        padding: 15px;
    }

    .formulario input[type="email"]:focus,
    .formulario input[type="password"]:focus,
    .formulario select[id="pais"]:focus,
    .formulario select[id="sector"]:focus,
    .formulario select[id="actividad"]:focus,
    .formulario select[id="tipoprod"]:focus,
    .formulario select[id="id_unimedpeso"]:focus,
    .formulario select[id="id_fam"]:focus,
    .formulario select[id="id_subfam"]:focus,
    .formulario textarea:focus {
        border: 2px solid #595959;
        padding: 15px;
    }

    .formulario textarea {
        max-width: 100%;
        min-width: 100%;
        min-height: 100px;
    }

    .formulario input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formulario input[type="submit"]:hover {
        background: #BB1F35;
    }

    .formbusca input {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 10px;
        width: 78%;
        display: inline-block;
        margin-bottom: 8px;
        font-size: 14px;
        color: #141938;
    }

    .formbusca select {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 10px;
        width: 100%;
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        color: #141938;
    }

    .formbusca input:focus,
    .formbusca select:focus {
        border: 2px solid #595959;
        padding: 4px;
    }

    .formulario textarea {
        max-width: 100%;
        min-width: 100%;
        min-height: 100px;
    }

    .formulario input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formulario input[type="submit"]:hover {
        background: #BB1F35;
    }

    .larger {
        width: 10px;
        height: 10px;
        transform: scale(1.5);
        margin: 10px;
    }

    .pequer {
        width: 10px;
        height: 10px;
        transform: scale(1);
        margin: 2px;
    }

    .iconselecc {
        padding: 10px;
        text-align: center;
        width: 48px;
        height: 40px;
        max-height: 40px;
        font-size: 18px;
        line-height: 18px;
        background: #6495ED;
        display: inline-block;
        color: white;
        vertical-align: bottom;
        border-radius: 18px 18px 18px 18px;
    }

    .iconselecc:hover {
        cursor: pointer;
    }

    .iconsbusca {
        padding: 10px;
        text-align: center;
        width: 48px;
        max-height: 48px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 0 0 3px;
    }

    .iconslogin {
        padding: 19px;
        text-align: center;
        width: 48px;
        max-height: 48px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 0 0 3px;
    }

    .iconspwr {
        padding: 10px;
        text-align: center;
        width: 30px;
        max-height: 30px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 3px 3px 3px;
    }

    .iconsalta {
        padding: 4px;
        text-align: center;
        width: 18px;
        max-height: 24px;
        font-size: 10px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        border-radius: 3px 0 0 3px;
    }

    .iconsup {
        padding: 4px;
        text-align: center;
        width: 18px;
        max-height: 24px;
        font-size: 10px;
        line-height: 18px;
        background: white;
        display: inline-block;
        color: black;
        vertical-align: top;
        border-radius: 3px 0 0 3px;
    }

    .errores {
        text-align: center;
        color: red;
    }

    .btnofecha {
        vertical-align: top;
        width: 22px;
        height: 22px;
        background: #BB1F35;
        color: #fff;
        font-size: 1em;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .btnofecha:hover {
        background: #333333;
    }

    .gridcontenedora {
        width: 100%;
        display: list-item;
    }

    .gridvacaciones {
        vertical-align: top;
        width: 100%;
        display: inline-block;
        margin-left: 2px;
        border: 1px solid #595959;
    }

    .gridhorarios {
        vertical-align: top;
        width: 100%;
        display: inline-block;
        border: 1px solid #595959;
    }

    .griddias {
        vertical-align: top;
        width: 100%;
        display: inline-block;
    }

    .gridhoras {
        vertical-align: top;
        width: 100%;
        display: inline-block;
    }

    .lineavacas {
        display: inline-block;
        vertical-align: top;
        list-style: none;
        width: 100%;
        margin: auto;
        padding: 3px;
    }

    .ulvac1 {
        margin-left: 10px;
        margin-right: 2px;
        width: 100%;
        vertical-align: top;
        font-size: 16px;
    }

    .livac1 {
        width: 194px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        margin-left: 12px;
    }

    .livac4 {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .ulvac2 {
        width: 210px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac2 {
        width: 70px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac3 {
        width: 110px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        height: 30px;
        text-align: center;
    }

    .lblvac {
        width: 80px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .lblvac2 {
        width: 40px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .btvac {
        width: 16px;
        height: 18px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .btaddvac {
        width: 26px;
        height: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 14px;
    }

    .livacas {
        vertical-align: top;
        list-style: none;
        width: 100%;
        display: inline-table;
        visibility: visible;
        margin-right: 0px;
        font-size: 0.8em;
    }

    .lidias {
        vertical-align: top;
        list-style: none;
        width: 13%;
        display: inline-block;
    }

    .labeldias {
        vertical-align: top;
        margin-left: 2px;
        color: red;
    }

    .horas {
        visibility: collapse;
        margin-left: 4px;
        width: 58px;
    }

    .legend {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 12px;
        vertical-align: top;
        width: 90%;
        display: inline-block;
        margin-left: 10px;
    }

    .lineasdias {
        margin-bottom: 2px;
        margin-top: 4px;
        font-size: 14px;
        vertical-align: top;
        width: 90%;
        display: inline-block;
    }

    .legend2 {
        text-align: left;
        vertical-align: bottom;
        height: 18px;
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 18px;
    }

    .grupo {
        width: 100%;
        margin-left: 6px;
    }

    .divlin {
        list-style: none;
        width: 33%;
        display: inline-block;
        padding-top: 20px;
    }

    .divmnulateral {
        list-style: none;
        width: 100%;
        display: inline-block;
        padding-top: 20px;
    }

    .checks {
        margin-left: 4px;
    }

    .idcsslin {
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 6px;
        font-size: 14px;
        color: red;
    }


    .buscarprod {
        width: 60%;
        margin-left: 20%;
        margin-bottom: 10px;
        display: none;
        visibility: hidden;
    }

    #cualbusca {
        width: 90%;
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 10px;
        color: #141938;
        font-weight: bolder
    }


    #verproductos {
        width: 100%;
        list-style: none;
        display: none;
        vertical-align: top;
    }


    #myBtn {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Fixed/sticky position */
        bottom: 56px;
        /* Place the button at the bottom of the page */
        left: 30px;
        /* Place the button 30px from the right */
        z-index: 99998;
        /* Make sure it does not overlap */
        border: none;
        /* Remove borders */
        outline: none;
        /* Remove outline */
        background-color: #BB1F35;
        /* Set a background color */
        color: white;
        /* Text color */
        cursor: pointer;
        /* Add a mouse pointer on hover */
        padding-top: 10px;
        /* Some padding */
        padding-bottom: 10px;
        padding-right: 14px;
        padding-left: 14px;
        border-radius: 8px;
        /* Rounded corners */
        font-size: 18px;
        /* Increase font size */
    }

    #myBtn:hover {
        background-color: white;
        /* Add a dark-grey background on hover */
        color: #BB1F35;
        border-style: solid;
        border-width: 1px;
        border-color: #BB1F35;
    }

    #myBtndwn {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Fixed/sticky position */
        top: 80px;
        /* Place the button at the bottom of the page */
        right: 30px;
        /* Place the button 30px from the right */
        z-index: 99999;
        /* Make sure it does not overlap */
        border: none;
        /* Remove borders */
        outline: none;
        /* Remove outline */
        background-color: #BB1F35;
        /* Set a background color */
        color: white;
        /* Text color */
        cursor: pointer;
        /* Add a mouse pointer on hover */
        padding-top: 10px;
        /* Some padding */
        padding-bottom: 10px;
        padding-right: 14px;
        padding-left: 14px;
        border-radius: 8px;
        /* Rounded corners */
        font-size: 18px;
        /* Increase font size */
    }

    #myBtndwn:hover {
        background-color: white;
        /* Add a dark-grey background on hover */
        color: #BB1F35;
        border-style: solid;
        border-width: 1px;
        border-color: #BB1F35;
    }



    .botclcnum {
        height: 48px;
        cursor: pointer;
        list-style: none;
        vertical-align: top;
        display: inline-block;
        width: 30%;
        text-align: center;
        background: red;
        padding-top: 10px;
        border-color: grey;
        border-style: solid;
        border-width: 1px;
        border-radius: 6px 6px 6px 6px;
        font-weight: bolder;
    }

    footer {
        background: #BB1F35;
        color: #fff;
        width: 100%;
        height: 50px;
        vertical-align: bottom;
        font-size: 9px;
        position: fixed;
        margin-bottom: 0px;
        bottom: 0px;
        background-color: #BB1F35
    }

    footer .copyright {
        text-align: center;
        font-size: 9px;
        padding: 8px 0;
    }
}

/* ─── styles_media_movil2.css ─────────────────────────────────────────────── */
@media screen and (min-width: 481px) and (max-width: 767px) {

    /* 
  ##Device = Most of the Smartphones Mobiles (Portrait) 
  ##Screen = B/w 320px to 479px

 
@media screen and (min-width: 320px) and (max-width: 480px) {

*/
    .txtindex {
        font-size: 18px;
    }

    .imgindex {
        width: 100%;
    }

    .boxtxtdescres {
        width: 100%;
        height: 110px;
        list-style: none;
        text-align: center;
        vertical-align: top;
        display: inline-block;
        padding-top: 8px;
        padding-bottom: 4px;
        opacity: 100%;
        white-space: normal;
    }



    .divindex {
        margin-right: 1%;
        width: 48%;
        display: inline-block;
        vertical-align: top;
    }

    .divtext {
        width: 40%;
        text-align: center;
        display: inline-block;
        vertical-align: top;
    }

    .divcss {
        width: 20%;
        display: inline-block;
        vertical-align: top;
    }


    .headlogoecro {
        display: flex;
        align-items: flex-start;
    }

    .logoecro {
        color: white;
        margin-top: 0px;
        width: 40px;
        height: 38px;
        animation: rotarY 2s ease-in-out forwards;
        transform-style: preserve-3d;
    }

    .texteencarrego {
        font-size: 16px;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 1s ease-out forwards;
        animation-delay: 1s;
        text-align: left;
        vertical-align: top;
        padding-top: 0px;
    }

    .textelangline {
        width: 100px;
        margin-top: -10px;
        margin-left: 4px;
        font-size: 6px;
        font-weight: normal;
        font-style: italic;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 4s ease-out forwards;
        animation-delay: 1s;
        text-align: left;
    }

    .textecmdonline {
        width: 100px;
        margin-top: 1px;
        margin-left: 76px;
        font-size: 8px;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 2s ease-out forwards;
        animation-delay: 2s;
        text-align: left;
    }

    @keyframes rotarY {
        from {
            transform: rotateY(0deg);
        }

        to {
            transform: rotateY(360deg);
        }
    }

    @keyframes aparecerTexto {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }


    #nombreusuario {
        width: 96%;
        max-width: 280px;
    }

    #telefonopagador {
        width: 96%;
        max-width: 280px;
    }

    #correousuario {
        width: 96%;
        max-width: 280px;
    }

    .mensajereserva {
        min-width: 390px;
        max-width: 390px;
        width: 100%;
        box-sizing: border-box;

    }

    #elticket {
        margin-left: 30px;
        width: 490px;
        list-style:
            none;
        display: inline-block;
        vertical-align: top;
        padding: 4px;
        padding-top: 16px;
    }

    #seccioncookie {
        font-size: 12px;

    }

    div.centeredconsola {
        position: fixed;
        top: 10px;
        left: 10px;
        transform: translate(-50%, -50%);
    }

    div.centered {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .selectdia {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .selectdia:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    #diaservicio {
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 1.2em;
        color: #141938;
        font-weight: bolder;
    }

    * {
        margin: 0;
        padding: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    body {
        width: 100%;
        margin: 0px;

    }

    a {
        text-decoration: none;
        color: #BB1F35;
    }

    a:hover {
        text-decoration: none;
        color: #2f6d84;
    }

    .txtlincompra {
        text-align: center;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 16px;
    }


    .txticobak {
        color: #666666;
        padding-bottom: 8px;
        width: 20%;
        font-size: 14px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
    }

    .txtentrelasylas {
        color: #000000;
        padding-bottom: 2px;
        width: 100%;
        font-size: 10px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .lahoraserv {
        width: 100px;
        font-size: 1em;
        border-color: grey;
        margin-left: 8px;
        margin-right: 8px;
        margin-top: 4px;
        border-style: solid;
        border-width: 1px;
        text-align: center;
        border-radius: 4px 4px 4px 4px;
        -webkit-datetime-edit: :-webkit-datetime-edit-fields-wrapper::-webkit-datetime-edit-text::-webkit-datetime-edit-month-field::-webkit-datetime-edit-day-field::-webkit-datetime-edit-year-field::-webkit-inner-spin-button::-webkit-calendar-picker-indicator;
        padding: 6px;
        font-size: 14px;
        font-weight: bold;
        color: blue;
    }

    .txtindique {
        margin: auto;
        width: 90%;
        text-align: center;
        margin-bottom: 8px;
        font-size: 10px;
    }


    .ullinprods {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        height: 22px;
    }


    .cabetick0 {
        margin-left: 4px;
    }

    .cabetick {
        margin-left: 4px;
    }

    .cabetick10 {
        margin-left: 10px;
    }

    .linprods1 {

        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        background: red;
        padding: 4px;
        width: 80%;
        display: inline-block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 12px;

    }


    .linprods2 {
        border: 0px solid #A8A8A8;
        text-align: left;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 12px;
    }


    .linprods3 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        background: red;
        padding: 4px;
        width: 80%;
        display: inline-block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 12px;

    }


    .linprods4 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 12px;

    }


    .linprods5 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 12px;

    }

    .ullindata {
        list-style: none;
        width: 100%;
        display: inline-block;
        vertical-align: top;
    }

    .ullindatad {
        list-style: none;
        padding-left: 8px;
        width: 100%;
        display: none;
        visibility: hidden;
        vertical-align: top;
    }

    #frmcondiciones {
        list-style: none;
        width: 100%;
        vertical-align: top;
        margin: 0px;
        padding: 0px;
    }

    #libotonOK {
        margin-bottom: 60px;
        list-style: none;
        width: 100%;
        vertical-align: bottom;
    }


    .txtselec {
        color: #000000;
        margin-top: 6px;
        padding-top: 2px;
        width: 100%;
        font-size: 14px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }

    .txtgustosa {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 90%;
        margin-left: 5%;
        font-size: 12px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: justify;
    }

    .txtservdomi {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 100%;
        font-size: 9px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .txtservdomi2 {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 100%;
        font-size: 9px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .pobserv {

        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 1.2em;
        color: #141938;
        font-weight: bolder;

    }


    .txtmnuclient {
        list-style: none;
        width: 20%;
        display: inline-block;
        vertical-align: top;
        text-align: right;
    }

    .linkmnucli {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }

    .linkmnucli :hover {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }



    .linkcarta {
        width: 100%;
        text-align: center;
        padding-top: 2px;
        vertical-align: middle;
        font-size: 14px;
    }

    .linkcarta :hover {
        width: 100%;
        text-align: center;
        padding-top: 2px;
        vertical-align: middle;
        font-size: 14px;
    }


    .classli {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
    }

    .txtstrneon {
        width: 50%;
        text-align: center;
        font-size: 10px;
        text-align: center;
        padding-top: 4px;
        margin-left: 6px;
        margin-right: 6px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        color: #000000;
    }

    h1 {
        font-weight: normal;
        font-size: 22px;
        text-align: justify;
    }

    h2 {
        font-weight: normal;
        font-size: 20px;
        text-align: justify;
    }

    h3 {
        font-weight: normal;
        font-size: 16px;
        text-align: justify;
    }

    h4 {
        font-weight: normal;
        font-size: 14px;
        text-align: justify;
    }

    h5 {
        font-weight: normal;
        font-size: 12px;
        text-align: justify;
    }

    header {
        color: #fff;
        margin-top: 0px;
        margin-bottom: 10px;
        background: #BB1F35;
        font-size: 14px;
    }

    header .contenedor {
        overflow: hidden;
        margin-top: 0px;
    }

    header .logo {
        width: 130px;
        margin-left: 0px;
        margin-top: 4px;
        height: 30px;
        text-align: center;
    }

    header .logo a {
        color: #fff;
        font-size: 24px;
        line-height: 24px;
    }

    header .logo a:hover {
        text-decoration: none;
    }

    .imglogo {
        width: 70%;
        margin-left: 15%;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }


    .lilogocli {
        width: 49%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }


    .lilogoclim {
        width: 50%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .nombrepob {
        width: 100%;
        font-size: 14px;
        font-weight: bolder;

        text-align: center;
    }

    .nombre {
        width: 100%;
        font-size: 16px;
        font-weight: bolder;

        text-align: center;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }


    .logopedido {
        width: 70%;
        vertical-align: top;
    }

    .txtulindex {
        width: 96%;
        margin-left: 2%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .divcss {
        width: 94%;
        margin: auto;
    }

    .enlang {
        list-style: none;
        font-size: 0.5em;
        margin-left: 120px;
        min-width: 120px;
        vertical-align: bottom;
        line-height: 8px;
    }

    #navbar {
        position: fixed;
        top: 0px;
        width: 100%;
        display: block;
        transition: top 0.3s;
        z-index: 9991;
    }

    #navfot {
        position: fixed;
        bottom: -70px;
        width: 100%;
        display: block;
        transition: bottom 0.3s;
        z-index: 9992;
    }


    .alang {
        width: 100%;
        text-decoration: none;
        text-align: right;
        font-size: 10px;
        color: #fff;
        margin-top: 2px;
        margin-right: 4px;
    }

    .alang :hover {
        text-decoration: none;
        color: #fff;
    }


    .linktaf {
        text-decoration: none;
        color: #2f6d84;
        width: 100%;
    }

    .linktaf:hover {
        text-decoration: none;
        color: #BB1F35;
        width: 100%;
    }

    .login2 a {
        float: right;
        text-decoration: none;
        color: white;
        width: 100%;
        font-size: 10px;
    }

    .login2 a:hover {
        text-decoration: underline;
    }

    .iconstipo a {
        text-decoration: none;
        color: white;
    }

    .iconstipo a:hover {
        font-style: italic;
    }

    .primercontenedor {
        width: 99%;
        margin: 0.5%;
        margin-top: 60px;
    }

    .contenedor {
        width: 98%;
        margin-left: 1%;
        margin: 0.5%;
    }

    .contenedorbt {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .contenedormenu {
        width: 98%;
        margin-left: 1%;
    }


    .contenedormenucli {
        display: none;
        visibility: hidden;
    }




    .contenedorpeds {
        width: 90%;
        margin-left: 5%;
        padding: 4px;
    }

    .lblfechapanel {
        text-align: center;
        margin-top: 8px;
        font-size: 12px;
        vertical-align: middle;

        padding-left: 2px;
        padding-top: 2px;
        color: black;
        cursor: pointer;
    }

    .divfechapanel {
        position: fixed;
        right: 2px;
        top: 0;
        list-style: none;
        display: inline-block;
        width: 80px;
        height: 13px;
        font-size: 14px;
        vertical-align: top;
        text-align: center;
        background-color: white;
        border-style: none;
        border-radius: 4px;
        border-width: 1px;
        margin-top: 10px;
        z-index: 99980;
    }

    .divfechapanel2 {
        position: fixed;
        right: 0px;
        top: 0;
        list-style: none;
        display: inline-flex;
        width: 80px;
        height: 20px;
        vertical-align: top;
        text-align: center;
        cursor: pointer;
        font-size: 12px;
        z-index: 99981;
    }

    .divfechas {
        position: fixed;
        right: 0px;
        top: 20px;
        list-style: none;
        display: inline-block;
        width: 84px;
        vertical-align: top;
        text-align: left;
        background-color: white;
        border-style: solid;
        border-radius: 4px;
        border-color: white;
        border-width: 1px;
    }


    .divfechapanel3 {
        position: fixed;
        right: 0px;
        top: 22px;
        display: inline-block;
        width: 80px;
        vertical-align: top;
        text-align: left;
    }


    #hojapedido {
        width: 98%;
        margin-left: 1%;
        margin-top: 180px;
        padding: 6px;

    }

    .izquierda {
        float: left;
    }

    .derecha {
        float: right;
        margin-bottom: 4px;
        margin-right: 4px;
    }

    .centro {
        float: left;
        width: 10%;
        list-style: none;
        font-size: 0.5em;
        vertical-align: top;
    }

    .post {
        width: 98%;
        margin-left: 1%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-bottom: 30px;
        padding: 10px;
    }

    .unidadesventa {
        font-size: 10px;
    }

    .btconsola {
        width: 96%;
        list-style: none;
        display: inline-block;
        color: black;
        margin-left: 2%;
        margin-right: 2%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 50px;
        min-height: 60px;
        text-align: center;
        font-size: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;
        padding-top: 12px;
    }

    .btconsolados {
        width: 96%;
        list-style: none;
        display: inline-block;
        color: black;
        margin-left: 2%;
        margin-right: 2%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 10px;
        min-height: 60px;
        text-align: center;
        font-size: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;
        padding-top: 12px;
    }


    .ulnoves {
        width: 100%;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
        margin-top: 0px;
        background-color: #EF82A1;
    }

    .lesnoves {
        width: 14%;
        top: 2px;
        left: 2px;
        border-style: solid;
        border-radius: 24px;
        border-width: 1px;
        background-color: #FFFFFF;
    }

    .postcarta {
        width: 99%;
        margin-left: 0.5%;
    }

    .postlogin {
        width: 100%;
        background: #fff;
        margin-top: 30px;
        padding: 30px;
    }


    .ulizquierda {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .ulcabped {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .ulderechag {
        width: 100%;
        margin-left: 20%;
        margin-top: 4px;
        vertical-align: top;
        list-style: none;
        display: inline-block;
        text-align: left;
        font-size: 8px;
    }


    .ulderechano {
        text-align: left;
        padding-left: 3px;
        margin-top: 120px;
        margin-left: 40%;
        width: 30%;
        background-color: white;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
    }

    .ulderecha {
        display: none;
    }

    .marqueei {
        padding-bottom: 8px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        margin-left: 10px;
        margin-top: 10px;
    }

    .postpedido {
        width: 99%;
        margin-left: 0.5%;
        padding-top: 8px;
        width: 100%;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
    }

    .login {
        float: right;
        text-decoration: none;
        color: white;
        font-size: 10px
    }

    .login:hover {
        text-decoration: underline;
        font-size: 10px
    }

    .botoenter {
        color: rgba(255, 255, 255, .7);
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        font-size: 16px;
        line-height: 16px;
    }

    .botoenter:hover {
        color: #fff;
    }


    .icomenu {
        color: #666666;
        text-align: left;
        padding-bottom: 8px;
        font-size: 2em;
        list-style: none;
        vertical-align: top;
        cursor: pointer;
        margin-left: 4px;
    }


    .txticomenu {
        text-align: left;
        display: inline-block;
        visibility: visible;
        font-size: 24px;
        padding-top: 6px;
        list-style: none;
        vertical-align: top;
        text-align: left;
        color: #666666;
        cursor: pointer;
    }

    .txticobak {
        color: #666666;
        padding-bottom: 8px;
        width: 8%;
        font-size: 16px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        text-align: right;
    }

    .txticobak2 {
        color: #666666;
        padding-bottom: 8px;
        width: 15%;
        font-size: 16px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        text-align: right;
    }

    .txtmnuclient {
        list-style: none;
        width: 14%;
        display: inline-block;
        vertical-align: top;
        text-align: right;
    }

    .linkmnucli {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
        font-size: 12px;
    }

    .linkmnucli :hover {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }


    .linkcarta {
        width: 100%;
        text-align: center;
        padding-top: 2px;
        vertical-align: middle;
        font-size: 14px;
    }

    .linkcarta :hover {
        width: 100%;
        text-align: center;
        padding-top: 2px;
        vertical-align: middle;
        font-size: 14px;
    }


    .classli {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
    }


    .txtdescartac {
        width: 10%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
    }

    .txtdescarta {
        width: 23%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        padding-left: 3px;
    }

    .txtdescarta2 {
        width: 28%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;

    }

    .txtdescartai {
        width: 12%;
        list-style: none;
        display: inline-block;
        vertical-align: bottom;
        font-size: 12px;
        text-align: right;

    }

    .txtporenc {
        width: 2%;
        list-style: none;
        font-weight: bold;
        color: blue;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
        font-weight: bolder;
    }

    .txtvegeta {
        width: 1%;
        list-style: none;
        font-weight: bold;
        color: green;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
        font-weight: bolder;
    }

    .txtaquien {
        list-style: none;
        width: 100%;
        display: inline-block;
        vertical-align: top;
    }

    .txtselycon {
        list-style: none;
        width: 100%;
        display: inline-block;
        vertical-align: top;
        padding-top: 8px;
    }


    .txtsineces {
        list-style: none;
        width: 100%;
        display: inline-block;
        vertical-align: top;
        margin-top: 6px;
    }

    .hazclickanun {
        list-style: none;
        width: 56%;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        margin-top: 6px;
    }

    .txtresultados {
        list-style: none;
        width: 43%;
        display: inline-block;
        vertical-align: bottom;
        text-align: right;
    }

    .postprods {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        background: #fff;
        border-color: grey;
        border-style: solid;
        border-width: 1px;
        text-align: center;
        border-radius: 4px 4px 4px 4px;
        margin-bottom: 6px;
        padding: 8px;
        appearance: textfield;
    }

    .postprods input[type="number"]::-webkit-outer-spin-button,
    .postprods input[type="number"]::-webkit-inner-spin-button {
        margin: 0;
        appearance: textfield;
    }

    .postprodsencargo {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        background: #fff;
        border-radius: 12px;
        margin-bottom: 6px;
        padding: 4px;
    }

    .postprodsencargo input[type="number"]::-webkit-outer-spin-button,
    .postprodsencargo input[type="number"]::-webkit-inner-spin-button {
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .postprodsweb {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-bottom: 14px;
        padding: 14px;
    }

    .postprodsweb input[type="number"]::-webkit-outer-spin-button,
    .postprodsweb input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .txtprodsel {
        margin: 0px;
        padding: 0px;
        width: 49%;
        text-align: left;
        vertical-align: top;
        vertical-align: bottom;
        opacity: 80%;
        margin: 0px;
        padding: 0px;
        font-size: 12px;
    }

    .txtnumlinpeds {
        vertical-align: top;
        opacity: 80%;
        width: 20%;
        font-size: 10px;
    }

    .txtwebcodi {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .txtweb {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-top: 6px;
    }

    .txtwebp {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-top: 6px;
        background-color: #f4f4f4;
        border-radius: 4px;
        padding: 2px;
    }

    .contenedorproductos {
        list-style: none;
        padding-right: 4px;
        width: 24%;
        height: 420px;
        min-height: 420px;
        max-height: 420px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    .contenedorclientes {
        list-style: none;
        padding-right: 4px;
        width: 99%;
        height: 400px;
        min-height: 400px;
        max-height: 400px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    .txtcatalog {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
        margin-bottom: 16px;
    }

    .contenedormenucliente {
        list-style: none;
        padding-right: 4px;
        width: 48%;
        height: 340px;
        min-height: 340px;
        max-height: 340px;
        display: inline-block;
        vertical-align: top;
        overflow: hidden;
        margin-top: 10px;
        margin-bottom: 30px;
        margin-left: 1%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }




    .contenedorproductosweb {
        list-style: none;
        padding-right: 2px;
        width: 49.8%;
        height: 600px;
        min-height: 600px;
        max-height: 600px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    .txticomm {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-left: 8px;
        padding-bottom: 2px;
    }


    .contenedorproductosencargo {
        list-style: none;
        padding-right: 2px;
        width: 48%;
        height: 442px;
        min-height: 442px;
        max-height: 442px;
        display: inline-block;
        vertical-align: top;
        padding-bottom: 8px;
        margin-bottom: 24px;
        margin-right: 1%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .postencargo {
        width: 100%;
        height: 442px;
        min-height: 442px;
        max-height: 442px;
    }

    .postweb {
        width: 100%;
        height: 326px;
        min-height: 326px;
        max-height: 326px;
    }

    .postlimarcoimgweb {
        width: 94%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        margin-left: 3%;
        max-height: 200px;
    }

    .marcoimgweb {
        width: 98%;
        margin-left: 1%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .imgweb {
        width: 100%;
        max-height: 192px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }


    .imgwebcliente {
        width: 200px;
        max-height: 200px;
        min-width: 200px;
        max-width: 200px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .imgcliweb {
        width: 170px;
        max-height: 200px;
        min-width: 170px;
        max-width: 170px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .postmenucliente {
        width: 100%;
        list-style: none;
        display: inline-block;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-bottom: 30px;
        padding: 10px;
    }


    /* --- Paginacion --- */

    .paginacion {
        margin-bottom: 10px;
    }

    .paginacion ul {
        list-style: none;
        text-align: center;
    }

    .paginacion ul li {
        display: inline-block;
        margin: 0 5px;
        color: #fff;
    }

    .paginacion ul li a {
        display: block;
        padding: 10px 20px;
        background: #595959;
        color: #fff;
    }

    .paginacion ul li a:hover {
        background: #BB1F35;
        text-decoration: none;
    }

    .paginacion ul .active {
        background: #BB1F35;
        padding: 10px 20px;
    }

    .paginacion ul .disabled {
        background: #a8a8a8;
        padding: 10px 20px;
        cursor: not-allowed;
    }

    .paginacion ul .disabled:hover {
        background: #a8a8a8;
    }

    .legend {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 14px;
    }

    .legendT {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 16px;
        text-align: center;
        vertical-align: middle;
    }

    .legend2 {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 12px;
    }

    .formulario input[type="number"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 4px;
        width: 90px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #141938;
    }

    .btgrabap {
        padding: 2px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 90px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .btborrap {
        padding: 4px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 90px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .btgrabap:hover {
        background: #BB1F35;
    }

    .btborrap:hover {
        background: #BB1F35;
    }

    .btborrap {
        padding: 8px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 70px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnquita {
        padding: 6px;
        background: #595959;
        color: #fff;
        font-size: 16px;
        width: 16px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnquita:hover {
        background: #BB1F35;
    }

    #btadd {
        padding-top: 22px;
        padding-left: 1px;
        padding-bottom: 20px;
        vertical-align: bottom;
        background: #595959;
        margin-top: 22px;
        color: white;
        font-size: 16px;
        text-align: center;
        width: 28px;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    #btadd:hover {
        background: #BB1F35;
    }

    #botonnws {
        margin-left: 4px;
        background: #595959;
        vertical-align: top;
        color: #fff;
        font-size: 16px;
        width: 70px;
        border-radius: 4px;
        border: none;
        cursor: pointer;
    }

    #botonnws:hover {
        background: #BB1F35;
    }

    .botonnwp {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 180px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnwp:hover {
        background: #BB1F35;
    }


    .botonnwd {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 180px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnwd:hover {
        background: #BB1F35;
    }

    .postbuscacli {
        width: 28%;
        margin-left: 6px;
        padding: 3px;
        border-radius: 6px;
        border: solid;
        border-width: 1px;
        cursor: pointer;
        border-color: #999999;
    }

    .iddirenvid {
        width: 48%;
        margin-left: 6px;
        padding: 3px;
        display: inline-block;
        list-style: none;
    }


    .botototalista {
        padding: 5px;
        background: #7782ad;
        color: #fff;
        font-size: 12px;
        width: calc(100% - 8px);
        margin: 0 4px;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .botototalista:hover {
        background: #BB1F35;
    }

    .botoeliminar:hover {
        background: #fff;
        color: #7782ad;
    }

    .botototalista2 {
        padding: 5px;
        background: #7782ad;
        color: #fff;
        font-size: 12px;
        width: 100%;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .botototalista2:hover {
        background: #BB1F35;
    }


    /* --- Formularios --- */


    .iconminus {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-right: 8px;
        padding-bottom: 2px;
        visibility: hidden;
    }

    .iconplus {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-left: 6px;
        padding-bottom: 2px;
        visibility: hidden;
    }


    .formularioprecios {
        width: 100%;
        overflow: hidden;
    }

    .formulario {
        width: 100%;
        overflow: hidden;
    }

    .newpassword {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 4px;
        width: 60%;
        display: inline-block;
        margin-bottom: 4px;
        font-size: 12px;
        color: #141938;
    }

    #elorden {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 50%;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #elorden:focus {
        border: 1px solid #595959;
        padding: 6px;
    }

    #seleccuales {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 240px;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #seleccuales:focus {
        border: 1px solid #595959;
        padding: 6px;
    }

    #frmunidadesventa {
        margin-top: 4px;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #frmunidadesventa:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    .frmunidadesventa {
        margin-top: 4px;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 2px;
        font-size: 18px;
        color: #141938;
        text-align: center;
    }

    .frmunidadesventa:focus {
        border: 2px solid #595959;
    }

    #frmformatoventa {
        vertical-align: top;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 86%;
        margin-top: 6px;
        font-size: 18px;
        color: #141938;
    }

    #frmformatoventa:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    #frmimporte {
        vertical-align: top;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 40%;
        font-size: 18px;
        color: #141938;
    }

    #frmimporte {
        border: 2px solid #595959;
        padding: 10px;
        -moz-appearance: textfield;
    }

    .formpedido input[type="text"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formpedido input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .fechaservicio {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 2px;
        width: 120px;
        font-size: 14px;
        color: #141938;
    }

    .formpedido input[type="submit"]:hover {
        background: #BB1F35;
    }

    .numenfoto {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .botonOK {
        padding: 15px;
        margin-top: 60px;
        margin-right: 10%;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 80%;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonOK:hover {
        background: #BB1F35;
    }

    .formpedidonumber {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 90px;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
        text-align: center;
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .formularioprecios input[type="number"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 40%;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .formularioprecios input[type="number"]::-webkit-outer-spin-button,
    .formularioprecios input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .formulario input[type="text"],
    .formulario input[type="number"],
    .formulario input[type="email"],
    .formulario input[type="password"],
    .formulario input[type="label"],
    .formulario select[id="pais"],
    .formulario select[id="sector"],
    .formulario select[id="actividad"],
    .formulario select[id="id_especialidad"],
    .formulario select[id="tipoprod"],
    .formulario select[id="id_unimedpeso"],
    .formulario select[id="id_fam"],
    .formulario select[id="id_subfam"],
    .formulario select[id="li"],
    .formulario textarea {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 16px;
        width: 100%;
        display: block;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .formulario input[type="date"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        width: 110px;
        font-size: 18px;
        color: #141938;
    }

    .formulario input[type="date"]:focus {
        border: 2px solid #595959;
    }

    .formulario input[type="text"],
    .formulario input[type="date"],
    .formulario input[type="time"],
    .formulario input[type="number"],
    .formulario input[type="email"],
    .formulario input[type="password"],
    .formulario input[type="label"],
    .formulario select[id="tipo"],
    .formulario select[id="fam"],
    .formulario select[id="subfam"],
    .formulario textarea {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 16px;
        width: 100%;
        display: block;
        margin-bottom: 20px;
        font-size: 1em;
        color: #141938;
    }

    .formulario input[type="text"]:focus,
    .formulario input[type="date"]:focus,
    .formulario input[type="time"]:focus,
    .formulario input[type="number"],
    .formulario input[type="email"]:focus,
    .formulario input[type="password"]:focus,
    .formulario select[id="tipo"]:focus,
    .formulario select[id="fam"]:focus,
    .formulario select[id="subfam"]:focus,
    .formulario textarea:focus {
        border: 2px solid #595959;
        padding: 15px;
    }

    .formulario input[type="email"]:focus,
    .formulario input[type="password"]:focus,
    .formulario select[id="pais"]:focus,
    .formulario select[id="sector"]:focus,
    .formulario select[id="actividad"]:focus,
    .formulario select[id="tipoprod"]:focus,
    .formulario select[id="id_unimedpeso"]:focus,
    .formulario select[id="id_fam"]:focus,
    .formulario select[id="id_subfam"]:focus,
    .formulario textarea:focus {
        border: 2px solid #595959;
        padding: 15px;
    }

    .formulario textarea {
        max-width: 100%;
        min-width: 100%;
        min-height: 100px;
    }

    .formulario input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formulario input[type="submit"]:hover {
        background: #BB1F35;
    }

    .formbusca input {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 10px;
        width: 78%;
        display: inline-block;
        margin-bottom: 8px;
        font-size: 14px;
        color: #141938;
    }

    .formbusca select {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 10px;
        width: 100%;
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        color: #141938;
    }

    .formbusca input:focus,
    .formbusca select:focus {
        border: 2px solid #595959;
        padding: 4px;
    }

    .formulario textarea {
        max-width: 100%;
        min-width: 100%;
        min-height: 100px;
    }

    .formulario input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formulario input[type="submit"]:hover {
        background: #BB1F35;
    }

    .larger {
        width: 10px;
        height: 10px;
        transform: scale(1.5);
        margin: 10px;
    }

    .pequer {
        width: 10px;
        height: 10px;
        transform: scale(1);
        margin: 2px;
    }

    .iconselecc {
        padding: 10px;
        text-align: center;
        width: 48px;
        height: 40px;
        max-height: 40px;
        font-size: 18px;
        line-height: 18px;
        background: #6495ED;
        display: inline-block;
        color: white;
        vertical-align: bottom;
        border-radius: 18px 18px 18px 18px;
    }

    .iconselecc:hover {
        cursor: pointer;
    }

    .iconsbusca {
        padding: 10px;
        text-align: center;
        width: 48px;
        max-height: 48px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 0 0 3px;
    }

    .iconslogin {
        padding: 19px;
        text-align: center;
        width: 48px;
        max-height: 48px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 0 0 3px;
    }

    .iconspwr {
        padding: 10px;
        text-align: center;
        width: 30px;
        max-height: 30px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 3px 3px 3px;
    }

    .iconsalta {
        padding: 4px;
        text-align: center;
        width: 18px;
        max-height: 24px;
        font-size: 10px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        border-radius: 3px 0 0 3px;
    }

    .iconsup {
        padding: 4px;
        text-align: center;
        width: 18px;
        max-height: 24px;
        font-size: 10px;
        line-height: 18px;
        background: white;
        display: inline-block;
        color: black;
        vertical-align: top;
        border-radius: 3px 0 0 3px;
    }

    .errores {
        text-align: center;
        color: red;
    }

    .btnofecha {
        vertical-align: top;
        width: 22px;
        height: 22px;
        background: #BB1F35;
        color: #fff;
        font-size: 1em;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .btnofecha:hover {
        background: #333333;
    }

    .gridcontenedora {
        width: 100%;
        display: list-item;
    }

    .gridvacaciones {
        vertical-align: top;
        width: 100%;
        display: inline-block;
        margin-left: 2px;
        border: 1px solid #595959;
    }

    .gridhorarios {
        vertical-align: top;
        width: 100%;
        display: inline-block;
        border: 1px solid #595959;
    }

    .griddias {
        vertical-align: top;
        width: 100%;
        display: inline-block;
    }

    .gridhoras {
        vertical-align: top;
        width: 100%;
        display: inline-block;
    }

    .lineavacas {
        display: inline-block;
        vertical-align: top;
        list-style: none;
        width: 100%;
        margin: auto;
        padding: 3px;
    }

    .ulvac1 {
        margin-left: 10px;
        margin-right: 2px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac1 {
        width: 194px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        margin-left: 12px;
    }

    .livac4 {
        width: 200px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .ulvac2 {
        width: 210px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac2 {
        width: 70px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac3 {
        width: 110px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        height: 30px;
        text-align: center;
    }

    .lblvac {
        width: 80px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .lblvac2 {
        width: 40px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .btvac {
        width: 16px;
        height: 18px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .btaddvac {
        width: 26px;
        height: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 14px;
    }

    .livacas {
        vertical-align: top;
        list-style: none;
        width: 100%;
        display: inline-table;
        visibility: visible;
        margin-right: 0px;
        font-size: 0.8em;
    }

    .lidias {
        vertical-align: top;
        list-style: none;
        width: 13%;
        display: inline-block;
    }

    .labeldias {
        vertical-align: top;
        margin-left: 2px;
        color: red;
    }

    .horas {
        visibility: collapse;
        margin-left: 4px;
        width: 58px;
    }

    .legend {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 12px;
        vertical-align: top;
        width: 90%;
        display: inline-block;
        margin-left: 10px;
    }

    .lineasdias {
        margin-bottom: 2px;
        margin-top: 4px;
        font-size: 14px;
        vertical-align: top;
        width: 90%;
        display: inline-block;
    }

    .legend2 {
        text-align: left;
        vertical-align: bottom;
        height: 18px;
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 18px;
    }

    .grupo {
        width: 100%;
        margin-left: 6px;
    }

    .divlin {
        list-style: none;
        width: 33%;
        display: inline-block;
        padding-top: 20px;
    }

    .divmnulateral {
        list-style: none;
        width: 100%;
        display: inline-block;
        padding-top: 20px;
    }

    .checks {
        margin-left: 4px;
    }

    .idcsslin {
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 6px;
        font-size: 14px;
        color: red;
    }


    .buscarprod {
        width: 60%;
        margin-left: 20%;
        margin-bottom: 10px;
        color: red;
        display: none;
        visibility: hidden;
    }

    #cualbusca {
        width: 100%;
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 10px;
        color: #141938;
        font-weight: bolder
    }

    #verproductos {
        width: 90%;
        margin-left: 5%;
        list-style: none;
        display: none;
        vertical-align: top;
    }



    #myBtn {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Fixed/sticky position */
        bottom: 56px;
        /* Place the button at the bottom of the page */
        left: 30px;
        /* Place the button 30px from the right */
        z-index: 99998;
        /* Make sure it does not overlap */
        border: none;
        /* Remove borders */
        outline: none;
        /* Remove outline */
        background-color: #BB1F35;
        /* Set a background color */
        color: white;
        /* Text color */
        cursor: pointer;
        /* Add a mouse pointer on hover */
        padding-top: 10px;
        /* Some padding */
        padding-bottom: 10px;
        padding-right: 14px;
        padding-left: 14px;
        border-radius: 8px;
        /* Rounded corners */
        font-size: 18px;
        /* Increase font size */
    }

    #myBtn:hover {
        background-color: white;
        /* Add a dark-grey background on hover */
        color: #BB1F35;
        border-style: solid;
        border-width: 1px;
        border-color: #BB1F35;
    }

    #myBtndwn {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Fixed/sticky position */
        top: 80px;
        /* Place the button at the bottom of the page */
        right: 30px;
        /* Place the button 30px from the right */
        z-index: 99999;
        /* Make sure it does not overlap */
        border: none;
        /* Remove borders */
        outline: none;
        /* Remove outline */
        background-color: #BB1F35;
        /* Set a background color */
        color: white;
        /* Text color */
        cursor: pointer;
        /* Add a mouse pointer on hover */
        padding-top: 10px;
        /* Some padding */
        padding-bottom: 10px;
        padding-right: 14px;
        padding-left: 14px;
        border-radius: 8px;
        /* Rounded corners */
        font-size: 18px;
        /* Increase font size */
    }

    #myBtndwn:hover {
        background-color: white;
        /* Add a dark-grey background on hover */
        color: #BB1F35;
        border-style: solid;
        border-width: 1px;
        border-color: #BB1F35;
    }


    .botclcnum {
        height: 48px;
        cursor: pointer;
        list-style: none;
        vertical-align: top;
        display: inline-block;
        width: 30%;
        text-align: center;
        background: red;
        padding-top: 10px;
        border-color: grey;
        border-style: solid;
        border-width: 1px;
        border-radius: 6px 6px 6px 6px;
        font-weight: bolder;
    }

    footer {
        background: #BB1F35;
        color: #fff;
        width: 100%;
        height: 50px;
        vertical-align: bottom;
        font-size: 9px;
        position: fixed;
        margin-bottom: 0px;
        bottom: 0px;
        background-color: #BB1F35
    }

    footer .copyright {
        text-align: center;
        font-size: 9px;
        padding: 8px 0;
    }
}

/* ─── styles_media_tablet.css ─────────────────────────────────────────────── */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

    /* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px


screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape)

*/
    .txtindex {
        font-size: 18px;
    }

    .imgindex {
        width: 100%;

    }

    .boxtxtdescres {
        width: 100%;
        height: 110px;
        list-style: none;
        text-align: center;
        vertical-align: top;
        display: inline-block;
        padding-top: 8px;
        padding-bottom: 4px;
        opacity: 100%;
        white-space: normal;
    }


    .divindex {
        margin-right: 1%;
        width: 40%;
        display: inline-block;
        vertical-align: top;
    }

    .divtext {
        width: 40%;
        text-align: center;
        display: inline-block;
        vertical-align: top;
    }

    .divcss {
        width: 20%;
        display: inline-block;
        vertical-align: top;
    }

    .headlogoecro {
        display: flex;
        align-items: flex-start;

    }

    .logoecro {
        color: white;
        margin-top: 0px;
        width: 40px;
        height: 38px;
        animation: rotarY 2s ease-in-out forwards;
        transform-style: preserve-3d;
    }

    .texteencarrego {
        margin-left: 6px;
        margin-top: 2px;
        font-size: 16px;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 1s ease-out forwards;
        animation-delay: 1s;
        text-align: left;
        vertical-align: top;
        padding-top: 0px;
    }

    .textelangline {
        width: 100px;
        margin-top: -10px;
        margin-left: 4px;
        font-size: 6px;
        font-weight: normal;
        font-style: italic;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 4s ease-out forwards;
        animation-delay: 1s;
        text-align: left;
    }

    .textecmdonline {
        width: 100px;
        margin-top: 1px;
        margin-left: 76px;
        font-size: 8px;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 2s ease-out forwards;
        animation-delay: 2s;
        text-align: left;
    }

    @keyframes rotarY {
        from {
            transform: rotateY(0deg);
        }

        to {
            transform: rotateY(360deg);
        }
    }

    @keyframes aparecerTexto {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    #nombreusuario {
        width: 96%;
        max-width: 360px;
    }

    #telefonopagador {
        width: 96%;
        max-width: 360px;
    }

    #correousuario {
        width: 96%;
        max-width: 360px;
    }

    .mensajereserva {
        min-width: 390px;
        max-width: 390px;
        width: 100%;
        box-sizing: border-box;

    }

    #elticket {
        margin-left: 30px;
        width: 490px;
        list-style:
            none;
        display: inline-block;
        vertical-align: top;
        padding: 4px;
        padding-top: 16px;
    }

    #seccioncookie {
        font-size: 12px;

    }

    div.centeredconsola {
        position: fixed;
        top: 10px;
        left: 10px;
        transform: translate(-50%, -50%);
    }

    div.centered {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .selectdia {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 40%;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .selectdia:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    #diaservicio {
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 1.2em;
        color: #141938;
        font-weight: bolder;
    }

    * {
        margin: 0;
        padding: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    body {
        width: 100%;
        margin: 0px;

    }

    a {
        text-decoration: none;
        color: #BB1F35;
    }

    a:hover {
        text-decoration: none;
        color: #2f6d84;
    }

    .txtlincompra {
        text-align: center;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 16px;
    }

    .icomenu {
        color: #666666;
        text-align: left;
        padding-bottom: 8px;
        list-style: none;
        vertical-align: top;
        cursor: pointer;
        margin-left: 14px;
    }

    .txticomenu {
        text-align: left;
        display: inline-block;
        visibility: visible;
        font-size: 24px;
        padding-top: 6px;
        list-style: none;
        vertical-align: top;
        text-align: left;
        color: #666666;
        cursor: pointer;
    }


    .txticomenu {
        color: #666666;
        padding-bottom: 8px;
        width: 20%;
        font-size: 2em;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
    }


    .txticobak {
        color: #666666;
        padding-bottom: 8px;
        width: 14%;
        font-size: 16px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
    }

    .txtentrelasylas {
        color: #000000;
        padding-bottom: 2px;
        width: 100%;
        font-size: 10px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .lahoraserv {
        width: 100px;
        font-size: 1em;
        border-color: grey;
        margin-left: 8px;
        margin-right: 8px;
        margin-top: 8px;
        border-style: solid;
        border-width: 1px;
        text-align: center;
        border-radius: 4px 4px 4px 4px;
        -webkit-datetime-edit: :-webkit-datetime-edit-fields-wrapper::-webkit-datetime-edit-text::-webkit-datetime-edit-month-field::-webkit-datetime-edit-day-field::-webkit-datetime-edit-year-field::-webkit-inner-spin-button::-webkit-calendar-picker-indicator;
        padding: 6px;
        font-size: 18px;
        font-weight: bold;
        color: blue;
    }

    .txtindique {
        margin: auto;
        width: 90%;
        text-align: center;
        margin-bottom: 8px;
        font-size: 10px;
    }


    .ullinprods {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        height: 22px;
    }


    .cabetick0 {
        margin-left: 4px;
    }

    .cabetick {
        margin-left: 4px;
    }

    .cabetick10 {
        margin-left: 10px;
    }

    .txtlinprods {
        font-size: 12px;
    }

    .linprods1 {

        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        background: red;
        padding: 4px;
        width: 80%;
        display: inline-block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 12px;

    }


    .linprods2 {
        border: 0px solid #A8A8A8;
        text-align: left;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 12px;
    }


    .linprods3 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        background: red;
        padding: 4px;
        width: 80%;
        display: inline-block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 12px;

    }


    .linprods4 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 12px;

    }


    .linprods5 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 12px;

    }

    .ullindata {
        list-style: none;
        width: 100%;
        display: inline-block;
        vertical-align: top;
    }

    .ullindatad {
        list-style: none;
        padding-left: 8px;
        width: 100%;
        display: none;
        visibility: hidden;
        vertical-align: top;
    }

    #frmcondiciones {
        list-style: none;
        width: 55%;
        vertical-align: top;
        margin: 0px;
        padding: 0px;
    }

    #libotonOK {
        margin-bottom: 60px;
        list-style: none;
        width: 34%;
        vertical-align: bottom;
    }


    .txtselec {
        color: #000000;
        margin-top: 6px;
        padding-top: 2px;
        width: 100%;
        font-size: 14px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }

    .txtgustosa {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 90%;
        margin-left: 5%;
        font-size: 12px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: justify;
    }

    .txtservdomi {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 50%;
        font-size: 9px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .txtservdomi2 {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 50%;
        font-size: 9px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .pobserv {

        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 1.2em;
        color: #141938;
        font-weight: bolder;

    }


    .txtmnuclient {
        list-style: none;
        width: 20%;
        display: inline-block;
        vertical-align: top;
        text-align: right;
    }

    .linkmnucli {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }

    .linkmnucli :hover {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }

    .txtstrneon {
        width: 65%;
        text-align: center;
        font-size: 10px;
        text-align: center;
        padding-top: 4px;
        margin-left: 6px;
        margin-right: 6px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        color: #000000;
    }


    h1 {
        font-weight: normal;
        font-size: 22px;
        text-align: justify;
    }

    h2 {
        font-weight: normal;
        font-size: 20px;
        text-align: justify;
    }

    h3 {
        font-weight: normal;
        font-size: 18px;
        text-align: justify;
    }

    h4 {
        font-weight: normal;
        font-size: 16px;
        text-align: justify;
    }

    h5 {
        font-weight: normal;
        font-size: 14px;
        text-align: justify;
    }

    header {
        color: #fff;
        margin-top: 0px;
        margin-bottom: 10px;
        background: #BB1F35;
        font-size: 14px;
    }

    header .contenedor {
        overflow: hidden;
        margin-top: 0px;
    }

    header .logo {
        max-width: 300px;
        margin-left: 0px;
        margin-top: 4px;
        height: 28px;
    }

    header .logo a {
        color: #fff;
        font-size: 28px;
        line-height: 28px;
    }

    header .logo a:hover {
        text-decoration: none;
    }

    .imglogo {
        width: 70%;
        margin-left: 15%;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }


    .lilogocli {
        width: 49%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }


    .lilogoclim {
        width: 50%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .nombrepob {
        width: 100%;
        font-size: 14px;
        font-weight: bolder;

        text-align: center;
    }

    .nombre {
        width: 100%;
        font-size: 16px;
        font-weight: bolder;

        text-align: center;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }


    .logopedido {
        width: 100%;
        vertical-align: top;
    }

    .txtulindex {
        width: 96%;
        margin-left: 2%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .divcss {
        width: 94%;
        margin: auto;
    }

    .enlang {
        list-style: none;
        font-size: 0.6em;
        margin-left: 140px;
        min-width: 100px;
        vertical-align: bottom;
        line-height: 8px;
    }

    #navbar {
        position: fixed;
        top: 0px;
        width: 100%;
        display: block;
        transition: top 0.3s;
        z-index: 9991;
    }

    #navfot {
        position: fixed;
        bottom: -70px;
        width: 100%;
        display: block;
        transition: bottom 0.3s;
        z-index: 9992;
    }


    .alang {
        width: 100%;
        text-decoration: none;
        text-align: right;
        font-size: 10px;
        color: #fff;
        margin-top: 2px;
        margin-right: 4px;
    }

    .alang :hover {
        text-decoration: none;
        color: #fff;
    }


    .linktaf {
        text-decoration: none;
        color: #2f6d84;
        width: 100%;
    }

    .linktaf:hover {
        text-decoration: none;
        color: #BB1F35;
        width: 100%;
    }

    .login2 a {
        float: right;
        text-decoration: none;
        color: white;
        width: 100%;
        font-size: 10px;
    }

    .login2 a:hover {
        text-decoration: underline;
    }

    .iconstipo a {
        text-decoration: none;
        color: white;
    }

    .iconstipo a:hover {
        font-style: italic;
    }

    .primercontenedor {
        width: 99%;
        margin: 2px;
        margin-top: 60px;
    }

    .contenedormenu {
        width: 90%;
        margin-left: 5%;
    }


    .contenedormenucli {
        display: none;
        visibility: hidden;
    }

    .contenedor {
        width: 90%;
        margin-left: 5%;
        margin: 0;
        padding: 0;
    }

    .contenedorbt {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .contenedorpeds {
        width: 90%;
        margin-left: 5%;
        padding: 4px;
    }

    .lblfechapanel {
        text-align: center;
        margin-top: 8px;
        font-size: 12px;
        vertical-align: middle;

        padding-left: 2px;
        padding-top: 2px;
        color: black;
        cursor: pointer;
    }

    .divfechapanel {
        position: fixed;
        right: 2px;
        top: 0;
        list-style: none;
        display: inline-block;
        width: 80px;
        height: 13px;
        font-size: 14px;
        vertical-align: top;
        text-align: center;
        background-color: white;
        border-style: none;
        border-radius: 4px;
        border-width: 1px;
        margin-top: 10px;
        z-index: 99980;
    }

    .divfechapanel2 {
        position: fixed;
        right: 0px;
        top: 0;
        list-style: none;
        display: inline-flex;
        width: 80px;
        height: 20px;
        vertical-align: top;
        text-align: center;
        cursor: pointer;
        font-size: 12px;
        z-index: 99981;
    }

    .divfechas {
        position: fixed;
        right: 0px;
        top: 20px;
        list-style: none;
        display: inline-block;
        width: 84px;
        vertical-align: top;
        text-align: left;
        background-color: white;
        border-style: solid;
        border-radius: 4px;
        border-color: white;
        border-width: 1px;
    }


    .divfechapanel3 {
        position: fixed;
        right: 0px;
        top: 22px;
        display: inline-block;
        width: 80px;
        vertical-align: top;
        text-align: left;
    }


    #hojapedido {
        width: 98%;
        margin-left: 1%;
        margin-top: 180px;
        padding: 6px;

    }

    .izquierda {
        float: left;
    }

    .derecha {
        float: right;
        margin-bottom: 4px;
        margin-right: 4px;
    }

    .centro {
        float: left;
        width: 10%;
        list-style: none;
        font-size: 0.5em;
        vertical-align: top;
    }



    .post {
        width: 97%;
        margin-left: 1.5%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);

        margin-bottom: 30px;
        padding: 12px;
    }

    .unidadesventa {
        font-size: 12px;
    }

    .btconsola {
        width: 96%;
        height: 100%;
        list-style: none;
        display: inline-block;
        color: black;
        margin-left: 2%;
        margin-right: 2%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 50px;
        min-height: 60px;
        text-align: center;
        font-size: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;
        padding-top: 12px;
    }

    .btconsolados {
        width: 96%;
        height: 100%;
        list-style: none;
        display: inline-block;
        color: black;
        margin-left: 2%;
        margin-right: 2%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 10px;
        min-height: 60px;
        text-align: center;
        font-size: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;
        padding-top: 15px;
    }

    .postcarta {
        width: 97%;
        margin-left: 1.5%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);

        margin-bottom: 30px;
        padding: 12px;

    }

    .ulnoves {
        width: 100%;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
        margin-top: 0px;
        background-color: #EF82A1;
    }

    .lesnoves {
        width: 14%;
        top: 2px;
        left: 2px;
        border-style: solid;
        border-radius: 24px;
        border-width: 1px;
        background-color: #FFFFFF;
    }

    .postlogin {
        width: 50%;
        margin-left: 25%;

        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 30px;
    }


    .ulizquierda {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .ulcabped {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .ulderechag {
        width: 60%;
        margin-left: 39%;
        margin-top: 24px;
        vertical-align: top;
        list-style: none;
        display: inline-block;
        text-align: left;
        font-size: 10px;
    }


    .ulderechano {
        padding-left: 3px;
        width: 22%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 7px;
    }

    .ulderecha {
        display: none;
    }

    .marqueei {
        padding-bottom: 8px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        margin-left: 10px;
        margin-top: 10px;
    }

    .postpedido {
        width: 99%;
        margin-left: 0.5%;
        padding-top: 8px;
        width: 100%;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
    }

    .login {
        float: right;
        text-decoration: none;
        color: white;
        font-size: 10px
    }

    .login:hover {
        text-decoration: underline;
        font-size: 10px
    }

    .botoenter {
        color: rgba(255, 255, 255, .7);
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        font-size: 16px;
        line-height: 16px;
    }

    .botoenter:hover {
        color: #fff;
    }

    .icomenu {
        color: #666666;
        padding-bottom: 8px;
        width: 0px;
        height: 0px;
        list-style: none;
        vertical-align: top;
        cursor: pointer;
        width: 40px;
        margin-left: 8px;
    }


    .txticomenu {
        display: none;
        visibility: hidden;
        font-size: 2em;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: none;
    }


    .txticobak {
        color: #666666;
        padding-bottom: 8px;
        width: 8%;
        font-size: 16px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        text-align: right;
    }

    .txticobak2 {
        color: #666666;
        padding-bottom: 8px;
        width: 15%;
        font-size: 16px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        text-align: right;
    }

    .txtmnuclient {
        list-style: none;
        width: 20%;
        display: inline-block;
        vertical-align: top;
        text-align: right;
    }

    .linkmnucli {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
        font-size: 12px;
    }

    .linkmnucli :hover {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }


    .linkcarta {
        width: 100%;
        text-align: center;
        padding-top: 2px;
        vertical-align: middle;
        font-size: 14px;
    }

    .linkcarta :hover {
        width: 100%;
        text-align: center;
        padding-top: 2px;
        vertical-align: middle;
        font-size: 14px;
    }



    .txtdescartac {
        width: 10%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
    }

    .txtdescarta {
        width: 23%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        padding-left: 3px;
    }

    .txtdescarta2 {
        width: 28%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;

    }

    .txtdescartai {
        width: 12%;
        list-style: none;
        display: inline-block;
        vertical-align: bottom;
        font-size: 12px;
        text-align: right;

    }

    .txtporenc {
        width: 2%;
        list-style: none;
        font-weight: bold;
        color: blue;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
        font-weight: bolder;
    }

    .txtvegeta {
        width: 1%;
        list-style: none;
        font-weight: bold;
        color: green;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
        font-weight: bolder;
    }

    .txtaquien {
        list-style: none;
        width: 64%;
        display: inline-block;
        vertical-align: top;

    }

    .txtselycon {
        list-style: none;
        width: 29%;
        display: inline-block;
        vertical-align: top;
        padding-top: 8px;

    }

    .txtsineces {
        list-style: none;
        width: 64%;
        display: inline-block;
        vertical-align: top;
        margin-top: 6px;
    }

    .hazclickanun {
        list-style: none;
        width: 56%;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        margin-top: 6px;

    }

    .txtresultados {
        list-style: none;
        width: 43%;
        display: inline-block;
        vertical-align: bottom;
        text-align: right;
    }

    .postprods {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        background: #fff;
        border-color: grey;
        border-style: solid;
        border-width: 1px;
        text-align: center;
        border-radius: 4px 4px 4px 4px;
        margin-bottom: 6px;
        padding: 8px;
        appearance: textfield;
    }

    .postprodsencargo {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        background: #fff;
        border-radius: 12px;
        margin-bottom: 6px;
        padding: 4px;
    }



    .postprodsencargo input[type="number"]::-webkit-outer-spin-button,
    .postprodsencargo input[type="number"]::-webkit-inner-spin-button {
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .postprodsweb {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-bottom: 14px;
        padding: 14px;
    }

    .postprodsweb input[type="number"]::-webkit-outer-spin-button,
    .postprodsweb input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .txtprodsel {
        margin: 0px;
        padding: 0px;
        width: 49%;
        text-align: left;
        vertical-align: top;
        vertical-align: bottom;
        opacity: 80%;
        margin: 0px;
        padding: 0px;
        font-size: 12px;
    }

    .txtnumlinpeds {
        vertical-align: top;
        opacity: 80%;
        width: 20%;
        font-size: 10px;
    }

    .txtwebcodi {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        padding-left: 4px;
    }

    .txtweb {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-top: 6px;
        padding-left: 4px;
    }

    .txtwebp {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-top: 6px;
        background-color: #f4f4f4;
        border-radius: 4px;
        padding: 2px;
    }

    .contenedorclientes {
        list-style: none;
        padding-right: 4px;
        width: 24.6%;
        height: 400px;
        min-height: 400px;
        max-height: 400px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .contenedormenucliente {
        list-style: none;
        padding-right: 4px;
        width: 24.6%;
        height: 340px;
        min-height: 340px;
        max-height: 340px;
        display: inline-block;
        vertical-align: top;
        overflow: hidden;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .contenedorproductos {
        list-style: none;
        padding-right: 4px;
        width: 24%;
        height: 420px;
        min-height: 420px;
        max-height: 420px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .contenedorproductosweb {
        list-style: none;
        padding-right: 2px;
        width: 23.8%;
        height: 600px;
        min-height: 600px;
        max-height: 600px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    .txticomm {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-left: 8px;
        padding-bottom: 2px;
    }


    .contenedorproductosencargo {
        list-style: none;
        padding-right: 2px;
        width: 18%;
        height: 450px;
        min-height: 450px;
        max-height: 450px;
        display: inline-block;
        vertical-align: top;
        padding-bottom: 8px;
        margin-bottom: 24px;
        margin-right: 1%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .postencargo {
        width: 100%;
        height: 450px;
        min-height: 450px;
        max-height: 450px;
    }

    .postweb {
        width: 100%;
        height: 326px;
        min-height: 326px;
        max-height: 326px;
    }


    .postlimarcoimgweb {
        width: 94%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        margin-left: 3%;
        max-height: 200px;
    }

    .marcoimgweb {
        width: 98%;
        margin-left: 1%;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .imgweb {
        width: 100%;
        max-height: 192px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }


    .imgwebcliente {
        width: 200px;
        max-height: 200px;
        min-width: 200px;
        max-width: 200px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .imgcliweb {
        width: 170px;
        max-height: 200px;
        min-width: 170px;
        max-width: 170px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .postmenucliente {
        width: 100%;
        list-style: none;
        display: inline-block;
        background: #fff;
        margin-bottom: 30px;
        padding: 6px;
    }


    /* --- Paginacion --- */

    .paginacion {
        margin-bottom: 10px;
    }

    .paginacion ul {
        list-style: none;
        text-align: center;
    }

    .paginacion ul li {
        display: inline-block;
        margin: 0 5px;
        color: #fff;
    }

    .paginacion ul li a {
        display: block;
        padding: 10px 20px;
        background: #595959;
        color: #fff;
    }

    .paginacion ul li a:hover {
        background: #BB1F35;
        text-decoration: none;
    }

    .paginacion ul .active {
        background: #BB1F35;
        padding: 10px 20px;
    }

    .paginacion ul .disabled {
        background: #a8a8a8;
        padding: 10px 20px;
        cursor: not-allowed;
    }

    .paginacion ul .disabled:hover {
        background: #a8a8a8;
    }

    .legend {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 14px;
    }

    .legendT {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 16px;
        text-align: center;
        vertical-align: middle;
    }

    .legend2 {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 12px;
    }

    .formulario input[type="number"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 4px;
        width: 90px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #141938;
    }

    .btgrabap {
        padding: 2px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 90px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .btborrap {
        padding: 4px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 90px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .btgrabap:hover {
        background: #BB1F35;
    }

    .btborrap:hover {
        background: #BB1F35;
    }

    .btborrap {
        padding: 8px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 70px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnquita {
        padding: 6px;
        background: #595959;
        color: #fff;
        font-size: 16px;
        width: 16px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnquita:hover {
        background: #BB1F35;
    }

    #btadd {
        padding-top: 22px;
        padding-left: 1px;
        padding-bottom: 20px;
        vertical-align: bottom;
        background: #595959;
        margin-top: 22px;
        color: white;
        font-size: 16px;
        text-align: center;
        width: 28px;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    #btadd:hover {
        background: #BB1F35;
    }

    #botonnws {
        margin-left: 4px;
        background: #595959;
        vertical-align: top;
        color: #fff;
        font-size: 16px;
        width: 70px;
        border-radius: 4px;
        border: none;
        cursor: pointer;
    }

    #botonnws:hover {
        background: #BB1F35;
    }

    .botonnwp {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 180px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnwp:hover {
        background: #BB1F35;
    }


    .botonnwd {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 180px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnwd:hover {
        background: #BB1F35;
    }

    .postbuscacli {
        width: 28%;
        margin-left: 6px;
        padding: 3px;
        border-radius: 6px;
        border: solid;
        border-width: 1px;
        cursor: pointer;
        border-color: #999999;
    }


    .iddirenvid {
        width: 48%;
        margin-left: 6px;
        padding: 3px;
        display: inline-block;
        list-style: none;
    }


    .botototalista {
        padding: 5px;
        background: #7782ad;
        color: #fff;
        font-size: 12px;
        width: calc(100% - 8px);
        margin: 0 4px;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .botototalista:hover {
        background: #BB1F35;
    }

    .botoeliminar:hover {
        background: #fff;
        color: #7782ad;
    }

    .botototalista2 {
        padding: 5px;
        background: #7782ad;
        color: #fff;
        font-size: 12px;
        width: 100%;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .botototalista2:hover {
        background: #BB1F35;
    }


    /* --- Formularios --- */

    .iconminus {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-right: 8px;
        padding-bottom: 2px;
        visibility: hidden;
    }

    .iconplus {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-left: 6px;
        padding-bottom: 2px;
        visibility: hidden;
    }


    .formularioprecios {
        width: 100%;
        overflow: hidden;
    }

    .formulario {
        width: 100%;
        overflow: hidden;
    }

    .newpassword {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 4px;
        width: 60%;
        display: inline-block;
        margin-bottom: 4px;
        font-size: 12px;
        color: #141938;
    }

    #elorden {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #elorden:focus {
        border: 1px solid #595959;
        padding: 6px;
    }

    #seleccuales {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 240px;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #seleccuales:focus {
        border: 1px solid #595959;
        padding: 6px;
    }

    #frmunidadesventa {
        margin-top: 4px;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #frmunidadesventa:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    .frmunidadesventa {
        margin-top: 4px;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 2px;
        font-size: 18px;
        color: #141938;
        text-align: center;
    }

    .frmunidadesventa:focus {
        border: 2px solid #595959;
    }

    #frmformatoventa {
        vertical-align: top;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 86%;
        margin-top: 6px;
        font-size: 18px;
        color: #141938;
    }

    #frmformatoventa:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    #frmimporte {
        vertical-align: top;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 40%;
        font-size: 18px;
        color: #141938;
    }

    #frmimporte {
        border: 2px solid #595959;
        padding: 10px;
        -moz-appearance: textfield;
    }

    .formpedido input[type="text"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formpedido input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .fechaservicio {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 2px;
        width: 120px;
        font-size: 14px;
        color: #141938;
    }

    .formpedido input[type="submit"]:hover {
        background: #BB1F35;
    }

    .numenfoto {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .botonOK {
        padding: 15px;
        margin-top: 60px;
        margin-right: 10%;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 80%;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonOK:hover {
        background: #BB1F35;
    }

    .formpedidonumber {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 90px;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
        text-align: center;
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .formularioprecios input[type="number"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 40%;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .formularioprecios input[type="number"]::-webkit-outer-spin-button,
    .formularioprecios input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .formulario input[type="text"],
    .formulario input[type="number"],
    .formulario input[type="email"],
    .formulario input[type="password"],
    .formulario input[type="label"],
    .formulario select[id="pais"],
    .formulario select[id="sector"],
    .formulario select[id="actividad"],
    .formulario select[id="id_especialidad"],
    .formulario select[id="tipoprod"],
    .formulario select[id="id_unimedpeso"],
    .formulario select[id="id_fam"],
    .formulario select[id="id_subfam"],
    .formulario select[id="li"],
    .formulario textarea {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 16px;
        width: 100%;
        display: block;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .formulario input[type="date"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        width: 110px;
        font-size: 18px;
        color: #141938;
    }

    .formulario input[type="date"]:focus {
        border: 2px solid #595959;
    }

    .formulario input[type="text"],
    .formulario input[type="date"],
    .formulario input[type="time"],
    .formulario input[type="number"],
    .formulario input[type="email"],
    .formulario input[type="password"],
    .formulario input[type="label"],
    .formulario select[id="tipo"],
    .formulario select[id="fam"],
    .formulario select[id="subfam"],
    .formulario textarea {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 16px;
        width: 100%;
        display: block;
        margin-bottom: 20px;
        font-size: 1em;
        color: #141938;
    }

    .formulario input[type="text"]:focus,
    .formulario input[type="date"]:focus,
    .formulario input[type="time"]:focus,
    .formulario input[type="number"],
    .formulario input[type="email"]:focus,
    .formulario input[type="password"]:focus,
    .formulario select[id="tipo"]:focus,
    .formulario select[id="fam"]:focus,
    .formulario select[id="subfam"]:focus,
    .formulario textarea:focus {
        border: 2px solid #595959;
        padding: 15px;
    }

    .formulario input[type="email"]:focus,
    .formulario input[type="password"]:focus,
    .formulario select[id="pais"]:focus,
    .formulario select[id="sector"]:focus,
    .formulario select[id="actividad"]:focus,
    .formulario select[id="tipoprod"]:focus,
    .formulario select[id="id_unimedpeso"]:focus,
    .formulario select[id="id_fam"]:focus,
    .formulario select[id="id_subfam"]:focus,
    .formulario textarea:focus {
        border: 2px solid #595959;
        padding: 15px;
    }

    .formulario textarea {
        max-width: 100%;
        min-width: 100%;
        min-height: 100px;
    }

    .formulario input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formulario input[type="submit"]:hover {
        background: #BB1F35;
    }

    .formbusca input {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 10px;
        width: 78%;
        display: inline-block;
        margin-bottom: 8px;
        font-size: 14px;
        color: #141938;
    }

    .formbusca select {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 10px;
        width: 100%;
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        color: #141938;
    }

    .formbusca input:focus,
    .formbusca select:focus {
        border: 2px solid #595959;
        padding: 4px;
    }

    .formulario textarea {
        max-width: 100%;
        min-width: 100%;
        min-height: 100px;
    }

    .formulario input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formulario input[type="submit"]:hover {
        background: #BB1F35;
    }

    .larger {
        width: 10px;
        height: 10px;
        transform: scale(1.5);
        margin: 10px;
    }

    .pequer {
        width: 10px;
        height: 10px;
        transform: scale(1);
        margin: 2px;
    }

    .iconselecc {
        padding: 10px;
        text-align: center;
        width: 48px;
        height: 40px;
        max-height: 40px;
        font-size: 18px;
        line-height: 18px;
        background: #6495ED;
        display: inline-block;
        color: white;
        vertical-align: bottom;
        border-radius: 18px 18px 18px 18px;
    }

    .iconselecc:hover {
        cursor: pointer;
    }

    .iconsbusca {
        padding: 10px;
        text-align: center;
        width: 48px;
        max-height: 48px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 0 0 3px;
    }

    .iconslogin {
        padding: 19px;
        text-align: center;
        width: 48px;
        max-height: 48px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 0 0 3px;
    }

    .iconspwr {
        padding: 10px;
        text-align: center;
        width: 30px;
        max-height: 30px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 3px 3px 3px;
    }

    .iconsalta {
        padding: 4px;
        text-align: center;
        width: 18px;
        max-height: 24px;
        font-size: 10px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        border-radius: 3px 0 0 3px;
    }

    .iconsup {
        padding: 4px;
        text-align: center;
        width: 18px;
        max-height: 24px;
        font-size: 10px;
        line-height: 18px;
        background: white;
        display: inline-block;
        color: black;
        vertical-align: top;
        border-radius: 3px 0 0 3px;
    }

    .errores {
        text-align: center;
        color: red;
    }

    .btnofecha {
        vertical-align: top;
        width: 22px;
        height: 22px;
        background: #BB1F35;
        color: #fff;
        font-size: 1em;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .btnofecha:hover {
        background: #333333;
    }

    .gridcontenedora {
        width: 100%;
        display: list-item;
    }

    .gridvacaciones {
        vertical-align: top;
        width: 49%;
        display: inline-block;
        margin-left: 2px;
        border: 1px solid #595959;
    }

    .gridhorarios {
        vertical-align: top;
        width: 100%;
        display: inline-block;
        border: 1px solid #595959;
    }

    .griddias {
        vertical-align: top;
        width: 100%;
        display: inline-block;
    }

    .gridhoras {
        vertical-align: top;
        width: 100%;
        display: inline-block;
    }

    .lineavacas {
        display: inline-block;
        vertical-align: top;
        list-style: none;
        width: 100%;
        margin: auto;
        padding: 3px;
    }

    .ulvac1 {
        margin-left: 10px;
        margin-right: 2px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac1 {
        width: 194px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        margin-left: 12px;
    }

    .livac4 {
        width: 200px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .ulvac2 {
        width: 210px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac2 {
        width: 70px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac3 {
        width: 110px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        height: 30px;
        text-align: center;
    }

    .lblvac {
        width: 80px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .lblvac2 {
        width: 40px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .btvac {
        width: 16px;
        height: 18px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .btaddvac {
        width: 26px;
        height: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 14px;
    }

    .livacas {
        vertical-align: top;
        list-style: none;
        width: 100%;
        display: inline-table;
        visibility: visible;
        margin-right: 0px;
        font-size: 0.8em;
    }

    .lidias {
        vertical-align: top;
        list-style: none;
        width: 13%;
        display: inline-block;
    }

    .labeldias {
        vertical-align: top;
        margin-left: 2px;
        color: red;
    }

    .horas {
        visibility: collapse;
        margin-left: 4px;
        width: 58px;
    }

    .legend {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 12px;
        vertical-align: top;
        width: 90%;
        display: inline-block;
        margin-left: 10px;
    }

    .lineasdias {
        margin-bottom: 2px;
        margin-top: 4px;
        font-size: 14px;
        vertical-align: top;
        width: 90%;
        display: inline-block;
    }

    .legend2 {
        text-align: left;
        vertical-align: bottom;
        height: 18px;
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 18px;
    }

    .grupo {
        width: 100%;
        margin-left: 6px;
    }

    .divlin {
        list-style: none;
        width: 33%;
        display: inline-block;
        padding-top: 20px;
    }

    .divmnulateral {
        list-style: none;
        width: 100%;
        display: inline-block;
        padding-top: 20px;
    }

    .checks {
        margin-left: 4px;
    }

    .idcsslin {
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 6px;
        font-size: 14px;
        color: red;
    }


    .buscarprod {
        width: 60%;
        margin-left: 20%;
        margin-bottom: 10px;
        color: red;
        display: none;
        visibility: hidden;
    }

    #cualbusca {
        width: 90%;
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 12px;
        color: #141938;
        font-weight: bolder
    }

    #verproductos {
        width: 100%;
        list-style: none;
        display: none;
        vertical-align: top;
    }


    #myBtn {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Fixed/sticky position */
        bottom: 56px;
        /* Place the button at the bottom of the page */
        left: 30px;
        /* Place the button 30px from the right */
        z-index: 99998;
        /* Make sure it does not overlap */
        border: none;
        /* Remove borders */
        outline: none;
        /* Remove outline */
        background-color: #BB1F35;
        /* Set a background color */
        color: white;
        /* Text color */
        cursor: pointer;
        /* Add a mouse pointer on hover */
        padding-top: 10px;
        /* Some padding */
        padding-bottom: 10px;
        padding-right: 14px;
        padding-left: 14px;
        border-radius: 8px;
        /* Rounded corners */
        font-size: 18px;
        /* Increase font size */
    }

    #myBtn:hover {
        background-color: white;
        /* Add a dark-grey background on hover */
        color: #BB1F35;
        border-style: solid;
        border-width: 1px;
        border-color: #BB1F35;
    }

    #myBtndwn {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Fixed/sticky position */
        top: 80px;
        /* Place the button at the bottom of the page */
        right: 30px;
        /* Place the button 30px from the right */
        z-index: 99999;
        /* Make sure it does not overlap */
        border: none;
        /* Remove borders */
        outline: none;
        /* Remove outline */
        background-color: #BB1F35;
        /* Set a background color */
        color: white;
        /* Text color */
        cursor: pointer;
        /* Add a mouse pointer on hover */
        padding-top: 10px;
        /* Some padding */
        padding-bottom: 10px;
        padding-right: 14px;
        padding-left: 14px;
        border-radius: 8px;
        /* Rounded corners */
        font-size: 18px;
        /* Increase font size */
    }

    #myBtndwn:hover {
        background-color: white;
        /* Add a dark-grey background on hover */
        color: #BB1F35;
        border-style: solid;
        border-width: 1px;
        border-color: #BB1F35;
    }


    .botclcnum {
        height: 48px;
        cursor: pointer;
        list-style: none;
        vertical-align: top;
        display: inline-block;
        width: 30%;
        text-align: center;
        background: red;
        padding-top: 10px;
        border-color: grey;
        border-style: solid;
        border-width: 1px;
        border-radius: 6px 6px 6px 6px;
        font-weight: bolder;
    }

    footer {
        background: #BB1F35;
        color: #fff;
        width: 100%;
        height: 50px;
        vertical-align: bottom;
        font-size: 9px;
        position: fixed;
        margin-bottom: 0px;
        bottom: 0px;
        background-color: #BB1F35
    }

    footer .copyright {
        text-align: center;
        font-size: 9px;
        padding: 8px 0;
    }
}

/* ─── styles_media_tablet2.css ─────────────────────────────────────────────── */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    /* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px


screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape)

*/
    .txtindex {
        font-size: 18px;
        width: 60%;
    }


    .imgindex {
        width: 60%;
    }


    .boxtxtdescres {
        width: 100%;
        height: 110px;
        list-style: none;
        text-align: center;
        vertical-align: top;
        display: inline-block;
        padding-top: 8px;
        padding-bottom: 4px;
        opacity: 100%;
        white-space: normal;
    }


    .divindex {
        margin-right: 1%;
        width: 24%;
        display: inline-block;
        vertical-align: top;
    }

    .divtext {
        width: 40%;
        text-align: center;
        display: inline-block;
        vertical-align: top;
    }

    .divcss {
        width: 20%;
        display: inline-block;
        vertical-align: top;
    }

    .headlogoecro {
        display: flex;
        align-items: flex-start;

    }

    .logoecro {
        color: white;
        margin-top: 0px;
        width: 36px;
        height: 34px;
        animation: rotarY 2s ease-in-out forwards;
        transform-style: preserve-3d;
    }

    .texteencarrego {
        font-size: 16px;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 1s ease-out forwards;
        animation-delay: 1s;
        text-align: left;
        vertical-align: top;
        padding-top: 0px;
    }

    .textelangline {
        width: 100px;
        margin-top: -10px;
        margin-left: 4px;
        font-size: 6px;
        font-weight: normal;
        font-style: italic;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 4s ease-out forwards;
        animation-delay: 1s;
        text-align: left;
    }

    .textecmdonline {
        width: 100px;
        margin-top: 1px;
        margin-left: 76px;
        font-size: 8px;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 2s ease-out forwards;
        animation-delay: 2s;
        text-align: left;
    }

    @keyframes rotarY {
        from {
            transform: rotateY(0deg);
        }

        to {
            transform: rotateY(360deg);
        }
    }

    @keyframes aparecerTexto {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }


    #nombreusuario {
        width: 96%;
        max-width: 360px;
    }

    #telefonopagador {
        width: 96%;
        max-width: 360px;
    }

    #correousuario {
        width: 96%;
        max-width: 360px;
    }

    .mensajereserva {
        min-width: 390px;
        max-width: 390px;
        width: 100%;
        box-sizing: border-box;

    }


    #elticket {
        margin-left: 33%;
        width: 500px;
        list-style:
            none;
        display: inline-block;
        vertical-align: top;
        padding: 6px;
        padding-top: 16px;
    }


    #seccioncookie {
        font-size: 12px;

    }

    div.centeredconsola {
        position: fixed;
        top: 10px;
        left: 10px;
        transform: translate(-50%, -50%);
    }

    div.centered {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .selectdia {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .selectdia:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    #diaservicio {
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 1.2em;
        color: #141938;
        font-weight: bolder;
    }


    * {
        margin: 0;
        padding: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    body {
        width: 100%;
        margin: 0px;

    }

    a {
        text-decoration: none;
        color: #BB1F35;
    }

    a:hover {
        text-decoration: none;
        color: #2f6d84;
    }


    .txtlincompra {
        text-align: center;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 16px;
    }



    .txticobak {
        color: #666666;
        padding-bottom: 8px;
        width: 8%;
        font-size: 16px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        text-align: right;
    }

    .txticobak2 {
        color: #666666;
        padding-bottom: 8px;
        width: 15%;
        font-size: 16px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        text-align: right;
    }


    .txtentrelasylas {
        color: #000000;
        padding-bottom: 2px;
        width: 100%;
        font-size: 10px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .lahoraserv {
        width: 100px;
        font-size: 1em;
        border-color: grey;
        margin-left: 8px;
        margin-right: 8px;
        margin-top: 8px;
        border-style: solid;
        border-width: 1px;
        text-align: center;
        border-radius: 4px 4px 4px 4px;
        -webkit-datetime-edit: :-webkit-datetime-edit-fields-wrapper::-webkit-datetime-edit-text::-webkit-datetime-edit-month-field::-webkit-datetime-edit-day-field::-webkit-datetime-edit-year-field::-webkit-inner-spin-button::-webkit-calendar-picker-indicator;
        padding: 6px;
        font-size: 18px;
        font-weight: bold;
        color: blue;
    }

    .txtindique {
        margin: auto;
        width: 90%;
        text-align: center;
        margin-bottom: 8px;
        font-size: 10px;
    }


    .ullinprods {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        height: 22px;
    }


    .cabetick0 {
        margin-left: 4px;
    }

    .cabetick {
        margin-left: 4px;
    }

    .cabetick10 {
        margin-left: 10px;
    }

    .txtlinprods {
        font-size: 12px;
    }

    .linprods1 {

        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        background: red;
        padding: 4px;
        width: 80%;
        display: inline-block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 12px;

    }


    .linprods2 {
        border: 0px solid #A8A8A8;
        text-align: left;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 12px;
    }


    .linprods3 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        background: red;
        padding: 4px;
        width: 80%;
        display: inline-block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 12px;

    }


    .linprods4 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 12px;

    }


    .linprods5 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 12px;

    }

    .ullindata {
        list-style: none;
        width: 49.6%;
        display: inline-block;
        vertical-align: top;
    }

    .ullindatad {
        list-style: none;
        padding-left: 8px;
        width: 49.6%;
        display: none;
        visibility: hidden;
        vertical-align: top;
    }



    #frmcondiciones {
        list-style: none;
        width: 55%;
        vertical-align: top;
        margin: 0px;
        padding: 0px;
    }

    #libotonOK {
        margin-bottom: 60px;
        list-style: none;
        width: 34%;
        vertical-align: bottom;
    }

    .txtselec {
        color: #000000;
        margin-top: 6px;
        padding-top: 2px;
        width: 100%;
        font-size: 14px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }

    .txtgustosa {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 90%;
        margin-left: 5%;
        font-size: 12px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: justify;
    }

    .txtservdomi {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 100%;
        font-size: 9px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .txtservdomi2 {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 100%;
        font-size: 9px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .pobserv {

        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 1.2em;
        color: #141938;
        font-weight: bolder;

    }



    h1 {
        font-weight: normal;
        font-size: 22px;
        text-align: justify;
    }

    h2 {
        font-weight: normal;
        font-size: 20px;
        text-align: justify;
    }

    h3 {
        font-weight: normal;
        font-size: 18px;
        text-align: justify;
    }

    h4 {
        font-weight: normal;
        font-size: 16px;
        text-align: justify;
    }

    h5 {
        font-weight: normal;
        font-size: 14px;
        text-align: justify;
    }

    header {
        color: #fff;
        margin-top: 0px;
        margin-bottom: 10px;
        background: #BB1F35;
        font-size: 14px;
    }

    header .contenedor {
        overflow: hidden;
        margin-top: 0px;
    }

    header .logo {
        max-width: 300px;
        margin-left: 0px;
        margin-top: 4px;
        height: 28px;
    }

    header .logo a {
        color: #fff;
        font-size: 28px;
        line-height: 28px;
    }

    header .logo a:hover {
        text-decoration: none;
    }

    .imglogo {
        width: 60%;
        margin-left: 4%;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }


    .lilogocli {
        width: 40%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }


    .lilogoclim {
        width: 50%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .nombrepob {
        width: 100%;
        font-size: 14px;
        font-weight: bolder;

        text-align: center;
    }

    .nombre {
        width: 100%;
        font-size: 16px;
        font-weight: bolder;

        text-align: center;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }


    .logopedido {
        width: 100%;
        vertical-align: top;
    }

    .txtulindex {
        width: 48%;
        margin-left: 0.5%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }


    .divcss {
        width: 94%;
        margin: auto;
    }

    .enlang {
        list-style: none;
        font-size: 0.8em;
        margin-left: 140px;
        min-width: 180px;
        vertical-align: bottom;
        line-height: 8px;
    }

    #navbar {
        position: fixed;
        top: 0px;
        width: 100%;
        display: block;
        transition: top 0.3s;
        z-index: 1001;
    }

    #navfot {
        position: fixed;
        bottom: -70px;
        width: 100%;
        display: block;
        transition: bottom 0.3s;
        z-index: 1002;
    }


    .alang {
        width: 100%;
        text-decoration: none;
        text-align: right;
        font-size: 10px;
        color: #fff;
        margin-top: 2px;
        margin-right: 4px;
    }

    .alang :hover {
        text-decoration: none;
        color: #fff;
    }


    .linktaf {
        text-decoration: none;
        color: #2f6d84;
        width: 100%;
    }

    .linktaf:hover {
        text-decoration: none;
        color: #BB1F35;
        width: 100%;
    }

    .login2 a {
        float: right;
        text-decoration: none;
        color: white;
        width: 100%;
        font-size: 10px;
    }

    .login2 a:hover {
        text-decoration: underline;
    }

    .iconstipo a {
        text-decoration: none;
        color: white;
    }

    .iconstipo a:hover {
        font-style: italic;
    }

    .primercontenedor {
        width: 100%;
        margin: 0px;
        margin-top: 60px;
    }

    .contenedormenu {
        width: 90%;
        margin-left: 5%;
    }


    .contenedor {
        width: 100%;
        margin-left: 10%;
        margin: 0;
        padding: 0;
    }

    .contenedorbt {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .contenedorpeds {
        width: 90%;
        margin-left: 5%;
        padding: 4px;
    }

    .lblfechapanel {
        text-align: center;
        margin-top: 8px;
        font-size: 12px;
        vertical-align: middle;

        padding-left: 2px;
        padding-top: 2px;
        color: black;
        cursor: pointer;
    }

    .divfechapanel {
        position: fixed;
        right: 2px;
        top: 0;
        list-style: none;
        display: inline-block;
        width: 80px;
        height: 13px;
        font-size: 14px;
        vertical-align: top;
        text-align: center;
        background-color: white;
        border-style: none;
        border-radius: 4px;
        border-width: 1px;
        margin-top: 10px;
        z-index: 99980;
    }

    .divfechapanel2 {
        position: fixed;
        right: 0px;
        top: 0;
        list-style: none;
        display: inline-flex;
        width: 80px;
        height: 20px;
        vertical-align: top;
        text-align: center;
        cursor: pointer;
        font-size: 12px;
        z-index: 99981;
    }

    .divfechas {
        position: fixed;
        right: 0px;
        top: 20px;
        list-style: none;
        display: inline-block;
        width: 84px;
        vertical-align: top;
        text-align: left;
        background-color: white;
        border-style: solid;
        border-radius: 4px;
        border-color: white;
        border-width: 1px;
    }


    .divfechapanel3 {
        position: fixed;
        right: 0px;
        top: 22px;
        display: inline-block;
        width: 80px;
        vertical-align: top;
        text-align: left;
    }


    #hojapedido {
        width: 90%;
        margin-left: 5%;
        margin: 4px;
        margin-top: 30px;
        padding: 6px;

    }

    .izquierda {

        float: left;
    }

    .derecha {
        float: right;
        margin-bottom: 4px;
        margin-right: 4px;
    }

    .centro {
        float: left;
        width: 34%;
        list-style: none;
        font-size: 2em;
        vertical-align: top;
    }


    .post {
        width: 97%;
        margin-left: 1.5%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);

        margin-bottom: 30px;
        padding: 12px;
    }

    .unidadesventa {
        font-size: 12px;
    }

    .btconsola {
        width: 96%;
        height: 100%;
        list-style: none;
        display: inline-block;
        color: black;
        margin-left: 2%;
        margin-right: 2%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 50px;
        min-height: 60px;
        text-align: center;
        font-size: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;
        padding-top: 12px;
    }

    .btconsolados {
        width: 96%;
        height: 100%;
        list-style: none;
        display: inline-block;
        color: black;
        margin-left: 2%;
        margin-right: 2%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 10px;
        min-height: 60px;
        text-align: center;
        font-size: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;
        padding-top: 15px;
    }

    .postcarta {
        width: 97%;
        margin-left: 1.5%;
        background: #fff;

        margin-bottom: 30px;
        padding: 12px;

    }

    .ulnoves {
        width: 100%;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
        margin-top: 0px;
        background-color: #EF82A1;
    }

    .lesnoves {
        width: 14%;
        top: 2px;
        left: 2px;
        border-style: solid;
        border-radius: 24px;
        border-width: 1px;
        background-color: #FFFFFF;
    }

    .postlogin {
        width: 50%;
        margin-left: 25%;

        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 30px;
    }


    .postpedido {
        width: 99%;
        margin-left: 0.5%;
        padding-top: 8px;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        width: 100%;
        list-style: none;
        padding: 8px;
        margin-bottom: 10px;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
    }



    .txtnomenficha {
        color: #666666;
        width: 59%;
        font-size: 28px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }


    .ulizquierda {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .ulcabped {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .ulderechag {
        width: 60%;
        margin-left: 39%;
        margin-top: 24px;
        vertical-align: top;
        list-style: none;
        display: inline-block;
        text-align: left;
        font-size: 10px;
    }


    .ulderechano {
        display: none;
    }


    .ulderecha {
        text-align: left;
        padding-left: 3px;
        margin-top: 120px;
        margin-left: 4%;
        width: 20%;

        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .marqueei {
        padding-bottom: 8px;
        width: 51%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        margin-left: 10px;
        margin-top: 10px;
    }

    .postpedido {
        width: 99%;
        margin-left: 0.5%;
        padding-top: 8px;
        width: 100%;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
    }



    .login {
        float: right;
        text-decoration: none;
        color: white;
        font-size: 10px
    }

    .login:hover {
        text-decoration: underline;
        font-size: 10px
    }



    .btn {
        padding: 15px;
        display: inline-block;
        margin: 15px 0;
        background: #595959;
        color: #fff;
        font-size: 1em;
        border-radius: 2px;
        border: none;
    }

    .btn:hover {
        text-decoration: none;
        background: #BB1F35;
    }

    .botobusca {
        margin-right: 12px;
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 1em;
        border-radius: 2px;
        border: none;
    }

    .botobusca:hover {
        text-decoration: none;
        background: #BB1F35;
    }

    .btnwprodn {
        margin-right: 12px;
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 1em;
        border-radius: 2px;
        border: none;
    }

    .btnwprodn:hover {
        text-decoration: none;
        background: #BB1F35;
    }


    .botoenter {
        color: rgba(255, 255, 255, .7);
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        font-size: 16px;
        line-height: 16px;
    }

    .botoenter:hover {
        color: #fff;
    }

    .botoenter {
        color: rgba(255, 255, 255, .7);
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        font-size: 16px;
        line-height: 16px;
    }

    .botoenter:hover {
        color: #fff;
    }

    .icomenu {
        color: #666666;
        text-align: left;
        padding-bottom: 8px;
        font-size: 2em;
        list-style: none;
        vertical-align: top;
        cursor: pointer;
        margin-left: 14px;
    }



    .txticomenu {
        text-align: left;
        display: inline-block;
        visibility: visible;
        font-size: 24px;
        padding-top: 6px;
        list-style: none;
        vertical-align: top;
        text-align: left;
        color: #666666;
        cursor: pointer;
    }


    .txttitulo {
        width: 100%;
        font-size: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        margin-left: 4px;
    }

    .txticobk {
        color: #666666;
        width: 8%;
        font-size: 12px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: right;
        cursor: pointer;
        left: 0px;
    }

    .txtcarta {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: right;
        font-size: 14px;
        padding-bottom: 4px;
    }

    .txtmanual {
        width: 100%;
        margin-bottom: 20px;
        list-style: none;
        display: inline-block;
        vertical-align: bottom;
        text-align: center;
        opacity: 80%;
    }

    .txtmnuclient {
        list-style: none;
        width: 10%;
        display: inline-block;
        vertical-align: middle;
        text-align: center;
        font-size: 14px;
    }

    .linkmnucli {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }

    .linkmnucli :hover {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }


    .linkcarta {
        width: 100%;
        text-align: center;
        padding-top: 2px;
        vertical-align: middle;
        font-size: 14px;
    }

    .linkcarta :hover {
        width: 100%;
        text-align: center;
        padding-top: 2px;
        vertical-align: middle;
        font-size: 14px;
    }


    .classli {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
    }

    .txtstrneon {
        width: 62%;
        text-align: center;
        font-size: 16px;
        text-align: center;
        padding-top: 4px;
        margin-left: 10px;
        margin-right: 10px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        color: #000000;
    }

    .txtdescartac {
        width: 10%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
    }

    .txtdescarta {
        width: 23%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        padding-left: 3px;
    }

    .txtdescarta2 {
        width: 28%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;

    }

    .txtdescartai {
        width: 12%;
        list-style: none;
        display: inline-block;
        vertical-align: bottom;
        font-size: 12px;
        text-align: right;

    }

    .txtporenc {
        width: 2%;
        list-style: none;
        font-weight: bold;
        color: blue;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
        font-weight: bolder;
    }

    .txtvegeta {
        width: 1%;
        list-style: none;
        font-weight: bold;
        color: green;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
        font-weight: bolder;
    }


    .postprods {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        background: #fff;
        border-color: grey;
        border-style: solid;
        border-width: 1px;
        text-align: center;
        border-radius: 4px 4px 4px 4px;
        margin-bottom: 6px;
        padding: 8px;
        appearance: textfield;
    }

    .postprodsencargo {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        background: #fff;
        border-radius: 12px;
        margin-bottom: 6px;
        padding: 4px;
    }



    .postprodsencargo input[type="number"]::-webkit-outer-spin-button,
    .postprodsencargo input[type="number"]::-webkit-inner-spin-button {
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .postprodsweb {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-bottom: 14px;
        padding: 14px;
    }

    .postprodsweb input[type="number"]::-webkit-outer-spin-button,
    .postprodsweb input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .txtprodsel {
        margin: 0px;
        padding: 0px;
        width: 49%;
        text-align: left;
        vertical-align: top;
        vertical-align: bottom;
        opacity: 80%;
        margin: 0px;
        padding: 0px;
        font-size: 12px;
    }

    .txtnumlinpeds {
        vertical-align: top;
        opacity: 80%;
        width: 20%;
        font-size: 10px;
    }

    .txtwebcodi {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .txtweb {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-top: 6px;
        padding-left: 4px;
    }

    .txtwebp {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-top: 6px;
        background-color: #f4f4f4;
        border-radius: 4px;
        padding: 2px;
    }

    .contenedorclientes {
        list-style: none;
        padding-right: 4px;
        width: 24.6%;
        height: 400px;
        min-height: 400px;
        max-height: 400px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    .elorden {
        width: 20%;
        margin-right: 0px;
        padding-right: 10px;

    }

    .txtcatalog {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
        margin-bottom: 16px;
    }

    .contenedormenucliente {
        list-style: none;
        padding-right: 4px;
        width: 16.5%;
        height: 340px;
        min-height: 340px;
        max-height: 340px;
        display: inline-block;
        vertical-align: top;
        overflow: hidden;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .contenedorproductos {
        list-style: none;
        padding-right: 4px;
        width: 24%;
        height: 420px;
        min-height: 420px;
        max-height: 420px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .contenedorproductosweb {
        list-style: none;
        padding-right: 2px;
        width: 23.8%;
        height: 600px;
        min-height: 600px;
        max-height: 600px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    .txticomm {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-left: 8px;
        padding-bottom: 2px;
    }


    .contenedorproductosencargo {
        list-style: none;
        padding-right: 2px;
        width: 23.5%;
        height: 450px;
        min-height: 450px;
        max-height: 450px;
        display: inline-block;
        vertical-align: top;
        padding-bottom: 8px;
        margin-bottom: 24px;
        margin-right: 1%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .postencargo {
        width: 100%;
        height: 450px;
        min-height: 450px;
        max-height: 450px;
    }

    .postweb {
        width: 100%;
        height: 326px;
        min-height: 326px;
        max-height: 326px;
    }

    .postlimarcoimgweb {
        width: 94%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        margin-left: 3%;
        max-height: 200px;
    }

    .marcoimgweb {
        width: 98%;
        margin-left: 1%;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .imgweb {
        width: 100%;
        max-height: 192px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }



    .imgwebcliente {
        width: 200px;
        max-height: 200px;
        min-width: 200px;
        max-width: 200px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .imgcliweb {
        width: 170px;
        max-height: 170px;
        min-width: 170px;
        max-width: 170px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .postmenucliente {
        width: 100%;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
        background: #fff;
        margin-bottom: 30px;
        padding: 6px;
    }


    /* --- Paginacion --- */

    .paginacion {
        margin-bottom: 10px;
    }

    .paginacion ul {
        list-style: none;
        text-align: center;
    }

    .paginacion ul li {
        display: inline-block;
        margin: 0 5px;
        color: #fff;
    }

    .paginacion ul li a {
        display: block;
        padding: 10px 20px;
        background: #595959;
        color: #fff;
    }

    .paginacion ul li a:hover {
        background: #BB1F35;
        text-decoration: none;
    }

    .paginacion ul .active {
        background: #BB1F35;
        padding: 10px 20px;
    }

    .paginacion ul .disabled {
        background: #a8a8a8;
        padding: 10px 20px;
        cursor: not-allowed;
    }

    .paginacion ul .disabled:hover {
        background: #a8a8a8;
    }

    .legend {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 14px;
    }

    .legendT {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 16px;
        text-align: center;
        vertical-align: middle;
    }

    .legend2 {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 12px;
    }

    .formulario input[type="number"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 4px;
        width: 90px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #141938;
    }

    .btgrabap {
        padding: 2px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 90px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .btborrap {
        padding: 4px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 90px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .btgrabap:hover {
        background: #BB1F35;
    }

    .btborrap:hover {
        background: #BB1F35;
    }

    .btborrap {
        padding: 8px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 70px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnquita {
        padding: 6px;
        background: #595959;
        color: #fff;
        font-size: 16px;
        width: 16px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnquita:hover {
        background: #BB1F35;
    }

    #btadd {
        padding-top: 22px;
        padding-left: 1px;
        padding-bottom: 20px;
        vertical-align: bottom;
        background: #595959;
        margin-top: 22px;
        color: white;
        font-size: 16px;
        text-align: center;
        width: 28px;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    #btadd:hover {
        background: #BB1F35;
    }

    #botonnws {
        margin-left: 4px;
        background: #595959;
        vertical-align: top;
        color: #fff;
        font-size: 16px;
        width: 70px;
        border-radius: 4px;
        border: none;
        cursor: pointer;
    }

    #botonnws:hover {
        background: #BB1F35;
    }

    .botonnwp {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 180px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnwp:hover {
        background: #BB1F35;
    }


    .botonnwd {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 180px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnwd:hover {
        background: #BB1F35;
    }

    .postbuscacli {
        width: 28%;
        margin-left: 6px;
        padding: 3px;
        border-radius: 6px;
        border: solid;
        border-width: 1px;
        cursor: pointer;
        border-color: #999999;
    }


    .iddirenvid {
        width: 48%;
        margin-left: 6px;
        padding: 3px;
        display: inline-block;
        list-style: none;
    }


    .botototalista {
        padding: 5px;
        background: #7782ad;
        color: #fff;
        font-size: 12px;
        width: calc(100% - 8px);
        margin: 0 4px;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .botototalista:hover {
        background: #BB1F35;
    }

    .botoeliminar:hover {
        background: #fff;
        color: #7782ad;
    }

    .botototalista2 {
        padding: 5px;
        background: #7782ad;
        color: #fff;
        font-size: 12px;
        width: 100%;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .botototalista2:hover {
        background: #BB1F35;
    }


    /* --- Formularios --- */

    .iconminus {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-right: 8px;
        padding-bottom: 2px;
        visibility: hidden;
    }

    .iconplus {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-left: 6px;
        padding-bottom: 2px;
        visibility: hidden;
    }


    .formularioprecios {
        width: 100%;
        overflow: hidden;
    }

    .formulario {
        width: 100%;
        overflow: hidden;
    }

    .newpassword {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 4px;
        width: 60%;
        display: inline-block;
        margin-bottom: 4px;
        font-size: 12px;
        color: #141938;
    }

    #elorden {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 50%;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #elorden:focus {
        border: 1px solid #595959;
        padding: 6px;
    }

    #seleccuales {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 240px;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #seleccuales:focus {
        border: 1px solid #595959;
        padding: 6px;
    }

    #frmunidadesventa {
        margin-top: 4px;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #frmunidadesventa:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    .frmunidadesventa {
        margin-top: 4px;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 2px;
        font-size: 18px;
        color: #141938;
        text-align: center;
    }

    .frmunidadesventa:focus {
        border: 2px solid #595959;
    }

    #frmformatoventa {
        vertical-align: top;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 86%;
        margin-top: 6px;
        font-size: 18px;
        color: #141938;
    }

    #frmformatoventa:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    #frmimporte {
        vertical-align: top;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 40%;
        font-size: 18px;
        color: #141938;
    }

    #frmimporte {
        border: 2px solid #595959;
        padding: 10px;
        -moz-appearance: textfield;
    }

    .formpedido input[type="text"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formpedido input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .fechaservicio {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 2px;
        width: 120px;
        font-size: 14px;
        color: #141938;
    }

    .formpedido input[type="submit"]:hover {
        background: #BB1F35;
    }

    .numenfoto {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }


    .botonOK {
        padding: 15px;
        margin-top: 60px;
        margin-right: 10%;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 80%;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonOK:hover {
        background: #BB1F35;
    }

    .formpedidonumber {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 90px;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
        text-align: center;
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .formularioprecios input[type="number"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 40%;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .formularioprecios input[type="number"]::-webkit-outer-spin-button,
    .formularioprecios input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .formulario input[type="text"],
    .formulario input[type="number"],
    .formulario input[type="email"],
    .formulario input[type="password"],
    .formulario input[type="label"],
    .formulario select[id="pais"],
    .formulario select[id="sector"],
    .formulario select[id="actividad"],
    .formulario select[id="id_especialidad"],
    .formulario select[id="tipoprod"],
    .formulario select[id="id_unimedpeso"],
    .formulario select[id="id_fam"],
    .formulario select[id="id_subfam"],
    .formulario select[id="li"],
    .formulario textarea {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 16px;
        width: 100%;
        display: block;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .formulario input[type="date"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        width: 110px;
        font-size: 18px;
        color: #141938;
    }

    .formulario input[type="date"]:focus {
        border: 2px solid #595959;
    }

    .formulario input[type="text"],
    .formulario input[type="date"],
    .formulario input[type="time"],
    .formulario input[type="number"],
    .formulario input[type="email"],
    .formulario input[type="password"],
    .formulario input[type="label"],
    .formulario select[id="tipo"],
    .formulario select[id="fam"],
    .formulario select[id="subfam"],
    .formulario textarea {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 16px;
        width: 100%;
        display: block;
        margin-bottom: 20px;
        font-size: 1em;
        color: #141938;
    }

    .formulario input[type="text"]:focus,
    .formulario input[type="date"]:focus,
    .formulario input[type="time"]:focus,
    .formulario input[type="number"],
    .formulario input[type="email"]:focus,
    .formulario input[type="password"]:focus,
    .formulario select[id="tipo"]:focus,
    .formulario select[id="fam"]:focus,
    .formulario select[id="subfam"]:focus,
    .formulario textarea:focus {
        border: 2px solid #595959;
        padding: 15px;
    }

    .formulario input[type="email"]:focus,
    .formulario input[type="password"]:focus,
    .formulario select[id="pais"]:focus,
    .formulario select[id="sector"]:focus,
    .formulario select[id="actividad"]:focus,
    .formulario select[id="tipoprod"]:focus,
    .formulario select[id="id_unimedpeso"]:focus,
    .formulario select[id="id_fam"]:focus,
    .formulario select[id="id_subfam"]:focus,
    .formulario textarea:focus {
        border: 2px solid #595959;
        padding: 15px;
    }

    .formulario textarea {
        max-width: 100%;
        min-width: 100%;
        min-height: 100px;
    }

    .formulario input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formulario input[type="submit"]:hover {
        background: #BB1F35;
    }

    .formbusca input {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 10px;
        width: 78%;
        display: inline-block;
        margin-bottom: 8px;
        font-size: 14px;
        color: #141938;
    }

    .formbusca select {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 10px;
        width: 100%;
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        color: #141938;
    }

    .formbusca input:focus,
    .formbusca select:focus {
        border: 2px solid #595959;
        padding: 4px;
    }

    .formulario textarea {
        max-width: 100%;
        min-width: 100%;
        min-height: 100px;
    }

    .formulario input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formulario input[type="submit"]:hover {
        background: #BB1F35;
    }

    .larger {
        width: 10px;
        height: 10px;
        transform: scale(1.5);
        margin: 10px;
    }

    .pequer {
        width: 10px;
        height: 10px;
        transform: scale(1);
        margin: 2px;
    }

    .iconselecc {
        padding: 10px;
        text-align: center;
        width: 48px;
        height: 40px;
        max-height: 40px;
        font-size: 18px;
        line-height: 18px;
        background: #6495ED;
        display: inline-block;
        color: white;
        vertical-align: bottom;
        border-radius: 18px 18px 18px 18px;
    }

    .iconselecc:hover {
        cursor: pointer;
    }

    .iconsbusca {
        padding: 10px;
        text-align: center;
        width: 48px;
        max-height: 48px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 0 0 3px;
    }

    .iconslogin {
        padding: 19px;
        text-align: center;
        width: 48px;
        max-height: 48px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 0 0 3px;
    }

    .iconspwr {
        padding: 10px;
        text-align: center;
        width: 30px;
        max-height: 30px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 3px 3px 3px;
    }

    .iconsalta {
        padding: 4px;
        text-align: center;
        width: 18px;
        max-height: 24px;
        font-size: 10px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        border-radius: 3px 0 0 3px;
    }

    .iconsup {
        padding: 4px;
        text-align: center;
        width: 18px;
        max-height: 24px;
        font-size: 10px;
        line-height: 18px;
        background: white;
        display: inline-block;
        color: black;
        vertical-align: top;
        border-radius: 3px 0 0 3px;
    }

    .errores {
        text-align: center;
        color: red;
    }

    .btnofecha {
        vertical-align: top;
        width: 22px;
        height: 22px;
        background: #BB1F35;
        color: #fff;
        font-size: 1em;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .btnofecha:hover {
        background: #333333;
    }

    .gridcontenedora {
        width: 100%;
        display: list-item;
    }

    .gridvacaciones {
        vertical-align: top;
        width: 100%;
        display: inline-block;
        margin-left: 2px;
        border: 1px solid #595959;
    }

    .gridhorarios {
        vertical-align: top;
        width: 100%;
        display: inline-block;
        border: 1px solid #595959;
    }

    .griddias {
        vertical-align: top;
        width: 100%;
        display: inline-block;
    }

    .gridhoras {
        vertical-align: top;
        width: 100%;
        display: inline-block;
    }

    .lineavacas {
        display: inline-block;
        vertical-align: top;
        list-style: none;
        width: 100%;
        margin: auto;
        padding: 3px;
    }

    .ulvac1 {
        margin-left: 10px;
        margin-right: 2px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac1 {
        width: 194px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        margin-left: 12px;
    }

    .livac4 {
        width: 200px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .ulvac2 {
        width: 210px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac2 {
        width: 70px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac3 {
        width: 110px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        height: 30px;
        text-align: center;
    }

    .lblvac {
        width: 80px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .lblvac2 {
        width: 40px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .btvac {
        width: 16px;
        height: 18px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .btaddvac {
        width: 26px;
        height: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 14px;
    }

    .livacas {
        vertical-align: top;
        list-style: none;
        width: 100%;
        display: inline-table;
        visibility: visible;
        margin-right: 0px;
        font-size: 0.8em;
    }

    .lidias {
        vertical-align: top;
        list-style: none;
        width: 13%;
        display: inline-block;
    }

    .labeldias {
        vertical-align: top;
        margin-left: 2px;
        color: red;
    }

    .horas {
        visibility: collapse;
        margin-left: 4px;
        width: 58px;
    }

    .legend {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 12px;
        vertical-align: top;
        width: 90%;
        display: inline-block;
        margin-left: 10px;
    }

    .lineasdias {
        margin-bottom: 2px;
        margin-top: 4px;
        font-size: 14px;
        vertical-align: top;
        width: 90%;
        display: inline-block;
    }

    .legend2 {
        text-align: left;
        vertical-align: bottom;
        height: 18px;
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 18px;
    }

    .grupo {
        width: 100%;
        margin-left: 6px;
    }

    .divlin {
        list-style: none;
        width: 33%;
        display: inline-block;
        padding-top: 20px;
    }

    .divmnulateral {
        list-style: none;
        width: 100%;
        display: inline-block;
        padding-top: 20px;
    }

    .checks {
        margin-left: 4px;
    }

    .idcsslin {
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 6px;
        font-size: 14px;
        color: red;
    }

    .buscarprod {
        width: 90%;
        margin-left: 5%;
        margin-bottom: 10px;
        display: none;
        visibility: hidden;
    }

    #cualbusca {
        width: 90%;
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 14px;
        color: #141938;
        font-weight: bolder;
    }

    #verproductos {
        width: 100%;
        list-style: none;
        display: none;
        vertical-align: top;
    }

    #myBtn {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Fixed/sticky position */
        bottom: 56px;
        /* Place the button at the bottom of the page */
        left: 30px;
        /* Place the button 30px from the right */
        z-index: 99998;
        /* Make sure it does not overlap */
        border: none;
        /* Remove borders */
        outline: none;
        /* Remove outline */
        background-color: #BB1F35;
        /* Set a background color */
        color: white;
        /* Text color */
        cursor: pointer;
        /* Add a mouse pointer on hover */
        padding-top: 10px;
        /* Some padding */
        padding-bottom: 10px;
        padding-right: 14px;
        padding-left: 14px;
        border-radius: 8px;
        /* Rounded corners */
        font-size: 18px;
        /* Increase font size */
    }

    #myBtn:hover {
        background-color: white;
        /* Add a dark-grey background on hover */
        color: #BB1F35;
        border-style: solid;
        border-width: 1px;
        border-color: #BB1F35;
    }

    #myBtndwn {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Fixed/sticky position */
        top: 80px;
        /* Place the button at the bottom of the page */
        right: 30px;
        /* Place the button 30px from the right */
        z-index: 99999;
        /* Make sure it does not overlap */
        border: none;
        /* Remove borders */
        outline: none;
        /* Remove outline */
        background-color: #BB1F35;
        /* Set a background color */
        color: white;
        /* Text color */
        cursor: pointer;
        /* Add a mouse pointer on hover */
        padding-top: 10px;
        /* Some padding */
        padding-bottom: 10px;
        padding-right: 14px;
        padding-left: 14px;
        border-radius: 8px;
        /* Rounded corners */
        font-size: 18px;
        /* Increase font size */
    }

    #myBtndwn:hover {
        background-color: white;
        /* Add a dark-grey background on hover */
        color: #BB1F35;
        border-style: solid;
        border-width: 1px;
        border-color: #BB1F35;
    }


    footer {
        background: #BB1F35;
        color: #fff;
        width: 100%;
        height: 50px;
        vertical-align: bottom;
        font-size: 9px;
        position: fixed;
        margin-bottom: 0px;
        bottom: 0px;
        background-color: #BB1F35
    }

    footer .copyright {
        text-align: center;
        font-size: 9px;
        padding: 8px 0;
    }
}

/* ─── styles_media_computer.css ─────────────────────────────────────────────── */
@media screen and (min-width: 1025px) and (max-width: 1280px) {

    /* 
  ##Device = Most of the Smartphones Mobiles (Portrait) 
  ##Screen = B/w 320px to 479px


screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape)

*/
    .txtindex {
        font-size: 20px;
    }

    .imgindex {
        width: 50%;
    }

    .boxtxtdescres {
        width: 100%;
        height: 110px;
        list-style: none;
        text-align: center;
        vertical-align: top;
        display: inline-block;
        padding-top: 8px;
        padding-bottom: 4px;
        opacity: 100%;
        white-space: normal;
    }

    .divindex {
        margin-right: 1%;
        width: 24%;
        display: inline-block;
        vertical-align: top;
    }

    .divtext {
        width: 40%;
        text-align: center;
        display: inline-block;
        vertical-align: top;
    }

    .divcss {
        width: 40%;
        display: inline-block;
        vertical-align: top;
    }


    .headlogoecro {
        display: flex;
        align-items: flex-start;

    }

    .logoecro {
        color: white;
        margin-top: 0px;
        width: 40px;
        height: 38px;
        animation: rotarY 2s ease-in-out forwards;
        transform-style: preserve-3d;
    }

    .texteencarrego {
        margin-left: 4px;
        margin-top: -2;
        font-size: 24px;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 1s ease-out forwards;
        animation-delay: 1s;
        text-align: left;
        vertical-align: top;
        padding-top: 0px;
    }

    .textelangline {
        width: 100px;
        margin-top: -10px;
        margin-left: 4px;
        font-size: 6px;
        font-weight: normal;
        font-style: italic;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 4s ease-out forwards;
        animation-delay: 1s;
        text-align: left;
    }

    .textecmdonline {
        width: 100px;
        margin-top: 0px;
        margin-left: 90px;
        font-size: 8px;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 2s ease-out forwards;
        animation-delay: 2s;
        text-align: left;
    }

    @keyframes rotarY {
        from {
            transform: rotateY(0deg);
        }

        to {
            transform: rotateY(360deg);
        }
    }

    @keyframes aparecerTexto {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    #nombreusuario {
        width: 96%;
        max-width: 360px;
    }

    #telefonopagador {
        width: 96%;
        max-width: 360px;
    }

    #correousuario {
        width: 96%;
        max-width: 360px;
    }

    .mensajereserva {
        min-width: 390px;
        max-width: 390px;
        width: 100%;
        box-sizing: border-box;

    }


    #elticket {
        margin-left: 30%;
        width: 490px;
        list-style:
            none;
        display: inline-block;
        vertical-align: top;
        padding: 6px;
        padding-top: 16px;
    }

    #seccioncookie {
        font-size: 12px;

    }

    div.centeredconsola {
        position: fixed;
        top: 10px;
        left: 10px;
        transform: translate(-50%, -50%);
    }

    div.centered {
        position: fixed;
        top: 10px;
        left: 10px;
        transform: translate(-50%, -50%);
    }

    .selectdia {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .selectdia:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    #diaservicio {
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 1.2em;
        color: #141938;
        font-weight: bolder;
    }

    * {
        margin: 0;
        padding: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    body {
        width: 100%;
        margin: 0px;

    }

    a {
        text-decoration: none;
        color: #BB1F35;
    }

    a:hover {
        text-decoration: none;
        color: #2f6d84;
    }

    .txtlincompra {
        text-align: center;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 16px;
    }




    .txtentrelasylas {
        color: #000000;
        padding-bottom: 2px;
        width: 100%;
        font-size: 10px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .lahoraserv {
        width: 100px;
        font-size: 1em;
        border-color: grey;
        margin-left: 8px;
        margin-right: 8px;
        margin-top: 8px;
        border-style: solid;
        border-width: 1px;
        text-align: center;
        border-radius: 4px 4px 4px 4px;
        -webkit-datetime-edit: : -webkit-datetime-edit-fields-wrapper:: -webkit-datetime-edit-text:: -webkit-datetime-edit-month-field:: -webkit-datetime-edit-day-field:: -webkit-datetime-edit-year-field:: -webkit-inner-spin-button:: -webkit-calendar-picker-indicator;
        padding: 6px;
        font-size: 18px;
        font-weight: bold;
        color: blue;
    }


    .txtindique {
        margin: auto;
        width: 90%;
        text-align: center;
        margin-bottom: 8px;
        font-size: 10px;
    }


    .ullinprods {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        height: 22px;
    }


    .cabetick0 {
        margin-left: 4px;
    }

    .cabetick {
        margin-left: 4px;
    }

    .cabetick10 {
        margin-left: 10px;
    }

    .txtlinprods {
        font-size: 16px;
    }


    .linprods1 {

        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        background: red;
        padding: 4px;
        width: 100%;
        display: inline-block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 16px;

    }


    .linprods2 {
        border: 0px solid #A8A8A8;
        text-align: left;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 16px;
    }


    .linprods3 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        background: red;
        padding: 4px;
        width: 80%;
        display: inline-block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 16px;

    }


    .linprods4 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 16px;

    }


    .linprods5 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 16px;

    }

    .ullindata {
        list-style: none;
        width: 49.6%;
        display: inline-block;
        vertical-align: top;
    }

    .ullindatad {
        list-style: none;
        padding-left: 8px;
        width: 49.6%;
        display: none;
        visibility: hidden;
        vertical-align: top;
    }


    #frmcondiciones {
        list-style: none;
        width: 55%;
        vertical-align: top;
        margin: 0px;
        padding: 0px;
    }


    #libotonOK {
        margin-bottom: 60px;
        list-style: none;
        width: 34%;
        vertical-align: bottom;
    }

    .txtselec {
        color: #000000;
        margin-top: 6px;
        padding-top: 2px;
        width: 100%;
        font-size: 14px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }

    .txtgustosa {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 90%;
        margin-left: 5%;
        font-size: 12px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: justify;
    }


    .txtservdomi {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 50.5%;
        font-size: 12px;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        text-align: center;
    }

    .txtservdomi2 {
        text-align: left;
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 45%;
        list-style: none;
        display: inline-block;
    }

    .pobserv {

        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 1.2em;
        color: #141938;
        font-weight: bolder;

    }

    .txtmnuclient {
        list-style: none;
        width: 10%;
        display: inline-block;
        vertical-align: top;
        text-align: right;
    }

    .linkmnucli {
        text-align: right;
        padding-top: 8px;
        padding-left: 10px;
        vertical-align: middle;
    }

    .linkmnucli :hover {
        text-align: right;
        padding-top: 8px;
        padding-left: 10px;
        vertical-align: middle;
    }


    h1 {
        font-weight: normal;
        font-size: 22px;
        text-align: justify;
    }

    h2 {
        font-weight: normal;
        font-size: 20px;
        text-align: justify;
    }

    h3 {
        font-weight: normal;
        font-size: 18px;
        text-align: justify;
    }

    h4 {
        font-weight: normal;
        font-size: 16px;
        text-align: justify;
    }

    h5 {
        font-weight: normal;
        font-size: 14px;
        text-align: justify;
    }

    header {
        color: white;
        margin-top: 0px;
        margin-bottom: 10px;
        background: #BB1F35;
        font-size: 14px;
    }

    header .contenedor {
        overflow: hidden;
        margin-top: 0px;
    }

    header .logo {
        max-width: 300px;
        margin-left: 0px;
        margin-top: 4px;
        height: 28px;
    }

    header .logo a {
        color: #fff;
        font-size: 28px;
        line-height: 28px;
    }

    header .logo a:hover {
        text-decoration: none;
    }

    .imglogo {
        width: 70%;
        margin-left: 15%;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }


    .lilogocli {
        width: 30%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }


    .lilogoclim {
        width: 50%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }


    .nombrepob {
        width: 100%;
        font-size: 14px;
        font-weight: bolder;

        text-align: center;
    }

    .nombre {
        width: 100%;
        font-size: 16px;
        font-weight: bolder;

        text-align: center;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }


    .logopedido {
        height: 140px;
        border: 1px solid grey;
        border-radius: 4px;
        vertical-align: top;
    }

    .txtulindex {
        width: 96%;
        margin-left: 2%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .divcss {
        width: 94%;
        margin: auto;
    }

    .enlang {
        list-style: none;
        font-size: 0.8em;
        margin-left: 140px;
        min-width: 180px;
        vertical-align: bottom;
        line-height: 8px;
    }

    #navbar {
        position: fixed;
        top: 0px;
        width: 100%;
        display: block;
        transition: top 0.3s;
        z-index: 9991;
        height: 58px;
    }

    #navfot {
        position: fixed;
        bottom: -70px;
        width: 100%;
        display: block;
        transition: bottom 0.3s;
        z-index: 9992;
    }


    .alang {
        width: 100%;
        text-decoration: none;
        text-align: right;
        font-size: 10px;
        color: #fff;
        margin-top: 2px;
        margin-right: 4px;
    }

    .alang :hover {
        text-decoration: none;
        color: #fff;
    }


    .linktaf {
        text-decoration: none;
        color: #2f6d84;
        width: 100%;
    }

    .linktaf:hover {
        text-decoration: none;
        color: #BB1F35;
        width: 100%;
    }

    .login2 a {
        float: right;
        text-decoration: none;
        color: white;
        width: 100%;
        font-size: 10px;
    }

    .login2 a:hover {
        text-decoration: underline;
    }

    .iconstipo a {
        text-decoration: none;
        color: white;
    }

    .iconstipo a:hover {
        font-style: italic;
    }

    .primercontenedor {
        width: 99%;
        margin: 2px;
        margin-top: 60px;
    }

    .contenedormenu {
        width: 90%;
        margin-left: 5%;
    }

    .contenedor {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .contenedorbt {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .contenedorpeds {
        width: 90%;
        margin-top: 12px;
        margin-left: 5%;
        padding: 12px;
    }

    .lblfechapanel {
        text-align: center;
        margin-top: 8px;
        font-size: 12px;
        vertical-align: middle;

        padding-left: 2px;
        padding-top: 2px;
        color: black;
        cursor: pointer;
    }

    .divfechapanel {
        position: fixed;
        right: 2px;
        top: 0;
        list-style: none;
        display: inline-block;
        width: 80px;
        height: 13px;
        font-size: 14px;
        vertical-align: top;
        text-align: center;
        background-color: white;
        border-style: none;
        border-radius: 4px;
        border-width: 1px;
        margin-top: 10px;
        z-index: 99980;
    }

    .divfechapanel2 {
        position: fixed;
        right: 0px;
        top: 0;
        list-style: none;
        display: inline-flex;
        width: 80px;
        height: 20px;
        vertical-align: top;
        text-align: center;
        cursor: pointer;
        font-size: 12px;
        z-index: 99981;
    }

    .divfechas {
        position: fixed;
        right: 0px;
        top: 20px;
        list-style: none;
        display: inline-block;
        width: 84px;
        vertical-align: top;
        text-align: left;
        background-color: white;
        border-style: solid;
        border-radius: 4px;
        border-color: white;
        border-width: 1px;
    }


    .divfechapanel3 {
        position: fixed;
        right: 0px;
        top: 22px;
        display: inline-block;
        width: 80px;
        vertical-align: top;
        text-align: left;
    }


    #hojapedido {
        width: 90%;
        margin-left: 5%;
        margin-top: 30px;
        padding: 12px;

        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-bottom: 30px;
    }

    .izquierda {

        float: left;
    }

    .derecha {
        float: right;
        margin-bottom: 4px;
        margin-right: 4px;
    }

    .centro {
        float: left;
        width: 40%;
        list-style: none;
        font-size: 2em;
        vertical-align: top;
    }


    .post {
        width: 97%;
        margin-left: 1.5%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);

        margin-bottom: 30px;
        padding: 30px;
    }

    .unidadesventa {
        font-size: 12px;
    }

    .btconsola {
        width: 96%;
        height: 100%;
        list-style: none;
        display: inline-block;
        color: black;
        margin-left: 2%;
        margin-right: 2%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 50px;
        min-height: 60px;
        text-align: center;
        font-size: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;
        padding-top: 12px;
    }

    .btconsolados {
        width: 96%;
        height: 100%;
        list-style: none;
        display: inline-block;
        color: black;
        margin-left: 2%;
        margin-right: 2%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 10px;
        min-height: 60px;
        text-align: center;
        font-size: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;
        padding-top: 15px;
    }

    .btconsola6 {
        width: 96%;
        height: 100%;
        list-style: none;
        display: inline-block;
        color: black;
        margin-left: 2%;
        margin-right: 2%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 10px;
        min-height: 60px;
        text-align: center;
        font-size: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;
        padding-top: 10px;
    }


    .ulnoves {
        width: 100%;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
        margin-top: 0px;
        background-color: #EF82A1;
    }

    .lesnoves {
        width: 14%;
        top: 2px;
        left: 2px;
        border-style: solid;
        border-radius: 24px;
        border-width: 1px;
        background-color: #FFFFFF;
    }

    .postlogin {
        width: 40%;
        margin-left: 30%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);

        margin-bottom: 0px;
        padding: 30px;
    }

    .postpedido {
        width: 99%;
        margin-left: 0.5%;
        padding-top: 8px;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        width: 100%;
        list-style: none;
        padding: 8px;
        margin-bottom: 10px;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
    }

    .txtnomenficha {
        color: #666666;
        width: 59%;
        font-size: 28px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }


    .ulizquierda {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .ulcabped {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .ulderechag {
        width: 60%;
        margin-left: 39%;
        margin-top: 24px;
        vertical-align: top;
        list-style: none;
        display: inline-block;
        text-align: left;
        font-size: 10px;
    }

    .ulderechano {
        display: none;
    }

    .ulderecha {
        text-align: left;
        padding-left: 3px;
        margin-top: 120px;
        margin-left: 4%;
        width: 14%;
        background-color: white;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .marqueei {
        padding-bottom: 8px;
        width: 58%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        margin-left: 10px;
        margin-top: 10px;
    }

    .postpedido {
        width: 99%;
        margin-left: 0.5%;
        padding-top: 8px;
        width: 100%;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
    }

    .login {
        float: right;
        text-decoration: none;
        color: white;
        font-size: 10px
    }

    .login:hover {
        text-decoration: underline;
        font-size: 10px
    }



    .btn {
        padding: 15px;
        display: inline-block;
        margin: 15px 0;
        background: #595959;
        color: #fff;
        font-size: 1em;
        border-radius: 2px;
        border: none;
    }

    .btn:hover {
        text-decoration: none;
        background: #BB1F35;
    }

    .botobusca {
        margin-right: 12px;
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 1em;
        border-radius: 2px;
        border: none;
    }

    .botobusca:hover {
        text-decoration: none;
        background: #BB1F35;
    }

    .btnwprodn {
        margin-right: 12px;
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 1em;
        border-radius: 2px;
        border: none;
    }

    .btnwprodn:hover {
        text-decoration: none;
        background: #BB1F35;
    }


    .botoenter {
        color: rgba(255, 255, 255, .7);
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        font-size: 16px;
        line-height: 16px;
    }

    .botoenter:hover {
        color: #fff;
    }

    .botoenter {
        color: rgba(255, 255, 255, .7);
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        font-size: 16px;
        line-height: 16px;
    }

    .botoenter:hover {
        color: #fff;
    }

    .icomenu {
        color: #666666;
        text-align: left;
        padding-bottom: 8px;
        font-size: 2em;
        list-style: none;
        vertical-align: top;
        cursor: pointer;
        margin-left: 14px;
    }


    .txticomenu {
        text-align: left;
        display: inline-block;
        visibility: visible;
        font-size: 24px;
        padding-top: 6px;
        list-style: none;
        vertical-align: top;
        text-align: left;
        color: #666666;
        cursor: pointer;
    }


    .txticobak {
        color: #666666;
        padding-bottom: 8px;
        width: 6%;
        font-size: 16px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        text-align: right;
    }

    .txticobak2 {
        color: #666666;
        padding-bottom: 8px;
        width: 10%;
        font-size: 16px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        text-align: right;
    }

    .txttitulo {
        width: 100%;
        font-size: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        margin-left: 4px;
    }

    .txticobk {
        color: #666666;
        width: 8%;
        font-size: 12px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: right;
        cursor: pointer;
        left: 0px;
    }

    .txtcarta {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: right;
        font-size: 14px;
        padding-bottom: 4px;
    }

    .txtmanual {
        width: 100%;
        margin-bottom: 20px;
        list-style: none;
        display: inline-block;
        vertical-align: bottom;
        text-align: center;
        opacity: 80%;
    }

    .txtmnuclient {
        list-style: none;
        width: 20%;
        display: inline-block;
        vertical-align: middle;
        text-align: center;
        font-size: 14px;
    }

    .linkmnucli {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }

    .linkmnucli :hover {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }


    .linkcarta {
        width: 100%;
        text-align: center;
        padding-top: 2px;
        vertical-align: middle;
        font-size: 14px;
    }

    .linkcarta :hover {
        width: 100%;
        text-align: center;
        padding-top: 2px;
        vertical-align: middle;
        font-size: 14px;
    }


    .classli {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
    }

    .txtstrneon {
        width: 70%;
        padding-top: 4px;
        margin-left: 10px;
        margin-right: 10px;
        font-size: 18px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        color: #000000;
    }

    .txtdescartac {
        width: 10%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
    }

    .txtdescarta {
        width: 23%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        padding-left: 3px;
    }

    .txtdescarta2 {
        width: 28%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;

    }

    .txtdescartai {
        width: 12%;
        list-style: none;
        display: inline-block;
        vertical-align: bottom;
        font-size: 12px;
        text-align: right;

    }

    .txtporenc {
        width: 2%;
        list-style: none;
        font-weight: bold;
        color: blue;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
        font-weight: bolder;
    }

    .txtvegeta {
        width: 1%;
        list-style: none;
        font-weight: bold;
        color: green;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
        font-weight: bolder;
    }

    .txtaquien {
        list-style: none;
        width: 45%;
        display: inline-block;
        vertical-align: top;

    }

    .txtselycon {
        list-style: none;
        width: 20%;
        display: inline-block;
        vertical-align: top;
        padding-top: 8px;

    }

    .txtsineces {
        list-style: none;
        width: 50%;
        display: inline-block;
        vertical-align: top;
    }

    .hazclickanun {
        list-style: none;
        width: 56%;
        display: inline-block;
        vertical-align: top;
        text-align: center;

    }

    .txtresultados {
        list-style: none;
        width: 100%;
        display: inline-block;
        vertical-align: bottom;
        text-align: right;
    }

    .postprods {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        background: #fff;
        border-color: grey;
        border-style: solid;
        border-width: 1px;
        text-align: center;
        border-radius: 4px 4px 4px 4px;
        margin-bottom: 6px;
        padding: 8px;
        appearance: textfield;
    }

    .postprods input[type="number"]::-webkit-outer-spin-button,
    .postprods input[type="number"]::-webkit-inner-spin-button {
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .postprodsencargo {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        background: #fff;
        border-radius: 12px;
        margin-bottom: 6px;
        margin-left: 6px;
        padding: 4px;
    }

    .postprodsencargo input[type="number"]::-webkit-outer-spin-button,
    .postprodsencargo input[type="number"]::-webkit-inner-spin-button {
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .postprodsweb {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-bottom: 14px;
        padding: 14px;
    }

    .postprodsweb input[type="number"]::-webkit-outer-spin-button,
    .postprodsweb input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .txtprodsel {
        margin: 0px;
        padding: 0px;
        width: 49%;
        text-align: left;
        vertical-align: top;
        vertical-align: bottom;
        opacity: 80%;
        margin: 0px;
        padding: 0px;
        font-size: 12px;
    }

    .txtnumlinpeds {
        vertical-align: top;
        opacity: 80%;
        width: 20%;
        font-size: 10px;
    }

    .txtwebcodi {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;

    }

    .txtweb {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-top: 6px;
        padding-left: 4px;
    }

    .txtwebp {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-top: 6px;
        background-color: #f4f4f4;
        border-radius: 4px;
        padding: 2px;
    }

    .contenedorclientes {
        list-style: none;
        padding-right: 4px;
        width: 18.5%;
        height: 400px;
        min-height: 400px;
        max-height: 400px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    .txtcatalog {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
        margin-bottom: 16px;
    }

    .contenedormenucliente {
        list-style: none;
        padding-right: 4px;
        width: 18.7%;
        height: 340px;
        min-height: 340px;
        max-height: 340px;
        display: inline-block;
        vertical-align: top;
        overflow: hidden;
        margin-top: 10px;
        margin-bottom: 30px;
        margin-left: 1%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    .contenedorproductos {
        list-style: none;
        padding-right: 4px;
        width: 18.7%;
        height: 420px;
        min-height: 420px;
        max-height: 420px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .contenedorproductosweb {
        list-style: none;
        padding-right: 2px;
        width: 18.7%;
        height: 600px;
        min-height: 600px;
        max-height: 600px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    .txticommi {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: bottom;
        cursor: pointer;
        font-size: 2.5em;
        padding-left: 8px;
        padding-bottom: 2px;
        margin-top: 6px;
    }


    .txticommd {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: bottom;
        cursor: pointer;
        font-size: 2.5em;
        padding-left: 8px;
        padding-bottom: 2px;
        margin-top: 6px;
    }


    .contenedorproductosencargo {
        list-style: none;
        padding-right: 2px;
        width: 18.6%;
        height: 460px;
        min-height: 460px;
        max-height: 460px;
        display: inline-block;
        vertical-align: top;
        padding-bottom: 8px;
        margin-bottom: 24px;
        margin-right: 1%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .postencargo {
        width: 100%;
        height: 460px;
        min-height: 460px;
        max-height: 460px;
    }

    .postweb {
        width: 100%;
        height: 326px;
        min-height: 326px;
        max-height: 326px;
    }

    .postlimarcoimgweb {
        width: 98%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        margin-left: 1%;
        max-height: 210px;
    }

    .marcoimgweb {
        width: 98%;
        margin-left: 1%;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .imgweb {
        width: 100%;
        max-height: 202px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }


    .imgwebcliente {
        width: 100%;
        max-height: 180px;
        min-width: 180px;
        max-width: 180px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .imgcliweb {
        width: 100%;
        max-height: 210px;

        list-style: none;
        display: inline-block;
        vertical-align: top;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .postmenucliente {
        width: 100%;
        list-style: none;
        display: inline-block;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-bottom: 30px;
        padding: 10px;
    }


    /* --- Paginacion --- */

    .paginacion {
        margin-bottom: 10px;
    }

    .paginacion ul {
        list-style: none;
        text-align: center;
    }

    .paginacion ul li {
        display: inline-block;
        margin: 0 5px;
        color: #fff;
    }

    .paginacion ul li a {
        display: block;
        padding: 10px 20px;
        background: #595959;
        color: #fff;
    }

    .paginacion ul li a:hover {
        background: #BB1F35;
        text-decoration: none;
    }

    .paginacion ul .active {
        background: #BB1F35;
        padding: 10px 20px;
    }

    .paginacion ul .disabled {
        background: #a8a8a8;
        padding: 10px 20px;
        cursor: not-allowed;
    }

    .paginacion ul .disabled:hover {
        background: #a8a8a8;
    }

    .legend {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 14px;
    }

    .legendT {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 16px;
        text-align: center;
        vertical-align: middle;
    }

    .legend2 {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 12px;
    }

    .formulario input[type="number"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 4px;
        width: 90px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #141938;
    }

    .btgrabap {
        padding: 2px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 90px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .btborrap {
        padding: 4px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 90px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .btgrabap:hover {
        background: #BB1F35;
    }

    .btborrap:hover {
        background: #BB1F35;
    }

    .btborrap {
        padding: 8px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 70px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnquita {
        padding: 6px;
        background: #595959;
        color: #fff;
        font-size: 16px;
        width: 16px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnquita:hover {
        background: #BB1F35;
    }

    #btadd {
        padding-top: 22px;
        padding-left: 1px;
        padding-bottom: 20px;
        vertical-align: bottom;
        background: #595959;
        margin-top: 22px;
        color: white;
        font-size: 16px;
        text-align: center;
        width: 28px;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    #btadd:hover {
        background: #BB1F35;
    }

    #botonnws {
        margin-left: 4px;
        background: #595959;
        vertical-align: top;
        color: #fff;
        font-size: 16px;
        width: 70px;
        border-radius: 4px;
        border: none;
        cursor: pointer;
    }

    #botonnws:hover {
        background: #BB1F35;
    }

    .botonnwp {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 180px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnwp:hover {
        background: #BB1F35;
    }


    .botonnwd {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 180px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnwd:hover {
        background: #BB1F35;
    }

    .postbuscacli {
        display: inline-block;
        list-style: none;
        width: 31%;
        margin-left: 6px;
        margin-bottom: 6px;
        padding: 3px;
        border-radius: 6px;
        border: solid;
        border-width: 1px;
        cursor: pointer;
        border-color: #999999;
    }


    .iddirenvid {
        width: 48%;
        margin-left: 6px;
        padding: 3px;
        display: inline-block;
        list-style: none;
    }


    .botototalista {
        padding: 5px;
        background: #7782ad;
        color: #fff;
        font-size: 12px;
        width: calc(100% - 8px);
        margin: 0 4px;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .botototalista:hover {
        background: #BB1F35;
    }

    .botoeliminar:hover {
        background: #fff;
        color: #7782ad;
    }

    .botototalista2 {
        padding: 5px;
        background: #7782ad;
        color: #fff;
        font-size: 12px;
        width: 100%;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .botototalista2:hover {
        background: #BB1F35;
    }


    /* --- Formularios --- */

    .formularioprecios {
        width: 100%;
        overflow: hidden;
    }

    .formulario {
        width: 100%;
        overflow: hidden;
    }

    .newpassword {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 4px;
        width: 60%;
        display: inline-block;
        margin-bottom: 4px;
        font-size: 12px;
        color: #141938;
    }

    #elorden {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 20%;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #elorden:focus {
        border: 1px solid #595959;
        padding: 6px;
    }

    #seleccuales {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 240px;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #seleccuales:focus {
        border: 1px solid #595959;
        padding: 6px;
    }

    #frmunidadesventa {
        margin-top: 4px;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #frmunidadesventa:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    .frmunidadesventa {
        margin-top: 4px;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 2px;
        font-size: 18px;
        color: #141938;
        text-align: center;
    }

    .frmunidadesventa:focus {
        border: 2px solid #595959;
    }

    #frmformatoventa {
        vertical-align: top;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 86%;
        margin-top: 6px;
        font-size: 18px;
        color: #141938;
    }

    #frmformatoventa:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    #frmimporte {
        vertical-align: top;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 40%;
        font-size: 18px;
        color: #141938;
    }

    #frmimporte {
        border: 2px solid #595959;
        padding: 10px;
        -moz-appearance: textfield;
    }

    .formpedido input[type="text"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formpedido input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .fechaservicio {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 2px;
        width: 120px;
        font-size: 14px;
        color: #141938;
    }

    .formpedido input[type="submit"]:hover {
        background: #BB1F35;
    }

    .numenfoto {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }


    .botonOK {
        padding: 15px;
        margin-top: 60px;
        margin-right: 10%;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 80%;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonOK:hover {
        background: #BB1F35;
    }

    .formpedidonumber {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 70px;
        font-size: 18px;
        color: #141938;
        text-align: center;
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }


    .iconminus {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-right: 8px;
        padding-bottom: 2px;
        visibility: hidden;
    }

    .iconplus {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-left: 6px;
        padding-bottom: 2px;
        visibility: hidden;
    }

    .formularioprecios input[type="number"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 40%;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .formularioprecios input[type="number"]::-webkit-outer-spin-button,
    .formularioprecios input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .formulario input[type="text"],
    .formulario input[type="number"],
    .formulario input[type="email"],
    .formulario input[type="password"],
    .formulario input[type="label"],
    .formulario select[id="pais"],
    .formulario select[id="sector"],
    .formulario select[id="actividad"],
    .formulario select[id="id_especialidad"],
    .formulario select[id="tipoprod"],
    .formulario select[id="id_unimedpeso"],
    .formulario select[id="id_fam"],
    .formulario select[id="id_subfam"],
    .formulario select[id="li"],
    .formulario textarea {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 16px;
        width: 100%;
        display: block;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .formulario input[type="date"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        width: 110px;
        font-size: 18px;
        color: #141938;
    }

    .formulario input[type="date"]:focus {
        border: 2px solid #595959;
    }

    .formulario input[type="text"],
    .formulario input[type="date"],
    .formulario input[type="time"],
    .formulario input[type="number"],
    .formulario input[type="email"],
    .formulario input[type="password"],
    .formulario input[type="label"],
    .formulario select[id="tipo"],
    .formulario select[id="fam"],
    .formulario select[id="subfam"],
    .formulario textarea {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 16px;
        width: 100%;
        display: block;
        margin-bottom: 20px;
        font-size: 1em;
        color: #141938;
    }

    .formulario input[type="text"]:focus,
    .formulario input[type="date"]:focus,
    .formulario input[type="time"]:focus,
    .formulario input[type="number"],
    .formulario input[type="email"]:focus,
    .formulario input[type="password"]:focus,
    .formulario select[id="tipo"]:focus,
    .formulario select[id="fam"]:focus,
    .formulario select[id="subfam"]:focus,
    .formulario textarea:focus {
        border: 2px solid #595959;
        padding: 15px;
    }

    .formulario input[type="email"]:focus,
    .formulario input[type="password"]:focus,
    .formulario select[id="pais"]:focus,
    .formulario select[id="sector"]:focus,
    .formulario select[id="actividad"]:focus,
    .formulario select[id="tipoprod"]:focus,
    .formulario select[id="id_unimedpeso"]:focus,
    .formulario select[id="id_fam"]:focus,
    .formulario select[id="id_subfam"]:focus,
    .formulario textarea:focus {
        border: 2px solid #595959;
        padding: 15px;
    }

    .formulario textarea {
        max-width: 100%;
        min-width: 100%;
        min-height: 100px;
    }

    .formulario input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formulario input[type="submit"]:hover {
        background: #BB1F35;
    }

    .formbusca input {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 10px;
        width: 78%;
        display: inline-block;
        margin-bottom: 8px;
        font-size: 14px;
        color: #141938;
    }

    .formbusca select {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 10px;
        width: 100%;
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        color: #141938;
    }

    .formbusca input:focus,
    .formbusca select:focus {
        border: 2px solid #595959;
        padding: 4px;
    }

    .formulario textarea {
        max-width: 100%;
        min-width: 100%;
        min-height: 100px;
    }

    .formulario input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formulario input[type="submit"]:hover {
        background: #BB1F35;
    }

    .larger {
        width: 10px;
        height: 10px;
        transform: scale(1.5);
        margin: 10px;
    }

    .pequer {
        width: 10px;
        height: 10px;
        transform: scale(1);
        margin: 2px;
    }

    .iconselecc {
        padding: 10px;
        text-align: center;
        width: 48px;
        height: 40px;
        max-height: 40px;
        font-size: 18px;
        line-height: 18px;
        background: #6495ED;
        display: inline-block;
        color: white;
        vertical-align: bottom;
        border-radius: 18px 18px 18px 18px;
    }

    .iconselecc:hover {
        cursor: pointer;
    }

    .iconsbusca {
        padding: 10px;
        text-align: center;
        width: 48px;
        max-height: 48px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 0 0 3px;
    }

    .iconslogin {
        padding: 19px;
        text-align: center;
        width: 48px;
        max-height: 48px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 0 0 3px;
    }

    .iconspwr {
        padding: 10px;
        text-align: center;
        width: 30px;
        max-height: 30px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 3px 3px 3px;
    }

    .iconsalta {
        padding: 4px;
        text-align: center;
        width: 18px;
        max-height: 24px;
        font-size: 10px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        border-radius: 3px 0 0 3px;
    }

    .iconsup {
        padding: 4px;
        text-align: center;
        width: 18px;
        max-height: 24px;
        font-size: 10px;
        line-height: 18px;
        background: white;
        display: inline-block;
        color: black;
        vertical-align: top;
        border-radius: 3px 0 0 3px;
    }

    .errores {
        text-align: center;
        color: red;
    }

    .btnofecha {
        vertical-align: top;
        width: 22px;
        height: 22px;
        background: #BB1F35;
        color: #fff;
        font-size: 1em;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .btnofecha:hover {
        background: #333333;
    }

    .gridcontenedora {
        width: 100%;
        display: list-item;
    }

    .gridvacaciones {
        vertical-align: top;
        width: 100%;
        display: inline-block;
        margin-left: 2px;
        border: 1px solid #595959;
    }

    .gridhorarios {
        vertical-align: top;
        width: 100%;
        display: inline-block;
        border: 1px solid #595959;
    }

    .griddias {
        vertical-align: top;
        width: 100%;
        display: inline-block;
    }

    .gridhoras {
        vertical-align: top;
        width: 100%;
        display: inline-block;
    }

    .lineavacas {
        display: inline-block;
        vertical-align: top;
        list-style: none;
        width: 100%;
        margin: auto;
        padding: 3px;
    }

    .ulvac1 {
        margin-left: 10px;
        margin-right: 2px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac1 {
        width: 194px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        margin-left: 12px;
    }

    .livac4 {
        width: 270px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .ulvac2 {
        width: 210px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac2 {
        width: 70px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac3 {
        width: 110px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        height: 30px;
        font-size: 0.8em;
        padding-top: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        margin-left: 4px;
        text-align: center;
    }


    .livac5 {
        width: 60px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .lblvac {
        width: 80px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .lblvac2 {
        width: 40px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .btvac {
        width: 16px;
        height: 18px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .btaddvac {
        width: 26px;
        height: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 14px;
    }

    .livacas {
        vertical-align: top;
        list-style: none;
        width: 100%;
        display: inline-table;
        visibility: visible;
        margin-right: 0px;
        font-size: 0.8em;
    }

    .lidias {
        vertical-align: top;
        list-style: none;
        width: 13%;
        display: inline-block;
    }

    .labeldias {
        vertical-align: top;
        margin-left: 2px;
        color: red;
    }

    .horas {
        visibility: collapse;
        margin-left: 4px;
        width: 58px;
    }

    .legend {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 12px;
        vertical-align: top;
        width: 90%;
        display: inline-block;
        margin-left: 10px;
    }

    .lineasdias {
        margin-bottom: 2px;
        margin-top: 4px;
        font-size: 14px;
        vertical-align: top;
        width: 90%;
        display: inline-block;
    }

    .legend2 {
        text-align: left;
        vertical-align: bottom;
        height: 18px;
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 18px;
    }

    .grupo {
        width: 100%;
        margin-left: 6px;
    }

    .divlin {
        list-style: none;
        width: 33%;
        display: inline-block;
        padding-top: 20px;
    }

    .divmnulateral {
        list-style: none;
        width: 100%;
        display: inline-block;
        padding-top: 20px;
    }

    .checks {
        margin-left: 4px;
    }

    .idcsslin {
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 6px;
        font-size: 14px;
        color: red;
    }


    .buscarprod {
        width: 60%;
        margin-left: 20%;
        margin-bottom: 10px;
        color: red;
        display: none;
        visibility: hidden;
    }

    #cualbusca {
        width: 90%;
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 14px;
        color: #141938;
        font-weight: bolder
    }

    #verproductos {
        width: 100%;
        list-style: none;
        display: none;
        vertical-align: top;
    }


    #myBtn {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Fixed/sticky position */
        bottom: 56px;
        /* Place the button at the bottom of the page */
        left: 30px;
        /* Place the button 30px from the right */
        z-index: 99998;
        /* Make sure it does not overlap */
        border: none;
        /* Remove borders */
        outline: none;
        /* Remove outline */
        background-color: #BB1F35;
        /* Set a background color */
        color: white;
        /* Text color */
        cursor: pointer;
        /* Add a mouse pointer on hover */
        padding-top: 10px;
        /* Some padding */
        padding-bottom: 10px;
        padding-right: 14px;
        padding-left: 14px;
        border-radius: 8px;
        /* Rounded corners */
        font-size: 18px;
        /* Increase font size */
    }

    #myBtn:hover {
        background-color: white;
        /* Add a dark-grey background on hover */
        color: #BB1F35;
        border-style: solid;
        border-width: 1px;
        border-color: #BB1F35;
    }

    #myBtndwn {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Fixed/sticky position */
        top: 80px;
        /* Place the button at the bottom of the page */
        right: 30px;
        /* Place the button 30px from the right */
        z-index: 99999;
        /* Make sure it does not overlap */
        border: none;
        /* Remove borders */
        outline: none;
        /* Remove outline */
        background-color: #BB1F35;
        /* Set a background color */
        color: white;
        /* Text color */
        cursor: pointer;
        /* Add a mouse pointer on hover */
        padding-top: 10px;
        /* Some padding */
        padding-bottom: 10px;
        padding-right: 14px;
        padding-left: 14px;
        border-radius: 8px;
        /* Rounded corners */
        font-size: 18px;
        /* Increase font size */
    }

    #myBtndwn:hover {
        background-color: white;
        /* Add a dark-grey background on hover */
        color: #BB1F35;
        border-style: solid;
        border-width: 1px;
        border-color: #BB1F35;
    }



    .botclcnum {
        height: 48px;
        cursor: pointer;
        list-style: none;
        vertical-align: top;
        display: inline-block;
        width: 30%;
        text-align: center;
        background: red;
        padding-top: 10px;
        border-color: grey;
        border-style: solid;
        border-width: 1px;
        border-radius: 6px 6px 6px 6px;
        font-weight: bolder;
    }

    footer {
        background: #BB1F35;
        color: #fff;
        width: 100%;
        height: 50px;
        vertical-align: bottom;
        font-size: 9px;
        position: fixed;
        margin-bottom: 0px;
        bottom: 0px;
        background-color: #BB1F35
    }

    footer .copyright {
        text-align: center;
        font-size: 9px;
        padding: 8px 0;
    }
}

/* ─── styles_media_tv.css ─────────────────────────────────────────────── */
@media screen and (min-width: 1281px) {

    /* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px


screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape)

*/
    .txtindex {
        font-size: 22px;
    }

    .imgindex {
        width: 50%;
    }

    .boxtxtdescres {
        width: 100%;
        height: 110px;
        list-style: none;
        text-align: center;
        vertical-align: top;
        display: inline-block;
        padding-top: 8px;
        padding-bottom: 4px;
        opacity: 100%;
        white-space: normal;
    }


    .divindex {
        margin-right: 1%;
        width: 24%;
        display: inline-block;
        vertical-align: top;
    }

    .divtext {
        width: 60%;
        text-align: center;
        display: inline-block;
        vertical-align: top;
    }

    .divcss {
        width: 40%;
        display: inline-block;
        vertical-align: top;
    }

    .headlogoecro {
        display: flex;
        align-items: flex-start;

    }

    .logoecro {
        color: white;
        margin-top: 0px;
        width: 38px;
        height: 30px;
        animation: rotarY 2s ease-in-out forwards;
        transform-style: preserve-3d;
    }

    .texteencarrego {
        font-size: 28px;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 1s ease-out forwards;
        animation-delay: 1s;
        text-align: left;
        vertical-align: top;
        padding-top: 0px;
    }

    .textelangline {
        font-size: 8px;
        font-weight: normal;
        font-style: italic;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 4s ease-out forwards;
        animation-delay: 1s;
        text-align: left;
    }

    .textecmdonline {
        font-size: 10px;
        font-weight: bold;
        color: white;
        opacity: 0;
        transform: translateX(200px);
        animation: aparecerTexto 2s ease-out forwards;
        animation-delay: 2s;
        text-align: left;
    }

    @keyframes rotarY {
        from {
            transform: rotateY(0deg);
        }

        to {
            transform: rotateY(360deg);
        }
    }

    @keyframes aparecerTexto {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    #nombreusuario {
        width: 96%;
        max-width: 360px;
    }

    #telefonopagador {
        width: 96%;
        max-width: 360px;
    }

    #correousuario {
        width: 96%;
        max-width: 360px;
    }

    .mensajereserva {
        min-width: 390px;
        max-width: 390px;
        width: 100%;
        box-sizing: border-box;

    }


    #elticket {
        margin-left: 33%;
        width: 500px;
        list-style:
            none;
        display: inline-block;
        vertical-align: top;
        padding: 6px;
        padding-top: 16px;
    }

    #seccioncookie {
        font-size: 12px;

    }

    div.centeredconsola {
        position: fixed;
        top: 10px;
        left: 10px;
        transform: translate(-50%, -50%);
    }

    div.centered {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .selectdia {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .selectdia:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    #diaservicio {
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 1.2em;
        color: #141938;
        font-weight: bolder;
    }

    * {
        margin: 0;
        padding: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    body {
        width: 100%;
        margin: 0px;

    }

    a {
        text-decoration: none;
        color: #BB1F35;
    }

    a:hover {
        text-decoration: none;
        color: #2f6d84;
    }

    .txtlincompra {
        text-align: center;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 16px;
    }


    .txticobak {
        color: #666666;
        padding-bottom: 8px;
        width: 14%;
        font-size: 16px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
    }

    .txtentrelasylas {
        color: #000000;
        padding-bottom: 2px;
        width: 100%;
        font-size: 10px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .lahoraserv {
        width: 100px;
        font-size: 1em;
        border-color: grey;
        margin-left: 8px;
        margin-right: 8px;
        margin-top: 8px;
        border-style: solid;
        border-width: 1px;
        text-align: center;
        border-radius: 4px 4px 4px 4px;
        -webkit-datetime-edit: :-webkit-datetime-edit-fields-wrapper::-webkit-datetime-edit-text::-webkit-datetime-edit-month-field::-webkit-datetime-edit-day-field::-webkit-datetime-edit-year-field::-webkit-inner-spin-button::-webkit-calendar-picker-indicator;
        padding: 6px;
        font-size: 18px;
        font-weight: bold;
        color: blue;
    }


    .txtselec {
        color: #000000;
        margin-top: 6px;
        padding-top: 2px;
        width: 100%;
        font-size: 14px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }

    .txtgustosa {
        color: #000000;
        margin-bottom: 12px;
        margin-top: 4px;
        padding-top: 2px;
        width: 90%;
        margin-left: 5%;
        font-size: 16px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }

    .txtservdomi {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 100%;
        font-size: 9px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .txtservdomi2 {
        color: #000000;
        margin-top: 4px;
        padding-top: 2px;
        width: 100%;
        font-size: 9px;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .pobserv {

        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 1.2em;
        color: #141938;
        font-weight: bolder;

    }


    .txtindique {
        margin: auto;
        width: 90%;
        text-align: center;
        margin-bottom: 8px;
        font-size: 12px;
    }



    .ullinprods {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        height: 22px;
    }


    .cabetick0 {
        margin-left: 4px;
    }

    .cabetick {
        margin-left: 4px;
    }

    .cabetick10 {
        margin-left: 10px;
    }

    .txtlinprods {
        font-size: 12px;
    }

    .linprods1 {

        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        background: red;
        padding: 4px;
        width: 80%;
        display: inline-block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 14px;

    }


    .linprods2 {
        border: 0px solid #A8A8A8;
        text-align: left;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 14px;
    }


    .linprods3 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        background: red;
        padding: 4px;
        width: 80%;
        display: inline-block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 14px;

    }


    .linprods4 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 14px;

    }


    .linprods5 {
        border: 0px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 1px;
        background-color: #7782ad;
        border-radius: 6px;
        opacity: 70%;
        border: none;
        color: white;
        font-size: 14px;

    }

    .ullindata {
        list-style: none;
        width: 49.6%;
        display: inline-block;
        vertical-align: top;
    }

    .ullindatad {
        list-style: none;
        padding-left: 8px;
        width: 49.6%;
        display: none;
        visibility: hidden;
        vertical-align: top;
    }


    #frmcondiciones {
        list-style: none;
        width: 55%;
        vertical-align: top;
        margin: 0px;
        padding: 0px;
    }

    #libotonOK {
        margin-bottom: 60px;
        list-style: none;
        width: 34%;
        vertical-align: bottom;
    }

    .txtmnuclient {
        list-style: none;
        width: 20%;
        display: inline-block;
        vertical-align: top;
        text-align: right;
    }

    .linkmnucli {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        padding-left: 10px;
        vertical-align: middle;
    }

    .linkmnucli :hover {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }


    h1 {
        font-weight: normal;
        font-size: 22px;
        text-align: justify;
    }

    h2 {
        font-weight: normal;
        font-size: 20px;
        text-align: justify;
    }

    h3 {
        font-weight: normal;
        font-size: 18px;
        text-align: justify;
    }

    h4 {
        font-weight: normal;
        font-size: 16px;
        text-align: justify;
    }

    h5 {
        font-weight: normal;
        font-size: 14px;
        text-align: justify;
    }

    header {
        color: #fff;
        margin-top: 0px;
        margin-bottom: 10px;
        background: #BB1F35;
        font-size: 14px;
    }

    header .contenedor {
        overflow: hidden;
        margin-top: 0px;
    }

    header .logo {
        max-width: 300px;
        margin-left: 0px;
        margin-top: 4px;
        height: 28px;
    }

    header .logo a {
        color: #fff;
        font-size: 28px;
        line-height: 28px;
    }

    header .logo a:hover {
        text-decoration: none;
    }

    .imglogo {
        width: 90%;
        margin-left: 4%;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }



    .lilogocli {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }


    .lilogoclim {
        width: 50%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }


    .logopedido {
        height: 140px;
        border: 1px solid grey;
        border-radius: 4px;
        vertical-align: top;
    }

    .txtulindex {

        width: 48%;
        margin-left: 0.5%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .divcss {
        width: 94%;
        margin: auto;
    }

    .enlang {
        list-style: none;
        font-size: 0.8em;
        margin-left: 140px;
        min-width: 180px;
        vertical-align: bottom;
        line-height: 8px;
    }

    #navbar {
        position: fixed;
        top: 0px;
        width: 100%;
        display: block;
        transition: top 0.3s;
        z-index: 1001;
    }

    #navfot {
        position: fixed;
        bottom: -70px;
        width: 100%;
        display: block;
        transition: bottom 0.3s;
        z-index: 1002;
    }


    .alang {
        width: 100%;
        text-decoration: none;
        text-align: right;
        font-size: 10px;
        color: #fff;
        margin-top: 2px;
        margin-right: 4px;
    }

    .alang :hover {
        text-decoration: none;
        color: #fff;
    }


    .linktaf {
        text-decoration: none;
        color: #2f6d84;
        width: 100%;
    }

    .linktaf:hover {
        text-decoration: none;
        color: #BB1F35;
        width: 100%;
    }

    .login2 a {
        float: right;
        text-decoration: none;
        color: white;
        width: 100%;
        font-size: 10px;
    }

    .login2 a:hover {
        text-decoration: underline;
    }

    .iconstipo a {
        text-decoration: none;
        color: white;
    }

    .iconstipo a:hover {
        font-style: italic;
    }

    .primercontenedor {
        width: 90%;
        margin-left: 5%;
        margin-top: 60px;
    }

    .contenedormenu {
        width: 90%;
        margin-left: 5%;
    }

    .contenedor {
        width: 100%;

        padding: 0;

    }

    .contenedorpeds {
        width: 90%;
        margin-left: 5%;
        padding: 4px;
    }


    .lblfechapanel {
        text-align: center;
        margin-top: 8px;
        font-size: 12px;
        vertical-align: middle;

        padding-left: 2px;
        padding-top: 2px;
        color: black;
        cursor: pointer;
    }

    .divfechapanel {
        position: fixed;
        right: 2px;
        top: 0;
        list-style: none;
        display: inline-block;
        width: 80px;
        height: 13px;
        font-size: 14px;
        vertical-align: top;
        text-align: center;
        background-color: white;
        border-style: none;
        border-radius: 4px;
        border-width: 1px;
        margin-top: 10px;
        z-index: 99980;
    }

    .divfechapanel2 {
        position: fixed;
        right: 0px;
        top: 0;
        list-style: none;
        display: inline-flex;
        width: 80px;
        height: 20px;
        vertical-align: top;
        text-align: center;
        cursor: pointer;
        font-size: 12px;
        z-index: 99981;
    }

    .divfechas {
        position: fixed;
        right: 0px;
        top: 20px;
        list-style: none;
        display: inline-block;
        width: 84px;
        vertical-align: top;
        text-align: left;
        background-color: white;
        border-style: solid;
        border-radius: 4px;
        border-color: white;
        border-width: 1px;
    }


    .divfechapanel3 {
        position: fixed;
        right: 0px;
        top: 22px;
        display: inline-block;
        width: 80px;
        vertical-align: top;
        text-align: left;
    }


    #hojapedido {
        width: 80%;
        margin-left: 10%;

        margin-top: 30px;
        padding: 6px;

    }

    .izquierda {

        float: left;
    }

    .derecha {
        float: right;
        margin-bottom: 4px;
        margin-right: 4px;
    }

    .centro {
        float: left;
        width: 40%;
        list-style: none;
        font-size: 2em;
        vertical-align: top;
    }


    .post {
        width: 90%;
        margin-left: 5%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);

        margin-bottom: 30px;
        padding: 12px;
    }

    .unidadesventa {
        font-size: 12px;
    }

    .btconsola {
        width: 96%;
        height: 100%;
        list-style: none;
        display: inline-block;
        color: black;
        margin-left: 2%;
        margin-right: 2%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 50px;
        min-height: 60px;
        text-align: center;
        font-size: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;
        padding-top: 12px;
    }

    .btconsolados {
        width: 96%;
        height: 100%;
        list-style: none;
        display: inline-block;
        color: black;
        margin-left: 2%;
        margin-right: 2%;
        align-content: center;
        background-color: #EF82A1;
        margin-top: 10px;
        min-height: 60px;
        text-align: center;
        font-size: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        border-style: solid;
        border-radius: 4px;
        border-width: 1px;
        padding-top: 15px;
    }

    .postcarta {
        width: 90%;
        margin-left: 5%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);

        margin-bottom: 30px;
        padding: 12px;

    }



    .postlogin {
        width: 50%;
        margin-left: 25%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-top: 50px;
        margin-bottom: 30px;
        padding: 30px;
    }

    .ulnoves {
        width: 100%;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
        margin-top: 0px;
        background-color: #EF82A1;
    }

    .lesnoves {
        width: 14%;
        top: 2px;
        left: 2px;
        border-style: solid;
        border-radius: 24px;
        border-width: 1px;
        background-color: #FFFFFF;
    }

    .postlogin {
        width: 50%;
        margin-left: 25%;

        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 30px;
    }


    .postpedido {
        width: 99%;
        margin-left: 0.5%;
        padding-top: 8px;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        width: 100%;
        list-style: none;
        padding: 8px;
        margin-bottom: 10px;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
    }

    .txtnomenficha {
        color: #666666;
        width: 59%;
        font-size: 28px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }

    .ulizquierda {
        width: 25%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .ulcabped {
        width: 49%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 14px;
    }

    .ulderechag {
        padding-left: 3px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
    }

    .ulderecha {
        padding-left: 3px;
        width: 22%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 7px;
    }


    .ulderechano {
        display: none;
    }

    .ulderecha {
        text-align: left;
        padding-left: 3px;
        margin-top: 120px;
        margin-left: 4%;
        width: 14%;
        background-color: white;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .marqueei {
        padding-bottom: 8px;
        width: 58%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        margin-left: 10px;
        margin-top: 10px;
    }


    .postpedido {
        width: 99%;
        margin-left: 0.5%;
        padding-top: 8px;
        width: 100%;
        list-style: none;
        display: inline-flex;
        vertical-align: top;
    }

    .login {
        float: right;
        text-decoration: none;
        color: white;
        font-size: 10px
    }

    .login:hover {
        text-decoration: underline;
        font-size: 10px
    }



    .btn {
        padding: 15px;
        display: inline-block;
        margin: 15px 0;
        background: #595959;
        color: #fff;
        font-size: 1em;
        border-radius: 2px;
        border: none;
    }

    .btn:hover {
        text-decoration: none;
        background: #BB1F35;
    }

    .botobusca {
        margin-right: 12px;
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 1em;
        border-radius: 2px;
        border: none;
    }

    .botobusca:hover {
        text-decoration: none;
        background: #BB1F35;
    }

    .btnwprodn {
        margin-right: 12px;
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 1em;
        border-radius: 2px;
        border: none;
    }

    .btnwprodn:hover {
        text-decoration: none;
        background: #BB1F35;
    }


    .botoenter {
        color: rgba(255, 255, 255, .7);
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        font-size: 16px;
        line-height: 16px;
    }

    .botoenter:hover {
        color: #fff;
    }

    .botoenter {
        color: rgba(255, 255, 255, .7);
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        font-size: 16px;
        line-height: 16px;
    }

    .botoenter:hover {
        color: #fff;
    }

    .icomenu {
        color: #666666;
        text-align: left;
        padding-bottom: 8px;
        font-size: 2em;
        list-style: none;
        vertical-align: top;
        cursor: pointer;
        margin-left: 14px;
    }



    .txticomenu {
        text-align: left;
        display: inline-block;
        visibility: visible;
        font-size: 24px;
        padding-top: 6px;
        list-style: none;
        vertical-align: top;
        text-align: left;
        color: #666666;
        cursor: pointer;
    }



    .txttitulo {
        width: 100%;
        font-size: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        margin-left: 4px;
    }

    .txticobk {
        color: #666666;
        width: 8%;
        font-size: 12px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: right;
        cursor: pointer;
        left: 0px;
    }

    .txtcarta {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: right;
        font-size: 14px;
        padding-bottom: 4px;
    }

    .txtmanual {
        width: 100%;
        margin-bottom: 20px;
        list-style: none;
        display: inline-block;
        vertical-align: bottom;
        text-align: center;
        opacity: 80%;
    }

    .txtmnuclient {
        list-style: none;
        width: 14%;
        display: inline-block;
        vertical-align: middle;
        text-align: center;
        font-size: 14px;
    }

    .linkmnucli {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }

    .linkmnucli :hover {
        width: 100%;
        text-align: right;
        padding-top: 8px;
        vertical-align: middle;
    }


    .linkcarta {
        width: 100%;
        text-align: center;
        padding-top: 2px;
        vertical-align: middle;
        font-size: 14px;
    }

    .linkcarta :hover {
        width: 100%;
        text-align: center;
        padding-top: 2px;
        vertical-align: middle;
        font-size: 14px;
    }


    .classli {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
    }

    .txtstrneon {
        width: 70%;
        padding-top: 4px;
        margin-left: 10px;
        margin-right: 10px;
        font-size: 18px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        color: #000000;
    }

    .txtdescartac {
        width: 10%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
    }

    .txtdescarta {
        width: 23%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        padding-left: 3px;
    }

    .txtdescarta2 {
        width: 28%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;

    }

    .txtdescartai {
        width: 12%;
        list-style: none;
        display: inline-block;
        vertical-align: bottom;
        font-size: 12px;
        text-align: right;

    }

    .txtporenc {
        width: 2%;
        list-style: none;
        font-weight: bold;
        color: blue;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
        font-weight: bolder;
    }

    .txtvegeta {
        width: 1%;
        list-style: none;
        font-weight: bold;
        color: green;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        font-size: 12px;
        font-weight: bolder;
    }

    .txtaquien {
        list-style: none;
        width: 64%;
        display: inline-block;
        vertical-align: top;

    }

    .txtselycon {
        list-style: none;
        width: 25%;
        display: inline-block;
        vertical-align: top;
        padding-top: 8px;

    }

    .txtsineces {
        list-style: none;
        width: 64%;
        display: inline-block;
        vertical-align: top;
    }

    .hazclickanun {
        list-style: none;
        width: 56%;
        display: inline-block;
        vertical-align: top;
        text-align: center;

    }

    .txtresultados {
        list-style: none;
        width: 43%;
        display: inline-block;
        vertical-align: bottom;
        text-align: right;
    }

    .postprods {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        background: #fff;
        border-color: grey;
        border-style: solid;
        border-width: 1px;
        text-align: center;
        border-radius: 4px 4px 4px 4px;
        margin-bottom: 6px;
        padding: 8px;
        appearance: textfield;
    }

    .postprods input[type="number"]::-webkit-outer-spin-button,
    .postprods input[type="number"]::-webkit-inner-spin-button {
        margin: 0;
        appearance: textfield;
    }

    .postprodsencargo {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        background: #fff;
        border-radius: 12px;
        margin-bottom: 6px;
        padding: 4px;
    }

    .postprodsencargo input[type="number"]::-webkit-outer-spin-button,
    .postprodsencargo input[type="number"]::-webkit-inner-spin-button {
        margin: 0;
        appearance: textfield;
    }

    .postprodsweb {
        list-style: none;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-bottom: 14px;
        padding: 14px;
    }

    .postprodsweb input[type="number"]::-webkit-outer-spin-button,
    .postprodsweb input[type="number"]::-webkit-inner-spin-button {
        margin: 0;
        appearance: textfield;
    }

    .txtprodsel {
        margin: 0px;
        padding: 0px;
        width: 49%;
        text-align: left;
        vertical-align: top;
        vertical-align: bottom;
        opacity: 80%;
        margin-left: 24%;
        padding: 0px;
        font-size: 12px;
    }

    .txtnumlinpeds {
        vertical-align: top;
        opacity: 80%;
        width: 20%;
        font-size: 10px;
    }

    .txtwebcodi {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .txtweb {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 12px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-top: 6px;
    }

    .txtwebp {
        max-width: 200px;
        max-height: 200px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-top: 6px;
        background-color: #f4f4f4;
        border-radius: 4px;
        padding: 2px;
    }

    .contenedorclientes {
        list-style: none;
        padding-right: 4px;
        width: 19.7%;
        height: 400px;
        min-height: 400px;
        max-height: 400px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    .txtcatalog {
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
        margin-bottom: 16px;
    }

    .contenedormenucliente {
        list-style: none;
        padding-right: 4px;
        width: 19.7%;
        height: 340px;
        min-height: 340px;
        max-height: 340px;
        display: inline-block;
        vertical-align: top;
        overflow: hidden;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .contenedorproductos {
        list-style: none;
        padding-right: 4px;
        width: 19.5%;
        height: 420px;
        min-height: 420px;
        max-height: 420px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .contenedorproductosweb {
        list-style: none;
        padding-right: 2px;
        width: 19.8%;
        height: 600px;
        min-height: 600px;
        max-height: 600px;
        display: inline-table;
        margin-top: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .txticomm {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-left: 16px;
        padding-bottom: 2px;
    }

    .contenedorproductosencargo {
        list-style: none;
        padding-right: 2px;
        width: 18%;
        height: 470px;
        min-height: 470px;
        max-height: 470px;
        display: inline-block;
        vertical-align: top;
        padding-bottom: 8px;
        margin-top: 244px;
        margin-right: 1%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .postencargo {
        width: 100%;
        height: 470px;
        min-height: 470px;
        max-height: 470px;
    }

    .postweb {
        width: 100%;
        height: 326px;
        min-height: 326px;
        max-height: 326px;
    }


    .postlimarcoimgweb {
        width: 94%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        margin-left: 3%;
        max-height: 200px;
    }

    .marcoimgweb {
        width: 98%;
        margin-left: 1%;
        list-style: none;
        display: inline-block;
        vertical-align: top;

    }

    .imgweb {
        width: 100%;
        max-height: 192px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
    }

    .imgwebcliente {
        width: 100%;
        max-height: 210px;
        min-width: 210px;
        max-width: 210px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .imgcliweb {
        width: 100%;
        max-height: 210px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .postmenucliente {
        width: 100%;
        list-style: none;
        display: inline-block;
        background: #fff;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
        margin-bottom: 30px;
        padding: 10px;
    }


    /* --- Paginacion --- */

    .paginacion {
        margin-bottom: 10px;
    }

    .paginacion ul {
        list-style: none;
        text-align: center;
    }

    .paginacion ul li {
        display: inline-block;
        margin: 0 5px;
        color: #fff;
    }

    .paginacion ul li a {
        display: block;
        padding: 10px 20px;
        background: #595959;
        color: #fff;
    }

    .paginacion ul li a:hover {
        background: #BB1F35;
        text-decoration: none;
    }

    .paginacion ul .active {
        background: #BB1F35;
        padding: 10px 20px;
    }

    .paginacion ul .disabled {
        background: #a8a8a8;
        padding: 10px 20px;
        cursor: not-allowed;
    }

    .paginacion ul .disabled:hover {
        background: #a8a8a8;
    }

    .legend {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 14px;
    }

    .legendT {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 16px;
        text-align: center;
        vertical-align: middle;
    }

    .legend2 {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 12px;
    }

    .formulario input[type="number"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 4px;
        width: 90px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #141938;
    }

    .btgrabap {
        padding: 2px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 90px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .btborrap {
        padding: 4px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 90px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .btgrabap:hover {
        background: #BB1F35;
    }

    .btborrap:hover {
        background: #BB1F35;
    }

    .btborrap {
        padding: 8px;
        background: #595959;
        color: #fff;
        font-size: 10px;
        width: 70px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnquita {
        padding: 6px;
        background: #595959;
        color: #fff;
        font-size: 16px;
        width: 16px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnquita:hover {
        background: #BB1F35;
    }

    #btadd {
        padding-top: 22px;
        padding-left: 1px;
        padding-bottom: 20px;
        vertical-align: bottom;
        background: #595959;
        margin-top: 22px;
        color: white;
        font-size: 16px;
        text-align: center;
        width: 28px;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    #btadd:hover {
        background: #BB1F35;
    }

    #botonnws {
        margin-left: 4px;
        background: #595959;
        vertical-align: top;
        color: #fff;
        font-size: 16px;
        width: 70px;
        border-radius: 4px;
        border: none;
        cursor: pointer;
    }

    #botonnws:hover {
        background: #BB1F35;
    }

    .botonnwp {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 180px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnwp:hover {
        background: #BB1F35;
    }



    .botonnwd {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 180px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonnwd:hover {
        background: #BB1F35;
    }

    .postbuscacli {
        width: 24%;
        margin-left: 2px;
        padding: 6px;
        border-radius: 6px;
        border: solid;
        border-width: 1px;
        cursor: pointer;
        border-color: #999999;
    }


    .iddirenvid {
        width: 48%;
        margin-left: 6px;
        padding: 3px;
        display: inline-block;
        list-style: none;
    }


    .botototalista {
        padding: 5px;
        background: #7782ad;
        color: #fff;
        font-size: 12px;
        width: calc(100% - 8px);
        margin: 0 4px;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .botototalista:hover {
        background: #BB1F35;
    }

    .botoeliminar:hover {
        background: #fff;
        color: #7782ad;
    }

    .botototalista2 {
        padding: 5px;
        background: #7782ad;
        color: #fff;
        font-size: 12px;
        width: 100%;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .botototalista2:hover {
        background: #BB1F35;
    }


    /* --- Formularios --- */

    .iconminus {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-right: 8px;
        padding-bottom: 2px;
        visibility: hidden;
    }

    .iconplus {
        color: grey;
        background: white;
        opacity: 70%;
        list-style: none;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        font-size: 2.5em;
        padding-left: 6px;
        padding-bottom: 2px;
        visibility: hidden;
    }


    .formularioprecios {
        width: 100%;
        overflow: hidden;
    }

    .formulario {
        width: 100%;
        overflow: hidden;
    }

    .newpassword {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 4px;
        width: 60%;
        display: inline-block;
        margin-bottom: 4px;
        font-size: 12px;
        color: #141938;
    }

    #elorden {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 20%;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #elorden:focus {
        border: 1px solid #595959;
        padding: 6px;
    }

    #seleccuales {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 240px;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #seleccuales:focus {
        border: 1px solid #595959;
        padding: 6px;
    }

    #frmunidadesventa {
        margin-top: 4px;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 10px;
        font-size: 18px;
        color: #141938;
    }

    #frmunidadesventa:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    .frmunidadesventa {
        margin-top: 4px;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 100%;
        margin-bottom: 2px;
        font-size: 18px;
        color: #141938;
        text-align: center;
    }

    .frmunidadesventa:focus {
        border: 2px solid #595959;
    }

    #frmformatoventa {
        vertical-align: top;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 86%;
        margin-top: 6px;
        font-size: 18px;
        color: #141938;
    }

    #frmformatoventa:focus {
        border: 2px solid #595959;
        padding: 10px;
    }

    #frmimporte {
        vertical-align: top;
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 40%;
        font-size: 18px;
        color: #141938;
    }

    #frmimporte {
        border: 2px solid #595959;
        padding: 10px;
        -moz-appearance: textfield;
    }

    .formpedido input[type="text"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formpedido input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .fechaservicio {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 2px;
        width: 120px;
        font-size: 14px;
        color: #141938;
    }

    .formpedido input[type="submit"]:hover {
        background: #BB1F35;
    }

    .numenfoto {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .botonOK {
        padding: 15px;
        margin-top: 60px;
        margin-right: 10%;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 80%;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .botonOK:hover {
        background: #BB1F35;
    }

    .formpedidonumber {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 90px;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
        text-align: center;
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .formularioprecios input[type="number"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 6px;
        width: 40%;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .formularioprecios input[type="number"]::-webkit-outer-spin-button,
    .formularioprecios input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .formulario input[type="text"],
    .formulario input[type="number"],
    .formulario input[type="email"],
    .formulario input[type="password"],
    .formulario input[type="label"],
    .formulario select[id="pais"],
    .formulario select[id="sector"],
    .formulario select[id="actividad"],
    .formulario select[id="id_especialidad"],
    .formulario select[id="tipoprod"],
    .formulario select[id="id_unimedpeso"],
    .formulario select[id="id_fam"],
    .formulario select[id="id_subfam"],
    .formulario select[id="li"],
    .formulario textarea {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 16px;
        width: 100%;
        display: block;
        margin-bottom: 20px;
        font-size: 18px;
        color: #141938;
    }

    .formulario input[type="date"] {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        width: 110px;
        font-size: 18px;
        color: #141938;
    }

    .formulario input[type="date"]:focus {
        border: 2px solid #595959;
    }

    .formulario input[type="text"],
    .formulario input[type="date"],
    .formulario input[type="time"],
    .formulario input[type="number"],
    .formulario input[type="email"],
    .formulario input[type="password"],
    .formulario input[type="label"],
    .formulario select[id="tipo"],
    .formulario select[id="fam"],
    .formulario select[id="subfam"],
    .formulario textarea {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 16px;
        width: 100%;
        display: block;
        margin-bottom: 20px;
        font-size: 1em;
        color: #141938;
    }

    .formulario input[type="text"]:focus,
    .formulario input[type="date"]:focus,
    .formulario input[type="time"]:focus,
    .formulario input[type="number"],
    .formulario input[type="email"]:focus,
    .formulario input[type="password"]:focus,
    .formulario select[id="tipo"]:focus,
    .formulario select[id="fam"]:focus,
    .formulario select[id="subfam"]:focus,
    .formulario textarea:focus {
        border: 2px solid #595959;
        padding: 15px;
    }

    .formulario input[type="email"]:focus,
    .formulario input[type="password"]:focus,
    .formulario select[id="pais"]:focus,
    .formulario select[id="sector"]:focus,
    .formulario select[id="actividad"]:focus,
    .formulario select[id="tipoprod"]:focus,
    .formulario select[id="id_unimedpeso"]:focus,
    .formulario select[id="id_fam"]:focus,
    .formulario select[id="id_subfam"]:focus,
    .formulario textarea:focus {
        border: 2px solid #595959;
        padding: 15px;
    }

    .formulario textarea {
        max-width: 100%;
        min-width: 100%;
        min-height: 100px;
    }

    .formulario input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formulario input[type="submit"]:hover {
        background: #BB1F35;
    }

    .formbusca input {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 10px;
        width: 78%;
        display: inline-block;
        margin-bottom: 8px;
        font-size: 14px;
        color: #141938;
    }

    .formbusca select {
        border: 1px solid #A8A8A8;
        border-radius: 2px;
        padding: 10px;
        width: 100%;
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        color: #141938;
    }

    .formbusca input:focus,
    .formbusca select:focus {
        border: 2px solid #595959;
        padding: 4px;
    }

    .formulario textarea {
        max-width: 100%;
        min-width: 100%;
        min-height: 100px;
    }

    .formulario input[type="submit"] {
        padding: 15px;
        background: #595959;
        color: #fff;
        font-size: 18px;
        width: 130px;
        border-radius: 2px;
        border: none;
        float: right;
        cursor: pointer;
    }

    .formulario input[type="submit"]:hover {
        background: #BB1F35;
    }

    .larger {
        width: 10px;
        height: 10px;
        transform: scale(1.5);
        margin: 10px;
    }

    .pequer {
        width: 10px;
        height: 10px;
        transform: scale(1);
        margin: 2px;
    }

    .iconselecc {
        padding: 10px;
        text-align: center;
        width: 100px;
        height: 40px;
        max-height: 40px;
        font-size: 18px;
        line-height: 18px;
        background: #6495ED;
        display: inline-block;
        color: white;
        vertical-align: bottom;
        border-radius: 18px 18px 18px 18px;
    }

    .iconselecc:hover {
        cursor: pointer;
        color: red;
    }

    .iconsbusca {
        padding: 10px;
        text-align: center;
        width: 48px;
        max-height: 48px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 0 0 3px;
    }

    .iconslogin {
        padding: 19px;
        text-align: center;
        width: 48px;
        max-height: 48px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 0 0 3px;
    }

    .iconspwr {
        padding: 10px;
        text-align: center;
        width: 30px;
        max-height: 30px;
        font-size: 18px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        margin-right: 4px;
        border-radius: 3px 3px 3px 3px;
    }

    .iconsalta {
        padding: 4px;
        text-align: center;
        width: 18px;
        max-height: 24px;
        font-size: 10px;
        line-height: 18px;
        background: #c8c8c8;
        display: inline-block;
        color: black;
        vertical-align: top;
        border-radius: 3px 0 0 3px;
    }

    .iconsup {
        padding: 4px;
        text-align: center;
        width: 18px;
        max-height: 24px;
        font-size: 10px;
        line-height: 18px;
        background: white;
        display: inline-block;
        color: black;
        vertical-align: top;
        border-radius: 3px 0 0 3px;
    }

    .errores {
        text-align: center;
        color: red;
    }

    .btnofecha {
        vertical-align: top;
        width: 22px;
        height: 22px;
        background: #BB1F35;
        color: #fff;
        font-size: 1em;
        border-radius: 20px;
        border: none;
        cursor: pointer;
    }

    .btnofecha:hover {
        background: #333333;
    }

    .gridcontenedora {
        width: 100%;
        display: list-item;
    }

    .gridvacaciones {
        vertical-align: top;
        width: 100%;
        display: inline-block;
        margin-left: 2px;
        border: 1px solid #595959;
    }

    .gridhorarios {
        vertical-align: top;
        width: 100%;
        display: inline-block;
        border: 1px solid #595959;
    }

    .griddias {
        vertical-align: top;
        width: 100%;
        display: inline-block;
    }

    .gridhoras {
        vertical-align: top;
        width: 100%;
        display: inline-block;
    }

    .lineavacas {
        display: inline-block;
        vertical-align: top;
        list-style: none;
        width: 100%;
        margin: auto;
        padding: 3px;
    }

    .ulvac1 {
        margin-left: 10px;
        margin-right: 2px;
        width: 100%;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac1 {
        width: 194px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        margin-left: 12px;
    }

    .livac4 {
        width: 200px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .ulvac2 {
        width: 210px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac2 {
        width: 70px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .livac3 {
        width: 110px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        height: 30px;
        text-align: center;
    }

    .lblvac {
        width: 80px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .lblvac2 {
        width: 40px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
    }

    .btvac {
        width: 16px;
        height: 18px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 10px;
    }

    .btaddvac {
        width: 26px;
        height: 22px;
        list-style: none;
        display: inline-block;
        vertical-align: top;
        font-size: 14px;
    }

    .livacas {
        vertical-align: top;
        list-style: none;
        width: 100%;
        display: inline-table;
        visibility: visible;
        margin-right: 0px;
        font-size: 0.8em;
    }

    .lidias {
        vertical-align: top;
        list-style: none;
        width: 13%;
        display: inline-block;
    }

    .labeldias {
        vertical-align: top;
        margin-left: 2px;
        color: red;
    }

    .horas {
        visibility: collapse;
        margin-left: 4px;
        width: 58px;
    }

    .legend {
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 12px;
        vertical-align: top;
        width: 90%;
        display: inline-block;
        margin-left: 10px;
    }

    .lineasdias {
        margin-bottom: 2px;
        margin-top: 4px;
        font-size: 14px;
        vertical-align: top;
        width: 90%;
        display: inline-block;
    }

    .legend2 {
        text-align: left;
        vertical-align: bottom;
        height: 18px;
        margin-bottom: 10px;
        margin-top: 6px;
        font-size: 18px;
    }

    .grupo {
        width: 100%;
        margin-left: 6px;
    }

    .divlin {
        list-style: none;
        width: 33%;
        display: inline-block;
        padding-top: 20px;
    }

    .divmnulateral {
        list-style: none;
        width: 100%;
        display: inline-block;
        padding-top: 20px;
    }

    .checks {
        margin-left: 4px;
    }

    .idcsslin {
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 4px;
        width: 100%;
        display: block;
        margin-bottom: 6px;
        font-size: 14px;
        color: red;
    }


    .buscarprod {
        width: 60%;
        margin-left: 20%;
        margin-bottom: 10px;
        display: none;
        visibility: hidden;
    }

    #cualbusca {
        width: 90%;
        border: 1px solid #A8A8A8;
        text-align: center;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        font-size: 14px;
        color: #141938;
        font-weight: bolder
    }

    #verproductos {
        width: 90%;
        margin-left: 5%;
        list-style: none;
        display: none;
        vertical-align: top;
    }


    #myBtn {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Fixed/sticky position */
        bottom: 56px;
        /* Place the button at the bottom of the page */
        left: 30px;
        /* Place the button 30px from the right */
        z-index: 99998;
        /* Make sure it does not overlap */
        border: none;
        /* Remove borders */
        outline: none;
        /* Remove outline */
        background-color: #BB1F35;
        /* Set a background color */
        color: white;
        /* Text color */
        cursor: pointer;
        /* Add a mouse pointer on hover */
        padding-top: 10px;
        /* Some padding */
        padding-bottom: 10px;
        padding-right: 14px;
        padding-left: 14px;
        border-radius: 8px;
        /* Rounded corners */
        font-size: 18px;
        /* Increase font size */
    }

    #myBtn:hover {
        background-color: white;
        /* Add a dark-grey background on hover */
        color: #BB1F35;
        border-style: solid;
        border-width: 1px;
        border-color: #BB1F35;
    }

    #myBtndwn {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Fixed/sticky position */
        top: 80px;
        /* Place the button at the bottom of the page */
        right: 30px;
        /* Place the button 30px from the right */
        z-index: 99999;
        /* Make sure it does not overlap */
        border: none;
        /* Remove borders */
        outline: none;
        /* Remove outline */
        background-color: #BB1F35;
        /* Set a background color */
        color: white;
        /* Text color */
        cursor: pointer;
        /* Add a mouse pointer on hover */
        padding-top: 10px;
        /* Some padding */
        padding-bottom: 10px;
        padding-right: 14px;
        padding-left: 14px;
        border-radius: 8px;
        /* Rounded corners */
        font-size: 18px;
        /* Increase font size */
    }

    #myBtndwn:hover {
        background-color: white;
        /* Add a dark-grey background on hover */
        color: #BB1F35;
        border-style: solid;
        border-width: 1px;
        border-color: #BB1F35;
    }

    .botclcnum {
        height: 48px;
        cursor: pointer;
        list-style: none;
        vertical-align: top;
        display: inline-block;
        width: 30%;
        text-align: center;
        background: red;
        padding-top: 10px;
        border-color: grey;
        border-style: solid;
        border-width: 1px;
        border-radius: 6px 6px 6px 6px;
        font-weight: bolder;
    }

    footer {
        background: #BB1F35;
        color: #fff;
        width: 100%;
        height: 50px;
        vertical-align: bottom;
        font-size: 9px;
        position: fixed;
        margin-bottom: 0px;
        bottom: 0px;
        background-color: #BB1F35
    }

    footer .copyright {
        text-align: center;
        font-size: 9px;
        padding: 8px 0;
    }
}
/* ── Footer (mirror navbar-custom) ─────────────────────────── */
#site-footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: auto !important;
    width: 100% !important;
    z-index: 1030 !important;
    font-size: 1rem !important;
    background: rgba(255, 255, 255, 0.85) !important;
    background-color: rgba(255, 255, 255, 0.85) !important;
}

.footer-custom {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.06);
    padding: 3px 0;
}

.footer-copy {
    font-size: 0.65rem;
    font-weight: 400;
    color: #000;
    opacity: 1;
}

.footer-copy-link {
    text-decoration: none;
    line-height: 1.6;
    transition: opacity 0.2s;
}

.footer-copy-link:hover {
    opacity: 1;
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .footer-copy-rights { font-size: .55rem; }
}
@media (max-width: 767.98px) {
    .footer-copy { font-size: .34rem; }
    .footer-copy-author { font-size: .40rem; }
    .footer-copy-rights { font-size: .34rem; }
    .footer-copy-link { font-size: .48rem; line-height: 1.4; }
}

/* ── Estil form-select per diaservicio, cualbusca i cboformato ── */
#diaservicio.form-select {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    color: #212529;
    text-align: center;
    background-color: #fff;
    line-height: 1.5;
    display: inline-block;
    width: auto;
}
.frmunidadesventa.form-select {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    color: #212529;
    text-align: left;
    background-color: #fff;
    line-height: 1.5;
    display: block;
    width: 100%;
}

#cualbusca.form-select {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    color: #212529;
    text-align: left;
    background-color: #fff;
    line-height: 1.5;
    display: block;
    width: 90%;
}

#diaservicio.form-select:focus,
#cualbusca.form-select:focus,
.frmunidadesventa.form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
    outline: 0;
    padding: .375rem 2.25rem .375rem .75rem;
}

.icon-close-circle {
    border: 1px solid #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    transition: border-color .2s, color .2s;
}
.icon-close-circle:hover {
    border-color: #fff;
    color: #000 !important;
    background: #fff;
}

.txtservdomi {
    font-size: 1rem !important;
    font-weight: normal !important;
}
#poblacionservicio.pobserv,
.pobserv {
    font-size: 1rem !important;
    font-weight: normal !important;
    padding: 6px 8px !important;
}
label[for="diaservicio"] {
    font-size: 1rem !important;
}

#loginBtn:hover {
    background: linear-gradient(45deg, var(--primary), var(--secondary)) !important;
    transform: translateY(-2px);
    color: #fff !important;
}

.botoeliminalista {
    padding: 5px;
    background: #BB1F35;
    color: #fff;
    font-size: 12px;
    width: 100%;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: background .2s;
}

.botoeliminalista:hover {
    background: #7782ad;
    color: #fff;
}
