

/*set*/

:root {
  --verde: #82bc00;
  --light-grey: #f4f4f4;
  --grey: #747474;
  --darkgrey: #4a4a49;
  --medium-gray:#d0d0d0;
  --blanco: #ffffff;
  --danger: #f86969;
  --warning: #ffcb62;
  --success: #44e686;
  --info: #26b2e6;
  --info-hover: #178ab6;
  --verde_hover: #71a008;
}

.c_blanco {
  color: var(--blanco);
}

.c_grey {
  color: var(--grey);
}

.c_darkgrey {
  color: var(--darkgrey);
}

.c_verde {
  color: var(--verde);
}

.c_info {
  color: var(--info);
}

.c_danger {
  color: var(--danger);
}

.bg_blanco {
  background-color: var(--blanco);
}

.bg_grey {
  background-color: var(--grey);
}

.bg_darkgrey {
  background-color: var(--darkgrey);
}

.bg_verde {
  background-color: var(--verde);
}

.bg_info {
  background-color: var(--info);
}

.bg_danger {
  background-color: var(--danger);
}

.border_5_blanco {
  border: 5px solid var(--blanco);
}

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

.m_t_10 {
  margin-top: 10px;
}

.m_t_20 {
  margin-top: 20px;
}

.m_t_30 {
  margin-top: 30px;
}


.inactivo {
  pointer-events: none;
  color: #bebebe;
}

html,
body {
  width: 100%;
  font-family: "Lato", sans-serif;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

h1 {
  font-size: 2rem;
  color: var(--darkgrey);
  font-weight: 400;
  text-transform: uppercase;
  border-bottom: var(--grey) solid 1px;
}

h2 {
  font-size: 1.7rem;
  color: var(--grey);
  font-weight: 400;
  text-transform: uppercase;
}

h3 {
  font-size: 1.3rem;
  font-weight: bold;
}

h3 span {
  color: var(--grey);
}

h4 {
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
}

.subtitulo-seccion {
  margin-bottom: 20px;
}

.subtitulo-seccion h2 {
  border-bottom: var(--grey) solid 1px;
}

.user_icon {
  border-radius: 100px;
  width: 40px;
  height: 40px;
}

.u-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.u-input {
  outline: 0;
  border: 1px solid var(--medium-gray);
  padding: 5px 10px;
  height: 35px;
  font-size: 1rem;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-clip: padding-box;
}

.c-badge {
  font-size: 1rem;
  font-weight: 700;
  min-width: 17px;
  padding: 5px 4px;
  border-radius: 100px;
  display: block;
  line-height: 0.7;
  color: var(--blanco);
  text-align: center;
  white-space: nowrap;
  background-color: var(--danger);
}

.c-badge--header-icon {
  position: absolute;
  bottom: -9px;
}

.tooltip {
  width: 120px;
}

.tooltip-inner {
  padding: 8px 10px;
  color: var(--blanco);
  text-align: center;
  font-size: 1rem;
  border-radius: 3px;
}

.hamburger-toggle {
  position: relative;
  padding: 0;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  order: 1;
}

.hamburger-toggle [class*="bar-"] {
  display: block;
  background: var(--darkgrey);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
  border-radius: 2px;
  height: 2px;
  width: 24px;
  margin-bottom: 4px;
}

.hamburger-toggle [class*="bar-"]:nth-child(2) {
  width: 18px;
}

.hamburger-toggle [class*="bar-"]:last-child {
  margin-bottom: 0;
  width: 12px;
}

.hamburger-toggle.is-opened {
  left: 3px;
}

.hamburger-toggle.is-opened [class*="bar-"] {
  background: var(--verde);
}

.hamburger-toggle.is-opened .bar-top {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 15% 15%;
  transform-origin: 15% 15%;
}

.hamburger-toggle.is-opened .bar-mid {
  opacity: 0;
}

.hamburger-toggle.is-opened .bar-bot {
  -webkit-transform: rotate(45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 15% 95%;
  transform-origin: 15% 95%;
  width: 24px;
}

.hamburger-toggle:focus {
  outline-width: 0;
}

.hamburger-toggle:hover [class*="bar-"] {
  background: var(--verde);
}

.header-icons-group {
  display: flex;
  margin-left: auto;
  height: 100%;
}

.header-icons-group .c-header-icon:last-child {
  border-right: 0;
}

.c-header-icon {
  position: relative;
  display: flex;
  float: left;
  width: 70px;
  height: 100%;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  border-left: 1px solid var(--light-grey);
}

.c-header-icon i {
  font-size: 1.5rem;
  line-height: 40px;
}

.c-header-icon--in-circle {
  border: 1px solid var(--grey);
  border-radius: 100%;
}

.c-header-icon:hover i {
  color: var(--verde);
}

.l-header {
  padding-left: 70px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  background: var(--blanco);
  -webkit-transition: padding 0.5s ease-in-out;
  -moz-transition: padding 0.5s ease-in-out;
  -ms-transition: padding 0.5s ease-in-out;
  -o-transition: padding 0.5s ease-in-out;
  transition: padding 0.5s ease-in-out;
}

.l-header__inner {
  height: 100%;
  width: 100%;
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: stretch;
  border-bottom: 1px solid;
  border-color: var(--light-grey);
}

.sidebar-is-expanded .l-header {
  padding-left: 220px;
}

.c-search {
  display: flex;
  height: 100%;
  width: 350px;
  background-color: var(--light-grey);
  border-radius: 0px;
}

.c-search__input {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-right: 0;
  flex-basis: 100%;
  height: 100%;
  border: 0;
  font-size: 2.3rem;
  font-weight: 300;
  text-transform: uppercase;
  padding: 0 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--light-grey);
  border-radius: 0px;
  letter-spacing: 2px;
}

.c-search__input:focus {
  background-color: var(--verde);
  color: var(--blanco);
}

.c-dropdown {
  opacity: 0;
  text-align: left;
  position: absolute;
  flex-direction: column;
  display: none;
  width: 300px;
  top: 30px;
  right: -40px;
  background-color: var(--blanco);
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--grey);
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-clip: padding-box;
  -webkit-box-shadow: 0px 5px 14px -1px var(--light-grey);
  -moz-box-shadow: 0px 5px 14px -1px var(--light-grey);
  box-shadow: 0px 5px 14px -1px var(--light-grey);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-sidebar {
  width: 70px;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--blanco);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.l-sidebar .logo {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blanco);
}
.logo img {
  width:100%;
  max-width:120px;
}

