@font-face {
  font-family: 'Gotham Book';
  src: url('./fonts/Gotham/Gotham Book.otf');
}
@font-face {
  font-family: 'Gotham Light';
  src: url('./fonts/Gotham/Gotham Light.otf');
}
@font-face {
  font-family: 'Gotham Medium';
  src: url('./fonts/Gotham/Gotham Medium.otf');
}
@font-face {
  font-family: 'Gotham Black';
  src: url('./fonts/Gotham/Gotham Black.otf');
}
@font-face {
  font-family: 'Gotham Bold';
  src: url('./fonts/Gotham/Gotham Bold.otf');
}
@font-face {
  font-family: 'Gotham Thin';
  src: url('./fonts/Gotham/Gotham Thin.otf');
}
@font-face {
  font-family: 'Uni-Sans-Heavy';
  src: url('./fonts/UniSansHeavy/Uni-Sans-Heavy.otf');
}


body {
	margin:0px;
	padding:0px;
   -webkit-user-select: none;
   -webkit-tap-highlight-color: transparent;
   -webkit-touch-callout: none;
}

p, a, h5, h4, h3, h2, h1 {
	font-family: 'Gotham Book';
}

/* TYPE OF FONTS START */
.book {
	font-family: 'Gotham Book';
}
.light {
	font-family: 'Gotham Light';
}
.medium {
	font-family: 'Gotham Medium';
}
.black {
	font-family: 'Gotham Black';
}
.bold {
	font-family: 'Gotham Bold';
}
.thin {
	font-family: 'Gotham Thin';
}
/* TYPE OF FONTS END */

/* STARTS LOGIN */

.login-container {
	position:relative;
	width:100vw;
	height:100vh;
}
.login-container .first-half {
	float:left;
	width:50%;
	height:100%;
	margin:0px;
	padding:0px;
	background-image: url('imagenes/loginbgnd.jpg');
	background-size: cover;
	background-position-x: 50%;
	background-repeat: no-repeat;
}
.login-container .second-half {
	float:left;
	width:50%;
	height:100%;
	margin:0px;
	padding:0px;
	position:relative;
}
.login-container .first-half .overlay {
	width:100%;
	height:100vh;
	background-color: rgba(0, 44, 85, 0.6);
}
.login-container .second-half .outer-form {
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}
.login-container .second-half .outer-form #logo {
	margin:0px;
	margin-right:10px;
	margin-bottom:30%;
	width:100%;
}
.login-container .second-half .outer-form #loginusr svg{
	width: 90px;
}
.login-container .second-half .outer-form #loginusr svg path {
	fill:#002c55 !important;
}
.login-container .second-half .outer-form .submitBtn {
	margin-top: 7vh;
	margin-bottom: 30%;
	font-size: 16px;
	color: white;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	text-decoration: none;
	padding: 5px;
	width: 140px;
}
.login-container .second-half .outer-form .copyrights {
	color: #002c55;
	letter-spacing: 0.1em;
}

/* ENDS LOGIN */

/* STARTS NAVIGATION BAR */
#iconsNav {
	height:20px;
	position:absolute;
	right:calc(13% + 132.6px + 40px);
	top:50%;
	transform:translateY(-50%);
}
#iconsNav img {
	height: 20px;
	float: left;
	margin: 0px 5px;
}
#logoNav {
	height:35%;
	position:absolute;
	right:13%;
	top:50%;
	transform:translateY(-50%);
}
#webView {
	visibility: visible;
}
#webView #circle {
	height:8vw;
	width:8vw;
	position:absolute;
	left:13%;
	bottom:-4vw;
/* 	border-radius:4vw; */
	border:5px solid white;
}
#webNav {
	visibility: visible;
}
#mobileNav {
	visibility: hidden;
}
#navigationBar {
	position: relative;
}

#menuToggle {
  display: block;
  position: absolute;
  top: 45px;
  right: 50px;
  
  z-index: 100;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 200; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: white;
  
  z-index: 100;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #002c55;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  position: absolute;
  width: 300px;
  height: 110vh;
  margin: -100px 0 0 0;
  padding: 50px;
  padding-top: 125px;
  right: -100px;
  
  background: white;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);		  
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
}

#menuToggle input:checked ~ ul {
  transform: scale(1.0, 1.0);
  opacity: 1;
}
#menu a {
	color: #424242;
}
#menu a:visited {
	color: #002c55;
}
#menu a:hover {
	color: #002c55;
}
#menu a:focus {
	color: #002c55;
}
#menu a:hover, #menu a:active {
	color: #002c55;
}

#pfnDiv #profile_full_name {
	font-size: 15.5px;
}
@media (max-width: 1300px) {
	#logoNav {
		left:13%;
	}
	#webView {
/* 		visibility: hidden; */
	}
	#webView #circle {
		min-height:70px;
		min-width:70px;
		border:4px solid white;
	}
	#webNav {
		visibility: hidden;
	}
	#mobileNav {
		visibility: visible;
	}
	#navigationBar {
		z-index: 2;
		position: fixed;
	}
	
	.noticias, .agregar-noticias, .catorcenas, .comunicados, .renders, .lugares, .subir-comunicado, .implementaciones, .resultados, .gestion-de-datos, .reportes, .mapeo, .contactos, .soporte, .subir-ticket, .seguimiento, .gafetes, .bienvenida, .cumple, .firmas, .tarjetas, .generar-gafetes, .generar-bienvenida, .generar-cumple, .generar-firmas, .generar-tarjetas, .renders, .pm98 {
		margin-top: 185px;
	}
	
	#pfnDiv #profile_full_name {
		font-size: 14.5px;
	}
}
@media (max-width: 1000px) {
	#webView #circle {
		border:3px solid white;
	}
	#pfnDiv #profile_full_name {
		font-size: 13px;
	}
}
@media (max-width: 700px) {
	#webView #circle {
		border:2px solid white;
	}
	#pfnDiv #profile_full_name {
		font-size: 12px;
	}
}
/* ENDS NAVIGATION BAR */

/* STARTS NOTICIAS */

.noticias {
	position:relative;
	width:100vw;
}
.noticias .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.noticias .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.noticias .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}
.noticias .outer-form .bookmark {
	width: 13px;
	height: 13px;
	position: absolute;
	top: 15px;
	right: 0px;
}
.noticias .outer-form .bookmark svg {
	width: 13px;
}
.noticias .outer-form .bookmark svg path {
	fill: #002c55 !important;
}
.noticias .outer-form .share {
	width: 18px;
	height: 18px;
	position: absolute;
	top: 15px;
	right: 20px;
}
.noticias .outer-form .share svg {
	width: 18px;
}
.noticias .outer-form .share svg path {
	fill: #002c55 !important;
}
.noticias .tabsDiv {
	float: left;
}
.noticias .tabsDiv a {
	color:#a3a3a3;
	text-decoration: none;
}
.noticias .tabsDiv span {
	color:#a3a3a3;
	margin: 0px 5px;
}
.noticias .tabsDiv .active {
	color: #002c55;
}

