﻿/*select2CSS*/
.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

    .select2-container .select2-selection--single {
        box-sizing: border-box;
        cursor: pointer;
        display: block;
        height: 31px;
        user-select: none;
        -webkit-user-select: none;
    }

        .select2-container .select2-selection--single .select2-selection__rendered {
            display: block;
            padding-left: 8px;
            padding-right: 20px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .select2-container .select2-selection--single .select2-selection__clear {
            position: relative;
        }

    .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
        padding-right: 8px;
        padding-left: 20px;
    }

    .select2-container .select2-selection--multiple {
        box-sizing: border-box;
        cursor: pointer;
        display: block;
        min-height: 32px;
        user-select: none;
        -webkit-user-select: none;
    }

        .select2-container .select2-selection--multiple .select2-selection__rendered {
            display: inline-block;
            overflow: hidden;
            padding-left: 8px;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

    .select2-container .select2-search--inline {
        float: left;
    }

        .select2-container .select2-search--inline .select2-search__field {
            box-sizing: border-box;
            border: none;
            font-size: 12px;
            margin-top: 5px;
            padding: 0;
        }

            .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
                -webkit-appearance: none;
            }

.select2-dropdown {
    font-size: 12px; /*EL PODER DEL CSS*/
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-results {
    display: block;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
}

    .select2-results__option[aria-selected] {
        cursor: pointer;
    }

.select2-container--open .select2-dropdown {
    left: 0;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 4px;
}

    .select2-search--dropdown .select2-search__field {
        padding: 4px;
        width: 100%;
        box-sizing: border-box;
    }

        .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
            -webkit-appearance: none;
        }

    .select2-search--dropdown.select2-search--hide {
        display: none;
    }

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #444;
        line-height: 28px;
    }

    .select2-container--default .select2-selection--single .select2-selection__clear {
        cursor: pointer;
        float: right;
        font-weight: bold;
    }

    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        color: #999;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 26px;
        position: absolute;
        top: 1px;
        right: 1px;
        width: 20px;
    }

        .select2-container--default .select2-selection--single .select2-selection__arrow b {
            border-color: #888 transparent transparent transparent;
            border-style: solid;
            border-width: 5px 4px 0 4px;
            height: 0;
            left: 50%;
            margin-left: -4px;
            margin-top: -2px;
            position: absolute;
            top: 50%;
            width: 0;
        }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default;
}

    .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
        display: none;
    }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
}

    .select2-container--default .select2-selection--multiple .select2-selection__rendered {
        box-sizing: border-box;
        list-style: none;
        margin: 0;
        padding: 0 5px;
        width: 100%;
    }

        .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
            list-style: none;
        }

    .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
        color: #999;
        margin-top: 5px;
        float: left;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__clear {
        cursor: pointer;
        float: right;
        font-weight: bold;
        margin-top: 5px;
        margin-right: 10px;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background-color: #e4e4e4;
        border: 1px solid #aaa;
        border-radius: 4px;
        cursor: default;
        float: left;
        margin-right: 5px;
        margin-top: 5px;
        padding: 0 5px;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
        color: #999;
        cursor: pointer;
        display: inline-block;
        font-weight: bold;
        margin-right: 2px;
    }

        .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
            color: #333;
        }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
    float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 350px; /*COSOS*/
    overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em;
}

    .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
        padding-left: 0;
    }

    .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -1em;
        padding-left: 2em;
    }

        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -2em;
            padding-left: 3em;
        }

            .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                margin-left: -3em;
                padding-left: 4em;
            }

                .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                    margin-left: -4em;
                    padding-left: 5em;
                }

                    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                        margin-left: -5em;
                        padding-left: 6em;
                    }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #5897fb;
    color: white;
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
    background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
    background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

    .select2-container--classic .select2-selection--single:focus {
        border: 1px solid #5897fb;
    }

    .select2-container--classic .select2-selection--single .select2-selection__rendered {
        color: #444;
        line-height: 28px;
    }

    .select2-container--classic .select2-selection--single .select2-selection__clear {
        cursor: pointer;
        float: right;
        font-weight: bold;
        margin-right: 10px;
    }

    .select2-container--classic .select2-selection--single .select2-selection__placeholder {
        color: #999;
    }

    .select2-container--classic .select2-selection--single .select2-selection__arrow {
        background-color: #ddd;
        border: none;
        border-left: 1px solid #aaa;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        height: 26px;
        position: absolute;
        top: 1px;
        right: 1px;
        width: 20px;
        background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
        background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
        background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
    }

        .select2-container--classic .select2-selection--single .select2-selection__arrow b {
            border-color: #888 transparent transparent transparent;
            border-style: solid;
            border-width: 5px 4px 0 4px;
            height: 0;
            left: 50%;
            margin-left: -4px;
            margin-top: -2px;
            position: absolute;
            top: 50%;
            width: 0;
        }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb;
}

    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
        background: transparent;
        border: none;
    }

        .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
            border-color: transparent transparent #888 transparent;
            border-width: 0 4px 5px 4px;
        }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
    background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
    background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0;
}

    .select2-container--classic .select2-selection--multiple:focus {
        border: 1px solid #5897fb;
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
        list-style: none;
        margin: 0;
        padding: 0 5px;
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__clear {
        display: none;
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__choice {
        background-color: #e4e4e4;
        border: 1px solid #aaa;
        border-radius: 4px;
        cursor: default;
        float: left;
        margin-right: 5px;
        margin-top: 5px;
        padding: 0 5px;
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
        color: #888;
        cursor: pointer;
        display: inline-block;
        font-weight: bold;
        margin-right: 2px;
    }

        .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
            color: #555;
        }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    float: right;
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    box-shadow: none;
}

.select2-container--classic .select2-dropdown {
    background-color: white;
    border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
    border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
    max-height: 350px; /*COSOS*/
    overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
    color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: #3875d7;
    color: white;
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb;
}

.checkFirma {
    color: green;
    font-size: 200px;
}

/****************************************************************************** ETIQUETAS - CAMBIOS GLOBALES ********************************************************************/
body {
    padding-top: 56px;
    background-color: #E5E5E5;
}

textarea {
    resize: none;
}

.sticky-offset {
    top: 56px;
}

#body-row {
    margin-left: 0;
    margin-right: 0;
}

#sidebar-container {
    min-height: 92.5vh;
    background-color: #F5F5F5;
    padding: 0;
    max-width: 200px;
}

.texto-10 {
    font-size: 10px;
}

.texto-12 {
    font-size: 12px;
}

.texto-14 {
    font-size: 14px;
}

.texto-16 {
    font-size: 16px;
}

.texto-20 {
    font-size: 20px;
}

.texto-26 {
    font-size: 26px;
}

.botones-principales {
    position: absolute;
    left: 200px;
}

.boton-derecha {
    position: absolute;
    right: 14px;
}

.arriba {
    margin-top: -8px;
}

thead.thead-dark th {
    padding: 0;
}

