﻿/*label {
    color: #686464;
}
*/
.text-primary {
    color: #0b629b !important;
}

.floating-label-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .floating-label-wrapper label {
        position: absolute;
        top: -12px;
        left: 10px;
        font-size: 11px;
        background: white;
        padding: 0 4px;
        color: #333;
        z-index: 1;
    }

/*.input-group input {
    padding-top: 18px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    width: 100%;
    border: 2px solid #66bfff;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}*/

.uib-typeahead-popup.dropdown-menu {
    z-index: 9999 !important;
    max-height: 300px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .uib-typeahead-popup.dropdown-menu li a {
        text-align: center;
    }

.skeleton-loader {
    animation: pulse 1.5s infinite;
}

.skeleton {
    background-color: #e0e0e0;
    border-radius: 4px;
    min-height: 16px;
}

.skeleton-title {
    width: 50%;
    height: 24px;
}

.skeleton-text {
    width: 100%;
    height: 16px;
}

@keyframes pulse {
    0% {
        background-color: #e0e0e0;
    }

    50% {
        background-color: #f0f0f0;
    }

    100% {
        background-color: #e0e0e0;
    }
}

.close-modal-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 30px;
    color: #000;
    z-index: 10000;
    cursor: pointer;
    color: #026eb3;
}

.modal-fullscreen .modal-dialog {
    width: 90vw; /* Deja margen a izquierda y derecha */
    max-width: none;
    margin: 2vh auto; /* Deja margen arriba y abajo */
    /*height: calc(100vh - 4vh);*/ /* Ajusta altura al margen vertical */
    padding: 0;
}

.modal-fullscreen .modal-content {
    height: 100%;
    border-radius: 8px;
    border: none;
    overflow: hidden; /* evita scroll adicional */
    display: flex;
    flex-direction: column;
}

.modal-fullscreen .modal-body {
    flex: 1;
    overflow-y: auto;
}


/*Visor de imagenes*/
.documentos {
    position: relative;
    overflow-x: auto;
    /*padding-right: 20px;*/
}

    .documentos ul {
        width: 100%;
        height: 120px;
        overflow-x: hidden;
        overflow-y: hidden;
    }

        .documentos ul > li {
            cursor: pointer;
            text-align: center;
        }

            .documentos ul > li > img {
                /*width: 25px;*/
                height: 30px;
            }

            .documentos ul > li > span {
                font-size: 0.8em;
            }

#prevScroll {
    position: absolute;
    cursor: pointer;
    left: -5px;
    margin-left: 10px;
    margin-right: 10px;
    top: 30px;
    width: 40px;
    opacity: 0.1;
    z-index: 9;
}

    #prevScroll img {
        width: 40px;
    }

    #prevScroll:hover {
        opacity: 0.6;
    }

#nextScroll {
    position: absolute;
    cursor: pointer;
    left: calc(100% - 55px);
    top: 30px;
    width: 40px;
    opacity: 0.1;
    z-index: 9;
}

    #nextScroll img {
        width: 40px;
    }

    #nextScroll:hover {
        opacity: 0.6;
    }

#preview {
    overflow: scroll;
    border: 0;
    width: 100%;
    height: 100%;
    transform: scale(1);
    -ms-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

/*End Visor de imagenes*/

.custom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Fondo semitransparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10; /* Asegúrate de que el overlay esté por encima del contenido */
}

    .custom-overlay .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
    }


.modal-pdf {
    z-index: 1100 !important; /* Asegúrate de que sea mayor que el z-index del modal actual */
}

.modal-backdrop-pdf {
    z-index: 1099 !important; /* Asegúrate de que sea menor que el modal-pdf, pero mayor que el fondo del modal actual */
}

.no-data-alert {
    display: flex;
    justify-content: center;
    align-items: center;
}

.no-data-alert-content {
    display: flex;
    flex-direction: column; /* Change to column to stack image and text vertically */
    align-items: center; /* Center align items */
    padding: 20px;
}

.no-data-alert-icon img {
    width: 100px;
    height: auto;
    margin-bottom: 20px; /* Space between icon and text */
}

.no-data-alert-text h4 {
    font-size: 24px;
    margin: 0;
    color: #343a40;
    text-align: center;
}

.no-data-alert-text p {
    font-size: 16px;
    margin: 5px 0 0 0;
    color: #6c757d;
    text-align: center;
}