.l-sidebar__content {
  height: 100%;
  position: relative;
}

.sidebar-is-expanded .l-sidebar {
  width: 220px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.c-menu>ul {
  display: flex;
  flex-direction: column;
}

.c-menu>ul .c-menu__item {
  color: var(--darkgrey);
}

.c-menu>ul .c-menu__item__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 35px;
  position: relative;
  cursor: pointer;
}

.c-menu>ul .c-menu__item__inner:before {
  position: absolute;
  content: " ";
  height: 0;
  width: 2px;
  left: 0;
  top: 50%;
  margin-top: -18px;
  background-color: var(--verde);
  opacity: 0;
}

.c-menu>ul .c-menu__item.is-active .c-menu__item__inner {
  border-left-color: var(--blanco);
  background-color: var(--verde);
}

.c-menu>ul .c-menu__item.is-active .c-menu__item__inner i {
  color: var(--blanco);
}

.c-menu>ul .c-menu__item.is-active .c-menu__item__inner .c-menu-item__title span {
  color: var(--blanco);
}

.c-menu__item__inner .c-menu-item__title span {
  font-size: 1.2rem;
}

.c-menu>ul .c-menu__item.is-active .c-menu__item__inner:before {
  height: 36px;
  opacity: 1;
}

.c-menu>ul .c-menu__item:not(.is-active):hover .c-menu__item__inner {
  background-color: var(--verde);
  border-left-color: var(--blanco);
  color: var(--blanco);
}

.c-menu>ul .c-menu__item i {
  flex: 0 0 57px;
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
}

.c-menu>ul .c-menu__item .c-menu-item__expand {
  position: relative;
  left: 100px;
  padding-right: 20px;
  margin-left: auto;
}

.sidebar-is-expanded .c-menu>ul .c-menu__item .c-menu-item__expand {
  left: 0px;
}

.c-menu>ul .c-menu__item .c-menu-item__title {
  flex-basis: 100%;
  padding-right: 10px;
  position: relative;
  left: 0px;
  opacity: 0;
 
}

.c-menu>ul .c-menu__item .c-menu-item__title span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

}

.sidebar-is-expanded .c-menu>ul .c-menu__item .c-menu-item__title {
  left: 0px;
  opacity: 1;
}

.c-menu>ul .c-menu__item .c-menu__submenu {
  background-color: var(--verde);
  padding: 15px;
  font-size: 1rem;
  display: none;
}

.c-menu>ul .c-menu__item .c-menu__submenu li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid;
  border-color: var(--verde);
  color: var(--light-grey);
}

.c-menu>ul .c-menu__item .c-menu__submenu li:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

main.l-main {
  width: 100%;
  height: 100%;
  padding: 70px 0 0 70px;

}

main.l-main .content-wrapper {
  padding: 25px;
  height: 100vh;
  background-color: var(--light-grey);
  /*  overflow: scroll; */
}

.content-wrapper>div {
  padding: 3%;
  width: 100%;
  max-width: 1200px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.09);
}

.content-wrapper_xl>div {
  padding: 3%;
  width: 100%;
  max-width: 1200px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.09);
}

.contenedor_principal {
  padding-top: 25px;
  margin-bottom: 5%;
  width: 100%;
  max-width: 1200px;
  background: var(--blanco);
}

.sidebar-is-expanded main.l-main {
  padding-left: 220px;
}

.component_title {
  padding-bottom: 20px;
}

.component_title h3 {
  color: var(--grey);
  font-size: 1.3rem;
  font-weight: 600;
  border-bottom: var(--light-grey) solid 1px;
  text-transform: uppercase;
  padding-bottom: 12px;
}

.content_border {
  height: 100%;
  margin-top: 2px;
  margin-bottom: 2px;
}

.navbar-nav>li>a {
  color: var(--verde);
}

.u-list a:hover {
  text-decoration: none;
}

.btn {
  border: none;
  border-radius: 100px;
  padding: 10px 16px 10px 16px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s sease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}

.btn-continuar {
  background-color: var(--info);
  color: var(--blanco);
}

.btn-continuar:hover {
  background-color: var(--info-hover);
  color: var(--blanco);
}

.btn-atras_cancelar {
  background-color: var(--grey);
  color: var(--blanco);
}

.btn-atras_cancelar:hover {
  background-color: var(--darkgrey);
  color: var(--blanco);
}

.btn-cancelar {
  background-color: transparent;
}

.btn-terminar {
  background-color: var(--verde);
  color: var(--blanco);
}

