@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

@page {
    min-width: 768px
}

h4 {
    font-size: 1.4em;
    font-weight: bolder;
}

 /* 

.form-control {
    font-family: system-ui, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.1;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.5em;
  }

  .form-control + .form-control {
    margin-top: 1em;
  }
  
  .form-control--disabled {
    color: var(--form-control-disabled);
    cursor: not-allowed;
  }

input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--form-background);
    margin: 0;
  
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
  
    display: grid;
    place-content: center;
  }
  
  input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    background-color: CanvasText;
  }
  
  input[type="checkbox"]:checked::before {
    transform: scale(1);
  }
  
  input[type="checkbox"]:focus {
    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);
  }
  
  input[type="checkbox"]:disabled {
    --form-control-color: var(--form-control-disabled);
  
    color: var(--form-control-disabled);
    cursor: not-allowed;
  }
 */ 
.alert {
    _padding: 0px;
    margin-bottom: 20px;
    margin-top: 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    box-shadow: 4px 4px 13px 0px rgba(0, 0, 0, 0.26);
    -webkit-box-shadow: 4px 4px 13px 0px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 4px 4px 13px 0px rgba(0, 0, 0, 0.26);
}

.alert-warning {
    padding-top: 0px;
    border-radius: 5px;
    background: #908484;
    color:white;
}

.descrip-ticket {
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    padding-top: 8px;
    padding-bottom: 8px;
}

.navbar {
    padding-bottom: 8px
}

.navbar a {
    color: #313131;
    font-size: 18px
}

.navbar img {
    vertical-align: bottom;
}

body {
    _font-family: Lato, sans-serif;
}

.page-title {
    background-color: #555
}

.page-title h3 {
    color: #F5F5F5
}

.page-title h3 small {
    color: #E0E0E0
}

#perfil_datos span {
    font-weight: 700;
    margin-right: 5px
}

.navbar {
    margin-bottom: 0
}

.page-title {
    height: 75px;
    padding: 0;
    -webkit-transition: height 1.5s ease;
    -moz-transition: height 1.5s ease;
    -o-transition: height 1.5s ease;
    -ms-transition: height 1.5s ease;
    transition: height 1.5s ease
}

@media (max-width:610px) {
    .container-nav {
        padding-bottom: 0
    }

    .page-title {
        height: 115px;
        padding: 0;
        -webkit-transition: height 1.5s ease;
        -moz-transition: height 1.5s ease;
        -o-transition: height 1.5s ease;
        -ms-transition: height 1.5s ease;
        transition: height 1.5s ease
    }
}

@media (max-width:767px) {
    .container-nav {
        padding-bottom: 0
    }

    .page-title {
        height: 75px;
        padding: 0;
        -webkit-transition: height 1.5s ease;
        -moz-transition: height 1.5s ease;
        -o-transition: height 1.5s ease;
        -ms-transition: height 1.5s ease;
        transition: height 1.5s ease
    }
}


@media (max-width:327px) {
    .container-nav {
        padding-bottom: 0
    }

    .page-title {
        height: 105px;
        padding: 0;
        -webkit-transition: height 1.5s ease;
        -moz-transition: height 1.5s ease;
        -o-transition: height 1.5s ease;
        -ms-transition: height 1.5s ease;
        transition: height 1.5s ease
    }
}


@media (max-width:305px) {
    .container-nav {
        padding-bottom: 0
    }

    .page-title {
        height: 125px;
        padding: 0;
        -webkit-transition: height 1.5s ease;
        -moz-transition: height 1.5s ease;
        -o-transition: height 1.5s ease;
        -ms-transition: height 1.5s ease;
        transition: height 1.5s ease
    }
}



/****************************************************/

.blink{
    animation: backgroundfade 2s 0.1s 1;
    animation-iteration-count: infinite;
}

@keyframes backgroundfade {
    0% { opacity:1;color: rgb(247, 6, 2); }
    50% { opacity:0.9;color: rgb(7, 7, 7); }
    100% { opacity:1;color: rgb(250, 8, 4); }
}


a.list-group-item-danger {
    color: #A94442;
    border-left-width: 5px;
    border-left-color: rgb(169, 68, 66);
    background-color: rgba(235, 204, 204, 0.3);
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
}


