﻿.ClsInformation {
    animation: shake 0.92s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.ClsEnProceso {
    background-color: #4caf5063 !important;
    animation: shake 0.92s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.ClsErrorInterCia {
    background-color: #f443361c !important;
    animation: shake 0.92s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.ClsEnProcesoInterCia {
    background-color: #ffc10747 !important;
    animation: shake 0.92s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.btnFloatCustom {
    width: 38px !important;
    height: 38px !important;
    padding: 9px 12px !important;
    font-size: 14px !important;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.ellipsisLabel {
    max-width: 105px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 500;
}

    .ellipsisLabel:hover {
        text-decoration: underline;
    }

.tdCustom {
    text-align: center;
}

.tdResaltar {
    transition: all 0.5s ease-in-out;
}

    .tdResaltar:hover {
        text-decoration: underline;
        color: #2196f3;
        cursor: pointer;
        font-weight: 700;
    }

.ui-combobox {
    display: inline-block;
    margin: 0;
    margin-right: 1.8em;
    position: relative;
}

.ui-combobox-input {
    padding: 0.2em;
    margin: 0;
}

.ui-combobox-button {
    position: absolute;
    width: 1.8em !important;
    margin: 0;
    margin-left: -1px;
    top: 0;
    bottom: 0;
}

    .ui-combobox-button .ui-button-text {
        padding: 0em;
    }

.ui-combobox .ui-autocomplete {
    max-height: 10em;
    overflow-y: auto;
    overflow-x: hidden;
}

.tabContenedorBusqueda {
    -webkit-animation: pulse 0.5s ease-in alternate;
    animation: pulse 0.5s ease-in alternate;
}

.tabCstmBusqueda {
    border: 2.5px solid transparent !important;
    border-top-right-radius: 15px !important;
    border-top-left-radius: 15px !important;
    background-color: #FFF !important;
    cursor: pointer;
}

.nav > li.active > .tabCstmBusqueda {
    border-color: #1ab394 #ddd0 transparent !important;
    color: #09967a !important;
}

.h4AgregarComplemento {
    color: #14394a;
    cursor: pointer !important;
    /*max-width: 205px;*/
    margin-top: 5px !important;
}

    .h4AgregarComplemento:hover {
        color: #ad4e4e;
    }

.complementoContainer {
    -webkit-animation: bounceInDown 0.5s ease-in alternate;
    animation: bounceInDown 0.5s ease-in alternate;
}

    .complementoContainer > div:first-child {
        background: #f3f3f4;
        margin-bottom: 17px;
        padding-bottom: 15px;
        box-shadow: 1px 2px 13px -2px black;
    }

.liImpuestosLocales {
    font-size: 14px;
    font-weight: bold;
    color: #1ab394;
    list-style: none;
    margin-left: -16px;
    -webkit-animation: pulse 0.5s ease-in alternate;
    animation: pulse 0.5s ease-in alternate;
    padding: 3px;
}

    .liImpuestosLocales > span {
        background-color: #ed5565;
        margin-left: 24px;
        color: white;
        font-weight: 600;
        border-radius: 19px;
        cursor: pointer !important;
        font-size: 12px;
    }

        .liImpuestosLocales > span:hover {
            opacity: 0.6;
        }

.ClsTimbrado {
    text-align: center;
    font-weight: bold;
    color: #1ab394;
}

.ClsSinTimbre {
    text-align: center;
    font-weight: bold;
    color: #d48b93;
}

.ClsImprimirEnAS400 {
    text-align: center;
    font-weight: bold;
    color: #d3ab34;
}

.cstmRow:hover {
    opacity: 1 !important;
    cursor: pointer;
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.01, 1.01, 1.01);
        transform: scale3d(1.01, 1.01, 1.01);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.01, 1.01, 1.01);
        transform: scale3d(1.01, 1.01, 1.01);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}




/*////////////////////////////////*/

.toogleCheckBoxCHK {
    height: 0;
    width: 0;
    visibility: hidden;
}

.toogleLabelCHK {
    cursor: pointer !important;
    text-indent: -9999px;
    width: 60px;
    height: 27px;
    background: grey;
    display: block;
    border-radius: 100px;
    position: relative;
    margin-top: -17px;
    margin-left: 50px;
}

    .toogleLabelCHK:after {
        content: '';
        position: absolute;
        top: 1px;
        left: 3px;
        width: 23px;
        height: 23px;
        background: #fff;
        border-radius: 90px;
        transition: 0.3s;
    }

input:checked + .toogleLabelCHK {
    background: #1ab394;
    cursor: pointer;
}

    input:checked + .toogleLabelCHK:after {
        left: calc(100% - 3px);
        transform: translateX(-100%);
    }

.toogleLabelCHK:active:after {
    width: 54.5px;
}

.tblUsuariosTemp {
    -webkit-animation: fadeIn 0.5s ease-in alternate;
    animation: fadeIn 0.5s ease-in alternate;
}



@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}


/* Spinner */

#spinnerLogin {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #ffffff7a;
    border-radius: 21px;
    visibility: hidden;
}

.sk-chase {
    width: 40px;
    height: 40px;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
    top: 50%;
    left: 50%;
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

    .sk-chase-dot:before {
        content: '';
        display: block;
        width: 25%;
        height: 25%;
        background-color: #c32033;
        border-radius: 100%;
        animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
    }

    .sk-chase-dot:nth-child(1) {
        animation-delay: -1.1s;
    }

    .sk-chase-dot:nth-child(2) {
        animation-delay: -1.0s;
    }

    .sk-chase-dot:nth-child(3) {
        animation-delay: -0.9s;
    }

    .sk-chase-dot:nth-child(4) {
        animation-delay: -0.8s;
    }

    .sk-chase-dot:nth-child(5) {
        animation-delay: -0.7s;
    }

    .sk-chase-dot:nth-child(6) {
        animation-delay: -0.6s;
    }

    .sk-chase-dot:nth-child(1):before {
        animation-delay: -1.1s;
    }

    .sk-chase-dot:nth-child(2):before {
        animation-delay: -1.0s;
    }

    .sk-chase-dot:nth-child(3):before {
        animation-delay: -0.9s;
    }

    .sk-chase-dot:nth-child(4):before {
        animation-delay: -0.8s;
    }

    .sk-chase-dot:nth-child(5):before {
        animation-delay: -0.7s;
    }

    .sk-chase-dot:nth-child(6):before {
        animation-delay: -0.6s;
    }

@keyframes sk-chase {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot {
    80%, 100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    }

    100%, 0% {
        transform: scale(1.0);
    }
}

/*.sk-folding-cube {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    top: 50%;
    -ms-transform: translateY(-50%);
}

    .sk-folding-cube .sk-cube {
        float: left;
        width: 50%;
        height: 50%;
        position: relative;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

        .sk-folding-cube .sk-cube:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #c32033;
            -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
            animation: sk-foldCubeAngle 2.4s infinite linear both;
            -webkit-transform-origin: 100% 100%;
            -ms-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
        }

    .sk-folding-cube .sk-cube2 {
        -webkit-transform: scale(1.1) rotateZ(90deg);
        transform: scale(1.1) rotateZ(90deg);
    }

    .sk-folding-cube .sk-cube3 {
        -webkit-transform: scale(1.1) rotateZ(180deg);
        transform: scale(1.1) rotateZ(180deg);
    }

    .sk-folding-cube .sk-cube4 {
        -webkit-transform: scale(1.1) rotateZ(270deg);
        transform: scale(1.1) rotateZ(270deg);
    }

    .sk-folding-cube .sk-cube2:before {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .sk-folding-cube .sk-cube3:before {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .sk-folding-cube .sk-cube4:before {
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
    }

@-webkit-keyframes sk-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes sk-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}
*/
/*
#dataUserName {
    text-transform: lowercase !important;
}

    #dataUserName:first-letter {
        text-transform: capitalize !important;
    }*/


.nav > li > #dataUser:hover {
    /*background-color: #367fa9 !important;*/
    background-color: #5a5a5a !important;
}

.nav > li > #dataUser:focus, .nav .open > #dataUser {
    /*background-color: #3c8dbc !important;*/
    background-color: #5a5a5a !important;
}

