﻿@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Titillium+Web:200,200i,300,300i,400,400i,600,600i,700,700i');
@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i&display=swap');

* {
	box-sizing: border-box; /* Padding y borde no incrementan el ancho */
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

html {
	height:100%;
}

body {
	color: #949494;
	font-family: 'Lato', sans-serif;
	font-size: 10px;
	background-color: #fafafa;
}

h1 {
	font-family: 'Titillium Web', sans-serif;
}

h2 {
	font-family: 'Titillium Web', sans-serif;
	color: #00cae5;
	font-size: 3.2em;
	font-weight: 300;
	text-align: center;
	margin: 20px 0 20px;
}

h3 {
	font-family: 'Titillium Web', sans-serif;
	font-size: 2.5em;
	margin-bottom: 20px;
	
}

h4 {
	
}

p {
	
}

a {
	
}

a:link {
	color: #00cae5;
	
}

a:visited {
	color: #00cae5;
	
}

a:hover {
	color: #00d492;
	text-decoration: none;
	
}

/*HEADER*/

header .row {
	background-color: #f1f1f1;
	margin: 0px;
	position: relative;
}

header p.fecha {
	font-size: 1.2em;
	margin-top: 10px;
} 

header .contenedor-user {
	position: absolute;
	top: 0;
	right: 0;
	height: 40px;
	vertical-align: middle;
}

header .contenedor-user .user p {
	font-size: 1.4em;
	padding: 12px 20px;
}

header .contenedor-user .user {
	float: left;
}

.contenedor-user span {
	display: inline-block;
	background-color: #00cae5;
	border-radius: 50px;
	color: #fff;
	font-size: 1.2em;
	padding-top: 8px;
	width: 40px;
	height: 40px;
	margin-right: 6px;
	text-align: center;
}

.contenedor-user span:hover {
	background-color: #0a8dbc;
}

header .logo-cliente {
	margin-top: 70px;
	height: 65px;
}

header .logo-flow {
	margin-top: 66px;
	margin-bottom: 20px;
}

header .logo-flow img {
	width: 160px;
}

/*FOOTER*/

footer {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1dc9e2+0,019ed4+100 */
background: #1dc9e2; /* Old browsers */
background: -moz-linear-gradient(top,  #1dc9e2 0%, #019ed4 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #1dc9e2 0%,#019ed4 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #1dc9e2 0%,#019ed4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1dc9e2', endColorstr='#019ed4',GradientType=0 ); /* IE6-9 */
	z-index: 99;
}

footer p, footer ul li {
	color: #fff;
	font-size: 1.4em;
}

footer p, footer ul {
	margin: 16px 0;
}

footer ul li a:link, footer ul li a:visited {
	color: #fff;
}

footer ul li:first-of-type {
	border: none;
}

footer ul li {
	border-left: 1px solid #fff;
	padding-left: 10px;
	padding-right: 0px;
}

footer.login {
	bottom: 0;
	position: fixed;
	width: 100%;
}

/* TOGGLE BUTTON */

.toggle-button {
	position: absolute;
	display: block;
	width: 30px;
	top: 20px;
	left: 30px;
	z-index: 10;
}

.toggle-button span {
	display: block;
	height: 22px;
	border-top: solid 2px #949494;
	border-bottom: solid 2px #949494;
	position: relative;
}

.toggle-button span:after {
	content:"";
	width: 100%;
	height: 2px;
	background: #949494;
	display: block;
	top: 50%;
	position: absolute;
	margin-top: -1px;
}

.toggle-button span:hover {
	-ms-transform: rotate(360deg); /* IE 9 */
    -webkit-transform: rotate(360deg); /* Chrome, Safari, Opera */
    transform: rotate(360deg);
 	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s; 
}

/* MOLDALS */

.modal-content {
	border-radius: 10px;
	-webkit-box-shadow: 5px 0px 5px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 5px 0px 5px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
    background-color:transparent;
}

.modal-content .close {
	color: #fff;
	opacity: 1;
}

.modal-header {
	font-family: 'Titillium Web', sans-serif;
	background-color: #00cae5;
	color: #fff;
	padding: 12px 15px;
	text-transform: uppercase;
	border: none;
}

.modal-body p {
	font-size: 1.4em;
	text-align: center;
	color: #aaa;
}

.modal-body p.small {
	font-size: 1.2em;
}

.modal-body .close {
	font-size: 1.6em !important;
	color: #aaa !important;
	opacity: 0.9;
}

.modal-body span.icon {
	color: #0a8dbc;
	margin-right: 5px;
}

.modal-footer {
	background-color: #fafafa;
	text-align: center;
}

.modal-body label {
	font-size: 1.4em;
}

.modal-body .form-control {
    color: #aaa;
    height: 40px;
}

h4.modal-title {
	font-size: 1.6em;
}

/* LOGIN */

body#login {
	background-image: url(../images/bg-login.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.inicio-login {
	background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0;
    width: 440px;
    padding: 30px;
	text-align: center;
}

.inicio-login .logo {
	margin-bottom: 15px;
}

.inicio-login form label {
	color: #fff;
	font-size: 1.6em;
	font-weight: 400;
}

.inicio-login form .form-control {
	border: none; 
}

.inicio-login form p {
	font-size: 1.4em;    
}

.inicio-login form a {
    color: white;
}

.inicio-login form a:visited {
    color: white;
}

/* -- CONTENIDO -- */

section.tablas .func {
	border-top: 1px solid #e8e9e9;	
}

section.tablas .func .row {
	margin-right: 15px;
	margin-left: 15px;
}

section.tablas .func .ico-bar img {
	height: 34px;
}


/* Tablas */

.tablas .table {
	border: 1px solid #00cae5;
	border-radius: 5px;
	background-color: #fff;
	margin-bottom: 0;
}

.tablas .table th {
	font-family: 'Titillium Web', sans-serif;
	font-size: 1.6em;
	font-weight: 400;
	background: #1dc9e2; 
	color: #fff;
	text-transform: uppercase;
	padding: 0.5em 0.8em;
}

.tablas .table th, .tablas .table td {
	border: none;
	vertical-align: middle;
}

.tablas .table th .icon {
	font-size: 1.6em;
	vertical-align: middle;
}

.tablas .table td {
	font-size: 1.5em;
	padding-top: .5rem;
	padding-bottom: .5rem;
}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: #f6f7f7;
}

.tablas .table td span.estado {
	border-radius: 50px;
	display: inline-block;
	height: 20px;
	width: 20px;
}

.tablas .table td span.rojo {
	background-color: #ff5260;
}

.tablas .table td span.verde {
	background-color: #00d492;
}

.tablas .table td span.icon {
	font-size: 1.6em;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	opacity: 0.3;
}

.tablas .table td span.no {
	color: #ff5260;
	font-weight: 600;
}

.tablas .table td span.icon.active {
	cursor: pointer;
	opacity: 1;
}

.tablas .table td span.icon:nth-of-type(1) {
	color: #00d492;
}

.tablas .table td span.icon:nth-of-type(2) {
	color: #ff5260;
}

.tablas .table td span.icon:nth-of-type(3) {
	color: #00cae5;
}

.tablas .table td.tipo-activo {
	min-width: 300px;
}

.tablas .table td.activo {
	min-width: 200px;
}

.tablas .table td.col-iconos {
	min-width: 120px;
}

section.panel {
	-webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
	-webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
}

section.panel .box {
	margin-top: 5px;
	display: inline-block;
	width: 100%;
}

.box {
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
	margin-bottom: 20px;
	position: relative;
}

.box ul {
	padding-left: 0;
}

.box ul li {
	font-size: 1.6em;
	line-height: 2em;
	list-style-type: none;
}

.box ul li:before {
	color: #ff5260;
	content: "\f284";
	font-family: "Ionicons";
	margin-right: 5px;
}

.box p {
	font-size: 1.6em;
	line-height: 2em;
}

.box h3 {
	padding-right: 15px;
}

.box .grafico {
	text-align: center;
}

.box .grafico img {
	width: 100%;
}

.box .btn {
	margin-top: 20px;
}

.box .max-min {
	cursor: pointer;
	position: absolute;
	right: 20px;
	top: 20px;
}

.box .max-min i {
	font-size: 2em;
	vertical-align: top;
}

/* Paginador */

ul.pagination {
	margin-top: 20px;
}

nav ul.pagination li.page-item a.page-link {
	color: #00cae5;
	font-size: 1.5em;
}

nav ul.pagination li.page-item.disabled a.page-link {
	color: #ddd;
}

nav ul.pagination li.page-item.active a.page-link {
	color: #fff;
	background-color: #00cae5;
	border-color: #00cae5;
}

nav ul.pagination li.page-item a.page-link:hover {
	color: #fff;
	background-color: #00cae5;
	border-color: #00cae5;
}


/* Form */

.tablas .custom-select, .tablas .form-control, .form-control  {
	border: 1px solid #ededed;
}

.tablas .custom-select, .tablas .form-control, .form-control {
    border: 1px solid #ededed;
}

form .form-row .btn {
    margin-top: 0;
}

.box-perfil .pic {
    margin-right: 20px;
}

.box-perfil .pic img {
    border: 1px solid #eaeaea;
    border-radius: 5px;
}

.box-perfil h4 {
    font-size: 2em;
    color: #00cae5;
}

.box-perfil p {
    line-height: 1.8em;
}

.vista-img {
    text-align: center;
    position: relative;
}

.vista-img img.caratula {
    border: 1px solid #eaeaea;
    border-radius: 5px;
    width: 100%;
}

.vista-img h4 {
    font-size: 1.8em;
    margin-top: 10px;
}

.vista-img .cont-box {
    margin-bottom: 20px;
}

.btn-vista {
    position: absolute;
    right: 20px;
    top: 3px;
    z-index: 999;
}

    .btn-vista img {
        cursor: pointer;
    }

        .btn-vista img.active {
            background-color: #f1f1f1;
        }

.vista-listado {
    position: relative;
}

    .vista-listado img.caratula {
        border: 1px solid #eaeaea;
        max-width: 40px;
    }

    .vista-listado table td, .vista-listado table th {
        white-space: nowrap;
        text-align: left;
    }

/* Lightbox */

.lb-mails.fancybox-content {
    background: #fafafa;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
}

.lb-mails ul {
    margin-left: 0;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .lb-mails ul li {
        font-size: 15px;
        list-style-type: none;
        border-bottom: 1px solid #ededed;
        padding: 8px 10px;
    }

.container {
    position: relative;
}

.btn.nuevo {
    margin-bottom: 20px;
}

/* Sidenav */

.sidenav {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1dc9e2+0,019ed4+100 */
background: #1dc9e2; /* Old browsers */
background: -moz-linear-gradient(-45deg, #1dc9e2 0%, #019ed4 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg, #1dc9e2 0%,#019ed4 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg, #1dc9e2 0%,#019ed4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1dc9e2', endColorstr='#019ed4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: -255px;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.1);
	box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.1);
}

.sidenav h3 {
	font-size: 3em;
	color: #fff;
	margin-left: 15px;
}

.sidenav ul {
	margin-left: 0;
	padding-left: 0;
}

.sidenav ul li {
	list-style-type: none;
	border-bottom: 1px solid #77ddec;
	text-transform: uppercase;
}

.sidenav ul li a, .sidenav a {
    padding: 10px 8px 10px 20px;
    text-decoration: none;
    font-size: 1.4em;
    color: #fff;
    display: block;
    transition: 0.3s;
}

.sidenav ul li a:hover, .sidenav a:hover {
    color: #f1f1f1;
    padding-left: 30px;
}

.sidenav ul li a:hover {
	background-color: #019ed4;
}

.sidenav .closebtn {
	color: #fff;
    position: absolute;
    top: -15px;
    right: 10px;
    font-size: 50px;
    font-weight: 300;
    margin-left: 50px;
    padding: 0px;
}

.sidenav a i {
	font-size: 1.6em;
	vertical-align: -4px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/* Placeholders */

form.clase .form-control::-webkit-input-placeholder { color: #ffffff; }  /* WebKit, Blink, Edge */
form.clase .form-control:-moz-placeholder { color: #ffffff; }  /* Mozilla Firefox 4 to 18 */
form.clase .form-control::-moz-placeholder { color: #ffffff; }  /* Mozilla Firefox 19+ */
form.clase .form-control:-ms-input-placeholder { color: #ffffff; }  /* Internet Explorer 10-11 */
form.clase .form-control::-ms-input-placeholder { color: #ffffff; }  /* Microsoft Edge */

/* Reset botones */

.btn {
	color: #fff !important;
	font-size: 1.4em;
	font-family: 'Titillium Web', sans-serif;
    border: none !important;
    border-radius: 50px;	
	text-transform: uppercase;
}

.btn-primary {
	background-color: #00cae5;
}

.btn-primary:hover {
	background-color: #00d492;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
	background-color: #00cae5;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
	background-color: #00d492 !important; /* Reset Press Azul */
	box-shadow: none;
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn-default {
	background-color: #666;
}

.btn-default:hover {
	background-color: #00d492;
}

/* Reset Glow Azul*/

.custom-select:focus, .form-control:focus {
  border-color: #ced4da !important;
  -webkit-box-shadow: 0 0 5px rgba(29, 201, 226, 1) !important;
          box-shadow: 0 0 5px rgba(29, 201, 226, 1) !important;
}

.transition {
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s; 
}


/****************************/
/* MEDIA QUERIES */
/****************************/

/* 580 */

@media screen and (min-width: 580px) {

.toggle-button {
	left: 20px;
}

header {
	padding-top: 15px;
}

header p.fecha {
	margin-bottom: 10px;
}

header .logo-flow {
	margin-top: 10px;
	margin-bottom: 12px;
}

header .logo-cliente {
	margin-top: 15px;
}

.container-fluid {
	padding-left: 70px;
}

.box .grafico img {
	width: auto;
}

}

/* 768 */

@media screen and (min-width: 768px) {

}

/* 992 */
@media screen and (min-width: 992px) {

body {	
	padding-bottom: 0px;    
}

header {
	background-color: #fafafa;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 99;
}

footer {
	bottom: 0;
	position: fixed; 
	width: 100%; 
}

.toggle-button {
	left: 20px;
	position: fixed;
	z-index: 100;
}

}


/* 1024 */
@media screen and (min-width: 1024px) {

section.panel {
	-webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

section.panel.maximizado {
	-webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
}

}

.userNameLogin {
    font-size:13px;
    padding: 5px;
    float:right;
    min-width:150px;
}

.userNameLogin img{
    height: 18px;
    padding-left:3px;
}

.container {
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 0px;
    padding-left: 0px;
    width:100%;    
}

.container {
    max-width: 1390px !important;
}

.botonera {        
    position:fixed;
    bottom:0px;
    width:100%;
}

.botonera button {
    min-width: 90px;
    font-size: 11px;
    font-weight: bold;    
    margin-right: 2px;    
    margin-top:2px;
    cursor:pointer;
    border-style: none;
}

.botonRechazar {
    background-color: red;
    color: white;
}

.botonAprobar {
    background-color: darkblue;
    color:white;
}

.botonNavegar {
    min-width: 30px !important;
    width: 30px !important;
}

.combo {
    min-width:100px;
    height:19px !important;
}

.menuDiv {
    position:center;
    margin-left: 50px !important;    
    margin-right: 50px !important; 
}

.menuFirstLine {
    margin-top: -5px !important;
    margin-bottom: 0px;
    width: 100%;
}

.menuContract {
    float:left;
    margin-right:5px;
}

.menuEntity {
    float:left;
}

.DocumentDescription {
    font-size:14px;
    color:white;
    padding:2px;
    margin-left:0px;
    margin-right:20px;
}

#message_box_screen {
    margin: 5px;
}

#message_box {
    top: 10px;
    background-color: rgba(0,0,0,0.4);
}

@media (max-width: 991px) {
    
    #message_box p {
        top: 10px;
        margin-left: 10px;
        margin-right: 10px;
        font-size: 12px;
    }

    #message_box img {
        width: 50px;
    }
}

@media screen and (min-width: 992px) {
    #message_box {
        width: 50%;
    }

    .desktop {
        display: block;
    }

    .mobile {
        display: none;
    }

    #message_box {
        width: 100%;
    }

    #message_box p {
        top: 10px;
        margin-left: 10px;
        margin-right: 10px;
        font-size: 15px;
    }

    #message_box img {
        width: 70px;
    }
}

.modal-header {
    background-color: #0a8dbc;
    color: #fff;
    padding: 10px 15px;
    text-transform: uppercase;
}

.modal-body {
    background-color: #f5f5f5;
}

.modal-body p.small {
    font-size: 1.2em;
}

.modal-body .close {
    font-size: 1.6em !important;
    color: #aaa !important;
    opacity: 0.9;
}

.modal-body span.icon {
    color: #0a8dbc;
    margin-right: 5px;
}

.logout {
    cursor:pointer!important;
}

/* MOLDALS */

.modal-content {
    border-radius: initial;
}

.modal-header {
    background-color: #0a8dbc;
    color: #fff;
    padding: 10px 15px;
    text-transform: uppercase;
}

.modal-body {
    background-color: #f5f5f5;
}

.modal-body p {
    font-size: 1.4em;
    text-align: center;
    color: #aaa;
}

.modal-body p.small {
    font-size: 1.2em;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

.modal-body .close {
    font-size: 1.6em !important;
    color: #aaa !important;
    opacity: 0.9;
}

.modal-body span.icon {
    color: #0a8dbc;
    margin-right: 5px;
}

/***********************************************************************/
/*************************** viejo *************************************/
/***********************************************************************/

.txt-message-info {
    margin-Top: 8px !important;
    background-color: green;
    color: white;
    padding-left: 4px;
}

.propiedades-titulo {
    color: darkgray !important;
    font-size: 11px;
}

* {
    box-sizing: border-box; /* Padding y borde no incrementan el ancho */
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    background-color: white;
    font-size: 10px;
    font-family: 'Open Sans', sans-serif;
}

a:link {
    color: #0a8dbc;
    text-decoration: none;
}

a:visited {
    color: #0a8dbc;
}

.projectContractors {
    max-height: 350px;
    overflow-y: scroll;
}

    .projectContractors table {
        width: 98%;
        margin: 3px;
    }

    .projectContractors td {
        padding-left: 10px !important;
        height: 40px;
    }

    .projectContractors th {
        background-color: #34495E;
        color: white;
        padding-left: 10px !important;
    }

    .projectContractors input {
        height: 20px !important;
    }

#divFilters {
    height: 100%;
}

/*HEADER*/

header {
    background-color: #12253e;
    margin-top: 15px;
    padding-top: 10px;
    position: relative;
}

    header .der, header .izq {
        text-align: center;
    }

    header .izq {
        margin-top: 20px;
    }

    header .der {
        padding-bottom: 15px;
    }

    header .fecha {
        color: #fff;
        font-size: 1.1em;
        margin-top: 50px;
        margin-left: 8px;
        margin-bottom: 0px;
    }

    header .contenedor-user {
        background-color: #1e3048;
        position: absolute;
        top: 0;
        right: 0;
        height: 31px;
        vertical-align: middle;
    }

        header .contenedor-user .user p {
            font-size: 1.2em;
            color: #fff;
            padding: 7px 20px;
        }

        header .contenedor-user .user {
            float: left;
        }

.menu-button-top {
    width: 30px;
    cursor: pointer;
}


.contenedor-user span {
    position: relative;
    float: right;
    display: block;
    background-color: #e74c3c;
    color: #fff;
    font-size: 1.5em;
    padding-top: 4px;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
}

.help {
    padding-top: 0px;
    padding-bottom: 5px;
}

    .help span {
        color: white;
        font-size: 1.2em;
        padding-right: 5px;
    }

    .help img {
        width: 17px;
        padding-bottom: 2px;
        padding-right: 5px;
    }

.contenedor-user span:hover {
    background-color: #0a8dbc;
}

/*NAV*/

nav.lateral {
    display: none;
}

/* TOGGLE BUTTON */

.toggle-button {
    display: block;
    background-color: #0a8dbc;
    width: 45px;
    padding: 10px;
    margin-bottom: 10px;
    float: right;
}

    .toggle-button span {
        display: block;
        height: 25px;
        border-top: solid 2px #fff;
        border-bottom: solid 2px #fff;
        position: relative;
    }

        .toggle-button span:after {
            content: "";
            width: 100%;
            height: 2px;
            background: #fff;
            display: block;
            top: 50%;
            position: absolute;
            margin-top: -1px;
        }


/*FOOTER*/

footer {
    background-color: #12253e;
    padding-bottom: 20px;
}

    footer p {
        color: #fff;
        font-size: 1.2em;
        margin-bottom: 5px;
    }

    footer .logo img {
        width: 70px;
    }

    footer .logo, footer .txt, footer .fb {
        text-align: left;
        margin-top: 15px;
    }

    footer p a:hover {
        color: #e74c3c;
    }

    footer .fb a {
        font-size: 2.5em;
        background-color: #273c58;
        display: inline-block;
        width: 36px;
        height: 36px;
        -webkit-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
    }

        footer .fb a:hover {
            color: #fff;
            background-color: #e74c3c;
            -webkit-transition: all 0.3s ease-in-out 0s;
            transition: all 0.3s ease-in-out 0s;
        }

    footer a:visited {
        color: white !important;
    }

    footer a:link {
        color: white !important;
    }

    footer a:hover {
        color: wheat !important;
    }

/* -- CONTENIDO -- */

/* Columna Izquierda */

.col-nav {
    background-color: #182c47;
    padding-top: 15px;
    width: 250px;
}

    .col-nav h3 {
        color: #00b0f0;
        font-size: 1.6em;
        font-weight: 600;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .col-nav ul {
        list-style: none;
        margin: 0;
        padding: 0 0 15px 0;
    }

        .col-nav ul li {
            color: #fff;
            font-size: 1.4em;
            text-transform: uppercase;
            border-bottom: 1px solid #273c58;
        }

            .col-nav ul li a {
                display: block;
                color: inherit;
                padding: 10px 0;
            }

                .col-nav ul li a:hover {
                    background-color: #0a8dbc;
                    padding-left: 15px;
                }

                .col-nav ul li a:before {
                    color: #e74c3c;
                    margin-right: 8px;
                }

/* Columna Central */

.contenedor-archivos {
    padding-left: 0;
    padding-right: 0;
    margin-top: 7px;
    width: 100%;
}

nav.nav-interna {
    background-color: #12253e;
    height: 50px;
}

.nav-interna-configuracion {
    height: 40px !important;
}

nav.nav-interna ul {
    padding-left: 0;
    /*height: 40px;*/
    margin: 0;
}

    nav.nav-interna ul li {
        color: #fff;
        font-size: 1.4em;
        font-weight: 700;
        text-transform: uppercase;
        list-style-type: none;
        /*display: inline-block;*/
        padding: 10px 20px;
        cursor: pointer;
    }

        nav.nav-interna ul li:hover {
            background-color: #0a8dbc;
        }

        nav.nav-interna ul li.icon:before {
            color: #e74c3c;
            margin-right: 8px;
            font-size: 1.4em;
            vertical-align: middle;
        }

nav.nav-interna-cbo ul {
    padding-left: 0;
    margin: 0;
    cursor: initial;
}

nav.nav-interna-cbo {
    background-color: #12253e;
    margin-bottom: 5px;
}

    nav.nav-interna-cbo ul li {
        color: #fff;
        font-size: 1.4em;
        font-weight: 700;
        text-transform: uppercase;
        list-style-type: none;
        /*display: inline-block;*/
        padding: 10px 10px 10px 10px;
    }

    nav.nav-interna-cbo select {
        color: #000;
        font-size: 1em;
        font-weight: 700;
        text-transform: uppercase;
        list-style-type: none;
        margin-left: 10px;
    }

@media screen and (max-width: 640px) {
    #explorerFolder {
        display: none;
    }

    #divSearch {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .row-archivos {
        width: 100%;
        height: 100vh;
    }
}

@media screen and (min-width: 640px) {
    .nav-interna-botones {
        float: left;
        margin-right: 30px;
    }
}

@media screen and (min-width: 640px) {
    .nav-interna-opt li {
        vertical-align: middle;
        margin-left: 0px;
        padding-left: 7px !important;
        padding-right: 7px !important;
    }
}

@media screen and (max-width: 640px) {
    .nav-interna-opt li {
        vertical-align: middle;
        margin-left: 10px;
        margin-bottom: 0px;
        padding-left: 0px !important;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
}

.nav-interna-search-configuration {
    float: right;
    margin-right: 10px;
    position: relative;
    vertical-align: middle;
    top: 7px;
}

    .nav-interna-search-configuration input[type='text'] {
        margin-bottom: 0px;
        height: 26px;
        /*float:right;*/
    }

.nav-interna-search {
    float: right;
    margin-right: 10px;
    position: relative;
    vertical-align: middle;
    top: 5px;
}

    .nav-interna-search label {
        margin-bottom: 0px;
        float: left;
        margin-right: 10px;
        vertical-align: middle
    }

    .nav-interna-search input[type='checkbox'] {
        margin-bottom: 0px;
        float: left;
    }

    .nav-interna-search input[type='text'] {
        margin-bottom: 0px;
        height: 24px;
        /*float:right;*/
    }

    .nav-interna-search input {
        vertical-align: middle;
        margin-bottom: 0px;
    }

.nav-interna-opt li {
    cursor: default !important;
}

.nav-interna-opt label {
    margin-left: 5px;
    margin-top: 0px;
    vertical-align: middle;
    font-weight: 100;
    font-size: 0.8em;
}


.nav-ico-view {
    position: absolute;
    right: 0;
    top: 0;
}

    .nav-ico-view span {
        background-color: #e74c3c;
        display: block;
        float: left;
        color: #fff;
        font-size: 2.7em;
        width: 40px;
        height: 40px;
        opacity: 0.8;
        text-align: center;
        cursor: pointer;
    }

        .nav-ico-view span:hover {
            background-color: #0a8dbc;
        }

        .nav-ico-view span.active {
            opacity: 1;
        }

        .nav-ico-view span.list {
            background-image: url(../images/ico-list.png);
            background-repeat: no-repeat;
        }

        .nav-ico-view span.grid {
            background-image: url(../images/ico-grid.png);
            background-repeat: no-repeat;
        }

.nav-ico-view-cbo {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #fff;
    font-size: 1.4em;
    font-weight: 500;
    text-transform: uppercase;
}


    .nav-ico-view-cbo select {
        font-weight: 700;
        font-size: 1.3em;
        padding-right: 5px;
    }

    .nav-ico-view-cbo select {
        color: #000;
        font-size: 0.9em;
        margin-left: 10px;
    }

    .nav-ico-view-cbo span:hover {
        background-color: #0a8dbc;
    }

    .nav-ico-view-cbo span.active {
        opacity: 1;
    }

    .nav-ico-view-cbo span.list {
        background-image: url(../images/ico-list.png);
        background-repeat: no-repeat;
    }

    .nav-ico-view-cbo span.grid {
        background-image: url(../images/ico-grid.png);
        background-repeat: no-repeat;
    }

.lista-archivos {
    border-color: transparent;
}

.lista-archivos article.fila {
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    padding: 10px;
}

.lista-carpetas {
    position: relative;
    border-right: solid;
    border-color: lightgray;
    border-right-width: 3px;
    background-color: white;
    min-width: 15%;
    width: 15%;
    overflow-x: scroll;
    padding-left: 5px !important;
}

.explorerFolderPanel {
    position: absolute;
    height: 100%;
    display: inline-block;
}

.lista-carpetas article.fila {
    background: #fff;
    border-bottom: 2px solid #e6e6e6;
    padding: 15px;
}

article.fila {
    cursor: pointer;
}

article.fila .thumb {
    display: inline-block;
    vertical-align: middle;
}

article.fila .info-txt {
    display: inline-block;
    vertical-align: middle;
}

article.fila .info-txt p {
    margin: 2px 0 2px 10px;
}

article.fila .info-txt p.nombre-archivo {
    font-size: 1.25em;
    color: #aaaaaa;
}

article.fila .info-txt p.detalle-archivo {
    font-size: 1.15em;
    color: #00b1f1;
    width: 200px;
}

article .share {
    float: right;
    font-size: 3em;
    margin-top: 4px;
    margin-left: 10px;
}

@media screen and (max-width: 720px) {
    article .share {
        display: none;
    }
}

article .share a:hover {
    color: #e74c3c;
}

article.fila:hover, article.fila.active {
    background-color: #0a8dbc;
}

article.fila:hover .info-txt p.detalle-archivo,
article.fila.active .info-txt p.detalle-archivo,
article.fila:hover .info-txt p.nombre-archivo,
article.fila.active .info-txt p.nombre-archivo,
article.fila:hover .share a,
article.fila.active .share a {
    color: #fff;
}

/* Columna Derecha */

.data-archivo {
    color: #aaa;
    display: none;
    background-color: #f5f5f5;
    padding-top: 15px;
    overflow-y: auto;
    min-width: 300px;
}

.thumb img {
    width: 30px;
}

.thumb-big {
    text-align: center;
    margin-bottom: 10px;
}


.thumb-big img {
    max-width: 200px;
}

ul.acciones-archivos {
    list-style: none;
    margin: -10px 0 20px 0;
    padding: 0;
    display: table;
    width: 100%;
}

ul.acciones-archivos li {
    font-size: 1em;
    background-color: #e6e6e6;
    color: #0a8dbc;
    float: left;
    width: 50%;
    padding: 10px 0;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}

ul.acciones-archivos li:hover {
    background-color: #0a8dbc;
    color: #fff;
}

ul.acciones-archivos li:last-child {
    margin-right: 0;
}

ul.acciones-archivos li:before {
    font-size: 2.5em;
    display: block;
    text-align: center;
    margin-bottom: 5px;
}

.data-archivo .fila {
    border-bottom: 1px solid #e6e6e6;
}

.data-archivo .fila h2 {
    font-size: 1.4em;
    font-weight: 600;
    margin-top: 0;
}

.data-archivo .fila h3 {
    font-size: 1.2em;
    margin: 0 0 2px 0;
}

.data-archivo .fila p {
    font-size: 1.2em;
}


/* Otros */

.btn {
    border-radius: initial;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.btn-default {
    color: #aaa;
    background-color: #e6e6e6;
    border: none;
}

    .btn-default:hover {
        color: #fff;
        background-color: #0a8dbc;
    }

.btn-primary {
    color: #fff;
    background-color: #0a8dbc;
    border: none;
}

    .btn-primary:hover {
        background-color: #e74c3c;
    }

.center {
    text-align: center;
}

.small {
    font-size: 12px;
}

.strong {
    font-weight: 600;
}

.celeste {
    color: #00b0f1 !important;
}

.transition {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.container-fluid {
    margin-right: 15px;
    margin-left: 15px;
}
/* - FIN Para quitar los margenes del container fuild - */


/****************************/
/*      MEDIA QUERIES       */
/****************************/

/* 480 */

@media screen and (min-width: 480px) {
}

/* 640 */

@media screen and (min-width: 640px) {
    nav.nav-interna ul {
        height: 100%;
    }

    nav.nav-interna ul li {
        display: inline-block;
    }

    article.fila .info-txt p.detalle-archivo {
        width: auto;
    }

    article.fila .info-txt {
        max-width: 79%;
    }
}

/* 768 */
@media screen and (min-width: 768px) {
    header {
        height: 70px;
    }

        header .izq {
            margin-top: -5px;
            text-align: left;
        }

        header .der {
            padding-bottom: 0;
            text-align: right;
        }

        header .logo-flow {
            margin-top: 10px;
            float: right;
        }
}

.lista-archivos {
    width: 100%;
}

/* 992 */
@media screen and (min-width: 992px) {
    header {
        height: 84px;
    }

    .contenedor-archivos {
        padding-left: 7px;
    }

    .row-archivos {
        margin-left: 0;
    }

    .lista-archivos {
        background-color: #fff;
        padding-left: 0;
    }

    lista-carpetas {
        background-color: #fff;
        padding-left: 0;
        margin-right: 15px;
    }

    .toggle-button {
        display: none;
    }

    nav.lateral {
        display: block !important;
    }

    footer {
        padding-bottom: 10px;
    }

    /* - Para igualar el alto de las columnas  (no soporta ie9) - */

    .row-eq-height {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .contenedor-archivos .lista-archivos {
        padding-right: 0;
    }

    .contenedor-archivos .lista-carpetas {
        padding-right: 0;
    }

    .data-archivo {
        display: block;
        background-color: #f5f5f5;
    }
}


/* 1280 */

@media screen and (min-width: 1280px) {
}

/* 1680 */

@media screen and (min-width: 1680px) {
    ul.acciones-archivos li {
        width: 25%;
    }
}

#progressMessage {
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 3000;
    background-color: rgba(255,255,255,0.5);
}

#activityIndicator {
    height: 32px;
    width: 32px;
    background-size: 32px 32px;
    margin: auto;
    margin-top: 100px;
    background-image: url("/images/wait.gif");
    background-color: transparent;
}

.pager li > a, .pager li > span {
    padding: 5px;
}

.paginadoSmall {
    background-color: white;
    margin: 0px;
    text-align: center;
    padding: 0px;
    height: 27px;
    max-height: 27px;
    margin-left: 15px;
    margin-right: 15px;
}

    .paginadoSmall input {
        width: 23px;
        height: 16px;
        text-align: right;
    }

    .paginadoSmall label {
        padding: 7px 7px;
        display: inline-block;
        font-weight: normal;
        color: #00b1f1;
    }

    .paginadoSmall li a {
        border-radius: 0px;
    }

.paginadoLarge {
    background-color: white;
    margin: 0px;
    text-align: center;
    padding: 0px;
    height: 28px;
    margin-top: -18px;
}

    .paginadoLarge input {
        width: 23px;
        height: 15px;
        text-align: right;
    }

    .paginadoLarge label {
        padding: 7px 7px;
        display: inline-block;
        font-weight: normal;
        color: #00b1f1;
    }

    .paginadoLarge li a {
        border-radius: 0px;
    }

.menuItemSelected {
    font-weight: bolder;
    color: lightblue;
    font-size: 11px;
}

.menuItemNotSelected {
    font-weight: normal;
    color: white;
    font-size: 11px;
}

#message_box_screen {
    margin: 5px;
}

#message_box {
    top: 10px;
    background-color: rgba(0,0,0,0.4);
    z-index: 2200;
}

@media (max-width: 991px) {

    .paginadoLarge {
        display: none;
    }

    .paginadoSmall {
        display: block;
        margin-top: 76px;
        margin-bottom: 10px;
    }

    .logo-flow img {
        height: 12px;
        margin-top: 20px;
    }

    .logo-client img {
        max-height: 30px;
        max-width: 120px;
        float: left;
    }

    header p.environment {
        color: #fff;
        font-size: 1em;
        margin-top: 5px;
        margin-bottom: 2px;
    }

    .lblEnvironment {
        float: right;
    }

    header div.imgEnvironment {
        visibility: collapse;
        position: absolute;
    }

    .lblEnvironment {
        width: 100%;
    }

    .col-nav {
        background-color: #182c47;
        padding-top: 15px;
        width: 100%;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

        .mobile .logo img {
            width: 60px;
        }

        .mobile .txt p {
            font-size: 8px;
        }

    #message_box p {
        top: 10px;
        margin-left: 10px;
        margin-right: 10px;
        font-size: 12px;
    }

    #message_box img {
        width: 50px;
    }
}

@media screen and (min-width: 992px) {
    #message_box {
        width: 50%;
    }

    .paginadoLarge {
        display: block;
        margin-bottom: 0px;
    }

    .paginadoSmall {
        display: none;
    }

    .lista-archivos table tr {
        font-size: 12px;
    }

    .lista-carpetas table tr {
        font-size: 12px;
    }

    .logo-flow img {
        height: 15px;
        margin-top: 17px;
        margin-bottom: 5px;
    }

    .logo-client img {
        max-height: 45px;
        max-width: 180px;
        margin-bottom: 5px;
        margin-top: 5px;
        position: absolute;
    }

    header p.environment {
        color: #fff;
        font-size: 1.1em;
        margin-top: 5px;
        margin-bottom: 5px;
        float: left;
    }

    .lblEnvironment {
        margin-top: 49px;
    }

    header div.imgEnvironment {
        width: 30px;
        margin-top: 5px;
        margin-right: 5px;
        margin-left: -8px;
    }

    header div.imgEnvironment {
        visibility: visible;
    }

    .lblEnvironment {
        width: 90%;
    }

    .desktop {
        display: block;
    }

    .mobile {
        display: none;
    }

    #message_box {
        width: 100%;
    }

        #message_box p {
            top: 10px;
            margin-left: 10px;
            margin-right: 10px;
            font-size: 15px;
        }

        #message_box img {
            width: 70px;
        }
}