.noticias .addNewsDiv {
	position: absolute;
	top: 40px;
	left: 0px;
	width: 100%;
}
.noticias .addNewsDiv a {
	color:#002c55;
	text-decoration: none;
}

.noticias .bookmarkDiv {
	float:right;
}
.noticias .bookmarkDiv .bookmarkSelector {
	text-decoration: none;
}
.noticias .bookmarkDiv .bookmarkSelector span {
	width: 13px;
	margin-left:4px;
	vertical-align: middle;
    display: inline-table;
}
.noticias .bookmarkDiv .bookmarkSelector span svg {
	width: 13px;
}
.noticias .bookmarkDiv .bookmarkSelector span svg path {
	fill: #fa110f !important;
}

.noticias table .selected {
	background-color:#002c55;
}
.noticias table .selected a {
	width:100%;
	height:100%;
	text-decoration:none;
}
.noticias table .selected p {
	text-align:center;
	color:white;
}

.noticias table .unselected {
	background-color:transparent;
}
.noticias table .unselected a {
	width:100%;
	height:100%;
	text-decoration:none;
}
.noticias table .unselected p {
	text-align:center;
	color:#002c55;
}
.noticias .addNewsDiv #sendNews {
	margin-right: 10px;
}
.noticias .addNewsDiv .statusDiv {
	display: inline-flex;
	height: 18px;
}
.noticias .addNewsDiv .statusLbl {
	float: left;
	font-size: 22px;
	color:#c1d462;
	margin:0px;
	margin-right:10px;
}
.noticias .addNewsDiv .statusCheck {
	float: left;
	width:18px;
	height:18px;
}
.noticias .addNewsDiv .statusCheck svg {
	width:18px;
	height:18px;
}
.noticias .addNewsDiv .statusCheck svg path {
	fill:#c1d462 !important;
}
/* ENDS NOTICIAS */

/* STARTS AGREGAR NOTICIAS */

.agregar-noticias {
	position:relative;
	width:100vw;
}
.agregar-noticias .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.agregar-noticias .outer-form {
	width:45%;
	min-width:320px;
	position:relative;
	text-align:left;
}
.agregar-noticias .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}
.agregar-noticias .outer-form .textfield {
	border:0px;
	background-color:#f3f3f3;	
	font-size:16px;
	color:#a5a5a5;
	outline: none;
}
.agregar-noticias .outer-form .small-title input {
	height:25px;
	padding: 0px 4px;
}
.agregar-noticias .outer-form textarea {
	height:80px;
	padding: 4px;
}
.agregar-noticias .outer-form .submitBtn {
	margin-right:35px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.agregar-noticias .outer-form #statusDiv {
	position:relative;
	width:100%;
	height:100%;
}
.agregar-noticias .outer-form #statusDiv #statusDivInner {
	position:absolute;
	left:calc(140px + 30px);
	top:50%;
	transform: translateY(-50%);
}
.agregar-noticias .outer-form .statusLbl {
	float: left;
	font-size: 22px;
	color:#c1d462;
	margin:0px;
	margin-right:10px;
}
.agregar-noticias .outer-form .statusCheck {
	float: left;
	width:25px;
	height:25px;
}
.agregar-noticias .outer-form .statusCheck svg {
	width:25px;
	height:25px;
}
.agregar-noticias .outer-form .statusCheck svg path {
	fill:#c1d462 !important;
}

/* ENDS AGREGAR NOTICIAS */

/* STARTS CATORCENAS */

.catorcenas {
	position:relative;
	width:100vw;
}
.catorcenas .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.catorcenas .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.catorcenas .outer-form .catorcena-table {
	width:100%;
}
.catorcenas .outer-form .catorcena-table p{
	font-size:13px;
	margin:0px;
}
.catorcenas .outer-form .catorcena-table .cat{
	margin-top:5px;
}
.catorcenas .outer-form .catorcena-table .entregas{
	color:#0F3EE0;
	text-align:center;
}
.catorcenas .outer-form .catorcena-table .monthNumber{
	font-size:16px;
}

/* ENDS CATORCENAS */

/* STARTS COMUNICADO */

.comunicados {
	position:relative;
	width:100vw;
}
.comunicados .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.comunicados .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.comunicados .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}
.comunicados .outer-form #comunicados {
	margin-top: 50px;
}

/* ENDS COMUNICADO */

/* STARTS SUBIR COMUNICADO */

.subir-comunicado {
	position:relative;
	width:100vw;
}
.subir-comunicado .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.subir-comunicado .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.subir-comunicado .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}
.subir-comunicado .outer-form .textfield {
	border:0px;
	background-color:#f3f3f3;	
	font-size:16px;
	color:#a5a5a5;
	outline: none;
}
.subir-comunicado .outer-form .small-title input {
	height:25px;
	padding: 0px 4px;
}
.subir-comunicado .outer-form textarea {
	height:80px;
	padding: 4px;
}
.subir-comunicado .outer-form .submitBtn {
	float:left;
	margin-right:35px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.subir-comunicado .outer-form #statusDiv {
	position:relative;
	width:100%;
	height:100%;
}
.subir-comunicado .outer-form #statusDiv #statusDivInner {
	position:absolute;
	left:calc(140px + 30px);
	top:50%;
	transform: translateY(-50%);
}
.subir-comunicado .outer-form .statusLbl {
	float: left;
	font-size: 22px;
	color:#c1d462;
	margin:0px;
	margin-right:10px;
}
.subir-comunicado .outer-form .statusCheck {
	float: left;
	width:25px;
	height:25px;
}
.subir-comunicado .outer-form .statusCheck svg {
	width:25px;
	height:25px;
}
.subir-comunicado .outer-form .statusCheck svg path {
	fill:#c1d462 !important;
}

/* ENDS SUBIR COMUNICADO */

/* STARTS GAFETES */