.btn-terminar:hover {
  background-color: var(--verde_hover);
  color: var(--blanco);
}

.btn-warning {
  background-color: var(--warning);
  color: var(--blanco);
}

.btn-danger {
  background-color: var(--danger);
  color: var(--blanco);
}

.btn-success {
  background-color: var(--success);
  color: var(--blanco);
}

.btn-info {
  background-color: var(--info);
  color: var(--blanco);
}


/*wizard*/

.wizard {
  margin: 20px auto;
  background: var(--blanco);
}

.wizard .nav-tabs {
  position: relative;
  margin: 40px auto;
  margin-bottom: 0;
  border-bottom-color: var(--light-grey);
}

.wizard>div.wizard-inner {
  position: relative;
}

.connecting-line {
  height: 2px;
  background: var(--light-grey);
  position: absolute;
  width: 80%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 1;
}

.wizard .nav-tabs>li.active>a,
.wizard .nav-tabs>li.active>a:hover,
.wizard .nav-tabs>li.active>a:focus {
  color: var(--darkgrey);
  cursor: default;
  border: 0;
  border-bottom-color: transparent;
}

span.round-tab {
  width: 70px;
  height: 70px;
  line-height: 70px;
  display: inline-block;
  border-radius: 100px;
  background: var(--blanco);
  border: 2px solid var(--light-grey);
  z-index: 2;
  position: absolute;
  left: 0;
  text-align: center;
  font-size: 2rem;
}

span.round-tab i {
  color: var(--darkgrey);
}

.wizard li.active span.round-tab {
  background: var(--blanco);
  border: 2px solid var(--verde);
}

.wizard li.active p {
  color: var(--verde);
}

.wizard li.active span.round-tab i {
  color: var(--verde);
}

span.round-tab:hover {
  color: var(--darkgrey);
  border: 2px solid var(--darkgrey);
}

.wizard .nav-tabs>li {
  width: 33.3%;
}

.wizard .nav-tabs>li a {
  width: 70px;
  height: 70px;
  margin: 20px auto;
  border-radius: 100%;
  padding: 0;
}

.wizard .nav-tabs>li a:hover {
  background: transparent;
}

.wizard .tab-pane {
  position: relative;
  padding-top: 50px;
}

.wizard h3 {
  margin-top: 0;
}

.step1 .row div {
  margin-bottom: 10px;
}

.step2 .row div {
  margin-bottom: 10px;
}

.step3 .row div {
  margin-bottom: 10px;
}

.step-buttons {
  margin-top: 20px;
}

.step_21 {
  border: 1px solid var(--light-grey);
  border-radius: 5px;
  padding: 10px;
}

.step33 {
  border: 1px solid var(--light-grey);
  border-radius: 5px;
  padding-left: 10px;
  margin-bottom: 10px;
}

.dropselectsec {
  width: 68%;
  padding: 6px 5px;
  border: 1px solid var(--light-grey);
  border-radius: 3px;
  color: var(--darkgrey);
  margin-left: 10px;
  outline: none;
  font-weight: normal;
}

.dropselectsec1 {
  width: 74%;
  padding: 6px 5px;
  border: 1px solid var(--light-grey);
  border-radius: 3px;
  color: var(--darkgrey);
  margin-left: 10px;
  outline: none;
  font-weight: 900;
}

.mar_ned {
  margin-bottom: 10px;
}

.wdth {
  width: 25%;
}

.birthdrop {
  padding: 6px 5px;
  border: 1px solid var(--light-grey);
  border-radius: 3px;
  color: var(--darkgrey);
  margin-left: 10px;
  width: 16%;
  outline: 0;
  font-weight: normal;
}


/* according menu */

#accordion-container {
  font-size: 1rem;
}

.accordion-header {
  font-size: 1rem;
  background: var(--light-grey);
  margin: 5px 0 0;
  padding: 7px 20px;
  cursor: pointer;
  color: var(--blanco);
  font-weight: 400;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.accordion-content a {
  text-decoration: none;
  color: #333;
}

.accordion-content td {
  border-bottom: 1px solid var(--light-grey);
}

@media (max-width: 585px) {
  .wizard {
    width: 90%;
    height: auto;
  }
  span.round-tab {
    font-size: 1rem;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .wizard .nav-tabs>li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .wizard li.active:after {
    content: " ";
    position: absolute;
    left: 35%;
  }
}


/*formularios*/
.ingresar_rut {
  display: inline;
  width: 140px!important;
}

.verificador_rut {
  width: 40px!important;
}

.form-control {
  background-color: var(--light-grey);
  border: 1px solid transparent;
  box-shadow: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 2px;
}

.form-control:focus {
  border: 1px solid var(--verde) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgb(130, 188, 0);
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid var(--verde) !important;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--verde) !important;
}

label {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--darkgrey);
}


/*search home*/

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.container-busca {
  overflow: hidden;
  position: relative;
}

