* {
	margin:0;
	padding:0;
}

@font-face {
	font-family: 'Roboto regular';
	src:url(../Roboto/Roboto-Regular.ttf);
}

@font-face {
	font-family: 'Roboto light';
	src:url(../Roboto/Roboto-Light.ttf);
}

@font-face {
	font-family: 'Roboto light-italic';
	src:url(../Roboto/Roboto-LightItalic.ttf);
}

@font-face {
	font-family: 'Roboto thin';
	src:url(../Roboto/Roboto-Thin.ttf);
}

@font-face {
	font-family: 'Roboto medium';
	src:url(../Roboto/Roboto-Medium.ttf);
}

@font-face {
	font-family: 'Roboto bold';
	src:url(../Roboto/Roboto-Bold.ttf);
}

::-webkit-scrollbar              { width:3.5px }
::-webkit-scrollbar-button       { display:none }
::-webkit-scrollbar-track-piece  { width:10px; background-color:#D9D9D9}
::-webkit-scrollbar-thumb        { width:10px; background-color:#004D80;-webkit-border-radius: 10px;}

input:-webkit-autofill {
    -webkit-box-shadow:0 0 0 50px white inset; /* Change the color to your own background color */
    -webkit-text-fill-color:#787878;
}
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 50px white inset;
    -webkit-text-fill-color: #787878;
}

/* Para Safari */
::selection {
	background: #004D80;
	color:#FFF;
}
/* Para Firefox */
::-moz-selection {
	background: #004D80;
	color:#FFF;
}

/*----  ----*/

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #004D80;
  position: fixed;
  z-index: 8;
  top: 50%;
  margin-top:-0.5px;
  right: 100%;
  width: 100%;
  height: 1px;
}

/*----------*/

a {
	text-decoration:none;
	color:inherit;
}

body {
	font-family: 'Roboto regular';
	font-weight:400;
	display:inline-block;
	float:left;
	width:100%;
	margin:0;
}

/*---- progress ----*/

#progress {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -30.5px;
	width:50px;
    padding: 5.5px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    color: #004D80;
    z-index: 9;
    background: #FFF;
}


/*----------*/

#header {
	position: fixed;
	top:0;
	left:0;
	opacity:0;
	transition:opacity 300ms ease-out;
    width: 100%;
    height: 97px;
    border-top: 3px solid #024b82;
	border-bottom: 1px solid #f5f5f5;
    background-color: #FFF;
    z-index: 2;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

#cont-header {
	width: 100%;
    height: 100%;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

/*---- Logo ---- */

.logo {
	position: absolute;
    width: 250px;
    height: 64px;
    margin: 16.5px 0;
    left: 50%;
    margin-left: -125px;
	cursor:pointer;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.logo img {
	max-width:100%;
}

/*---- Menu ----*/

.menu {
	position: relative;
    display: inline-block;
    float: left;
    width: 35px;
    height: 30px;
    margin: 33.5px;
    cursor: pointer;
    z-index: 1;
	transition:transform 300ms ease-out;
}

.menu_active {
	-webkit-transform:rotate(90deg);
	-moz-transform:rotate(90deg);
	-ms-transform:rotate(90deg);
	-o-transform:rotate(90deg);
	transform:rotate(90deg);
}

.menu_active span:nth-child(1) {
	transform: rotate(135deg);
	top: 7px;
}

.menu_active span:nth-child(2) {
	opacity:0;
}

.menu_active span:nth-child(3) {
	transform: rotate(45deg);
	top: -6px;
}

.menu span {
	display: inline-block;
    float: left;
    width: 35px;
    height: 1px;
    background-color: #024B82;
    margin-bottom: 6px;
	opacity:1;
	transition:all 300ms ease-out;
	position:relative;
}

.menu span:nth-child(1) {
	margin-top: 6px;
}

.opciones-menu {
	position: absolute;
    width: 100%;
    height: 97px;
	text-align:center;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.opciones-menu ul {
	display: inline-block;
    margin-left: -22px;
    -webkit-transform: rotateX(94deg);
	-moz-transform: rotateX(94deg);
	-ms-transform: rotateX(94deg);
	-o-transform: rotateX(94deg);
	transform: rotateX(94deg);
	
    -webkit-transform-origin: bottom center;
	-moz-transform-origin: bottom center;
	-ms-transform-origin: bottom center;
	-o-transform-origin: bottom center;
	transform-origin: bottom center;
	
    -webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	
    transition: transform 300ms ease-out;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
	
    backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	
	will-change: -webkit-transform;
    will-change: -moz-transform;
    will-change: transform;
}

.ul_show {
	-webkit-transform: rotateX(0) !important;
	-moz-transform: rotateX(0) !important;
	-ms-transform: rotateX(0) !important;
	-o-transform: rotateX(0) !important;
	transform: rotateX(0) !important;
}

.opciones-menu li {
	display:inline-block;
	float:left;
	color: #024B82;
	line-height:97px;
	margin: 0 25px;
	cursor:pointer;
	
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
}

.opciones-menu li:nth-child(3) {
	width:250px;
	height:97px;
}


/*---- Pagina ----*/

#page {
	display: inline-block;
    float: left;
    width: 100%;
	margin-top: 100px;
	overflow:hidden;	
	opacity:0;
	transition:opacity 300ms ease-out;
}

#titulo_erp {
	display: inline-block;
    float: left;
    width: 100%;
    border-top: 1px solid rgba(0,0,0,.15);
	opacity:0;
	transition: opacity 750ms ease-out;
}

#titulo_erp h3 {
	font-size: 21px;
    color: #004D80;
    font-family: 'Roboto thin';
    margin-left: 5%;
    line-height: 70px;
}

#titulo_erp h3 strong{
    font-family: 'Roboto regular';
}

.botton_vermas {
	display: inline-block;
    float: left;
    width: 100%;
    text-align: center;
}

.botton_vermas p {
	color: #004D80;
    font-size: 18px;
    display: inline-block;
    padding: 5px 40px;
    border: 1px solid;
	border-color: #D9D9D9;
    cursor: pointer;
    margin: 65px 0 0;
	transition:border-color 300ms ease-out;
}

.botton_vermas p:hover {
	border-color:#004D80;
}

#pack_erp {
	display:inline-block;
	float:left;
	width:100%;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.erp {
	display:inline-block;
	float:left;
	width:25%;
	
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
	
	-webkit-transform: translate3d(0,200px,0);
	-moz-transform: translate3d(0,200px,0);
	-ms-transform: translate3d(0,200px,0);
	-o-transform: translate3d(0,200px,0);
	transform: translate3d(0,200px,0);
	opacity:0;
}

.erp:nth-child(1) {transition: transform 600ms ease-out,opacity 750ms ease-out;}

.erp:nth-child(2) {transition: transform 600ms ease-out 100ms,opacity 750ms ease-out 100ms;}

.erp:nth-child(3) {transition: transform 600ms ease-out 200ms,opacity 750ms ease-out 200ms;}

.erp:nth-child(4) {transition: transform 600ms ease-out 300ms,opacity 750ms ease-out 300ms;}

/*-----------------------*/

.erp_show {
	-webkit-transform: translate3d(0,0,0) !important;
	-moz-transform: translate3d(0,0,0) !important;
	-ms-transform: translate3d(0,0,0) !important;
	-o-transform: translate3d(0,0,0) !important;
	transform: translate3d(0,0,0) !important;
	opacity:1 !important;
}

/*-----------------------*/

.erp_img {
	width: 100%;
    position: absolute;
    right: -26%;
    top: -70.5px;
}

.erp_head {
	display:inline-block;
	float:left;
	width:100%;
	height: 70px;
	background-color:#EDEEF0;
	border-top: 1px solid #D9D9D9;
	border-left: 1px solid #D9D9D9;
}

.erp:nth-child(1) .erp_head {
	border-left:none !important;
	border-bottom: 1px solid #395E94 !important;
}

.erp:nth-child(2) .erp_head {
	border-bottom: 1px solid #E7BD3F !important;
}

.erp:nth-child(3) .erp_head {
	border-bottom: 1px solid #4AB6A3 !important;
}

.erp:nth-child(4) .erp_head {
	background-color:#008655 !important;
	border-top: 1px solid #008655 !important;
    border-left: 1px solid #008655 !important;
    border-bottom: 1px solid #008655 !important;
}

.erp_head p:nth-child(1) {
	width: 40%;
    text-align: right;
    color: #787878;
    font-size: 19px;
    line-height: 14px;
    margin-top: 19px;
    font-family: 'Roboto light';
    margin-left: 12px;
}

.erp_head p:nth-child(2) {
	width: 40%;
    text-align: right;
    color: #395E94;
    font-size: 18px;
    line-height: 24px;
    font-family: 'Roboto regular';
    margin-left: 12px;
}

.erp:nth-child(2) .erp_head p:nth-child(2) {
    color: #E7BD3F !important;
}

.erp:nth-child(3) .erp_head p:nth-child(2) {
    color: #4AB6A3 !important;
}

.erp:nth-child(4) .erp_head p:nth-child(1) {
    color: #FFF !important;
	font-weight: 300;
}

.erp:nth-child(4) .erp_head p:nth-child(2) {
    color: #FFF !important;
	font-weight: 300;
}

.erp_body {
	position:relative;
	display: inline-block;
    float: left;
    width: 100%;
    border-right: 1px solid #D9D9D9;
}

.erp:nth-child(4) .erp_body {
	border-right:none !important;
}

.erp_body_titulo {
	color: #595959;
    font-size: 18px;
    width: 80%;
    margin: 61% auto 20px;
	line-height: 23px;
}

.erp_body_text {
	color: #787878;
    margin-top: 15px;
    font-size: 17px;
    width: 80%;
    margin: 0 auto;
    font-family: 'Roboto light';
    line-height: 23px;
}

#ultimos_proyectos {
	display:inline-block;
	float:left;
	width:100%;
}

.titulo_proyect {
	display:inline-block;
	float:left;
	width:100%;
	background-color: #EDEEF0;
	border-bottom: 1px solid rgba(0,0,0,.15);
	opacity:0;
	transition:opacity 750ms ease-out;
}

.titulo_proyect h3 {
	font-size: 21px;
    color: #004D80;
    font-family: 'Roboto thin';
    margin-left: 5%;
    line-height: 70px;
	opacity:0;
	transition:opacity 750ms ease-out 600ms;
}

.proyec {
	display:inline-block;
	float:left;
	width:25%;
	overflow:hidden;
}

.cont_proyect {
	display:inline-block;
	float:left;
	width:100%;
	height: 100%;
	border-right: 1px solid #D9D9D9;
}

.proyec:last-child .cont_proyect {
	border-right:none !important;
}

.erp:nth-child(1) .erp_head p {}

.cont_img_proyect {
	display: flex;
    float: left;
    width: 100%;
    height: 150px;
    align-items: center;
	opacity:0;
	transition:opacity 900ms ease-out;
	margin-top: 15px;
}

.cont_img_proyect img {
	margin: 0 auto;
    max-width: 87%;
    max-height: 87%;
}

.cont_proyect p {
	color: #787878;
    font-size: 14px;
    margin: 15px 7.5% 7px;
    width: 85%;
    text-align: center;
    display: inline-block;
    float: left;
    font-family: 'Roboto light';
    line-height: 19px;
	
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
	
	-webkit-transform: translate3d(0,100px,0);
	-moz-transform: translate3d(0,100px,0);
	-ms-transform: translate3d(0,100px,0);
	-o-transform: translate3d(0,100px,0);
	transform: translate3d(0,100px,0);
	
	opacity:0;
	transition: transform 600ms ease-out,opacity 1400ms ease-out;
}

#titulo_masproyectos,#titulo_contacto {
	display: flex;
    float: left;
    width: 100%;
    background-color: #EDEEF0;
    border-bottom: 1px solid rgba(0,0,0,.15);
    border-top: 1px solid rgba(0,0,0,.15);
    text-align: center;
    margin: 20px 0 0;
    min-height: 70px;
    align-items: center;
}

#titulo_contacto {
	margin: -1px 0 15px;
}

#titulo_masproyectos h3,#titulo_contacto h3 {
	font-size: 21px;
    color: #004D80;
    font-family: 'Roboto thin';
	width: 100%;
}

#titulo_masproyectos h3 a,#titulo_contacto h3 a {
	font-family: 'Roboto regular';
}

#contacto {
	display: flex;
    float: left;
    width: 100%;
	min-height: 450px;
}

.cont_contacto {
	display: flex;
    float: left;
    width: 100%;
	align-items: center;
}

.info_contacto {
	display: inline-block;
    float: left;
    padding: 20px 40px;
	border-right: 1px solid #D9D9D9;
	margin-bottom:20px;
}

.info_contacto p {
	color: #787878;
    font-size: 13.5px;
	line-height: 18px;
	font-family: 'Roboto light'
}