.gafetes {
	position:relative;
	width:100vw;
}
.gafetes .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.gafetes .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.gafetes .outer-form .textfield {
	border:0px;
	background-color:#f3f3f3;	
	font-size:16px;
	color:#a5a5a5;
	outline: none;
}
.gafetes .outer-form .submitBtn {
	float:right;
	margin-right:35px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.gafetes .outer-form .submitBtnSmall {
	font-size: 14px;
	color: white;
	width: 85px;
	height: 30px;
	background-color: #002c55;
	border-radius: 30px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
	z-index: 1;
	position: relative;
    margin-bottom: 8px;
}
.gafetes .outer-form table th {
    position: relative;
    padding: 0px;
    padding-bottom: 15px;
}
.gafetes .outer-form table th p {
    text-align: left;
    color: #002c55;
	font-size: 14px;
}
.gafetes .outer-form .small-title {
	color: #a3a3a3;
	font-size: 12px;
}

/* ENDS GAFETES */

/* STARTS GENERAR GAFETES */

.generar-gafetes {
	position:relative;
	width:100vw;
}
.generar-gafetes .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.generar-gafetes .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.generar-gafetes .outer-form #first_half {
	float: left;
	margin: 0px;
}
.generar-gafetes .outer-form .half {
	width:50%;
}
.generar-gafetes .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}
.generar-gafetes .outer-form .textfield {
	border:0px;
	background-color:#f3f3f3;	
	font-size:16px;
	color:#a5a5a5;
	outline: none;
}
.generar-gafetes .outer-form .small-title input {
	height:25px;
	padding: 0px 4px;
}
.generar-gafetes .outer-form .submitBtn {
	float:left;
	margin-bottom:20px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.generar-gafetes .outer-form #statusDiv {
	position:relative;
	width:100%;
	height:100%;
}
.generar-gafetes .outer-form #statusDiv #statusDivInner {
	position:absolute;
	left:calc(140px + 30px);
	top:50%;
	transform: translateY(-50%);
}
.generar-gafetes .outer-form .statusLbl {
	float: left;
	font-size: 22px;
	color:#c1d462;
	margin:0px;
	margin-right:10px;
}
.generar-gafetes .outer-form .statusCheck {
	float: left;
	width:25px;
	height:25px;
}
.generar-gafetes .outer-form .statusCheck svg {
	width:25px;
	height:25px;
}
.generar-gafetes .outer-form .statusCheck svg path {
	fill:#c1d462 !important;
}
.generar-gafetes .breadcrumbs {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
	color: #002c55;
}
.generar-gafetes .breadcrumbs a {
	color: #002c55;
	text-decoration:none;
}
.generar-gafetes .breadcrumbs .active {
	color: #a3a3a3;
}

/* ENDS GENERAR GAFETES */

/* STARTS FIRMAS */

.firmas {
	position:relative;
	width:100vw;
}
.firmas .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.firmas .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.firmas .outer-form .textfield {
	border:0px;
	background-color:#f3f3f3;	
	font-size:16px;
	color:#a5a5a5;
	outline: none;
}
.firmas .outer-form .submitBtn {
	float:right;
	margin-right:35px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.firmas .outer-form .submitBtnSmall {
	font-size: 14px;
	color: white;
	width: 85px;
	height: 30px;
	background-color: #002c55;
	border-radius: 30px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
	z-index: 1;
	position: relative;
    margin-bottom: 8px;
}
.firmas .outer-form table th {
    position: relative;
    padding: 0px;
    padding-bottom: 15px;
}
.firmas .outer-form table th p {
    text-align: left;
    color: #002c55;
	font-size: 14px;
}
.firmas .outer-form .small-title {
	color: #a3a3a3;
	font-size: 12px;
}

/* ENDS FIRMAS */

/* STARTS GENERAR FIRMAS */

.generar-firmas {
	position:relative;
	width:100vw;
}
.generar-firmas .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.generar-firmas .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.generar-firmas .outer-form #first_half {
	float: left;
	margin: 0px;
}
.generar-firmas .outer-form .half {
	width:50%;
}
.generar-firmas .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}
.generar-firmas .outer-form .textfield {
	border:0px;
	background-color:#f3f3f3;	
	font-size:16px;
	color:#a5a5a5;
	outline: none;
}
.generar-firmas .outer-form .small-title input {
	height:25px;
	padding: 0px 4px;
}
.generar-firmas .outer-form .submitBtn {
	float:left;
	margin-bottom:20px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.generar-firmas .outer-form #statusDiv {
	position:relative;
	width:100%;
	height:100%;
}
.generar-firmas .outer-form #statusDiv #statusDivInner {
	position:absolute;
	left:calc(140px + 30px);
	top:50%;
	transform: translateY(-50%);
}
.generar-firmas .outer-form .statusLbl {
	float: left;
	font-size: 22px;
	color:#c1d462;
	margin:0px;
	margin-right:10px;
}
.generar-firmas .outer-form .statusCheck {
	float: left;
	width:25px;
	height:25px;
}
.generar-firmas .outer-form .statusCheck svg {
	width:25px;
	height:25px;
}
.generar-firmas .outer-form .statusCheck svg path {
	fill:#c1d462 !important;
}
.generar-firmas .breadcrumbs {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
	color: #002c55;
}
.generar-firmas .breadcrumbs a {
	color: #002c55;
	text-decoration:none;
}
.generar-firmas .breadcrumbs .active {
	color: #a3a3a3;
}

/* ENDS GENERAR FIRMAS */

/* STARTS TARJETAS */

.tarjetas {
	position:relative;
	width:100vw;
}
.tarjetas .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.tarjetas .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.tarjetas .outer-form .textfield {
	border:0px;
	background-color:#f3f3f3;	
	font-size:16px;
	color:#a5a5a5;
	outline: none;
}
.tarjetas .outer-form .submitBtn {
	float:right;
	margin-right:35px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.tarjetas .outer-form .submitBtnSmall {
	font-size: 14px;
	color: white;
	width: 85px;
	height: 30px;
	background-color: #002c55;
	border-radius: 30px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
	z-index: 1;
	position: relative;
    margin-bottom: 8px;
}
.tarjetas .outer-form table th {
    position: relative;
    padding: 0px;
    padding-bottom: 15px;
}
.tarjetas .outer-form table th p {
    text-align: left;
    color: #002c55;
	font-size: 14px;
}
.tarjetas .outer-form .small-title {
	color: #a3a3a3;
	font-size: 12px;
}

/* ENDS TARJETAS */

/* STARTS GENERAR TARJETAS */

.generar-tarjetas {
	position:relative;
	width:100vw;
}
.generar-tarjetas .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.generar-tarjetas .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.generar-tarjetas .outer-form #first_half {
	float: left;
	margin: 0px;
}
.generar-tarjetas .outer-form .half {
	width:50%;
}
.generar-tarjetas .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}
.generar-tarjetas .outer-form .textfield {
	border:0px;
	background-color:#f3f3f3;	
	font-size:16px;
	color:#a5a5a5;
	outline: none;
}
.generar-tarjetas .outer-form .small-title input {
	height:25px;
	padding: 0px 4px;
}
.generar-tarjetas .outer-form .submitBtn {
	float:left;
	margin-bottom:20px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.generar-tarjetas .outer-form #statusDiv {
	position:relative;
	width:100%;
	height:100%;
}
.generar-tarjetas .outer-form #statusDiv #statusDivInner {
	position:absolute;
	left:calc(140px + 30px);
	top:50%;
	transform: translateY(-50%);
}
.generar-tarjetas .outer-form .statusLbl {
	float: left;
	font-size: 22px;
	color:#c1d462;
	margin:0px;
	margin-right:10px;
}
.generar-tarjetas .outer-form .statusCheck {
	float: left;
	width:25px;
	height:25px;
}
.generar-tarjetas .outer-form .statusCheck svg {
	width:25px;
	height:25px;
}
.generar-tarjetas .outer-form .statusCheck svg path {
	fill:#c1d462 !important;
}
.generar-tarjetas .breadcrumbs {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
	color: #002c55;
}
.generar-tarjetas .breadcrumbs a {
	color: #002c55;
	text-decoration:none;
}
.generar-tarjetas .breadcrumbs .active {
	color: #a3a3a3;
}

