@charset "UTF-8";
.conteiner-fluid {
  background: #0d171d;
  font-family: "ubuntu", sans-serif;
  position: relative;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#header-app {
  height: 80px;
  background: tomato;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#header-app #logo {
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 24px;
  line-height: 40px;
}
@media (min-width: 768px) {
  #header-app #logo {
    width: 250px;
  }
}
#header-app #menu-app {
  width: 100%;
}
#header-app #menu-app > ul {
  height: 40px;
  list-style-type: none;
  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;
}
#header-app #menu-app > ul > li {
  cursor: pointer;
  text-align: center;
  min-width: 40px;
}
#header-app #menu-app > ul > li * {
  cursor: pointer;
}
#header-app #menu-app > ul > li:hover, #header-app #menu-app > ul > li:active, #header-app #menu-app > ul > li:focus, #header-app #menu-app > ul > li.active {
  background: rgba(255, 255, 255, 0.08);
}
#header-app #menu-app > ul > li > a, #header-app #menu-app > ul > li span {
  height: 40px;
  line-height: 40px;
  color: white;
  text-decoration: none;
}
#header-app #menu-app > ul > li#btn-menu-primary {
  padding: 0px 10px;
  position: relative;
}
#header-app #menu-app > ul > li#btn-menu-primary > a :nth-child(1) {
  padding-right: 5px;
}
#header-app #menu-app > ul > li#btn-menu-primary > ul {
  top: 40px;
  background: tomato;
  border-radius: 0px 0px 0px 3px;
  -webkit-box-shadow: -2px 2px 2px 1px rgba(255, 255, 255, 0.4);
          box-shadow: -2px 2px 2px 1px rgba(255, 255, 255, 0.4);
  list-style-type: none;
  overflow: hidden;
  position: absolute;
  width: 200px;
  right: 0;
  z-index: 20;
}
#header-app #menu-app > ul > li#btn-menu-primary > ul li {
  background: none;
  text-align: left;
  margin-bottom: 1px;
  padding: 1px 0px;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#header-app #menu-app > ul > li#btn-menu-primary > ul li:hover, #header-app #menu-app > ul > li#btn-menu-primary > ul li:active, #header-app #menu-app > ul > li#btn-menu-primary > ul li:focus, #header-app #menu-app > ul > li#btn-menu-primary > ul li .active {
  background: rgba(255, 0, 0, 0.1);
}
#header-app #menu-app > ul > li#btn-menu-primary > ul li:hover:before, #header-app #menu-app > ul > li#btn-menu-primary > ul li:active:before, #header-app #menu-app > ul > li#btn-menu-primary > ul li:focus:before, #header-app #menu-app > ul > li#btn-menu-primary > ul li .active:before {
  background: rgba(255, 0, 0, 0.5);
  left: 0px;
}
#header-app #menu-app > ul > li#btn-menu-primary > ul li:hover a, #header-app #menu-app > ul > li#btn-menu-primary > ul li:active a, #header-app #menu-app > ul > li#btn-menu-primary > ul li:focus a, #header-app #menu-app > ul > li#btn-menu-primary > ul li .active a {
  padding-left: 15px;
}
#header-app #menu-app > ul > li#btn-menu-primary > ul li:before {
  content: "";
  background: rgba(255, 0, 0, 0.3);
  height: 100%;
  position: absolute;
  top: 0;
  left: -4px;
  width: 7px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#header-app #menu-app > ul > li#btn-menu-primary > ul li.separed {
  height: 2px;
  background: rgba(255, 0, 0, 0.35);
  padding: 0;
}
#header-app #menu-app > ul > li#btn-menu-primary > ul li.separed:before {
  background: rgba(255, 255, 255, 0.3);
  height: 1px;
  width: 100%;
  left: 0;
}
#header-app #menu-app > ul > li#btn-menu-primary > ul li a {
  border-box: box-sizing;
  width: 100%;
  display: inline-block;
  color: white;
  font-size: 18px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  #header-app #menu-app {
    width: calc(100% - 250px);
  }
}
@media (min-width: 768px) {
  #header-app {
    height: 40px;
  }
}
@media print {
  #header-app {
    display: none;
  }
}

