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

.dropdown-menu li{
    cursor: pointer;
}

.click-row{
    cursor: pointer;
}

.name-text{
    font-weight: bold;
}

.main-solicitud{
    border: 1px solid #CFCFCF;
    padding: 15px;
    border-radius: 10px;
}

.activity-solicitud{
    padding: 15px;
    border-radius: 10px;
}

.label-estado{
    padding: 7px;
    border-radius: 7px;
}

.lbl-estado-list{
    padding: 5px;
    border-radius: 7px;
    color: #FFFFFF;
}

.link-answer{
    font-weight: bold;
    color: black;
    text-decoration: none;
}

.notification-area{
    font-size: 30px;
    padding: 10px;
    border-radius: 10px;
    border: none;
    color: white;
    background-color: transparent;
    cursor: pointer;
    position: fixed;
    height: 50px;
    top: 5px;
    right: 20px;
}

.notification-btn{
    font-size: 30px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    position: fixed;
    height: 50px;
    width: 50px;
    top: 5px;
    right: 20px;
}

.notification-menu{
    width: 30vw;
}

.notification-menu li{
    display: inline-block;
    word-wrap: break-word;
    height: auto;
    width: 100%;
}

.notification-menu li:hover{
    background: #EDEDF4;
}

.notification-active{
    color: red;
}

.notification-marker{
    position: fixed;
    top: 11px;
    right: 12px;
    width: 67px;
    height: 67px;
    border-radius: 50%;
}

.notification-marker-active{
    background: #FF0000;
}

.alert-marker {
    display: inline-block;
    width: 5px;
    height: 16px;
}

.alert-marker-active {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #FF0000;
    transition: all 400ms;
    border-radius: 50%;
}

.dropdown .notification-link{
    color: #4285F4;
    cursor: pointer;

    font-family: sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 14px;
    padding: 10px;
}

.img-report{
    max-width: 150px;
    font-size: 15px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    border: 2px solid #CFCFCF;
    border-radius: 15px;
    padding: 5px;
    transition: all 300ms;
}

.img-report:hover{
    background: #CFCFCF;
    transition: all 300ms;
}

.img-report img{
    border-radius: 15px;
}

.file-report{
    width: 150px;
    height: 120px;
    font-size: 15px;
    text-align: center;
    font-weight: bold;
    display: table-cell; 
    vertical-align: middle;
    word-break: break-all;
    border: 2px solid #CFCFCF;
    border-radius: 15px;
    padding: 5px;
    transition: all 300ms;
}

.file-report:hover{
    background: #CFCFCF;
    transition: all 300ms;
}

.not-unread{
    background: #F2F2F2;
}

.bell{
  -webkit-animation: ring 4s .7s ease-in-out infinite;
  -webkit-transform-origin: 50% 4px;
  -moz-animation: ring 4s .7s ease-in-out infinite;
  -moz-transform-origin: 50% 4px;
  animation: ring 4s .7s ease-in-out infinite;
  transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
  0% { -webkit-transform: rotateZ(0); }
  1% { -webkit-transform: rotateZ(30deg); }
  3% { -webkit-transform: rotateZ(-28deg); }
  5% { -webkit-transform: rotateZ(34deg); }
  7% { -webkit-transform: rotateZ(-32deg); }
  9% { -webkit-transform: rotateZ(30deg); }
  11% { -webkit-transform: rotateZ(-28deg); }
  13% { -webkit-transform: rotateZ(26deg); }
  15% { -webkit-transform: rotateZ(-24deg); }
  17% { -webkit-transform: rotateZ(22deg); }
  19% { -webkit-transform: rotateZ(-20deg); }
  21% { -webkit-transform: rotateZ(18deg); }
  23% { -webkit-transform: rotateZ(-16deg); }
  25% { -webkit-transform: rotateZ(14deg); }
  27% { -webkit-transform: rotateZ(-12deg); }
  29% { -webkit-transform: rotateZ(10deg); }
  31% { -webkit-transform: rotateZ(-8deg); }
  33% { -webkit-transform: rotateZ(6deg); }
  35% { -webkit-transform: rotateZ(-4deg); }
  37% { -webkit-transform: rotateZ(2deg); }
  39% { -webkit-transform: rotateZ(-1deg); }
  41% { -webkit-transform: rotateZ(1deg); }

  43% { -webkit-transform: rotateZ(0); }
  100% { -webkit-transform: rotateZ(0); }
}