.container-busca label {
  color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.container-busca i {
  font-size: 2rem;
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all ease-in-out 0.4s;
  color: var(--verde);
}

.container-busca input[type="search"] {
  background: var(--light-grey);
  border: none;
  border-radius: 2px;
  font-size: 1.8rem;
  outline: none;
  padding: 1rem 1rem 1rem 2rem;
  width: 150px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.container-busca input[type="search"]:focus {
  width: 300px;
}

.container-busca input[type="search"]:valid~label,
.container-busca input[type="search"]:focus~label {
  display: none;
}

.container-busca input[type="search"]:focus~i {
  cursor: pointer;
  right: 1rem;
}

table.dataTable thead th {
  border: none !important;
}

table.dataTable {
  border-collapse: collapse;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: var(--info) !important;
  border: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  background: var(--light-grey) !important;
  border: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--info) !important;
  border: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  border: none;
}

.progress {
  margin-bottom: 0px;
}

.progress-bar-success {
  background-color: var(--success);
}

.progress-bar-danger {
  background-color: var(--danger);
}

.progress-bar-warning {
  background-color: var(--warning);
}

.progress-bar-info {
  background-color: var(--info);
}

table {
  margin-bottom: 20px !important;
}
/*
table tbody td {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
*/

/*panel de estados component*/

.panel_estados_component {
  background-color: var(--darkgrey);
  padding: 0;
  overflow: hidden;
  margin-bottom: 20px;
  height: 279px;
  
}

.panel_estados_component article {
  padding: 10%;
  z-index: 2;
  position: absolute;
  width: 100%;
}

.panel_estados_component img {
  width: 100%;
  opacity: 0.3;
  -webkit-filter: grayscale(50%);
  filter: grayscale(50%);
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.panel_estados_component h4 {
  border-top: var(--blanco) solid 1px;
  padding-top: 12px;
}

.panel_estados_component h3 {
  line-height: 0px;
  font-size: 2rem;
}

.panel_estados_component select {
  margin-bottom: 30px;
}

.disabled {
  display: none;
}


/*tabla*/


/*select 2*/

.select2 {
  width: 100% !important;
}


/*toastr*/

.button-container a.success {
  background: var(--verde);
}

.button-container a.error {
  background: var(--danger);
}

.button-container a.alert {
  background: var(--warning);
}

.search_by_rut {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

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

.subtitulo_simular {
  margin-top: 70px;
  margin-bottom: 40px;
}

#bEdit {
  color: var(--verde);
}

#bEdit,
#bElim,
#bAcep,
#bCanc {
  background: none;
}

#bEdit:hover {
  transform: scale(1.3);
  background: none !important;
}

#bElim {
  color: var(--danger);
}

#bElim:hover,
#bAcep:hover,
#bCanc:hover {
  transform: scale(1.3);
  background: none !important;
}

#bAcep {
  color: var(--verde);
  background: none !important;
}

#bCanc {
  background: none !important;
}

td {
  max-width: 100% !important;
}

td input {
  width: 100%;
  height: 34px;
  background-color: var(--light-grey);
  border: 1px solid transparent;
  box-shadow: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 2px;
}

td input:focus {
  border: var(--verde) solid 1px;
}

.table_edit tbody tr td a .fa-pencil {
  color: var(--verde);
}

.table_edit tbody tr td a .fa-check {
  color: var(--verde);
}

.table_edit tbody tr td a .fa-trash {
  color: var(--danger);
}

.table_edit tbody tr td a {
  display: block;
}

.dropdown {
  list-style-type: none;
}

.dropdown .dropdown-menu {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  max-height: auto;
  overflow: hidden;
  opacity: 0;
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  max-height: 400px;
  overflow: auto;
}

.card_alert {
  background: var(--blanco);
  color: var(--darkgrey);
}

.card_alert li {
  min-width: 650px;
  padding: 15px;
  border-bottom: var(--light-grey) solid 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.card_alert li span {
  color: var(--verde_hover);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.card_alert li:hover {
  background-color: var(--verde);
  color: var(--blanco);
  cursor: pointer;
  padding-left: 30px;
}

.card_alert li:hover span {
  color: var(--blanco) ;
}

.card_alert li:hover i {
  color: var(--blanco) ;
}

.card_alert li:hover a {
  color: var(--blanco);
}

.card_alert li a {
  padding: 0;
  color: var(--darkgrey);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.card_alert li a:hover {
  background-color: transparent !important;
}

.dataTables_wrapper .dataTables_filter {
  display: block;
  margin-bottom: 20px;
}

.dataTables_wrapper .dataTables_filter input {
  background-color: var(--light-grey);
  border: 1px solid transparent;
  box-shadow: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 2px;
  padding: 6px;
}

.dataTables_wrapper .dataTables_filter input:focus {
  border: 1px solid var(--verde) !important;
}

.btn-ver-share,
.btn-ver-detalle-list,
.btn-ver-carpeta-list,
.btn-ver-historial-list,
.btn-editar-list {
  font-size: 2rem;
  display: inline;
  padding: 5px;
  text-align: right;
  float: right;

}

.btn-ver-share,
.btn-ver-detalle-list {
  color: var(--verde);
}

.btn-ver-share,
.btn-ver-detalle-list:hover {
  color: var(--verde);
  opacity: 0.7;
}

.btn-ver-carpeta-list {
  color: var(--darkgrey);
}

.btn-ver-carpeta-list:hover {
  color: var(--darkgrey);
  opacity: 0.7;
}

.btn-ver-historial-list {
  color: var(--warning);
}

.btn-ver-historial-list:hover {
  color: var(--warning);
  opacity: 0.7;
}

.btn-editar-list {
  color: var(--info);
}

.btn-editar-list:hover {
  color: var(--info-hover);
  opacity: 0.7;
}

/* Small Devices, Tablets */

@media only screen and (max-width: 1200px) {
  .btn-ver-share,
  .btn-ver-detalle-list,
  .btn-ver-carpeta-list,
  .btn-ver-historial-list,
  .btn-editar-list {
    font-size: 2rem;
    text-align: center;
    padding: 6px;
    display:inline;
    width: 50%;
  }
}

.divider {
  width: 100%;
  height: 30%;
}

.tabla_detalle_operaciones .dataTables_wrapper .dataTables_length {
  display: none;
}

.tabla_detalle_operaciones {
  margin-top: 5%;
}

.tabla_detalle_operaciones .dataTables_wrapper .dataTables_filter {
  display: none;
}

.tabla_detalle_operaciones table tbody tr td a {
  color: var(--grey);
}

.tabla_detalle_operaciones table tbody tr td a:hover {
  color: var(--verde);
  text-decoration: none;
}

#finalizado .sorting_1 {
  background-color: var(--verde);
  width: 20px;
}

#finalizado .sorting_1 a {
  color: var(--blanco);
}

#status_finalizado a {
  color: var(--verde);
}

