﻿html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

header {
    width: 100%;
    height: 65px;
    float: left;
    padding: 0.75rem;
}

.fondo-oscuro {
    background-color: #005baa;
}

.fondo-claro {
    background-color: #0073d7;
}

.fondo-gris {
    background-color: #c3c3c3;
}

.vertical-scroll {
    overflow-y: auto;
}

.horizontal-scroll {
    overflow-x: auto;
}



@media (max-width: 575px) {
    .sm-text, .lOpcion {
        font-size: 0.8rem;
    }

    .btn-text {
        font-size: 16px;
    }

    .section-text {
        font-size: 21px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .sm-text, .lOpcion {
        font-size: 0.9rem;
    }

    .btn-text {
        font-size: 18px;
    }

    .section-text {
        font-size: 22px;
    }
}

@media (min-width: 992px) {
    .sm-text, .lOpcion {
        font-size: 0.95rem;
    }

    .btn-text {
        font-size: 19px;
    }

    .section-text {
        font-size: 22px;
    }
}



.vertical-scroll::-webkit-scrollbar, .horizontal-scroll::-webkit-scrollbar, .table-responsive::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.vertical-scroll::-webkit-scrollbar-thumb, .horizontal-scroll::-webkit-scrollbar-thumb, .table-responsive::-webkit-scrollbar-thumb {
    background: rgba(136, 136, 136, 0.4);
}

input[type=number].txtCantidadD::-webkit-outer-spin-button, input[type=number].txtCantidadD::-webkit-inner-spin-button, input[type=number].txtCantidadT::-webkit-outer-spin-button, input[type=number].txtCantidadT::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number].txtCantidadD, input[type=number].txtCantidadT {
    -moz-appearance: textfield;
}

ul {
    list-style: none;
}

label, a, img, h1, h2, h3, h4, span, i {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.toSelect {
    cursor: pointer;
}

#divSettings {
    width: 200px;
    max-height: calc(100% - 100px);   
    padding: 0;
    position: fixed;
    top: 65px;
    right: 0.25rem;
    left: auto;
    z-index: 5000;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color: #ffffff;
    display: none;
}

#menu:not(.mobile) {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 5000;
    background: #DBF6FF;
    width: 100%;
    max-width: 250px;
    overflow: hidden;
    transform: translate3d(-100%, 0, 0);
    transition: 0.1s;
}

#menu .menuHeader {
    height: 65px;
    padding: 0.75rem;
}

#menu:not(.mobile) .menuBody {
    width: 100%;
    max-width: 250px;
    height: calc(100% - 65px);
}

#menu.open:not(.mobile) {
    transform: translate3d(0,0,0);
    transition: 0.1s;
}

    #menu.open:not(.mobile):not(.mDevice) + #contenido {
        margin-left: 250px;
        max-width: calc(100% - 250px);
        transition: 0.1s;
    }

#menu.mDevice {
    z-index: 5000;
}

#menuFiltro, #menuCarrito {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 4000;
    background: #ffffff;
    width: 0;
    max-width: 0;
    overflow: hidden;
    /*transform: translate3d(-100%, 0, 0);*/
    /*transition: 0.1s;*/
    transition: 0.1s;
    overflow-y: auto;
}

    #menuFiltro.open, #menuCarrito.open {
        width: 90%;
        max-width: 300px;
        /*transform: translate3d(0,0,0);*/
        /*transition: 0.1s;*/
        transition: 0.1s;
    }

        #menu.mDevice.open ~ .menu-backdrop, #menu.mobile.open ~ .menu-backdrop, #menuFiltro.open ~ .menuFiltro-backdrop, #menuCarrito.open ~ .menuCarrito-backdrop {
            opacity: 1;
            visibility: visible;
        }

.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 3500;
}

.menuFiltro-backdrop, .menuCarga-backdrop, .menuCarrito-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 3500;
}

.menuFiltro-backdrop, .menuCarga-backdrop, .menuCarrito-backdrop {
    background: rgba(0, 0, 0, 0.5);
}

#menu.mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    z-index: 5000;
    background: #DBF6FF;
    width: 100%;
    height: 100%;
    transform: translate3d(0, -100%, 0);
    transition: 0.1s;
}

    #menu.mobile .menuBody {
        width: 100%;
        height: calc(100% - 52px);
    }