a.list-group-item-danger:hover {
    color: #ffffff;
    border-left-width: 5px;
    border-left-color: rgb(169, 68, 66);
    background-color: rgba(163, 81, 81, 0.877);
}

a.list-group-item-success {
    color: #3C763D;
    border-left-color: rgb(60, 118, 61);
    border-left-width: 5px;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
    background-color: rgba(154, 172, 147, 0.699);
}

a.list-group-item-success:hover {
    color: #ffffff;
    border-left-color: rgb(60, 118, 61);
    background-color: #3C763D;
}
a.list-group-item-info {
    color: #31708F;
    border-left-color: rgb(49, 112, 143);
    border-left-width: 5px;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
}

a.list-group-item-info:hover {
    color: #ffffff;
    border-left-color: rgb(49, 112, 143);
    background-color: #31708F;
}

a.list-group-item-info-calendar {
    color: #31708F;
    border-left-color: rgb(49, 112, 143);
    border-left-width: 5px;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
    background-color: #D9EDF7;
}

a.list-group-item-info-calendar:hover {
    color: #31708F;
    border-left-color: rgb(49, 112, 143);
    background-color: #C4E3F3;
}

a.list-group-item-info-material {
    color: #31708F;
    border-left-color: rgb(49, 112, 143);
    border-left-width: 5px;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
    background-color: #D9EDF7;
}

a.list-group-item-info-material:hover {
    color: #ffffff;
    border-left-color: rgb(49, 112, 143);
    background-color: #31708F;
}

a.list-group-item-censo {
    color: #4b2909;
    border-left-color: rgb(122, 70, 10);
    border-left-width: 5px;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
    background-color: #ceb696;
}

a.list-group-item-censo:hover {
    color: #f8f9fa;
    border-left-color: rgb(122, 70, 10);
    background-color: rgb(122, 70, 10);
}

a.list-group-item-primary {
    color: #d1a71b;
    border-left-color: #816406;
    border-left-width: 5px;
    border-left-width: 5px;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
    background-color: rgba(219, 171, 12, 0.3);
}

a.list-group-item-primary:hover {
    color: #ffffff;
    border-left-color: #816406;
    background-color: #d1a71b;
    
}

a.list-group-item-warning {
    color: #5c4c08;
    border-left-color: #c09d02;
    border-left-width: 5px;
    background-color: rgba(187, 179, 141, 0.801);
}

a.list-group-item-warning:hover {
    color: #ffffff;
    border-left-color: #8A6D3B;
    background-color: #c09d02;
}

/****************************/
a.list-group-item-danger-Info {
    color: #A94442;
    border-left-width: 5px;
    border-left-color: #A94442;
    background-color: rgba(235, 204, 204, 0.3);
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
}

a.list-group-item-danger-Info:hover {
    color: #A94442;
    border-left-width: 5px;
    border-left-color: #A94442;
    background-color: #EBCCCC;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
}

a.list-group-item-danger-PREP {
    color: #A94442;
    border-left-width: 5px;
    border-left-color: #DEA10F;
    background-color: rgba(235, 204, 204, 0.3);
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
}

a.list-group-item-danger-PREP:hover {
    color: #A94442;
    border-left-width: 5px;
    border-left-color: #DEA10F;
    background-color: #EBCCCC;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
}

a.list-group-item-danger-mesas {
    color: #A94442;
    border-left-width: 5px;
    border-left-color: #0064BA;
    background-color: rgba(235, 204, 204, 0.3);
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
}

a.list-group-item-danger-mesas:hover {
    color: #A94442;
    border-left-width: 5px;
    border-left-color: #0064BA;
    background-color: #EBCCCC;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
}

a.list-group-item-danger-mesas:focus {
    color: #A94442;
    text-decoration: none;
    background-color: rgba(235, 204, 204, 0.3);
}


a.list-group-item-danger-ticket {
    color: #c98a03;
    border-left-width: 5px;
    border-left-color: #c98a03;
    background-color: rgba(235, 204, 204, 0.3);
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
}

a.list-group-item-danger-ticket:hover {
    color: #c98a03;
    border-left-width: 5px;
    border-left-color: #c98a03;
    background-color: #EBCCCC;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
}

a.list-group-item-danger-ticket:focus {
    color: #c98a03;
    text-decoration: none;
    background-color: rgba(235, 204, 204, 0.3);
}