#errores .sorting_1 {
  background-color: var(--danger);
  width: 20px;
}

#errores .sorting_1 a {
  color: var(--blanco);
}

#status_errores a {
  color: var(--danger);
}

.modal-content {
  border-radius: 0px;
}

.grid {
  display: grid;
}

.num_modal {
  background-color: var(--verde);
  padding: 17px;
  margin: 0 auto;
  position: absolute;
  color: var(--blanco);
  left: 0;
  top: 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.title_modal {
  margin-left: 50px;
  padding-bottom: 0px;
  padding-top: 3px;
}

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

.line_divider {
  width: 100%;
  background-color: var(--light-grey);
  height: 1px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.modal-footer {
  border-top: none;
  text-align: center;
}

.clickable {
  cursor: pointer;
}

.panel {
  background-color: var(--blanco);
  border: var(--light-grey) solid 1px;
  border-radius: 0;
  /*-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);*/
  /*box-shadow: 0 1px 1px rgba(0,0,0,.05);*/
}

.product-type {
  margin-top: 45px;
  border: var(--light-grey)  solid 1px;
}

.panel_content {
  margin-top: 40px;
}

.panel-heading span {
  margin-top: -20px;
  font-size: 15px;
}

.panel-primary>.panel-heading {
  color: #000;
  background-color: var(--blanco);
  border-bottom: 1px solid var(--light-grey);
  padding-top: 20px;
  padding-bottom: 20px;
}

.panel-title {
  font-size: 22px;
  font-weight: 400;
}

.panel_product_type {
  margin-top: 20px;
}

.panel_product_type {
  line-height: 26px;
}

.panel_product_type {
  font-size: 18px;
  font-weight: 400;
  color: var(--darkgrey)
}



.f-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  text-align: left;
  width: 300px;
  min-height: 20px;
  padding: 20px 40px 20px 18px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.85);
  z-index: 2000;
}
.f-notification:hover {
  opacity: 0.9;
}
.f-notification:hover .f-notification-close {
  background: rgba(77, 77, 79, 0.1);
}
.f-notification .f-notification-title {
  font-weight: 600;
  color: #4d4d4f;
  cursor: default;
}
.f-notification .f-close {
  position: absolute;
  right: 15px;
  top: 20px;
  height: 20px;
  width: 20px;
  line-height: 18px;
  vertical-align: middle;
  text-align: center;
  border-radius: 20px;
  color: #4d4d4f;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.25);
}
.f-notification .f-close:hover {
  background: rgba(77, 77, 79, 0.2);
}

