[v-cloak] {
  display  : none !important;
}

html {
    box-sizing  : border-box;
    font-size   : .69vw;
    min-height  : 100%;
}

body{
    margin: 0;
    padding: 0
}

/*CABECERA*/

.w-new-users__header {
    background: url(images/background-01.svg) no-repeat center/cover;
}

.w-toolbar.main-bar {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}

.w-actiongroup.main-actiongroup {
    display: flex;
    justify-content: flex-end;
    margin-top: -3rem;
    padding: 1rem 3rem;
}

.w-new-users__search .w-input {
    width: 50rem;
    padding: .8rem 3rem;
    background: white url(images/icon--lupa.svg) no-repeat .5rem .5rem/2rem;
    border: none;
    font-family: 'Open Sans';
    color: #444;
    font-size: 1.4rem;
}

.w-input::placeholder {
    font-family: 'Open Sans';
    font-style: italic;
}

.w-action--search {
    padding: .8rem 2rem;
    border: .1rem solid #7f819a;
    background-color: #f2f2f2;
    border-radius: .5rem;
    margin-left: .5rem;
    cursor: pointer;
    transition: background ease-in 0.2s;
}
.w-action--search:hover{
    background-color: #dddddd;
}

.w-action--search .w-action__label {
    font-family: 'Dosis';
    text-transform: uppercase;
    color: #7f819a;
    font-size: 1.4rem;
}

.w-action--new-user {
    background: #f2f2f2 url(images/icon_agregar-usuario.svg) no-repeat center;
    padding: 1.8rem;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: background ease-in 0.2s;
}

.w-action--new-user:hover{
    background-color: #dddddd;
}

.w-action--new-user .w-action__label{
    display: none;
}

/* TABLA */

.lista-usuarios{
    margin: 2rem;
}

.lista-usuarios .w-table {
    border-collapse : collapse;
    table-layout    : fixed;
    width           : 100%;
}

.lista-usuarios .w-table-header__cell {
    background-color    : #f2f2f2;
    border              : .2rem solid #bcbcca;
    color               : #7f819a;
    font                : 600 1.3rem/1.3rem 'Dosis', sans-serif;
    padding             : .4rem 1rem;
    text-align          : center;
    text-transform      : uppercase;
    transition          : background-color ease .25s, border-color ease .25s, color ease .25s;
}

.w-table__body{
    color: #333;
}

.lista-usuarios .w-table-body__row:nth-child(odd) {
    background-color    : #fff;
}

.lista-usuarios .w-table-body__row:nth-child(even) {
    background-color    : #f0f0f0;
}

.lista-usuarios .w-table-body__cell {
    border      : .2rem solid #e9e9e9;
    font        : 1.2rem/1.2rem 'Open Sans', sans-serif;
    padding     : 0.4rem  1.2rem;
    text-align  : center;
}

.lista-usuarios .w-table-body__cell:empty::before {
    content : '-';
}

.lista-usuarios .w-table-cell__content:empty::before {
    content : '-';
}

.w-table-cell--document-user, .w-table-cell--date-create-user, .w-table-cell--date-update {
    width: 12rem;
}

.w-table-cell--statet-user {
    width: 14rem;
    text-transform: uppercase;
}

.w-table-cell--actiont-user {
    width: 16rem;
}

.w-table-body__row .w-table-cell--name-user {
    text-align: left;
    text-transform: uppercase;
}

.w-state--active {
    background: url(images/icon-activo.svg) no-repeat 0/1.8rem;
    padding: 1.2rem;
}

.w-state--disabled {
    background: url(images/icon--disabled.svg) no-repeat 0/1.8rem;
    padding: 1.2rem;
}

.w-table-cell__action--user-blocked {
    border: none;
    background: url(../assets/images/icon--circulo-equis.svg) center/2.8rem no-repeat;
    background-color: transparent;
    padding: 1.8rem;
    margin-right: 1rem;
}

.w-table-cell__action--reset-pass {
    border: none;
    background: url(../assets/images/icon_resetear-clave.svg) center/3.3rem no-repeat;
    background-color: transparent;
    padding: 1.8rem;
}

.w-table-cell__action--user-un-blocked {
    border: none;
    background: url(../assets/images/icon-activar.svg) center/2.8rem no-repeat;
    background-color: transparent;
    padding: 1.8rem;
    margin-right: 1rem;
}

.w-action.w-table-cell__action:hover {
    background-color: #e4e4ee;
    border-radius: .8rem;
    cursor: pointer;
}

.w-spinner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 40rem;
    border-left: .2rem solid #e9e9e9;
    border-right: .2rem solid #e9e9e9;
    border-bottom: .2rem solid #e9e9e9;
}

.w-spinner__title {
    color: #444;
    margin: 0;
    font: 500 1.6rem/1.6rem 'Open Sans', sans-serif;
}

.w-spinner__subtitle {
    color: #999;
    font: 1.4rem/1.4rem 'Open Sans', sans-serif;
}

