/*==============================================
=               Aspectos Generales             =
===============================================*/
*, *:before, *:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

html {
  height: 100%;
  font-size: 62.5%;
}

html body {
  height: 100%;
  font-size: 10px;
  font-family: "rubik-lt", sans-serif;
}

html body p, html body li, html body a {
  font-size: 1.6rem;
}

html body p:not(:last-child) {
  margin-bottom: 1.9rem;
}

html body h1, html body h2, html body h3, html body h4, html body h5, html body h6 {
  margin: 0;
}

html body .titulo {
  font: 2.2rem "rubik-md", sans-serif;
  color: #004ca6;
  margin-bottom: 1.9rem;
}

html body .titulo-ejecucion {
  width: 740px;
}

html body .centrado {
  text-align: center;
}

html body .bold {
  font-family: "rubik-md", sans-serif;
}

html body .resaltado {
  background-color: #f1f192;
}

html body .rojo {
  color: red;
}

html body figure img, html body div img {
  width: 100%;
  display: block;
}

html body .wrapper {
  width: 83.3333333%;
  max-width: 1500px;
}

html body .wrapper-large {
  width: calc(100% - 2rem*2);
}

html body .wrapper, html body .wrapper-large {
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  html body .wrapper, html body .wrapper-large {
    width: 96%;
  }
}

html body input, html body select, html body textarea {
  font-size: 1.6rem;
  padding: 1rem;
}

html body input:focus, html body select:focus, html body textarea:focus {
  border: none;
  outline: none;
}

html body select {
  background-color: #ffff;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border: 1px solid #aaa;
  cursor: pointer;
}

html body input {
  margin-bottom: 2rem;
  border: none;
}

html body input[type=submit] {
  margin-bottom: 0;
  cursor: pointer;
}

html body .oculto {
  display: none;
}

html body .modal, html body .modal-login, html body .modal-large {
  background-color: #fff;
  padding: 2rem;
  -webkit-box-shadow: 0 0 4px #000;
  box-shadow: 0 0 4px #000;
}

html body .modal, html body .modal-large {
  border-radius: 0 0 20px 20px;
}

html body .modal-login {
  border-radius: 8px;
}

html body .cta {
  color: #fff;
  border: none;
  background-color: #004ca6;
  padding: 11px 22px;
  border-radius: 24px;
  font: 1.7rem "rubik-md", sans-serif;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}

html body .cta:hover {
  background-color: #0063d9;
}

html body .cta .icon {
  position: relative;
}

html body .cta .icon {
  top: 3px;
  margin-right: 0.66667rem;
}

html body .main, html body .main-ejecucion {
  padding: 2rem 0;
  overflow: auto;
}

html body .main-ejecucion {
  height: calc(100% - 54.5px);
}

html body .main {
  height: calc(100% - 251px);
}

@media only screen and (max-width: 1280px) {
  html body .main {
    height: calc(100% - 211px);
  }
}

@media only screen and (max-width: 1024px) {
  html body .main {
    height: calc(100% - 54px);
  }
}

html body .error {
  width: 75%;
  margin: 0 auto 2rem;
  background-color: #a00b0b;
  color: #fff;
  padding: 15px;
  text-align: left;
  font-style: italic;
  border-radius: 23px;
}

@media only screen and (max-width: 480px) {
  html body .error {
    width: 100%;
  }
}

html body .error li {
  list-style: square;
  margin-left: 10px;
  font-size: 1.2rem;
}

html body .error-large {
  width: 100%;
  margin: 1rem 0;
  padding: 15px 20px;
  display: block;
}

html body .error-flotante {
  margin: 0 auto 2rem;
  background-color: #a00b0b;
  text-align: left;
}

@media only screen and (max-width: 480px) {
  html body .error-flotante {
    width: 100%;
  }
}

html body .error-flotante li {
  list-style: square;
  margin-left: 10px;
}

html body .success-flotante {
  background-color: #4caf50;
}

html body .success-flotante p {
  margin-bottom: 0;
}