.container-app {
  min-height: calc(100vh - 80px);
  position: relative;
}
@media print {
  .container-app {
    min-height: 1vh !important;
    height: auto !important;
  }
}
.container-app #menu-content {
  position: absolute;
  min-height: calc(100vh - 80px);
  background: #b23e46;
  background: -webkit-gradient(linear, left top, left bottom, from(#2b3e46), to(#0d171d));
  background: -o-linear-gradient(#2b3e46, #0d171d);
  background: linear-gradient(#2b3e46, #0d171d);
  width: 80%;
  overflow-x: hidden;
  z-index: 1;
}
.container-app #menu-content #info-user {
  padding: 15px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.container-app #menu-content #info-user .user-photo {
  -webkit-box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.5);
          box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  overflow: hidden;
  width: 50px;
  height: 50px;
}
.container-app #menu-content #info-user .user-data {
  width: 150px;
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
}
.container-app #menu-content #info-user .user-data span {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  display: block;
}
.container-app #menu-content #info-user .user-data span:last-child {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-size: 14px;
}
.container-app #menu-content #menu-admin {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.container-app #menu-content #menu-admin ul {
  padding-top: 10px;
}
.container-app #menu-content #menu-admin ul li {
  padding: 0 !important;
  cursor: pointer;
  position: relative;
  margin-bottom: 1px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.container-app #menu-content #menu-admin ul li:before {
  content: "";
  background: #4682B4;
  height: 100%;
  width: 10px;
  position: absolute;
  top: 0;
  left: -7px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.container-app #menu-content #menu-admin ul li a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  width: 100%;
  padding: 7px 10px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.container-app #menu-content #menu-admin ul li a span {
  font-size: 18px;
}
.container-app #menu-content #menu-admin ul li a span:nth-child(1) {
  padding-right: 10px;
}
@media (min-width: 768px) {
  .container-app #menu-content #menu-admin ul li a {
    padding: 10px 10px;
  }
}
.container-app #menu-content #menu-admin ul li:hover, .container-app #menu-content #menu-admin ul li:focus, .container-app #menu-content #menu-admin ul li:active, .container-app #menu-content #menu-admin ul li.active {
  background: rgba(0, 0, 0, 0.2);
}
.container-app #menu-content #menu-admin ul li:hover:before, .container-app #menu-content #menu-admin ul li:focus:before, .container-app #menu-content #menu-admin ul li:active:before, .container-app #menu-content #menu-admin ul li.active:before {
  left: -2px;
}
.container-app #menu-content #menu-admin ul li:hover a, .container-app #menu-content #menu-admin ul li:focus a, .container-app #menu-content #menu-admin ul li:active a, .container-app #menu-content #menu-admin ul li.active a {
  padding-left: 15px;
}
@media (min-width: 768px) {
  .container-app #menu-content {
    width: 250px;
    min-height: calc(100vh - 40px);
  }
}
@media print {
  .container-app #menu-content {
    display: none;
  }
}
.container-app #section-app {
  width: 100%;
  min-height: calc(100vh - 80px);
  width: 100%;
  padding: 10px 10px 0px 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: #E5E5E5;
}
@media print {
  .container-app #section-app {
    min-height: 1vh !important;
    height: auto !important;
  }
}
.container-app #section-app.active {
  margin-left: 250px;
  width: calc(100% - 250px);
}
.container-app #section-app .header-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.container-app #section-app .header-section * {
  color: rgba(0, 0, 0, 0.5);
}
.container-app #section-app .header-section h3 {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px 0 0 4px;
  padding: 1px 8px;
  width: 50%;
}
@media (min-width: 768px) {
  .container-app #section-app .header-section h3 {
    background: none;
  }
}
.container-app #section-app .header-section .ruta {
  text-align: right;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0px 4px 4px 0px;
  padding: 2px 0px;
  width: 50%;
}
.container-app #section-app .header-section .ruta * {
  padding-right: 5px;
}
.container-app #section-app .header-section .ruta a {
  text-decoration: none;
}
@media (min-width: 768px) {
  .container-app #section-app .header-section .ruta {
    background: none;
  }
}
@media print {
  .container-app #section-app .header-section {
    display: none;
  }
}
.container-app #section-app .section-content {
  min-height: calc(100vh - 170px);
}
@media print {
  .container-app #section-app .section-content {
    min-height: 1vh !important;
    height: auto !important;
  }
}
@media print {
  .container-app #section-app .section-content .col-left {
    width: 100%;
  }
}
.container-app #section-app .section-content .col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.container-app #section-app .section-content .col-3 > section {
  width: calc(33.3% - 10px);
}
.container-app #section-app .section-content section {
  padding-bottom: 20px;
}
@media print {
  .container-app #section-app .section-content section {
    padding-bottom: 0;
  }
}
.container-app #section-app .section-content section.info > h2 {
  -webkit-box-shadow: 0px -7px 0px 1px steelblue, 0px 0px 0px 1px steelblue;
          box-shadow: 0px -7px 0px 1px steelblue, 0px 0px 0px 1px steelblue;
}
.container-app #section-app .section-content section.info > div, .container-app #section-app .section-content section.info > article {
  -webkit-box-shadow: 0px 1px 0px 1px steelblue;
          box-shadow: 0px 1px 0px 1px steelblue;
}
.container-app #section-app .section-content section.success > h2 {
  -webkit-box-shadow: 0px -7px 0px 1px #3DA33D, 0px 0px 0px 1px #3DA33D;
          box-shadow: 0px -7px 0px 1px #3DA33D, 0px 0px 0px 1px #3DA33D;
}
.container-app #section-app .section-content section.success > div, .container-app #section-app .section-content section.success > article {
  -webkit-box-shadow: 0px 1px 0px 1px #3DA33D;
          box-shadow: 0px 1px 0px 1px #3DA33D;
}
.container-app #section-app .section-content section.warning > h2 {
  -webkit-box-shadow: 0px -7px 0px 1px #F2AC2B, 0px 0px 0px 1px #F2AC2B;
          box-shadow: 0px -7px 0px 1px #F2AC2B, 0px 0px 0px 1px #F2AC2B;
}
.container-app #section-app .section-content section.warning > div, .container-app #section-app .section-content section.warning > article {
  -webkit-box-shadow: 0px 1px 0px 1px #F2AC2B;
          box-shadow: 0px 1px 0px 1px #F2AC2B;
}
.container-app #section-app .section-content section.danger > h2 {
  -webkit-box-shadow: 0px -7px 0px 1px #FD2A2A, 0px 0px 0px 1px #FD2A2A;
          box-shadow: 0px -7px 0px 1px #FD2A2A, 0px 0px 0px 1px #FD2A2A;
}
.container-app #section-app .section-content section.danger > div, .container-app #section-app .section-content section.danger > article {
  -webkit-box-shadow: 0px 1px 0px 1px #FD2A2A;
          box-shadow: 0px 1px 0px 1px #FD2A2A;
}
.container-app #section-app .section-content section.default > h2 {
  -webkit-box-shadow: 0px -7px 0px 1px #727272, 0px 0px 0px 1px #727272;
          box-shadow: 0px -7px 0px 1px #727272, 0px 0px 0px 1px #727272;
}
.container-app #section-app .section-content section.default > div, .container-app #section-app .section-content section.default > article {
  -webkit-box-shadow: 0px 1px 0px 1px #727272;
          box-shadow: 0px 1px 0px 1px #727272;
}
.container-app #section-app .section-content section.widgets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.container-app #section-app .section-content section.widgets a.widget {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
  color: white;
  height: 100px;
  width: 49%;
  text-decoration: none;
  position: relative;
}
.container-app #section-app .section-content section.widgets a.widget h3 {
  padding-left: 10px;
  padding-top: 10px;
  font-size: 24px;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.container-app #section-app .section-content section.widgets a.widget h4 {
  padding-left: 10px;
  font-size: 14px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.container-app #section-app .section-content section.widgets a.widget > span.fa, .container-app #section-app .section-content section.widgets a.widget > span.fas, .container-app #section-app .section-content section.widgets a.widget > span.fab {
  color: rgba(255, 255, 255, 0.5);
  font-size: 50px;
  position: absolute;
  top: 10px;
  right: 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.container-app #section-app .section-content section.widgets a.widget .more-info {
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}
.container-app #section-app .section-content section.widgets a.widget .more-info span {
  line-height: 30px;
  padding: 0px 10px;
  font-size: 12px;
}
.container-app #section-app .section-content section.widgets a.widget:hover h3, .container-app #section-app .section-content section.widgets a.widget:hover h4 {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.container-app #section-app .section-content section.widgets a.widget:hover > span.fa, .container-app #section-app .section-content section.widgets a.widget:hover > span.fas, .container-app #section-app .section-content section.widgets a.widget:hover > span.fab {
  color: rgba(255, 255, 255, 0.8);
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
@media (min-width: 480px) {
  .container-app #section-app .section-content section.widgets a.widget h3 {
    font-size: 36px;
  }
  .container-app #section-app .section-content section.widgets a.widget h4 {
    font-size: 16px;
  }
  .container-app #section-app .section-content section.widgets a.widget > span.fa, .container-app #section-app .section-content section.widgets a.widget > span.fas, .container-app #section-app .section-content section.widgets a.widget > span.fab {
    font-size: 82px;
    top: 10px;
    right: 40px;
  }
  .container-app #section-app .section-content section.widgets a.widget .more-info span {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .container-app #section-app .section-content section.widgets a.widget {
    margin-top: 0;
    width: 24%;
    height: 130px;
  }
}
.container-app #section-app .section-content section.widgets a.widget-2 {
  height: 100px;
  margin-top: 10px;
  width: 49%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.container-app #section-app .section-content section.widgets a.widget-2 .icon {
  background: none;
  width: 80px;
  height: 100%;
  float: left;
  text-align: center;
}
.container-app #section-app .section-content section.widgets a.widget-2 .icon span.fa, .container-app #section-app .section-content section.widgets a.widget-2 .icon span.fas, .container-app #section-app .section-content section.widgets a.widget-2 .icon span.fab {
  line-height: 100px;
  color: white;
  font-size: 54px;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .container-app #section-app .section-content section.widgets a.widget-2 .icon {
    width: 100px;
  }
  .container-app #section-app .section-content section.widgets a.widget-2 .icon span.fa, .container-app #section-app .section-content section.widgets a.widget-2 .icon span.fas, .container-app #section-app .section-content section.widgets a.widget-2 .icon span.fab {
    font-size: 68px;
    line-height: 120px;
  }
}
.container-app #section-app .section-content section.widgets a.widget-2 .content {
  background: white;
  width: calc(100% - 80px);
  padding-left: 5px;
  padding-top: 5px;
  height: 130px;
  border-radius: 0;
  float: left;
}
.container-app #section-app .section-content section.widgets a.widget-2 .content h3 {
  color: #333;
  font-weight: normal;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.container-app #section-app .section-content section.widgets a.widget-2 .content h4 {
  font-size: 14px;
  color: #9e9e9e;
  font-weight: normal;
}
@media (min-width: 480px) {
  .container-app #section-app .section-content section.widgets a.widget-2 .content {
    padding-left: 10px;
    padding-top: 10px;
  }
  .container-app #section-app .section-content section.widgets a.widget-2 .content h3 {
    font-size: 26px;
  }
  .container-app #section-app .section-content section.widgets a.widget-2 .content h4 {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .container-app #section-app .section-content section.widgets a.widget-2 .content {
    width: calc(100% - 100px);
  }
}
.container-app #section-app .section-content section.widgets a.widget-2:hover .icon span.fa, .container-app #section-app .section-content section.widgets a.widget-2:hover .icon span.fas, .container-app #section-app .section-content section.widgets a.widget-2:hover .icon span.fab {
  -webkit-animation: widget 0.5s;
          animation: widget 0.5s;
}
.container-app #section-app .section-content section.widgets a.widget-2:hover .content h3 {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
@-webkit-keyframes widget {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  50% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  80% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes widget {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  50% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  80% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media (min-width: 768px) {
  .container-app #section-app .section-content section.widgets a.widget-2 {
    width: 24%;
    height: 130px;
    margin-top: 0;
  }
}
.container-app #section-app .section-content section.widgets a.widget, .container-app #section-app .section-content section.widgets a.widget-2 {
  overflow: hidden;
  margin-right: 2%;
}
.container-app #section-app .section-content section.widgets a.widget:nth-child(2n), .container-app #section-app .section-content section.widgets a.widget-2:nth-child(2n) {
  margin-right: 0;
}
.container-app #section-app .section-content section.widgets a.widget.success, .container-app #section-app .section-content section.widgets a.widget-2.success {
  background: #3DA33D;
}
.container-app #section-app .section-content section.widgets a.widget.info, .container-app #section-app .section-content section.widgets a.widget-2.info {
  background: #4682B4;
}
.container-app #section-app .section-content section.widgets a.widget.warning, .container-app #section-app .section-content section.widgets a.widget-2.warning {
  background: #F2AC2B;
}
.container-app #section-app .section-content section.widgets a.widget.danger, .container-app #section-app .section-content section.widgets a.widget-2.danger {
  background: #FD2A2A;
}
@media (min-width: 768px) {
  .container-app #section-app .section-content section.widgets a.widget, .container-app #section-app .section-content section.widgets a.widget-2 {
    margin-right: 1.333%;
  }
  .container-app #section-app .section-content section.widgets a.widget:nth-child(2n), .container-app #section-app .section-content section.widgets a.widget-2:nth-child(2n) {
    margin-right: 1.333%;
  }
  .container-app #section-app .section-content section.widgets a.widget:nth-child(4n), .container-app #section-app .section-content section.widgets a.widget-2:nth-child(4n) {
    margin-right: 0;
  }
}
@media print {
  .container-app #section-app .section-content section.widgets {
    display: none;
  }
}
.container-app #section-app .section-content section.mi-perfil h2 {
  background: none;
  padding-bottom: 20px;
}
.container-app #section-app .section-content section.mi-perfil .info-primari {
  background: none;
  padding: 10px;
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.container-app #section-app .section-content section.mi-perfil .info-primari .mi-photo {
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 10px white, 2px 2px 5px 10px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 0 10px white, 2px 2px 5px 10px rgba(0, 0, 0, 0.8);
  height: 200px;
  overflow: hidden;
  width: 200px;
}
.container-app #section-app .section-content section.mi-perfil .info-primari .mi-photo img {
  height: 100%;
  width: 100%;
}
.container-app #section-app .section-content section.mi-perfil .info-primari .data {
  padding-top: 20px;
  padding-left: 50px;
  width: calc(100% - 250px);
}
.container-app #section-app .section-content section.mi-perfil .info-primari .data span {
  font-size: 28px;
  display: block;
}
.container-app #section-app .section-content section.mi-perfil .info-primari .data span.nivel {
  padding-top: 15px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 19px;
  font-style: italic;
}
.container-app #section-app .section-content section.mi-perfil .info-secundari {
  background: none;
  padding-left: 30px;
}
@media print {
  .container-app #section-app .section-content section.info > h2, .container-app #section-app .section-content section.info > div, .container-app #section-app .section-content section.info > article, .container-app #section-app .section-content section.success > h2, .container-app #section-app .section-content section.success > div, .container-app #section-app .section-content section.success > article, .container-app #section-app .section-content section.warning > h2, .container-app #section-app .section-content section.warning > div, .container-app #section-app .section-content section.warning > article, .container-app #section-app .section-content section.danger > h2, .container-app #section-app .section-content section.danger > div, .container-app #section-app .section-content section.danger > article, .container-app #section-app .section-content section.default > h2, .container-app #section-app .section-content section.default > div, .container-app #section-app .section-content section.default > article {
    -webkit-box-shadow: 0 0 0 0 white;
            box-shadow: 0 0 0 0 white;
  }
}
.container-app #section-app .section-content section.footer {
  text-align: right;
  width: 100%;
}
.container-app #section-app .section-content section.footer .btn.left:nth-child(1n) {
  margin-left: 5px;
}
.container-app #section-app .section-content section.footer .btn.left:nth-child(1) {
  margin: 0;
}
@media print {
  .container-app #section-app .section-content section.footer {
    display: none;
  }
}
.container-app #section-app .section-content section h2 {
  background: white;
  font-weight: normal;
  padding-left: 10px;
  padding-top: 10px;
  border-radius: 5px 5px 0px 0px;
  overflow: hidden;
}
@media print {
  .container-app #section-app .section-content section h2 {
    padding: 0;
    font-size: 12px;
    font-weight: bold;
  }
}
.container-app #section-app .section-content section h2.error-404 {
  color: rgba(255, 99, 71, 0.5);
  font-size: 72px;
  padding-top: 20px;
}
.container-app #section-app .section-content section > h3 {
  color: #888;
}
.container-app #section-app .section-content section > div, .container-app #section-app .section-content section > article {
  background: white;
  padding: 10px;
  position: relative;
  border-radius: 0px 0px 5px 5px;
}
.container-app #section-app .section-content section > div .form-group, .container-app #section-app .section-content section > article .form-group {
  position: relative;
  width: 100%;
  padding-bottom: 10px;
}
.container-app #section-app .section-content section > div .form-group label, .container-app #section-app .section-content section > article .form-group label {
  font-size: 18px;
  display: none;
}
@media (min-width: 768px) {
  .container-app #section-app .section-content section > div .form-group label, .container-app #section-app .section-content section > article .form-group label {
    display: inline-block;
    padding-top: 5px;
    position: absolute;
    /* padding-left: 10px; */
  }
}
@media print {
  .container-app #section-app .section-content section > div .form-group label, .container-app #section-app .section-content section > article .form-group label {
    display: inline-block;
    position: absolute;
    padding-top: 5px;
    font-size: 12px;
  }
}
.container-app #section-app .section-content section > div .form-group input, .container-app #section-app .section-content section > div .form-group select, .container-app #section-app .section-content section > div .form-group textarea, .container-app #section-app .section-content section > article .form-group input, .container-app #section-app .section-content section > article .form-group select, .container-app #section-app .section-content section > article .form-group textarea {
  font-size: 16px;
  padding: 5px 10px;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 100%;
}
.container-app #section-app .section-content section > div .form-group.required:before, .container-app #section-app .section-content section > article .form-group.required:before {
  color: tomato;
  content: "(*)";
  position: absolute;
  right: 5px;
  top: 5px;
}
@media print {
  .container-app #section-app .section-content section > div .form-group.required:before, .container-app #section-app .section-content section > article .form-group.required:before {
    display: none;
  }
}
.container-app #section-app .section-content section > div .form-group ul.autocomplete, .container-app #section-app .section-content section > article .form-group ul.autocomplete {
  background: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 100%;
  list-style-type: none;
  z-index: 1;
}
@media (min-width: 768px) {
  .container-app #section-app .section-content section > div .form-group ul.autocomplete, .container-app #section-app .section-content section > article .form-group ul.autocomplete {
    margin-left: 175px !important;
    width: calc(100% - 175px);
  }
}
.container-app #section-app .section-content section > div .form-group ul.autocomplete li, .container-app #section-app .section-content section > article .form-group ul.autocomplete li {
  background: white;
  padding: 2px 2px 2px 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 20;
}
.container-app #section-app .section-content section > div .form-group ul.autocomplete li:hover, .container-app #section-app .section-content section > article .form-group ul.autocomplete li:hover {
  background: rgba(0, 0, 0, 0.15);
  z-index: 21;
}
.container-app #section-app .section-content section > div .form-group ul.autocomplete li:hover .unitymeasure, .container-app #section-app .section-content section > article .form-group ul.autocomplete li:hover .unitymeasure {
  display: block;
}
.container-app #section-app .section-content section > div .form-group ul.autocomplete li .unitymeasure, .container-app #section-app .section-content section > article .form-group ul.autocomplete li .unitymeasure {
  display: none;
  position: absolute;
  background: white;
  padding: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 0 2px tomato, -4px 0 0 2px tomato;
          box-shadow: 0 0 0 2px tomato, -4px 0 0 2px tomato;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .container-app #section-app .section-content section > div .form-group ul.autocomplete li .unitymeasure, .container-app #section-app .section-content section > article .form-group ul.autocomplete li .unitymeasure {
    left: auto;
    right: 30px;
  }
}
.container-app #section-app .section-content section > div .form-group ul.autocomplete li .unitymeasure .list, .container-app #section-app .section-content section > article .form-group ul.autocomplete li .unitymeasure .list {
  padding: 1px 2px;
  min-width: 150px;
  font-size: 20px;
}
.container-app #section-app .section-content section > div .form-group ul.autocomplete li .unitymeasure .list span, .container-app #section-app .section-content section > article .form-group ul.autocomplete li .unitymeasure .list span {
  display: inline-block;
  min-width: 60px;
}
.container-app #section-app .section-content section > div .form-group ul.autocomplete li .unitymeasure .list span:nth-child(2), .container-app #section-app .section-content section > article .form-group ul.autocomplete li .unitymeasure .list span:nth-child(2) {
  padding-right: 40px;
}
.container-app #section-app .section-content section > div .form-group ul.autocomplete li .unitymeasure .list span:last-child, .container-app #section-app .section-content section > article .form-group ul.autocomplete li .unitymeasure .list span:last-child {
  float: right;
  text-align: right;
}
.container-app #section-app .section-content section > div .form-group ul.autocomplete li .unitymeasure .list:hover, .container-app #section-app .section-content section > article .form-group ul.autocomplete li .unitymeasure .list:hover {
  background: rgba(0, 0, 0, 0.25);
}
.container-app #section-app .section-content section > div .form-group.line-4, .container-app #section-app .section-content section > article .form-group.line-4 {
  margin: 0 auto;
}
.container-app #section-app .section-content section > div .form-group.line-4 > *, .container-app #section-app .section-content section > article .form-group.line-4 > * {
  width: calc(33% - 62px);
  position: static;
  text-align: center;
  margin-left: 0;
  display: inline-block;
}
@media print {
  .container-app #section-app .section-content section > div .form-group.line-4 > *, .container-app #section-app .section-content section > article .form-group.line-4 > * {
    width: calc(33% - 30px);
  }
}
.container-app #section-app .section-content section > div .form-group.line-4 > *:nth-child(1), .container-app #section-app .section-content section > article .form-group.line-4 > *:nth-child(1) {
  text-align: left;
  width: 175px;
}
@media print {
  .container-app #section-app .section-content section > div .form-group.line-4 > *:nth-child(1), .container-app #section-app .section-content section > article .form-group.line-4 > *:nth-child(1) {
    width: 80px;
  }
}
@media print {
  .container-app #section-app .section-content section > div .form-group, .container-app #section-app .section-content section > article .form-group {
    padding-bottom: 1px;
  }
}
@media (min-width: 768px) {
  .container-app #section-app .section-content section > div .form-group input, 
  .container-app #section-app .section-content section > div .form-group select, 
  .container-app #section-app .section-content section > div .form-group textarea, 
  .container-app #section-app .section-content section > article .form-group input,
  .container-app #section-app .section-content section > article .form-group select, 
  .container-app #section-app .section-content section > article .form-group textarea {
    margin-left: 190px;
    width: calc(100% - 190px);
  }
  .container-app #section-app .section-content section > div.porcentajes .form-group{
    display: flex;
    justify-content: space-between;
  }
  .container-app #section-app .section-content section > div.porcentajes .form-group.line-4 label,
  .container-app #section-app .section-content section > div.porcentajes .form-group.line-4 input, 
  .container-app #section-app .section-content section > div.porcentajes .form-group.line-4 select, 
  .container-app #section-app .section-content section > div.porcentajes .form-group.line-4 textarea, 
  .container-app #section-app .section-content section > article.porcentajes .form-group.line-4 input,
  .container-app #section-app .section-content section > article.porcentajes .form-group.line-4 select, 
  .container-app #section-app .section-content section > article.porcentajes .form-group.line-4 textarea{
    margin-left: 0 !important;
    width: 24%!important;
  }
}
@media print {
  .container-app #section-app .section-content section > div .form-group input, .container-app #section-app .section-content section > div .form-group select, .container-app #section-app .section-content section > div .form-group textarea, .container-app #section-app .section-content section > article .form-group input, .container-app #section-app .section-content section > article .form-group select, .container-app #section-app .section-content section > article .form-group textarea {
    margin-left: 120px;
    padding: 1px 5px;
    width: calc(100% - 120px);
    font-size: 10px;
    height: 15px;
  }
}
.container-app #section-app .section-content section > div.error-404-content, .container-app #section-app .section-content section > article.error-404-content {
  color: tomato;
}
.container-app #section-app .section-content section > div.article2, .container-app #section-app .section-content section > article.article2 {
  background: none;
}
.container-app #section-app .section-content section > div.article2 .form-group, .container-app #section-app .section-content section > article.article2 .form-group {
  display: inline-block;
  width: auto;
}
@media (min-width: 768px) {
  .container-app #section-app .section-content section > div.article2 .form-group, .container-app #section-app .section-content section > article.article2 .form-group {
    margin-right: 10px;
  }
}
.container-app #section-app .section-content section > div.article2 .form-group label, .container-app #section-app .section-content section > article.article2 .form-group label {
  position: static;
  width: auto;
}
.container-app #section-app .section-content section > div.article2 .form-group input, .container-app #section-app .section-content section > div.article2 .form-group select, .container-app #section-app .section-content section > div.article2 .form-group .input, .container-app #section-app .section-content section > div.article2 .form-group textarea, .container-app #section-app .section-content section > article.article2 .form-group input, .container-app #section-app .section-content section > article.article2 .form-group select, .container-app #section-app .section-content section > article.article2 .form-group .input, .container-app #section-app .section-content section > article.article2 .form-group textarea {
  margin: 0;
  width: auto;
}
.container-app #section-app .section-content section > div div.tarjed, .container-app #section-app .section-content section > article div.tarjed {
  -webkit-box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  padding: 0 10px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  widows: 100%;
}
.container-app #section-app .section-content section > div div.tarjed .title, .container-app #section-app .section-content section > article div.tarjed .title {
  text-align: center;
  padding-top: 2px;
  position: absolute;
  width: 100%;
}
@media (min-width: 400px) {
  .container-app #section-app .section-content section > div div.tarjed .title, .container-app #section-app .section-content section > article div.tarjed .title {
    width: 400px;
  }
}
@media (min-width: 600px) {
  .container-app #section-app .section-content section > div div.tarjed .title, .container-app #section-app .section-content section > article div.tarjed .title {
    width: 600px;
  }
}
.container-app #section-app .section-content section > div div.tarjed figure, .container-app #section-app .section-content section > article div.tarjed figure {
  padding-top: 25px;
  padding-right: 10px;
  width: 210px;
}
.container-app #section-app .section-content section > div div.tarjed figure img, .container-app #section-app .section-content section > article div.tarjed figure img {
  width: 200px;
  height: 200px;
}
.container-app #section-app .section-content section > div div.tarjed .info-user, .container-app #section-app .section-content section > article div.tarjed .info-user {
  padding-top: 25px;
  width: 350px;
}
.container-app #section-app .section-content section > div div.tarjed .info-user .form-group, .container-app #section-app .section-content section > article div.tarjed .info-user .form-group {
  width: 100%;
}
.container-app #section-app .section-content section > div div.tarjed .info-user .form-group.mid, .container-app #section-app .section-content section > article div.tarjed .info-user .form-group.mid {
  width: 50%;
  float: left;
}
.container-app #section-app .section-content section > div div.tarjed .info-user .form-group.mid input, .container-app #section-app .section-content section > article div.tarjed .info-user .form-group.mid input {
  width: calc(100% - 90px);
}
.container-app #section-app .section-content section > div div.tarjed .info-user .form-group.mid:last-child input, .container-app #section-app .section-content section > article div.tarjed .info-user .form-group.mid:last-child input {
  width: calc(100% - 60px);
}
.container-app #section-app .section-content section > div div.tarjed .info-user .form-group input, .container-app #section-app .section-content section > div div.tarjed .info-user .form-group .input, .container-app #section-app .section-content section > div div.tarjed .info-user .form-group textarea, .container-app #section-app .section-content section > article div.tarjed .info-user .form-group input, .container-app #section-app .section-content section > article div.tarjed .info-user .form-group .input, .container-app #section-app .section-content section > article div.tarjed .info-user .form-group textarea {
  margin-left: 80px;
  width: calc(100% - 60px);
}
@media (min-width: 768px) {
  .container-app #section-app .section-content section > div div.tarjed, .container-app #section-app .section-content section > article div.tarjed {
    width: 400px;
  }
}
@media (min-width: 1024px) {
  .container-app #section-app .section-content section > div div.tarjed, .container-app #section-app .section-content section > article div.tarjed {
    width: 600px;
  }
}
.container-app #section-app .section-content section > .before {
  border-radius: 0px;
}
.container-app #section-app .section-content section > .dina-table {
  border-radius: 0px;
}
.container-app #section-app .section-content section.float-2 {
  display: inline-block;
  /* width: 100%; */
  height: auto;
  vertical-align: top;
  padding-bottom: 3px;
}
.container-app #section-app .section-content section.float-2:nth-child(3n) {
  margin-left: 23px;
}
@media (min-width: 768px) {
  .container-app #section-app .section-content section.float-2:nth-child(2),
  .container-app #section-app .section-content section.float-2:nth-child(3) {
    width: calc(50% - 15px);
  }
}
@media print{
  .container-app #section-app .section-content section.float-2:nth-child(2) {
    width: 40%;
  }
  .container-app #section-app .section-content section.float-2:nth-child(3) {
    width: calc(60% - 10px);
    margin-left: 5px !important;
  }
}
@media (min-width: 768px) {
  .container-app #section-app .section-content {
    min-height: calc(100vh - 130px);
  }
}
@media print {
  .container-app #section-app .section-content {
    padding: 0 !important;
  }
  .container-app #section-app .section-content .col-3 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    overflow: hidden;
    padding-top: 10px;
  }
  .container-app #section-app .section-content .col-3 section {
    width: 100%;
  }
  .container-app #section-app .section-content .col-3 section h2 {
    white-space: nowrap;
    width: 100%;
  }
  .container-app #section-app .section-content .col-3 .form-group {
    position: relative;
    margin: 0;
    padding: 0;
    width: 200px;
  }
  .container-app #section-app .section-content .col-3 .form-group input, .container-app #section-app .section-content .col-3 .form-group select, .container-app #section-app .section-content .col-3 .form-group textarea {
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
    margin-left: 70px;
    width: calc(100% - 100px);
    min-width: 100px;
  }
}
.container-app #section-app .footer-app {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 30px;
  background: white;
  width: calc(100% + 20px);
  padding: 0px 0px;
  margin-left: -10px;
}
.container-app #section-app .footer-app span {
  line-height: 30px;
}
@media (min-width: 768px) {
  .container-app #section-app .footer-app {
    padding: 0px 15px;
  }
}
@media print {
  .container-app #section-app .footer-app {
    display: none;
  }
}
@media (min-width: 768px) {
  .container-app #section-app {
    min-height: calc(100vh - 40px);
    width: 100%;
  }
}
@media print {
  .container-app #section-app {
    padding: 0;
    margin-left: 0 !important;
    width: 100% !important;
  }
}
@media (min-width: 768px) {
  .container-app {
    min-height: calc(100vh - 40px);
  }
}