@-moz-keyframes ring {
  0% { -moz-transform: rotate(0); }
  1% { -moz-transform: rotate(30deg); }
  3% { -moz-transform: rotate(-28deg); }
  5% { -moz-transform: rotate(34deg); }
  7% { -moz-transform: rotate(-32deg); }
  9% { -moz-transform: rotate(30deg); }
  11% { -moz-transform: rotate(-28deg); }
  13% { -moz-transform: rotate(26deg); }
  15% { -moz-transform: rotate(-24deg); }
  17% { -moz-transform: rotate(22deg); }
  19% { -moz-transform: rotate(-20deg); }
  21% { -moz-transform: rotate(18deg); }
  23% { -moz-transform: rotate(-16deg); }
  25% { -moz-transform: rotate(14deg); }
  27% { -moz-transform: rotate(-12deg); }
  29% { -moz-transform: rotate(10deg); }
  31% { -moz-transform: rotate(-8deg); }
  33% { -moz-transform: rotate(6deg); }
  35% { -moz-transform: rotate(-4deg); }
  37% { -moz-transform: rotate(2deg); }
  39% { -moz-transform: rotate(-1deg); }
  41% { -moz-transform: rotate(1deg); }

  43% { -moz-transform: rotate(0); }
  100% { -moz-transform: rotate(0); }
}

@keyframes ring {
  0% { transform: rotate(0); }
  1% { transform: rotate(30deg); }
  3% { transform: rotate(-28deg); }
  5% { transform: rotate(34deg); }
  7% { transform: rotate(-32deg); }
  9% { transform: rotate(30deg); }
  11% { transform: rotate(-28deg); }
  13% { transform: rotate(26deg); }
  15% { transform: rotate(-24deg); }
  17% { transform: rotate(22deg); }
  19% { transform: rotate(-20deg); }
  21% { transform: rotate(18deg); }
  23% { transform: rotate(-16deg); }
  25% { transform: rotate(14deg); }
  27% { transform: rotate(-12deg); }
  29% { transform: rotate(10deg); }
  31% { transform: rotate(-8deg); }
  33% { transform: rotate(6deg); }
  35% { transform: rotate(-4deg); }
  37% { transform: rotate(2deg); }
  39% { transform: rotate(-1deg); }
  41% { transform: rotate(1deg); }

  43% { transform: rotate(0); }
  100% { transform: rotate(0); }
}

.contenedor-order{
    max-width: 80%;
    margin-top: 5%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
}

.alert-title{
    font-family: sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 180%;
    text-transform: uppercase;
    color: #17177C;
}

.alert-text{
    padding-top: 6px;
    font-family: sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 180%;
    text-transform: uppercase;
    color: #17177C;
    padding-bottom: 6px;
}

.label-status {
    font-family: sans-serif;
    font-style: normal;
    font-weight: bolder;
    font-size: 40px;
    line-height: 24px;
    color: #444444;
    border-radius: 15px;
    padding: 25px;
    transition: all 300ms;
}

.label-title {
    margin-top: 8%;
    font-family: sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 50px;
    line-height: 50px;
    color: #346ef1;
}

.label-text {
    font-family: sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: #444444;
    padding: 15px;
}

.label-form {
    height: 15px;
    font-family: sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 15px;
    color: #444444;
}

.label-venta {
    width: 100%;
    height: 15px;
    font-family: sans-serif;
    font-style: normal;
    font-weight: bolder;
    font-size: 20px;
    line-height: 19px;
    color: #444444;
    padding-top: 8px;
}

a:link, a:visited, a:active {
    text-decoration:none;
}

.left-pad{
    margin-left: 210px;
}

.wrapper{
    transition: all 300ms;
}

main{
    width: 100%;
    display: flex;
}

header{
    width: 100%;
    height: 60px;
    background: #161616;
    position: fixed;
    z-index: 1010;
}

