﻿/*  
    Hoja de estilos estandar para .NET, contiene todos los estilos ques aplican tanto para Portales Web como para Aplicativos Web
    ©ACTSIS.Angela.Jerez.2017-01-05
    v.8.01 2022-11-03 blas.gil: Se agregó estilo de .modal-open para evitar desplazamiento  
*/


/* Estilos Generales del HTML y Body */
html {
    height: 100%;
}

body {
    height: 100%;
    font-size: 13px;
    background-color: #fff;
}

/* Estilos fondos*/

.bg-primary {
    background: #2681a4; /* Old browsers */
    color: #ffffff;
}

/* Estilos personalizados paneles */

.panel-heading {
    padding: 7px 15px;
}

.panel-heading-btn {
    padding: 3px 3px 3px 15px;
}

.panel-title-btn {
    margin-top: 5px;
}

.panel-title-pantalla {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    Font-weight: 700;
}

.panel-primary {
    border-color: #ddd;
}

.panel-body {
    padding: 5px;
}

.panel-primary > .panel-heading {
    background: #2681a4;
    color: #ffffff;
}

.panel-default > .panel-heading {
    background: #d4e6ed; /* Old browsers */
    color: #0d5570;
}

.panel-default,
.panel-default .btn,
.panel-default .panel-title {
    font-size: 12px;
}

/* Estilos personalizados botones */

.btn {
    padding: 1px 5px;
}

.input-group-btn > .btn {
    height: 22px;
}

.btn-signin {
    padding: 6px 12px;
}

.btn-panel-primary {
    background-color: transparent;
    border: 0;
    font-size: 17px;
}

    .btn-panel-primary:hover {
        background-color: #bad8e3;
    }

/* Estilos personalizados modales */
.modal-header {
    padding: 5px;
}

.modal-footer {
    padding: 5px;
}

.modal-body {
    padding: 10px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

/* Estilo personalizado para evitar desplazamiento de modal Boostrap */
.modal-open {
    overflow: auto;
    padding-right: 0 !important;
}

#divDialogMessage {
    z-index: 20000;
}