.toast {
    display: none;
    position: fixed;
    max-width: 400px;
    bottom: 20px;
    right: 20px;
}

    .toast .message {
        font-family: Helvetica, Arial, sans-serif;
        color: #fff;
        text-align: center;
        font-size: 18px;
        padding: 30px 50px;
        border-radius: 4px;
        transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.19), 0 6px 13px 0 rgba(0, 0, 0, 0.24);
        background: rgba(0,0,10,0.7);
    }

.pointer {
    cursor: pointer;
}

.check-correcto {
    width: 300px;
    margin: 50px auto;
}

.svg-success {
    display: inline-block;
    vertical-align: top;
    height: 300px;
    width: 300px;
    opacity: 1;
    overflow: visible;
}

input[type="checkbox"][readonly] {
    pointer-events: none;
}

.boton-xs {
    padding: 0 .5rem;
}

@keyframes success-tick {
    0% {
        stroke-dashoffset: 16px;
        opacity: 1
    }

    100% {
        stroke-dashoffset: 31px;
        opacity: 1
    }
}

@keyframes success-circle-outline {
    0% {
        stroke-dashoffset: 72px;
        opacity: 1
    }

    100% {
        stroke-dashoffset: 0px;
        opacity: 1
    }
}

@keyframes success-circle-fill {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.success-tick {
    fill: none;
    stroke-width: 1px;
    stroke: #ffffff;
    stroke-dasharray: 15px, 15px;
    stroke-dashoffset: -14px;
    animation: success-tick 450ms ease 1400ms forwards;
    opacity: 0;
}

.success-circle-outline {
    fill: none;
    stroke-width: 1px;
    stroke: #81c038;
    stroke-dasharray: 72px, 72px;
    stroke-dashoffset: 72px;
    animation: success-circle-outline 300ms ease-in-out 800ms forwards;
    opacity: 0;
}

.success-circle-fill {
    fill: #81c038;
    stroke: none;
    opacity: 0;
    animation: success-circle-fill 300ms ease-out 1100ms forwards;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .success-tick {
        stroke-dasharray: 0;
        stroke-dashoffset: 0;
        animation: none;
        opacity: 1;
    }

    .success-circle-outline {
        stroke-dasharray: 0;
        stroke-dashoffset: 0;
        animation: none;
        opacity: 1;
    }

    .success-circle-fill {
        animation: none;
        opacity: 1;
    }
}


/* PROGRESS BAR */
.progress {
    position: relative;
    height: 5px;
    display: block;
    width: 100%;
    /*background-color: #acece6;*/
    background-color: #F5AFB1;
    border-radius: 5px;
    background-clip: padding-box;
    margin: 0.5rem 0 1rem 0;
    overflow: hidden;
}

    .progress .determinate {
        position: absolute;
        background-color: inherit;
        top: 0;
        bottom: 0;
        background-color: #26a69a;
        transition: width .3s linear;
    }

    .progress .indeterminate {
        /*background-color: #26a69a;*/
        background-color: #BA0302;
    }

        .progress .indeterminate:before {
            content: '';
            position: absolute;
            background-color: inherit;
            top: 0;
            left: 0;
            bottom: 0;
            will-change: left, right;
            -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
            animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
        }

        .progress .indeterminate:after {
            content: '';
            position: absolute;
            background-color: inherit;
            top: 0;
            left: 0;
            bottom: 0;
            will-change: left, right;
            -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
            animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
            -webkit-animation-delay: 1.15s;
            animation-delay: 1.15s;
        }

@-webkit-keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }

    60% {
        left: 100%;
        right: -90%;
    }

    100% {
        left: 100%;
        right: -90%;
    }
}

@keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }

    60% {
        left: 100%;
        right: -90%;
    }

    100% {
        left: 100%;
        right: -90%;
    }
}

@-webkit-keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }

    60% {
        left: 107%;
        right: -8%;
    }

    100% {
        left: 107%;
        right: -8%;
    }
}

@keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }

    60% {
        left: 107%;
        right: -8%;
    }

    100% {
        left: 107%;
        right: -8%;
    }
}

/* Tablas con scroll */
table.tabla-scroll * {
    height: auto;
}

table.tabla-scroll {
    table-layout: fixed;
    width: 100%;
    box-shadow: 0 0 4px 2px rgba(0,0,0,.4);
    border-collapse: collapse;
    border: 1px solid rgba(0,0,0,.5);
    border-top: 0 none;
}

.tabla-scroll thead {
    background: #212529;
    text-align: center;
    z-index: 2;
}

    .tabla-scroll thead tr {
        z-index: 2;
    }

.tabla-scroll tbody {
    display: block;
    height: 117px;
    overflow-Y: scroll;
    color: #000;
}

.tabla-scroll tr {
    overflow: hidden;
    display: flex;
}

.tabla-scroll th, .tabla-scroll td {
    flex: 1 1 100%;
}

/* Sidebar sizes when expanded and expanded */
.sidebar-expanded {
    width: 230px;
}

.sidebar-collapsed {
    width: 60px;
}

/* Menu item*/
#sidebar-container .list-group a {
    height: 50px;
}

/* Submenu item*/
#sidebar-container .list-group .sidebar-submenu a {
    height: 45px;
    padding-left: 30px;
}

.sidebar-submenu {
    font-size: 0.9rem;
}

/* Separators */
.sidebar-separator-title {
    height: 35px;
}

.sidebar-separator {
    background-color: #333;
    height: 25px;
}

.logo-separator {
    background-color: #333;
    height: 60px;
}

/* Closed submenu icon */
#sidebar-container .list-group .list-group-item[aria-expanded="false"] .submenu-icon::after {
    content: " \f0d7";
    font-family: FontAwesome;
    display: inline;
    text-align: right;
    padding-left: 10px;
}
/* Opened submenu icon */
#sidebar-container .list-group .list-group-item[aria-expanded="true"] .submenu-icon::after {
    content: " \f0da";
    font-family: FontAwesome;
    display: inline;
    text-align: right;
    padding-left: 10px;
}

.infoInvisible {
    visibility: hidden;
}

.cajacontactenos {
    position: fixed;
    width: 320px;
    right: 2%;
    bottom: 10%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    border: 5px #2F3242 solid;
    z-index: 1;
    text-align: right;
    font-size: 16px;
    font-family: "OpenSans","Arial";
    box-shadow: 2px -3px 8px rgba(1, 1, 1, 0.8);
}

.bg-navbar {
    background-color: #2E2E2E !important;
}

.letra-enana {
    font-size: 10px;
}

.letra-mediana {
    font-size: 14px;
}

.letra-11 {
    font-size: 11px;
}

.id {
    width: 100px;
}

.letra-negra {
    color: #000000;
}

input[type="checkbox"].selectedId, #selectall {
    line-height: normal;
    margin: 0;
    float: none;
}

.checkbox {
    top: -18px;
    left: 3px;
    position: relative;
}

.bg-clarito {
    background-color: #E5E5E5;
}

.bg-oscurito {
    background-color: #2B2B2B;
}

.bg-callcenter {
    background-color: #2056AE;
}

.navbar-clarita {
    background-color: #F5F5F5;
}

.menu-clarito-1 {
    background-color: #A8A8A8;
}

.containermod30 {
    width: 30%;
}

/* Spinner */
#brutal-spinner {
    display: none;
}