a.list-group-item-danger-locales {
    color: #A94442;
    border-left-width: 5px;
    border-left-color: #3C763D;
    background-color: rgba(235, 204, 204, 0.3);
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
}

a.list-group-item-danger-locales:hover {
    color: #A94442;
    border-left-width: 5px;
    border-left-color: #3C763D;
    background-color: #EBCCCC;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
}

.well-sm {
    padding: 9px;
    border-radius: 3px;
    background-color: rgba(196, 220, 243, 0.31);
    color: rgb(45, 110, 165);
    border-bottom-color: rgb(45, 110, 165);
    border-bottom-width: 5px;
}

.well-sm-success {
    padding: 9px;
    border-radius: 3px;
    color: #3C763D;
    background-color: #DFF0D8;
    border-color: #3C763D;
    border-width: 0px;
    border-bottom-width: 5px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
}

.well-sm-danger {
    padding: 9px;
    border-radius: 3px;
    color: #A94442;
    background-color: #F2DEDE;
    border-color: #A94442;
    border-width: 0px;
    border-bottom-width: 5px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
}

.well-sm-orange {
    padding: 9px;
    border-radius: 3px;
    color: #da860a;
    background-color: #F2DEDE;
    border-color: #da860a;
    border-width: 0px;
    border-bottom-width: 5px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
}

.well-sm-info {
    padding: 9px;
    border-radius: 3px;
    color: #31708F;
    background-color: #C4E3F3;
    border-color: #31708F;
    border-width: 0px;
    border-bottom-width: 5px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
}

.well-sm-warning {
    padding: 9px;
    border-radius: 3px;
    color: #8A6D3B;
    background-color: rgba(250, 242, 204, 0.3);
    border-color: #8A6D3B;
    border-width: 0px;
    border-bottom-width: 5px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
}

.well-sm-info-form {
    padding: 9px;
    border-radius: 3px;
    background-color: rgba(196, 220, 243, 0.31);
    color: rgb(45, 110, 165);
    border-width: 0px;
    border-bottom-color: rgb(45, 110, 165);
    border-bottom-width: 5px;
    font-size: 16px;
}

.well-sm-success-form {
    padding: 9px;
    border-radius: 3px;
    color: #3C763D;
    background-color: rgba(223, 240, 216, 0.73);
    border-color: #3C763D;
    border-width: 0px;
    border-bottom-width: 5px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
    font-size: 16px;
}

.well-sm-busca-ordena {
    border-radius: 3px;
    background-color: rgba(196, 220, 243, 0.31);
    color: #2D6EA5;
    border-bottom-color: #2D6EA5;
    border-bottom-width: 5px;
    padding: 15px;
}

.well-sm-danger-mesas {
    padding: 9px;
    border-radius: 3px;
    color: #A94442;
    background-color: #F2DEDE;
    border-color: #0064BA;
    border-width: 0px;
    border-bottom-width: 5px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
}

.well-sm-danger-local {
    padding: 9px;
    border-radius: 3px;
    color: #03a85b;
    background-color: #F2DEDE;
    border-color: #3C763D;
    border-width: 0px;
    border-bottom-width: 5px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
}

.well-sm-danger-prep {
    padding: 9px;
    border-radius: 3px;
    color: #A94442;
    background-color: #F2DEDE;
    border-color: #DEA10F;
    border-width: 0px;
    border-bottom-width: 5px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
}

.well-sm-danger-incidente {
    padding: 9px;
    border-radius: 3px;
    color: #dba40d;
    background-color: #F2DEDE;
    border-color: #dba40d;
    border-width: 0px;
    border-bottom-width: 5px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
}

.well-sm-danger-qr {
    padding: 9px;
    border-radius: 3px;
    color: #A94442;
    background-color: #F2DEDE;
    border-color: #0064BA;
    border-width: 0px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
}

.alert-success {
    color: #3C763D;
    background-color: #DFF0D8;
    border-color: #3C763D;
    border-width: 0px;
    border-bottom-width: 5px;
}

.alert-danger {
    color: #A94442;
    background-color: #F2DEDE;
    border-color: #A94442;
    border-width: 0px;
    border-bottom-width: 5px;
}


.panel-warning>.panel-heading {
    border-color: #FAEBCC;
    border-width: 0px;
    color: #8A6D3B;
    background-color: #FCF8E3;
    border-color: #FAEBCC;
    border-bottom-color: #8A6D3B;
    border-bottom-width: 2px;
}

