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

html,
body {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    transition: all 500ms ease;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.wrapper {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    height: calc(100vh - 60px);
    padding-top: 0;
    overflow-y: auto;
    transition: transform 0.5s ease;
     Transición para el estado normal 
}

.vista {
    padding-top: 15px;
}

.vista:nth-child(1) {
    scroll-snap-align: start;
}

.vista:not(:nth-child(1)) {
    scroll-snap-align: start;
}

.vista:nth-child(4),
.vista:nth-child(6),
.vista:nth-child(7) {
    scroll-snap-align: start;
}

.vista:not(:nth-child(4), :nth-child(6), :nth-child(7)) {
    scroll-snap-align: start;
}

.vista:last-child {
    scroll-snap-align: start;
}

*/
@media (max-width: 768px) {
    ul.dropdown-menu {
        max-height: 90px;
        overflow: scroll;
    }
}

.p-0 {
    padding: 0 !important;
}

.pagination>li>button {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination>li>button:hover {
    color: #23527c;
    background-color: #eee;
    border-color: #ddd;
}

.pagination>li:first-child>button {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination>li:last-child>button {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.pagination>.disabled>button,
.pagination>.disabled>button:focus,
.pagination>.disabled>button:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}

.pagination>.active>button,
.pagination>.active>button:focus,
.pagination>.active>button:hover {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}

@media (max-width: 425px) {
    .pagination>li>button {
        padding: 3px 6px !important;
    }
}

.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,
.text-red {
    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: 25px;
    height: 25px;
}

.input-check-sm {
    width: 19px;
    height: 19px;
}

.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;
    width: 0px;
    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%;
    line-height: 28px;
}

#titulo-login-a {
    color: #0044cc;
    font-weight: 400;
}

#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 !important;
    background: #EDEDF4;
}

.tab-pago {
    outline: none !important;
    min-width: 100px;
    max-width: 170px;
    width: auto;
    background: rgba(169, 169, 169, 0.489);
    /* Gris con opacidad */
    padding: 4px 7px;
    border: 2px solid gray;
    border-bottom: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-style: normal;
    font-size: 14px;
    text-align: center;
    color: #000;
}

.sub-tab-active {
    border-color: #1DB4BF !important;
    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;
}*/

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.glyphicon.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
}

@keyframes spin {
    from {
        transform: scale(1) rotate(0deg);
    }

    to {
        transform: scale(1) rotate(360deg);
    }
}

@-webkit-keyframes spin2 {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}


/*-----------------------2025*/
thead th,
tbody td {
    vertical-align: middle !important;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to top, #17177C 85%, #383877 15%);
}

::-webkit-scrollbar-horizontal {
    height: 8px;
}

::-webkit-scrollbar-thumb:horizontal {
    background-color: #17177C;
}

.fw-semibold {
    font-weight: bold;
}

.pt-5 {
    margin-top: 15px;
}

.icono {
    color: #23527c;
}

.bg-icono {
    background-color: #23527c;
    color: #FFFFFF;
}

.bg-icono:hover,
.bg-icono:active {
    background-color: #23527c;
    color: #FFFFFF;
}

/* Ocultar los inputs por defecto */
.radio-modal {
    display: none;
}

/* Estilo para el radio button */
.radio-modal+label {
    position: relative;
    padding-left: 24px;
    /* Espacio menor */
    cursor: pointer;
    font-size: 14px;
    /* Tamaño de fuente más pequeño */
}

.radio-modal+label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    /* Más pequeño */
    height: 16px;
    border: 2px solid #007bff;
    /* Azul */
    border-radius: 50%;
    background: white;
}

/* Efecto cuando el radio está seleccionado */
.radio-modal:checked+label::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 6px;
    width: 8px;
    /* Más pequeño */
    height: 8px;
    background: #007bff;
    /* Azul */
    border-radius: 50%;
}

.encabezado {
    height: calc(100vh - 60px);
    overflow-y: auto;
}

/* Estilo base del checkbox */
.checkbox-modal {
    display: none;
    /* Ocultamos el checkbox original */
}