#div-spinner {
    z-index: 99999;
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100vh;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.19), 0 6px 13px 0 rgba(0, 0, 0, 0.24);
    background-color: rgba(0,0,10,0.7);
}

    #div-spinner > .spinner {
        position: relative;
        width: 127px;
        height: 127px;
    }

@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes anti-rotate-animation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

#div-spinner > .spinner:before, #div-spinner > .spinner:after {
    content: "";
    display: block;
    position: absolute;
    border-width: 4px;
    border-style: solid;
    border-radius: 50%;
}

#div-spinner > .spinner:before {
    width: 117px;
    height: 117px;
    border-bottom-color: #FF2D2D;
    border-right-color: #FF2D2D;
    border-top-color: rgba(33, 33, 33, 0);
    border-left-color: rgba(33, 33, 33, 0);
    top: 0px;
    left: 0px;
    animation: rotate-animation 1s linear 0s infinite;
}

#div-spinner > .spinner:after {
    width: 82px;
    height: 82px;
    border-bottom-color: #FF2D2D;
    border-right-color: #FF2D2D;
    border-top-color: rgba(33, 33, 33, 0);
    border-left-color: rgba(33, 33, 33, 0);
    top: 17px;
    left: 17px;
    animation: anti-rotate-animation 0.85s linear 0s infinite;
}

/* Notificaciones */
#Notificaciones {
    position: fixed;
    z-index: 9999;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    line-height: 1.3;
    top: 75px;
    right: 0;
    width: 420px;
}

.notify {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    margin-bottom: 10px;
    color: #fff;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.19), 0 6px 13px 0 rgba(0, 0, 0, 0.24);
    background-color: rgba(0,0,10,0.7);
}

    .notify label {
        color: #fff;
        margin-bottom: 0;
    }

    .notify:before {
        content: '';
        display: inline-block;
        width: 25px;
        height: 25px;
        min-width: 30px;
        margin-right: 20px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.984c4.407 0 8.016 3.609 8.016 8.016 0 4.406-3.608 8.016-8.016 8.016S3.984 16.407 3.984 12 7.593 3.984 12 3.984m0-2C6.478 1.984 1.984 6.477 1.984 12c0 5.521 4.493 10.016 10.016 10.016S22.016 17.522 22.016 12c0-5.523-4.495-10.016-10.016-10.016zm0 2c4.407 0 8.016 3.609 8.016' fill='%23077CB2'/%3E%3Cpath d='M11.016,6.984V9h1.968V6.984H11.016z M11.016,17.016h1.968v-6h-1.968V17.016z' fill='%23077CB2'/%3E%3C/svg%3E") center/cover no-repeat;
    }

@-webkit-keyframes fade-in {
    from {
        visibility: hidden;
        opacity: 0;
    }

    to {
        visibility: visible;
        opacity: 1;
    }
}

@keyframes fade-in {
    from {
        visibility: hidden;
        opacity: 0;
    }

    to {
        visibility: visible;
        opacity: 1;
    }
}

@-webkit-keyframes slide-show {
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slide-show {
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.top-right.do-show {
    animation: fade-in 2s ease-in-out forwards; /*,fade-in 1s ease-in-out reverse forwards 3s;*/
}

.top-right[data-notification-status="warning"] {
    background-color: #FFCA28;
}

    .top-right[data-notification-status="warning"]:before {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.984c4.407 0 8.016 3.609 8.016 8.016 0 4.406-3.608 8.016-8.016 8.016S3.984 16.407 3.984 12 7.593 3.984 12 3.984m0-2C6.478 1.984 1.984 6.477 1.984 12c0 5.521 4.493 10.016 10.016 10.016S22.016 17.522 22.016 12c0-5.523-4.495-10.016-10.016-10.016zm0 2c4.407 0 8.016 3.609 8.016' fill='%23C19100'/%3E%3Cpath d='M11.016,17.016h1.968V15h-1.968V17.016z M11.016,6.983v6.001h1.968V6.983H11.016z' fill='%23C19100'/%3E%3C/svg%3E") center/cover no-repeat;
    }

.top-right[data-notification-status="notice"] {
    background-color: #29B6F6;
}

    .top-right[data-notification-status="notice"]:before {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.984c4.407 0 8.016 3.609 8.016 8.016 0 4.406-3.608 8.016-8.016 8.016S3.984 16.407 3.984 12 7.593 3.984 12 3.984m0-2C6.478 1.984 1.984 6.477 1.984 12c0 5.521 4.493 10.016 10.016 10.016S22.016 17.522 22.016 12c0-5.523-4.495-10.016-10.016-10.016zm0 2c4.407 0 8.016 3.609 8.016' fill='%23077CB2'/%3E%3Cpath d='M11.016,6.984V9h1.968V6.984H11.016z M11.016,17.016h1.968v-6h-1.968V17.016z' fill='%23077CB2'/%3E%3C/svg%3E") center/cover no-repeat;
    }

.top-right[data-notification-status="error"] {
    background-color: #EF5350;
}

    .top-right[data-notification-status="error"]:before {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.984c4.407 0 8.016 3.609 8.016 8.016 0 4.406-3.608 8.016-8.016 8.016S3.984 16.407 3.984 12 7.593 3.984 12 3.984m0-2C6.478 1.984 1.984 6.477 1.984 12c0 5.521 4.493 10.016 10.016 10.016S22.016 17.522 22.016 12c0-5.523-4.495-10.016-10.016-10.016zm0 2c4.407 0 8.016 3.609 8.016' fill='%23C71612'/%3E%3Cpath d='M13.406,12l2.578,2.578l-1.406,1.406L12,13.406l-2.578,2.578l-1.406-1.406L10.594,12L8.016,9.421l1.406-1.405L12,10.593 l2.578-2.577l1.406,1.405L13.406,12z' fill='%23C71612'/%3E%3C/svg%3E") center/cover no-repeat;
    }

.top-right[data-notification-status="success"] {
    background-color: #66BB6A;
}

    .top-right[data-notification-status="success"]:before {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.984c4.407 0 8.016 3.609 8.016 8.016 0 4.406-3.608 8.016-8.016 8.016S3.984 16.407 3.984 12 7.593 3.984 12 3.984m0-2C6.478 1.984 1.984 6.477 1.984 12c0 5.521 4.493 10.016 10.016 10.016S22.016 17.522 22.016 12c0-5.523-4.495-10.016-10.016-10.016zm0 2c4.407 0 8.016 3.609 8.016' fill='%233A813D'/%3E%3Cpath d='M10.477,13.136l5.085-5.085l1.406,1.406l-6.492,6.492l-3.446-3.445l1.406-1.406L10.477,13.136z' fill='%233A813D'/%3E%3C/svg%3E") center/cover no-repeat;
    }

.top-right[data-notification-status="question"] {
    background-color: #8D6E63;
}

    .top-right[data-notification-status="question"]:before {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.984c4.407 0 8.016 3.609 8.016 8.016 0 4.406-3.608 8.016-8.016 8.016S3.984 16.407 3.984 12 7.593 3.984 12 3.984m0-2C6.478 1.984 1.984 6.477 1.984 12c0 5.521 4.493 10.016 10.016 10.016S22.016 17.522 22.016 12c0-5.523-4.495-10.016-10.016-10.016zm0 2c4.407 0 8.016 3.609 8.016' fill='%23513F39'/%3E%3Cpath d='M12.001,6.314h-0.002c-1.996,0-3.609,1.614-3.609,3.609h1.784c0-0.977,0.85-1.784,1.826-1.784  c0.977,0,1.827,0.807,1.827,1.784c0,1.826-2.718,1.614-2.718,4.544h1.784c0-2.038,2.717-2.294,2.717-4.544  C15.609,7.928,13.997,6.314,12.001,6.314z M11.109,17.186h1.784v-1.826h-1.784V17.186z' fill='%23513F39'/%3E%3C/svg%3E") center/cover no-repeat;
    }

.top-right[data-notification-status="plain"] {
    background-color: #333;
}


/*************************************************************************** INDEX:ASPX *********************************************************************/
#form1 .navbar {
    background-color: #FFFFFF !important;
}

.navbar .btn {
    padding: 0 10px;
}

/* Account */
.arrow-down {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.account-dropdown {
    min-width: 305px;
    position: absolute;
    right: -100px;
    top: -8px;
    background: #fff;
}

    .account-dropdown a {
        text-decoration: none;
    }

    .account-dropdown div:hover a {
        background-color: none;
    }

    .account-dropdown:after {
        content: '';
        display: block;
        width: 19px;
        height: 19px;
        border-bottom: 9px solid #fff;
        border-top: 9px solid transparent;
        border-left: 9px solid transparent;
        border-right: 9px solid transparent;
        position: absolute;
        top: -18px;
        right: 33px;
    }

.account-dropdown__body {
    padding: 12px 0;
}

.account-dropdown__footer {
    border-top: 1px solid #f2f2f2;
}

.account-dropdown__item a {
    display: block;
    color: #333;
    padding: 15px 25px;
    font-size: 14px;
}

.account-dropdown__item:hover {
    background-color: #E9ECEF;
}

.account-dropdown__footer:hover {
    background-color: #E9ECEF;
}
/*.account-dropdown__item:hover {
    display: block;
    color: #333;
    padding: 15px 25px;
    font-size: 14px;
}*/

.account-dropdown__item a i {
    line-height: 1;
    margin-right: 20px;
    font-size: 18px;
    vertical-align: middle;
}

.account-dropdown__footer a {
    display: block;
    color: #333;
    padding: 15px 25px;
    font-size: 14px;
}

    .account-dropdown__footer a i {
        line-height: 1;
        margin-right: 20px;
        font-size: 18px;
        vertical-align: middle;
    }

/****************************************************************** LABORATORIO *************************************************************/
/* REPARACION */
.page-container-nm {
    width: calc(100% - 200px);
    margin: 0 auto;
}

.tab-pane {
    padding: 0 25px;
}

.separator:not(:last-child):after {
    content: " - ";
}

#principalReparacion {
    font-size: 14px;
}

    #principalReparacion table .btn-sm {
        padding: 0 .5rem;
    }