html body .error-flotante, html body .success-flotante {
  position: absolute;
  top: 65px;
  right: 5%;
  width: 450px;
  color: #fff;
  font-size: 1.2rem;
  padding: 15px;
  font-style: italic;
  border-radius: 23px;
  opacity: 0.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

html body .error-flotante .fas, html body .success-flotante .fas {
  cursor: pointer;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.35);
}

html body .loader {
  margin: auto;
  display: none;
  border: 5px solid #ccc;
  border-top: 5px solid #0097dd;
  border-bottom: 5px solid #0097dd;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 0.3s linear infinite;
  animation: spin 0.3s linear infinite;
}

html body .loader.active {
  display: block;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

html body .rowlink {
  color: #000;
}

html body .rowlink:hover {
  color: #0097dd;
}

@media only screen and (max-width: 1024px) {
  html body .rowlink {
    color: #0097dd;
    text-decoration: underline;
  }
}

html body .tooltipster-content {
  font: 1.2rem "rubik-lt", sans-serif;
}

html body .bg-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 600;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: none;
}

html body .bg-modal .modal {
  width: 700px;
}

html body .bg-modal .modal-large {
  width: 900px;
}

@media only screen and (max-width: 1024px) {
  html body .bg-modal .modal-large {
    width: 85%;
  }
}

html body .bg-modal .modal, html body .bg-modal .modal-large {
  position: relative;
  margin: 0 auto;
  top: 0;
  display: none;
}

html body .bg-modal .modal .titulo, html body .bg-modal .modal-large .titulo {
  text-align: center;
}

html body .bg-modal .modal .modal-form h3, html body .bg-modal .modal-large .modal-form h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

html body .bg-modal .modal .modal-form input, html body .bg-modal .modal .modal-form textarea, html body .bg-modal .modal-large .modal-form input, html body .bg-modal .modal-large .modal-form textarea {
  border: 1px solid #aaa;
}

html body .bg-modal .modal .modal-form textarea, html body .bg-modal .modal-large .modal-form textarea {
  margin-top: 2rem;
  resize: none;
}

html body .bg-modal .modal .modal-form .inputs, html body .bg-modal .modal-large .modal-form .inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

html body .bg-modal .modal .modal-form .inputs .fa-plus-circle, html body .bg-modal .modal .modal-form .inputs .fa-minus-circle, html body .bg-modal .modal-large .modal-form .inputs .fa-plus-circle, html body .bg-modal .modal-large .modal-form .inputs .fa-minus-circle {
  position: relative;
  font-size: 2rem;
  color: #444;
  cursor: pointer;
  top: 10px;
  display: inline-block;
  height: 20px;
}

html body .bg-modal .modal-borrar {
  width: 550px;
}

html body .bg-modal .modal-borrar .buttons {
  margin-top: 2rem;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

html body .bg-modal .hoja {
  background-color: #fff;
  padding: 4rem 8rem;
  position: relative;
  width: 800px;
  max-height: 90%;
  margin: 0 auto;
  top: 27px;
  background-image: url(../img/papersheet.jpg);
  background-repeat: no-repeat;
  background-position: right bottom;
}

html body .bg-modal .hoja .datos {
  position: relative;
  margin-top: 0;
}

html body .bg-modal .hoja .datos .titulo {
  text-align: center;
}

html body .bg-modal .hoja .datos h3 {
  margin-bottom: 0;
  margin-top: 2rem;
}

html body .bg-modal .hoja .datos-usuarios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 0;
}

html body .bg-modal .hoja .datos-usuarios .datos-texto {
  width: calc(100% - (250px + 2rem));
}

html body .bg-modal .hoja .datos-usuarios .datos-texto span {
  width: 120px;
  display: inline-block;
}

html body .bg-modal .hoja .datos-usuarios .datos-texto a {
  color: #000;
}

html body .bg-modal .hoja .datos-usuarios .datos-texto a:hover {
  color: #004ca6;
}

html body .bg-modal .hoja .clip {
  position: absolute;
  width: 30px;
  top: -4px;
  left: 2rem;
  z-index: 600;
}

html body .bg-modal .hoja .close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

html body .bg-modal .hoja .close-btn .uno, html body .bg-modal .hoja .close-btn .dos {
  width: 100%;
  height: 4px;
  background-color: #888;
}