/* Estilo del contenedor del checkbox */
.checkbox-container {
    display: inline-block;
    position: relative;
    width: 30px;
    /* Ajustar el tamaño */
    height: 16px;
    /* Ajustar el tamaño */
    background-color: #ddd;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Estilo para el círculo dentro del checkbox */
.checkbox-container::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    /* Ajustar el tamaño */
    height: 12px;
    /* Ajustar el tamaño */
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* Cuando el checkbox está marcado */
.checkbox-modal:checked+.checkbox-container {
    background-color: #007bff;
    /* Cambia el color de fondo cuando está marcado */
}

/* Desplazamiento del círculo cuando el checkbox está marcado */
.checkbox-modal:checked+.checkbox-container::before {
    transform: translateX(14px);
    /* Desplaza el círculo a la derecha */
}

.input-azul {
    -webkit-appearance: none;
    /* Eliminamos el estilo por defecto */
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    /* Ajustar el tamaño */
    height: 20px;
    /* Ajustar el tamaño */
    border: 2px solid #007bff;
    /* Borde azul */
    border-radius: 3px;
    /* Bordes redondeados */
    background-color: white;
    /* Fondo blanco por defecto */
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.1s;
    outline: none !important;
}

.input-azul-sm {
    -webkit-appearance: none;
    /* Eliminamos el estilo por defecto */
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    /* Ajustar el tamaño */
    height: 16px;
    /* Ajustar el tamaño */
    border: 2px solid #007bff;
    /* Borde azul */
    border-radius: 3px;
    /* Bordes redondeados */
    background-color: white;
    /* Fondo blanco por defecto */
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.1s;
    outline: none !important;
}

/* Cuando el checkbox está marcado */
.input-azul:checked {
    background-color: #007bff;
    /* Color azul cuando está marcado */
    border-color: #007bff;
    /* Color de borde azul */
}

.input-azul-sm:checked {
    background-color: #007bff;
    /* Color azul cuando está marcado */
    border-color: #007bff;
    /* Color de borde azul */
}

/* Estilo para la marca de verificación */
.input-azul:checked::after {
    content: '\2714';
    /* Marca de verificación */
    position: absolute;
    top: 0;
    left: 3px;
    color: white;
    /* Color blanco de la marca */
    font-size: 14px;
    /* Ajustar tamaño de la marca */
}


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


/****** COLORES DE TARJETAS VACACIONES *****/
.input-rbtn{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #007bff;
    border-radius: 10rem;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.1s;
    outline: none !important;
}

.input-rbtn:disabled{
    border: 2px solid #555555;
    background: #EEEEEE;
}

.input-rbtn:disabled:checked{
    background: #555555;
}

.input-rbtn:checked{
    background: #007bff;
}

.input-rbtn+label{
    font-weight: normal;
    padding-left: 5px;
    padding-top: 5px;
}

/*ESTILOS DEL CONTADOR DE VACAIONES*/
.vacation-counter {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0px;
    border-radius: 15px;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);*/
    text-align: center;
    width: 100%;
}

.vacation-counter h4 {
    color: #2575fc;
    font-size: 19px;
    font-weight: bold;
}