.f-notification-success {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1ae368+0,15cc95+100 */
  background: #1ae368; /* Old browsers */
  background: -moz-linear-gradient(
    -45deg,
    #1ae368 0%,
    #15cc95 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    -45deg,
    #1ae368 0%,
    #15cc95 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    135deg,
    #1ae368 0%,
    #15cc95 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1ae368', endColorstr='#15cc95',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.f-notification-error {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f86969+2,d34a4a+100 */
  background: #f86969; /* Old browsers */
  background: -moz-linear-gradient(
    -45deg,
    #f86969 2%,
    #d34a4a 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    -45deg,
    #f86969 2%,
    #d34a4a 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    135deg,
    #f86969 2%,
    #d34a4a 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f86969', endColorstr='#d34a4a',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.f-notification-alert {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffcd36+0,ff9f19+100 */
  background: #ffcd36; /* Old browsers */
  background: -moz-linear-gradient(
    -45deg,
    #ffcd36 0%,
    #ff9f19 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    -45deg,
    #ffcd36 0%,
    #ff9f19 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    135deg,
    #ffcd36 0%,
    #ff9f19 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffcd36', endColorstr='#ff9f19',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.f-show {
  animation-name: animSlideElastic;
  animation-duration: 1s;
  animation-timing-function: linear;
}

.f-hide {
  animation-name: animSlideElastic;
  animation-duration: 0.5s;
  animation-direction: reverse;
}

@keyframes animSlideElastic {
  0% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1000, 0, 0, 1);
  }
  3.333333% {
    transform: matrix3d(
      1.96989,
      0,
      0,
      0,
      0,
      1,
      0,
      0,
      0,
      0,
      1,
      0,
      521.82545,
      0,
      0,
      1
    );
  }
  6.666667% {
    transform: matrix3d(
      1.4235,
      0,
      0,
      0,
      0,
      1,
      0,
      0,
      0,
      0,
      1,
      0,
      218.3238,
      0,
      0,
      1
    );
  }
  10% {
    transform: matrix3d(
      1.08167,
      0,
      0,
      0,
      0,
      1,
      0,
      0,
      0,
      0,
      1,
      0,
      57.59273,
      0,
      0,
      1
    );
  }
  13.333333% {
    transform: matrix3d(
      0.99057,
      0,
      0,
      0,
      0,
      1,
      0,
      0,
      0,
      0,
      1,
      0,
      -11.12794,
      0,
      0,
      1
    );
  }
  16.666667% {
    transform: matrix3d(
      0.98719,
      0,
      0,
      0,
      0,
      1,
      0,
      0,
      0,
      0,
      1,
      0,
      -30.40503,
      0,
      0,
      1
    );
  }
  20% {
    transform: matrix3d(
      0.99541,
      0,
      0,
      0,
      0,
      1,
      0,
      0,
      0,
      0,
      1,
      0,
      -28.10141,
      0,
      0,
      1
    );
  }
  23.333333% {
    transform: matrix3d(
      0.99936,
      0,
      0,
      0,
      0,
      1,
      0,
      0,
      0,
      0,
      1,
      0,
      -19.40752,
      0,
      0,
      1
    );
  }
  26.666667% {
    transform: matrix3d(
      1.00021,
      0,
      0,
      0,
      0,
      1,
      0,
      0,
      0,
      0,
      1,
      0,
      -11.08575,
      0,
      0,
      1
    );
  }
  30% {
    transform: matrix3d(
      1.00016,
      0,
      0,
      0,
      0,
      1,
      0,
      0,
      0,
      0,
      1,
      0,
      -5.23737,
      0,
      0,
      1
    );
  }
  33.333333% {
    transform: matrix3d(
      1.00005,
      0,
      0,
      0,
      0,
      1,
      0,
      0,
      0,
      0,
      1,
      0,
      -1.84893,
      0,
      0,
      1
    );
  }
  36.666667% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.22079, 0, 0, 1);
  }
  40% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.37284, 0, 0, 1);
  }
  43.333333% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.46116, 0, 0, 1);
  }
  46.666667% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.35963, 0, 0, 1);
  }
  50% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.22487, 0, 0, 1);
  }
  53.333333% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.11734, 0, 0, 1);
  }
  56.666667% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.04909, 0, 0, 1);
  }
  60% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.01295, 0, 0, 1);
  }
  63.333333% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.0025, 0, 0, 1);
  }
  66.666667% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00684, 0, 0, 1);
  }
  70% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00632, 0, 0, 1);
  }
  73.333333% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00436, 0, 0, 1);
  }
  76.666667% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00249, 0, 0, 1);
  }
  80% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00118, 0, 0, 1);
  }
  83.333333% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00042, 0, 0, 1);
  }
  86.666667% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00005, 0, 0, 1);
  }
  90% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00008, 0, 0, 1);
  }
  93.333333% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.0001, 0, 0, 1);
  }
  96.666667% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00008, 0, 0, 1);
  }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}



.box-datos {
  height: 100%;
  width: 100%;
  margin: 0 auto;
}

.title-box-datos-user {
  font-size: 1.5rem;
}

.title-box-datos-user p{
  float: left;
}

.title-box-datos-user a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.title-box-datos-user a:focus {
  text-decoration: none;
  opacity: 1;
}

.panel-title a p {
  display: inline;
  padding-right: 5%;
}

.data-user-collapsible {
  padding: 0;
}

.panel-data-user-body {
  background: var(--medium-gray);
}