.btn {
  min-width: 100px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  padding: 5px 10px;
  display: inline-block;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.btn span {
  text-align: left;
  color: white;
}
.btn span.fa, .btn span.fas, .btn span.fab {
  margin-right: 5px;
}
.btn span:last-child {
  font-family: "ubuntu", sans-serif;
  font-weight: normal;
}
.btn.btn-default {
  background: #aaa;
  -webkit-box-shadow: 0px 5px 0px 0px #333;
          box-shadow: 0px 5px 0px 0px #333;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn.btn-default:hover {
  background: #333;
  -webkit-box-shadow: 0px 2px 0px 0px #333;
          box-shadow: 0px 2px 0px 0px #333;
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}
.btn.btn-info {
  background: steelblue;
  -webkit-box-shadow: 0px 5px 0px 0px #1b4465;
          box-shadow: 0px 5px 0px 0px #1b4465;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn.btn-info:hover {
  background: #1b4465;
  -webkit-box-shadow: 0px 2px 0px 0px #1b4465;
          box-shadow: 0px 2px 0px 0px #1b4465;
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}
.btn.btn-success {
  background: #3da33d;
  -webkit-box-shadow: 0px 5px 0px 0px #267126;
          box-shadow: 0px 5px 0px 0px #267126;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn.btn-success:hover {
  background: #267126;
  -webkit-box-shadow: 0px 2px 0px 0px #1b4465;
          box-shadow: 0px 2px 0px 0px #1b4465;
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}
.btn.btn-danger {
  background: #fd2a2a;
  -webkit-box-shadow: 0px 5px 0px 0px #bf0000;
          box-shadow: 0px 5px 0px 0px #bf0000;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn.btn-danger:hover {
  background: #bf0000;
  -webkit-box-shadow: 0px 2px 0px 0px #bf0000;
          box-shadow: 0px 2px 0px 0px #bf0000;
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}
.btn.btn-warning {
  background: #f2ac2b;
  -webkit-box-shadow: 0px 5px 0px 0px #aa7005;
          box-shadow: 0px 5px 0px 0px #aa7005;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn.btn-warning:hover {
  background: #aa7005;
  -webkit-box-shadow: 0px 2px 0px 0px #aa7005;
          box-shadow: 0px 2px 0px 0px #aa7005;
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}
.btn.btn-tomato {
  background: steelblue;
  -webkit-box-shadow: 0px 5px 0px 0px #2e597c;
          box-shadow: 0px 5px 0px 0px #2e597c;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn.btn-tomato:hover {
  background: #2e597c;
  -webkit-box-shadow: 0px 2px 0px 0px #2e597c;
          box-shadow: 0px 2px 0px 0px #2e597c;
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}
.btn:hover span {
  color: rgba(255, 255, 255, 0.8);
}

#notice {
  background: rgba(255, 255, 255, 0.8);
  padding: 5px 20px;
  position: fixed;
  min-height: 50px;
  width: 80%;
  top: calc(50vh - 25px);
  z-index: 501;
  left: 5%;
  border-radius: 10px;
  overflow: hidden;
  color: black;
  font-family: "ubuntu", sans-serif;
  font-weight: normal;
}
#notice:before {
  content: "";
  height: 100%;
  width: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