.explorer-view {
    overflow-y: scroll;
    max-height: inherit;
    width: 100%;
}

.lista-archivos input {
    max-height: initial !important;
}

.lista-archivos input {
    margin: 2px 2px 0px 2px;
    width: 99.6%;
}

.lista-archivos table {
    margin-top: 2px;
    margin-left: 2px;
    margin-right: 2px;
    overflow: auto;
    width: 99.4%;
}

lista-carpetas input {
    max-height: initial !important;
}

.lista-carpetas input {
    margin: 2px 2px 0px 2px;
    width: 99.6%;
}

.lista-carpetas table {
    margin-top: 2px;
    margin-left: 2px;
    margin-right: 2px;
    overflow: auto;
    width: 99.4%;
}


.contenedor-archivos .no-details {
    min-height: 400px;
}

.lista-archivos table tr {
    background-color: azure;
    height: 30px;
    max-height: 50px;
}

    .lista-archivos table tr:hover {
        background-color: #CC9966; /*lavender;*/
        color: black;
    }

    .lista-archivos table tr:nth-child(odd):hover {
        background-color: #CC9966; /*lavender;*/
        color: black;
    }

    .lista-archivos table tr td {
        padding: 5px;
        color: #414870;
        border-right: solid thin;
        border-left: solid thin;
        border-color: lightgray;
        white-space: nowrap;
        font-size: 11px;
    }

    .lista-archivos table tr:nth-child(odd) {
        background-color: white;
    }

    .lista-archivos table tr td img {
        margin-right: 3px;
    }