/* POP-UPS */

.w-modal--change-password {
    background: #fcf6f2 no-repeat bottom;
    background-size: contain;
    border-radius: 1rem;
    box-shadow: 0 0 1.5rem 0.5rem rgb(0 0 0 / 40%);
    max-width: 45rem;
    min-width: 30rem;
    padding: 1rem 1rem 2.5rem;
    border: none;
}

.w-modal--change-password .w-modal__preheader {
    display: flex;
    justify-content: flex-end;
}

.w-modal--change-password .w-action {
    align-items: center;
    background-color: #f9efdc;
    border: none;
    border-radius: .5rem;
    cursor: pointer;
    display: flex;
    height: 2rem;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 2rem;
}

.w-modal--change-password .w-modal__action--close::before {
    -webkit-mask: url(../assets/images/icon--equis.svg) center no-repeat;
    -webkit-mask-size: contain;
    background-color: #d2b98e;
    content: '';
    height: 1rem;
    width: 1rem;
}

.w-modal--change-password .w-action__label {
    display: none;
}

.w-modal--change-password .w-modal__header {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 0 1.5rem;
}

.w-modal--change-password .w-modal__body {
    display: flex;
    justify-content: center;
    margin: 0 8rem;
}

.w-modal--change-password .modal__cuerpo {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.w-modal--change-password .w-modal__title-label {
    color: #193c82;
    display: block;
    font: 700 2rem/2rem 'Dosis', sans-serif;
    text-align: center;
    text-transform: uppercase;
}

.w-modal--change-password .w-modal__title {
    margin: 0;
}

.w-modal--change-password .nombre-usuario {
    color: #737373;
    display: block;
    font: 700 1.7rem/1.7rem 'Dosis', sans-serif;
    text-transform: uppercase;
    margin: 1rem;
    text-align: center;
}

.item.nueva-clave {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.modal__cuerpo .subtitulo {
    font-family: 'Dosis';
    font-size: 1.4rem;
    font-weight: 600;
    color: #909090;
    text-transform: uppercase;
    display: flex;
    justify-content: flex-end;
    width: 15rem;
    padding-right: 1rem;
    text-align: right;
}

.nueva-clave input, .reingrese-clave input {
    font-family: 'Open Sans', sans-serif;
    font-size: 13.3333px;
    border: none;
    background-color: #FCF2D5;
    padding: .4rem .8rem;
    border-radius: .3rem;
    display: inline-block;
    outline: none;
    width: 12rem;
}

.modal__cuerpo .subtitulo:after {
    content: ':';
    padding-left: .2rem;
}

.item.reingrese-clave {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.w-modal--change-password .w-modal__footer {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.btn-aceptar-guardar {
    align-items: center;
    border: .2rem solid #4267bb;
    border-radius: .5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: .2rem 1.3rem;
    text-transform: uppercase;
    font: 600 1.2rem/1.2rem 'Dosis', sans-serif;
    background-color: #4267bb;
    color: #fff;
    margin-right: 1rem;
}

.btn-cancelar-guardar {
    align-items: center;
    border: .2rem solid #d8d6d5;
    border-radius: .5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: .2rem 1.3rem;
    text-transform: uppercase;
    font: 600 1.2rem/1.2rem 'Dosis', sans-serif;
    background-color: #fff;
    color: black;
}

.w-dialog .w-modal__header::before {
    background: url(../assets/images/icon--circulo-equis.svg) center/8rem no-repeat;
}

.w-dialog--w-modal--restore-password-icon .w-modal__header::before {
    background: url(../assets/images/icon_resetear-clave.svg) center/8rem no-repeat;
}

.w-dialog--w-modal--active-account-icon .w-modal__header::before,
.w-dialog--w-modal--disabled-account-icon .w-modal__header::before,
.w-dialog--w-modal--created-user-icon .w-modal__header::before,
.w-dialog--w-modal--restore-password-successful-icon .w-modal__header::before{
    background: url(../assets/images/pop-up--info.svg) center/8rem no-repeat;
}

.w-dialog--w-modal--deactivate-icon .w-modal__header::before {
    background: url(../assets/images/icon-activar.svg) center/8rem no-repeat;
}

.w-dialog--w-modal--accept-create-user-icon .w-modal__header::before{
    background: url(../assets/images/pop-up--question.svg) center/8rem no-repeat;  
}

.error-messages{
    display: flex;
    flex-flow: column;
    text-align: center;
}

.mensajeError {
    font-family: 'Open Sans';
    color: #F46767;
    font-size: 1.2rem;
}

/* TABLA VACIA */

.w-quick-table__empty {
    background: url(../assets/images/tabla-vacia.svg) no-repeat 30rem center;
    flex-direction: column;
    height: 40rem;
    justify-content: center;
    padding: 0 20rem 0 70rem;
    text-align: left;
    border: .2rem solid #e6e6e6;
}

.w-empty.w-table__empty-body {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.w-quick-table__empty .w-empty__title {
    color: #444;
    font: 400 1.7rem/2rem 'Open Sans', sans-serif;
}

.w-quick-table__empty .w-empty__subtitle {
    color: #999;
    font: 400 1.5rem/2rem 'Open Sans', sans-serif;
    margin: 0;
}

/* CUERPO FORMULARIO*/

.w-new-users__body {
    margin: 3rem 18rem;
}

.w-new-users__create-user {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.w-new-users__user-data {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 3rem;
    border-bottom: .1rem solid #555;
    color: #555;
}

.w-new-users__user-data .subtitulo {
    font-family: 'Open Sans';
    font-size: 2rem;
    font-weight: 600;
    color: #555;
}

.w-new-users__create-user .subtitulo {
    font-family: 'Dosis';
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #7f819a;
}

.w-new-users__new-user-info {
    display: flex;
}

.w-pair {
    margin-bottom: .5rem;
    display: flex;
    align-items: baseline;
    font-family: 'Open Sans';
}

.w-new-users__new-user-info .subtitulo {
    font-family: 'Open Sans';
    font-size: 1.3rem;
    color: #444;
    display: flex;
    justify-content: flex-end;
    width: 20rem;
    padding-right: 1rem;
    position: relative;
}

.w-new-users__new-user-info .subtitulo:after{
    content: ":";
}

.required:before {
    content: "*";
    position: absolute;
    right: 0;
    color: red;
    padding-right: .2rem;
}

.user-input {
    font-family: 'Open Sans', sans-serif;
    background-color: #f9efdc;
    border-radius: .1rem;
    border: .1rem solid #e8d5b4;
    padding: .5rem .5rem;
    font-size: 1.2rem;
    width: 20rem;
    float: right;
}

.user-options {
    -webkit-appearance: none;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background-color: #f9efdc;
    border: .1rem solid #e8d5b4;
    margin: 0 1rem;
}

.user-options:checked {
    background: #e8d5b4 url(images/blue-dot.svg) no-repeat center;
}

.w-action--rut{
    padding: .3rem 1rem;
    border: .1rem solid #7f819a;
    background-color: #7f819a;
    border-radius: .5rem;
    margin-left: .5rem;
    cursor: pointer;
    transition: background ease-in 0.2s;
}

.w-action--rut:hover {
    background-color: #4f4f69;
    border-color: #4f4f69;
}

.w-action--rut .w-action__label {
    font-family: 'Dosis';
    text-transform: uppercase;
    color: white;
    font-size: 1.3rem;
}

.w-new-users__footer {
    display: flex;
    justify-content: flex-end;
    margin: 3rem;
}

.w-new-users__footer .w-action {
    padding: 1rem 1.2rem;
    padding-left: 3rem;
    font-size: 1.2rem;
    border-radius: .4rem;
    background-color: #555;
    color: #fff;
    transition: background ease-in 0.2s;
    cursor: pointer;
    user-select: none;
    border: none;
    font-family: 'Dosis';
    text-transform: uppercase;
    margin-left: 1rem;
}

.w-new-users__footer .w-action--cancel{
    background: url(../assets/images/icon--equis.svg) 14%/1.3rem no-repeat;
    background-color: #555;
}

.w-new-users__footer .w-action--cancel:hover{
    background-color: #333;
}

.w-new-users__footer .w-action--save{
    background: url(../assets/images/icon--check.svg) 14%/1.3rem no-repeat;
    background-color: #5f929b;
}

.w-new-users__footer .w-action--save:hover{
    background-color: #2d6370;
}

.w-new-users__body .w-new-users__alert{
    background-color: #ffb49f;
}

th.w-table-cell.w-table-cell--header.w-table-header__cell.w-table-header__cell--document-user{
    width: 10rem;
}

th.w-table-cell.w-table-cell--header.w-table-header__cell.w-table-header__cell--date-create-user,
th.w-table-cell.w-table-cell--header.w-table-header__cell.w-table-header__cell--statet-user{
    width: 16rem;
}

th.w-table-cell.w-table-cell--header.w-table-header__cell.w-table-header__cell--date-update {
    width: 12rem;
}

th.w-table-cell.w-table-cell--header.w-table-header__cell.w-table-header__cell--actiont-user {
    width: 16rem;
}

td.w-table-cell.w-table-body__cell.w-table-body__cell--name-user,
td.w-table-cell.w-table-body__cell.w-table-body__cell--email-user {
    text-align: left;
}

/* ============================================================================================== */
.spinner-solo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128,128,128,0.5);
    display: flex;
}

.spinner-solo .w-label.w-title__label {
    margin: auto;
    font: 1.3rem 'Dosis', sans-serif;
    text-transform: uppercase;
    line-height: 2rem;
    color: black;
}

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

.spinner-solo .w-title.w-spinner__title {
    border: .8rem solid rgb(230, 230, 230);
    border-left-color: #2d6370;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    animation: spinner-anim 1.2s linear infinite;
}