.info_contacto p strong {
	font-family: 'Roboto regular'
}

.mensaje {
	display: inline-block;
    float: left;
	padding: 20px 40px;
	margin-bottom:20px;
}

.cont_mensaje {
	display: inline-block;
    float: left;
}

#form_contacto {
	display: inline-block;
    float: left;
	width: 350px;
}

#form_contacto p strong {
	width: 100%;
    color: #787878;
    font-size: 20px;
	font-family: 'Roboto regular';
    line-height: 18px;
    display: block;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 10px;
}

#form_contacto input {
	width: 100%;
    display: block;
    border: none;
    font-family: 'Roboto light';
    border-bottom: 1px solid #D9D9D9;
    color: #787878;
    font-size: 16px;
    height: 28px;
    line-height: 28px;
    padding: 6px 0;
}

#form_contacto textarea {
	width:100%;
	display: block;
    border: none;
	font-family: 'Roboto light';
	resize:none;
	border-bottom: 1px solid #D9D9D9;
    padding: 6px 0;
	color: #787878;
	font-size: 16px;
}

input:focus,textarea:focus {
	outline:none !important;
}

#form_contacto input::-webkit-input-placeholder,#form_contacto textarea::-webkit-input-placeholder {
   color: #787878;
}

#form_contacto input:-moz-placeholder,#form_contacto textarea:-moz-placeholder { /* Firefox 18- */
   color: #787878;  
}

#form_contacto input::-moz-placeholder,#form_contacto textarea::-moz-placeholder {  /* Firefox 19+ */
   color: #787878;  
}

#form_contacto input:-ms-input-placeholder,#form_contacto textarea:-ms-input-placeholder {  
   color: #787878;  
}

#form_contacto #submit {
	width: auto;
    background: none;
    color: #004D80;
    font-size: 18px;
    padding: 5px 40px;
    border: 1px solid;
    border-color: #D9D9D9;
    cursor: pointer;
    margin: 65px 0 0;
    transition: border-color 300ms ease-out;
    font-family: 'Roboto regular';
    height: inherit;
    line-height: normal;
}

#form_contacto #submit:hover {
	border-color: #004D80;
}

#nosotros {
	display:inline-block;
	float:left;
	width:100%;
}

.cont_nosotros {
	display:inline-block;
	float:left;
	width:100%;
	height:100%;
}

.titulo_nosotros {
	display: flex;
    float: left;
    width: 100%;
    background-color: rgb(237, 238, 240);
    text-align: center;
    min-height: 70px;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14902);
}

.titulo_nosotros h3 {
	font-size: 21px;
    color: rgb(0, 77, 128);
    font-family: 'Roboto thin';
    width: 100%;
}

.titulo_nosotros h3 strong {
	font-family: 'Roboto regular';
}

.cont_info_nosotros {
	display: flex;
    width: 90%;
    margin: 0 5%;
    height: 90%;
    align-items: center;
}

.cent_nosotros {
	display: flex;
    align-items: center;
}

.nosotros_text {
	display: inline-block;
    float: left;
    width: 42.5%;
	margin-right: 3.5%;
	margin-left: 8%;
}

.nosotros_text p {
	color: #787878;
    font-size: 15px;
    width: 100%;
    margin: 0 auto;
    font-family: 'Roboto light';
    margin-bottom: 15px;
    line-height: 20px;
}

.nosotros_img {
	display: inline-block;
	text-align:left;
    width: 38%;
}

.nosotros_img img {
	max-width: 100%;
    margin: 0 auto;
    display: block;
}

/*---- Slider ----*/

#slider {
	display:inline-block;
	float:left;
	width:100%;
	opacity:0;
	overflow:hidden;
	transition:opacity 300ms ease-out;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