.lista-archivos table th {
    padding: 5px;
    --color: #BDBDBD;
    color: darkslateblue;
    font-weight: 600;
    --background-color: #34495E;
    background-color: antiquewhite;
    height: 30px;
    border-right: solid thin;
    border-left: solid thin;
    border-color: lightgray;
}

.lista-archivos .rowSelected {
    background-color: #D0D3D4;
    color: darkslategrey;
}

.lista-archivos .rowNotSelected {
    background-color: white;
    color: #333;
}

.lista-archivos .rowSelected:nth-child(odd) {
    background-color: #ccc;
    color: darkslategrey;
}

.lista-archivos .rowNotSelected:nth-child(odd) {
    background-color: white;
    color: #333;
}

/**************************/

.lista-carpetas table tr {
    background-color: azure;
    height: 30px;
    max-height: 50px;
}

    .lista-carpetas table tr:hover {
        background-color: #CC9966; /*lavender;*/
        color: black;
    }

    .lista-carpetas table tr:nth-child(odd):hover {
        background-color: #CC9966; /*lavender;*/
        color: black;
    }

    .lista-carpetas table tr td {
        padding: 5px;
        color: #414870;
        border-right: solid thin;
        border-left: solid thin;
        border-color: lightgray;
        white-space: nowrap;
    }

    .lista-carpetas table tr:nth-child(odd) {
        background-color: white;
    }

    .lista-carpetas table tr td img {
        margin-right: 8px;
    }