.buttons-action-data-user {
  padding: 0;
  margin: 0;
  background-color: var(--verde);
  min-height: 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.buttons-action-data-user a {
  display: inline;
  color: var(--blanco);
  -webkit-transition: 0.2s ease all;
}

.buttons-action-data-user a:hover {
  color: var(--blanco);
}

.no-border-radius-collapse {
  border-top-left-radius: 0px;
  color: #333;
  background-color: var(--light-grey);
  border-color: red;
  box-shadow: none;
  border-top-right-radius: 0px;
  min-height: 42px;
}

.panel-no-border {
  border-radius: 0px !important;
  border: none;
  -webkit-box-shadow: none;
}

.caret-user-data {
  display: inline;
  font-size: 2rem;
  color: var(--verde);
}

.accordion-historial {
  width: 80%;
  margin: 0 auto;
}

.panel-historial .panel-title a {
  color: var(--darkgrey) font-size: 1.4rem;
}

.panel-historial .panel-title a:hover,
.panel-historial .panel-title a:focus {
  opacity: .5;
  text-decoration: none;
}

.panel-historial .panel-title a strong {
  color: var(--darkgrey);
  font-size: 1.4rem;
}

.panel-historial .panel-title a span {
  color: var(--verde);
  font-size: 1.4rem;
}

.panel-historial .panel-title a article {
  display: inline;
  padding-right: 12px;
}

.modal-footer-center {
  text-align: center!important;
}

.divider_form {
  width: 100%;
  height: 1px;
  background-color: var(--light-grey);
  margin-top: 6%;
  margin-bottom: 6%;
}

.modal_padding {
  padding: 8%;
}


.modal_padding_h {
  padding:0 8%;
}

.modal_padding_v {
  padding:8% 0;
}

.doc_pendientes_upload {
  background-color: var(--light-grey);
  padding: 5%;
}

.doc_pendientes_upload ul {
  padding: 0;
}

.doc_pendientes_upload ul li {
  display: block;
  text-decoration: none;
  background-color: var(--blanco);
  margin-top: 4px;
  padding: 10px;
}

.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.btn-file {
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  transition: all 0.2s ease;
}

.btn-file:hover {
  opacity: .4;
}

.btn-file>input {
  position: absolute;
  right: 0;
  margin: 0;
  opacity: 0;
  direction: ltr;
  cursor: pointer;
  width: 20px;
  overflow: hidden;
  top: -6px;
}

.fileupload {
  margin-bottom: 0px;
  width: 40px;
  float: right;
  text-align: center;
  background-color: none;
}

.fileupload .uneditable-input {
  display: inline-block;
  margin-bottom: 0px;
  vertical-align: middle;
  cursor: text;
}

.fileupload .thumbnail {
  overflow: hidden;
  display: inline-block;
  margin-bottom: 5px;
  vertical-align: middle;
  text-align: center;
}

.fileupload .thumbnail>img {
  display: inline-block;
  vertical-align: middle;
  max-height: 100%;
}

.fileupload .btn {
  vertical-align: middle;
}

.fileupload-exists .fileupload-new,
.fileupload-new .fileupload-exists {
  display: none;
}

.fileupload-inline .fileupload-controls {
  display: inline;
}

.fileupload-new .input-append .btn-file {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}

.thumbnail-borderless .thumbnail {
  border: none;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.fileupload-new.thumbnail-borderless .thumbnail {
  border: 1px solid #ddd;
}

.fileupload-new i {
  color: var(--grey);
  font-size: 2.5rem;
}

.fileupload {
  border-left: var(--medium-gray) solid 1px;
}

.doc_listos ul li {
  background-color: var(--verde);
  color: var(--blanco);
}

.doc_listos div span i {
  color: var(--blanco);
}

/*input[type="checkbox"],
input[type="radio"] {
  position: absolute;
  right: 9000px;
}*/


/*Check box*/



.title_box_modals {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--darkgrey);
  border-bottom: var(--light-grey) solid 1px;
  padding-bottom: 7px;
  width: 100%;
}

.title_modal span {
  font-size: 1.2rem;
  padding-left: 12px;
  font-weight: 400;
}
.check_tabla {
  margin: 0px;
  margin-top: 0px;
  line-height: 1px;
  height:12px;
}

.bg_check {
  padding: 12px;
  background-color: var(--light-grey) ;
}

.datepicker table tr td span {
  display: inline-block !important;
  width: 30%;
  height: 54px;
  line-height: 54px;
  float: none!important;
  margin: 1%;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
/*
.table-condensed tbody tr td {
  width: 100%!important;
}
*/
.datepicker table tr td span.active.active {
  color: var(--blanco);
  background-color: var(--verde);
  border-color: var(--verde);
}

.datepicker table tr td.active.active {
  color: var(--blanco);
  background-color: var(--verde);
  border-color: var(--verde);
}

.datepicker table tr td.active.active:hover {
  color: var(--blanco);
  background-color: var(--verde_hover);
  border-color: var(--verde_hover);
}

.calendar_icon {
  border: none;
  transition: all 0.2s ease;
  background-color: var(--verde);
  color: var(--blanco);
}

.calendar_icon:hover {
  opacity: .4;
}

.shake {
  animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
  transform: translate3d(0, 0, 0);
  font-size: 2rem !important;
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}


.display_none {
  display: none;
}

.label_rut {
  display: block;
}

#buscar_rut {
  margin-left: 12px;
}

.contenedor_documentos_cliente {
  margin-top: 3%;
}

.contenedor_documentos_cliente .titulo {
  background-color: var(--grey);
  color: var(--blanco);
  padding: 11px 22px;
}

.contenedor_documentos_cliente .titulo h2 {
  color: var(--blanco);
}

.contenedor_documentos_cliente .lista_documentos {
  padding: 11px 22px;
}

.lista_documentos div img {
  width: 100%;
  max-width: 50px;
  margin-bottom: 10px;
}

.lista_documentos div p {
  font-size: 1.2rem;
  line-height: 13px;
}

.document_box {
  transform: scale(1);
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  padding: 20px;
  height: 160px;
}

.document_box:hover {
  transform: scale(1.1);
  cursor: pointer;
  background-color: var(--light-grey);
  -webkit-box-shadow: 0px 5px 14px -1px var(--light-grey);
  -moz-box-shadow: 0px 5px 14px -1px var(--light-grey);
  box-shadow: 0px 5px 14px -1px var(--light-grey);
}

.img_doc_modal {
  width: 100%!important;
  max-width: 110px!important;
  margin: 0 auto;
}

.build_ul {
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .build_ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
  }
}

.build_ul li {
  display: inline;
}

.piso {
  font-size: 2rem;
  padding: 12px;
  background-color: var(--verde);
  color: var(--blanco);
  font-weight: 700;
}