#menu.open.mobile {
    transform: translate3d(0,0,0);
    transition: 0.1s;
    z-index: 5000;
}

.despliega {
    display: none;
}

#contenido {
    width: 100%;
    height: calc(100% - 65px);
    float: left;
    position: relative;
    padding: 0;
    overflow-y: auto;
    margin-top: 65px;
    transition: 0.1s;
}

@media (min-width: 576px) {
    #contenido {
        max-width: 100%;
        transition: 0.1s;
    }
}

.menuRapido, .menuMesa {
    padding: 0.3rem;
    float: left;
    text-align: center;
    cursor: pointer;
}

.box {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-color: #0073d7;
    color: #FFFFFF;
}

    .box:before {
        content: "";
        display: block;
        padding-top: 100%;
    }

.box-content {
    width: 100%;
    height: 100%;
    margin: 0;
}

@media (max-width: 350px) {
    .menuRapido {
        width: 50%;
    }

    .menuMesa {
        width: 33.333333%;
    }

    .box-content span {
        font-size: 10vw;
        transition: 0.1s;
    }

    .box-content h1 {
        font-size: 5vw;
        transition: 0.1s;
    }
}

@media (min-width: 351px) and (max-width: 675px) {
    .menuRapido {
        width: 25%;
    }

    .menuMesa {
        width: 25%;
    }

    .box-content span {
        font-size: 5vw;
        transition: 0.1s;
    }

    .box-content h1 {
        font-size: 3vw;
        transition: 0.1s;
    }
}

@media (min-width: 676px) and (max-width: 1300px) {
    .menuRapido {
        width: 25%;
    }

    .menuMesa {
        width: 20%;
    }

    .box-content span {
        font-size: 5vw;
        transition: 0.1s;
    }

    .box-content h1 {
        font-size: 3vw;
        transition: 0.1s;
    }
}

@media (min-width: 1301px) {
    .menuRapido {
        width: 20%;
    }

    .menuMesa {
        width: 16.666667%;
    }

    .box-content span {
        font-size: 4vw;
        transition: 0.1s;
    }

    .box-content h1 {
        font-size: 2vw;
        transition: 0.1s;
    }
}

.divImagen {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-position: center;
}

    .divImagen:before {
        content: "";
        display: block;
        padding-top: 100%;
    }

.imageContent {
    width: 100%;
    height: 100%;
    margin: 0;
}

    .imageContent img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        max-width: 100%;
        display: block;
        width: 100%;
        height: 100%;
    }

@media (max-width: 420px) {
    #PerfilDiv {
        width: 100%;
    }

    #perfilImageZone {
        width: 70%;
        margin: 0 auto;
    }

    #perfilSettingsZone {
        width: 100%;
    }
}

@media (min-width: 421px) {
    #PerfilDiv {
        display: flex;
        align-items: center;
    }

    #perfilImageZone {
        width: 35%;
    }

    #perfilSettingsZone {
        width: 65%;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
}

.spinner {
    width: 100%;
    float: left;
    position: relative;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .spinner > div {
        width: 18px;
        height: 18px;
        background: #005baa;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
        animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    }

    .spinner .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .spinner .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.loader {
    border: 10px solid #c5c5c5;
    border-top: 10px solid #005baa;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*#Loader {
    width: 80px;
    height: 50px;
    position: fixed;
    z-index: 6000;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
    -webkit-animation-name: loader;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 2s;
    animation-name: loader;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

@-webkit-keyframes loader {
    from {
        -webkit-transform: rotateY(0deg);
    }

    to {
        -webkit-transform: rotateY(-360deg);
    }
}

@keyframes loader {
    from {
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    to {
        -moz-transform: rotateY(-360deg);
        -ms-transform: rotateY(-360deg);
        transform: rotateY(-360deg);
    }
}*/

#DivSelect {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 400px) {
    #DivSelect {
        width: 80%;
    }
}

@media (min-width: 401px) and (max-width: 700px) {
    #DivSelect {
        width: 60%;
    }
}