.card-header {
    padding: .2rem 1.25rem;
}

.card-body {
    padding: 1rem;
}

.texto-subrayado {
    text-decoration: underline;
}

.sombra {
    box-shadow: 3px -3px 5px rgba(1, 1, 1, 0.3)
}

#modalBQPrecondiciones {
    max-width: 1200px;
}

#tablaEstados tbody {
    height: 235px;
}

#tablaEstados tr {
    display: block;
}

#tablaEstados th, #tablaEstados td {
    float: left;
}

#tablaEstados tr th:first-child {
    width: 13%;
}

#tablaEstados tr th:nth-child(2) {
    width: 30%;
}

#tablaEstados tr th:nth-child(3) {
    width: 14%;
}

#tablaEstados tr th:nth-child(4) {
    width: 15%;
}

#tablaEstados tr th:nth-child(5) {
    width: 9%;
}

#tablaEstados tr th:nth-child(6) {
    width: 9%;
}

#tablaEstados tr th:last-child {
    width: 9%;
}

#tablaEstados tr td:first-child {
    width: 13%;
}

#tablaEstados tr td:nth-child(2) {
    width: 32%;
}

#tablaEstados tr td:nth-child(3) {
    width: 12%;
}

#tablaEstados tr td:nth-child(4) {
    width: 16.5%;
}

#tablaEstados tr td:nth-child(5) {
    width: 9%;
}

#tablaEstados tr td:nth-child(6) {
    width: 9%;
}

#tablaEstados tr td:last-child {
    width: 8%;
}

#tablaRepuestos tbody {
    height: 210px;
}

#tablaRepuestos tr {
    display: block;
}

#tablaRepuestos th, #tablaRepuestos td {
    float: left;
}

    #tablaRepuestos th:first-child {
        width: 23.7%;
    }

    #tablaRepuestos th:nth-child(3) {
        width: 23.7%;
    }

    #tablaRepuestos th:nth-child(11), #tablaRepuestos th:last-child {
        width: 6.7%;
    }

    #tablaRepuestos td:first-child {
        width: 24%;
    }

    #tablaRepuestos th:nth-child(2), #tablaRepuestos td:nth-child(2) {
        width: 8%;
    }

    #tablaRepuestos td:nth-child(3) {
        width: 24%;
    }

    #tablaRepuestos th:nth-child(4), #tablaRepuestos td:nth-child(4) {
        width: 6%;
    }

    #tablaRepuestos th:nth-child(5), #tablaRepuestos td:nth-child(5) {
        width: 8%;
    }

    #tablaRepuestos th:nth-child(6), #tablaRepuestos td:nth-child(6) {
        width: 2%;
    }

    #tablaRepuestos th:nth-child(7), #tablaRepuestos td:nth-child(7) {
        width: 2%;
    }

    #tablaRepuestos th:nth-child(8), #tablaRepuestos td:nth-child(8) {
        width: 2%;
    }

    #tablaRepuestos th:nth-child(9), #tablaRepuestos td:nth-child(9) {
        width: 2%;
    }

    #tablaRepuestos th:nth-child(10), #tablaRepuestos td:nth-child(10) {
        width: 4%;
    }

    #tablaRepuestos td:nth-child(11) {
        width: 7%;
    }

    #tablaRepuestos td:nth-child(12) {
        width: 7%;
    }

    #tablaRepuestos td:last-child {
        width: 7%;
    }

#tablaRepuestosHW tbody {
    height: 210px;
}

#tablaRepuestosHW tr {
    display: block;
}