/* Estilo personalizados pager GridView */
.pager-padding > td > table > tbody > tr > td > a,
.pager-padding > td > table > tbody > tr > td > span {
    padding: 5px 5px;
    border: 1px solid #ddd;
    position: relative;
    float: left;
    padding: 3px 10px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pager-padding > td > table > tbody > tr > td > span {
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}

.pager-padding > td > table > tbody > tr > :first-child > a,
.pager-padding > td > table > tbody > tr > :first-child > span {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pager-padding > td > table > tbody > tr > :last-child > a,
.pager-padding > td > table > tbody > tr > :last-child > span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* Estilos personalizados formularios */

.form-group {
    margin-bottom: 8px;
}

.form-control {
    height: 22px;
    padding: 3px 6px;
    font-size: 12px;
}

.input-group-sm {
    width: 130px !important;
}

.input-group-xs {
    width: 80px !important;
}

.input-group-addon {
    padding: 4px 12px;
}

.alert {
    padding: 5px;
    margin-bottom: 2px;
    border: 1px solid transparent;
    border-radius: 2px;
    width: 100%;
}

textarea {
    overflow: auto;
    max-width: 100%;
    min-width: 100%;
}

.btn-group-justified label {
    display: inline-block;
    padding-left: 3px;
    vertical-align: middle;
}


.checkbox-inline-disabled {
    position: relative;
    display: inline-block;
    padding-left: 5px;
    margin-bottom: 7px;
    font-weight: normal;
    vertical-align: middle;
    cursor: not-allowed;
}

.checkbox-right {
    float: right;
    vertical-align: middle;
}

.form-control-right {
    height: 22px;
    padding: 3px 6px;
    font-size: 12px;
    text-align: right;
    width: 100%;
}

/* Estilos personalizados de Headers */

.h4, h4 {
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}
/* Estilos personalizados de Contenedores*/

.container-fluid {
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
}

/* Estilos personalizados Navbar*/

.navbar-default {
    background: #f8f8f8;
}

/* Estilos personalizados  */
.control-label-right {
    text-align: right;
    word-wrap: break-word;
}

@media screen and (max-width: 767px) {
    .control-label-right {
        text-align: left;
    }

    .control-label-center {
        text-align: center;
    }

    .btnAyuda {
        display: none;
    }
}

/************************/
/*Estilos para el Portal*/
/************************/
/* Estilos personalizados botones */
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
    top: 10px;
    left: 7px;
    height: 0;
    width: 0;
    color: #337ab7;
    border: 0;
    border-radius: 0;
    text-align: center;
    line-height: 0;
    box-shadow: 0;
    box-sizing: content-box;
    background-color: white;
    content: '\e114';
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
    content: '\e113';
    background-color: white;
}

/*Estilos personalizados formularios */

.input-group-addon {
    padding: 4px 12px;
}

.size-map {
    width: 100%;
}

.form-control-feedback {
    right: 15px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    margin-top: 4px;
    color: inherit;
}

/*Estilos personalizados Controles */

.label-on-top {
    margin-bottom: 0;
    margin-top: 5px;
}

/*Estilos personalizados Menú*/

@media (min-width: 768px) {
    .sidebar {
        width: 260px;
    }
}

/*Estilos para Thumbnail de carga de fotos*/
.fileUpload {
    position: relative;
    overflow: hidden;
    margin: 2px;
}

    .fileUpload input.upload {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        padding: 0;
        font-size: 20px;
        cursor: pointer;
        opacity: 0;
        filter: alpha(opacity=0);
        background: transparent;
    }

.sin-padding {
    padding-right: 2px;
    padding-left: 2px;
}

.solo-padding-left {
    padding: 2px 2px 2px 15px;
}

.margin-bottom {
    margin-bottom: 2px;
}

.input-group-addon {
    padding: 3px 12px;
}

/*Estilos Loading*/

#loading {
    z-index: 9999;
    background: rgba(244, 244, 242, 0.45) repeat scroll 0 0;
    height: 100%;
    left: 0;
    margin: auto;
    position: fixed;
    top: 0;
    width: 100%;
}

.bokeh {
    /*border: 0.01em solid rgba(150, 150, 150, 0.1);*/
    border-radius: 50%;
    font-size: 30px;
    height: 1em;
    list-style: outside none none;
    margin: 0 auto;
    position: relative;
    top: 35%;
    width: 1em;
    z-index: 2147483647;
}

    .bokeh li {
        border-radius: 50%;
        height: 0.2em;
        position: absolute;
        width: 0.2em;
    }

        .bokeh li:nth-child(1) {
            animation: 1.25s linear 0s normal none infinite rota, 3.67s ease-in-out 0s alternate none infinite opa;
            background: #286090 none repeat scroll 0 0;
            left: 50%;
            margin: 0 0 0 -0.1em;
            top: 0;
            transform-origin: 50% 250% 0;
        }

        .bokeh li:nth-child(2) {
            animation: 1.5s linear 0s normal none infinite rota, 4.29s ease-in-out 0s alternate none infinite opa;
            background: #337ab7 none repeat scroll 0 0;
            margin: -0.1em 0 0;
            right: 0;
            top: 50%;
            transform-origin: -150% 50% 0;
        }

        .bokeh li:nth-child(3) {
            animation: 1.75s linear 0s normal none infinite rota, 5.12s ease-in-out 0s alternate none infinite opa;
            background: #2e6da4 none repeat scroll 0 0;
            bottom: 0;
            left: 50%;
            margin: 0 0 0 -0.1em;
            transform-origin: 50% -150% 0;
        }

        .bokeh li:nth-child(4) {
            animation: 2s linear 0s normal none infinite rota, 5.25s ease-in-out 0s alternate none infinite opa;
            background: #2e6da4 none repeat scroll 0 0;
            margin: -0.1em 0 0;
            left: 0;
            top: 50%;
            transform-origin: 250% 50% 0;
        }