@media (min-width: 701px) {
    #DivSelect {
        width: 40%;
    }
}

#listado {
    height: calc(100% - 77px);
}

#listaDetalle {
    height: auto;
    max-height: calc(100% - 96px);
    overflow-y: auto;
}

.panelDetalles {
    height: auto;
    max-height: calc(100% - 28px);
    overflow-y: auto;
}

.cView, .dView {
    float: left;
    position: relative;
}

.cView {
    padding: 0;
}

.dView {
    padding: 0.5rem;
}

@media (max-width: 869px) {
    #listaDetalle::-webkit-scrollbar, .panelDetalles::-webkit-scrollbar {
        width: 4px;
    }

    .cView {
        width: 100%;
    }

    .dView {
        width: 50%;
    }
}

@media (min-width: 501px) {
    #listaDetalle::-webkit-scrollbar, .panelDetalles::-webkit-scrollbar {
        width: 6px;
    }
}

#listaDetalle::-webkit-scrollbar-thumb, .panelDetalles::-webkit-scrollbar-thumb {
    height: 40px;
    background: rgba(136, 136, 136, 0.4);
}

@media (min-width: 870px) and (max-width: 1289px) {
    .cView {
        width: 50%;
    }

    .dView {
        width: 33.333333%;
    }
}

@media (min-width: 1290px) {
    .cView {
        width: 33.333333%;
    }

    .dView {
        width: 25%;
    }
}

.divProducto, .divItem {
    width: 100%;
    float: left;
    padding: 0.25rem;
    border: 1px solid #dee2e6;
}

/*.divProducto {
    float: left;
    padding: 0.65rem;
}

@media (max-width: 575px) {
    .divProducto {
        width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .divProducto {
        width: 50%;
    }
}

@media (min-width: 992px) and (max-width: 1425px) {
    .divProducto {
        width: 33.333333%;
    }
}

@media (min-width: 1426px) {
    .divProducto {
        width: 25%;
    }
}*/



.span-1-sm, .span-2-sm, .span-1-md, .span-2-md {
    float: left;
}

@media (max-width: 299.99px) {
    .span-1-sm {
        margin-right: 0 !important;
    }

    .span-2-sm {
        display: none;
    }
}

@media (min-width: 300px) {
    .span-1-sm {
        margin-right: 0.5rem !important;
    }

    .span-2-sm {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .span-1-md {
        font-size: 30px;
        margin-right: 0 !important;
    }

    .span-2-md {
        display: none;
    }

    .seccionMobile {
        display: block;
    }

    .seccionDesktop {
        display: none;
    }
}

@media (min-width: 767.99px) {
    .span-1-md {
        margin-right: 0.5rem !important;
    }

    .span-2-md {
        display: block;
    }

    .seccionMobile {
        display: none;
    }

    .seccionDesktop {
        display: block;
    }
}



.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
    color: #dc3545;
    /*border-color: #dc3545 !important;*/
}

.has-error .form-control {
    border-color: #dc3545 !important;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
}

/*.has-error .input-group-text:not(.input-group-prepend, .input-group-append) {
    border-color: #dc3545 !important;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    border-top-width: 1px;
    border-right-width: 0px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    background-color: #F0AAB1;
}*/

.has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;
}

/*.has-error .input-group-addon {
    color: #a94442;
    background-color: #f2dede;
    border-color: aqua;
}*/

.has-error .form-control-feedback {
    color: #a94442
}

.has-success .checkbox, .has-success .checkbox-inline, .has-success .control-label, .has-success .help-block, .has-success .radio, .has-success .radio-inline, .has-success.checkbox label, .has-success.checkbox-inline label, .has-success.radio label, .has-success.radio-inline label {
    color: #3c763d;
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
}

/*.has-success .input-group-text:not(.input-group-prepend, .input-group-append) {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    border-top-width: 1px;
    border-right-width: 0px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    background-color: #E9ECEF;
}*/

.has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;
}

/*.has-success .input-group-addon {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #3c763d
}*/

.has-success .form-control-feedback {
    color: #3c763d
}

.has-success .select-input {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
}

.btn-page-select {
    color: #000000;
    background-color: #ffffff;
    border-color: #2c81cc;
}