/* ENDS GENERAR TARJETAS */

/* STARTS BIENVENIDA */

.bienvenida {
	position:relative;
	width:100vw;
}
.bienvenida .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.bienvenida .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.bienvenida .outer-form .submitBtn {
	float:right;
	margin-bottom:20px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.bienvenida .outer-form .submitBtnSmall {
	font-size: 14px;
	color: white;
	width: 85px;
	height: 30px;
	background-color: #002c55;
	border-radius: 30px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
	z-index: 1;
	position: relative;
    margin-bottom: 8px;
}
.bienvenida .outer-form table th {
    position: relative;
    padding: 0px;
    padding-bottom: 15px;
}
.bienvenida .outer-form table th p {
    text-align: left;
    color: #002c55;
	font-size: 14px;
}
.bienvenida .outer-form .small-title {
	color: #a3a3a3;
	font-size: 12px;
}

/* ENDS BIENVENIDA */

/* STARTS GENERAR BIENVENIDA */

.generar-bienvenida {
	position:relative;
	width:100vw;
}
.generar-bienvenida .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.generar-bienvenida .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.generar-bienvenida .outer-form #first_half {
	float:left;
	margin: 0px;
}
.generar-bienvenida .outer-form .half {
	width:50%;
}
.generar-bienvenida .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}
.generar-bienvenida .outer-form .textfield {
	border:0px;
	background-color:#f3f3f3;	
	font-size:16px;
	color:#a5a5a5;
	outline: none;
}
.generar-bienvenida .outer-form .small-title input {
	height:25px;
	padding: 0px 4px;
}
.generar-bienvenida .outer-form .submitBtn {
	float:left;
	margin-bottom:20px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.generar-bienvenida .outer-form #statusDiv {
	position:relative;
	width:100%;
	height:100%;
}
.generar-bienvenida .outer-form #statusDiv #statusDivInner {
	position:absolute;
	left:calc(140px + 30px);
	top:50%;
	transform: translateY(-50%);
}
.generar-bienvenida .outer-form .statusLbl {
	float: left;
	font-size: 22px;
	color:#c1d462;
	margin:0px;
	margin-right:10px;
}
.generar-bienvenida .outer-form .statusCheck {
	float: left;
	width:25px;
	height:25px;
}
.generar-bienvenida .outer-form .statusCheck svg {
	width:25px;
	height:25px;
}
.generar-bienvenida .outer-form .statusCheck svg path {
	fill:#c1d462 !important;
}
.generar-bienvenida .breadcrumbs {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
	color: #002c55;
}
.generar-bienvenida .breadcrumbs a {
	color: #002c55;
	text-decoration:none;
}
.generar-bienvenida .breadcrumbs .active {
	color: #a3a3a3;
}

/* ENDS GENERAR BIENVENIDA */

/* STARTS CUMPLEAÑOS */

.cumple {
	position:relative;
	width:100vw;
}
.cumple .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.cumple .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.cumple .outer-form .textfield {
	border:0px;
	background-color:#f3f3f3;	
	font-size:16px;
	color:#a5a5a5;
	outline: none;
}
.cumple .outer-form .submitBtn {
	float:right;
	margin-right:35px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.cumple .outer-form .submitBtnSmall {
	font-size: 14px;
	color: white;
	width: 85px;
	height: 30px;
	background-color: #002c55;
	border-radius: 30px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
	z-index: 1;
	position: relative;
    margin-bottom: 8px;
}
.cumple .outer-form table th {
    position: relative;
    padding: 0px;
    padding-bottom: 15px;
}
.cumple .outer-form table th p {
    text-align: left;
    color: #002c55;
	font-size: 14px;
}
.cumple .outer-form .small-title {
	color: #a3a3a3;
	font-size: 12px;
}

/* ENDS CUMPLEAÑOS */

/* STARTS GENERAR CUMPLEAÑOS */

.generar-cumple {
	position:relative;
	width:100vw;
}
.generar-cumple .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.generar-cumple .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.generar-cumple .outer-form #first_half {
	float:left;
	margin: 0px;
}
.generar-cumple .outer-form .half {
	width:50%;
}
.generar-cumple .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}
.generar-cumple .outer-form .textfield {
	border:0px;
	background-color:#f3f3f3;	
	font-size:16px;
	color:#a5a5a5;
	outline: none;
}
.generar-cumple .outer-form .small-title input {
	height:25px;
	padding: 0px 4px;
}
.generar-cumple .outer-form .submitBtn {
	float:left;
	margin-bottom:20px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.generar-cumple .outer-form #statusDiv {
	position:relative;
	width:100%;
	height:100%;
}
.generar-cumple .outer-form #statusDiv #statusDivInner {
	position:absolute;
	left:calc(140px + 30px);
	top:50%;
	transform: translateY(-50%);
}
.generar-cumple .outer-form .statusLbl {
	float: left;
	font-size: 22px;
	color:#c1d462;
	margin:0px;
	margin-right:10px;
}
.generar-cumple .outer-form .statusCheck {
	float: left;
	width:25px;
	height:25px;
}
.generar-cumple .outer-form .statusCheck svg {
	width:25px;
	height:25px;
}
.generar-cumple .outer-form .statusCheck svg path {
	fill:#c1d462 !important;
}
.generar-cumple .breadcrumbs {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
	color: #002c55;
}
.generar-cumple .breadcrumbs a {
	color: #002c55;
	text-decoration:none;
}
.generar-cumple .breadcrumbs .active {
	color: #a3a3a3;
}

/* ENDS GENERAR CUMPLEAÑOS */

/* STARTS ESPACIOS */

.lugares {
	position:relative;
	width:100vw;
}
.lugares .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.lugares .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.lugares .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}
.lugares .outer-form #lugares {
	margin-top: 50px;
}