@keyframes opa {
    12% {
        opacity: 0.8;
    }

    19.5% {
        opacity: 0.88;
    }

    37.2% {
        opacity: 0.64;
    }

    40.5% {
        opacity: 0.52;
    }

    52.7% {
        opacity: 0.69;
    }

    60.2% {
        opacity: 0.6;
    }

    66.6% {
        opacity: 0.52;
    }

    70% {
        opacity: 0.63;
    }

    79.9% {
        opacity: 0.6;
    }

    84.2% {
        opacity: 0.75;
    }

    91% {
        opacity: 0.87;
    }
}

@keyframes rota {
    100% {
        transform: rotate(360deg);
    }
}

/* Estilos de fuentes personalizadas.*/

@font-face {
    font-family: 'X-Scale';
    src: url('../fonts/x-scale/x-scale.eot') format('embedded-opentype'),url('../fonts/x-scale/x-scale.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'actsis';
    src: url('../fonts/actsis/actsis.eot?58819430');
    src: url('../fonts/actsis/actsis.eot?58819430#iefix') format('embedded-opentype'), url('../fonts/actsis/actsis.woff2?58819430') format('woff2'), url('../fonts/actsis/actsis.woff?58819430') format('woff'), url('../fonts/actsis/actsis.ttf?58819430') format('truetype'), url('../fonts/actsis/actsis.svg?58819430#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "actsis";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;
    /* you can be more comfortable with increased icons size */
    font-size: 14px;
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}


.icon-facturas:before {
    content: '\e800';
}

.icon-general:before {
    content: '\e801';
}

.icon-cartera:before {
    content: '\e802';
}

.icon-creditos:before {
    content: '\e803';
}

.icon-pagos:before {
    content: '\e804';
}

.icon-medidor:before {
    content: '\e805';
}

.icon-correo:before {
    content: '\e806';
}

.icon-ayuda:before {
    content: '\e807';
}

.icon-ajustes:before {
    content: '\e808';
}

.icon-salir:before {
    content: '\e809';
}

.icon-sac-desc:before {
    content: '\e80a';
}

.icon-sac:before {
    content: '\e80b';
}

.icon-auditoria:before {
    content: '\e80c';
}

.icon-revisiones:before {
    content: '\e80d';
}

.icon-pendientes:before {
    content: '\e80e';
}

.icon-consumo:before {
    content: '\e80f';
}

.icon-eliminar:before {
    content: '\e810';
}

.icon-guardar:before {
    content: '\e811';
}

.icon-home:before {
    content: '\e812';
}

.icon-mensaje:before {
    content: '\e813';
}

.icon-seguridad:before {
    content: '\e814';
}

.icon-cancelar:before {
    content: '\e815';
}

.icon-confirmar:before {
    content: '\e816';
}

.icon-mayor:before {
    content: '\e817';
}

.icon-lista:before {
    content: '\e818';
}

.icon-cancelar-bloque:before {
    content: '\e819';
}

.icon-actualizar:before {
    content: '\e81a';
}

.icon-copiar:before {
    content: '\e81b';
}

.icon-buscar:before {
    content: '\e81c';
}

.glyphicon {
    font-size: 14px;
}

.fa {
    font-size: 16px;
}

.navbar-collapse:after {
    clear: none;
}

.navbar-right {
    float: right !important;
    margin-right: 15px;
}

.navbar-header {
    display: inline-block;
}

.navbar-right > li {
    float: left;
}

@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        width: auto;
        margin-top: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        left: 0;
        background-color: #fff;
        position: relative;
        border: 1px solid #ccc;
        border: 1px solid rgba(0, 0, 0, .15);
        clear: both;
    }

    .navbar-right .open .dropdown-menu {
        position: absolute;
        left: auto; /*Para que en el menú responsive del portal no se despliegue a la derecha generando scroll horizontal*/
    }

    .navbar-nav .open .dropdown-menu.msg_list {
        width: 100%;
    }
}