#tablaRepuestosHW th, #tablaRepuestosHW td {
    float: left;
    text-align: center;
}



    #tablaRepuestosHW th:first-child {
        width: 19%;
    }

    #tablaRepuestosHW th:nth-child(3) {
        width: 8%;
    }

    #tablaRepuestosHW th:nth-child(11), #tablaRepuestosHW th:last-child {
        width: 8%;
    }

    #tablaRepuestosHW td:first-child {
        width: 19%;
    }

    #tablaRepuestosHW th:nth-child(2), #tablaRepuestosHW td:nth-child(2) {
        width: 8%;
    }

    #tablaRepuestosHW td:nth-child(3) {
        width: 8%;
    }

    #tablaRepuestosHW th:nth-child(4), #tablaRepuestosHW td:nth-child(4) {
        width: 19%;
    }

    #tablaRepuestosHW th:nth-child(5), #tablaRepuestosHW td:nth-child(5) {
        width: 6%;
    }

    #tablaRepuestosHW th:nth-child(6), #tablaRepuestosHW td:nth-child(6) {
        width: 8%;
    }

    #tablaRepuestosHW th:nth-child(7), #tablaRepuestosHW td:nth-child(7) {
        width: 2%;
    }

    #tablaRepuestosHW th:nth-child(8), #tablaRepuestosHW td:nth-child(8) {
        width: 2%;
    }

    #tablaRepuestosHW th:nth-child(9), #tablaRepuestosHW td:nth-child(9) {
        width: 2%;
    }

    #tablaRepuestosHW th:nth-child(10), #tablaRepuestosHW td:nth-child(10) {
        width: 2%;
    }

    #tablaRepuestosHW td:nth-child(11) {
        width: 4%;
    }

    #tablaRepuestosHW td:nth-child(12) {
        width: 7%;
    }

    #tablaRepuestosHW td:last-child {
        width: 7%;
    }

.align-bottom {
    margin-top: 25px;
}

#notebook_ul ul {
    margin: 0 auto;
    padding: 0;
    max-height: 390px;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 5px 5px 0 5px;
    border-left: none;
    border-right: none;
}

#notebook_ul li {
    list-style: none;
    background-color: rgba(0, 0, 0, 0.05);
    background-image: linear-gradient( 90deg, #FFD32E 10px, #EEE 10px, #EEE 11px, transparent 11px);
    padding: 5px 15px 5px 25px;
    border: 1px solid #CCC;
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 3px;
}

/* PREPOST */
#tablaSintomaClientePre tbody {
    height: 150px;
}

#tablaTechnicalsRules tbody {
    height: 250px;
}

#tablaSintomaTecnicoPre tbody {
    height: 150px;
}

#tablaSintomaTecnicoPost tbody {
    height: 150px;
}

/*********************************************************************** LOGISTICA ***********************************************************************/
/* LOGISTICA.ENTRADA-SALIDA */
/*div oculto imagen buena*/
#contenido_fondoContainer {
    visibility: hidden;
    position: absolute;
    left: 2%;
    top: 2%;
    width: 1500px;
    height: 1000px;
    z-index: -99;
}

.contenedorMensajeria, .contenedorPedidos {
    width: calc(100% - 250px);
    margin: 20px auto;
}

.page-container {
    width: calc(100% - 250px);
    margin: 0 auto;
}

.contenedor-principal {
    margin: 20px 10px 0 10px;
    background-color: #F5F5F5;
    border-radius: 10px;
}

    .contenedor-principal > .bg-info {
        z-index: 1;
    }

.contenedor-navs {
    width: 60%;
    margin-bottom: -5px;
}

.contenedor-contenido {
    background-color: #F5F5F5;
    border-radius: 10px;
    margin-top: -18px;
}

.contenedor-margenes {
    margin: 0 25px;
}

#collapseOne {
    border-bottom: 1px solid #DFDFDF;
}

.i-ok {
    color: #28A745;
    font-size: 100px;
}

.contenedorCaptura {
    width: 90%;
    background-color: #C2CBD1;
    border-radius: 30px 30px 10px 10px;
    -moz-border-radius: 30px 30px 10px 10px;
    -webkit-border-radius: 30px 30px 10px 10px;
}

#captura2 {
    height: 250px;
}

.containermod {
    padding-right: 20%;
    padding-left: 20%;
    margin-right: 1%;
    margin-left: 1%;
}

.tabla-repuestos {
    margin-top: -30px;
}

.orden-ok {
    border: 1px solid #28A745;
    background-color: #fff;
    min-width: 20vw;
}

.orden-nok {
    min-width: 20vw;
}

.fa-check.checkear-campo.activo {
    color: #28a745;
}

.fa-times.checkear-campo.activo {
    color: #dc3545;
}

.contenedor-checkear {
    visibility: hidden;
    height: 1px;
}

/* PEDIDOS */
#tablaAccionPedido tbody {
    height: 400px;
}

#contenido_contenidoPedidosInternos {
    height: 600px;
}
/* VALIJAS */
#tablaValijas tbody {
    height: 465px;
}

#tablaAccionValijas tbody {
    height: 400px;
}
/***************************************************************************** FACTURACION ************************************************************************/
/* REPORTES */
#tablaFacturarHuawei tbody, #tablaFacturarZTE tbody, #tablaFacturarSKY tbody {
    height: 600px;
}

#tablaFacturarHuawei tbody {
    min-width: 11400px;
}

#tablaFacturarHuawei thead th {
    min-width: 200px;
}

#tablaFacturarHuawei tbody tr td {
    min-width: 200px;
}

#tablaFacturarZTE tbody {
    min-width: 10200px;
}

#tablaFacturarZTE thead th {
    min-width: 200px;
}

#tablaFacturarZTE tbody tr td {
    min-width: 200px;
}

#tablaFacturarSKY tbody {
    min-width: 5600px;
}

#tablaFacturarSKY thead th {
    min-width: 200px;
}

#tablaFacturarSKY tbody tr td {
    min-width: 200px;
}
/****************************************************************************** UTILIDADES ************************************************************************/
/* CONFIGURACION USUARIO */
.contenedor-etiquetas {
    border-top: 1px solid #E0E0E0;
}

.carousel-inner .carousel-item-right.active,
.carousel-inner .carousel-item-next {
    transform: translateX(33.33%);
}

.carousel-inner .carousel-item-left.active,
.carousel-inner .carousel-item-prev {
    transform: translateX(-33.33%)
}

.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left {
    transform: translateX(0);
}

.carousel-inner > div:not(.active) {
    display: none !important;
}

.smartCarrusel img {
    max-height: 220px;
}

.borde-derecha {
    border-right: 1px solid #E0E0E0;
}

.icono-grande {
    font-size: 30px;
}

.icono-carrusel {
    color: black;
    font-size: 40px;
}

.toc {
    border: 1px solid #ccc;
    position: relative;
}

    .toc:before {
        content: '';
        position: absolute;
        background: #fff;
        padding: 0 10px;
        font-size: 10px;
        top: -8px;
        left: 10px;
    }

    .toc a {
        padding: 3px 10px;
        color: black;
    }

        .toc a:hover {
            /*background-color: #f9f9f9;*/
            text-decoration: none;
        }

.toc-anchor-link {
    display: none;
}

.form-group.custom-input {
    padding: 0;
    margin: 0;
}

.custom-input input[type=file] {
    display: inline-block;
    width: 1px;
    height: 1px;
    pointer-events: none;
    user-select: none;
}

.custom-input .label {
    border: 2px dashed grey;
    border-radius: 5px;
    display: block;
    padding: .2em;
    padding-right: .5em;
    transition: border 300ms ease;
    cursor: pointer !important;
    text-align: center;
}

    .custom-input .label i {
        display: inline-block;
    }

    .custom-input .label i,
    .custom-input .label .title {
        color: grey;
        font-size: 22px;
        transition: 200ms color;
        cursor: pointer !important;
    }