.cont-slider {
	position:relative;
	display: inline-block;
    float: left;
    width: 100%;
    height: 100%;
	overflow:hidden;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

.info_slider {
	position:relative;
	display:inline-block;
	float:left;
	width:30%;
	height:100%;
	background-color:#024b82;
	background-image:url(../img/pattern19.png);
	background-repeat:repeat;
	
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

.cont_info_slider {
	padding: 40px;
}

.cont_info_slider h3 {
	display:inline-block;
	float:right;
	color: #FFF;
    font-family: 'Roboto thin';
    text-align: right;
    font-size: 35px;
    line-height: 37px;
}

.cont_info_slider h3 strong {
	font-family: 'Roboto regular';
}

.cont_info_slider p {
	display: inline-block;
    float: right;
    text-align: right;
    color: #FFF;
    font-size: 19px;
    font-family: 'Roboto light';
    width: 293px;
    margin-top: 16px;
	line-height: 27px;
}

.slider_img {
	position:relative;
	display:inline-block;
	width:70%;
	overflow:hidden;
	height:100%;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

.slider_img ul {
	position:relative;
	display:inline-block;
	float:left;
	height:100%;
	overflow: hidden;
	
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

.slider_img ul li {
	position:relative;
	display:inline-block;
	float:left;
	height:100%;
	background-size: cover;
    background-position: center;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

.slider_img ul li img {
	width: 100%;
		
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

.nav_slider {
	position: absolute;
    width: 100%;
    height: 50px;
    left: 0;
    bottom: 0;
	text-align: center;
}

.nav_slider div {
	position:relative;
	width: 10px;
    height: 10px;
    border: 1px solid #FFF;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    margin: 19px 2px;
}

.nav_slider div span {
	width: 8px;
    height: 8px;
    background-color: #FFF;
    border-radius: 50%;
    margin: 1px auto;
    display: none;
}

.nav_slider div:nth-child(1) span {
	display:block;
}

.mask_slider {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color: rgba(0, 77, 128, 0.20);
	
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.load_slider {
	position: absolute;
    top: 30px;
    width: 96%;
    left: 2%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
	
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

.load_slider span {
	position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 0px;
    background-color: #FFF;
	
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

.load_time {
	transition: width 4000ms ease-in-out !important;
	 width: 100% !important;
}

.texto_slider {
	position: absolute;
    top: 40px;
    left: 2%;
}

.texto_slider p {
	color: #FFF;
    font-family: 'Roboto light';
    font-size: 14px;
}

.texto_slider p strong {
	font-family: 'Roboto regular';
}

.texto_slider p span {
	font-weight:400;
}

.fl_i {
	position: absolute;
    top: 0;
    left: 30px;
    width: 60px;
    height: 100%;
	display: flex;
    align-items: center;
	
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

.fl_i div {
	width: 40px;
    height: 40px;
    border: 2px solid #FFF;
    border-radius: 50%;
	display: block;
    margin: 0 auto;
	cursor:pointer;
	background-image:url(../img/FlechaIzquierda.svg);
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center;
	transition:background-color 300ms ease-out;
}

.fl_i div:hover,.fl_d div:hover {
	background-color: rgba(255,255,255,.15) !important;
}

.fl_d {
	position: absolute;
    top: 0;
    right: 30px;
    width: 60px;
    height: 100%;
	display: flex;
    align-items: center;
	
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
	transition:background-color 300ms ease-out;
}

.fl_d div {
	width: 40px;
    height: 40px;
    border: 2px solid #FFF;
    border-radius: 50%;
	display: block;
    margin: 0 auto;
	cursor:pointer;
	
	background-image:url(../img/FlechaDerecha.svg);
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center;
	transition:background-color 300ms ease-out;
}


/*---- Scroll ----*/

#scroll {
	display:inline-block;
	float:left;
	width:100%;
	height:100px;
}

.cont-scroll {
	position:relative;
	width:96%;
	margin:0 auto;
	height:100px;
}

.line_long {
	position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    top: 50%;
    margin-top: -.5px;
    background-color: rgba(2, 75, 130, 0.2);
}

.line_s_l {
	position: absolute;
    left: 0;
    width: 20%;
    height: 1px;
    top: 50%;
    margin-top: -.5px;
    background-color: rgba(2, 75, 130, 1);
	transition:width 700ms cubic-bezier(1, 0.01, 0.42, 0.98);
}

.line_s_r {
	position: absolute;
    right: 0;
    width: 20%;
    height: 1px;
    top: 50%;
    margin-top: -.5px;
    background-color: rgba(2, 75, 130, 1);
	transition:width 700ms cubic-bezier(1, 0.01, 0.42, 0.98);
}

.ico-scroll {
	position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 100px;
    background-color: #FFF;
    margin-left: -50px;
    cursor: pointer;
}

.ico-scroll span {
	position: absolute;
    left: 50%;
    margin-left: -22.5px;
    width: 41px;
    height: 41px;
    border: 2px solid #024B82;
    border-radius: 50%;
    margin-top: 19px;
	background-image:url(../img/FlechaAbajo.svg);
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center;
}

.ico-scroll p {
	text-align: center;
    color: #024B82;
    margin-top: 67px;
    font-weight: 600;
}


/*---- Page Clientes ----*/

#page_clientes {
	display:none;
	float:left;
	width:100%;
	margin-top: 101px;
}

.spinner-load {
    display: block;
    position: fixed;
    z-index: 2000;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border: solid 2px transparent;
    border-top-color: rgb(0, 77, 128);
    border-left-color: rgb(0, 77, 128);
    border-radius: 10px;
    margin-top: -7px;
    margin-left: -7px;
    -webkit-animation: pace-spinner 500ms linear infinite;
    -moz-animation: pace-spinner 500ms linear infinite;
    -ms-animation: pace-spinner 500ms linear infinite;
    -o-animation: pace-spinner 500ms linear infinite;
    animation: pace-spinner 500ms linear infinite;
}

@-webkit-keyframes pace-spinner {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes pace-spinner {
  0% { -moz-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes pace-spinner {
  0% { -o-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes pace-spinner {
  0% { -ms-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes pace-spinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cont_page_clientes {
	display:inline-block;
	float:left;
	width:100%;
}

.titulo_clientes {
	display: flex;
    float: left;
    width: 100%;
    background-color: #EDEEF0;
    border-bottom: 1px solid rgba(0,0,0,.15);
    text-align: center;
    min-height: 70px;
    align-items: center;
}

.titulo_clientes h3 {
	color: #004D80;
    width: 100%;
    font-family: 'Roboto thin';
    font-size: 21px;
}

.titulo_clientes h3 strong {
	font-family: 'Roboto regular';
}

.line_cliente {
	display: inline-block;
    float: left;
    width: 100%;
}

.line_cliente p {
	color: #595959;
    width: 89%;
    margin: 0px auto;
    border-top: 1px solid #EDEEF0;
    border-bottom: 1px solid #EDEEF0;
    padding: 12px 0 12px 20px;
    font-size: 16px;
}

.grilla_clientes {
	display: inline-block;
    float: left;
    width: 100%;
	margin: 20px 0;
}

.cont_grilla_clientes {
	display: inline-block;
    float: left;
    width: 89%;
    margin: 0 5.5%;
}

.clientes_e {
	display: inline-block;
    float: left;
    width: 18%;
    height: 125px;
    position: relative;
    padding: 10px 1%;
}

.cont_clientes_e {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	cursor:pointer;	
	background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.cont_img_clientes {
	width: 100%;
    height: 100%;
    position: relative;
}

.cont_clientes_img_bor {
	width: 100%;
    height: 100%;
    position: relative;
}

.info_clientes {
	display: none;
    float: left;
    width: 100%;
}

.cont_info_clientes {
	display: inline-block;
    float: left;
    width: 89%;
    margin: 0 5.5%;
	position:relative;
	overflow: hidden;
	
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

.clientes_info_left {
	display: inline-block;
    float: left;
    width: 35%;
    border: 1px solid #EDEEF0;
    padding: 35px 0;
    margin: 0 0 35px;
    position: relative;
    z-index: 1;
    background-color: #FFF;
	
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

/*-------------------------------------------*/

.info_left_img {
	background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 75%;
    height: 125px;
    margin: 0 auto 35px;
	-webkit-transform: translate3d(0,100px,0);
	-moz-transform: translate3d(0,100px,0);
	-ms-transform: translate3d(0,100px,0);
	-o-transform: translate3d(0,100px,0);
	transform: translate3d(0,100px,0);
	opacity:0;
	transition: transform 500ms ease-out,opacity 750ms ease-out;
}

.info_left_titulo {
	color: #595959;
    font-size: 18px;
    line-height: 23px;
    width: 75%;
    margin: 0 auto 20px;
    text-align: center;
    font-family: 'Roboto regular';
	-webkit-transform: translate3d(0,100px,0);
	-moz-transform: translate3d(0,100px,0);
	-ms-transform: translate3d(0,100px,0);
	-o-transform: translate3d(0,100px,0);
	transform: translate3d(0,100px,0);
	opacity:0;
	transition: transform 500ms ease-out 150ms,opacity 750ms ease-out 150ms;
}

.info_left_text {
	text-align: center;
    width: 75%;
    margin: 0 auto 20px;
	font-family: 'Roboto light';
	color: #787878;
    font-size: 16px;
	-webkit-transform: translate3d(0,100px,0);
	-moz-transform: translate3d(0,100px,0);
	-ms-transform: translate3d(0,100px,0);
	-o-transform: translate3d(0,100px,0);
	transform: translate3d(0,100px,0);
	opacity:0;
	transition: transform 500ms ease-out 200ms,opacity 750ms ease-out 200ms;
}

.info_left_link {
	text-align: center;
    width: 75%;
    margin: 0 auto;
	font-family: 'Roboto light';
	color: #787878;
    font-size: 16px;
	-webkit-transform: translate3d(0,100px,0);
	-moz-transform: translate3d(0,100px,0);
	-ms-transform: translate3d(0,100px,0);
	-o-transform: translate3d(0,100px,0);
	transform: translate3d(0,100px,0);
	opacity:0;
	transition: transform 500ms ease-out 300ms,opacity 750ms ease-out 300ms;
}

/*----------------------------*/

.cliente_info_right {
	display: inline-block;
    float: left;
    margin: 0 0 35px;
    background-color: #EDEEF0;
	position:relative;
	transition:transform 700ms ease-out 400ms;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

.info_right_m {
	-webkit-transform: translate3d(-100%,0,0) !important;
	-moz-transform: translate3d(-100%,0,0) !important;
	-ms-transform: translate3d(-100%,0,0) !important;
	-o-transform: translate3d(-100%,0,0) !important;
	transform: translate3d(-100%,0,0) !important;
}

.cont_text_right {
	margin: 55px 0;
    overflow: auto;
}

.info_right_texto {
	font-family: 'Roboto light';
    color: #787878;
    font-size: 15px;
    margin: 0 0 0 55px;
    width: 85%;
    line-height: 21px;
    display: inline-block;
}

.close_info_clientes {
	position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
	cursor:pointer;
}

.close_info_clientes span:nth-child(1) {
	width: 30px;
    height: 1px;
    background-color: #595959;
    -webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
    position: absolute;
	margin-top: 14px;
}

.close_info_clientes span:nth-child(2) {
	width: 30px;
    height: 1px;
    background-color: #595959;
    -webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
    position: absolute;
	margin-top: 14px;
}

.show_info_cliente .info_left_img,.show_info_cliente .info_left_titulo,.show_info_cliente .info_left_text,.show_info_cliente .info_left_link {
	-webkit-transform: translate3d(0,0,0) !important;
	-moz-transform: translate3d(0,0,0) !important;
	-ms-transform: translate3d(0,0,0) !important;
	-o-transform: translate3d(0,0,0) !important;
	transform: translate3d(0,0,0) !important;
	opacity:1 !important;
}

/*---- page erp ----*/

#page_erp {
	display:none;
	float:left;
	width:100%;
	margin-top:100px;
}

#cont_page_erp {
	display:inline-block;
	float:left;
	width:100%;
}

.nav_erp {
	display:inline-block;
	float:left;
	width:100%;
	height:48px;	
}

.nav_erp_e {
	display:inline-block;
	float:left;
	width:25%;
	cursor:pointer;
}

.cont_nav_erp_e {
	position:relative;
	display: inline-block;
    float: left;
    width: 100%;
    height:48px;    
	border-top: 1px solid #D9D9D9;
    border-left: 1px solid #D9D9D9;
}

.erp_selec {
	background-color: #EDEEF0;
}

.nav_erp_e:nth-child(1) .cont_nav_erp_e {
	border-left: none !important;
    border-bottom: 1px solid #395E94 !important;
}

.nav_erp_e:nth-child(2) .cont_nav_erp_e {
    border-bottom: 1px solid #E7BD3F !important;
}

.nav_erp_e:nth-child(3) .cont_nav_erp_e {
	border-bottom: 1px solid #4AB6A3 !important;
}

.nav_erp_e:nth-child(4) .cont_nav_erp_e {
	background-color: #008655 !important;
    border-top: 1px solid #008655 !important;
    border-bottom: 1px solid #008655 !important;
	border-left:none !important;
}

.cont_nav_erp_e p:nth-child(1) {
    text-align: left;
    color: #787878;
    font-size: 17px;
    line-height: 14px;
    margin-top: 9px;
    font-family: 'Roboto light';
    margin-left: 35px;
}

.cont_nav_erp_e p:nth-child(2) {
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Roboto regular';
    margin-left: 35px;
}

.nav_erp_e:nth-child(1) .cont_nav_erp_e p:nth-child(2) {
    color: #395E94;
}

.nav_erp_e:nth-child(2) .cont_nav_erp_e p:nth-child(2) {
    color: #E7BD3F;
}

.nav_erp_e:nth-child(3) .cont_nav_erp_e p:nth-child(2) {
    color: #4AB6A3;
}


.nav_erp_e:nth-child(4) .cont_nav_erp_e p:nth-child(1) {
    color: #FFF !important;
}
.nav_erp_e:nth-child(4) .cont_nav_erp_e p:nth-child(2) {
    color: #FFF;
}

.ico_cruz {
	position: absolute;
    top: 0;
    right: 0;
    width: 49px;
    height: 49px;
}

.ico_cruz span:nth-child(1) {
	background-color: rgb(76, 170, 136);
    width: 49px;
    height: 14px;
    position: absolute;
    top: 17.5px;
}

.ico_cruz span:nth-child(2) {
	background-color: rgb(76, 170, 136);
    width: 14px;
    height: 49px;
    position: absolute;
    top: 0;
    left: 17.5px;
}

.mostrar_erp {
	transition:visibility 300ms ease-out;
}

#SmallBussines,#Advanced,#Corporate,#Salud {
	display:none;
	width:100%;
}

.cont_SmallBussines {
	display:inline-block;
	float:left;
	width:100%;
}

.cont_img_erp {
	display:inline-block;
	float:left;
	width:35%;
	margin-top:3%;
}

.cont_img_erp img {
	max-width:100%;
	margin-left: 7%;
	transition:opacity 500ms ease-out, transform 500ms ease-out;
	-moz-transform:translate3d(0,0,0);
	-ms-transform:translate3d(0,0,0);
	-o-transform:translate3d(0,0,0);
	-webkit-transform:translate3d(0,0,0);
	transform:translate3d(0,0,0);
	opacity:1;
}

.anim {
	transition:opacity 0ms ease-out, transform 0ms ease-out !important;
	-moz-transform:translate3d(0,100px,0) !important;
	-ms-transform:translate3d(0,100px,0) !important;
	-o-transform:translate3d(0,100px,0) !important;
	-webkit-transform:translate3d(0,100px,0) !important;
	transform:translate3d(0,100px,0) !important;
	opacity:0 !important;
}

.cont_img_erp h3 {
	text-align:center;
	color: #595959;
    font-size: 19px;
    line-height: 23px;
	transition:opacity 500ms ease-out 100ms, transform 500ms ease-out 100ms;
	-moz-transform:translate3d(0,0,0);
	-ms-transform:translate3d(0,0,0);
	-o-transform:translate3d(0,0,0);
	-webkit-transform:translate3d(0,0,0);
	transform:translate3d(0,0,0);
	opacity:1;
	width: 80%;
    margin: 0 auto;
}

.cont_img_erp p {
	text-align:center;
	color: #787878;
    font-size: 17px;
    font-family: 'Roboto light';
    line-height: 23px;
	transition:opacity 500ms ease-out 150ms, transform 500ms ease-out 150ms;
	-moz-transform:translate3d(0,0,0);
	-ms-transform:translate3d(0,0,0);
	-o-transform:translate3d(0,0,0);
	-webkit-transform:translate3d(0,0,0);
	transform:translate3d(0,0,0);
	opacity:1;
	width: 80%;
    margin: 15px auto 0;
}

.modulos {
    position: relative;
	display: inline-block;
    float: left;
    width: 65%;
    margin-top: 40px;
	opacity:0;
	transition:opacity 500ms ease-out;
	z-index: 1;
}



.modulos p.modulo_titulo {
	color: #595959;
    font-size: 19px;
    line-height: 23px;
    padding-left: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #395E94;
	-webkit-user-select: none;  /* Chrome all / Safari all */
	-moz-user-select: none;     /* Firefox all */
	-ms-user-select: none;      /* IE 10+ */
	user-select: none;          /* Likely future */
}

.hidden {
	visibility:hidden !important;
	transition: all 0ms ease-out 0ms;
}

.nav_modulos {
	display:none;
	float:left;
	width:100%;
	margin-top:15px;
}

.btn_opc_modulos {
	display:inline-block;
	float:left;
	margin-right: 5px;
}

.btn_opc_modulos p {
	text-align: center;
    color: #787878;
    font-size: 15px;
    font-family: 'Roboto regular';
    padding: 7px 10px;
    border: 1px solid #EDEEF0;
    border-radius: 5px;
    cursor: pointer;
}

.opc_modulo_select {
	background-color: #EDEEF0 !important;
	color:#024b82 !important;
	margin-bottom:10px;
}

.btn_opc_modulos:nth-child(2) p,.btn_opc_modulos:nth-child(3) p,.btn_opc_modulos:nth-child(4) p {
	padding: 7px 30px;
}

.info_modulo {
    display: inline-block;
    float: left;
    width: 62%;
    margin-top: 30px;
    margin-left: 2%;
	padding-right: 20px;
	max-height: 500px;
    overflow: auto;
}

.info_modulo p {
	color: #787878;
    font-size: 14.5px;
    font-family: 'Roboto light';
    line-height: 20px;
}

.info_modulo h3 {
	color: #595959;
    font-size: 17px;
    font-family: 'Roboto regular';
    line-height: 23px;
    margin: 20px 0 7px;
}

.info_modulo h3:nth-child(1) {
	margin: 0 0 7px;
}

.info_modulo_d {
	width: 20%;
    height: 75%;
    background-color: #EDEEF0;
    position: fixed;
    right: 0;
    top: 218px;
    padding: 0 0 25px;
}

.info_modulo_d h3 {
	color: #595959;
    font-size: 15px;
    font-family: 'Roboto regular';
    line-height: 23px;
    margin: 0px 25px 5px;
}

.info_modulo_d p {
	color: #787878;
    font-size: 15px;
    font-family: 'Roboto light-italic';
    line-height: 20px;
    margin: 0px 25px;
}

.info_modulo_p_acl {
	font-family: 'Roboto regular' !important;
    line-height: normal !important;
    font-size: 12px !important;
    margin-top: 20px !important;
}

.opciones_clientes {
	display: inline-block;
    float: left;
    width: 100%;
}

.cont_opciones_clientes {
	display: inline-block;
    width: 90%;
    margin: 25px 5% 20px;
	border-top: 1px solid #EDEEF0;
    border-bottom: 1px solid #EDEEF0;
	padding: 10px 0;
}

.btn_opc_clientes {
	display: inline-block;
    float: left;
    margin: 10px 1.25% 10px 0;
    width: 19%;
}

.btn_opc_clientes:nth-child(5n) {
	margin:10px 0 10px 0;
}

.btn_opc_clientes p {
	text-align: center;
    color: #787878;
    font-size: 15px;
    font-family: 'Roboto light';
    padding: 7px 10px;
    border: 1px solid #EDEEF0;
    border-radius: 5px;
    cursor: pointer;
	margin-bottom: 0;
}

#Advanced .modulos p.modulo_titulo {
	border-bottom: 1px solid #E7BD3F;
}

#Corporate .modulos p.modulo_titulo {
	border-bottom: 1px solid #4AB6A3;
}

#Salud .modulos p.modulo_titulo {
	border-bottom: 1px solid #008655;
}

.ver_mas_modulos {
	cursor:pointer;
	transition:color 300ms ease-out;
	font-size: 16px;
	font-family:'Roboto light';
}

.ver_mas_modulos:hover {
	color:#004D80;
}

.mas_modulos {
	display:none;
	position: absolute;
    top: 30px;
    left: 0;
    width: 400px;
    background-color: #EDEEF0;
    z-index: 1;
    border-bottom: 1px solid #D9D9D9;
    border-left: 1px solid #D9D9D9;
    border-right: 1px solid #D9D9D9;
	max-height: 240px;
    overflow-y: auto;
}

.mas_modulos p {
	width: 90%;
    margin: 10px auto;
    padding: 0px 0 10px;
    font-family: 'Roboto light';
    border-bottom: 1px solid #D9D9D9;
    cursor: pointer;
	transition:color 300ms ease-out;
}

.mas_modulos p:last-child {
	border:none;
	padding-bottom: 0;
}

.mas_modulos p:hover,.modulos_p_select {
	color:#395E94;
}

#Advanced .mas_modulos p:hover {
	color:#E7BD3F;
}
#Corporate .mas_modulos p:hover {
	color:#4AB6A3;
}
#Salud .mas_modulos p:hover {
	color:#008655;
}

#Advanced .modulos_p_select {
	color:#E7BD3F;
}
#Corporate .modulos_p_select {
	color:#4AB6A3;
}
#Salud .modulos_p_select {
	color:#008655;
}

/*---- Footer ----*/

footer {
	display: inline-block;
    float: left;
    width: 100%;
    background-color: #BDBDBD;
    color: #FFF;
}

.cont_footer {
	display: inline-block;
    float: left;
    width: 100%;
	margin: 0 0 20px;
}

.footer_e {
    display: inline-block;
    float: left;
    width: 25%;
    text-align: center;
}

.footer_e h3 {
	font-size: 17px;
	font-family: 'Roboto regular';
	margin: 20px 0 12px;
}

.footer_e p {
	font-family: 'Roboto light';
	width: 80%;
    margin: 0 auto;
	font-size: 15px;
	line-height:21px;
}

/*---- Creditos ----*/

#c {
	display:inline-block;
	float:left;
	width:100%;
	background-color:#EDEEF0;
}

#cont_c {
	display:inline-block;
	float:left;
	width:100%;
}

#cont_c p {
	color: #787878;
    padding: 8px 30px;
	font-size: 15px;
	font-family: 'Roboto light';
}

#cont_c p span {
	position: relative;
    display: inline-block;
    float: right;
    top: -9px;
}

#svg_white {
	width: 15px;
    display: inline-block;
    position: relative;
    top: 2px;
}

#bg {
	width: 120px;
	margin-left: 5px;
}

#bg path {
    fill: #878888 !important;
}