.navbar-nav {
    margin: 6px -15px;
}

.top_nav .navbar-right {
    width: inherit;
}

.toggle {
    padding-top: 11px;
}

.navbar-form {
    padding-top: 15px;
}

.navbar-toggle {
    padding: 9px 3px;
    padding: 10px;
}

.toggle a {
    padding: 0 0 0 0;
}

.toggle {
    float: left;
    margin: 0;
    padding-top: 10px;
    width: 30px;
}

@media (max-width: 768px) {
    .toggle {
        padding: 11px 10px;
    }
}

.navbar-brand {
    padding: 0;
}

td > a {
    color: #337ab7;
    text-shadow: 0.5px 0 0 rgba(128, 128, 128, 0.75);
}

span > a {
    color: #337ab7;
    text-shadow: 0.5px 0 0 rgba(128, 128, 128, 0.75);
}

ul.widget_col_3 .w_col_1 {
    width: 40%;
    float: left;
}

ul.widget_col_3 .w_col_2 {
    width: 30%;
    float: right;
}

ul.widget_col_3 .w_col_3 {
    width: 30%;
    float: right;
}

ul.widget_col_3 li {
    padding: 2px 10px 4px;
    border-bottom: 1px solid #ECECEC;
}

ul.widget_col_3, ul.widget_col_3 li {
    width: 100%;
}

.bloque_disable .form-control[disabled],
.bloque_disable .form-control[readonly],
.bloque_disable fieldset[disabled] .form-control {
    background-color: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0 0;
    padding-bottom: 2px;
}

/*******************************/
/**********Autor: wpp***********/
/*******************************/
.table-sm > tbody > tr > td {
    padding: 1px 5px;
}

.no-margin {
    margin: 0;
}

.no-border-table > tbody > tr > td, no-border-table > thead > tr > th {
    border: none;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.requerido {
    border: 1px solid #ff8b8b;
}

.form-control::placeholder,
.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-webkit-input-placeholder {
    text-transform: capitalize;
}

td > .form-control::placeholder,
td > .form-control::-moz-placeholder,
td > .form-control:-ms-input-placeholder,
td > .form-control::-webkit-input-placeholder {
    text-transform: none;
}
/* Columnas fijas GridView*/
.pinned {
    position: absolute;
    background-color: white;
    transform: translate(-2px,-1px);
}

.pinned-header {
    position: absolute;
    background-color: white;
    text-align: center;
    transform: translate(-2px,-1px);
}

.scrolled {
    overflow: hidden;
    white-space: nowrap;
}

.scrolled-header {
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}

.comando {
    left: 18px;
    width: 35px;
}

.codigo {
    left: 52.2px;
    width: 70px;
}

.dv {
    left: 121.3px;
    width: 50px;
}

.nombre {
    left: 170.4px;
    width: 240px;
}

.ajuste {
    min-width: 390.4px;
    background-color: white;
}

.text-10 {
    font-size: 10px;
}

.text-12 {
    font-size: 12px;
}

.text-14 {
    font-size: 14px;
}

.text-16 {
    font-size: 16px;
}

.text-18 {
    font-size: 18px;
}

.text-20 {
    font-size: 20px;
}

.text-22 {
    font-size: 22px;
}

.text-24 {
    font-size: 24px;
}

.text-26 {
    font-size: 26px;
}

.azul-actsis {
    color: rgb(40,94,182);
}

.yellow {
    color: #ffd800;
}

.orange {
    color: #ff6a00;
}

.ajax__html_editor_extender_container {
    width: inherit !important;
}

@media (min-width: 1024px) {
    .modal-xl {
        width: 1020px;
    }
}

@media (min-width: 1366px) {
    .modal-xxl {
        width: 1360px;
    }
}

[id*="arbModulos"] td {
    white-space: normal !important;
}

.text-upperCase {
    text-transform: uppercase;
}

.radiobutton.radiobuttonlist input[type="radio"],
.checkbox.checkboxlist input[type="checkbox"] {
    margin-left: 0;
}

/***CSS para controles radiobutton y checkboxlist ****/

.radiobutton.radiobuttonlist label,
.checkbox.checkboxlist label {
    margin-bottom: 4px;
    margin-left: 0;
}

.radiobutton.radiobuttonlist,
.checkbox.checkboxlist {
    height: auto;
    max-height: 108px;
    overflow-y: auto;
}

table.radiobutton.radiobuttonlist tr :last-child,
table.checkbox.checkboxlist tr :last-child {
    width: 1%;
    white-space: nowrap;
}

table.radiobutton.radiobuttonlist tr input[type="radio"],
table.checkbox.checkboxlist tr input[type="checkbox"] {
    position: relative !important;
}

.aspNetDisabled.radiobutton.radiobuttonlist input[type="radio"],
.aspNetDisabled.checkbox.checkboxlist input[type="checkbox"] {
    margin-left: 0;
}

/***CSS para controles radiobutton y checkboxlist ****/

.aspNetDisabled.radiobutton.radiobuttonlist .aspNetDisabled label,
.aspNetDisabled.checkbox.checkboxlist .aspNetDisabled label {
    margin-bottom: 4px;
    margin-left: 0;
}

.aspNetDisabled.radiobutton.radiobuttonlist,
.aspNetDisabled.checkbox.checkboxlist {
    height: auto;
    max-height: 108px;
    overflow-y: auto;
}

table.aspNetDisabled.radiobutton.radiobuttonlist tr :last-child,
table.aspNetDisabled.checkbox.checkboxlist tr :last-child {
    width: 1%;
    white-space: nowrap;
}

table.aspNetDisabled.radiobutton.radiobuttonlist tr input[type="radio"],
table.aspNetDisabled.checkbox.checkboxlist tr input[type="checkbox"] {
    position: relative !important;
}

@media (min-width: 768px) {
    #btnSalir::before {
        content: "Salir";
        position: inherit;
        padding: 0 5px;
    }
}