#notice span:nth-child(1) {
  -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
          transform: scale(1.5);
}
#notice.info {
  -webkit-box-shadow: 1px 1px 2px 2px rgba(70, 130, 180, 0.5);
          box-shadow: 1px 1px 2px 2px rgba(70, 130, 180, 0.5);
}
#notice.info span:nth-child(1) {
  color: steelblue;
}
#notice.info:before {
  background: steelblue;
}
#notice.success {
  -webkit-box-shadow: 1px 1px 2px 2px rgba(61, 163, 61, 0.5);
          box-shadow: 1px 1px 2px 2px rgba(61, 163, 61, 0.5);
}
#notice.success span:nth-child(1) {
  color: #3DA33D;
}
#notice.success:before {
  background: #3DA33D;
}
#notice.warning {
  -webkit-box-shadow: 1px 1px 2px 2px rgba(242, 172, 43, 0.5);
          box-shadow: 1px 1px 2px 2px rgba(242, 172, 43, 0.5);
}
#notice.warning span:nth-child(1) {
  color: #F2AC2B;
}
#notice.warning:before {
  background: #F2AC2B;
}
#notice.danger {
  -webkit-box-shadow: 1px 1px 2px 2px rgba(253, 42, 42, 0.5);
          box-shadow: 1px 1px 2px 2px rgba(253, 42, 42, 0.5);
}
#notice.danger span:nth-child(1) {
  color: #FD2A2A;
}
#notice.danger:before {
  background: #FD2A2A;
}
#notice span {
  line-height: 50px;
  margin-right: 10px;
}
#notice span:nth-child(1) {
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  #notice {
    left: 20%;
    width: 60%;
  }
}
@media (min-width: 1200px) {
  #notice {
    left: 30%;
    width: 40%;
  }
}