#menu-icon{
    font-size: 30px;
    padding: 10px;
    color: white;
    transition: all 300ms;
    cursor: pointer;
    position: relative;
    top: 16px;
    left: 10px;
}

header span:hover{
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
}

.content-menu{
    width: 210px;
    background: #161616;
    transition: all 300ms;
    padding-top: 60px;
    position: fixed;
    height: 100%;
    z-index: 1000;
}

.content-menu2{
    margin-left: -210px;
}

.content-menu li{
    list-style: none;
    text-align: left;
    padding: 10px;
    color: white;
    transition: all 300ms;
    cursor: pointer;
}

.content-menu li label{
    cursor: pointer;    
}

.content-menu .down-effect:hover{
    transform: translateY(10px);
    background: rgba(0,0,0,0.5);
}

.content-menu li .icon-size{
    font-size: 20px;
}
.content-menu li label{
    font-size: 15px;
    font-weight: 100;
    
    transition: all 300ms;
}

.icon1{
    color: #BA7404;
}

.icon2{
    color: #1BBFB2;
}

.icon3{
    color: #A319A4;
}
.icon4{
    color: #760B0B;
}
.icon5{
    color: #1B7E9F;
}
.icon6{
    color: #6A26DF;
}
.icon7{
    color: #6BF929;
}
.icon8{
    color: #F9E11B;
}
.icon9{
    color: #FFF;
}
.icon10{
    color: #86ddab;
}
.icon11{
    color: #8688dd;
}
.icon12{
    color: #d6dd86;
}
.icon13{
    color: #abaca5;
}

.icon14{
    color: #760B0B;
}

.content-menu:hover .txt1{
    transform: translateX(0px);
    transition: all 100ms;
}

.content-menu:hover .txt2{
    transform: translateX(0px);
    transition: all 200ms;
}

.content-menu:hover .txt3{
    transform: translateX(0px);
    transition: all 300ms;
}
.content-menu:hover .txt4{
    transform: translateX(0px);
    transition: all 400ms;
}
.content-menu:hover .txt5{
    transform: translateX(0px);
    transition: all 500ms;
}
.content-menu:hover .txt6{
    transform: translateX(0px);
    transition: all 600ms;
}
.content-menu:hover .txt7{
    transform: translateX(0px);
    transition: all 700ms;
}
.content-menu:hover .txt8{
    transform: translateX(0px);
    transition: all 800ms;
}
.content-menu:hover .txt9{
    transform: translateX(0px);
    transition: all 900ms;
}
.content-menu:hover .txt10{
    transform: translateX(0px);
    transition: all 1000ms;
}
.content-menu:hover .txt11{
    transform: translateX(0px);
    transition: all 1100ms;
}
.content-menu:hover .txt12{
    transform: translateX(0px);
    transition: all 1200ms;
}
.content-menu:hover .txt13{
    transform: translateX(0px);
    transition: all 1300ms;
}

.content-menu:hover .txt14{
    transform: translateX(0px);
    transition: all 1400ms;
}

.left-side-bar.open{
    left: 0;
}

article{
    padding: 20px;
    width: 100%;
    margin-top: 60px;
}