.list-group-novedades {
    padding-left: 0px;
    margin-bottom: 0px;
}

.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
    z-index: 2;
    color: #FFF;
    background-color: #428BCA;
    border-color: #428BCA;
    border-left-color: #0064BA;
    border-left-width: 5px;
}


.media-list {
    padding-left: 0px;
    list-style: outside none none;
}

.media-heading {
    margin-top: 0px;
    margin-bottom: 5px;
    border-bottom-width: 5px;
    border-bottom-color: #31708F;
}

.media-body,
.media-left,
.media-right {
    display: table-cell;
    vertical-align: top;
    border-bottom-width: 5px;
    border-bottom-color: #31708F;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    white-space:normal;
}

a.list-group-item-info-bottom {
    border-width: 0px;
    color: #31708F;
    border-bottom-width: 5px;
    border-bottom-color: #31708F;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

a.list-group-item-info-bottom:hover {
    border-width: 0px;
    color: #31708F;
    border-bottom-width: 5px;
    border-bottom-color: #31708F;
    background-color: #E7E7E7;
}

.btn-warning-novedades.active,
.btn-warning-novedades.focus,
.btn-warning-novedades:active,
.btn-warning-novedades:focus,
.btn-warning-novedades:hover,
.open>.dropdown-toggle.btn-warning-novedades {
    color: rgb(138, 109, 59);
    background-color: rgb(250, 242, 204);
    border-color: rgb(138, 109, 59);
    border-left-width: 5px;
}

.btn-warning-novedades {
    color: rgb(138, 109, 59);
    background-color: rgb(252, 248, 227);
    border-color: rgb(138, 109, 59);
    border-left-width: 5px;
}



.btn-primary {
    border-color: #285F8F;
    border-left-width: 5px;
}

.btn-danger {
    border-color: #962320;
    border-left-width: 5px;
}

.btn-success {
    color: #FFF;
    background-color: #5A5;
    border-color: #3E873E;
    border-left-width: 5px;
}


.btn-block+.btn-block {
    margin-top: 10px;
}



.jumbotron p {
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 200;
}

#message {
    position: fixed;
    width: 100%;
}

#inner-message {
    margin: 0 auto;
}

.panel-success {
    border-color: #DDD;
    background-color: rgba(214, 233, 198, 0.15);
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #737373;
    font-size: 12px;
}


.row-mesas {
    margin-right: 15px;
    margin-left: 15px;
}

.panel-warning-mesa-edit {
    /*
    border: 2px dotted;
    */
    border-color: #fcfbfb;
    background-color: rgba(218, 184, 157, 0.5);
    margin-bottom: 0px;
}

.panel-success-mesa-edit {
    border-color: #FAEBCC;
    background-color: rgba(146, 201, 218, 0.5);
    margin-bottom: 0px;
}
.panel-info-mesa-edit {
    border-color: rgb(247, 250, 247);
    background-color: rgba(150, 194, 145, 0.4);
    margin-bottom: 0px;
}

.panel-body-mesa {
    padding-top: 5px;
    padding-bottom: 5px;
}


/*****   Agregado de clases para el QR ******/
#qr-canvas {
    margin: auto;
    width: calc(100% - 20px);
    max-width: 500px;
}

#btn-scan-qr {
    cursor: pointer;
}

#btn-scan-qr img {
    height: 10em;
    padding: 15px;
    margin: 15px;
    background: white;
}


.cne-cabecera {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
    background-color: #2793e6 !important;
    text-align: center !important;
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.cne-cabecera-titulo {
    font-size: 25px;
    font-weight: 700;
    margin: 0 2%;
    padding: 0 1% 0 0;
    color: white;
    line-height: 1.5;
}

.cne-cabecera-subtitulo {
    color: #dbdce0;
    font-size: 14px;
    font-weight: 700;
    margin: 0 2%;
    padding: 0 1% 0 0;
}

a.list-group-item-secondary {
    color: #4b29a3;
    border-bottom-width: 5px;
    border-left-width: 5px;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
    border-left-color: #4527A0;
    background-color: #d4afdb80;
}

a.list-group-item-secondary:focus,
a.list-group-item-secondary:hover {
    color: #ffffff;
    background-color: #4527A0;
}

input.filtraestado {
    height: 15px;
}