#menuAdminUser {
    border-top: 5px solid #7a7a7a;
}

    #menuAdminUser:before {
        content: "";
        display: block;
        position: absolute;
        top: -10px;
        border-bottom: 15px solid #7a7a7a;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        margin: 0 auto;
        width: 0;
        left: 0;
        right: 0;
    }

.userLogged {
    right: 6%;
}

.menuAccionesAdmin {
    margin-top: 5% !important;
    background-color: #7a7a7a;
    margin-right: 1%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.appContainer {
    padding: 20px;
    position: relative;
    top: 54px;
}

.menuAccionesSelect {
    /* border-top: solid #ffffff33 1px; */
    height: 33px;
    font-size: 13px;
    cursor: pointer;
    margin-left: 2px;
    margin-top: 8px;
}

    .menuAccionesSelect > a {
        color: #ffffffa8 !important;
    }

        .menuAccionesSelect > a:hover {
            color: #ffffff !important;
            font-weight: 600;
        }

.customPaginator {
    /*width: 400px;*/
    text-align: right;
    /*margin-right: 15px !important;*/ 
    margin-top: 16px;
}

.customPaginatorText {
    font-size: 13px;
    color: #124f84
}

@media (max-width: 767px) {
    .menuAccionesAdmin {
        background-color: #3c8dbc;
        margin-top: 0% !important;
        margin-right: 0% !important;
        border-top: solid #b5b5b5 1px !important;
    }

    #menuAdminUser {
        border-top: none;
    }

        #menuAdminUser:before {
            display: none;
        }

    .menuAccionesSelect {
        border-top: none;
        text-align: center;
    }

    .userLogged {
        right: 0%;
    }

    .appContainer {
        top: 120px;
    }

    .customPaginator {
        text-align: left;
        /*margin-right: 0px !important;*/
    }

    .customPaginatorText{
        margin-bottom: 10px;
    }
}