/* ENDS ESPACIOS */

/* STARTS RENDERS */

.renders {
	position:relative;
	width:100vw;
}
.renders .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.renders .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.renders .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}
.renders .outer-form #renders {
	margin-top: 50px;
}
#render-list {
	display:inline-block;
}

/* ENDS RENDERS */

/* STARTS IMPLEMENTACIONES */

.implementaciones {
	position:relative;
	width:100vw;
}
.implementaciones .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.implementaciones .outer-form {
	width:100%;
	min-width:320px;
	position:relative;
	text-align:left;
}

/* ENDS IMPLEMENTACIONES */

/* STARTS RESULTADOS */

.resultados {
	position:relative;
	width:100vw;
}
.resultados .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.resultados .medium-title {
	margin-top:50px;
	color:#a3a3a3;
	font-size:30px;
	letter-spacing:2.5px;
}
.resultados .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.resultados .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}

.resultados .outer-form .axis-x p {
	font-size:13px;
	text-align:center;
	float:left;
	height:100%;
	margin-bottom:0px;
	color:#4a4a4a;
	cursor: pointer;
}

.card {
	width: calc(100% - 160px);
	position: relative;
	height: 510px;
	margin: 0px;
	margin-top: 30px;
	padding: 20px 80px;
	background-color:#fafafa;
	-webkit-box-shadow: -4px 7px 11px -2px rgba(224,224,224,1);
	-moz-box-shadow: 	-4px 7px 11px -2px rgba(224,224,224,1);
	box-shadow: 		-4px 7px 11px -2px rgba(224,224,224,1);
    transition:height 0.3s ease-out;
}

.donut {
    position: relative;
    float: left;
    margin: 0px 40px;
}

.donut h3 {
    text-align:center;
    position: absolute;
    line-height: 88px;
    width: 100%;
}

.donut svg {
   -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.donut .circle_animation, .donut .path, .bars .path {
	transition: all 1s ease-in-out;
}

.bars .bar {
	cursor: pointer;
}

.bars .path {
	transition: height 1s ease-in-out;
}

.notSelected { opacity: 0.5; }
.selected { opacity: 1.0; }

.bargraph .bar svg, .bargraph2 .bar svg {
	display:inline-block;
}
.bargraph .bar .am, .bargraph2 .bar .am {
	background-color:#F5CB45
}
.bargraph .bar .az, .bargraph2 .bar .az {
	background-color:#52B4E4;
}
.bargraph .bar .ve, .bargraph2 .bar .ve {
	background-color:#C2DF60;
}
.bargraph .bar .ro, .bargraph2 .bar .ro {
	background-color:#F29020;
}

.donut .plus100 {
	position:absolute;
	top:2px;
	left:calc(50% + 0px);
	z-index:2;
	display:none;
}

.am .plus100 path {
	fill: #B58B05;
}
.az .plus100 path {
	fill: #1274A4;
}
.ve .plus100 path {
	fill: #829F20;
}
.ro .plus100 path {
	fill: #B25000;
}

/* ENDS RESULTADOS */


/* STARTS GESTIÓN DE DATOS */

.gestion-de-datos {
	position:relative;
	width:100vw;
}
.gestion-de-datos .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.gestion-de-datos .outer-form {
	width:45%;
	min-width:320px;
	position:relative;
	text-align:left;
}
.gestion-de-datos .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}
.gestion-de-datos .outer-form .small-title input {
	border:0px;
	background-color:#f3f3f3;
	height:25px;
	font-size:16px;
	padding: 0px 4px;
	color:#a5a5a5;
	outline: none;
}
.gestion-de-datos .outer-form .submitBtn {
	float:left;
	margin-right:40px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.gestion-de-datos .outer-form .statusDiv {
	position:relative;
	width:100%;
	height:100%;
}
.gestion-de-datos .outer-form .statusDiv #statusDivInner {
	position:absolute;
	left:calc(140px + 30px);
	top:50%;
	transform: translateY(-50%);
}
.gestion-de-datos .outer-form .statusLbl {
	float: left;
	font-size: 22px;
	color:#c1d462;
	margin:0px;
	margin-right:10px;
}
.gestion-de-datos .outer-form .statusCheck {
	float: left;
	width:25px;
	height:25px;
}
.gestion-de-datos .outer-form .statusCheck svg {
	width:25px;
	height:25px;
}
.gestion-de-datos .outer-form .statusCheck svg path {
	fill:#c1d462 !important;
}

.gestion-de-datos table .selected {
	background-color:#002c55;
}
.gestion-de-datos table .selected a {
	width:100%;
	height:100%;
	text-decoration:none;
}
.gestion-de-datos table .selected p {
	text-align:center;
	color:white;
}

.gestion-de-datos table .unselected {
	background-color:transparent;
}
.gestion-de-datos table .unselected a {
	width:100%;
	height:100%;
	text-decoration:none;
}
.gestion-de-datos table .unselected p {
	text-align:center;
	color:#002c55;
}

/* ENDS GESTIÓN DE DATOS */

/* STARTS REPORTES */

.reportes {
	position:relative;
	width:100vw;
}
.reportes .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.reportes .outer-form {
	width:100%;
	min-width:320px;
	position:relative;
	text-align:left;
}
.reportes table td, .reportes table th {
	border: 1px solid rgba(220,220,220);
	padding: 2px 4px;
}
.reportes table p {
	margin: 0px;
	font-size: 14px;
}
.reportes .outer-form .submitBtn {
	float:left;
	margin-right:40px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.reportes .outer-form #excelTable2 tr td {
	min-width:40px;
	max-width:5vw;
	width:5vw;
}
.reportes .outer-form #excelTable2 tr td p {
	min-width:40px;
	max-width:5vw;
	width:5vw;
}

/* ENDS REPORTES */

/* STARTS MAPEO */

.mapeo {
	position:relative;
	width:100vw;
}
.mapeo .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.mapeo .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.mapeo .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}
.mapeo .outer-form .small-title input {
	border:0px;
	background-color:#f3f3f3;
	height:25px;
	font-size:16px;
	padding: 0px 4px;
	color:#a5a5a5;
	outline: none;
}
.mapeo .outer-form .submitBtn {
	margin-right:40px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.mapeo .outer-form .checkbox {
	float:left;
	margin:0px;
	margin-right:15px;
}

/* ENDS MAPEO CLIENTES */

.mapeocliente {
	position:relative;
	width:100vw;
}
.mapeocliente .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.mapeocliente .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}
.mapeocliente .outer-form .submitBtn {
	margin-left: 25px;
	font-size: 14px;
	color: white;
	width: 160px;
	height: 30px;
	background-color: #002c55;
	border-radius: 30px;
/*     -webkit-border-radius: 60px; */
/*     -moz-border-radius: 60px; */
	z-index: 1;
	position: relative;
	outline:none;
}
.mapeocliente .outer-form table tr {
	height:30px;
}