.lista-carpetas table th {
    padding: 5px;
    color: #BDBDBD;
    font-weight: bold;
    background-color: #34495E;
    height: 30px;
    border-right: solid thin;
    border-left: solid thin;
    border-color: lightgray;
}

.lista-carpetas .rowSelected {
    background-color: #D0D3D4;
    color: darkslategrey;
}

.lista-carpetas .rowNotSelected {
    background-color: white;
    color: #333;
}

.lista-carpetas .rowSelected:nth-child(odd) {
    background-color: #ccc;
    color: darkslategrey;
}

.lista-carpetas .rowNotSelected:nth-child(odd) {
    background-color: white;
    color: #333;
}

@media screen and (max-width: 480px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 0px;
    }

        .table-responsive > .table {
            margin-bottom: 0;
        }

            .table-responsive > .table > thead > tr > th,
            .table-responsive > .table > tbody > tr > th,
            .table-responsive > .table > tfoot > tr > th,
            .table-responsive > .table > thead > tr > td,
            .table-responsive > .table > tbody > tr > td,
            .table-responsive > .table > tfoot > tr > td {
                white-space: nowrap;
            }

        .table-responsive > .table-bordered {
            border: 0;
        }

            .table-responsive > .table-bordered > thead > tr > th:first-child,
            .table-responsive > .table-bordered > tbody > tr > th:first-child,
            .table-responsive > .table-bordered > tfoot > tr > th:first-child,
            .table-responsive > .table-bordered > thead > tr > td:first-child,
            .table-responsive > .table-bordered > tbody > tr > td:first-child,
            .table-responsive > .table-bordered > tfoot > tr > td:first-child {
                border-left: 0;
            }

            .table-responsive > .table-bordered > thead > tr > th:last-child,
            .table-responsive > .table-bordered > tbody > tr > th:last-child,
            .table-responsive > .table-bordered > tfoot > tr > th:last-child,
            .table-responsive > .table-bordered > thead > tr > td:last-child,
            .table-responsive > .table-bordered > tbody > tr > td:last-child,
            .table-responsive > .table-bordered > tfoot > tr > td:last-child {
                border-right: 0;
            }

            .table-responsive > .table-bordered > tbody > tr:last-child > th,
            .table-responsive > .table-bordered > tfoot > tr:last-child > th,
            .table-responsive > .table-bordered > tbody > tr:last-child > td,
            .table-responsive > .table-bordered > tfoot > tr:last-child > td {
                border-bottom: 0;
            }
}