.face_search {
	position: absolute;
    right: 33.5px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.cont_face_search {
	display: inline-block;
    float: left;
}

.face {
	display: inline-block;
    float: left;
    width: 19px;
    margin-right: 10px;
    padding: 5px 10px;
}

.face img {
	display:inline-block;
	float:left;
	max-width:100%;
	cursor:pointer;
}

.search {
	display:none !important;
	display: inline-block;
    float: left;
    width: 20px;
    padding: 5px 0;
}

.search img {
	display: none;
	display:inline-block;
	float:left;
	max-width:100%;
	cursor:pointer;
}

#search {
	display:none !important;
	position: fixed;
    top: 101px;
    width: 100%;
    z-index: 1;
}

.cont_search {
	display:inline-block;
	float:left;
	width:100%;
	background:#EDEFF0;
	color:#787878;
}

.cont_search div {
	width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
}

.cont_search div input {
	border: none;
    background-color: #EDEFF0;
    color: #787878;
    font-family: 'Roboto light';
    font-size: 22px;
    margin-left: 66px;
}

.cont_search div input:focus {
	outline:none !important;
}

.cont_search div input::-webkit-input-placeholder {
   color: #787878;
}

.cont_search div input:-moz-placeholder { /* Firefox 18- */
   color: #787878;
}

.cont_search div input::-moz-placeholder {  /* Firefox 19+ */
   color: #787878;
}

.cont_search div input:-ms-input-placeholder {  
  color: #787878;
}


@media screen and (max-width: 1366px) {

#header,.opciones-menu,.opciones-menu li:nth-child(3) {
	height: 67px;
}

.opciones-menu li:nth-child(3) {
	width:200px;
}

.menu {
    margin: 19px;
}

.opciones-menu li {
	line-height: 67px;
    margin: 0 20px;
    font-size: 16px;
}

.logo {
	width: 200px;
    height: 52px;
    margin: 11px 0;
    margin-left: -100px;
}

#page {
	margin-top:71px;
}

#scroll,.cont-scroll,.ico-scroll {
	height:70px;
}

.ico-scroll p {
	margin-top: 43px;
    font-size: 15px;
}

.ico-scroll span {
	margin-top: 12px;
    margin-left: -14.5px;
    width: 25px;
    height: 25px;
}

#page_clientes {
	margin-top: 71px;
}

.face {
	width:17px;
}

.search {
    width: 18px;
}

#titulo_erp h3 {
    line-height: 60px;
	font-size: 19px;
}

.erp_head {
    height: 60px;
}

.erp_head p:nth-child(1) {
    margin-top: 15px;
}

.erp_body_titulo {
    margin: 57% auto 10px;
	font-size: 17px;
    line-height: 21px;
}

.erp_body_text {
    font-size: 16px;
    line-height: 21px;
}

.botton_vermas p {
    margin: 40px 0 0;
}

.cont_img_proyect {
    height: 125px;
}

#page_erp {
    margin-top: 70px;
}

.nosotros_text p {
    font-size: 13px;
    line-height: 18px;
}

.nosotros_img {
    margin-top: -1.5%;
}

.nosotros_img img {
    max-width: 90%;
}

#form_contacto p strong {
    font-size: 17px;
}

#form_contacto input,#form_contacto textarea {
    font-size: 15px;
}

.titulo_proyect h3 {
    font-size: 19px;
    line-height: 60px;
}

#titulo_masproyectos, #titulo_contacto {
    min-height: 60px;
}

#titulo_masproyectos h3, #titulo_contacto h3 {
    font-size: 19px;
}

.titulo_nosotros h3 {
    font-size: 19px;
}

.titulo_nosotros {
    min-height: 60px;
}

.cont_img_erp {
    margin-top: 2.8%;
}
.modulos {
    margin-top: 30px;
}

.cont_img_erp h3 {
    font-size: 18px;
}

.cont_img_erp p {
    font-size: 16px;
    line-height: 21px;
}

.btn_opc_modulos p {
    font-size: 14px;
}

.info_modulo {
    margin-top: 20px;
}

.info_modulo p {
    font-size: 14px;
    line-height: 19px;
}

.info_modulo h3 {
    font-size: 16px;
}

.info_modulo_d {
    top: 178px;
    padding: 0 0 25px;
}

.info_modulo_d h3 {
    margin: 0px 25px 10px;
}

.info_modulo_d p {
    font-size: 14.5px;
    line-height: 21px;

}

.info_modulo {
    height: 350px;
    overflow: auto;
    padding-right: 20px;
}

.titulo_clientes {
    min-height: 60px;
}

.titulo_clientes h3 {
	font-size:19px;
}

.btn_opc_clientes p {
    font-size: 14px;
}

.line_cliente p {
    font-size: 16.5px;
	padding: 10px 0 10px 20px;
}

.info_left_titulo {
    font-size: 17px;
    line-height: 21px;
}

.info_left_text {
    font-size: 15px;
}

.info_right_texto {
    font-size: 14px;
    width: 84%;
}

}

@media screen and (max-width: 1024px) {

#header,.opciones-menu,.opciones-menu li:nth-child(3) {
	height: 67px;
}

.opciones-menu li:nth-child(3) {
	width:200px;
}

.menu {
    margin: 19px;
}

.opciones-menu li {
	line-height: 67px;
    margin: 0 15px;
    font-size: 14px;
}

.logo {
	width: 200px;
    height: 52px;
    margin: 11px 0;
    margin-left: -100px;
}

#page {
	margin-top:71px;
}

#scroll,.cont-scroll,.ico-scroll {
	height:70px;
}

.ico-scroll p {
	margin-top: 43px;
    font-size: 15px;
}

.ico-scroll span {
	margin-top: 12px;
    margin-left: -14.5px;
    width: 25px;
    height: 25px;
}

#page_clientes {
	margin-top: 71px;
}

.cont_info_slider h3 {
    font-size: 30px;
    line-height: 34px;
}

.cont_info_slider p {
    font-size: 15px;
    width: 250px;
    line-height: 20px;
}

.cont_info_slider {
    padding: 30px;
}

.fl_i div {
    width: 32px;
    height: 32px;
}

.fl_d div {
    width: 32px;
    height: 32px;
}

.fl_i {
    left: 20px;
}

.fl_d {
    right: 20px;
}

.erp_body_text {
    font-size: 14.5px;
}

.erp_body_titulo {
    font-size: 16px;
    line-height: 20px;
	margin: 61% auto 10px;
}

.erp_img {
    top: -52px;
}

.erp_head p:nth-child(2) {
    font-size: 15px;
	margin-left: 17px;
}

.erp_head p:nth-child(1) {
    font-size: 16px;
    line-height: 10px;
	margin-top: 17px;
	margin-left: 17px;
}

.erp_img {
    right: -29%;
}

.botton_vermas p {
    margin: 45px 0 0;
}

.cont_img_proyect img {
    max-width: 75%;
}

.cont_img_proyect {
    height: 105px;
}

.cont_proyect p {
    font-size: 14px;
    margin: 0px 7.5% 7px 7.5%;
    line-height: 18px;
}

.nosotros_text p {
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 7px;
}

.nosotros_text p {
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 7px;
    position: relative;
    left: -40px;
}

.nosotros_img img {
    max-width: 124%;
    position: relative;
    left: -40px;
}

.cont_img_erp h3 {
    width: 85%;	
    margin: 0 auto 10px;
}

.cont_img_erp p {
    width: 80%;
    margin: 0 auto;
}

.btn_opc_modulos p {
    font-size: 13px;
}

.cont_img_erp {
    margin-top: 4.5%;
}

.cont_img_erp {
    width: 33%;
}

.modulos {
    width: 67%;
}

.info_modulo {
    width: 58%;
}

.info_modulo_d {
    width: 22%;
}

.cont_img_erp img {
    max-width: 110%;
    margin-left: 1%;
}

.btn_opc_clientes p {
    font-size: 12px;
    letter-spacing: -0.3px;
    margin: 0;
}

.line_cliente p {
    font-size: 16px;
}

.cont_opciones_clientes {
    margin: 20px 5% 15px;
}

.info_right_texto {
    width: 80%;
}

.info_left_img {
    margin: 0 auto 25px;
}

.info_left_titulo {
    margin: 0 auto 10px;
}

.info_left_text {
    margin: 0 auto 10px;
}

}

/*---- Responsive ----*/

#res {
	display:none;
	float:left;
	width:100%;
	height:67px;
}

#cont_res {}

.res_header {
	position: fixed;
	top:0;
	left:0;
    width: 100%;
    height: 67px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 2;
    background-color: #FFF;
	border-top: 3px solid #004D80;
    border-bottom: 1px solid #f5f5f5;
}

.res_logo {
	width: 50%;
	max-width: 250px;
    margin: 0 auto;
}

.res_logo img {
	max-width:100%;
}

.res_facesearch {
	position: absolute;
    top: 19.5px;
    right: 10px;
    width: 61px;
}

.res_face {
	width: 18px;
	height: 18px;
    display: inline-block;
    float: right;
	padding: 5px;
}

.res_face img {}

.res_search {
    display: none;
}

.res_search img {}

.res_body {
	margin-top:71px;
	display:inline-block;
	float:left;
	width:100%;
}

.res_slider {
	position:relative;
	display: inline-block;
    float: left;
    width: 100%;
	overflow: hidden;
	min-height:169.5px;
}