html body .bg-modal .hoja .close-btn .uno {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  -ms-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
}

html body .bg-modal .hoja .close-btn .dos {
  -webkit-transform: rotate(-45deg) translate(-2px, 2px);
  -ms-transform: rotate(-45deg) translate(-2px, 2px);
  transform: rotate(-45deg) translate(-2px, 2px);
}

@-webkit-keyframes dearriba {
  0% {
    top: -75%;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes dearriba {
  0% {
    top: -75%;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@-webkit-keyframes deabajo {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -75%;
    opacity: 0;
  }
}

@keyframes deabajo {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -75%;
    opacity: 0;
  }
}

html body .bg-modal .bajan {
  -webkit-animation: dearriba 1s;
  animation: dearriba 1s;
}

html body .bg-modal .suben {
  -webkit-animation: deabajo 1s;
  animation: deabajo 1s;
}

@-webkit-keyframes deabajoinfo {
  0% {
    top: 100%;
    opacity: 0;
  }
  100% {
    top: 27px;
    opacity: 1;
  }
}

@keyframes deabajoinfo {
  0% {
    top: 100%;
    opacity: 0;
  }
  100% {
    top: 27px;
    opacity: 1;
  }
}

@-webkit-keyframes dearribainfo {
  0% {
    top: 27px;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes dearribainfo {
  0% {
    top: 27px;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

html body .bg-modal .suben-info {
  -webkit-animation: deabajoinfo 1s;
  animation: deabajoinfo 1s;
}

html body .bg-modal .bajan-info {
  -webkit-animation: dearribainfo 1s;
  animation: dearribainfo 1s;
}

html body .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

html body .buttons .cta {
  margin-bottom: 0;
  margin-left: 1rem;
  cursor: pointer;
}

html body .buttons .reset {
  color: #fff;
  border: none;
  background-color: #888;
  padding: 11px 22px;
  border-radius: 24px;
  font: 1.7rem "rubik-md", sans-serif;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}

html body .buttons .reset:hover {
  background-color: #a2a2a2;
}

@media only screen and (max-width: 480px) {
  html body .no-mb {
    display: none;
  }
}

@media only screen and (max-width: 700px) {
  html body .no-mb-ls {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  html body .si-mb {
    display: block;
  }
}

@media only screen and (max-width: 1024px) {
  html body .no-tb {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  html body .si-tb {
    display: block;
  }
}

@media only screen and (max-width: 1280px) {
  html body .no-dt {
    display: none;
  }
}

html body .text-tag {
  margin-left: 0.66667rem;
}

@media only screen and (max-width: 700px) {
  html body .text-tag {
    display: none;
  }
}

html body .control-reporte {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

html body .btn-reporte {
  color: #fff;
  border: none;
  background-color: #0097dd;
  padding: 11px 22px;
  border-radius: 24px;
  font: 1.7rem "rubik-md", sans-serif;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}

html body .btn-reporte:hover {
  background-color: #11b4ff;
}

@media only screen and (max-width: 1024px) {
  html body .btn-reporte {
    margin-bottom: 1rem;
  }
}

html body .btn-reporte .fas {
  margin-right: 0;
  font-size: 2.2rem;
}

html body .nav-codigo {
  color: #004ca6;
}

html body .nav-codigo .fas {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

html body .nav-codigo:hover .fas {
  -webkit-transform: scale(1.4) !important;
  -ms-transform: scale(1.4) !important;
  transform: scale(1.4) !important;
}

html body .nav-left, html body .nav-left-gray {
  margin-right: 2rem;
  font-size: 2.2rem;
}

html body .nav-right, html body .nav-right-gray {
  margin-left: 2rem;
  font-size: 2.2rem;
}

html body .nav-left-gray, html body .nav-right-gray {
  color: #ccc;
}

html body .galeria-doc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

html body .galeria-doc li {
  width: 100px;
  margin: 1rem 2rem 1rem 0;
}

/*=======  Fin de Aspectos Generales  ========*/
/*==============================================
=                      Header                   =
===============================================*/
.preheader {
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 54.5px;
  position: relative;
  z-index: 500;
}

.preheader .bt-menu {
  width: 30px;
  margin-left: 2rem;
  cursor: pointer;
}

.preheader .bt-menu .uno, .preheader .bt-menu .dos, .preheader .bt-menu .tres {
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.preheader .bt-menu .dos {
  margin: 6px 0;
}

.preheader .bt-menu2 .dos {
  opacity: 0;
}

.preheader .bt-menu2 .uno {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  -ms-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
}

.preheader .bt-menu2 .tres {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
  -ms-transform: rotate(-45deg) translate(6px, -6px);
  transform: rotate(-45deg) translate(6px, -6px);
}

.preheader .barra-usuario .menu-usuario {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.preheader .barra-usuario .menu-usuario #tooltip-switch .icon {
  margin-right: 0;
  color: #0097dd;
}

.preheader .barra-usuario .menu-usuario #tooltip-switch .icon-off {
  color: #888;
}

.preheader .barra-usuario .menu-usuario .datos-usuario {
  padding: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.preheader .barra-usuario .menu-usuario .user-pic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

@media only screen and (max-width: 480px) {
  .preheader .barra-usuario .menu-usuario .user-pic {
    margin-right: 0;
  }
}

.preheader .barra-usuario .menu-usuario a, .preheader .barra-usuario .menu-usuario p {
  color: #fff;
  font-size: 1.4rem;
  line-height: 54.5px;
}

.preheader .barra-usuario .menu-usuario a {
  padding: 0 2rem;
  display: block;
}

.preheader .barra-usuario .menu-usuario a .icon {
  font-size: 2rem;
  margin-right: 10px;
  position: relative;
  top: 3px;
}

.preheader .barra-usuario .menu-usuario a:hover {
  background-color: #333333;
}

@media only screen and (max-width: 700px) {
  .preheader .barra-usuario .menu-usuario .topmenu {
    display: none;
  }
}

.main-menu {
  position: fixed;
  z-index: 500;
  background-color: rgba(0, 0, 0, 0.92);
  width: 300px;
  height: calc(100% - 54px);
  top: 54px;
  left: -300px;
}

.menu, .submenu {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.menu .raya-gruesa, .submenu .raya-gruesa {
  border-top: 3px solid rgba(255, 255, 255, 0.3);
}

.menu li, .submenu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.menu li a, .submenu li a {
  color: #fff;
  font-size: 1.4rem;
  padding: 10px 20px !important;
  display: block;
  line-height: 24.5px !important;
}

.menu li a .icon, .submenu li a .icon {
  font-size: 2rem;
  margin-right: 12px;
  position: relative;
  top: 4px;
}

.menu li a:hover, .submenu li a:hover {
  background-color: #333333;
}

.selected {
  background-color: #333333;
}

.topmenu {
  position: relative;
}

.topmenu .submenu {
  position: absolute;
  width: 130%;
  top: 54px;
  background-color: rgba(0, 0, 0, 0.92);
  display: none;
}

.banner-header {
  height: 140px;
  background-image: url(../img/header-banner.jpg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 1280px) {
  .banner-header {
    height: 100px;
  }
}

.banner-header .titulo {
  color: #fff;
  margin-right: 4rem;
  margin-bottom: 0;
  text-shadow: 1px 1px 4px #000;
}

@media only screen and (max-width: 1024px) {
  .banner-header .titulo {
    font-size: 1.9rem;
  }
}

/*=============  Fin de Header  ==============*/
/*==============================================
=                   Principal                  =
===============================================*/
.login-section {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url(../img/login-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.login-section .login-png {
  position: absolute;
}

.login-section .login-url {
  width: 300px;
  top: 4rem;
  right: 8rem;
}

@media only screen and (max-width: 480px) {
  .login-section .login-url {
    width: 80%;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }
}

.login-section .login-modal {
  position: relative;
  text-align: center;
  width: 430px;
  z-index: 20;
}

@media only screen and (max-width: 1024px) {
  .login-section .login-modal {
    width: 350px;
  }
}

@media only screen and (max-width: 480px) {
  .login-section .login-modal {
    width: 80%;
  }
}

.login-section .login-modal .titulo {
  font-size: 2.6rem;
}

@media only screen and (max-width: 1024px) {
  .login-section .login-modal .titulo {
    font-size: 2rem;
  }
}

.login-section .login-modal .inputs {
  position: relative;
  width: 75%;
  margin: 0 auto;
}

@media only screen and (max-width: 480px) {
  .login-section .login-modal .inputs {
    width: 100%;
  }
}

.login-section .login-modal .inputs label {
  position: absolute;
  top: 10px;
  left: 10px;
}

.login-section .login-modal .inputs label .icon {
  font-size: 2rem;
  color: #888;
}

.login-section .login-modal .inputs input {
  width: 100%;
  padding-left: 3.6rem;
  border: 1px solid #aaa;
}

.login-section .login-modal .cta {
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  .login-section .login-modal .cta {
    width: 75%;
  }
}

@media only screen and (max-width: 480px) {
  .login-section .login-modal .cta {
    width: 100%;
  }
}

.login-section .login-logo {
  width: 500px;
  bottom: 4rem;
  right: 8rem;
}

@media only screen and (max-width: 480px) {
  .login-section .login-logo {
    width: 80%;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }
}

.main-portal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-portal .titulo {
  font-size: 2.6rem;
  text-align: center;
  color: #000;
}

.main-portal .menu-portal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 480px) {
  .main-portal .menu-portal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.main-portal .menu-portal li {
  margin: 0 2rem;
}

@media only screen and (max-width: 480px) {
  .main-portal .menu-portal li {
    margin: 0;
    margin-bottom: 1rem;
  }
}

.main-portal .menu-portal li:last-child {
  margin-bottom: 0;
}

.main-portal .menu-portal .no-content {
  display: none;
}

@media only screen and (max-width: 700px) {
  .main-portal .menu-portal .no-content {
    display: block;
    text-align: center;
    padding: 0 2rem;
  }
}

.main-portal .menu-portal .modulo-tag {
  position: relative;
  text-align: center;
  margin: 8px 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  top: -30%;
}

@media only screen and (max-width: 480px) {
  .main-portal .menu-portal .modulo-tag {
    display: none;
  }
}

.main-portal .menu-portal a {
  font-size: 5rem;
  color: #fff;
  background-color: #ff0a8e;
  width: 10rem;
  height: 10rem;
  display: block;
  text-align: center;
  line-height: 10rem;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 20;
}

.main-portal .menu-portal a:hover {
  background-color: #ff3da6;
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

.main-portal .menu-portal a:hover ~ p {
  opacity: 1;
  top: 0;
}

@media only screen and (max-width: 480px) {
  .main-portal .menu-portal a {
    font-size: 3.5rem;
    width: 7rem;
    height: 7rem;
    line-height: 7rem;
  }
}

.main-portal .menu-portal a .icon {
  position: relative;
  top: 7px;
}

@media only screen and (max-width: 480px) {
  .main-portal .menu-portal a .icon {
    top: 5px;
  }
}

.finder-bar, .nofinder-bar {
  background-color: #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 2rem;
}

.finder-bar form, .nofinder-bar form {
  width: 45%;
}

.finder-bar .inputs, .nofinder-bar .inputs {
  position: relative;
}

.finder-bar label, .nofinder-bar label {
  position: absolute;
  font-size: 2.2rem;
  line-height: 38px;
  top: 3px;
  left: 12px;
  color: #aaa;
}

.finder-bar input, .nofinder-bar input {
  width: 100%;
  margin-bottom: 0;
  padding-left: 4rem;
  border-radius: 19px;
  -webkit-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.35) inset;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.35) inset;
}

.finder-bar h1, .finder-bar p, .finder-bar a, .nofinder-bar h1, .nofinder-bar p, .nofinder-bar a {
  margin-bottom: 0 !important;
}

.finder-bar h1 .icon, .finder-bar h1 .fas, .finder-bar p .icon, .finder-bar p .fas, .finder-bar a .icon, .finder-bar a .fas, .nofinder-bar h1 .icon, .nofinder-bar h1 .fas, .nofinder-bar p .icon, .nofinder-bar p .fas, .nofinder-bar a .icon, .nofinder-bar a .fas {
  margin-right: 1rem;
  position: relative;
  top: 3px;
}

.finder-bar h1 .fas, .finder-bar p .fas, .finder-bar a .fas, .nofinder-bar h1 .fas, .nofinder-bar p .fas, .nofinder-bar a .fas {
  top: 0;
}

.nofinder-bar {
  margin: 2rem 0;
}

.analisis-bar {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.analisis-bar a {
  margin-left: 2rem;
}

.barra-ejecucion {
  position: relative;
}

.barra-ejecucion .icon-flask {
  position: absolute !important;
  top: 50% !important;
  -webkit-transform: translateY(-14px);
  -ms-transform: translateY(-14px);
  transform: translateY(-14px);
  left: 2rem;
}

.barra-ejecucion .titulo {
  margin: 0 2rem 0 3.2rem;
}

.numero-filas {
  margin-top: 1rem;
}

.numero-filas label {
  font-size: 1.6rem;
  margin-left: 1rem;
}

.numero-filas select {
  text-align: center;
}

.main-table {
  width: 100%;
  font-size: 1.6rem;
  margin-top: 1rem;
  padding-bottom: 4rem;
}

.main-table th {
  color: #fff;
  font-size: 1.5rem;
}

@media only screen and (max-width: 700px) {
  .main-table th {
    font-size: 1.3rem;
  }
}

.main-table th, .main-table td {
  padding: 1.33333rem;
}

@media only screen and (max-width: 480px) {
  .main-table th, .main-table td {
    padding: 1.33333rem 4px;
  }
}

.main-table tr {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-table tr:first-child {
  background-color: #0097dd;
}

.main-table tr:hover {
  background-color: #ddd;
}

.main-table tr:first-child:hover {
  background-color: #0097dd;
}

.main-table td {
  border-bottom: 2px solid #ccc;
}

.main-table td .list-action {
  color: #777;
  font-size: 1.8rem;
  border: 1px solid #777;
  width: 3rem;
  height: 3rem;
  display: inline-block;
  line-height: 3rem;
  text-align: center;
  border-radius: 50%;
  margin: 0 3px;
}

.main-table td .list-action:hover {
  background-color: #ff0a8e;
  border: 1px solid #ff0a8e;
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  .main-table td .list-action {
    background-color: #ff0a8e;
    border: 1px solid #ff0a8e;
    color: #fff;
  }
}

.main-table td .list-action .icon {
  position: relative;
  top: 2px;
}

.main-table td .list-action .icon-ahead {
  top: 3px;
}

@media only screen and (max-width: 1024px) {
  .main-table td .list-action-celeste {
    background-color: #0097dd;
    border: 1px solid #0097dd;
    color: #fff;
  }
}

.main-table td .list-action-celeste:hover {
  background-color: #0097dd;
  border: 1px solid #0097dd;
}

@media only screen and (max-width: 1024px) {
  .main-table td .list-action-ambar {
    background-color: #e0b833;
    border: 1px solid #e0b833;
    color: #fff;
  }
}

.main-table td .list-action-ambar:hover {
  background-color: #e0b833;
  border: 1px solid #e0b833;
}

.main-table .punto-default {
  color: #bbbbbb;
}

.main-table .punto-iniciado {
  color: #e0b833;
}

.main-table .punto-finalizado {
  color: #0097dd;
}

.datos {
  margin-top: 2rem;
}

.datos .dato-tag {
  font-family: "rubik-md", sans-serif;
  width: 130px;
  display: inline-block;
}

.datos h3 {
  font-family: "rubik-md", sans-serif;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.datos p {
  margin-bottom: 0 !important;
}

.datos .articulos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 700px) {
  .datos .articulos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.datos .articulos article {
  width: calc(33.3333333% - 2rem);
}

@media only screen and (max-width: 700px) {
  .datos .articulos article {
    width: 100%;
  }
}

.datos .articulos article .img-form, .datos .articulos article .doc-form {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media only screen and (max-width: 700px) {
  .datos .articulos article .img-form, .datos .articulos article .doc-form {
    display: none;
  }
}

.datos .articulos article .img-form label, .datos .articulos article .doc-form label {
  font: 1.6rem "rubik-md", sans-serif;
  width: 100%;
}

.datos .articulos article .img-form input, .datos .articulos article .doc-form input {
  border: 1px solid #aaa;
  margin-top: 1rem;
  margin-bottom: 0;
}

.datos .articulos article .img-form input[type="submit"], .datos .articulos article .doc-form input[type="submit"] {
  display: inline-block;
}

.datos .articulos .articulo40 {
  width: calc(40% - 2rem);
}

.datos .articulos .img-doc {
  width: calc(66.6666667% - 2rem);
}

@media only screen and (max-width: 700px) {
  .datos .articulos .img-doc {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.datos .articulos .img-doc2 {
  width: calc(60% - 2rem);
}

.datos .articulos .carta-garantia .cta {
  margin-top: 1rem;
}

@media only screen and (max-width: 700px) {
  .datos .datosfila2 article {
    margin-bottom: 2rem;
  }
}

.datos .datosfila2 .articulo-frasco .frasco {
  width: 100px;
  height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.datos .datosfila2 .articulo-frasco .frasco .tapa {
  width: 80%;
  height: 20px;
  background-color: #bbb;
  border-radius: 6px;
}

.datos .datosfila2 .articulo-frasco .frasco .cuerpo {
  width: 100%;
  height: calc(100% - 20px);
  background-color: #dcdcdc;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  overflow: hidden;
}

.datos .datosfila2 .articulo-frasco .frasco .cuerpo .contenido {
  width: 100%;
  background-color: #898;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.datos .datosfila2 .articulo-frasco .frasco .cuerpo .contenido p {
  color: #fff;
  font: 1.5rem arial;
  font-weight: bold;
}

@media only screen and (max-width: 700px) {
  .datos .datosfilaz {
    margin-bottom: 2rem;
  }
}

.datos .datos-reactivo {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.form-table {
  padding-bottom: 0;
}

.form-table td {
  padding: 1rem 0;
}

.form-table input {
  width: auto;
  margin-bottom: 0 !important;
  text-align: center;
  padding: 0;
  background-color: transparent;
}

.tubo-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.tubo-form fieldset {
  width: calc(25% - 2rem*2);
  margin: 2rem 0;
  text-align: center;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tubo-form fieldset legend {
  font: 1.6rem "rubik-md", sans-serif;
}

.tubo-form fieldset .grande {
  font-size: 1.9rem;
}

.tubo-form fieldset p {
  margin-bottom: 0.5rem !important;
}

.tubo-form fieldset input {
  margin-bottom: 0;
  border: 1px solid #aaa;
  width: 100px;
  text-align: center;
}

.tubo-form .buttons {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 2rem;
}

.tbody-ejecucion td {
  padding: 5px;
}

.tbody-ejecucion td p {
  margin-bottom: 0 !important;
  text-align: center;
}

.tbody-ejecucion td p:first-child, .tbody-ejecucion td p:last-child {
  font-family: "rubik-md", sans-serif;
}

.tbody-ejecucion td:last-child {
  border-bottom: none;
}

.tabs {
  text-align: center;
  border-bottom: 12px solid #0097dd;
  margin-top: 1rem;
}

.tabs a {
  padding: 0.66667rem 1.33333rem;
  background-color: #0097dd;
  color: #fff;
  display: inline-block;
  border-bottom: 3px solid #fff;
  border-radius: 8px 8px 0 0;
}

.tabs a .fas {
  font-size: 2.4rem;
  position: relative;
}

.tabs a:hover {
  border-bottom: 3px solid #0097dd;
}

.tabs .tab-selected {
  border-bottom: 3px solid #0097dd;
}

.reportes div {
  display: none;
}

/*===========  Fin de Principal  ============*/
/*==============================================
=                      Footer                   =
===============================================*/
footer {
  background-color: #000;
  padding: 2rem 0;
}

footer p {
  color: #b3b3b3;
  font-size: 1.4rem !important;
  text-align: right;
}

/*=============  Fin de Footer  ==============*/