.social{
    -webkit-transition: all 200ms ease ;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    display: none;
}
@media screen and (min-width: 550px) {
    .social{
        display: block;
        position: fixed;
        left: 0;
        z-index: 1000;
        height: 100%;
        padding: 0;
    }
    .text-acordion-title{
        display: inline;
    }
}
.text-acordion-title{
    display: inline;
}
@media screen and (min-width: 850px) {
    .social{
        display: block;
        position: fixed;
        left: 0;
        z-index: 1000;
        height: 100%;
        padding: 0;
        width: 15%;
    }
    .text-acordion-title{
        display: inline;
    }
}
@media screen and (max-width: 850px) {
    .text-acordion-title{
        display: none;
    }
}
.fondo-menu{
    background-color: #3b3838;
}
.social ul{
    list-style: none;
}
.social ul li a{
    display: inline-block;
    color: #fff;
    background: #737373;
    padding: 10px 15px;
    text-decoration: none;
    -webkit-transition: all 200ms ease ;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.social ul li a:hover{
    padding: 10px 30px;
    background: #000;
}
.social ul li a:hover > div {
    display: inline;
}
.hi{
    display: none;
}
.social .panel-group .panel, .social .panel-group .panel .panel-body{
    border-color: #3b3838;
}
.social .panel-group .panel .panel-body{
    background-color: black;
    padding: 0;
}
.social .panel-group .panel a div:hover{
    background-color: #3b99a3;
    color: black;
    font-weight: 400;
}

.scrollsmall{
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
}

.boxcontactos::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.boxcontactos::-webkit-scrollbar{
        
	width: 10px;
	background-color: #F5F5F5;
}

.boxcontactos::-webkit-scrollbar-thumb{
	background-color: #700081;
	background-image: -webkit-gradient(linear, 0 0, 0 100%,
	                   color-stop(.5, rgba(255, 255, 255, .2)),
					   color-stop(.5, transparent), to(transparent));
}

#accordion::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

#accordion::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

#accordion::-webkit-scrollbar-thumb
{
	background-color: #0ae;
	
	background-image: -webkit-gradient(linear, 0 0, 0 100%,
	                   color-stop(.5, rgba(255, 255, 255, .2)),
					   color-stop(.5, transparent), to(transparent));
}

.scrollmodal::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.scrollmodal::-webkit-scrollbar
{
    width: 6px;
    height: 7px;
    background-color: #F5F5F5;
}

.scrollmodal::-webkit-scrollbar-thumb
{
    background-color: #0ae;

    background-image: -webkit-gradient(linear, 0 0, 0 100%,
        color-stop(.5, rgba(255, 255, 255, .2)),
        color-stop(.5, transparent), to(transparent));
}

.scrollmodal{
    max-height: 62%;
    overflow-y: auto;
}

.cursor-hover:hover{
    cursor: pointer;
}

.aviso-responsabilidad{
    font-size: 12px;
    text-align: justify;
}

.sign-canvas{
    left: 0;
    top: 0;
    max-width: 100%;
    height:200px;
    background-color: white;
    border: 1px solid #CCC;
}

.sign-canvas2{
    left: 0;
    top: 0;
    max-width: 100%;
    height:250px;
    background-color: white;
    border: 1px solid #CCC;
}

.input-check{
    width: 20px;
    height: 20px;
}

.scroll{
    max-height: 100%;
    overflow-y: auto;
}

.scrollX::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.scrollX::-webkit-scrollbar{
    height: 7px;
    background-color: #F5F5F5;
}

.scrollX::-webkit-scrollbar-thumb{
    background-color: #0ae;

    background-image: -webkit-gradient(linear, 0 0, 0 100%,
        color-stop(.5, rgba(255, 255, 255, .2)),
        color-stop(.5, transparent), to(transparent));
}

.scrollX{
    max-width: 100%;
    overflow-x: auto;
}
/***********************************************Fin menu****************************************************/
.text-white{
    color: white;
}
#img-perfil-menu{
    margin: 0;
    max-height: 45px;
}
#contenedor-img-logo-menu{
    margin-right: 10px;
    padding: 2px 2px;
}
#contenedor-img-logo-menu2{
    margin-right: 10px;
    padding: 2px 2px;
}
.social .panel-group .panel{
    border: none;
    margin: 0;
}
.social .panel-group .panel a{
    text-decoration: none;
}
.social .panel-group .panel a .panel-heading{
    color: white;
    border-radius: 0;
}
.text-logo{
    display: inline;
    color: #31b0d5;
}
.text-logout{
    display: inline;
    color: #ff0000;
}

input[type="file"] {
    display: none;
}
.button-file {
    outline:none !important;
    background: #FFFFFF;
    height: 45px;
    padding: 10px 12px;
    border: 2px solid #CECEE2;
    box-sizing: border-box;
    border-radius: 5px;

    font-family: sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    /* identical to box height, or 43px */

    text-align: center;
    color: #17177C;
    cursor: pointer;
}