.res_mask {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color: rgba(0, 77, 128, 0.20);
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.res_slider ul {
	position: relative;
    display: inline-block;
    float: left;
    height: 100%;
    overflow: hidden;
	-webkit-transform:translate3d(0,0,0);
	-moz-transform:translate3d(0,0,0);
	-ms-transform:translate3d(0,0,0);
	-o-transform:translate3d(0,0,0);
	transform:translate3d(0,0,0);
	
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

.res_slider ul li {
	position: relative;
    display: inline-block;
    float: left;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

.res_info_slider {
	display: flex;
    float: left;
    width: 100%;
	min-height:169.5px;
    background-color: #024b82;
    background-image: url(../img/pattern19.png);
    background-size: contain;
    background-position: center;
    align-items: center;
}

.res_info_slider_cont {
	width: 80%;
    margin: 0 auto;
}

.res_info_slider h3 {
	display: inline-block;
    float: right;
    color: #FFF;
    font-size: 7vw;
    font-family: 'Roboto regular';
    text-align: right;
    width: 100%;
    margin: 0 0 10px;
}

.res_info_slider h3 strong {
	font-family: 'Roboto medium';
}

.res_info_slider p {
	display: inline-block;
    float: right;
    text-align: right;
    color: #FFF;
    font-size: 3.5vw;
    font-family: 'Roboto light';
    width: 100%;
}

.res_scroll {
	position:relative;
	display: inline-block;
    float: right;
	width:100%;
	height:70px;
}

.res_line_long {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-0.5px;
	width:100%;
	height:1px;
	background-color: rgba(2, 75, 130, 0.2);
}

.res_line_s_r {
    position: absolute;
    right: 0;
    width: 20%;
    height: 1px;
    top: 50%;
    margin-top: -.5px;
    background-color: rgba(2, 75, 130, 1);
    transition: width 700ms cubic-bezier(1, 0.01, 0.42, 0.98);
}

.res_line_s_l {
    position: absolute;
    left: 0;
    width: 20%;
    height: 1px;
    top: 50%;
    margin-top: -.5px;
    background-color: rgba(2, 75, 130, 1);
    transition: width 700ms cubic-bezier(1, 0.01, 0.42, 0.98);
}

.res_erp {
	display:inline-block;
	float:left;
	width:100%;
	min-height:410px;
}

.res_erp_titulo {
	display:flex;
	float:left;
	width:100%;
	min-height: 50px;
	align-items:center;
}

.res_erp_titulo h3{
	width:90%;
	font-size: .95em;
    color: #004D80;
    font-family: 'Roboto light';
    margin-left: 5%;
}

.res_erp_titulo h3 strong {
	font-family: 'Roboto regular';
}

.res_erp_e {
	position:relative;
	display: inline-block;
    float: left;
    width: 50%;
	min-height:180px;
}

.res_erp_e_head {
	position:relative;
	display:inline-block;
	float:left;
	width:100%;
	height:40px;
	background-color: #EDEEF0;
}

.res_erp_e_head p {
	width: 80%;
    margin: 0 auto;
    text-align: right;
    line-height: 14px;
	color: #787878;
	font-size: .95rem;
}

.res_erp_e_head p:nth-child(1) {
	margin-top: 6px;
}

.res_erp_e_head:nth-child(1) p:nth-child(2) {
	color: #395E94;
}
.res_erp_e:nth-child(3) .res_erp_e_head p:nth-child(2) {
	color: #E7BD3F;
}
.res_erp_e:nth-child(4) .res_erp_e_head p:nth-child(2) {
	color: #4AB6A3;
}

.res_erp_e:nth-child(5) .res_erp_e_head {
	background-color: #008655 !important;
}
.res_erp_e:nth-child(5) .res_erp_e_head p:nth-child(1) {
	color: #FFF !important;
}
.res_erp_e:nth-child(5) .res_erp_e_head p:nth-child(2) {
	color: #FFF;
}

.res_erp_e_head span {
	position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
}

.res_erp_e:nth-child(2) .res_erp_e_head span {
	background-color: #395E94;
}
.res_erp_e:nth-child(3) .res_erp_e_head span {
	background-color: #E7BD3F;
}
.res_erp_e:nth-child(4) .res_erp_e_head span {
	background-color: #4AB6A3;
}
.res_erp_e:nth-child(5) .res_erp_e_head span {
	background-color: #008655;
}

.res_line_r {
	position: absolute;
    top: 0;
    right: -0.5px;
    width: 1px;
    height: 100%;
	background-color:#D9D9D9;
	z-index: 1;
}

.res_erp_e_body {
	position:relative;
	display:inline-block;
	float:left;
	width:100%;
	min-height:140px;
}

.res_erp_e_body img {
	max-height: 70%;
    display: block;
    margin: 3% auto 0;
}

.res_erp_e_body p {
	width: 90%;
    margin: 0 5%;
    font-size: .8rem;
    color: #595959;
    position: absolute;
    bottom: 10px;
	left: 0;
}

.res_proyectos {
	display:inline-block;
	float:left;
	width:100%;
	min-height:410px;
}

.res_proyectos_titulo {
	display:flex;
	float:left;
	width:100%;
	min-height:50px;	
	background-color: #EDEEF0;
	align-items:center;
}

.res_proyectos_titulo h3 {
	width: 90%;
    font-size: .95em;
    color: #004D80;
    font-family: 'Roboto light';
    margin-left: 5%;
}

.res_proyectos_body {
	position:relative;
	display:inline-block;
	float:left;
	width:100%;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.res_proyectos_footer {
	display:flex;
	float:left;
	width:100%;
	min-height:50px;	
	background-color: #EDEEF0;
	align-items:center;
}

.res_proyectos_footer h3 {
	width: 90%;
    font-size: .95em;
    color: #004D80;
    font-family: 'Roboto light';
    margin-left: 5%;
	text-align: center;
}

.res_mas_proyectos {
	font-family: 'Roboto regular';
}

.res_proyectos_body_e {
	display:flex;
	float:left;
	width:100%;
	height: 25%;
	background-position:center;
	background-repeat:no-repeat;
	background-size: 50%;
	transition:opacity 300ms ease-out,visibility 300ms ease-out,transform 600ms ease-out;
}

.res_cont_info_proyectos {
	position: absolute;
    overflow: auto;
    left: 0px;
    width: 100%;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.proyect_hidden {
	visibility:hidden !important;
	opacity:0 !important;
}

.res_cont_info_proyectos p {
	color: #787878;
    width: 90%;
    text-align: center;
    margin: 5%;
}

.res_nosotros {
	display: inline-block;
    float: left;
    width: 100%;
}

.res_nosotros_titulo {
	display: flex;
    float: left;
    width: 100%;
    min-height: 50px;
    background-color: #EDEEF0;
    align-items: center;
}

.res_nosotros_titulo h3 {
	width: 90%;
    font-size: .95em;
    color: #004D80;
    font-family: 'Roboto light';
    margin-left: 5%;
    text-align: center;
}

.res_nosotros_titulo h3 strong {
	font-family: 'Roboto regular';
}

.res_nosotros_img {
	display: inline-block;
    float: left;
    width: 80%;
    margin: 10%;
}

.res_nosotros_img img {
	display: inline-block;
    float: left;
	max-width:100%;
}

.res_nosotros_text {
	display: inline-block;
    float: left;
    width: 80%;
	margin: 0 10%;
}

.res_nosotros_text p {
	color: #787878;
    margin-bottom: 15px;
    font-size: .9em;
	font-family: 'Roboto light';
}

.res_contacto {
	display: inline-block;
    float: left;
	width:100%;
	min-height:410px;
}

.res_contacto_titulo {
	display: flex;
    float: left;
    width: 100%;
    min-height: 50px;
    background-color: #EDEEF0;
    align-items: center;
}

.res_contacto_titulo h3 {
	width: 90%;
    font-size: .95em;
    color: #004D80;
    font-family: 'Roboto light';
    margin-left: 5%;
    text-align: center;
}

.res_contacto_form {
	position:relative;
	display: inline-block;
    float: left;
	width:100%;
}

#res_form {
	width: 80%;
    display: inline-block;
    float: left;
    margin: 10% 10% 5%;
}

#res_form h3 {
	font-family: 'Roboto regular';
	font-size:.95em;
    color: #787878;
    margin: 5px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #D9D9D9;
}

#res_form input,#res_form textarea {
	font-family: 'Roboto light';
    color: #787878;
    border: none;
    border-bottom: 1px solid #D9D9D9;
    margin: 5px 0;
    width: 100%;
    padding-bottom: 5px;
	resize:none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-border-radius:0px !important;
	-moz-border-radius:0px !important;
	-ms-border-radius:0px !important;
	-o-border-radius:0px !important;
	border-radius:0px !important;
}

input#res_submit {
	width: auto;
    background: none;
    color: #004D80;
    font-size: .9em;
    padding: 5px 20px;
    border: 1px solid;
    border-color: #D9D9D9;
    margin-top: 10px;
    float: right;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-border-radius:0px !important;
	-moz-border-radius:0px !important;
	-ms-border-radius:0px !important;
	-o-border-radius:0px !important;
	border-radius:0px !important;
}

/*---- res page erp ----*/

.res_page_erp {
	display:none;
	width:100%;
	margin-top:71px;
}

.res_cont_page_erp {
	width:100%;
	opacity:0;
	transition:opacity 300ms ease-out;
}

.res_page_erp_nav {
	width:100%;
	height:42px;
}

.res_nav_e {
	display:inline-block;
	float:left;
	width:25%;
	height:100%;
}

.res_nav_select {
	background-color: #EDEEF0 !important;	
}

.res_cont_nav_e {
	width:100%;
	height:40px;
	border-left: 1px solid #D9D9D9;
	display: flex;
    align-items: center;
}

.res_nav_e:nth-child(1) .res_cont_nav_e,.res_nav_e:nth-child(4) .res_cont_nav_e {
	border:none;
}

.res_cont_nav_e p:nth-child(1) {
	color: #787878;
	padding-top: .9em;
	display:none;
}

.res_cont_nav_e p {
	font-size: .8rem;
    text-align: right;
    margin-right: 10px;
    width: 100%;
    line-height: 12px;
}

.res_nav_e:nth-child(1) p:nth-child(2) {
	color: #395E94;
}
.res_nav_e:nth-child(2) p:nth-child(2) {
	color: #E7BD3F;
	margin-top: 14px;
}
.res_nav_e:nth-child(3) p:nth-child(2) {
	color: #4AB6A3;
	margin-top: 14px;
}

.res_nav_e:nth-child(4) {
	background-color: #008655 !important;
}
.res_nav_e:nth-child(4) p:nth-child(1) {
	color: #FFF;
}
.res_nav_e:nth-child(4) p:nth-child(2) {
	color: #FFF;
	margin-top: 14px;
}


.res_nav_e:nth-child(1) .res_cont_nav_e {
	border-bottom:2px solid #395E94;
}
.res_nav_e:nth-child(2) .res_cont_nav_e {
	border-bottom:2px solid #E7BD3F;
}
.res_nav_e:nth-child(3) .res_cont_nav_e {
	border-bottom:2px solid #4AB6A3;
}

.res_page_erp_body {
	display:none;
	float:left;
	width:90%;
	margin:0 5%;
}

.res_page_erp_img_info {
	display:inline-block;
	float:left;
	width:100%;
}

.res_page_erp_cont_img {
	display:inline-block;
	float:left;
	width:50%;
	margin: 20px 0;
}

.res_page_erp_cont_img img {
	max-width: 150%;
    position: relative;
    left: -20%;
}

.res_page_erp_cont_text {
	display: inline-block;
    float: left;
    width: 50%;
    margin: 10% 0;
    position: relative;
}

.res_page_erp_cont_text h3 {
	font-size: .9rem;
    color: #595959;
    text-align: center;
    font-family: 'Roboto regular';
}

.res_page_erp_cont_text p {
	font-size: .85rem;
    color: #595959;
    text-align: center;
    font-family: 'Roboto light';
    margin-top: 10px;
}

.res_modulos_no_incluidos {
	display: inline-block;
    float: left;
	width:100%;
}

.res_modulos_titulo {
	position:relative;
	display: inline-block;
    float: left;
	width:100%;
	background-color: #EDEEF0;
	border: 1px solid #D9D9D9;
	margin-bottom: 10px;
}

.res_modulos_titulo h3 {
    font-size: .8rem;
    color: #595959;
	padding: 8px 10px;
}

.cont_res_svg {
	position: absolute;
    width: 25px;
    height: 25px;
    top: 4px;
    right: 6px;
    transition: transform 300ms ease-out;
}

.res_fl_modulos {
	position: absolute;
    width: 25px;
}

.res_modulos_no_incluidos_cont {
	position:relative;
	display: none;
    float: left;
	width:100%;
	padding-bottom: 10px;
}

.text_no_incluye {
	color: #595959;
    font-size: .8rem;
    font-family: 'Roboto medium';
    line-height: 23px;
    padding: 10px;
}

.res_no_incluye_items {
	color: #787878;
    font-size: .8rem;
    font-family: 'Roboto light-italic';
    line-height: 20px;
	margin: 0 0 0 20px;
}

.res_no_incluye_aclaracion {
	color: #787878;
    font-size: .8rem;
    font-family: 'Roboto regular';
    line-height: 14px;
    margin: 10px 0 10px 20px;
}

.res_fl_transform {
	-webkit-transform: rotate(90deg) !important;
	-moz-transform: rotate(90deg) !important;
	-ms-transform: rotate(90deg) !important;
	-o-transform: rotate(90deg) !important;
	transform: rotate(90deg) !important;
}

.res_modulos_incluidos {
	display: inline-block;
    float: left;
	width:100%;
}

.res_modulos_incluidos .res_modulos_titulo {
	border:1px solid #395E94;
}

.res_modulos_incluidos .res_modulos_no_incluidos_cont {
	background-color:#FFF;
	padding:10px 0;
}

.res_btn_incluye {
	color: #787878;
    font-size: .8rem;
    font-family: 'Roboto light';
    line-height: 20px;
    padding: 5px 0 5px 5px;
    margin: 0 10px;
    border-bottom: 1px solid #D9D9D9;
}

.includ_select_small {
	color:#395E94;
}
.includ_select_advanced {
	color: #E7BD3F;
}
.includ_select_corporate {
	color: #4AB6A3;
}
.includ_select_salud {
	color: #008655;	
}

.res_btn_incluye:last-child {
	border:none;
}

.res_info_modulo_select {
	display: inline-block;
    float: left;
	width:100%;
}

.res_info_modulo_select_cont {
	display: inline-block;
    float: left;
	width:100%;
	margin-bottom: 20px;
}

.res_info_modulo_select_cont h3 {
	font-size: .9rem;
    color: #595959;
	font-family: 'Roboto medium';
	margin:5px 0;
}

.res_info_modulo_select_cont p {
	font-size: .8rem;
    color: #595959;
	font-family: 'Roboto regular';
}

.res_info_modulo_select_cont p strong {
	font-size: .9rem;
    color: #595959;
    font-family: 'Roboto medium';
    margin: 15px 0 5px;
    display: block;
}

#res_advanced_page .res_modulos_incluidos .res_modulos_titulo {
    border: 1px solid #E7BD3F;
}

