/*Margenes Generales*/
* {
  padding: 0;
  margin: 0;
  font-family: 'Jura-Light' !important;
}

/*Fuentes*/
@font-face {
  font-family: 'Ubuntu-Light';
  src: url(../../recursos/fuentes/Ubuntu-Light.ttf);
}

@font-face {
  font-family: 'Jura';
  src: url(../../recursos/fuentes/Jura-Bold.ttf);
}

@font-face {
  font-family: 'Jura-Light';
  src: url(../../recursos/fuentes/Jura-Light.ttf);
}

@font-face {
  font-family: 'Questrial';
  src: url(../../recursos/fuentes/Questrial-Regular.ttf);
}

@font-face {
  font-family: 'BenchNine';
  src: url(../../recursos/fuentes/BenchNine-Regular.ttf);
}

@font-face {
  font-family: 'Orbitron';
  src: url(../../recursos/fuentes/Orbitron-Regular.ttf);
}

@font-face {
  font-family: 'Varela';
  src: url(../../recursos/fuentes/VarelaRound-Regular.ttf);
}

@font-face {
  font-family: 'Rotis';
  src: url(../../recursos/fuentes/RotisSansSerifStd-Bold.otf);
}

@font-face {
  font-family: 'Roboto';
  src: url(../../recursos/fuentes/Roboto-BoldCondensed.ttf);
}

@font-face {
  font-family: 'Monserrat';
  src: url(../../recursos/fuentes/Montserrat-ExtraBold.otf);
}

body, html {
  background-color: #E4E9F7 !important;
  cursor: pointer;
  min-height: 100vh;
  position: relative;
}

.sidebar_menu {
  height: 100%;
  width: 78px;
  background-color: #E74C32;
  position: fixed;
  top: 0;
  left: 0;
  padding: 5px 15px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 100;
}