.custom-input .inputLabel {
    display: inline-block;
    position: relative;
    top: -3px;
    cursor: pointer !important;
}

.custom-input .label:hover {
    border: 2px solid black;
}

    .custom-input .label:hover i,
    .custom-input .label:hover .title {
        color: black;
    }

/* TERMINALES ORANGE */
.contenedor-principal .fondo-orange {
    z-index: 2;
    background-color: #FF6600;
}

#captura3 {
    height: 330px;
}

.carruselOrange {
    width: 400px;
}

/***************************************************************** FACTURACION ************************************************************/
/* CCP */
#tablaRegistrosCCP tbody {
    height: 50px;
}

#tablaRegistrosCCPDetalle tbody {
    height: 50px;
}

#tablaEstadosCCPDetalle tbody {
    height: 225px;
}

#tablaEstadosCCPDetalle thead th:nth-child(1) {
    max-width: 20%;
}

#tablaEstadosCCPDetalle thead th:nth-child(2) {
    max-width: 8%;
}

#tablaEstadosCCPDetalle thead th:nth-child(3) {
    max-width: 80%;
}

#tablaEstadosCCPDetalle tbody tr td:nth-child(1) {
    max-width: 18%;
}

#tablaEstadosCCPDetalle tbody tr td:nth-child(2) {
    max-width: 12%;
}

#tablaEstadosCCPDetalle tbody tr td:nth-child(3) {
    max-width: 75%;
}

/* UTILIDADES - GESTION USUARIOS */
#contenido_contenidoGestionUsuarios {
    height: 650px;
}

/*Cabecera de la tabla*/
.tablaGestionUsuarios thead th:first-child {
    max-width: 8%;
}

.tablaGestionUsuarios thead th:nth-child(2) {
    max-width: 15%;
}

.tablaGestionUsuarios thead th:nth-child(3) {
    max-width: 20%;
}

.tablaGestionUsuarios thead th:nth-child(4) {
    max-width: 15%;
}

.tablaGestionUsuarios thead th:nth-child(5) {
    max-width: 15%;
}

.tablaGestionUsuarios thead th:nth-child(6) {
    max-width: 15%;
}

.tablaGestionUsuarios thead th:last-child {
    max-width: 10%;
}

/*Cuerpo de la tabla*/
.tablaGestionUsuarios tbody tr td:first-child {
    max-width: 8%;
}

.tablaGestionUsuarios tbody tr td:nth-child(2) {
    max-width: 15.1%;
    word-wrap: break-word;
}

.tablaGestionUsuarios tbody tr td:nth-child(3) {
    max-width: 20.5%;
    word-wrap: break-word;
}

.tablaGestionUsuarios tbody tr td:nth-child(4) {
    max-width: 15.01%;
    word-wrap: break-word;
}

.tablaGestionUsuarios tbody tr td:nth-child(5) {
    max-width: 15.5%;
    word-wrap: break-word;
}

.tablaGestionUsuarios tbody tr td:nth-child(6) {
    max-width: 15.5%;
    word-wrap: break-word;
}

.tablaGestionUsuarios tbody tr td:last-child {
    max-width: 11%;
}

#tablaPermisosPerfil tbody {
    height: 250px;
}

#tablaPermisosUsuario tbody {
    height: 240px;
}

#modalDatosUsuario {
    min-width: 1000px;
}


/* AVISOS Y ALERTAS */
#tablaAlertas tbody {
    height: 500px;
}

#tablaAlertas thead th:first-child {
    max-width: 4%;
}

#tablaAlertas thead th:nth-child(2) {
    max-width: 8%;
}

#tablaAlertas thead th:nth-child(3) {
    max-width: 12%;
}

#tablaAlertas thead th:nth-child(4) {
    max-width: 60%;
}

#tablaAlertas thead th:last-child {
    max-width: 15%;
}

#tablaAlertas tbody tr td:first-child {
    max-width: 4%;
}

#tablaAlertas tbody tr td:nth-child(2) {
    max-width: 8.1%;
}

#tablaAlertas tbody tr td:nth-child(3) {
    max-width: 12.25%;
}

#tablaAlertas tbody tr td:nth-child(4) {
    max-width: 60.6%;
}

#tablaAlertas tbody tr td:last-child {
    max-width: 15.2%;
}

/* CONSULTA DE REPUESTOS */
#tablaUtilidadesRepuestos tbody {
    height: 620px;
    cursor: pointer;
}

#tablaUtilidadesRepuestos thead th:first-child {
    max-width: 6.9%;
}

#tablaUtilidadesRepuestos thead th:nth-child(2) {
    max-width: 6.9%;
}

#tablaUtilidadesRepuestos thead th:nth-child(3) {
    max-width: 9.9%;
}

#tablaUtilidadesRepuestos thead th:nth-child(4) {
    max-width: 8.9%;
}

#tablaUtilidadesRepuestos thead th:nth-child(5) {
    max-width: 19.9%;
}

#tablaUtilidadesRepuestos thead th:nth-child(6) {
    max-width: 6.9%;
}

#tablaUtilidadesRepuestos thead th:nth-child(7) {
    max-width: 6.9%;
}

#tablaUtilidadesRepuestos thead th:nth-child(8) {
    max-width: 4.9%;
}

#tablaUtilidadesRepuestos thead th:nth-child(9) {
    max-width: 6.9%;
}

#tablaUtilidadesRepuestos thead th:nth-child(10) {
    max-width: 6.9%;
}

#tablaUtilidadesRepuestos thead th:nth-child(11) {
    max-width: 6.9%;
}

#tablaUtilidadesRepuestos thead th:last-child {
    max-width: 6.9%;
}

#tablaUtilidadesRepuestos tbody tr td:first-child {
    max-width: 7%;
}

#tablaUtilidadesRepuestos tbody tr td:nth-child(2) {
    max-width: 7%;
}

#tablaUtilidadesRepuestos tbody tr td:nth-child(3) {
    max-width: 10%;
}

#tablaUtilidadesRepuestos tbody tr td:nth-child(4) {
    max-width: 9%;
}

#tablaUtilidadesRepuestos tbody tr td:nth-child(5) {
    max-width: 20%;
}

#tablaUtilidadesRepuestos tbody tr td:nth-child(6) {
    max-width: 7%;
}

#tablaUtilidadesRepuestos tbody tr td:nth-child(7) {
    max-width: 7%;
}

#tablaUtilidadesRepuestos tbody tr td:nth-child(8) {
    max-width: 5%;
}

#tablaUtilidadesRepuestos tbody tr td:nth-child(9) {
    max-width: 7%;
}

#tablaUtilidadesRepuestos tbody tr td:nth-child(10) {
    max-width: 7%;
}

#tablaUtilidadesRepuestos tbody tr td:nth-child(11) {
    max-width: 7%;
}

#tablaUtilidadesRepuestos tbody tr td:last-child {
    max-width: 7%;
}

/* CONSULTAS */
#tablaConsultas tbody {
    min-width: fit-content;
    height: 400px;
}