.fullscreen-modal .modal {
    margin: 0;
    margin-right: auto;
    margin-left: auto;
    width: 95%;
}

.tooltip > .tooltip-inner {
    background-color: #f00;
    width: 350px;
}

.has-error {
    color: #f00;
}

.btn:focus {
    border-color: #ccc;
    border-color: rgba(82,168,236,.8);
    outline: 0;
    outline: thin dotted\9;
    -webkit-box-shadow: 0 0 8px rgba(82,168,236,.6);
    box-shadow: 0 0 8px rgba(82,168,236,.6);
}

.dropdown-menu > li > a {
    white-space: normal !important;
}

.btn-textarea {
    position: relative;
    bottom: -3px;
    height: 0;
    padding-right: 15px;
    text-align: right;
}

    .btn-textarea + textarea {
        padding-right: 30px;
    }

/*Animaciones parpadeo*/
.parpadea {
    animation-name: parpadeo;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-name: parpadeo;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes parpadeo {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes parpadeo {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

.btn.aspNetDisabled {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}

.tab-pane {
    border-left: 1px solid;
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-color: #ddd;
}

.form-control-xs {
    min-width: 30px;
}

.form-control-sm {
    min-width: 50px;
}

.form-control-md {
    min-width: 100px;
}

.form-control-lg {
    min-width: 150px;
}

.required-field-validator {
    position: absolute;
    z-index: 2;
    top: 10%;
    left: 10px;
}

input[type=file] {
    border: 1px solid #cccccc;
    width: 100%;
    color: #191919;
}

.datepicker,
.bootstrap-datetimepicker-widget {
    z-index: 1100 !important;
}

.logo-home {
    font-family: X-Scale;
}

.navbar-brand {
    background: #2681a4;
    padding: 10px 10px 10px 5px;
    float: left;
    font-size: 35px;
    color: #fff;
}

    .navbar-brand > img {
        float: left
    }

.lov-paginador {
    float: left;
}