#res_corporate_page .res_modulos_incluidos .res_modulos_titulo {
    border: 1px solid #4AB6A3;
}

#res_salud_page .res_modulos_incluidos .res_modulos_titulo {
    border: 1px solid #008655;
}

/*---- Pagina Clientes ----*/

.res_clientes_page {
	display: none;
    width: 100%;
    margin-top: 71px;	
}

.res_cont_page_clientes {
	width: 100%;
    opacity: 0;
    transition: opacity 300ms ease-out;
}

.res_titulo_clientes {
	display: flex;
    float: left;
    width: 100%;
    min-height: 50px;
    background-color: #EDEEF0;
    align-items: center;
}

.res_titulo_clientes h3 {
	width: 90%;
    font-size: .95em;
    color: #004D80;
    font-family: 'Roboto light';
    margin-left: 5%;
    text-align: center;
}

.res_titulo_clientes h3 strong {
	font-family: 'Roboto regular';
}

.res_clientes_body {
	display:inline-block;
	float:left;
	width:90%;
	margin:5%;
}

.res_clientes_body .res_modulos_titulo {
    border: 1px solid #D9D9D9;
}

.res_clientes_opciones_select {
	color: #004D80;
}

.res_clientes_titulo_selec_nav {
	display:inline-block;
	float:left;
	width:100%;
}

.res_clientes_titulo_selec_nav h3 {
	font-size: .8rem;
    color: #595959;
    font-family: 'Roboto medium';
    margin: 5px 0;
	padding-bottom: 5px;
    border-bottom: 1px solid #D9D9D9;
}

.res_clientes_lista_logos {
	display:inline-block;
	float:left;
	width:100%;
}

.res_lista_logos_e {
	display: inline-block;
    float: left;
    width: 45%;
    padding: 2.5%;
}

.res_logos_e_body {
	display:inline-block;
	float:left;
	width:100%;
	height:100px;
	background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.res_clientes_body .res_modulos_no_incluidos_cont {
	padding-bottom:0
}

.res_logo_info_content {
	display:none;
	float:left;
	width:100%;
}

.res_clientes_info {
	position:relative;
	display:inline-block;
	float:left;
	width:100%;
}

.res_clientes_info_logo_titulo {
	display:inline-block;
	float:left;
	width:100%;
	border: 1px solid #EDEEF0;
}

.res_clientes_sec_img {
	display:inline-block;
	float:left;
	width:70%;
	height:125px;
	margin:20px 15% 10px;
	background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.res_clientes_info_logo_titulo h3 {
	display:inline-block;
	float:left;
	width:90%;
	margin:10px 5%;
	font-size: .95rem;
    color: #595959;
    text-align: center;
    font-family: 'Roboto regular';
}

.res_clientes_info_logo_titulo p {
	font-family: 'Roboto light';
	display:inline-block;
	float:left;
	width:90%;
	margin:0 5% 20px;
    color: #787878;
    font-size: .85rem;
	text-align: center;
}

.res_clientes_info_texto {
	display: inline-block;
    float: left;
    width: 100%;
    background-color: #EDEEF0;
    border: 1px solid #EDEEF0;
}

.res_clientes_info_texto p {
	font-family: 'Roboto light';
    color: #787878;
    display: inline-block;
    float: left;
    width: 82%;
    margin: 20px 9%;
    text-align: center;
}

.res_menu_opciones {
	display:none;
	position: fixed;
    top: 71px;
    left: 0;
    width: 100%;
    background-color: #FFF;
    z-index: 2;
	opacity:1;
	-webkit-transform:translate3d(0,0,0);
	-moz-transform:translate3d(0,0,0);
	-ms-transform:translate3d(0,0,0);
	-o-transform:translate3d(0,0,0);
	transform:translate3d(0,0,0);
	transition:all 300ms ease-out;
}

.res_menu_trans {	
	opacity:0;
	-webkit-transform:translate3d(0,40%,0) !important;
	-moz-transform:translate3d(0,40%,0) !important;
	-ms-transform:translate3d(0,40%,0) !important;
	-o-transform:translate3d(0,40%,0) !important;
	transform:translate3d(0,40%,0) !important;
}

.res_menu_opciones_cont {
	position:relative;
	width:100%;
	height:100%;
}

.res_br {
	position: absolute;
    width: 25px;
    height: 25px;
}

.res_br:nth-child(1) {
	top: 5%;
    left: 5%;
    border-top: 1px solid #D9D9D9;
    border-left: 1px solid #D9D9D9;
}

.res_br:nth-child(2) {
	top: 5%;
    right: 5%;
    border-top: 1px solid #D9D9D9;
    border-right: 1px solid #D9D9D9;
}

.res_br:nth-child(3) {
	bottom: 5%;
    left: 5%;
    border-bottom: 1px solid #D9D9D9;
    border-left: 1px solid #D9D9D9;
}

.res_br:nth-child(4) {
	bottom: 5%;
    right: 5%;
    border-bottom: 1px solid #D9D9D9;
    border-right: 1px solid #D9D9D9;
}

.res_menu_opciones_body {
	width: 100%;
    height: 100%;
	display: flex;
    align-items: center;
}

.res_menu_opciones_body_cont {
	width: 100%;
}

.res_menu_opciones_body_cont p {
	text-align: center;
    padding: 20px 0;
    width: 90%;
    margin: 0 auto;
	border-bottom: 1px solid #D9D9D9;
	color: #595959;
	font-family:'Roboto light';
}

.res_menu_opciones_body_cont p:nth-child(1) {
	border-top: 1px solid #D9D9D9;
}

.res_clientes_info_cerrar {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
}

.res_clientes_info_cerrar span {
	position: absolute;
    width: 25px;
    height: 1px;
    background-color: #595959;
    top: 50%;
    margin-top: -.5px;
    left: 50%;
    margin-left: -12.5px;
}

.res_clientes_info_cerrar span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.res_clientes_info_cerrar span:nth-child(2) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.res_cerrar_info_proyectos {
	display:none;
	position: absolute;
    top: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
	z-index:2;
}

.res_cerrar_info_proyectos span:nth-child(1) {
	width: 25px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12.5px;
    margin-top: -.5px;
	background-color: #595959;
	-webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.res_cerrar_info_proyectos span:nth-child(2) {
	width: 25px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12.5px;
    margin-top: -.5px;
	background-color: #595959;
	-webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*--------------------*/

@media screen and (max-width: 800px) {

h3,p,strong {
	font-weight: normal;
}

.menu {
	position:absolute;
	margin:18.5px;
	top: 0;
}

#search {
    top: 71px;
}

.cont_search div input {
    margin-left: 52px;
}


}


/*---- PANEL ----*/

#result #header {
	height:97px !important;
	-webkit-transition: 300ms -webkit-filter linear;
	-moz-transition: 300ms -moz-filter linear;
	-moz-transition: 300ms filter linear;
	-ms-transition: 300ms -ms-filter linear;
	-o-transition: 300ms -o-filter linear;
	transition: 300ms filter linear;
}

#login {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #024b82;
	transition: transform 500ms cubic-bezier(0.51, 0.01, 0.48, 0.99);
    transform: translate3d(0,0,0);
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
	-webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

.cont_login {
	width: 100%;
    height: 100%;
	display:inline-block;
	float:left;
}

.logo_background {
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

#logo_open {
	width: 100%;
    height: 100%;
    position: absolute;
    top: 15%;
    left: 32%;
}

.cont_ingreso {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;	
}

.cont_form_login {
	position: absolute;
    top: 50%;
    left: 10%;
    margin-top: -190px;
    background-color: rgba(255,255,255,.3);
    width: 290px;
    border-radius: 5px;
    padding: 10px;
	box-shadow: 2px 2px 18px 0px rgba(0,0,0,.2);
	transition:background-color 500ms ease-out;
}

.form_login {
	width: 100%;
    height: 360px;
    border-radius: 5px;
    background-color: #FFF;
}

.cont_logo_form {
	display: block;
    margin: 0 auto;
    width: 80%;
    padding: 20px 0;
}

.cont_logo_form img {
	max-width:100%;
}

.form_login h3 {
	text-align: center;
    font-weight: 400;
    color: #024b82;
    padding-bottom: 20px;
}

.form_login input {
	display: block;
    width: 75%;
    margin: 0 auto;
    padding: 5%;
    font-family: 'Roboto regular';
    font-weight: 400;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
	color:#787878;
	
}

.form_login input:nth-child(3) {
	border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: none;
}

.form_login input:nth-child(4) {
	border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.form_login .btn_login {
	display: block;
    width: 85%;
    padding: 5%;
    border: none;
    background-color: rgba(2, 75, 130, 0.85);
    color: #FFF;
    border-radius: 5px;
    margin: 20px auto 60px;
    cursor: pointer;
}

#result {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:none;
}

#panel_page {
	display: inline-block;
    float: left;
    width: 100%;
    background-color: #f3f3f5;
    margin-top: 101px;
	-webkit-transition: 300ms -webkit-filter linear;
	-moz-transition: 300ms -moz-filter linear;
	-moz-transition: 300ms filter linear;
	-ms-transition: 300ms -ms-filter linear;
	-o-transition: 300ms -o-filter linear;
	transition: 300ms filter linear;
}

.cont_panel_page {
	display: inline-block;
    float: left;
    width: 100%;
	height:100%;
	text-align: center;
}

.cont_panel_page h3 {
	font-size: 21px;
    color: #004D80;
    font-family: 'Roboto thin';
    text-align: center;
    margin: 50px 0;
}

.cont_opciones_panel {
	display: inline-block;
    text-align: center;
}

.panel_opciones_e {
	position:relative;
	display:inline-block;
	float:left;
	width: 180px;
    height: 180px;
	background-color:#FFF;
	margin:0 10px 10px;
	text-align: left;
	cursor:pointer;
	border: 1px solid;
    border-color: rgba(0, 77, 128, 0);
	transition:border-color 300ms ease-out;
}

.panel_opciones_e:hover {
	border-color: rgba(0, 77, 128, 1);
}

.panel_opciones_e h3 {
	margin: 25px 0 0 25px;
    text-align: left;
	font-size: 18px;
}

.panel_opciones_e p {
	font-size: 13.5px;
    margin: 5px 25px 0;
    color: #c5c4c4;
	font-family: 'Roboto light';
}

.panel_opciones_e .ico_mas {
	position: absolute;
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
}

.panel_opciones_e .ico_mas span {
	position: absolute;
    width: 19px;
    height: 1px;
    background-color: #004D80;
    top: 14.5px;
    left: 6px;
}

.panel_opciones_e .ico_mas span:nth-child(2) {
	width: 1px;
    height: 19px;
    top: 6px;
    left: 14.5px;
}

.cerrarSesion {
	display: inline-block;
    float: left;
}

.cerrarSesion p {
	font-size: 21px;
    color: #004D80;
    font-family: 'Roboto thin';
    line-height: 97px;
    margin-left: 20px;
}

#menu_rapido {
	width: 215px;
    height: 100%;
    display: inline-block;
    float: left;
	background-color:#004b82;
	-webkit-transform: translate3d(-300px,0,0);
	-moz-transform: translate3d(-300px,0,0);
	-ms-transform: translate3d(-300px,0,0);
	-o-transform: translate3d(-300px,0,0);
	transform: translate3d(-300px,0,0);
	transition:transform 500ms cubic-bezier(0.51, 0.01, 0.48, 0.99);
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
	-webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
	background-image: url(../img/PoweredBy.svg);
    background-size: 75%;
    background-repeat: no-repeat;
    background-position: 60% 98%;
}

.menu_rapido_show {
	-webkit-transform: translate3d(0px,0,0) !important;
	-moz-transform: translate3d(0px,0,0) !important;
	-ms-transform: translate3d(0px,0,0) !important;
	-o-transform: translate3d(0px,0,0) !important;
	transform: translate3d(0px,0,0) !important;
}

.cont_menu_rapido {
	width:100%;
	height:100%;
}