/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #676a6c;
    border-radius: 10px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #4d4e4e;
    }



.modal-backdrop.in {
    opacity: 0.3 !important;
}


/* CSS rules are kept repetitive so that you can get CSS rules for each button easily :) */


#app-cover {
    display: table;
    width: 600px;
    margin: 80px auto;
    counter-reset: button-counter;
}


.toggle-button-cover {
    position: relative;
    width: 200px;
    height: 60px;
}

.button-cover,
.knobs,
.layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.button {
    position: relative;
    width: 74px;
    height: 34px;
    margin: 3px auto 0 auto;
    overflow: hidden;
}

    .button.r,
    .button.r .layer {
        border-radius: 100px;
    }

    .button.b2 {
        border-radius: 2px;
    }

.checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs {
    z-index: 2;
}

.layer {
    width: 100%;
    background-color: #00000014;
    transition: 0.3s ease all;
    z-index: 1;
}

/* Button 3 */
#button-3 .knobs:before {
    content: "SI";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 26px;
    height: 26px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
    background-color: #3c8dbc;
    border-radius: 50%;
    transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}

#button-3 .checkbox:active + .knobs:before {
    width: 46px;
    border-radius: 100px;
}

#button-3 .checkbox:checked:active + .knobs:before {
    margin-left: -26px;
}

#button-3 .checkbox:checked + .knobs:before {
    content: "NO";
    left: 42px;
    background-color: #f44336;
}

#button-3 .checkbox:checked ~ .layer {
    background-color: #00000014;
}

.form-control:focus, .single-line:focus {
    border-color: #3c8dbc61 !important;
}

/*#tblLocalidades >*/ 
.dataTables_scrollBody {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}


@media screen and (max-width: 767px) {
    .table-responsive {
        width: auto !important;
        border: none !important;
    }
}




.btn {
    font-size: 12.5px !important;
}