.headerTableOrder img {
    height: 7px;
    width: 13px;
    vertical-align: middle;
}

.ContractorAccessTitle {
    color: white;
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
}

.messageOk {
    position: fixed;
    top: 0;
    left: 60%;
    color: darkblue;
    z-index: 5100;    
    font-size: 17px;
    display: none;    
}

.messageError {
    position: absolute;
    top: 0;
    left: 60%;
    z-index: 5100;
    color: red;
    font-size: 17px;
    display: none;
}

.pageNotFound {
    text-align: center;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 150px;
    color: white;
    z-index: 2100;
    font-size: 30px;
    top: 100px;
}

@media screen and (min-width: 720px) {
    .modal-doc-properties {
        width: 60%;
    }
}

@media screen and (max-width: 720px) {
    .modal-doc-properties {
        width: 80%;
    }
}

.div-property-3-3 {
    width: 100%;
    padding: 5px;
}

.div-property-3-2 {
    width: 50%;
    padding: 5px;
}

    .div-property-3-2 p {
        text-align: left;
    }

.div-property-3 {
    width: 33%;
    padding: 2px;
}

.div-property-3 h3 {
    text-align: left !important;
}

.div-property-3 p {
    text-align: left !important;
}

.divExplorer {
    margin-left: 15px;
    position: relative;
    margin-top: 5px;
}