.sidebar_menu .enlaces > li {
  position: relative;
  border-radius: 7px;
  margin: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.sidebar_menu .enlaces > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  color: #FFF;
  font-size: 1.2em;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.sidebar_menu .enlaces > li a i {
  margin-right: 10px;
}

.sidebar_menu .enlaces > li.li-submenu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sidebar_menu .enlaces > li.li-submenu a .icon-triangle-down {
  margin-left: auto;
  margin-right: 0;
}

.sidebar_menu .enlaces > li.li-submenu .submenu {
  display: none;
}

.sidebar_menu .enlaces > li.li-submenu .submenu li a {
  color: rgba(255, 255, 255, 0.7);
}

.sidebar_menu .enlaces > li:hover {
  background-color: #FFF;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.sidebar_menu .enlaces > li:hover a {
  color: #080D14;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.sidebar_menu.open-menu {
  width: 250px;
}

.sidebar_menu.open-menu .enlaces > li {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.sidebar_menu.open-menu .enlaces > li.li-submenu {
  overflow: hidden;
}

.sidebar_menu.open-menu .enlaces > li.li-submenu a .icon-submenu.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-animation: rotar90 .3s ease-in-out;
  animation: rotar90 .3s ease-in-out;
}

.sidebar_menu.open-menu .enlaces > li.li-submenu a .icon-submenu.inactive {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-animation: rotar90-inverse .3s ease-in-out;
  animation: rotar90-inverse .3s ease-in-out;
}

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

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

@-webkit-keyframes rotar90-inverse {
  0% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes rotar90-inverse {
  0% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.sidebar_menu.open-menu .enlaces > li.li-submenu .submenu {
  width: 100%;
}

.sidebar_menu.open-menu .enlaces > li.li-submenu .submenu.active {
  background-color: #CA3217;
}

.sidebar_menu.open-menu .enlaces > li.li-submenu.active {
  background-color: #CA3217 !important;
}

.sidebar_menu.open-menu .enlaces > li.li-submenu.active > a {
  color: #FFF;
}

.sidebar_menu.open-menu .enlaces > li.li-submenu.active a:hover {
  background-color: #FFF;
  color: #080D14;
}

.sidebar_menu.open-menu .enlaces > li .toltip {
  display: none;
}

.sidebar_menu.open-menu .contenedor_logotipo .logotipo .imagen_logotipo {
  opacity: 1;
  pointer-events: none;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.sidebar_menu.open-menu .contenedor_logotipo .logotipo .nombre_logotipo {
  opacity: 1;
  pointer-events: none;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.sidebar_menu.open-menu .contenedor_logotipo #btn_menu {
  left: 90%;
}

.sidebar_menu.open-menu .contenedor_perfil {
  background: #CA3217;
}

.sidebar_menu.open-menu .contenedor_perfil .perfil .detalle_perfil {
  opacity: 1;
  pointer-events: none;
}

.sidebar_menu.open-menu .contenedor_perfil .perfil #cerrar_sesion {
  left: 88%;
  background: none;
}

.sidebar_menu .contenedor_logotipo {
  color: #FFF;
  position: relative;
}

.sidebar_menu .contenedor_logotipo .logotipo {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.sidebar_menu .contenedor_logotipo .logotipo .imagen_logotipo {
  display: block;
  width: 50px;
  height: 50px;
  min-height: 50px;
  margin-right: 5px;
  opacity: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.sidebar_menu .contenedor_logotipo .logotipo .nombre_logotipo {
  font-size: 20px;
  font-family: 'Varela' !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  opacity: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.sidebar_menu .contenedor_logotipo #btn_menu {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 30px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sidebar_menu.close-menu .enlaces > li.li-submenu a .icon-submenu {
  display: none;
}

.sidebar_menu.close-menu .enlaces > li.li-submenu:hover .submenu {
  opacity: 1;
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.sidebar_menu.close-menu .enlaces > li a .nombre_enlace {
  opacity: 0;
  display: none;
}

.sidebar_menu.close-menu .enlaces > li .toltip {
  position: absolute;
  left: 125px;
  top: -20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 6px;
  height: 35px;
  width: 122px;
  background-color: #FFF;
  line-height: 35px;
  text-align: center;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0s;
  transition: 0s;
  opacity: 0;
  pointer-events: none;
}

.sidebar_menu.close-menu .enlaces > li:hover .toltip {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  opacity: 1;
  top: 50%;
}

.sidebar_menu.close-menu .enlaces > li .submenu {
  background-color: #080D14;
  position: absolute;
  top: 0;
  border-radius: 0 7px 7px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  display: none;
  left: 48px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.sidebar_menu.close-menu .enlaces > li .submenu li {
  margin: 0;
}

.sidebar_menu.close-menu .enlaces > li .submenu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: rgba(255, 255, 255, 0.6);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar_menu.close-menu .enlaces > li .submenu li a i {
  margin-right: 10px;
}

.sidebar_menu.close-menu .enlaces > li .submenu li a:hover {
  color: #FFF;
}

.sidebar_menu .contenedor_perfil {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #FFF;
  background: none;
}

.sidebar_menu .contenedor_perfil .perfil {
  position: relative;
  padding: 10px 6px;
  height: 65px;
}

.sidebar_menu .contenedor_perfil .perfil .detalle_perfil {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.sidebar_menu .contenedor_perfil .perfil .detalle_perfil .imagen_perfil {
  display: block;
  height: 45px;
  width: 45px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  background-color: #FFF;
  padding: 5px;
}

.sidebar_menu .contenedor_perfil .perfil .detalle_perfil .contenedor_nombre {
  margin-left: 10px;
}

.sidebar_menu .contenedor_perfil .perfil .detalle_perfil .contenedor_nombre .nombre {
  font-size: 15px;
  font-weight: bold;
}

.sidebar_menu .contenedor_perfil .perfil .detalle_perfil .contenedor_nombre .cargo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
}

.sidebar_menu .contenedor_perfil .perfil .detalle_perfil .contenedor_nombre .cargo i {
  font-size: 20px;
}

.sidebar_menu .contenedor_perfil .perfil #cerrar_sesion {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  font-size: 20px;
  text-align: center;
  background-color: #20273A;
  min-width: 50px;
  line-height: 50px;
  border-radius: 12px;
  color: #FFF;
  text-decoration: none;
}

.home_content {
  position: absolute;
  height: 100%;
  width: calc(100% - 78px);
  left: 78px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  background-color: #E4E9F7;
}

.home_content.active {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  left: 250px;
  width: calc(100% - 250px);
}

/*ESTILOS TABLAS*/
.contenedor_tabla {
  border: 1px solid rgba(90, 90, 90, 0.1);
  border-radius: 5px;
}

.contenedor_tabla .tablas {
  font-size: 14px;
  border: 0;
  margin: 0;
  font-family: 'Jura';
  color: #000;
}

.contenedor_tabla .tablas thead, .contenedor_tabla .tablas tfoot {
  background-color: #E74C32;
  color: #FFF;
  border-top: 0 !important;
}

.contenedor_tabla .tablas thead th, .contenedor_tabla .tablas tfoot th {
  padding: 10px 15px !important;
}

.contenedor_tabla .tablas tbody tr {
  border-bottom: 1px solid rgba(62, 171, 238, 0.1);
}

.contenedor_tabla .tablas tbody tr:nth-child(even) {
  background-color: #F6F6F6;
}

.contenedor_tabla .tablas tbody tr:hover {
  background-color: rgba(202, 50, 23, 0.7);
  color: #FFF;
  -webkit-transition: all .1s ease;
  transition: all .1s ease;
  cursor: default;
}

.contenedor_tabla .tablas tbody tr td {
  vertical-align: middle;
  border: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 15px;
}

.contenedor_tabla .tablas tbody tr td button, .contenedor_tabla .tablas tbody tr td a {
  padding: .1rem .3rem;
}

.contenedor_tabla .tablas tbody tr td button i, .contenedor_tabla .tablas tbody tr td a i {
  font-size: 12px;
}

.contenedor_tabla .tablas.tabla-descripciones tbody tr td {
  white-space: normal !important;
}

.contenedor_tabla .tabla_ficha {
  font-size: 14px;
  border: 0;
  margin: 0;
  font-family: 'Jura';
  color: #000;
}

.contenedor_tabla .tabla_ficha thead, .contenedor_tabla .tabla_ficha tfoot {
  background-color: #008037;
  color: #FFF;
  border-top: 0 !important;
}

.contenedor_tabla .tabla_ficha thead th, .contenedor_tabla .tabla_ficha tfoot th {
  padding: 10px 15px !important;
}

.contenedor_tabla .tabla_ficha tbody tr {
  border-bottom: 1px solid rgba(62, 171, 238, 0.1);
}

.contenedor_tabla .tabla_ficha tbody tr:nth-child(even) {
  background-color: #F6F6F6;
}

.contenedor_tabla .tabla_ficha tbody tr td {
  vertical-align: middle;
  border: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 15px;
}

.contenedor_tabla .tabla_ficha tbody tr td button, .contenedor_tabla .tabla_ficha tbody tr td a {
  padding: .1rem .3rem;
}

.contenedor_tabla .tabla_ficha tbody tr td button i, .contenedor_tabla .tabla_ficha tbody tr td a i {
  font-size: 12px;
}

.contenedor_tabla .tabla_ficha.tabla-descripciones tbody tr td {
  white-space: normal !important;
}

.borde_tabla {
  border: 1px solid rgba(20, 41, 85, 0.9);
  border-radius: 5px;
}

.borde_tabla h3 {
  background-color: #142955;
  width: 100%;
  padding-left: 5px;
  color: #fff;
}

.tabla_2 th {
  width: calc(100%/2);
}

.tabla_3 th {
  width: calc(100%/3);
}

.tabla_4 th {
  width: calc(100%/4);
}

.tabla_5 th {
  width: calc(100%/8);
}

.tabla_7 th {
  width: calc(100%/7);
}

.tabla_8 th {
  width: calc(100%/8);
}

.tabla_9 th {
  width: calc(100%/9);
}

.tabla_10 th {
  width: calc(100%/10);
}

.tabla_11 th {
  width: calc(100%/11);
}

.tabla_12 th {
  width: calc(100%/12);
}

.tabla_13 th {
  width: calc(100%/13);
}

.tabla_14 th {
  width: calc(100%/14);
}

.tabla_16 th {
  width: calc(100%/16);
}

.tabla_19 th {
  width: calc(100%/19);
}

/*ESTILOS PAGINADOR*/
.paginador li {
  padding: 0 1px;
}

.paginador li a {
  font-family: 'Orbitron' !important;
  padding: 7px;
  color: #000;
  display: block;
  height: 100%;
  width: 35px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.paginador li a.pag:hover {
  border-color: #2970CA;
  background-color: rgba(41, 112, 202, 0.05);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  cursor: pointer;
}

.paginador li.inactiva a, li.inactiva a {
  background-color: #E0E0E0;
  color: #9E9E9E;
  color: currentColor;
  cursor: not-allowed;
}

.paginador li.pagina_activa a {
  background-color: #2970CA;
  color: #FFF;
}

.nav-tab {
  background-color: #FFF;
  color: #C9D1D1;
  font-weight: bold;
  padding: 10px;
  font-size: 18px;
  border-radius: 7px;
}

.nav-tab i {
  position: relative;
  top: 2px;
}

.nav-tab .nav-actual {
  color: #80AEAB;
}

.round-container {
  background-color: #FFF;
  border-radius: 7px;
}

.formulario {
  background-color: #FFF !important;
  border: 0 !important;
}

.formulario .modal-header {
  background-color: #ff0037;
  color: #FFF;
  border-bottom: none;
  padding: 10px 15px !important;
}

.formulario .modal-footer {
  background-color: #ff0037;
  border-top: none;
  padding: 10px 15px !important;
}

.formulario .modal-footer button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.formulario .modal-footer button i {
  font-size: 20px;
}

.formulario .label-form {
  color: #ff0037;
  font-weight: bold;
  text-transform: uppercase;
}

.formulario .input-form {
  background-color: #F6F6F6;
  border: none;
  color: #000;
  border-radius: 0;
  border-bottom: 3px solid #C9D1D1;
  height: 45px;
  background-clip: border-box;
  padding: 10px 0 0 15px !important;
}

.formulario .input-form:hover {
  border-color: #ff0037;
}

.formulario .input-form:focus {
  border: none;
  outline: none !important;
  outline-width: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 3px solid #ff0037;
}

.preview-orden {
  height: 100vh;
}

.nav-busqueda {
  position: relative;
}

.nav-busqueda .nav {
  background-color: #FFF;
  position: absolute;
  z-index: 5;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.tabla-cliente {
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: 100%;
}

.tabla-cliente tr td {
  padding: 10px 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.tabla-cliente tr td:first-child {
  width: 30%;
}

.lista-acciones {
  border-radius: 5px;
  position: relative;
}

.lista-acciones p {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.lista-acciones p i {
  float: right;
}

.lista-acciones ul {
  padding: 0;
  display: none;
  position: absolute;
  background-color: #FFF;
  top: 46px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.lista-acciones ul li a {
  padding: 10px 15px;
  color: #080D14;
}

.lista-acciones ul li a i {
  margin-right: 10px;
}

.tabla-acciones > ul {
  border: 0;
}

.tabla-acciones > ul li {
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.tabla-acciones > ul li:first-child {
  border-right: none;
}

.tabla-acciones > ul li:last-child {
  border-left: none;
}

.tabla-acciones > ul li button {
  border: none !important;
}

.tabla-acciones .tab-content {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.preview {
  position: relative;
}

.preview .overlay {
  position: absolute;
  background-color: #FFF;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.8;
  -webkit-animation: fadein 0.3s ease-in;
          animation: fadein 0.3s ease-in;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}

.anexos {
  height: 100% !important;
}

.inputfile {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border: 1px groove rgba(0, 0, 0, 0.21);
  border-radius: 5px;
  height: 38px;
}

.inputfile input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}

.inputfile div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.inputfile div .btn-seleccionar {
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.inputfile div .btn-seleccionar i {
  font-size: 25px;
  margin-bottom: 5px;
}

.inputfile div .nombre-principal {
  width: calc(100% - 100px);
}

.container__login {
  height: 100vh;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(19, 41, 61, 0.7))), url(../../imagenes/background_login.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(19, 41, 61, 0.7)), url(../../imagenes/background_login.jpg);
  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;
}

.container__login .card__login {
  background-color: rgba(0, 0, 0, 0.5);
  min-width: 350px;
  width: 500px;
  padding: 2em;
  border-radius: 7px;
}

.container__login .card__login label {
  color: #FFF;
  font-size: 1.2em;
}

.container__alert {
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 1500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container__alert.hide {
  display: none;
}

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

.container__alert.show .card__alert {
  -webkit-animation: bounce .3s ease-in;
          animation: bounce .3s ease-in;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.container__alert .card__alert {
  background-color: #FFF;
  max-width: 350px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  width: 350px;
}

.container__alert .card__alert .card__header {
  padding: 2em 0;
}

.container__alert .card__alert .card__header i {
  display: block;
  width: 1.8em;
  height: 1.8em;
  color: #FFF;
  font-size: 4em;
  border: 5px solid #FFF;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}

.container__alert .card__alert .card__body {
  padding: 2em 1em;
}

.container__alert .card__alert .card__body h3 {
  font-weight: bold;
  padding-bottom: 0.75em;
}

.container__alert .card__alert .card__body p {
  font-size: 1.1em;
  font-weight: 500;
}

.container__alert .card__alert .card__body button {
  width: 200px;
}

.previewFicha .etapas {
  padding-left: 30px;
  border-left: 1px dotted #aeaeae;
}

.previewFicha .etapas h4 {
  color: #008037;
  text-transform: uppercase;
}

.note-editor {
  cursor: auto !important;
}

.input_editar {
  background-color: transparent;
  padding: 5px 0 5px 0;
  border: 0;
}

.input_editar:focus {
  border: 0 !important;
  outline: none !important;
  outline-width: 0 !important;
  background-color: rgba(144, 179, 148, 0.2);
  -webkit-transition: background-color .2s ease;
  transition: background-color .2s ease;
}
/*# sourceMappingURL=estilos.css.map */