/*          
 * Loading Dots
 * Can we use pseudo elements here instead :after?
 */


.loading span {
    display: inline-block;
    vertical-align: middle;
    width: .6em;
    height: .6em;
    margin: .19em;
    background: #007DB6;
    border-radius: .6em;
    animation: loading 1s infinite alternate;
}

.loading h2 {
    color: #ccc;
    margin: 0;
    font: 1em verdana;
    text-transform: uppercase;
    letter-spacing: .1em;
}

/*
 * Dots Colors
 * Smarter targeting vs nth-of-type?
 */
.loading span:nth-of-type(2) {
    background: #008FB2;
    animation-delay: 0.2s;
}

.loading span:nth-of-type(3) {
    background: #009B9E;
    animation-delay: 0.4s;
}

.loading span:nth-of-type(4) {
    background: #00A77D;
    animation-delay: 0.6s;
}

.loading span:nth-of-type(5) {
    background: #00B247;
    animation-delay: 0.8s;
}

.loading span:nth-of-type(6) {
    background: #5AB027;
    animation-delay: 1.0s;
}

.loading span:nth-of-type(7) {
    background: #A0B61E;
    animation-delay: 1.2s;
}

/*
 * Animation keyframes
 * Use transition opacity instead of keyframes?
 */
@keyframes loading {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*region noti*/
.pop-noti {
    padding: 0;
}

    .pop-noti .row {
        margin: 0;
    }

    .pop-noti .icono {
        background: rgb(9,113,183);
        background: linear-gradient(0deg, rgba(9,113,183,1) 0%, rgba(68,172,217,1) 100%);
        border-radius: 6px 6px 0 0px;
        display: flex;
        align-content: center;
        flex-wrap: inherit;
    }

        .pop-noti .icono img {
            width: 100%;
            max-width: 130px;
            align-items: center;
            display: flex;
            margin: auto;
        }

    .pop-noti .mensaje {
        margin-top: 20px;
    }

@media (min-width: 576px) {
    .pop-noti .icono {
        border-radius: 6px 0 0 6px;
    }

        .pop-noti .icono img {
            max-width: 100%;
        }

    .pop-noti .mensaje {
        margin-top: 50px;
    }
}

.pop-noti .modal-header {
    border: none;
    position: absolute;
    z-index: 100;
}

.pop-noti p {
    padding: 0 20px;
}

.modal {
    --bs-modal-width: 800px;
}

.invalid-feedback-1 {
    display: inline-block;
    width: 100%;
    margin-top: .75rem;
    font-size: .9em;
    color: red;
    border: 1px solid;
    border-radius: 4px;
    padding: 2px 8px 4px;
}

.toolbar-buttons {
    float: right;
    margin: 5px;
}

/*#endregion*/

/*region DOT*/

.dot {
    height: 25px;
    width: 25px;    
    border-radius: 50%;
    display: inline-block;
}
    .dot.green {
        background-color: #28a745;
    }
    .dot.red {
        background-color: rgb(221,44,0);
    }
/*end region*/

/*#region notfound*/
#notfound {
    position: relative;
    height: 100vh;
}

    #notfound .notfound {
        position: absolute;
        left: 50%;
        top: 30%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.notfound {
    max-width: 710px;
    width: 100%;
    padding-left: 190px;
    line-height: 1.4;
}

    .notfound .notfound-404 {
        position: absolute;
        left: 0;
        top: 0;
        width: 150px;
        height: 150px;
    }

        .notfound .notfound-404 h1 {
            font-family: 'Passion One', cursive;
            color: #0072bb;
            font-size: 150px;
            letter-spacing: 15.5px;
            margin: 0px;
            font-weight: 900;
            position: absolute;
            /*left: 50%;*/
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

    .notfound h2 {
        font-family: 'Raleway', sans-serif;
        color: #292929;
        font-size: 28px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2.5px;
        margin-top: 0;
    }

    .notfound p {
        font-family: 'Raleway', sans-serif;
        font-size: 14px;
        font-weight: 400;
        margin-top: 0;
        margin-bottom: 15px;
        color: #333;
    }

    .notfound a {
        font-family: 'Raleway', sans-serif;
        font-size: 14px;
        text-decoration: none;
        text-transform: uppercase;
        background: #fff;
        display: inline-block;
        padding: 15px 30px;
        border-radius: 40px;
        color: #292929;
        font-weight: 700;
        -webkit-box-shadow: 0px 4px 15px -5px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 4px 15px -5px rgba(0, 0, 0, 0.3);
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .notfound a:hover {
            color: #fff;
            background-color: #00b5c3;
        }

@media only screen and (max-width: 480px) {
    .notfound {
        text-align: center;
    }

        .notfound .notfound-404 {
            position: relative;
            width: 100%;
            margin-bottom: 15px;
        }

    .notfound {
        padding-left: 15px;
        padding-right: 15px;
    }
}
/*#endregion*/

.closeButton {
    position: relative;
    height: 24px;
    width: 24px;
    /*line-height: 30px;*/    
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 3px;
    transition: background 0.15s linear;
    display: block;
}

input[type="button"], button:focus {
    outline-color: transparent !important;
    outline-style: solid !important;
    box-shadow: 0 0 0 4px #8a8d94 !important;
}


/*#region button circle*/
.btn-circle {
     width: 30px; 
     height: 30px;
     text-align: center;
     padding: 6px 0;
     font-size: 12px;
     line-height: 1.428571429;
     border-radius: 15px;
}

    .btn-circle.btn-lg {
        width: 50px;
        height: 50px;
        padding: 10px 16px;
        font-size: 18px;
        line-height: 1.33;
        border-radius: 25px;
    }

    .btn-circle.btn-xl {
        width: 70px;
        height: 70px;
        padding: 10px 16px;
        font-size: 24px;
        line-height: 1.33;
        border-radius: 35px;
    }
/*#endregion*/

.btn-excel {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
    background-image: none;
    margin: 0 5px;
}

    .btn-excel:hover {
        color: #fff;
        background-color: #218838;
        border-color: #1e7e34;
        background-image: none;
    }

/*field validation row*/
    .field-validation-row{
        margin-left:1px;        
    }
/*end field validation row*/

/*region success transaction*/
#transaction-success {
    position: relative;
    height: 25vh;
}

    #transaction-success .transaction-success {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.transaction-success {
    /*max-width: 710px;*/
    width: 100%;
    /*padding-left: 190px;*/
    line-height: 1.4;
}

    .transaction-success .transaction-success-404 {
        position: absolute;
        left: 0;
        top: 0;
        width: 150px;
        height: 150px;
    }

    .transaction-success .icon-box {
        color: #fff;
        margin: 0 auto;
        left: 0;
        right: 0;
        top: -70px;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        z-index: 9;
        background: #82ce34;
        padding: 15px;
        text-align: center;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    }

        .transaction-success .icon-box i {
            font-size: 30px;
            position: relative;
            top: 3px;
        }

    .transaction-success h2 {
        font-family: 'Raleway', sans-serif;
        color: #292929;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.8px;
        margin-top: 0;
        text-align: center;
    }

    .transaction-success h4 {
        font-family: 'Raleway', sans-serif;
        color: #292929;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-top: 20px;
        text-align: center;
    }

    .transaction-success a {
        font-family: 'Raleway', sans-serif;
        font-size: 14px;
        text-decoration: none;
        text-transform: uppercase;
        background: #fff;
        display: inline-block;
        padding: 15px 30px;
        border-radius: 40px;
        color: #292929;
        font-weight: 700;
        -webkit-box-shadow: 0px 4px 15px -5px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 4px 15px -5px rgba(0, 0, 0, 0.3);
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .transaction-success a:hover {
            color: #fff;
            background-color: #00b5c3;
        }
/*end success transaction*/

/*region error transaction*/
#transaction-error {
    position: relative;
    height: 25vh;
}

    #transaction-error .transaction-error {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.transaction-error {
    /*max-width: 710px;*/
    width: 100%;
    /*padding-left: 190px;*/
    line-height: 1.4;
}

    .transaction-error .transaction-error-404 {
        position: absolute;
        left: 0;
        top: 0;
        width: 150px;
        height: 150px;
    }

    .transaction-error .icon-box {
        color: #fff;
        margin: 0 auto;
        left: 0;
        right: 0;
        top: -70px;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        z-index: 9;
        background: rgb(211,44,0);
        padding: 15px;
        text-align: center;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    }

        .transaction-error .icon-box i {
            font-size: 30px;
            position: relative;
            top: 3px;
        }

    .transaction-error h3 {
        font-family: 'Raleway', sans-serif;
        color: #292929;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-top: 0;
        text-align: center;
    }

    .transaction-error h4 {
        font-family: 'Raleway', sans-serif;
        color: #292929;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-top: 20px;
        text-align: center;
    }

    .transaction-error a {
        font-family: 'Raleway', sans-serif;
        font-size: 14px;
        text-decoration: none;
        text-transform: uppercase;
        background: #fff;
        display: inline-block;
        padding: 15px 30px;
        border-radius: 40px;
        color: #292929;
        font-weight: 700;
        -webkit-box-shadow: 0px 4px 15px -5px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 4px 15px -5px rgba(0, 0, 0, 0.3);
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .transaction-error a:hover {
            color: #fff;
            background-color: #00b5c3;
        }
/*end error transaction*/

.page-sub-title {
    margin: 10px 10px 10px 10px !important;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 9px;
    color: #026eb3;
}

/*.form-control {
    height: 34px;
}*/

/*modal*/
.modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.fade.in {
    opacity: 1;
}

.modal-content {
    margin-top: 70px;
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5;
}

.app-modal-window .modal-dialog {
    width: 700px;
}

/*end modal*/

.card-title {        
    font-weight: bold !important;    
}

.alineacion-derecha {
    float: right;
    margin-bottom: 10px;
}

.alineacion-izquierda {
    float: left;
}

.separador-ancho {
    width: 0px;
    height: 15px;
    clear: both;
}

.table-bordered-primary {
    border: 2px solid #007bff; /* azul Bootstrap */
}

    .table-bordered-primary th,
    .table-bordered-primary td {
        border: 1px solid #007bff !important;
    }

.table-scroll-wrapper {
    max-height: 60vh; /* Ajustá la altura visible de la grilla */
    overflow-y: auto;
}

.table > thead > tr > th {
    text-transform: uppercase;
}

.table > tbody > tr.active > td {
    background: #a4c516;
}

.table > tbody > tr.active-grey > td {
    background: #b8babd;
}

/* Clearable text inputs */
.clearable {
    background: #fff url(http://i.stack.imgur.com/mJotv.gif) no-repeat right -10px center !important;
    /* border: 1px solid #999; */
    /* padding: 3px 18px 3px 4px; */ /* Use the same right padding (18) in jQ! */
    /* border-radius: 3px; */
    transition: background 0.4s;
}

    .clearable.x {
        background-position: right 5px center !important;
    }

    /* (jQ) Show icon */
    .clearable.onX {
        cursor: pointer;
    }
    /* (jQ) hover cursor style */
    .clearable::-ms-clear {
        display: none;
        width: 0;
        height: 0;
    }
/* Remove IE default X */

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    padding: 10px;
    margin-bottom: 5px;
}

    .well blockquote {
        border-color: #ddd;
        border-color: rgba(0, 0, 0, 0.15);
    }