#tablaConsultas thead th {
    min-width: 180px;
}

#tablaConsultas tbody tr td {
    min-width: 180px;
    max-width: 180px;
    padding: 0;
    margin: 0;
    word-wrap: break-word !important;
    display: inline-block !important;
}
/***************************************************************** MAESTROS ************************************************************/
/* MAESTRO SINTOMAS TECNICOS */
#tablaMasterSintomasTecnicos tbody {
    height: 600px;
    cursor: pointer;
}

#tablaMasterSintomasTecnicos thead tr.filters th:first-child {
    max-width: 14.8%;
}

#tablaMasterSintomasTecnicos thead tr.filters th:nth-child(2) {
    max-width: 14.8%;
}

#tablaMasterSintomasTecnicos thead tr.filters th:nth-child(3) {
    max-width: 14.9%;
}

#tablaMasterSintomasTecnicos thead tr.filters th:nth-child(4) {
    max-width: 54.5%;
}

#tablaMasterSintomasTecnicos tbody tr td:first-child {
    max-width: 15%;
}

#tablaMasterSintomasTecnicos tbody tr td:nth-child(2) {
    max-width: 15%;
}

#tablaMasterSintomasTecnicos tbody tr td:nth-child(3) {
    max-width: 15%;
}

#tablaMasterSintomasTecnicos tbody tr td:nth-child(4) {
    max-width: 55%;
}

/* MAESTRO REPUESTOS */
/*NUEVONUEVO*/
#tablaMaestroRepuestos tbody {
    height: 400px;
    cursor: pointer;
}
/*OLDOLD*/
#tablaMasterRepuestos tbody {
    height: 500px;
    cursor: pointer;
}

#tablaMasterRepuestos thead th:first-child {
    max-width: 6%;
}

#tablaMasterRepuestos thead th:nth-child(2) {
    max-width: 8%;
}

#tablaMasterRepuestos thead th:nth-child(3) {
    max-width: 15%;
}

#tablaMasterRepuestos thead th:nth-child(4) {
    max-width: 8.5%;
}

#tablaMasterRepuestos thead th:nth-child(5) {
    max-width: 9%;
}

#tablaMasterRepuestos thead th:nth-child(6) {
    max-width: 14.5%;
}

#tablaMasterRepuestos thead th:nth-child(7) {
    max-width: 10%;
}

#tablaMasterRepuestos thead th:nth-child(8) {
    max-width: 7%;
}

#tablaMasterRepuestos thead th:nth-child(9) {
    max-width: 6.6%;
}

#tablaMasterRepuestos thead th:nth-child(10) {
    max-width: 5.9%;
}

#tablaMasterRepuestos thead th:last-child {
    max-width: 7.8%;
}

#tablaMasterRepuestos tbody tr td:first-child {
    max-width: 6%;
}

#tablaMasterRepuestos tbody tr td:nth-child(2) {
    max-width: 8%;
}

#tablaMasterRepuestos thead th:nth-child(3) {
    max-width: 15%;
}

#tablaMasterRepuestos tbody tr td:nth-child(4) {
    max-width: 9%;
}

#tablaMasterRepuestos tbody tr td:nth-child(5) {
    max-width: 9%;
}

#tablaMasterRepuestos tbody tr td:nth-child(6) {
    max-width: 16%;
}

#tablaMasterRepuestos tbody tr td:nth-child(7) {
    max-width: 10%;
}

#tablaMasterRepuestos tbody tr td:nth-child(8) {
    max-width: 7%;
}

#tablaMasterRepuestos tbody tr td:nth-child(9) {
    max-width: 7%;
}

#tablaMasterRepuestos tbody tr td:nth-child(10) {
    max-width: 6%;
}

#tablaMasterRepuestos tbody tr td:last-child {
    max-width: 8%;
}

#tablaRepuestosModelos {
    font-size: 14px;
}

    #tablaRepuestosModelos thead th:first-child {
        max-width: 30%;
    }

    #tablaRepuestosModelos thead th:last-child {
        max-width: 60%;
    }

    #tablaRepuestosModelos tbody tr td:first-child {
        max-width: 30.5%;
    }

    #tablaRepuestosModelos tbody tr td:last-child {
        max-width: 60.5%;
    }

#tablaRepuestosModelos2 thead th:first-child {
    max-width: 20%;
}

#tablaRepuestosModelos2 thead th:nth-child(2) {
    max-width: 80%;
}
/*#tablaRepuestosModelos2 thead th:last-child {
    max-width: 18%;
}*/
#tablaRepuestosModelos2 tbody tr td:first-child {
    max-width: 20.5%;
}

#tablaRepuestosModelos2 tbody tr td:nth-child(2) {
    max-width: 79.5%;
}
/*#tablaRepuestosModelos2 tbody tr td:last-child {
    max-width: 18%;
}*/

#modalCustomRepuestos {
    max-width: 1800px;
}

#modalCustomRepuestos2 {
    max-width: 1800px;
}

#tablaRepuestosStock tbody {
    height: 215px;
}

.tabla-scroll tr.active {
    background-color: aquamarine !important;
}

.einyel-peddin {
    padding-left: 2.3rem !important;
}

.einyel-peddin2 {
    padding-left: 2.7rem !important;
}

/* MAESTRO TERMINALES */
#tablaTerminales tbody {
    height: 520px;
}

/* MAESTRO SFIDS */
#tablaMasterSFID tbody {
    height: 600px;
    cursor: pointer;
}

/* FIRMA CLAIMS */
/*#canvasClaims {
    width: 100%;
}*/

#modalSFID {
    max-width: 1800px;
}

.cardSFID {
    background-color: white;
}

#tablaMasterSFID thead th:first-child {
    max-width: 5%;
}

#tablaMasterSFID thead th:nth-child(2) {
    max-width: 14.8%;
}

#tablaMasterSFID thead th:nth-child(3) {
    max-width: 24.8%;
}

#tablaMasterSFID thead th:nth-child(4) {
    max-width: 9.8%;
}

#tablaMasterSFID thead th:nth-child(5) {
    max-width: 9.8%;
}

#tablaMasterSFID thead th:nth-child(6) {
    max-width: 9.9%;
}

#tablaMasterSFID thead th:nth-child(7) {
    max-width: 9.9%;
}

#tablaMasterSFID thead th:last-child {
    max-width: 14.9%;
}

#tablaMasterSFID tbody tr td:first-child {
    max-width: 5%;
}

#tablaMasterSFID tbody tr td:nth-child(2) {
    max-width: 15%;
}

#tablaMasterSFID tbody tr td:nth-child(3) {
    max-width: 25%;
}

#tablaMasterSFID tbody tr td:nth-child(4) {
    max-width: 10%;
}

#tablaMasterSFID tbody tr td:nth-child(5) {
    max-width: 10%;
}

#tablaMasterSFID tbody tr td:nth-child(6) {
    max-width: 10%;
}

#tablaMasterSFID tbody tr td:nth-child(7) {
    max-width: 10%;
}

#tablaMasterSFID tbody tr td:last-child {
    max-width: 15%;
}

/* MAESTRO PRESCRIPTORES*/