.depto {
  padding: 12px;
  background-color: var(--light-grey);
  min-width: 50px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.piso_oculto {
  display: inline;
  opacity: 0;
 
}

@media (max-width: 1200px) {
  .piso_oculto {
    display: none!important;
  }
}

@media (max-width: 1200px) {
  .depto {
    padding: 12px;
    background-color: var(--light-grey);
    text-align: center;
  }
}

.depto:hover {
  background-color: var(--grey);
  color: var(--blanco);
}

.depto:hover a {
  color: var(--blanco);
}

.depto a {
  color: var(--grey);
}

.depto a:hover {
  text-decoration: none;
}

.bloques_deptos {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.bloque_deptos_titulo {
  padding: 12px;
  font-size: 1.6rem;
  margin-top: 6%;
  background-color: var(--darkgrey);
  color: var(--blanco);
  width: 100%;
}

.bloques_deptos:nth-child(2n+1) {
  background-color: var(--light-grey);
}

.flexbox-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
}

.login {
  height: 100vh;
  padding: 0;
}

.login div article {
  margin: 0 auto;
}

.container_imagen_login {
  height: 100vh;
}

.container_login_login {
  height: 100vh;
  background-color: var(--light-grey);
}

.logo_login {
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 0 auto;
}

.ilustracion_login {
  width: 100%;
  max-width: 440px;
  display: block;
  margin: 0 auto;
}

.box_login {
  background-color: var(--blanco);
  max-width: 400px;
  min-width: 270px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.26);
  -moz-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.26);
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.26);
  padding: 5%;
}

.box_login h3 {
  font-size: 2rem;
}

.recuperar_contrasena a {
  color: var(--info);
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.recuperar_contrasena a:hover {
  color: var(--info-hover);
  text-decoration: none;
}

form .row {
  margin-top: 5px;
  margin-bottom: 5px;
}

.filtrar_button {
  margin-top: 21px;
}

.filtro_table_resultados {
  margin-bottom: 60px;
}

.drop-down-mantenedor {
  background-color: var(--darkgrey);
  color: var(--blanco);
}

.drop-down-bancos_box, .drop-down-reporte_box, .drop-down-carta_box, .drop-down-propias_box, .drop-down-correos_box {
  transform: translate(-220px, 0px);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  height: 0;
}

.drop-down-bancos_box-mostrar, .drop-down-propias_box-mostrar, .drop-down-reporte_box-mostrar, .drop-down-carta_box-mostrar, .drop-down-correos_box-mostrar {
  transform: translate(0px, 0px);
  opacity: 1;
  height: auto;
}


.num_roll_deptos {
  font-size: 11px;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.login_google {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.login_google:hover {
  cursor: pointer;
  opacity: .6;
}

.icon_product_login {
  width: 100%;
  max-width: 120px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.date-table-dia-libre {
  width:200px!important;
}


.bg_grey_table {
  background-color:var(--darkgrey);
  color:var(--blanco);
}

 #sel_reportes { font-size:18px!important; height: 40px!important; }
 #sel_reportes option { font-size:18px!important; }



.login_legal {
  font-family: 'lato', sans-serif!important;
  font-size: 14px;
  font-weight: 400;
  height: 100vh;
  background:var(--grey4);
}
.welcome_legal>section>h1 {
  font-weight: 900;
  font-size: 5rem;
  color:#fff;
}

.login_images_legal>h2 {
  font-weight: 700;
  font-size: 2rem;
  color:#404853;
  margin-bottom: 30px;

}
.container_login_legal {
    height:100vh;
     display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}
.login_images_legal {
        width: 100%;
    margin: 0 auto;
    max-width: 300px;
}
.login_images_legal>.brand_login, .login_images_legal>a>img  {
    width:100%;
    max-width: 250px;
    margin:0 auto;
}
.login_images_legal>a>img {
    margin-top:10%;
}
.mobile_top_image_legal {
        position: fixed;
        width:100%;

}
.welcome_legal {
    height:100vh;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 0 20% 0 10%;
       display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.list-group-item.wk { padding: 1px 15px; font-size: 12px; }

.button-ver-tabla {
  background:#27B2E6;
  color:#fff;
  padding:2px 5px 2px 5px;
}
.button-ver-tabla:hover {
  background:#27B2E6;
  color:#fff!important;
  opacity: .6;
}
.btn-descargar-pdf {
  background:var(--verde);
  color:var(--blanco);
  margin:0 auto;
}
.modal-header {
  display: inline-block!important;
}

.pdf-falso {
  width:100%;
  max-width: 400px;
  margin:0 auto;
}

.btn-instrucciones {
  padding: 0;
  margin: 0;
  min-height: 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blanco);
  font-size: 10px;
  width: 100%;
  text-decoration: none;
  border-top: 1px solid #ffffff;
  background-color: #dddddd;
}

.btn-instrucciones.con {
  background-color: #a9c768;
}

.btn-instrucciones.sin {
  background-color: #ff9e9e;
}

.btn-flujo {
  background-color: var(--verde);
  color: var(--blanco);
  font-size: 0.7rem;
  border-radius: 10px;
  padding: 12px;
  width: 100%;
  margin: 5px auto;
}

.show{
  display: inline!important;
}

.trumbowyg-box, .trumbowyg-editor { min-height: 150px; }

.form-check-label {
    margin-left: 22px;
}

.ambienteqa {
  background: #e40f0f;
  width: 100%;
  position: fixed;
  z-index: 555;
  color: #FFF;
  font-size: 12px ;
  text-align: center;
}

.popover{
    max-width: 100%; 
}

.buttons-action-data-user-no-margin {
  padding: 0;
  background-color: var(--verde);
  min-height: 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.buttons-action-data-user-no-margin a {
  display: inline;
  color: var(--blanco);
  -webkit-transition: 0.2s ease all;
}

.buttons-action-data-user-no-margin a:hover {
  color: var(--blanco);
}


.tabla-datos-detalle td, .tabla-datos-detalle th {
  padding: 0.35rem 0.75rem;
}

.btn-colmena { 
  padding: 0; font-size: 14px; 
}

div .titulo-panel-detalle{
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 8px;
}

.globonotifiacion {
  position:relative;
  top:-10px;
  left:-10px;
} 