.divExplorerRoot {
    margin-left: 0px;
    margin-top: 10px;
}

    .divExplorerRoot label {
        font-size: 12px;
        font-weight: 200;
        padding-left: 3px;
        vertical-align: top;
        cursor: pointer;
    }

    .divExplorerRoot span {
        white-space: nowrap;
    }

.divExplorerSelected {
    background-color: lightgray;
}

.imgExplorerArrow:hover {
    opacity: 0.5;
    filter: alpha(opacity=100); /* For IE8 and earlier */
}

.imgExplorerArrow {
    margin-top: 7px;
    margin-right: 3px;
    vertical-align: top;
    height: 7px;
}

.imgExplorerFolder {
    width: 20px;
    cursor: pointer;
}

.filePath {
    width: 100%;
    padding-left: 5px;
    font-weight: bold;
    font-size: 12px;
}

.logo img {
    width: 120px;
}

.context-menu a {
    text-decoration: none;
}

.context-menu {
    background-color: ghostwhite;
    border-color: gray;
    border-width: 1px;
    border-style: solid;
    font-size: 12px;
    z-index: 500;
}

    .context-menu hr {
        margin: 0px;
        padding: 0px;
    }

    .context-menu li {
        margin-left: 8px;
        padding: 3px;
    }

    .context-menu img {
        margin-right: 8px;
    }

    .context-menu ul {
        margin-left: 0px;
        margin-top: 3px;
        margin-bottom: 3px;
        margin-right: 10px;
        list-style: none;
        padding: 0px;
    }