/* ENDS MAPEO CLIENTES */

/* STARTS CONTACTOS */

.contactos {
	position:relative;
	width:100vw;
}
.contactos .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.contactos .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.contactos .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}

/* ENDS CONTACTOS */

/* STARTS SOPORTE */

.soporte {
	position:relative;
	width:100vw;
}
.soporte .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.soporte .outer-form {
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.soporte .outer-form .small-title {
	color:#a3a3a3;
	font-size:17px;
}
.soporte .outer-form .textfield {
	border:0px;
	background-color:#f3f3f3;	
	font-size:16px;
	color:#a5a5a5;
	outline: none;
}
.soporte .outer-form .small-title input {
	height:25px;
	padding: 0px 4px;
}
.soporte .outer-form textarea {
	height:80px;
	padding: 4px;
}
.soporte .outer-form .submitBtn {
	float:right;
	margin-bottom:20px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.soporte .outer-form .submitBtnSmall {
	font-size: 14px;
	color: white;
	width: 85px;
	height: 30px;
	background-color: #002c55;
	border-radius: 30px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
	z-index: 1;
	position: relative;
}
.soporte .outer-form table {
	border-collapse: separate;
}
.soporte .outer-form .row {
	height:60px;
}
.soporte .outer-form .row td { border-top:1px solid #e1e1e1; border-bottom:1px solid #e1e1e1; }
.soporte .outer-form .row td:first-child { border-left:1px solid #e1e1e1; border-bottom-left-radius: 15px; border-top-left-radius: 15px; }
.soporte .outer-form .row td:last-child { border-right:1px solid #e1e1e1; border-bottom-right-radius: 15px; border-top-right-radius: 15px; }
.soporte .outer-form .spacing {
	height:15px;
}
.soporte .outer-form #statusDiv {
	position:relative;
	width:100%;
	height:100%;
}
.soporte .outer-form #statusDiv #statusDivInner {
	position:absolute;
	left:calc(140px + 30px);
	top:50%;
	transform: translateY(-50%);
}
.soporte .outer-form .statusLbl {
	float: left;
	font-size: 22px;
	color:#c1d462;
	margin:0px;
	margin-right:10px;
}
.soporte .outer-form .statusCheck {
	float: left;
	width:25px;
	height:25px;
}
.soporte .outer-form .statusCheck svg {
	width:25px;
	height:25px;
}
.soporte .outer-form .statusCheck svg path {
	fill:#c1d462 !important;
}

/* ENDS SOPORTE */

/* STARTS SUBIR TICKET */

.subir-ticket {
	position:relative;
	width:100vw;
}
.subir-ticket .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.subir-ticket .big-title2 {
	margin-top:73px;
	color:#002c55;
}
.subir-ticket .outer-form {
	margin-top: 50px;
	width:calc(100% - 26%);
	min-width:320px;
	position:relative;
	text-align:left;
}
.subir-ticket .outer-form .small-title {
	color:#002c55;
	font-size:17px;
}
.subir-ticket .outer-form .textfield {
	border:0px;
	background-color:#f3f3f3;	
	font-size:16px;
	color:#707070;
	outline: none;
}
.subir-ticket .outer-form .small-title input {
	height:25px;
	padding: 0px 4px;
}
.subir-ticket .outer-form textarea {
	height:80px;
	padding: 4px;
}
.subir-ticket .outer-form .submitBtn {
	float:left;
	margin-right:40px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.subir-ticket .outer-form #statusDiv {
	position:relative;
	width:100%;
	height:100%;
}
.subir-ticket .outer-form #statusDiv #statusDivInner {
	position:absolute;
	left:calc(140px + 30px);
	top:50%;
	transform: translateY(-50%);
}
.subir-ticket .outer-form .statusLbl {
	float: left;
	font-size: 22px;
	color:#c1d462;
	margin:0px;
	margin-right:10px;
}
.subir-ticket .outer-form .statusCheck {
	float: left;
	width:25px;
	height:25px;
}
.subir-ticket .outer-form .statusCheck svg {
	width:25px;
	height:25px;
}
.subir-ticket .outer-form .statusCheck svg path {
	fill:#c1d462 !important;
}
.subir-ticket .breadcrumbs {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
	color: #002c55;
}
.subir-ticket .breadcrumbs a {
	color: #002c55;
	text-decoration:none;
}
.subir-ticket .breadcrumbs .active {
	color: #a3a3a3;
}

/* ENDS SUBIR TICKET  */

/* STARTS SEGUIMIENTO */

.seguimiento {
	position:relative;
	width:100vw;
}
.seguimiento .big-title {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
}
.seguimiento .outer-form {
	margin-top:50px;
	width:45%;
	min-width:320px;
	position:relative;
	text-align:left;
}
.seguimiento .outer-form .conversation {
	width:100%;
}
.seguimiento .outer-form .conversation .texts {
	width:60%;
	text-align:left;
	margin:15px;
	padding:10px;
	border-radius:0.5vw;
}
.seguimiento .outer-form .conversation .left {
	text-align:left;
	float:left;
	background-color: #ffffff;
	box-shadow: 0px 0.6px 1px 0.5px rgba(0,0,0,0.1);
}
.seguimiento .outer-form .conversation .right {
	float:right;
	background-color: #e7fdcc;
	box-shadow: 0px 0.6px 1px 0.5px rgba(0,0,0,0.1);
}
.seguimiento .outer-form .conversation .texts .person {
	font-size:15px;
}
.seguimiento .outer-form .conversation .texts .message {
	text-align:justify;
	font-size:15px;
}
.seguimiento .outer-form .small-title {
	color:#002c55;
	font-size:17px;
}
.seguimiento .outer-form .textfield {
	border:0px;
	background-color:#f3f3f3;	
	font-size:16px;
	color:#002c55;
	outline: none;
}
.seguimiento .outer-form .small-title input {
	height:25px;
	padding: 0px 4px;
}
.seguimiento .outer-form textarea {
	height:80px;
	padding: 4px;
}
.seguimiento .outer-form .submitBtn {
	float:left;
	margin-right:15px;
	font-size: 16px;
	color: white;
	width: 140px;
	height: 35px;
	background-color: #002c55;
	border-radius: 35px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
	z-index: 1;
	position: relative;
}
.seguimiento .outer-form .statusDiv {
	display: inline-flex;
	height: 18px;
}
.seguimiento .outer-form .statusLbl {
	float: left;
	font-size: 22px;
	color:#c1d462;
	margin:0px;
	margin-right:10px;
}
.seguimiento .outer-form .statusCheck {
	float: left;
	width:18px;
	height:18px;
	margin-top:4px;
}
.seguimiento .outer-form .statusCheck svg {
	width:18px;
	height:18px;
}
.seguimiento .outer-form .statusCheck svg path {
	fill:#c1d462 !important;
}
.seguimiento .breadcrumbs {
	margin-top:73px;
	color:#a3a3a3;
	letter-spacing:2.5px;
	color: #002c55;
}
.seguimiento .breadcrumbs a {
	color: #002c55;
	text-decoration:none;
}
.seguimiento .breadcrumbs .active {
	color: #a3a3a3;
}

/* ENDS SEGUIMIENTO */

/* STARTS IMAGE PREVIEW */
.espacios {
	width:32%;
}

@media (min-width: 1250px) {
	.espacios {
		width:47%;
	}
}

@media (max-width: 950px) {
	.espacios {
		width:100%;
	}
	.generar-cumple .outer-form #first_half {
		margin-bottom:35px;
	}
	.generar-cumple .outer-form .half {
		width:100%;
	}
    .generar-bienvenida .outer-form #first_half {
		margin-bottom:35px;
	}
	.generar-bienvenida .outer-form .half {
		width:100%;
	}
    .generar-firmas .outer-form #first_half {
		margin-bottom:35px;
	}
	.generar-firmas .outer-form .half {
		width:100%;
	}
    .generar-gafetes .outer-form #first_half {
		margin-bottom:35px;
	}
	.generar-gafetes .outer-form .half {
		width:100%;
	}
	.generar-tarjetas .outer-form #first_half {
		margin-bottom:35px;
	}
	.generar-tarjetas .outer-form .half {
		width:100%;
	}
}
/* ENDS IMAGE PREVIEW */