@media (min-width: 768px) {
  .left {
    float: left;
  }

  .right {
    float: right;
  }
}
.login {
  background: #222;
  background-image: url("../img/background-final2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  height: 100vh;
  width: 100%;
  z-index: 1;
}
@media (min-width: 1200px) {
  .login {
    background-size: 140% auto;
  }
}
@media (min-width: 1336px) {
  .login {
    background-size: 120% auto;
  }
}

.windown {
  background: white;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.8);
          box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.8);
  position: absolute;
  font-family: "ubuntu", sans-serif;
  height: 300px;
  left: calc(50% - 125px);
  overflow: hidden;
  top: calc(50% - 150px);
  width: 250px;
  z-index: 20;
}
.windown.error-404-content {
  overflow: hidden;
}
.windown.error-404-content h2 {
  margin: 0;
  padding: 0;
  padding-top: 20px;
  padding-left: 10px;
  width: 100%;
  position: relative;
}
.windown.error-404-content h2:before {
  background: tomato;
  content: "";
  height: 7px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.windown.error-404-content h2 span {
  font-size: 48px;
  color: rgba(255, 99, 71, 0.7);
}
.windown.error-404-content div {
  padding: 10px;
  color: rgba(255, 99, 71, 0.9);
}
.windown.error-404-content div .btn {
  width: calc(100% - 25px);
}
.windown .header {
  background: tomato;
  color: white;
  margin-bottom: 10px;
  padding: 5px 10px;
}
.windown .header h3 {
  margin: 0;
  padding: 0;
}
.windown .content {
  padding: 5px;
}
.windown .content > * {
  display: block;
}
.windown .content .form-group {
  position: relative;
}
.windown .content .form-group span {
  color: rgba(0, 0, 0, 0.5);
  left: 7px;
  position: absolute;
  top: 5px;
}
@media (min-width: 768px) {
  .windown .content .form-group span {
    top: 27px;
  }
}
.windown .content label {
  display: none;
}
@media (min-width: 768px) {
  .windown .content label {
    display: block;
    margin-bottom: 5px;
  }
}
.windown .content input, .windown .content textarea {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  padding: 5px;
  padding-left: 25px;
  margin-bottom: 10px;
  width: 100%;
}
.windown .content a {
  color: tomato;
  font-size: 14px;
  margin-top: 10px;
}
.windown .content button {
  margin-top: 20px;
  width: calc(100% - 5px);
}
.windown .footer {
  color: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 5px;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .windown {
    left: calc(50% - 200px);
    width: 400px;
  }
}

.bold {
  font-weight: bold;
}

.back, .back2 {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100hv;
  z-index: 1;
}

.modal.info, .modal2.info {
  -webkit-box-shadow: 0px -6px 0px 2px steelblue, 0px 0px 0px 2px steelblue, 0px 1px 0px 2px steelblue;
          box-shadow: 0px -6px 0px 2px steelblue, 0px 0px 0px 2px steelblue, 0px 1px 0px 2px steelblue;
}
.modal.success, .modal2.success {
  -webkit-box-shadow: 0px -6px 0px 2px #3DA33D, 0px 0px 0px 2px #3DA33D, 0px 1px 0px 2px #3DA33D;
          box-shadow: 0px -6px 0px 2px #3DA33D, 0px 0px 0px 2px #3DA33D, 0px 1px 0px 2px #3DA33D;
}
.modal.warning, .modal2.warning {
  -webkit-box-shadow: 0px -6px 0px 2px #F2AC2B, 0px 0px 0px 2px #F2AC2B, 0px 1px 0px 2px #F2AC2B;
          box-shadow: 0px -6px 0px 2px #F2AC2B, 0px 0px 0px 2px #F2AC2B, 0px 1px 0px 2px #F2AC2B;
}
.modal.danger, .modal2.danger {
  -webkit-box-shadow: 0px -6px 0px 2px #FD2A2A, 0px 0px 0px 2px #FD2A2A, 0px 1px 0px 2px #FD2A2A;
          box-shadow: 0px -6px 0px 2px #FD2A2A, 0px 0px 0px 2px #FD2A2A, 0px 1px 0px 2px #FD2A2A;
}
.modal h2, .modal2 h2 {
  color: #777;
  font-weight: normal;
  font-size: 20px;
  position: relative;
  padding: 5px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .modal h2, .modal2 h2 {
    padding: 5px 20px;
  }
}
@media (min-width: 1200px) {
  .modal h2, .modal2 h2 {
    padding: 5px 30px;
  }
}
.modal h2:before, .modal h2:after, .modal2 h2:before, .modal2 h2:after {
  content: "";
  height: 1px;
  left: 2%;
  width: 96%;
  position: absolute;
}
@media (min-width: 1200px) {
  .modal h2:before, .modal h2:after, .modal2 h2:before, .modal2 h2:after {
    width: calc(100% - 50px);
  }
}
.modal h2:before, .modal2 h2:before {
  bottom: 2px;
  background: rgba(0, 0, 0, 0.5);
}
.modal h2:after, .modal2 h2:after {
  bottom: 1px;
  background: white;
}
.modal .content, .modal2 .content {
  padding: 5px;
}
@media (min-width: 1024px) {
  .modal .content, .modal2 .content {
    padding: 5px 15px;
  }
}
.modal .content .form-group, .modal2 .content .form-group {
  padding-bottom: 10px;
  position: relative;
}
.modal .content .form-group ul.autocomplete, .modal2 .content .form-group ul.autocomplete {
  background: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 100%;
  list-style-type: none;
  z-index: 1;
}
@media (min-width: 768px) {
  .modal .content .form-group ul.autocomplete, .modal2 .content .form-group ul.autocomplete {
    margin-left: 150px;
    width: calc(100% - 150px);
  }
}
.modal .content .form-group ul.autocomplete li, .modal2 .content .form-group ul.autocomplete li {
  background: white;
  padding: 2px 2px 2px 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.modal .content .form-group ul.autocomplete li:hover, .modal2 .content .form-group ul.autocomplete li:hover {
  background: rgba(0, 0, 0, 0.15);
}
.modal .content .form-group span, .modal .content .form-group input, .modal2 .content .form-group span, .modal2 .content .form-group input {
  display: block;
}
.modal .content .form-group label, .modal2 .content .form-group label {
  position: absolute;
  bottom: 10px;
}
.modal .content .form-group label.check, .modal2 .content .form-group label.check {
  position: static;
  padding-left: 25px;
}
.modal .content .form-group span, .modal2 .content .form-group span {
  color: #888;
  font-size: 18px;
  margin-bottom: 2px;
}
@media (min-width: 1200px) {
  .modal .content .form-group span, .modal2 .content .form-group span {
    position: absolute;
  }
}
.modal .content .form-group input, .modal .content .form-group select, .modal .content .form-group .input, .modal .content .form-group textarea, .modal2 .content .form-group input, .modal2 .content .form-group select, .modal2 .content .form-group .input, .modal2 .content .form-group textarea {
  font-size: 18px;
  border: rgba(0, 0, 0, 0.5) 1px solid;
  width: 100%;
}
@media (min-width: 1200px) {
  .modal .content .form-group input, .modal .content .form-group select, .modal .content .form-group .input, .modal .content .form-group textarea, .modal2 .content .form-group input, .modal2 .content .form-group select, .modal2 .content .form-group .input, .modal2 .content .form-group textarea {
    display: inline-block;
    font-size: 16px;
    padding: 2px 3px;
    margin-left: 150px;
    min-width: 70%;
    width: calc(100% - 150px);
  }
}
.modal .content .form-group input[type=checkbox], .modal2 .content .form-group input[type=checkbox] {
  cursor: pointer;
  position: relative;
  background: none;
  border: none;
  height: 30px;
  margin-left: 0;
  position: absolute;
  left: 0px;
  opacity: 0;
  width: 100%;
}
.modal .content .form-group .checkbox, .modal2 .content .form-group .checkbox {
  position: absolute;
  height: 20px;
  width: 20px;
  bottom: 10px;
  left: 0;
  z-index: -1;
}
.modal .content .form-group .checkbox:before, .modal2 .content .form-group .checkbox:before {
  content: "";
  font: normal normal normal 25px/1 "Font Awesome 5 Free";
}
.modal .content .form-group input[type=checkbox]:checked ~ .checkbox:before, .modal2 .content .form-group input[type=checkbox]:checked ~ .checkbox:before {
  content: "";
}
.modal .footer, .modal2 .footer {
  padding: 5px;
  padding-bottom: 15px;
  text-align: right;
}
@media (min-width: 1024px) {
  .modal .footer, .modal2 .footer {
    padding: 5px 15px;
    padding-bottom: 15px;
  }
}
.modal .footer .left, .modal2 .footer .left {
  float: left;
}

.modal {
  width: 80%;
  border-radius: 5px;
  margin-top: 40px;
  margin-left: 10%;
  min-height: 50px;
  height: auto;
  background: #ddd;
  position: absolute;
  z-index: 1;
}
@media (min-width: 768px) {
  .modal {
    top: 30px;
  }
}
@media (min-width: 1024px) {
  .modal {
    top: 50px;
  }
}
@media (min-width: 1200px) {
  .modal {
    top: 50px;
    width: 600px;
    left: 50%;
    margin-left: -300px;
  }
}

.modal2 {
  width: 80%;
  border-radius: 5px;
  margin-top: 40px;
  margin-left: 10%;
  min-height: 50px;
  height: auto;
  background: #ddd;
  position: absolute;
  z-index: 1;
}
@media (min-width: 768px) {
  .modal2 {
    top: 30px;
  }
}
@media (min-width: 1024px) {
  .modal2 {
    top: 50px;
  }
}
@media (min-width: 1200px) {
  .modal2 {
    top: 50px;
    width: 400px;
    left: 50%;
    margin-left: -200px;
  }
}

.center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.comprobante {
  -webkit-box-shadow: 0px 0px 1px 1px rgba(255, 165, 0, 0.8);
          box-shadow: 0px 0px 1px 1px rgba(255, 165, 0, 0.8);
  border-radius: 5px;
  width: 100%;
}
@media (min-width: 1024px) {
  .comprobante {
    margin: 0 auto;
    margin-bottom: 20px;
    width: 70%;
    padding-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .comprobante.pago {
    width: 60%;
  }
}
.comprobante.pago .data-description table th:nth-child(1) {
  width: 10%;
}
.comprobante.pago .data-description table th:nth-child(2) {
  width: 60%;
}
.comprobante.pago .data-description table th:nth-child(3), .comprobante.pago .data-description table th:nth-child(4) {
  width: 15%;
}
.comprobante .data-emp {
  -webkit-box-shadow: 0px 0px 1px 1px rgba(255, 165, 0, 0.5);
          box-shadow: 0px 0px 1px 1px rgba(255, 165, 0, 0.5);
  background: #FFD988;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
}
.comprobante .data-emp .data-nombre {
  width: calc(100% - 172px);
  text-align: center;
  padding: 0 30px;
}
@media print {
  .comprobante .data-emp .data-nombre {
    padding: 0 80px;
  }
}
@media print {
  .comprobante .data-emp {
    -webkit-box-shadow: 0 0 0 0 white;
            box-shadow: 0 0 0 0 white;
  }
}
.comprobante .data-user {
  width: 100%;
}
@media (min-width: 1024px) {
  .comprobante .data-user {
    padding: 0 5px;
    padding-top: 3px;
  }
}
.comprobante .data-user .form-group2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 5px;
}
.comprobante .data-user .form-group2 span {
  padding-top: 3px;
  display: inline-block;
  width: 90px;
}
.comprobante .data-user .form-group2 input {
  padding: 3px;
  width: calc(100% - 90px);
}
.comprobante .data-user .form-group3 {
  display: inline-block;
  padding-top: 5px;
}
.comprobante .data-user .form-group3.righ {
  float: right;
  margin-right: 2px;
}
.comprobante .data-user .form-group3 span {
  padding-top: 3px;
  display: inline-block;
  width: 90px;
}
.comprobante .data-user .form-group3 input {
  float: right;
  padding: 3px;
  width: calc(100% - 90px);
}
@media (min-width: 1024px) {
  .comprobante .data-user .form-group3.width60 {
    width: 60%;
  }
}
.comprobante .data-description {
  width: 100%;
  padding: 15px 0;
}
@media (min-width: 1024px) {
  .comprobante .data-description {
    padding: 10px 3px;
  }
}
.comprobante .data-description table {
  width: 100% !important;
  padding: 3px 0px;
}
.comprobante .data-description table thead {
  width: 100% !important;
}
.comprobante .data-description table thead th:nth-child(1) {
  width: 15%;
}
.comprobante .data-description table thead th:nth-child(3) {
  width: 45%;
}
.comprobante .data-description table thead th:nth-child(6), .comprobante .data-description table thead th:nth-child(7) {
  width: 6%;
}
.comprobante .data-description table tbody tr td {
  position: relative;
}
.comprobante .data-description table tbody tr td select.mensualidad, .comprobante .data-description table tbody tr td .list-mount {
  width: 50%;
}
.comprobante .data-description table tbody tr td .mensalidad-cmb {
  position: absolute;
  padding: 1.5px;
  padding-left: 7px;
  width: 49%;
  border-radius: 0;
  -webkit-box-shadow: 0px 0px 0px 0.5px #666 inset;
          box-shadow: 0px 0px 0px 0.5px #666 inset;
  background-color: transparent;
  font-size: 14px;
  color: black;
  right: 0;
  top: 0;
}
.comprobante .data-description table tbody tr td .mensalidad-cmb:before {
  content: "";
  font-family: FontAwesome;
  position: absolute;
  height: 15px;
  right: 1px;
  width: 15px;
}
.comprobante .data-description table tbody tr td .list-mount {
  background: #fff;
  background-color: #40aac1;
  color: #fff;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 49%;
  z-index: 1;
  top: 22px;
  right: 0;
  border-radius: 5px;
  padding: 0 5px;
  -webkit-box-shadow: 0.5px 0.5px 1px 1px rgba(70, 130, 180, 0.5);
          box-shadow: 0.5px 0.5px 1px 1px rgba(70, 130, 180, 0.5);
  display: none;
}
.comprobante .data-description table tbody tr td .list-mount li {
  display: block;
}
.comprobante .data-description table tbody tr td .list-mount li input {
  width: auto;
  float: right;
}
.comprobante .data-description table tbody tr td input, .comprobante .data-description table tbody tr td select {
  width: 100%;
}
.comprobante .footer {
  width: 100%;
}
@media print {
  .comprobante {
    -webkit-box-shadow: 0 0 0 0 black;
            box-shadow: 0 0 0 0 black;
  }
}

.text-success {
  color: #3DA33D;
}

.text-warning {
  color: #F2AC2B;
}

.text-info {
  color: #4682B4;
}

.text-danger {
  color: #FD2A2A;
}

tr:hover .remove {
  display: block;
}

.remove {
  display: none;
  position: absolute;
  right: -20px;
  top: 0;
}
.remove .fa, .remove .fas, .remove .fab {
  cursor: pointer;
  border-radius: 50%;
  background: #FD2A2A;
  color: white;
  text-align: center;
  line-height: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  height: 20px;
  width: 20px;
}
.remove .fa:hover, .remove .fas:hover, .remove .fab:hover {
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.8);
  color: #FD2A2A;
  background: white;
}

div.toggle-p {
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  overflow: hidden;
  width: 100px;
  position: relative;
}
div.toggle-p:hover {
  -webkit-box-shadow: 0 0 1px 1px tomato;
          box-shadow: 0 0 1px 1px tomato;
}
div.toggle-p input {
  display: inline-block;
  position: absolute;
  height: 25px;
  width: 100px;
  visibility: hidden;
  z-index: 100;
}
div.toggle-p div.p {
  background: tomato;
  -webkit-box-shadow: -110px 0 0 #ccc inset;
          box-shadow: -110px 0 0 #ccc inset;
  position: absolute;
  height: 25px;
  margin: 0;
  padding: 0;
  left: -80px;
  top: 0px;
  width: 200px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
div.toggle-p div.p.active {
  left: 0px;
}
div.toggle-p div.p div {
  background: tomato;
  color: white;
  display: inline-block;
  height: 25px;
  float: left;
  font-style: italic;
  padding-left: 1px;
  line-height: 25px;
  width: 80px;
}
div.toggle-p div.p div.toggle {
  background: #eee;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 3px 2px #aaa inset;
          box-shadow: 1px 1px 3px 2px #aaa inset;
  width: 20px;
  padding-left: 0;
}
div.toggle-p div.p div:last-child {
  background: none;
}

@media print {
  .not-print {
    display: none;
  }
}

.list-table {
  background: white;
  padding: 0;
}
.list-table > div {
  cursor: pointer;
  display: none;
  width: 100%;
  border-bottom: 1px solid black;
  margin: 0;
  padding: 1px 3px;
  height: auto;
}
.list-table > div:last-child {
  border-bottom: none;
}
.list-table > div.active {
  position: static;
  display: block;
  border-bottom: none;
}
.list-table > div:hover {
  background: rgba(0, 0, 0, 0.25);
}
.list-table > div span {
  display: inline-block !important;
  position: static !important;
  font-size: 15px;
}
.list-table > div span:nth-child(1) {
  width: 33.3%;
}
.list-table > div span:nth-child(2) {
  width: 33.3%;
}
.list-table > div span:nth-child(3) {
  width: 33.3%;
}

@media print {
  .original {
    width: 48%;
  }
}

.padding-top50px {
  margin-top: 50px;
}

.print-true {
  display: none !important;
}
@media print {
  .print-true {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    font-size: 12px;
  }
}

@media print {
  .print-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media print {
  .print-line {
    display: flex !important;
    flex-direction: column!important;
    width: 33% !important;
  }
  .print-line label {
    position: static !important;
    display: inline-block !important;
    width: 100% !important;
    /* float: left !important; */
  }
  .print-line input {
    position: static !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-block !important;
    width: 100% !important;
  }
}

.clone {
  display: none;
}
@media print {
  .clone {
    display: block;
  }
}

.margin-0-imp {
  margin: 0 !important;
}

.screen-none-print-true {
  display: none;
  margin: 0;
  padding: 0;
}
@media print {
  .screen-none-print-true {
    display: inline-block;
    width: 100%;
  }
}

.font-14 {
  font-family: 12px;
}
@media print {
  .font-14 {
    font-size: 10px !important;
  }
}

@media print {
  .width-50-print {
    width: 50%;
  }
}

.float-right {
  float: right;
  padding: 5px;
}

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

.mini-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.mini-form .form-group input, .mini-form .form-group select {
  margin-left: 140px !important;
}
@media print {
  .mini-form .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mini-form .form-group input, .mini-form .form-group select {
    margin-left: 0 !important;
  }
  .mini-form.not-print {
    display: none;
  }
}

.paddin-left {
  padding-left: 20px;
}

.width-7 {
  overflow: hidden;
  width: 65px !important;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.text-vertical {
  display: inline-table;
  -webkit-writing-mode: tb;
      -ms-writing-mode: tb;
          writing-mode: tb;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.height-150 {
  height: 150px !important;
  word-wrap: break-word;
  padding: 0 !important;
}
@media print {
  .height-150 {
    height: 80px !important;
  }
}

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

h2.font-min {
  font-size: 16px;
}

.btn-float {
  position: absolute;
  left: -10px;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  bottom: -20px;
  display: none;
  z-index: 2;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-float:hover {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.title-pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media print {
  .title-pay {
    margin-left: 0 !important;
    padding-left: 0 !important;
    margin-right: 2px !important;
    padding-right: 2px !important;
    padding-bottom: 0!important;
  }
}
.title-pay #data-teacher {
  width: 80%;
}
@media print {
  .title-pay #data-teacher {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
}
@media print {
  .title-pay #data-teacher .mini-form {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
}
.title-pay #data-teacher .mini-form .form-group label {
  width: 85px;
}
@media print {
  .title-pay #data-teacher .mini-form .form-group label {
    display: inline-block;
    width: auto;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
}
.title-pay #data-teacher .mini-form .form-group input, .title-pay #data-teacher .mini-form .form-group select {
  width: calc(100% - 100px) !important;
  margin-left: 85px !important;
}
@media print {
  .title-pay #data-teacher .mini-form .form-group input, .title-pay #data-teacher .mini-form .form-group select {
    width: 110px !important;
    display: inline-block;
    margin-left: 0 !important;
    padding-left: 2px;
  }
}
@media print {
  .title-pay #data-teacher .mini-form .form-group {
    width: 150px !important;
  }
}
@media print {
  .title-pay #data-teacher .mini-form:nth-child(1) .form-group {
    width: 100% !important;
  }
  .title-pay #data-teacher .mini-form:nth-child(1) .form-group input {
    margin-left: 0 !important;
    width: 96% !important;
  }
  .date-pay {
    padding-top: 5px!important;
  }
}

