﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 9pt;
}


.numerico {
    text-align: right
}

.vertical-alignment-helper {
    display: table;
    height: 100%;
    width: 100%;
}

.vertical-align-center {
    /* To center vertically */
    display: table-cell;
    vertical-align: middle;
}

.modal-content {
    /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
    width: inherit;
    height: inherit;
    /* To center horizontally */
    margin: 0 auto;
}

.logo-popUp {
    top: 20px;
}

.borderR {
    border: 1px solid #000000;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    padding: 10px;
}

hr {
    margin-top: 0;
    margin-bottom: 10px;
}

header {
    margin-top: 2px;
}

label {
    font-weight: 400;
    margin-bottom: 0;
}

    label.titulo {
        font-size: small;
        font-weight: 700;
    }

.expandeLabel {
    padding-left: 0;
}

.form-inline .form-control {
    width: 100%;
}

    .form-inline .form-control select {
        width: auto;
    }

.input-group-addon_planes {
    padding-bottom: 0;
    padding-top: 0;
}

.list-group-item {
    padding: 0;
}

input, input:active, input:focus {
    outline: none;
}
    /*and for firefox*/
    input::-moz-focus-inner {
        border: 0;
    }


.form-group1 {
    margin-bottom: 3px;
}

.panel-body {
    padding: 5px 15px 5px 15px;
}

[readonly].form-control {
    background-color: white;
}

.form-horizontal .control-label {
    text-align: left;
    margin-bottom: 10px;
}

.pln-noPadding-horizontal {
    padding-right: 0px;
    padding-left: 0px;
}

.form-group {
    margin-bottom: 3px;
}

.form-group-sm {
    margin-bottom: 3px;
}

.radio label {
    padding-left: 0;
}

.ocultaControl {
    display: none;
}
/*
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                    ESTILO CHECKBOX
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
*/
.checkbox {
    padding-left: 20px;
}

    .checkbox label {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        padding-left: 5px;
    }

        .checkbox label::before {
            content: "";
            display: inline-block;
            position: absolute;
            width: 17px;
            height: 17px;
            left: 0;
            margin-left: -20px;
            border: 1px solid #cccccc;
            border-radius: 3px;
            background-color: #fff;
            -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
            -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
            transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
        }

        .checkbox label::after {
            display: inline-block;
            position: absolute;
            width: 16px;
            height: 16px;
            left: 0;
            top: 0;
            margin-left: -20px;
            padding-left: 3px;
            padding-top: 1px;
            font-size: 11px;
            color: #555555;
        }

    .checkbox input[type="checkbox"] {
        opacity: 0;
        z-index: 1;
    }

        .checkbox input[type="checkbox"]:focus + label::before {
            outline: thin dotted;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        .checkbox input[type="checkbox"]:checked + label::after {
            font-family: "FontAwesome";
            content: "\f00c";
        }

        .checkbox input[type="checkbox"]:indeterminate + label::after {
            display: block;
            content: "";
            width: 10px;
            height: 3px;
            background-color: #555555;
            border-radius: 2px;
            margin-left: -16.5px;
            margin-top: 7px;
        }

        .checkbox input[type="checkbox"]:disabled + label {
            opacity: 0.65;
        }

            .checkbox input[type="checkbox"]:disabled + label::before {
                background-color: #eeeeee;
                cursor: not-allowed;
            }

    .checkbox.checkbox-circle label::before {
        border-radius: 50%;
    }

    .checkbox.checkbox-inline {
        margin-top: 0;
    }

.checkbox-primary input[type="checkbox"]:checked + label::before {
    background-color: #337ab7;
    border-color: #337ab7;
}

.checkbox-primary input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-primary input[type="checkbox"]:indeterminate + label::before {
    background-color: #337ab7;
    border-color: #337ab7;
}

.checkbox-primary input[type="checkbox"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox-danger input[type="checkbox"]:indeterminate + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:indeterminate + label::after,
.checkbox-danger input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox-info input[type="checkbox"]:indeterminate + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox-warning input[type="checkbox"]:indeterminate + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:indeterminate + label::after,
.checkbox-warning input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox-success input[type="checkbox"]:indeterminate + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:indeterminate + label::after {
    background-color: #fff;
}

input[type="checkbox"].styled:checked + label:after {
    font-family: 'FontAwesome';
    content: "\f00c";
}

input[type="checkbox"] .styled:checked + label::before {
    color: #fff;
}

input[type="checkbox"] .styled:checked + label::after {
    color: #fff;
}

/* Estilos datatable */
table.dataTable {
    font-size: 8pt;
}

.table-hover tbody tr:hover > td {
    cursor: pointer;
}
/*select {
    text-overflow:ellipsis;
}*/
.padd-top-5 {
    padding-top: 5px;
}

.padd-bottom-5 {
    padding-bottom: 5px;
}

.padd-left-0 {
    padding-left: 0;
}
.padd-left-1 {
    padding-left: 1px;
}
.padd-left-2 {
    padding-left: 2px;
}
.padd-left-3 {
    padding-left: 3px;
}
.padd-left-4 {
    padding-left: 4px;
}
.padd-left-10 {
    padding-left: 10px;
}


.padd-right-0 {
    padding-right: 0;
}
.padd-right-1 {
    padding-right: 1px;
}
.padd-right-2 {
    padding-right: 2px;
}
.padd-right-3 {
    padding-right: 3px;
}
.padd-right-4 {
    padding-right: 4px;
}

/**/
                       
.stylish-input-group-p .input-group-addon{
    background: white !important; 
    padding:0;
}
.stylish-input-group-p .form-control{
	border-right:0; 
	box-shadow:0 0 0; 
	border-color:#ccc;
}
.stylish-input-group-p button{
    border:0;
    background:transparent;
}

.modal-body .panel-body-p {
    padding:0;
}

.form-group-sm .form-control {
    padding:2px 3px;
}

.form-inline .form-group {
    margin:0;
}

#buscarNemotecnicoGrid_wrapper .col-sm-12, #buscarSaldosCarteraGrid_wrapper .col-sm-12 {
    overflow-x: scroll;
}

.myLegend{
    font-size:9pt;
    display: block;
    width: 111px;
    line-height: inherit;
    color: #333;
    margin-bottom: 0px;
    padding-left:6px;
        border:0;
}
.myFieldset{
    border:1px solid #ccc;
    padding: 5px;
    border-radius:6px;
    margin-right:6px;
}
.red{color:red;}
.pl15{
    padding-left:15px;
}
.tblTotal{width:100%;}
.tblTotal td{padding:2px;}
.valTabTotal { display: inline-block;width: 100%; TEXT-ALIGN: right;border:1px inset;border-color:#c1c1c1;}
#containerL{background:#fff;}
.tdTitle{padding:5px;}

/*GRIVVIEW ORIGINAL*/
.gridstyle
{
   width:70%;
   font-family: Tahoma;
   font-size: 8pt;
   border:1px solid #ccc;
}
.gridstyle td a
{
color:#222;
text-decoration:none;
}
.gridstyle td{
    border:none;
    border-top:1px solid #ccc;
    padding:1px;
}
.gridstyle th{
    border:1px solid #58585a;
    color:#E6E5D4;
    background-color:#58585a;
}
.center{
    text-align:center;
}
.left{
    text-align:left;
}
.right{
    text-align:right;
}
.underLine{
    text-decoration:underline;
}
.hide{
    display:none;
}
.show{
    display:block;
}
.cursor{cursor:pointer}
.noCursor a{cursor:none}