.chart5 {
	display:none;
}

.dropdown {
	-webkit-appearance: button;
	-webkit-border-radius: 0px;
	-webkit-box-shadow: 0px;
	-webkit-padding-end: 20px;
	-webkit-padding-start: 2px;
	-webkit-user-select: none;
	border: 0px;
	color: #1c8ade;
	margin: 0px;
	overflow: hidden;
	padding: 3px 5px;
	text-overflow: ellipsis;
	white-space: nowrap;
	outline: none;
	font-size: 14px;
}
select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #1c8ade;
}
option:not(:checked) {
	color: black;	
}

.tabdropdown {
	position:relative;
	float:left;
	color:white;
	text-decoration:none;
	margin: 0px 7.5px;
	font-size:14px;
}
.tabdropdown a {
	text-decoration:none;
	color:white;
	margin:0px;
}
.tabdropdown .tabdropdownopts {
	position:absolute;
	top:100%;
	z-index:1;
	display: none;
}
.tabdropdown:hover .tabdropdownopts {
	display: block;
}
.tabdropdown .tabdropdownopts .tabdropdownoptsinner {
	width:100%;
	background-color:#e8e8e8;
	position:relative;
	padding:15px;
	margin-top:10px;
}
.tabdropdown .tabdropdownopts .tabdropdownoptsinner div {
	width:100%;
	height:100%;
	position:relative;
}
.tabdropdown .tabdropdownopts .tabdropdownoptsinner a {
	display:inline-block;
	white-space:nowrap;
	width:100%;
	color:#656565;
	text-decoration:none;
	margin-top:4px;
	font-size:14px;
}

/* STARTS ARROWS */

i.arrow {
	border: solid white;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 2px;
	margin-bottom: 2px;
    
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;

    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
     transition-property: transform;
}

i.arrow.medium {
	border-width: 0 3px 3px 0;
	padding: 3px;
	margin-bottom: 8px;
}

i.arrow.big {
	border-width: 0 4px 4px 0;
	padding: 4px;
	margin-bottom: 8px;
}