.padding-top120px {
  margin-top: 60px;
}

.date-pay {
  padding-left: 50%;
  padding-top: 10px;
}

.card-content {
  width: 100% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0 !important;
}
.card-content .card {
  overflow: hidden;
  width: 100%;
  border-radius: 3px !important;
  -webkit-box-shadow: 0 0 2px 1px black;
          box-shadow: 0 0 2px 1px black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.card-content .card > *{
  width: 50%;
}
.card-content .card .rd{
  font-size: 12px!important;
}
.card-content .card:nth-child(2n) {
  margin-left: 4%;
}
@media print {
  .card-content .card {
    margin: 1%;
  }
  .card-content .card:nth-child(2n) {
    margin-left: 0;
  }
  .card-content .card .rd{
    font-size: 10px!important;
    margin-bottom: 3px!important;
  }
}
.card-content .card h2 {
  text-align: center;
  width: 100%;
  /* margin-bottom: 15px !important; */
}
@media print {
  .card-content .card h2 {
    font-size: 1px;
  }
}
.card-content .card .content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.card-content .card .content .photo {
  height: 70px;
  width: 70px;
  margin: 0;
  padding: 0;
  display: inline-block;
  -webkit-box-shadow: 0 0 2px 1px black;
          box-shadow: 0 0 2px 1px black;
}
.card-content .card .content .data {
  margin: 0;
  padding: 0;
  margin-left: 5px;
  width: calc(100% - 79px);
  display: inline-block;
}
.card-content .card .content .data .form-group {
  width: 100%;
}
.card-content .card .content .data .form-group input {
  margin-left: 120px !important;
  width: calc(100% - 120px) !important;
}
@media print {
  .card-content .card .content .data .form-group input {
    margin-left: 60px !important;
    width: calc(100% - 70px) !important;
  }
}
@media print {
  .container-primary, .float-2, .col-3 {
    padding: 0 !important;
  }
  .title-pay{
    padding-top: 2px!important;
  }
  .container-primary h2, .float-2 h2, .col-3 h2 {
    padding: 5px 0 0 0 !important;
  }
  .data-time-cont .form-group input{
    margin-left: 90px!important;
    width: calc(100% - 90px)!important;
  }
  .container-primary .article, .float-2 .article, .col-3 .article {
    padding: 0 !important;
  }
}
@media print {
  .dina-table td {
    white-space: nowrap !important;
  }
}

.true, .false {
  display: none;
}

.true {
  color: green;
}

.false {
  color: red;
}

.mat-siage ~ .true {
  display: none;
}
.mat-siage ~ .false {
  display: inline;
}

.mat-siage:checked ~ .true {
  display: inline;
}
.mat-siage:checked ~ .false {
  display: none;
}

.mr-1 {
  display: inline-block;
  margin-right: 20px;
}

.box {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  padding: 3px 10px;
  margin-left: 5px;
  margin-top: -3px;
}

.estado {
  margin: 10px 0;
}
.card .post{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card .post .col{
  display: flex;
  justify-content: space-between;
  height: 32%;
}
.card .post .col .cell{
  width: 24.5%;
  border: 1px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media print{
  .card-content{
    width: 90%!important;
  }
  /* .card .front{
    margin-bottom: 0!important;
  }
  .card-content .content .data input{
    font-size: 13px;
    margin-bottom: 5px;
    margin-left: 50px !important;
  } */
  .card .post .col .cell{
    font-size: 13px;
  }
}
.col-3{
  margin-top: 20px;
}
@media print{
  .col-3{
    margin-top: 0;
  }
  .padding-top120px {
    margin-top: 60px;
  }
}
.valid-asist{
  display: flex;
  justify-content: space-between;
}
.valid-asist label{
  color: red;
  font-size: 14px;
  font-weight: bold;
}
.valid-asist select{
  color: red;
  font-weight: bold;
  border-color: red;

}
.valid-asist select:active,
.valid-asist select:focus,
.valid-asist select:hover{
  outline: none;
}
@media print{
  .mod-print .flex-print{
    display: flex;
  }
  .mod-print .flex-print>*{
    margin-right: 10px;
  }
}