.titulo_menu_rapido {
	color: #002b3e;
    border-bottom: 1px solid;
    font-size: 17px;
    padding: 12px 0;
	font-family: 'Roboto light';
}

.cont_menu_rapido ul {
	display: inline-block;
    float: left;
    width: 100%;
	margin: 20px 0;
}

.cont_menu_rapido ul li {
	display: inline-block;
    float: left;
    width: 84%;
    margin: 0 8%;
    text-align: left;
    color: #FFF;
    padding: 10px 0;
    font-family: 'Roboto light';
    cursor: pointer;
    font-size: 13.5px;
}

.li_strong {
	font-family: 'Roboto medium' !important;
}

#erp_panel_page {
	display: none;
    float: left;
	height:100%;
}

.cont_erp_panel_page {
	width:100%;
	height:100%;
	overflow-x: hidden;
    overflow-y: auto;
}

.bar_nav {
	position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    text-align: left;
    height: 43px;
	border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    background-color: #f3f3f5;
}

.bar_nav_color {
	border-top: 1px solid #252525 !important;
    border-bottom: 1px solid #252525 !important;
    background-color: #3a3b3a !important;
}

.ruta {
	display: inline-block;
    float: left;
	margin-left: 50px;
}

.ruta p {
	display: inline-block;
    float: left;
    margin: 0;
	color: #919191;
    line-height: 43px;
	cursor:pointer;
	font-family:'Roboto light';
	font-size: .9em;
}

.btn_guardar {
	display:none;
	position: absolute;
    top: 7px;
    right: 60px;
}

.btn_guardar p {
	color: #919191;
    border: 1px solid #919191;
    padding: 5px 7px;
    font-size: 14px;
	cursor:pointer;
	transition:all 500ms ease-out;
}

.btn_guardar p:hover {
	background-color:#919191;
	color:#FFF;
}

.ruta p::after {
	content:'>';
	margin:0 5px;
}

.ruta p:last-child::after {
	content:'';
}

.ruta p:last-child {
	font-family:'Roboto medium';
}

.nav_erp_panel {
	display: inline-block;
    float: left;
	width:100%;
	height:50px;
}

.nav_erp_panel_e {
	position: relative;
	display:inline-block;
	float:left;
	width:25%;
	height:100%;
	overflow: hidden;
	cursor:pointer;
}

.nav_erp_panel_e_select {
	background-color: #e0e0e0;
}

.nav_erp_panel_e_body {
	display: inline-block;
    float: left;
    width: 100%;
    height: 100%;    
    border-left: 1px solid #D9D9D9;
	text-align: left;
}

.nav_erp_panel_e:nth-child(1) {
	border-bottom: 1px solid #395E94;
}
.nav_erp_panel_e:nth-child(2) {
	border-bottom: 1px solid #E7BD3F;
}
.nav_erp_panel_e:nth-child(3) {
	border-bottom: 1px solid #4AB6A3;
}
.nav_erp_panel_e:nth-child(4) {
	border-bottom: 1px solid #008655;
	background-color:#008655;
}

.nav_erp_panel_e:nth-child(1) .nav_erp_panel_e_body {
	border-left: none;
}

.nav_erp_panel_e:last-child .nav_erp_panel_e_body {
	border-left: 1px solid #008655;
}

.nav_erp_panel_e_body p:nth-child(1) {
	color: #787878;
    font-size: 17px;
	font-family: 'Roboto light';
	margin-left: 35px;
	line-height: 14px;
	margin-top: 9px;
}

.nav_erp_panel_e_body p:nth-child(2) {
	font-size: 16px;
	line-height: 24px;
    font-family: 'Roboto regular';
	margin-left: 35px;
}


.nav_erp_panel_e:nth-child(1) .nav_erp_panel_e_body p:nth-child(2) {
	color: #395E94;
}
.nav_erp_panel_e:nth-child(2) .nav_erp_panel_e_body p:nth-child(2) {
	color: #E7BD3F;
}
.nav_erp_panel_e:nth-child(3) .nav_erp_panel_e_body p:nth-child(2) {
	color: #4AB6A3;
}

.nav_erp_panel_e:nth-child(4) .nav_erp_panel_e_body p:nth-child(1) {
	color: #FFF;
}
.nav_erp_panel_e:nth-child(4) .nav_erp_panel_e_body p:nth-child(2) {
	color: #FFF;
}

.erp_item_left {
	display:inline-block;
	float:left;
	width:30%;
}

.cont_item_left_img {
	display:inline-block;
	float:left;
	width:100%;
}

.cont_item_left_img img {
	display: inline-block;
    float: left;
	max-width:100%;
    margin: 15px 0;
}

.titulo_item_left {
	text-align: center !important;
    color: #595959 !important;
    font-size: 16px !important;
    line-height: 23px;
    font-family: 'Roboto regular' !important;
    display: inline-block;
    margin: 0 auto 15px !important;
	cursor:pointer;
	width:85%;
}

.item_left_text {
	width: 80%;
    margin: 0 auto;
	text-align: center;
    color: #787878;
    font-size: 15px;
    font-family: 'Roboto light';
    line-height: 20px;
	cursor:pointer;
}

.erp_item_center {
	display:inline-block;
	float:left;
	width:45%;
	text-align: left;
	margin-top: 25px;
	overflow-y:auto;
}

.titulo_item_left_dos {
	text-align: left !important;
    color: #595959 !important;
    font-size: 17px !important;
    line-height: 23px;
    font-family: 'Roboto regular' !important;
    display: inline-block;
    margin: 0 0 7px !important;
	cursor:pointer;
}

.item_left_text_dos {
	width: 95%;
    margin: 0;
	text-align: left;
    color: #787878;
    font-size: 14.5px;
    font-family: 'Roboto light';
    line-height: 20px;
	cursor:pointer;
}

/*.item_left_text_dos::before {
	content:"\2022";
	margin-right:5px;
}*/

.item_left_text_dos:nth-child(2)::before {
	content:'';
	margin:0;
	display:none;
}

.erp_item_right {
	display: inline-block;
    float: right;
    width: 25%;
    height: 100%;
    background-color: #e3e3e3;
    margin-top: -95px;
}

.cont_panel_page .titulo_item_right {
	color: #3a3b3a;
    margin: 95px 0 0 0;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
	font-size: 17px;
}

.lista_modulos {
	display:inline-block;
	float:left;
	width:100%;
	max-height: 174px;
    overflow: auto;
}

.lista_modulos li {
	display: inline-block;
    float: left;
    width: 100%;
	height: 17px;
    overflow: hidden;
    font-size: 15px;
    color: #787878;
	padding: 7px 0;
	cursor:pointer;
	transition:color 200ms ease-out;
}

.lista_modulos li:nth-child(odd) {
	background-color:#c9c9c9;
}

#result .logo {
	width: 250px !important;
    height: 64px !important;
    margin: 16.5px 0 !important;
    margin-left: -125px !important;
}

.add_list_modulos {
	display: inline-block;
    float: left;
    width: 100%;
    text-align: left;
    height: 27px;
    border-top: 1px solid #c9c9c9;
}

.add_list_modulos span {
	width: 27px;
    line-height: 26px;
    display: inline-block;
    float: left;
    text-align: center;
    cursor: pointer;
    color: #787878;
    font-family: 'Roboto thin';
    font-size: 24px;
    background-color: #c9c9c9;
	position: relative;
    top: -1px;
}

.add_list_modulos span:nth-child(1) {
	border: 1px solid #bbbbbb;
	width: 26px;
}

.add_list_modulos span:nth-child(2) {
	border: 1px solid #bbbbbb;
    border-left: none;
}

.panel_modulos_no_incluidos {
	display: inline-block;
    float: left;
    width: 100%;
}

.panel_modulos_no_incluidos h3 {
	position: relative;
	display: inline-block;
    float: left;
    width: 100%;
    background-color: #3a3b3a;
    color: rgb(113, 114, 113);
    margin: 0;
    padding: 10px 0 10px 7.5%;
    font-size: 17px;
    text-align: left;
}

.titulo_no_incluye_panel {	
	display: inline-block;
    float: left;
    width: 85%;
    margin: 15px 7.5% 0;
    text-align: left;
    color: #595959;
    font-family: 'Roboto medium';
}

.panel_list_no_incluye {
	display: inline-block;
    float: left;
    width: 100%;
	margin-top: 5px;
	transition:opacity 300ms ease-out;
}

.panel_list_no_incluye li {
	display: inline-block;
    float: left;
    width: 85%;
    margin: 0 7.5% 0;
	color: #595959;
    text-align: left;
    font-family: 'Roboto light';
	font-style: italic;
	cursor:pointer;
	font-size:15px;
}

.cont_i {
	display: inline-block;
    float: left;
    width: 100%;
	transition:opacity 300ms ease-out;
}

.panel_modulos_no_incluidos i {
	text-align: left;
    font-size: 12px;
    display: inline-block;
    float: left;
    width: 85%;
    margin: 20px 7.5% 0;
    color: #787878;
	cursor:pointer;
}

.lista_modulos_select {
	color: #004d80 !important;
}

.box_text_erp {
	display:none;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 2;
}

.cont_box_text_erp {
	width: 600px;
    margin: -202px auto 0;
    position: relative;
    top: 50%;
	background-color: #292929;
}

.cont_box_text_erp p {
	background-color: #3a3b3a;
    padding: 10px 25px;
    border-bottom: 1px solid #024b82;
	color:#747474;
	font-family: 'Roboto regular';
}

#textarea_erp {
	border: none;
    width: 550px;
    resize: none;
    height: 300px;
	padding: 25px;
	font-family: 'Roboto light';
    font-weight: 400;
	font-size: 15px;
	background-color:#292929;
	color:#9c9c9c;
}

.cont_box_text_erp span {
	display: block;
    text-align: right;
    padding:8px 8px 8px 0;
	border-top:1px solid #024b82;
	background-color:#3a3b3a;
}

.cont_box_text_erp span p {
	cursor: pointer;
    background: none;
    padding: 6px 25px;
    border: none;
    display: inline-block;
	background-color:#024b82;
	color:#ababab;
	font-family:'Roboto light';
	font-size:15px;
	margin: 0 5px;
}

.bd {
	transition: color 300ms ease-out;
	cursor:pointer !important;
}
.bd:hover {
	color:#004d80 !important;
}

.eliminar {
	display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 2;
}

.cont_eliminar {
	position: relative;
    top: 50%;
    width: 412px;
    margin: -68px auto 0;
    padding: 25px 50px 86px;
    background-color: #3a3b3a;
    color: #747474;
	text-align: center;
}

.cont_eliminar span {
	position:absolute;
	cursor: pointer;
    background: none;
    padding: 6px 25px;
    border: none;
    display: inline-block;
    background-color: #024b82;
    color: #ababab;
    font-family: 'Roboto light';
    font-size: 15px;
    margin: 25px 5px;
}

.cont_eliminar span:nth-child(2){
	background-color: #ababab !important;
    color: #3a3b3a !important;
    right: 50%;
    margin-right: -115.5px;
}

.cont_eliminar span:nth-child(3) {
	left: 50%;
    margin-left: -108.5px;
}

.nuevo_modulo {
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: rgba(0,0,0,.5);
    z-index: 2;
}

.cont_nuevo_modulo {
	position:relative;
	width: 600px;
    margin: -202px auto 0;
    position: relative;
    top: 50%;
	text-align: right;
	background-color: #292929;
}

.cont_nuevo_modulo p {
	background-color: #3a3b3a;
    padding: 10px 25px;
    border-bottom: 1px solid #024b82;
    color: #747474;
    font-family: 'Roboto regular';
	text-align: left;
}

.cont_nuevo_modulo textarea {
	border: none;
    width: 550px;
    resize: none;
    height: 300px;
    padding: 25px;
    font-family: 'Roboto light';
    font-weight: 400;
    font-size: 15px;
    background-color: #292929;
    color: #9c9c9c;
}

.cont_nuevo_modulo span {
	display: block;
    text-align: right;
    padding: 8px 8px 8px 0;
    border-top: 1px solid #024b82;
    background-color: #3a3b3a;
}

.cont_nuevo_modulo span p {
	cursor: pointer;
    background: none;
    padding: 6px 25px;
    border: none;
    display: inline-block;
    background-color: #024b82;
    color: #ababab;
    font-family: 'Roboto light';
    font-size: 15px;
	margin: 0 5px;
}

.panel_proyectos {
	display:inline-block;
	float:left;
	width:100%;
}

.cont_panel_proyectos {
	display:inline-block;
	float:left;
	width:100%;
	height:100%;
}

.panel_proyecto_e {
	position:relative;
	display:inline-block;
	float:left;
	width:25%;
	height:100%;
}

.panel_proyecto_e_cont_img {
	position:relative;
	display: flex;
    float: left;
    width: 100%;
    height: 150px;
    align-items: center;
}