i.arrow.right {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

i.arrow.left {
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}

i.arrow.up {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}

i.arrow.down {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

/* ENDS ARROWS */

/* STARTS MOBILE SIZES */

@media (max-width: 15000px) {
	.noticias .articleDiv {
		width:30%;
		min-height:450px;
		max-height:450px;
	}
	.soporte .articleDiv {
		width:30%;
		min-width:30%;
		max-width:30%;
		min-height:250px;
		max-height:250px;
	}
	.comunicados .articleDiv {
		width:30%;
	}
	.renders .articleDiv {
		width:40%;
	}
    .lugares .articleDiv {
		width:40%;
	}
	.reportes table h4 {
		font-size:14px;
	}
	.reportes table p {
		font-size:12px;
	}
	.resultados .outer-form .axis-x p {
		font-size:12px;
	}
	#catorcenasView {
		width:calc(3*225px + 3*30px);
	}
	.catorcenasInnerView {
		margin:15px;
		width:225px;
	}
	.catorcenas #cat_title {
		font-size: 32px;
	}
	.catorcenas #cat_entrega {
		font-size: 16px;
	}
	.catorcenas .outer-form .catorcena-table p{
		font-size: 13px;
	}
	.catorcenas .outer-form .catorcena-table .cat{
		margin-top: 5px;
	}
	.catorcenas .outer-form .catorcena-table .monthNumber{
		font-size: 16px;
	}
	.breadcrumbs {
		font-size: 24px;
	}
	.list_col2 {
		padding-left:40px;
	}
	.status_message {
		font-size: 16px;
	}
	.list_title {
		font-size: 14px;
	}
	.list_subtitle {
		font-size: 11px;
	}
	.list_description {
		font-size: 12px;
	}
	.big-title {
		font-size: 48px;
	}
	.big-title2 {
		font-size: 30px;
	}
	.list-group-item {
		padding:5px;
		width:32%;
		height:170px;
	}
	.list-group-item h3 {
		font-size: 1.17em;
	}
	.list-group-item p, .list-group-item a {
		font-size: 16px;
	}
}
@media (max-width: 1300px) {
	.resultados .card {
		width: calc(100% - 140px);
		height: 510px;
		padding: 20px 70px;
	}
	.reportes table h4 {
		font-size:13px;
	}
	.reportes table p {
		font-size:11px;
	}
	.resultados .outer-form .axis-x p {
		font-size:11px;
	}
	.catorcenasInnerView {
		margin:13px;
	}
	.catorcenas #cat_title {
		font-size: 28px;
	}
	.catorcenas #cat_entrega {
		font-size: 15px;
	}
	.catorcenas .outer-form .catorcena-table p{
		font-size: 12px;
	}
	.catorcenas .outer-form .catorcena-table .cat{
		margin-top: 4px;
	}
	.catorcenas .outer-form .catorcena-table .monthNumber{
		font-size: 15px;
	}
	.breadcrumbs {
		font-size: 20px;
	}
	.list_col2 {
		padding-left:30px;
	}
	.list_title {
		font-size: 13px;
	}
	.list_subtitle {
		font-size: 10px;
	}
	.list_description {
		font-size: 11px;
	}
	.big-title {
		font-size: 40px;
	}
	.big-title2 {
		font-size: 28px;
	}
	.list-group-item {
		padding:4.5px;
		width:calc(50% - 9px);
		height:180px;
	}
	.list-group-item h3 {
		font-size: 1.13em;
	}
	.list-group-item p, .list-group-item a {
		font-size: 15px;
	}
}
@media (max-width: 1270px) {
	.noticias .articleDiv {
		width:45%;
		min-height:400px;
		max-height:400px;
	}
	.soporte .articleDiv {
		width:45%;
		min-width:45%;
		max-width:45%;
		min-height:250px;
		max-height:250px;
	}
	.comunicados .articleDiv {
		width:45%;
	}
	.resultados .card {
		width: calc(100% - 140px);
		height: 660px;
		padding: 20px 70px;
	}
}
@media (max-width: 1000px) {
	.reportes table h4 {
		font-size:12px;
	}
	.reportes table p {
		font-size:10px;
	}
	.resultados .outer-form .axis-x p {
		font-size:10px;
	}
	.catorcenasInnerView {
		margin:11px;
	}
	.catorcenas #cat_title {
		font-size: 24px;
	}
	.catorcenas #cat_entrega {
		font-size: 14px;
	}
	.catorcenas .outer-form .catorcena-table p{
		font-size: 12px;
	}
	.catorcenas .outer-form .catorcena-table .cat{
		margin-top: 3px;
	}
	.catorcenas .outer-form .catorcena-table .monthNumber{
		font-size: 14px;
	}
	.breadcrumbs {
		font-size: 17.5px;
	}
	.list_col2 {
		padding-left:20px;
	}
	.list_title {
		font-size: 12px;
	}
	.list_subtitle {
		font-size: 9.5px;
	}
	.list_description {
		font-size: 10.5px;
	}
	.big-title {
		font-size: 35px;
	}
	.big-title2 {
		font-size: 25px;
	}
	.list-group-item {
		padding:4px;
		height:190px;
	}
	.list-group-item h3 {
		font-size: 1.09em;
	}
	.list-group-item p, .list-group-item a {
		font-size: 14px;
	}
}
@media (max-width: 815px) {
	.noticias .articleDiv {
		width:96%;
		min-height:350px;
		max-height:350px;
	}
	.soporte .articleDiv {
		width:96%;
		min-width:96%;
		max-width:96%;
		min-height:250px;
		max-height:250px;
	}
	.comunicados .articleDiv {
		width:96%;
	}
	.renders .articleDiv {
		width:96%;
	}
    .lugares .articleDiv {
		width:96%;
	}
}
@media (max-width: 750px) {
	.resultados .card {
		width: calc(100% - 120px);
		height: 660px;
		padding: 20px 60px;
	}
	.reportes table h4 {
		font-size:10px;
	}
	.reportes table p {
		font-size:7.5px;
	}
	.resultados .outer-form .axis-x p {
		font-size:7.5px;
	}
	#catorcenasView {
		width:100%;
	}
	.catorcenasInnerView {
		margin:9px;
		width:calc(50% - 18px);
	}
	.catorcenas #cat_title {
		font-size: 22px;
	}
	.catorcenas #cat_entrega {
		font-size: 13px;
	}
	.catorcenas .outer-form .catorcena-table p{
		font-size: 11px;
	}
	.catorcenas .outer-form .catorcena-table .cat{
		margin-top: 2px;
	}
	.catorcenas .outer-form .catorcena-table .monthNumber{
		font-size: 13px;
	}
	.breadcrumbs {
		font-size: 15px;
	}
	.list_col2 {
		padding-left:10px;
	}
	.list_title {
		font-size: 11.5px;
	}
	.list_subtitle {
		font-size: 9px;
	}
	.list_description {
		font-size: 10px;
	}
	.big-title {
		font-size: 30px;
	}
	.big-title2 {
		font-size: 20px;
	}
	.list-group-item {
		padding:3.5px;
		width:calc(100% - 7px);
		height:auto;
	}
	.list-group-item h3 {
		font-size: 1.05em;
	}
	.list-group-item p, .list-group-item a {
		font-size: 13px;
	}
}
@media (max-width: 740px) {
	.resultados .card {
		width: calc(100% - 100px);
		height: 660px;
		padding: 20px 50px;
	}
}
@media (max-width: 700px) {
	.resultados .card {
		width: calc(100% - 80px);
		height: 660px;
		padding: 20px 40px;
	}
}
@media (max-width: 648px) {
	.resultados .card {
		width: calc(100% - 80px);
		height: 1010px;
		padding: 20px 40px;
	}
}
@media (max-width: 500px) {
	.resultados .card {
		width: calc(100% - 60px);
		height: 1010px;
		padding: 20px 30px;
	}
	.reportes table h4 {
		font-size:8px;
	}
	.reportes table p {
		font-size:6.5px;
	}
	.resultados .outer-form .axis-x p {
		font-size:6.5px;
	}
	.catorcenasInnerView {
		margin:7px;
		width:calc(100% - 7px);
	}
	.catorcenas #cat_title {
		font-size: 20px;
	}
	.catorcenas #cat_entrega {
		font-size: 12px;
	}
	.catorcenas .outer-form .catorcena-table p{
		font-size: 10px;
	}
	.catorcenas .outer-form .catorcena-table .cat{
		margin-top: 1px;
	}
	.catorcenas .outer-form .catorcena-table .monthNumber{
		font-size: 12px;
	}
	.breadcrumbs {
		font-size: 12.5px;
	}
	.list_col2 {
		padding-left:5px;
	}
	.list_title {
		font-size: 11px;
	}
	.list_subtitle {
		font-size: 8.5px;
	}
	.list_description {
		font-size: 9.5px;
	}
	.big-title {
		font-size: 25px;
	}
	.big-title2 {
		font-size: 15px;
	}
	.list-group-item {
		padding:3px;
	}
	.list-group-item h3 {
		font-size: 1.01em;
	}
	.list-group-item p, .list-group-item a {
		font-size: 12px;
	}
}

/* ENDS MOBILE SIZES */

::-webkit-input-placeholder {
	font-style: italic;
	color:#b5b5b5;
}
::-moz-placeholder {
	font-style: italic;
	color:#b5b5b5;
}
:-moz-placeholder {
	font-style: italic;
	color:#b5b5b5;
}
:-ms-input-placeholder {
	font-style: italic;
	color:#b5b5b5;
}