.well-lg {
    padding: 24px;
    border-radius: 6px;
}

.well-sm {
    padding: 9px;
    border-radius: 3px;
}

/*CUSTOM SELECT*/
.custom-select {
    position: relative;
    display: inline-block;
    vertical-align: middle;    
    zoom: 1;
    *display: inline;    
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .custom-select.small {
        width: 104px;
    }

    .custom-select.medium {
        width: 164px;
    }

    .custom-select.large {
        width: 300px;
    }

    .custom-select.xlarge {
        width: 380px;
    }

    .custom-select > select {
        display: none !important;
    }

    .custom-select > a.dropdown-toggle {
        border-radius: 0;
        /*line-height: 28px;*/
        box-shadow: none;
        background: #ffffff;
        position: relative;
        display: block;
        overflow: hidden;
        padding: 0 0 0 8px;
        /*border: 1px solid #aaa;*/
        text-decoration: none;
        white-space: nowrap;
        cursor: pointer;
        color: #888;
        width: 100%;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        height: 30px;
    }

        .custom-select > a.dropdown-toggle.disabled,
        .custom-select > a.dropdown-toggle.disabled:hover {
            cursor: not-allowed;
            color: #aaa;
            background: #eee;
        }

        .custom-select > a.dropdown-toggle:hover,
        .custom-select.open > a.dropdown-toggle {
            color: #333;
        }

    .custom-select.open > a.dropdown-toggle {
        border-bottom: 0;
        line-height: 29px;
    }

.control-group.error .custom-select > a.dropdown-toggle {
    border-color: #f09784;
    color: #d68273;
}

.custom-select > a.dropdown-toggle > span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select > a.dropdown-toggle > b {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 18px;
    height: 100%;
}

    .custom-select > a.dropdown-toggle > b:before {        
        display: inline-block;
        font-family: FontAwesome;
        font-size: 12px;
        position: relative;
        top: -1px;
        left: 1px;
    }

.custom-select.open > a.dropdown-toggle > b:before {
    content: "\f0d8";
}

.custom-select > .dropdown-menu {
    margin-top: 0;
    border: 1px solid #aaa;
    border-top: 0;
    padding-bottom: 0;
    width: auto;
    min-width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
}

    .custom-select > .dropdown-menu > .custom-select-search {
        position: relative;
        z-index: 1010;
        margin: 0;
        padding: 0 4px;
        white-space: nowrap;
    }

        .custom-select > .dropdown-menu > .custom-select-search > input {
            width: 100%;
            height: 30px;
            margin: 0;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            padding: 4px 20px 4px 5px;
            border-radius: 0;
        }

        .custom-select > .dropdown-menu > .custom-select-search:after {
            content: "\f002";
            display: inline-block;
            color: #888;
            font-family: FontAwesome;
            font-size: 14px;
            position: absolute;
            top: 4px;
            right: 10px;
        }

    .custom-select > .dropdown-menu > ul {
        border-color: #aaa;
        border-top: 0;
        margin: 4px 0;
        padding: 0;
        list-style: none;
        background-color: #fff;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: 240px;
        padding-right: 14px;
    }

        .custom-select > .dropdown-menu > ul > li > a {
        /*    font-size: 13px;*/
            margin-bottom: 1px;
            margin-top: 1px;
            display: block;
            padding: 3px 8px;
            clear: both;
            font-weight: normal;
            line-height: 20px;
            color: #333;
            cursor: pointer;
            width: 100%;
        }

            .custom-select > .dropdown-menu > ul > li > a:hover,
            .custom-select > .dropdown-menu > ul > li > a:focus {
                color: #fff;
                text-decoration: none;
                background-repeat: repeat-x;
            }

            .custom-select > .dropdown-menu > ul > li > a:hover {
                background: #4f99c6;
            }

            .custom-select > .dropdown-menu > ul > li > a:focus {
                background: #2283c5;
            }

        .custom-select > .dropdown-menu > ul > li.empty-result > em {
            text-align: center;
            padding: 4px 8px;
            display: block;
        }

    .custom-select > .dropdown-menu > .custom-select-action > button {
        border-radius: 0;
        background-image: none;
    }

    .custom-select > .dropdown-menu:before {
        border: 0;
    }
/*END CUSTON SELECT*/

/*BTN REMOVE CUSTOM SELECT*/
.remove-custom-select {
    width: calc(2.25rem + 0.5px);
    height: calc(2.25rem + 0.5px);
}
/*END BTN REMOVE CUSTOM SELECT*/

/*VALIDATIONS*/
textarea.ng-invalid:not(.no-valid-style),
input[type="text"].ng-invalid:not(.no-valid-style),
input[type="password"].ng-invalid:not(.no-valid-style),
input[type="date"].ng-invalid:not(.no-valid-style),
input[type="datetime-local"].ng-invalid:not(.no-valid-style),
input[type="datetime"].ng-invalid:not(.no-valid-style),
input[type="number"].ng-invalid:not(.no-valid-style),
input[type="email"].ng-invalid:not(.no-valid-style),
select.btn-primary.ng-invalid:not(.no-valid-style),
select.ng-invalid:not(.no-valid-style) {
    border-left: 4px solid #ff0000 !important;
    background-color: #FFEBD6 !important;
}

input[type="text"].ng-valid:not(.no-valid-style),
input[type="password"].ng-valid:not(.no-valid-style),
input[type="date"].ng-valid:not(.no-valid-style),
input[type="datetime-local"].ng-valid:not(.no-valid-style),
input[type="datetime"].ng-valid:not(.no-valid-style),
input[type="email"].ng-valid:not(.no-valid-style),
input[type="number"].ng-valid:not(.no-valid-style),
select.ng-valid:not(.no-valid-style) {
    background-color: #FFFFFF;
    border-left: 4px solid #088b0b !important;
}

select[disabled].ng-valid,
input[type="number"]:disabled.ng-valid,
input[type="email"]:disabled.ng-valid,
input[type="text"]:disabled.ng-valid {
    background-color: #efefef !important;
    border: 1px solid #ccc;
}
/**/

legend {
    font-size: 1.3rem !important; 
}

.md-tooltip {
    font-size: 12px !important;
}

.info-feedback {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #007bff;
}

/*MSG*/
.msg {
    background: #fefefe;
    color: #666666;
    font-weight: bold;
    font-size: small;
    padding: 5px;
    padding-left: 16px;
    border-top: solid 3px #CCCCCC;
    border-radius: 5px;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 10px 10px -5px rgba(0,0,0,.08);
    -moz-box-shadow: 0 10px 10px -5px rgba(0,0,0,.08);
    box-shadow: 0 10px 10px -5px rgba(0,0,0,.08);
}

.msg-clear {
    border-color: #fefefe;
    -webkit-box-shadow: 0 7px 10px -5px rgba(0,0,0,.15);
    -moz-box-shadow: 0 7px 10px -5px rgba(0,0,0,.15);
    box-shadow: 0 7px 10px -5px rgba(0,0,0,.15);
}

.msg-info {
    border-color: #b8dbf2;
}

.msg-success {
    border-color: #cef2b8;
}

.msg-warning {
    border-color: rgba(255,165,0,.5);
}

.msg-danger {
    border-color: #ec8282;
}

.msg-primary {
    border-color: #a5a9ad;
}

.msg-magick {
    border-color: #e0b8f2;
}

.msg-info-text {
    color: #39b3d7;
}

.msg-success-text {
    color: #80d651;
}

.msg-warning-text {
    color: #db9e34;
}

.msg-danger-text {
    color: #c9302c;
}

.msg-primary-text {
    color: rgba(47,106,215,.9);
}

.msg-magick-text {
    color: #bb39d7;
}
/*END MSG*/

/*bs callout*/
.bs-callout {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
}

    .bs-callout h5 {
        margin-top: 0;
        margin-bottom: 5px;
    }

    .bs-callout p:last-child {
        margin-bottom: 0;
    }

    .bs-callout code {
        border-radius: 3px;
    }

    .bs-callout + .bs-callout {
        margin-top: -5px;
    }

.bs-callout-default {
    border-left-color: #777;
}

    .bs-callout-default h5 {
        color: #777;
    }

.bs-callout-primary {
    border-left-color: #428bca;
}

    .bs-callout-primary h5 {
        color: #428bca;
    }

.bs-callout-success {
    border-left-color: #5cb85c;
}

    .bs-callout-success h5 {
        color: #5cb85c;
    }

.bs-callout-danger {
    border-left-color: #d9534f;
}

    .bs-callout-danger h5 {
        color: #d9534f;
    }

.bs-callout-warning {
    border-left-color: #f0ad4e;
}

    .bs-callout-warning h5 {
        color: #f0ad4e;
    }

.bs-callout-info {
    border-left-color: #5bc0de;
}

    .bs-callout-info h5 {
        color: #5bc0de;
    }

/*end callout*/

.border-fs-gray {
    border: 2px solid #dbdada !important;
}

.nav-sidebar .menu-openX > .nav-treeview {
    display: block;
}

.campos {
    height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid gray;
}

.icheck-campo {
    margin: 5px;
    position: relative !important;
}

.filtros {
    height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid gray;
    padding-top: 2px
}

.filtros-run {
    height: 150px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid gray;
    padding-top: 2px
}

.data-run {
    height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid gray;
    margin-top: 2px;
    padding-top: 2px
}

.btn-filtros {
    float:right;
}

.grupos {
    height: 262px !important;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid gray;
}

.btn-grupos {
    position: absolute;
    top: 72px;
    right: 2px;
    width: 20px;
}

    .btn-grupos > button {
        opacity: 0.25;
        transition: opacity .5s ease-out;
        -moz-transition: opacity .5s ease-out;
        -webkit-transition: opacity .5s ease-out;
        -o-transition: opacity .5s ease-out;
    }

        .btn-grupos > button:hover {
            opacity: 1;
            transition: opacity .5s ease-out;
            -moz-transition: opacity .5s ease-out;
            -webkit-transition: opacity .5s ease-out;
            -o-transition: opacity .5s ease-out;
        }