.panel_proyecto_e_cont_img img {
	margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}

.cont_proyecto_e_text {
	display:inline-block;
	float:left;
	width:100%;
}

.cont_proyecto_e_text p {
	color: #787878;
    font-size: 14px;
    margin: 7px 7.5%;
    width: 85%;
    text-align: center;
    display: inline-block;
    float: left;
    font-family: 'Roboto light';
    line-height: 19px;
}

.input_image {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.clientes_lista_categorias {
	display:inline-block;
	float:left;
	position:relative;
	width:215px;
	border-right: 1px solid #252525;
	height:100%;
	background-color:#3a3b3a;
}

.cont_clientes_lista_categorias {
	display:inline-block;
	float:left;
	width:100%;
	height:100%;
}

.cont_panel_page .clientes_titulo_lista {
	margin: 0;
    padding: 7px 0;
    color: #919191;
    font-size: 17px;
}

.clientes_lista_ul {
	display: inline-block;
    width: 100%;
    float: left;
    max-height: 496px;
    overflow-y: auto;
}

.clientes_lista_ul li {
	list-style: none;
    cursor: pointer;
    color: #919191;
    text-align: left;
    width: 90%;
    padding: 0 5%;
	position:relative;
	left:0 !important;
}

.clientes_lista_ul li:nth-child(odd) {
	background-color:#333333;
}

.clientes_lista_ul li:nth-child(even) {
    background-color: #3a3b3a;
}

.clientes_lista_ul li p {
	display: inline-block;
    padding: 7px 0;
    font-size: 12px;
}

.clientes_lista_ul li:hover p {
	color:#FFF;
}

.poweredby {
	position: absolute;
    right: 36px;
    bottom: 23px;
    width: 180px;
}

.add_list_clientes {
	display: inline-block;
    width: 100%;
    height: 23px;
    border-top: 1px solid #252525;
    border-bottom: 1px solid #252525;
}

.add_list_clientes span {
	display: inline-block;
    cursor: pointer;
    float: left;
    width: 24px;
    border-right: 1px solid #252525;
    line-height: 23px;
    color: #919191;
    font-family: 'Roboto light';
    font-size: 17px;
    background-color: #333333;
}

.swich {
	position: absolute;
    top: 8.25px;
    right: 8px;
    width: 30px;
    height: 14px;
    background-color: #252525;
    border-radius: 8px;
}

.swich span {
	width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 50%;
    background-color: #A1C47F;
    top: 50%;
    margin-top: -5px;
    left: 2px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
    -moz-transform: translate3d(16px,0,0);
    -ms-transform: translate3d(16px,0,0);
    -o-transform: translate3d(16px,0,0);
    -webkit-transform: translate3d(16px,0,0);
    transform: translate3d(16px,0,0);
    transition: all 350ms ease-out;
}

.swich_inactivo {
	background-color: #e74c3c !important;
	-moz-transform: translate3d(0,0,0) !important;
    -ms-transform: translate3d(0,0,0) !important;
    -o-transform: translate3d(0,0,0) !important;
    -webkit-transform: translate3d(0,0,0) !important;
    transform: translate3d(0,0,0) !important;
}

.categoria_select {
	font-family: 'Roboto medium';
	color:#FFF !important;
}

.clientes_lista_categorias_a {
	display:inline-block;
	float:left;
	position:relative;
	width:215px;
	border-right: 1px solid #252525;
	height:100%;
	background-color:#3a3b3a;
}

.cont_clientes_lista_categorias_a {
	display:inline-block;
	float:left;
	width:100%;
	height:100%;
}

.cont_panel_page .clientes_titulo_lista_a {
	margin: 0;
    padding: 7px 0;
    color:#919191;
	background-color: #004b82;
	font-size: 17px;
}

.clientes_lista_ul_a {
	display: inline-block;
    width: 100%;
    float: left;
    max-height: 496px;
    overflow-y: auto;
}

.clientes_lista_ul_a li {
	list-style: none;
    cursor: pointer;
    color: #919191;
    text-align: left;
    width: 90%;
    padding: 0 5%;
	position:relative;
	left:0 !important;
}

.clientes_lista_ul_a li:nth-child(odd) {
	background-color:#333333;
}

.clientes_lista_ul_a li:nth-child(even) {
    background-color: #3a3b3a;
}

.clientes_lista_ul_a li p {
	display: inline-block;
    padding: 7px 0;
    font-size: 12px;
}

.clientes_lista_ul_a li:hover p {
	color:#FFF;
}

.add_list_clientes_a {
	display: inline-block;
    width: 100%;
    height: 23px;
    border-top: 1px solid #252525;
    border-bottom: 1px solid #252525;
}

.add_list_clientes_a span {
	display: inline-block;
    cursor: pointer;
    float: left;
    width: 24px;
    border-right: 1px solid #252525;
    line-height: 23px;
    color: #919191;
    font-family: 'Roboto light';
    font-size: 17px;
    background-color: #333333;s
}

.categoria_select_a {
	font-family: 'Roboto bold';
	color:#FFF !important;
}

.clientes_info {
	display:inline-block;
	float:right;
	height:100%;
}

.cont_clientes_info {
	display:inline-block;
	float:left;
	width:100%;
	height:100%;
}

.clientes_info_l {
	display:inline-block;
	float:left;
	width:35%;
	height:100%;
	overflow: hidden;
}

.clientes_info_cont_img {
	position:relative;
	display: inline-block;
    float: left;
    width: 80%;
    margin: 30px 10%;
	cursor:pointer;
	background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
}

.titulo_cliente_info_panel {
	color: #595959;
    font-family: 'Roboto regular';
    display: inline-block;
    float: left;
    width: 80%;
    margin: 0 10%;
	font-size: 16px;
    line-height: 20px;
	margin-bottom:20px;
}

.titulo_image_cliente_info_panel {
	color: #919191;
    font-family: 'Roboto light';
    position: absolute;
    width: 100%;
    bottom: 0;
	font-size:13px;
	opacity:0;
	transition:opacity 300ms ease-out;
}

.clientes_info_cont_img:hover .titulo_image_cliente_info_panel {
	opacity:1;
}

.descripcion_cliente_info_panel {
	color: #787878;
    font-family: 'Roboto light';
    display: inline-block;
    float: left;
    width: 80%;
    margin: 0 10%;
	font-size: 14px;
	overflow:hidden;
}

.clientes_info_r {
	display: inline-block;
    float: left;
    width: 60%;
    height: 100%;
    padding-left: 1.5%;
}

.cont_clientes_info_r {
	position: relative;
    display: inline-block;
    float: left;
    width: 97%;
    margin: 30px 0;
}

.texto_cliente_info_panel {
	font-family: 'Roboto light';
    color: #787878;
    font-size: 14.5px;
	line-height: 20px;
    display: inline-block;
    width: 100%;
	text-align: left;
	max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.input_image_a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.clientes_lista_ul_b {
    display: inline-block;
    width: 100%;
    float: left;
    max-height: 496px;
    overflow-y: auto;
}

.clientes_lista_ul_b li {
    list-style: none;
    cursor: pointer;
    color: #919191;
    text-align: left;
    width: 90%;
    padding: 0 5%;
    position: relative;
}

.clientes_lista_ul_b li:nth-child(odd) {
    background-color: #333333;
}

.clientes_lista_ul_b li p {
    display: inline-block;
    padding: 7px 0;
    font-size: 12px;
}

.clientes_lista_ul_b li:nth-child(even):hover {
    font-family: 'Roboto medium';
    color: #FFF !important;
}

.clientes_lista_ul_b li:nth-child(even) p:hover {
    font-family: 'Roboto medium';
    color: #FFF !important;
	transition:all 0ms ease-out !important;
}

.nuevo_modulo_cancelar {
	background-color: #ababab !important;
    color: #3a3b3a !important;
}

.peso {
	font-family: 'Roboto medium';
}

.modificar_cancelar {
    background-color: #ababab !important;
    color: #3a3b3a !important;
}

.close {
	position: absolute;
    top: 0;
    right: 0;
    color: #747474;
    font-size: 30px;
    font-family: 'Roboto light';
    width: 39px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    cursor: pointer;
    -wenkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.cont_analitycs {
	width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    overflow: hidden;
    display: inline-block;
    float: left;
}

.line_cliente_a {
    display: inline-block;
    float: left;
    width: 100%;
}

.line_cliente_a p {
    color: #595959;
    width: 100%;
    margin: 0px auto;
    border-top: 1px solid #EDEEF0;
    border-bottom: 1px solid #EDEEF0;
    padding: 12px 0 12px 20px;
    font-size: 17px;
}

.titulo_categorias_page_cliente {
	color: #595959;
    font-size: 16px;
    margin: 2px 0;
    padding-left: 20px;
	-webkit-user-select: none;  /* Chrome all / Safari all */
	-moz-user-select: none;     /* Firefox all */
	-ms-user-select: none;      /* IE 10+ */
	user-select: none;          /* Likely future */
}

.show_categortias_page_cliente {
	font-family: 'Roboto regular';
    cursor: pointer;
	color: #004d80;
	font-size:14px;
}

.cont_btn_opc_clientes {
	float: left;
    width: 100%;
}

.sept {
	display: inline-block;
    margin: 0 7px;
}

.contextmenu {
	position: absolute;
    background-color: #3a3b3a;
    width: 130px;
    padding: 0 10px;
    cursor: default;
    border: 1px solid #252525;
}

.cont_contextmenu {
	width:100%;
	height:100%;
}

.cont_contextmenu p {
	position:relative;
	padding: 7px 0;
    font-size: 12px;
    color: #FFF;
}

.cont_contextmenu p span {
	position: absolute;
    height: 14px;
    right: 0;
    font-size: 8px;
    line-height: 14px;
    float: right;
}

.cont_lista_categoria_contextmenu {
	display:none;
	position: absolute;
    top: -1px;
    left: 150px;
    background-color: #3a3b3a;
    min-width: 190px;
    min-height: 28px;
    cursor: default;
    border: 1px solid #252525;
}

.contextmenu:hover .cont_lista_categoria_contextmenu {
	display:block;
}

.contextmenu_ul {
	width:100%;
	max-height: 280px;
    overflow-y: auto;
}

.contextmenu_ul li {
	display: inline-block;
    font-size: 12px;
    width: 100%;
	list-style:none;
}

.contextmenu_ul li p {
	cursor:pointer;
	color: #919191;
	padding: 7px 0 7px 10px;
}

.contextmenu_ul li:nth-child(odd) {
    background-color: #333333;
}

.contextmenu_ul li p:hover {
	color:#FFF;
	font-family:'Roboto medium';
}

.blur {
	-webkit-filter: blur(2px);
	-moz-filter: blur(2px);
	-ms-filter: blur(2px);
	-o-filter: blur(2px);
	filter: blur(2px);
}

#svg_analytics {
	width: 100%;
    height: 100%;
    display: inline-block;
    float: left;
}

#password_svg {
	cursor:pointer;
	-webkit-user-select: none;  /* Chrome all / Safari all */
	-moz-user-select: none;     /* Firefox all */
	-ms-user-select: none;      /* IE 10+ */
	user-select: none;          /* Likely future */
}

#click_google {
	cursor:pointer;
}

.result_form {
	color: #787878;
    font-size: 13.5px;
    line-height: 18px;
    font-family: 'Roboto light';
}

.click_otro_form {
	font-family: 'Roboto regular';
    cursor: pointer;
}

h3.titulo_no_incluye {
	display: inline-block;
    float: left;
    width: 100%;
    background-color: #3a3b3a;
    color: rgb(113, 114, 113);
    margin: 0;
    padding: 10px 0;
    font-size: 17px;
	font-family: 'Roboto thin';
    text-align: center;
	margin-bottom: 15px;
}

.res_cont_informacion {
	display: inline-block;
    float: left;
    width: 80%;
    margin: 0 10% 3%;
    padding-top: 5%;
    border-top: 1px solid #D9D9D9;
}

.res_cont_informacion p {
	color: #787878;
    font-size: 13.5px;
    line-height: 18px;
    font-family: 'Roboto light';
	margin-bottom: 8px;
}

.res_cont_informacion p:nth-child(1), .res_cont_informacion p:nth-child(6) {
	margin-bottom: 0;
}

.res_cont_informacion p strong {
	font-family: 'Roboto regular';
}

.powered {
	display: inline-block;
    float: left;
    width: 100%;
}

.powered p {
	color: #787878;
    padding: 8px 25px 8px 30px;
    font-size: 12px;
    font-family: 'Roboto light';
    text-align: right;
	position: relative;
    top: -9px;
}

#bgg {
    width: 120px;
    margin-left: 5px;
}

.powered #bg {
	position: relative;
    top: 7px;
	margin-left: 1px;
}