.button-file:hover {
    background: #EDEDF4;
}
#img-logo-menu{
    margin: 0;
    max-height: 45px;
    display: inline;
}
.social .panel-group .panel a .sub-menu-active{
    background-color: black;
    color: #737373;
    font-weight: 500;
}
.lista-submenu-elemento{
    width: 100%;
    height: 35px;
    padding-left: 15px;
    font-size: 12px;
}
.contenedor-lista-submenu{
    padding: 0;
    margin: 0;
}


#contenedor-loader{
    position: fixed;   
    z-index: 9999;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4) url(../img/ajax-loader_6.gif) center no-repeat;
}

.lista-submenu-elemento:hover{
    background-color: #3b99a3;
}
.triangulo {
    position: absolute;
    width: 0; 
    height: 0; 
    right: 0;
    border-right: 20px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent; 
}
.out{
    display: none;
}
body .row #contenedor-vista-left{
    padding-right: 0;
    margin-right: -10px;
}
body .row{
    padding: 0;
    margin: 0;
}
body .row #contenedor-vista-right{
    top: 52px;
    right: 0;
    padding-left: 0;
    padding-right: 1px;
    margin-left: 0;
}

#contenedor-formulario-login{
    max-width: 700px;
    margin-top: 5%;
    background: rgba(53, 114, 207, 0.4);
}

#logo-control-restaurant{
    max-height: 150px;
}
#contenedor-logo{
    margin-bottom: 2%;
}
#titulo-login-a{
    color: #0044cc;
}
#titulo-login-b{
    color: #000;
}
.titulo-login{
    margin-bottom: 4%;
    font-size: 50px;
}

.logo-order{
    margin-top: 14%;
    max-height: 120px;
}

#logo-login{
    margin-top: 4%;
    max-height: 100px;
}
#index{
    background-image: url(../img/52907089.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/****/
.tab-active{
    border-color: #1DB4BF;
    background: #EDEDF4;
}

.tab-pago{
    outline:none !important;
    min-width: 100px;
    max-width: 170px;
    width: auto;
    /*height: 40px;*/
    background: #555555;

    padding: 4px 7px;
    border: 2px solid #000000;
    border-bottom: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;

    /*font-family: sans-serif;*/
    font-style: normal;
    /*font-weight: bold;*/
    font-size: 14px;
    text-align: center;
    color: #FFFFFF;
}

.tab-pago:hover{
    background: #FFFFFF;
    color: #000000;
}

.sub-tab-active{
    border-color: #33BBF1;
    background: #FFFFFF;
    color: #000000;
}

/*
.tab-hover > tbody > tr:hover {
    background-color: #000000;
}

.button-tab{
    outline:none !important;
    min-width: 180px;
    width: auto;
    height: 50px;
    background: #ffffff;

    padding: 4px 7px;
    border: 2px solid #CECEE2;
    border-bottom: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;

    font-family: sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 17px;
    text-align: center;
    color: #17177C;
}

.button-tab:hover{
    background: #EDEDF4;
}

.sm-tab:hover{
    background: #EDEDF4;
}

.sub-button-tab{
    outline:none !important;
    min-width: 170px;
    width: auto;
    height: 50px;
    background: #ffffff;

    padding: 4px 7px;
    border: 2px solid #CECEE2;
    border-bottom: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;

    font-family: sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 17px;
    text-align: center;
    color: #17177C;
}

.sub-button-tab:hover{
    background: #EDEDF4;
}

.sub-tab-active{
    border-color: #1DB4BF;
    background: #EDEDF4;
}

.scroll-table::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
    border-radius: 5px;
}

.scroll-table::-webkit-scrollbar{
    width: 6px;
    height: 7px;
    background-color: #F5F5F5;
}

.scroll-table::-webkit-scrollbar-thumb{
    background-color: #1F1FAE;
    background-image: -webkit-gradient(linear, 0 0, 0 100%,
        color-stop(.5, rgba(255, 255, 255, .2)),
        color-stop(.5, transparent), to(transparent));
    border-radius: 5px;
}

.scroll-table{
    max-height: 300px;
    max-width: 100%;
    overflow-x: auto;
}*/

.content-div-scroll {
    scroll-margin-top: 120px; /* Ajusta el valor del margen según lo necesites */
}