.btn-page:hover {
    color: #ffffff;
    background-color: #2c81cc;
    border-color: #2c81cc;
    /*height: 30px;*/
}

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: auto !important;
        right: 0px !important;
        right: 100px !important;
        z-index: 4000;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }



@keyframes in {
    0% {
        transform: translate(0, 20px);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@keyframes out {
    0% {
        transform: translate(0, 0);
        opacity: 1
    }

    100% {
        transform: translate(0, -20px);
        opacity: 0
    }
}

.kan-notify-wrapper {
    z-index: 3000
}

.kan-in {
    animation: in .3s linear 1
}

.kan-out {
    animation: out .3s linear 1
}

.kan-notify-item {
    position: relative;
    margin-bottom: 8px;
    padding: 5px 30px 5px 10px;
    clear: both;
    /*font-size: 14px;*/
    line-height: 1.6;
    background: #FFF;
    border: 1px solid #DDD;
    border-radius: 3px;
    opacity: .95
}

    .kan-notify-item .kan-icon-wrap {
        float: left;
        display: inline-block
    }

    /*.kan-notify-item .kan-icon {
        font-size: 14px
    }*/

    .kan-notify-item .kan-notify-close {
        cursor: pointer;
        color: #1F2D3D;
        text-align: center;
        position: absolute;
        right: 2px;
        top: 2px;
        display: inline-block;
        width: 12px;
        height: 12px;
        /*font-size: 12px;*/
        line-height: 12px;
        text-decoration: none;
        /*transition: All .5s ease-in-out*/
    }

        /*.kan-notify-item .kan-notify-close:hover {
            transform: rotate(180deg)
        }*/

.kan-notify-item-info {
    background: #139acc;
    border-color: #1188b5;
    color: #e2f5fc
}

    .kan-notify-item-info a {
        color: #e2f5fc
    }

    .kan-notify-item-info .kan-notify-close {
        color: #b3e5f8
    }

        .kan-notify-item-info .kan-notify-close:hover {
            color: #e2f5fc
        }

.kan-notify-item-default {
    background: #1F2D3D;
    border-color: #16212c;
    color: #b5c6d9
}

    .kan-notify-item-default a {
        color: #b5c6d9
    }

    .kan-notify-item-default .kan-notify-close {
        color: #93acc8
    }

        .kan-notify-item-default .kan-notify-close:hover {
            color: #b5c6d9
        }

.kan-notify-item-error {
    background: #cf2715;
    border-color: #b82313;
    color: #fde9e6
}

    .kan-notify-item-error a {
        color: #fde9e6
    }

    .kan-notify-item-error .kan-notify-close {
        color: #f8beb8
    }

        .kan-notify-item-error .kan-notify-close:hover {
            color: #fde9e6
        }

.kan-notify-item-warning {
    background: #e17a00;
    border-color: #c86c00;
    color: #fff
}

    .kan-notify-item-warning a {
        color: #fff
    }

    .kan-notify-item-warning .kan-notify-close {
        color: #e6e6e6
    }

        .kan-notify-item-warning .kan-notify-close:hover {
            color: #fff
        }

.kan-notify-item-success {
    background: #348f22;
    border-color: #2d7a1d;
    color: #ecfae9
}

    .kan-notify-item-success a {
        color: #ecfae9
    }

    .kan-notify-item-success .kan-notify-close {
        color: #c8f0c0
    }

        .kan-notify-item-success .kan-notify-close:hover {
            color: #ecfae9
        }

@media(max-width: 576px) {
    .kan-notify-item, .kan-notify-item .kan-icon, .kan-notify-item .kan-notify-close {
        font-size: 16px;
    }
}

@media(min-width: 577px) and (min-width: 991px) {
    .kan-notify-item, .kan-notify-item .kan-icon, .kan-notify-item .kan-notify-close {
        font-size: 18px;
    }
}

@media(min-width:992px) {
    .kan-notify-item, .kan-notify-item .kan-icon, .kan-notify-item .kan-notify-close {
        font-size: 20px;
    }
}

/* Barcode */
.drawingBuffer {
    position: absolute;
    top: 0;
    left: 0;
}