.counter-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.counter-box {
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.counter-box.period {
    width: 40%;
    background-color: #e3f2fd;
    border: 2px solid #64b5f6;
}

.counter-box.taken {
    width: 25%;
    background-color: #ffebee;
    border: 2px solid #ef9a9a;
}

.counter-box.remaining {
    width: 25%;
    background-color: #e8f5e9;
    border: 2px solid #81c784;
}

.counter-box h2 {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 15px;
    margin: 0;
    font-weight: bold;
}

.counter-box.period h2 {
    color: #1976d2;
}

.counter-box.taken h2 {
    color: #d32f2f;
}

.counter-box.remaining h2 {
    color: #388e3c;
}

.counter-box p {
    font-size: 15px;
    color: #333;
    margin: 0;
}


.new-tooltip {
    display: inline-block;
    text-decoration: none;
    position: relative;
    margin: 0 2px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

.new-tooltip.icon:before {
    font-family: "FontAwesome", sans-serif;
    color: #fff;
    font-size: 20px;
}

.new-tooltip .tiptext {
    background: #fff;
    color: #222;
    font-size: 14px;
    font-weight: bold;
    position:  absolute;
    text-align: justify;
    bottom: 0;
    left: -25px;
    right: -25px;
    padding: 12px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.new-tooltip .tiptext:before {
    content: '';
    /*   width: 0;
      height: 0; */
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    position: absolute;
    bottom: -5px;
    left: 40px;
    z-index: 800;
}

.new-tooltip:hover .tiptext {
    bottom: 50px;
    visibility: visible;
    opacity: 1;
}

.new-tooltip.tip .tiptext {
    color: #4183d7;
}

/****** ********************ESTILOS PARA NOTAS  DE LINEAS TELEFONICAS************************* ****/
.btn-ver-mas {
    position: relative;
    padding: 6px 0 10px;
    z-index: 1;
}

.btn-ver-mas:before {
    content: "";
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 2px solid #5BC0DE;
    z-index: -1;
}

.btn-ver-mas button {
    color: #ffffff;
    background: #5BC0DE;
    border: 1px solid #5BC0DE;
    border-radius: 20px;
    padding: 6px 15px;
    font-size: 12px;
    position: relative;
}


/****** ********************ESTILOS PARA EL DASHBOARD DE LINEAS TELEFONICAS************************* ****/
.filter-bar {
    background: #EEF2F7;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 18px;
    box-shadow: 0 4px 18px rgba(0,0,0,.05);
}

.kpi-card {
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 10px;
    color: #253858;
    min-height: 120px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

.kpi-card .panel-body-dash {
    padding: 18px 19px 17px;
}

.kpi-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
    opacity: .92;
    margin-bottom: 6px;
    font-weight: 700;
}

.kpi-value {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 8px;
}

.kpi-footer {
    font-size: 12px;
    opacity: .95;
}

.kpi-icon {
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 30px;
    opacity: .5;
}

.bg-blue { background: linear-gradient(135deg, #2d9cdb, #1f7bb6); }
.bg-green { background: linear-gradient(135deg, #27ae60, #1e874b); }
.bg-orange { background: linear-gradient(135deg, #f2994a, #d97706); }
.bg-red { background: linear-gradient(135deg, #eb5757, #c0392b); }
.bg-purple { background: linear-gradient(135deg, #9b51e0, #6f42c1); }
.bg-teal { background: linear-gradient(135deg, #1abc9c, #12806b); }

.panel-dash {
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
    border: 0;
    margin-bottom: 18px
}

.panel-heading-dash {
    background: #EEF2F7 !important;
    border-bottom: 1px solid #777 !important;
    font-weight: 700;
    color: #253858 !important;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.panel-body-dash {
    background: #EEF;
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.chart-box {
    position: relative;
    height: 340px;
}

.chart-box-sm {
    position: relative;
    height: 280px;
}

.filter-bar {
    background: #fff;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 18px;
    box-shadow: 0 4px 18px rgba(0,0,0,.05);
}

.info-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.info-list li {
    padding: 10px 0;
    border-bottom: 1px solid #edf1f6;
}

.info-list li:last-child { border-bottom: 0; }

.info-label {
    color: #6b778c;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.info-value {
    color: #172b4d;
    font-weight: 700;
    margin-top: 3px;
}

.badge-soft {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
}

.badge-green { background: #e8f7ef; color: #1e874b; }
.badge-red { background: #fdecea; color: #c0392b; }
.badge-blue { background: #e8f1fb; color: #1f7bb6; }
.badge-orange { background: #fff3e6; color: #d97706; }

.table > thead > tr > th {
    background: #f8fafc;
    color: #253858;
    border-bottom: 1px solid #e8edf3;
}

.table > tbody > tr > td {
    vertical-align: middle;
}

.small-note {
    color: #6b778c;
    font-size: 12px;
    margin-top: 8px;
}

.text-azul{
    color: #17177C !important;
}

.disabled-item{
    opacity: 0.95;
    pointer-events: none;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

/****** ESTILOS PARA MODAL LINEAS TELEFONICAS DATOS DE WIALON *****/
/* ── Header ─────────────────────────────────── */
.modal-header-custom {
    background: linear-gradient(135deg, #1a7fc1 0%, #2a95d3 60%, #3daee8 100%);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header-custom .title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header-custom .icon-wrap {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-header-custom h4 {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.modal-header-custom .subtitle {
    margin: 2px 0 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 12px;
}

.modal-header-custom .close {
    color: #fff;
    opacity: 0.85;
    font-size: 22px;
    margin-top: 0;
    line-height: 1;
    text-shadow: none;
}

.modal-header-custom .close:hover {
    opacity: 1;
}

.badge-status {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    margin-right: 10px;
    letter-spacing: 0.03em;
}

/* ── Secciones ───────────────────────────────── */
.modal-section {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.modal-section:last-child {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-left: 4px solid transparent;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.section-header .section-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

/* colores por sección */
.sec-linea .section-header {
    background: #eaf4fd;
    border-color: #2a95d3;
    color: #1565a0;
}

.sec-linea .section-header .section-icon {
    background: #2a95d3;
    color: #fff;
}

.sec-wialon .section-header {
    background: #edf7f1;
    border-color: #27ae60;
    color: #1a6e3e;
}

.sec-wialon .section-header .section-icon {
    background: #27ae60;
    color: #fff;
}

.sec-cliente .section-header {
    background: #fff8ee;
    border-color: #e67e22;
    color: #a05010;
}

.sec-cliente .section-header .section-icon {
    background: #e67e22;
    color: #fff;
}

.section-body {
    padding: 10px 10px 4px;
}

/* ── Cards ───────────────────────────────────── */
.row-cards {
    margin-bottom: 0;
    margin-left: -4px;
    margin-right: -4px;
}

.row-cards>[class*="col-"] {
    padding-left: 4px;
    padding-right: 4px;
    margin-bottom: 8px;
}

.dato-card {
    background: #f7f9fc;
    border: 1px solid #e6eaf0;
    border-radius: 7px;
    padding: 9px 11px 8px;
    height: 100%;
    transition: box-shadow 0.15s, border-color 0.15s;
    position: relative;
}

.dato-card:hover {
    box-shadow: 0 2px 8px rgba(42, 149, 211, 0.10);
    border-color: #b3d4f0;
}

.dato-label {
    font-size: 10px;
    color: #8a96a3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.dato-label .lbl-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

/* icono coloreado según sección */
.sec-linea .lbl-icon {
    background: #dbeeff;
    color: #2a95d3;
}

.sec-wialon .lbl-icon {
    background: #d5f5e3;
    color: #27ae60;
}

.sec-cliente .lbl-icon {
    background: #fde8cc;
    color: #e67e22;
}

.dato-valor {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dato-valor.mono {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #3a3a3a;
}

.dato-valor.nd {
    font-style: italic;
    color: #bbb;
    font-weight: 400;
    font-size: 12px;
}

/* badge estatus */
.badge-estatus {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 11px;
    border-radius: 999px;
    display: inline-block;
    margin-top: 1px;
}