.context-menu-header {
    background-color: darkslateblue;
    font-size: 14px;
    font-weight: bold;
    padding: 5px;
    margin: 2px;
    color: white;
}

.divHistoryStatesSubmit {
    margin-top: 5px;
    color: gray;
}

.imageThumbnail {
    position: relative;
}

.png-over {
    position: absolute;
    top: 0;
    left: 0
}

.box-files {
    max-height: 100px;
    overflow-y: auto;
}

.wordwrap img {
    padding-right: 3px;
}

.wordwrap {
    text-align: left;
    white-space: normal; /* CSS3 */
    white-space: -moz-pre-wrap; /* Firefox */
    white-space: -pre-wrap; /* Opera <7 */
    white-space: -o-pre-wrap; /* Opera 7 */
    word-wrap: break-word; /* IE */
}

.tableColumn {
    max-width: 310px;
}

.documentRevisionsTable {
    font-size: 11px;
    width: 95%;
    margin: 20px;
}

.documentRevisionsTable th {
    background-color: #273c58;
    color: white;
    font-size: 12px;
    padding: 5px;
}

.documentRevisionsTable td {
    padding: 5px;
    color: gray;
}

.CustomProgress {
    margin-bottom: 10px !important;
}

.modal-title {
    line-height: 0.9 !important;
}