#tablaMasterPrescriptores tbody {
    height: 600px;
    cursor: pointer;
}

#tablaOrdenesPrelaboratorio tbody {
    height: 600px;
    cursor: pointer;
}

.ddlBorder .btn-light {
    background-color: white !important;
    border: 1px solid #ced4da !important;
}

/* MODULO TALLERES*/

#tablaMasterMapeoTalleres tbody {
    height: 500px;
}

#tablaMasterTalleres tbody {
    height: 300px;
}

#tablaMasterTalleres thead th:first-child {
    max-width: 25%;
}

#tablaMasterTalleres thead th:nth-child(2) {
    kmax-width: 30%;
}

#tablaMasterTalleres thead th:nth-child(3) {
    kmax-width: 33%;
}

#tablaMasterTalleres thead th:nth-child(4) {
    max-width: 12%;
}


#tablaMasterTalleres tbody tr td:first-child {
    max-width: 25%;
    display: inline-block;
    word-wrap: break-word !important;
}

#tablaMasterTalleres tbody tr td:nth-child(2) {
    max-width: 30%;
    display: inline-block;
    word-wrap: break-word !important;
}

#tablaMasterTalleres tbody tr td:nth-child(3) {
    max-width: 33%;
    display: inline-block;
    word-wrap: break-word !important;
}

#tablaMasterTalleres tbody tr td:nth-child(4) {
    max-width: 12%;
    display: inline-block;
    word-wrap: break-word !important;
}

/*MODULO LOGISTICA*/
#tablaLogistica tbody {
    height: 500px;
}

#contenido_alertCompletada {
    display: none;
}

#contenido_labelChkCompletada {
    display: inline;
}

#contenido_chkCompletada {
    display: inline;
}

/* ESTADÍSTICAS */
#cardEstadisticasClientes {
    height: 320px;
}

#cardEstadisticasFabricantes {
    height: 320px;
}

#cardEstadisticasInternas {
    height: 320px;
}


#cardEstadisticasEspeciales {
    height: 320px;
}

/* MENU */

.titulomenu {
    background-color: #556080 !important
}

/* STOCK REPUESTOS */

#tablaMonitorStock tbody {
    height: 600px;
}

#tablaMonitorStock thead th:first-child {
    max-width: 8%;
}

#tablaMonitorStock thead th:nth-child(2) {
    max-width: 32%;
}

#tablaMonitorStock thead th:nth-child(3) {
    max-width: 9%;
}

#tablaMonitorStock thead th:nth-child(4) {
    max-width: 11%;
}

#tablaMonitorStock thead th:nth-child(5) {
    max-width: 11%;
}

#tablaMonitorStock thead th:nth-child(6) {
    max-width: 7%;
}

#tablaMonitorStock thead th:nth-child(7) {
    max-width: 7%;
}

#tablaMonitorStock thead th:nth-child(8) {
    max-width: 7%;
}

#tablaMonitorStock thead th:last-child {
    max-width: 7%;
}

#tablaMonitorStock tbody tr td:first-child {
    max-width: 8%;
}

#tablaMonitorStock tbody tr td:nth-child(2) {
    max-width: 33%;
}

#tablaMonitorStock tbody tr td:nth-child(3) {
    max-width: 9%;
}

#tablaMonitorStock tbody tr td:nth-child(4) {
    max-width: 11%;
}

#tablaMonitorStock tbody tr td:nth-child(5) {
    max-width: 11%;
}

#tablaMonitorStock tbody tr td:nth-child(6) {
    max-width: 7%;
}

#tablaMonitorStock tbody tr td:nth-child(7) {
    max-width: 7%;
}

#tablaMonitorStock tbody tr td:nth-child(8) {
    max-width: 7%;
}

#tablaMonitorStock tbody tr td:last-child {
    max-width: 7%;
}

#tablaStockRep tbody {
    height: 600px;
}

#tablaStockRep thead th:first-child {
    max-width: none;
}

#tablaStockRep thead th:nth-child(2) {
    max-width: 4%;
}

#tablaStockRep thead th:nth-child(3) {
    max-width: 16%;
}

#tablaStockRep thead th:nth-child(4) {
    max-width: 4%;
}

#tablaStockRep thead th:nth-child(5) {
    max-width: 16%;
}

#tablaStockRep thead th:nth-child(6) {
    max-width: 4%;
}

#tablaStockRep thead th:nth-child(7) {
    max-width: 4%;
}

#tablaStockRep thead th:nth-child(8) {
    max-width: 4%;
}

#tablaStockRep thead th:last-child {
    max-width: 4%;
}

#tablaStockRep tbody tr td:first-child {
    max-width: none;
}

#tablaStockRep tbody tr td:nth-child(2) {
    max-width: 4%;
}

#tablaStockRep tbody tr td:nth-child(3) {
    max-width: 16%;
}

#tablaStockRep tbody tr td:nth-child(4) {
    max-width: 4%;
}

#tablaStockRep tbody tr td:nth-child(5) {
    max-width: 16%;
}

#tablaStockRep tbody tr td:nth-child(6) {
    max-width: 4%;
}

#tablaStockRep tbody tr td:nth-child(7) {
    max-width: 4%;
}

#tablaStockRep tbody tr td:nth-child(8) {
    max-width: 4%;
}

#tablaStockRep tbody tr td:last-child {
    max-width: 4%;
}

#tablaCuestionario tbody {
    height: 350px;
}

#tablaCuestionario thead th:first-child {
    max-width: none;
}

#tablaCuestionario thead th:last-child {
    max-width: 5%;
}

#tablaCuestionario tbody tr td:first-child {
    max-width: none;
}

#tablaCuestionario tbody tr td:last-child {
    max-width: 5%;
}


/* LOG USUARIOS */
#tablaLogUsuarios tbody {
    height: 550px;
    cursor: pointer;
}

#tablaLogUsuarios thead th:first-child {
    max-width: 32%;
}

#tablaLogUsuarios thead th:nth-child(2) {
    max-width: 23.5%;
}

#tablaLogUsuarios thead th:nth-child(3) {
    max-width: 20%;
}

#tablaLogUsuarios thead th:nth-child(4) {
    max-width: 22.5%;
}


#tablaLogUsuarios tbody tr td:first-child {
    max-width: 32.5%;
}

#tablaLogUsuarios tbody tr td:nth-child(2) {
    max-width: 23.9%;
}

#tablaLogUsuarios tbody tr td:nth-child(3) {
    max-width: 20.4%;
}

#tablaLogUsuarios tbody tr td:nth-child(4) {
    max-width: 22.8%;
}


/************************************************************************************************ MEDIA QUERYS ********************************************************************************************/
@media (max-width: 767px) {
    .page-container {
        width: 90%;
    }
}

@media (max-width: 620px) {
    .page-container {
        width: 100%;
    }

    .contenedor-imagenes {
        margin: 0;
    }

    .contenedorMensajeria {
        width: calc(100%);
        margin: 0 auto;
    }
}
/*********************************************************************************** VUE ****************************************************************************************/
.v-application--wrap {
    min-height: 88vh !important;
}

/*.v-application--wrap .v-menu__content {
    margin-top: -70px;
    margin-left: -210px;
}*/