.documentProperties {    
    background-color: #00b0f1;
}

.documentPropertiesTitle {
    font-size: 11px;
    --color: #12253e;
    color:white;
    background-color: #00b0f1;
    font-weight:bold;
}

.documentProperties img {
    width:18px;
    margin-top:-5px;
    cursor:pointer;
}

#documentProperties {
    border-style: solid;
    border-color: gray;
    border-width: 1px;
}

#documentPropertiesData {
    border-top-style: solid;
    border-top-color: gray;
    border-top-width: 1px;
}

.botonera img {
    width:15px;
    margin-left:20px;
    cursor:pointer !important;
}

.botonera label {
    font-size:12px;
}

.fila h3{
    text-align:left;
}

.botoneraFiles {
    font-size:13px;
    margin:0px;
    margin-top:1px;
}

.botonNavegarFile {
    min-width: 25px !important;
    width: 25px !important;
    height: 15px;
    padding-bottom: 3px;
    margin-top: 4px;
    font-size: 10px;
    margin-left: 5px;
    margin-right: 5px;
    border-style: none;
    font-weight:bold;
    display:none;
}

.botoneraFiles label {
    margin-bottom: 0px;
    margin-top: 2px;
    color: wheat;
    margin-left: 5px;
    margin-right: 5px;
    font-size:12px;
}

.document-properties {
    margin-bottom: 2px;
    background-color: white;
}

.data-archivo {
    margin-top: 5px;
    margin-bottom: 5px;    
}

.document-properties-property-name {
    color: black;
    font-weight: bold;
    font-size: 12px;
    text-align: left !important;
    margin-bottom: 1px;
}

.document-properties-property-value {
    color: dimgray;
    font-size: 12px;
    margin-left: 5px;
    text-align: left !important;
    margin-bottom: 1px;
}

.div-property-3 {
    text-align: left !important;    
}

.fila {
    margin-left: 25px;
    margin-right: 25px;
}

.qualificationMessage {
    font-size: 16px;
    font-weight: bold;
    position: fixed;
    top: 100px;
    left: 20%;
    z-index: 2000;    
    background-color: red;
    color: white;
    padding: 3px 10px;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;    
}

.boton-nomina {
    height:35px;
    background-color: white;
    color:black !important;
    padding: 3px 10px;
    margin-left: 10px;    
    margin-top: 15px;
}

.divNomina {
    height:45px;
    margin-top:6px;
}

.modal-content-fd {
    border: 1px solid !important;
    display: inherit !important;
    border-radius: 10px;
    border-color: #0a8dbc;
    background-color: #f5f5f5;
    font-size: 10px !important;
}

.modal-entities {
    width:400px !important;
    height:500px !important;    
    overflow-y:no-display !important;
    left:30px;    
    top:50px;
}

.modal-body-table {
    max-height: 200px;    
    overflow-y: auto;
}

.table-entities input {
    margin-right: 5px;
}

.table-entities {
    color: #333 !important;
    font-size: 12px !important;
    padding: 20px !important;
    line-height: 20px;    
    width: 100%;
}

.table-entities table tbody {
    
}

.table-entities table thead {    
    color: black !important;
}

/* Lightbox */

.lb-mails.fancybox-content {
    background: #fafafa;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
}

.lb-mails ul {
    margin-left: 0;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.lb-mails ul li {
    font-size: 15px;
    list-style-type: none;
    border-bottom: 1px solid #ededed;
    padding: 8px 10px;
}