@media (min-width: 1200px) {
    body .container {
      max-width: 1440px;
    }
  }

@media (min-width: 1500px) {
    body .container {
        max-width: 1700px;
    }
}
/*
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}*/


.custom-col-1 {
    width: 8.333333%;
}
.custom-col-2 {
    width: 16.666667%;
}
.custom-col-3 {
    width: 25%;
}
.custom-col-4 {
    width: 33.333333%;
}
.custom-col-5 {
    width: 41.666667%;
}
.custom-col-6 {
    width: 50%;
}
.custom-col-7 {
    width: 58.333333%;
}
.custom-col-8 {
    width: 66.666667%;
}
.custom-col-9 {
    width: 75%;
}
.custom-col-10 {
    width: 83.333333%;
}
.custom-col-11 {
    width: 91.666667%;
}
.custom-col-12 {
    width: 100%;
}
.custom-row {
    margin-left: 0;
    margin-right: 0;
}

.custom-row .button--danger {
  margin-top: 0;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
}

body {
    background-color: #F4F7FF !important;
}

/*
  * OVERLAY
*/
.overlay {
    position: fixed;
    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;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 99999;
    cursor: pointer;
}
/*
.overlay.open {
    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;
}
*/

/*
  * LOADING
*/
.lds-custom {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
.lds-custom div {
    display: inline-block;
    position: absolute;
    left: 6px;
    width: 13px;
    background: #fff;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.lds-custom div:nth-child(1) {
    left: 6px;
    animation-delay: -0.24s;
}
.lds-custom div:nth-child(2) {
    left: 26px;
    animation-delay: -0.12s;
}
.lds-custom div:nth-child(3) {
    left: 45px;
    animation-delay: 0;
}
@keyframes lds-facebook {
    0% {
        top: 6px;
        height: 51px;
    }
    50%, 100% {
        top: 19px;
        height: 26px;
    }
}

.page__login {
    background: url(../images/bg_login.png) center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
}
.page_remember_password {
    background: url(../images/bg_remember_password.png) center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
}

/*
  * ALIGN
*/
.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*
  * TEXT
*/
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-white {
    color: #ffffff;
}

/*
  * SWITCH
*/
.switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 25px;
    margin: 0;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #434D47;
    -webkit-transition: .4s;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 36px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
.slider:after {
    display: inline-block;
    content: "OFF";
    position: absolute;
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 900;
    font-size: 12px;
    color: #FCFCFC;
    right: 11px;
    bottom: 4px;
}
input:checked + .slider {
    background-color: #189752;
}
input:focus + .slider {
    box-shadow: 0 0 1px #189752;
}
input:checked + .slider:before {
    -webkit-transform: translateX(36px);
    -ms-transform: translateX(36px);
    transform: translateX(36px);
}
input:checked + .slider:after {
    content: "ON";
    left: 11px;
    right: initial;
}
.slider.round {
    border-radius: 12.5px;
}
.slider.round:before {
    border-radius: 10px;
}

/*
  * FIELDSET
*/
.fieldset--search {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
}
.fieldset--search::after {
    content: "";
    top: 50%;
    right: 20px;
    width: 18px;
    height: 18px;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../images/iconos/ico_search.svg);
}
.fieldset--transfer {
    display: block;
    margin-bottom: 15px;
}
.fieldset--transfer:last-child {
    margin-bottom: 0;
}
.fieldset--transfer legend {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 300;
    font-size: 14px;
    color: #525252;
    margin-bottom: 10px;
}
.fieldset--transfer legend.title {
    font-weight: bold;
}

.fieldset--transfer .text__info {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 300;
    font-size: 13px;
    color: #525252;
}
.fieldset--transfer .text__info.text-rol {
    text-transform: capitalize;
}

/*
  * LINKS
*/
.link {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #000000;
}
.link-small {
    font-size: 12px;
}
.link-small {
    font-size: 12px;
}
.link--success {
    color: #1BBE65;
}
.link--heavy {
    font-weight: 900;
}
.link--login {
    color: #ffffff;
}
.link__icon-material {
    color: #ACA8A8;
}
.link__icon-material:hover,
.link__icon-material:active,
.link__icon-material:focus {
    color: #acaaa8a3;
}
.link--primary:hover,
.link--primary:active,
.link--primary:focus {
    color: #ffffff;
}
.link--success:hover,
.link--success:active,
.link--success:focus {
    color: #1BBE65;
}
.link--underline {
    text-decoration: underline;
}
.link--underline:hover {
    text-decoration: none;
    cursor: pointer;
}
.link--remove-item {
    top: -10px;
    z-index: 10;
    right: -10px;
    width: 24px;
    height: 24px;
    text-align: center;
    position: absolute;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 6px 2px;
    cursor: pointer;
}
.link--remove-item .material-icons {
    font-size: 14px;
}
.link__icon:before {
    content: "";
    display: inline-block;
    vertical-align: sub;
    margin-right: 10px;
}
.link__icon--menu-rendimiento:before {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-image: url(../images/iconos/ico_menu_rendimiento.svg);
}
.show .link__icon--menu-rendimiento:before {
    background: url(../images/iconos/ico_menu_rendimiento_hover.svg);
}
.link__icon--menu-actividad:before {
    width: 21px;
    height: 19px;
    background-repeat: no-repeat;
    background-image: url(../images/iconos/ico_menu_actividad.svg);
}
.show .link__icon--menu-actividad:before {
    background: url(../images/iconos/ico_menu_actividad_hover.svg);
}

.link__icon--menu-admin:before {
    width: 23px;
    height: 23px;
    background-repeat: no-repeat;
    background-image: url(../images/iconos/ico_menu_admin.svg);
}
.show .link__icon--menu-admin:before {
    background-image: url(../images/iconos/ico_menu_admin_hover.svg);
}
.link__icon--menu-schedule:before {
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-image: url(../images/iconos/ico_menu_schedule.svg);
}
.show .link__icon--menu-schedule:before {
    background-image: url(../images/iconos/ico_menu_schedule_hover.svg);
}
.link__icon--menu-control:before {
    width: 19px;
    height: 19px;
    background-repeat: no-repeat;
    background-image: url(../images/iconos/ico_menu_control.svg);
}
.show .link__icon--menu-control:before {
    background-image: url(../images/iconos/ico_menu_control_hover.svg);
}

/*
  * BUTTONS
*/
.button {
    display: block;
    width: 100%;
    border: none;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    cursor: pointer;
}
.button--custom--success {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: bold !important;
    color: #ffffff !important;
    background-color: #1BBE65 !important;
    border: none !important;
    border-radius: 4px !important;
    margin: 10px !important;
}
.button--custom {
    border: none !important;
    border-radius: 4px !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: bold !important;
}
.button--inline {
    width: auto;
    display: inline-block;
}
.button--dialog {
    font-size: 17px;
    border-radius: 29px;
    font-weight: bold;
}
.button--gray {
    color: #ffffff !important;
    background-color: #A3A9B4;
}
.button--success {
    color: #ffffff !important;
    background: #1BBE65;
}
.button--danger {
    margin-top: 5px;
    color: #ffffff !important;
    background: #EA1212;
}
.button--blue {
  color: #ffffff !important;
  background: #201e91;
}

.dialog-actions .button--dialog.button--gray {
    background: #A3A9B4;
}
.dialog-actions .button--dialog.button--success {
    background: #1BBE65;
}
.dialog-actions .button--dialog.button--danger {
    background: #EA1212;
}
.dialog-actions .button--dialog.button--blue {
    background: #201e91;
}


.button--icon {
    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;
}
.button--icon:after {
    content: "";
}
.button--icon-save:after {
    width: 14px;
    height: 14px;
    margin-left: 20px;
    background: url(../images/iconos/ico_save.png) no-repeat;
}

/*
  * TABLE
*/
.table__order {
    width: 100%;
}
.table__order tr td {
    width: 55%;
    vertical-align: top;
    padding-bottom: 10px;
}
.table__order tr td span {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 400;
    font-size: 14px;
    color: #353535;
}
.table__order tr td:first-child {
    width: 45%;
}
.table__order tr td:first-child span {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 400;
    font-size: 14px;
    color: #939393;
}
.table__order tr td .capitalize{
    text-transform: capitalize;
}

table.table__list {
    width: 100%;
    background-color: transparent;
    border-collapse: separate;
    border-spacing: 0 4px !important;
}
.table__list thead tr th {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 300;
    font-size: 18px;
    color: #525252;
    border: none;
}
.table__list tbody tr {
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.06);
}
.table__list tbody tr td {
    border: none;
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 500;
    font-size: 16px;
    color: #525252;
}
.table__list tbody tr td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.table__list tbody tr td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.table__list tbody tr td.col-detail {
    padding: 0;
}
.table__list i,
.table__normal i {
    color: #A8A3A3;
}


.table__transfer {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px !important;
}
.table__transfer tr td {
    width: 60%;
    vertical-align: middle;
}
.table__transfer tr td,
.table__transfer tr td span {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 300;
    font-size: 14px;
    color: #525252;
}
.table__transfer tr th,
.table__transfer tr th span {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 300;
    font-size: 12px;
    color: #000000;
}
.table__transfer tr td:first-child {
    width: 40%;
}
.table__transfer--items {
    border-collapse: collapse;
    border-spacing: 0;
}
.table__transfer--items tr td,
.table__transfer tr td:first-child {
    width: auto;
}

table.table__normal {
    width: 100%;
    background-color: transparent;
    border-collapse: separate;
    border-spacing: 0 3px !important;
}
.table__normal thead tr {
    height: initial;
}
.table__normal thead tr th {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 500;
    font-size: 14px;
    color: #181818;
    border: none;
    padding: 5px 12px !important;
}
.table__normal thead tr th:nth-child(even) {
    background-color: #D0D0DE;
}
.table__normal thead tr th:nth-child(odd) {
    background-color: #E8E8F0;
}
.table__normal tbody tr {
    height: initial;
}
.table__normal tbody tr td {
    border: none;
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 400;
    font-size: 15px;
    color: #181818;
    padding: 5px 12px !important;
}

.table_gray tbody tr td {
    border: none;
    background-color: #fafbfd;
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 400;
    font-size: 15px;
    color: #181818;
    padding: 5px 12px !important;
}

/*
  * FORM
*/
.form-search {
    width: 100%;
    height: 100%;
}

/*
  * INPUT
*/
.input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #CECECE;
    background-color: #FFFFFF;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.06);
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 500;
    font-size: 12px;
}
.input--search {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #787878;
    box-shadow: 0 1px 5px 0 rgba(0,0,0,0.08);
    padding: 0 45px 0 20px;
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 300;
    font-size: 12.8px;
    color: #F4F7FF;
}
.input--search::placeholder {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 300;
    font-size: 12.8px;
    color: #F4F7FF;
}
.input--small {
    padding: 5px 11px;
}
.input--extra-small {
    padding: 4px 10px;
}
.input--danger {
    color: #F41818;
}
.input--secondary {
    color: #525252;
    font-weight: 900;
}
.input--success {
    color: #048713;
}
.input--heavy {
    font-weight: 900;
}
.input--bg-secondary {
    background-color: #F3F3F3;
}
.input--transfer-quantity {
    width: 50px;
}
.input--ranking {
    width: 65px;
}
form.ng-touched .input.ng-untouched.ng-invalid,
.input.ng-touched.ng-invalid {
    border-color: #f44336;
}
.input.ng-valid.ng-touched {
    border-color: #CECECE;
}

/*
  * LABEL
*/
.label {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 900;
    font-size: 12px;
    color: #525252;
}

/*
  * SELECT
*/
.select {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #CECECE;
    background-color: #FFFFFF;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.06);
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 500;
    font-size: 12px;
    -webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
    appearance: none;
    padding: 5px 25px 5px 11px;
    background-image: url(../images/iconos/ico_arrow_select.svg);
    background-repeat: no-repeat;
    background-position: 95% center;
}
.select--bg-secondary {
    background-color: #F3F3F3;
}
.select__order {
    width: 100%;
    box-shadow: none;
    border-radius: 5px;
    background-color: #6F6E6E;
    border: 1px solid #ECECEC;
    box-shadow: 0 1px 12px 0 rgba(0,0,0,0.08);
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-size: 14px;
    font-weight: 900;
    color: #ffffff;
    padding: 8px 13px 8px 13px;
    -webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
    appearance: none;
    background-image: url(../images/iconos/ico_arrow_select.svg);
    background-repeat: no-repeat;
    background-position: 92% center;
}
.select--top {
    min-width: 220px;
    padding: 0 30px 0 20px;
    border: none;
    background-color: #E8E8F0;
    -webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
    appearance: none;
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-size: 14px;
    font-weight: 500;
    color: #181818;
    height: 100%;
    background-image: url(../images/iconos/ico_arrow_select.svg);
    background-repeat: no-repeat;
    background-position: 92% center;
}
.select--top.select-small--top {
    min-width: 100px;
    padding: 0 30px 0 20px;
    border: none;
    background-color: #E8E8F0;
    -webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
    appearance: none;
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-size: 14px;
    font-weight: 500;
    color: #181818;
    height: 100%;
    background-image: url(../images/iconos/ico_arrow_select.svg);
    background-repeat: no-repeat;
    background-position: 92% center;
}
.action-static-height select.select--top.select-small--top{
    padding: 20px 40px 16px 20px;
    height: 100%;
}
.select--title {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-size: 16px;
    font-weight: 900;
    color: #FCFCFC;
    margin: 0;
    padding: 0 25px;
}
.titledark {
    color: #2E3238;
}
.select__order::-ms-expand,
.select--top::-ms-expand {
    display: none;
}
.input--top {
    min-width: 220px;
    padding: 24px 40px 20px 20px;
    border: none;
    background-color: #E8E8F0;
    -webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
    appearance: none;
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-size: 12px;
    font-weight: 500;
    color: #181818;
    height: 100%;
}

/*
  * TEXTAREA
*/
.textarea {
    border: 1px solid #cecece;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.06);
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 500;
    font-size: 12px;
    color: #353535;
    width: 100%;
    outline: none;
    resize: none;
    overflow: auto;
    padding: 10px 20px;
}

/*
  * DIALOG MODAL
*/
body .mat-dialog-container {
    border-radius: 14px;
    padding: 40px;
}
.dialog--messegge {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 300;
    font-size: 20px;
    color: #787878;
    line-height: 25px;
    text-align: center;
    margin-bottom: 25px;
}
.dialog--messegge strong {
    font-weight: 900;
}
.dialog--order {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 900;
    font-size: 20px;
    color: #131313;
    text-align: center;
    margin-bottom: 0;
}
.dialog--shipping {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 300;
    font-size: 20px;
    color: #131313;
    letter-spacing: 0.88px;
    text-align: center;
}
.dialog--icon {
    text-align: center;
    margin-bottom: 20px;
}
.dialog--icon i {
    font-size: 70px;
}
.dialog-actions {
    margin-top: 45px;
}
.dialog--success .dialog--icon i {
    color: #1BBE65;
}
.dialog--alert .dialog--icon i {
    color: #EA1212;
}


/*
  * BOX
*/
.box-alert .alert.alert-danger,
.box-alert .alert.alert-success {
    margin-top: 20px;
    /*
    -moz-animation: hideAlert 0s ease-in 5s forwards;
    -webkit-animation: hideAlert 0s ease-in 5s forwards;
    -o-animation: hideAlert 0s ease-in 5s forwards;
    animation: hideAlert 0s ease-in 5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;*/
}

/*
@-webkit-keyframes hideAlert {
    to {
        width:0;
        height:0;
        padding: 0;
        margin: 0;
        overflow:hidden;
    }
}
@keyframes hideAlert {
    to {
        width:0;
        height:0;
        padding: 0;
        margin: 0;
        overflow:hidden;
    }
}*/

/*
  * LOGIN
*/
.login__row {
    min-height: 100vh;
}
.login__content--white {
    border-radius: 14px;
    background-color: #ffffff;
    box-shadow: 0 2px 14px 0 rgba(0,0,0,0.13);
}
.login__logo {
    text-align: center;
}
.login__title {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 300;
    font-size: 24px;
    color: #1f1f1f;
    text-align: center;
    line-height: 29px;
    margin-bottom: 13px;
}
.login__text--info {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-size: 14px;
    color: #666666;
    line-height: 19px;
    text-align: center;
    margin-bottom: 21px;
}
.login__link {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #ffffff;
}
.login__content {
    margin-top: 91px;
}
.login__fieldset {
    position: relative;
    margin-bottom: 22px;
}
.login__fieldset:last-of-type {
    margin-bottom: 0;
}
.login__fieldset--icon-user:before {
    content: "";
    top: 13px;
    left: 28px;
    min-width: 17px;
    height: 22px;
    position: absolute;
    display: inline-block;
    background: url(../images/iconos/ico_user.svg) no-repeat;
}
.login__fieldset--icon-lock:before {
    content: "";
    top: 12px;
    left: 28px;
    min-width: 18px;
    height: 23px;
    position: absolute;
    display: inline-block;
    background: url(../images/iconos/ico_lock.svg) no-repeat;
}
.login__fieldset--icon-email:before {
    content: "";
    top: 16px;
    left: 28px;
    min-width: 19px;
    height: 15px;
    position: absolute;
    display: inline-block;
    background: url(../images/iconos/ico_email.png) no-repeat;
}
.login__input {
    width: 100%;
    height: 47px;
    box-shadow: none;
    border-radius: 23.5px;
    background: rgba(44,44,44,0.58);
    border: #616060 solid 1px;
    padding-left: 60px;
    padding-right: 17px;
    font-size: 14px;
    color: #ffffff;
}
.login__input::placeholder {
    font-size: 14px;
    color: #ffffff;
}
.login__input::-webkit-input-placeholder {
    line-height: 47px;
}
.login__input::-moz-placeholder {
    line-height: 47px;
}
.login__input:-ms-input-placeholder {
    line-height: 47px;
}
.login__input:-moz-placeholder {
    line-height: 47px;
}
.login__input--clear {
    width: 100%;
    height: 47px;
    box-shadow: none;
    border-radius: 23.5px;
    padding-left: 60px;
    padding-right: 17px;
    font-size: 14px;
    color: #8F8F8F;
    border: 3px solid #d4d4d4;
    background-color: transparent;
}
.login__input--clear.input--normal {
    padding-left: 17px;
}
.login__input--clear:placeholder {
    color: #8F8F8F;
    line-height: 47px;
}
.login__input--clear::-webkit-input-placeholder {
    line-height: 47px;
}
.login__input--clear::-moz-placeholder {
    line-height: 47px;
}
.login__input--clear:-ms-input-placeholder {
    line-height: 47px;
}
.login__input--clear:-moz-placeholder {
    line-height: 47px;
}

.login__button {
    width: 100%;
    height: 47px;
    border: none;
    border-radius: 23.5px;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 17px;
    color: #000000;
    margin-top: 34px;
}
.login__button--primary {
    color: #ffffff;
    background: -webkit-gradient(linear, right top, left top, from(#BD0157), to(#E9194E));
    background: -o-linear-gradient(right, #BD0157 0%, #E9194E 100%);
    background: linear-gradient(270deg, #BD0157 0%, #E9194E 100%);
}
.login__button--primary:hover,
.login__button--primary:active,
.login__button--primary:focus {
    background: -webkit-gradient(linear, right top, left top, from(#E9194E), to(#BD0157));
    background: -o-linear-gradient(right, #E9194E 0%, #BD0157 100%);
    background: linear-gradient(270deg, #E9194E 0%, #BD0157 100%);
}
.login__button--success {
    color: #ffffff;
    font-weight: 900;
    background-color: #1bbe65;
}
.login__button--disabled {
    background: #A3A9B4;
}
.login__button--disabled:hover,
.login__button--disabled:active,
.login__button--disabled:focus {
    background: #A3A9B4;
}
.login-actions {
    text-align: center;
    margin-top: 34px;
}
.login__bottom {
    margin-top: 100px;
    text-align: center;
}


/*
  * TRANSFORM
*/
.page_remember_password .login__content {
    margin-top: 57px;
    border-radius: 14px;
    background-color: #ffffff;
    padding: 38px 49px 71px;
}
.page_remember_password .login__bottom {
    margin-top: 20px;
    text-align: center;
}

/*
  * HEADER
*/
.header {
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__logo {
    padding: 20px;
    border-right: 2px solid #e8e8e8;
}
.header__search {
    width: 340px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/*
  * NAVTOP
*/
.nav-top {
    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;
    background-color: #5F6772;
    padding-left: 27px;
    box-shadow: 0 1px 9px 0 rgba(32,83,135,0.16);
    min-height: 60px;
}
.box-search {
    position: relative;
}
.box-search i {
    position: absolute;
    right: 10px;
    top: 50%;
    color: #525252;
    transform: translateY(-50%);
    cursor: pointer;
}
.nav-top .box-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.nav-top .box-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.nav-top > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.nav-top .actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.nav-top .actions > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.nav-top .button--success {
    border-radius: 0;
    min-width: 200px;
    padding: 20px 50px 16px 50px;
}
.nav-top__title {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 900;
    font-size: 16px;
    color: #FCFCFC;
    margin-bottom: 0;
}

/*
  * ITEM
*/
.item.mat-expansion-panel {
    margin-bottom: 10px;
    border-radius: 5px !important;;
    border: 1px solid #CECECE;
    background-color: #C6D1EA;
    box-shadow: none !important;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.06);
}
.item.mat-expansion-panel.mat-expanded {
    background-color: #F0F4FF;
}
.mat-accordion-item {
    position: relative;
}
.item .mat-expansion-panel-header {
    padding: 8px 25px 8px 10px;
}
.item .mat-expansion-panel-header-title {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 900;
    font-size: 12px;
    cursor: pointer;
    color: #525252;
    text-decoration: none;
}
.item .mat-expansion-panel-header-title span {
    padding-left: 5px;
}

.item .mat-expansion-panel-body {
    padding: 0 25px 16px 10px;
}
.item .mat-expansion-indicator::after {
    color: #495363;
}

/*
  * NAVIGATION
*/
.header__navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.navigation__link {
    float: left;
}
.navigation__link .link {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 500;
    font-size: 16px;
    color: #181818;
    padding: 24px 15px;
}
.navigation__link.show .link {
    color: #ffffff;
    background-color: #393838;
}
.navigation__link .dropdown-menu {
    padding: 0;
    margin: 0;
    border-radius: 0;
    background-color: #9F9F9F;
}
.navigation__link .dropdown-menu .dropdown-item {
    margin: 0;
    padding-left: 18px;
    padding-right: 18px;
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
}
.navigation__link .dropdown-menu .dropdown-item:hover,
.navigation__link .dropdown-menu .dropdown-item:focus,
.navigation__link .dropdown-menu .dropdown-item:active {
    box-shadow: none;
    border-radius: 0;
    background-color: #6C6C6C;
}
.navigation__link .dropdown-toggle:after {
    content: "";
    width: 15px;
    height: 8px;
    border: none;
    margin-left: 6px;
    vertical-align: initial;
    background-repeat: no-repeat;
    background-image: url(../images/iconos/ico_menu_arrow.svg);
}
.navigation__link.show .dropdown-toggle:after {
    background-image: url(../images/iconos/ico_menu_arrow_hover.svg);
}

/*
  * SPINNER
*/
.box_spinner {
    height: 130px;
    text-align: center;
}
.spinner-fixed {
    z-index: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.box_spinner .mat-progress-spinner {
    display: inline-block;
}
.box_spinner .mat-progress-spinner circle, .mat-spinner circle {
    stroke: #1BBE65;
}

/*
  * CUSTOMER
*/
.customer-welcome {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: 0 22px 0 24px;
}
.customer-welcome:before {
    content: "";
    min-width: 35px;
    height: 35px;
    margin-right: 9px;
    display: inline-block;
    background-repeat: no-repeat;
    background-image: url(../images/iconos/ico_profile_user.svg);
}
.customer-welcome:after {
    content: "";
    min-width: 13px;
    height: 8px;
    margin-left: 20px;
    display: inline-block;
    background-repeat: no-repeat;
    background: url(../images/iconos/ico_menu_arrow.svg);
}
.customer-welcome.active:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.customer__name {
    display: inline-block;
}
.text__user,
.text__info {
    display: block;
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 300;
    font-size: 18px;
    color: #272727;
}
.text__info {
    font-size: 12px;
}
.customer-list {
    display: none;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 100%;
    padding: 0;
    margin: 0;
    padding-top: 10px;
    list-style: none;
    min-width: 252px;
    border-radius: 0px;
    background-color: #9F9F9F;
    box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.12);

}
.customer-welcome.active {
    background-color: #393838;
}
.customer-welcome.active:before {
    background-image: url(../images/iconos/ico_profile_user_hover.svg);
}
.customer-welcome.active:after {
    background: url(../images/iconos/ico_menu_arrow_hover.svg);
}
.customer-welcome.active .text__user,
.customer-welcome.active .text__info {
    color: #ffffff;
}
.customer-welcome.active .customer-list {
    display: block;
}
.customer-list li a {
    display: block;
    padding: 8px 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff !important;
    text-decoration: none !important;
}
.customer-list li a:hover,
.customer-list li a:focus,
.customer-list li a:active {
    background-color: #6C6C6C;
}

/*
  * MAINCONTENT
*/
.maincontent {
    padding: 39px 38px 39px 43px;
}
.maincontent-dark {
    padding: 39px 38px 39px 43px;
    background-color: #2E3238;
}
.bkg-dark {
    background-color: #2E3238 !important;
}
.custom-form {
    margin-bottom: 0px !important;
}
.box-column {
    margin-right: 14px;
    width: calc((100% - 42px));
    background-color: #ffffff;
    box-shadow: 0 2px 6px -2px rgba(0,0,0,0.06);
}
.box-column__content {
    border-radius: 5px;
    padding: 20px 24px 30px 24px;
}
.box-column_title {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 500;
    font-size: 18px;
    color: #434343;
    padding-bottom: 10px;
    background-color: #F4F7FF;
}

.box-column-order {
    margin-right: 14px;
    width: calc((100% - 42px));
}
.box-column-order__content {
    border-radius: 5px;
    background-color: #ffffff;
    padding: 20px 24px 20px 24px;
    box-shadow: 0 2px 6px -2px rgba(0,0,0,0.06);
    margin-bottom: 25px;
}
.box-column-order__content:last-child {
    margin-bottom: 0;
}
.box-column-order_title {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 300;
    font-size: 16px;
    color: #181818;
    padding-bottom: 10px;
    background-color: #F4F7FF;
    margin: 0;
}



.box-form {
    display: block;
}
.edit_order .box-column {
    width: calc((65% - 28px) / 3);
}
.edit_order .box-column:first-child {
    width: calc(35% - 14px);
}
.edit_order .box-column:last-child {
    margin-right: 0;
}
.edit_order .box-form {
    margin-top: 20px;
}
.edit_order .fieldset--textarea {
    margin-top: 25px;
}
.edit_order .actions {
    margin-top: 10px;
}
.new_order .box-column {
    width: calc((100% - 24px) / 4);
    margin-right: 8px;
}
.new_order .box-column:last-child {
    margin-right: 0;
}
.new_order .box-column__content {
    padding: 18px 13px 18px 13px;
}
.new_order .table__order tr td:first-child {
    width: 35%;
}
.new_order .table__order tr td {
    width: 65%;
}
.new_order .table__order tr td:first-child span {
    font-weight: 300;
    font-size: 12px;
    color: #525252;
    line-height: normal;
}


.new_order_retail .box-column-order {
    width: calc((100% - 24px) / 4);
    margin-right: 8px;
}
.new_order_retail .box-column-order:last-child {
    margin-right: 0;
}
.new_order_retail .box-column__content {
    padding: 18px 13px 18px 13px;
}
.new_order_retail .table__order tr td {
    width: 65%;
    vertical-align: middle;
}
.new_order_retail .table__order tr td:first-child {
    width: 35%;
}
.new_order_retail .table__order tr td:first-child span {
    font-weight: 300;
    font-size: 12px;
    color: #525252;
    line-height: normal;
}
.new_order_retail .billing {
    margin-top: 25px;
}

.main-dashabord {
    height: calc(100vh - 69px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.box--dashboard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.box--dashboard .box-image {
    text-align: center;
}
.title--dashboard {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 5vw;
    color: #434343;
}
.box--dashboard .box-image img {
    width: 150px;
    height: 150px;
}

/*
  * TRANSFER
*/
.container-transfer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 800px;
    margin: 0 auto;
}
.container-transfer .box {
    width: 277px;
}
.container-transfer .box--title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 10px;
    margin-bottom: 11px;
}
.container-transfer .box--title .title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #181818;
    margin: 0;
}
.box--title .title {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #181818;
    margin: 0;
}
.container-transfer .box--content {
    display: block;
    border-radius: 5px;
    background-color: #FFFFFF;
    padding: 15px 10px 30px 10px;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.06);
}
.transfer-items .mat-expansion-panel-header-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #525252;
}
.transfer-items .mat-expansion-panel-header {
    padding: 8px 10px 8px 10px;
}
.transfer-items .mat-expansion-panel-body {
    padding: 0 10px 16px 10px;
}



/*
  * USER
*/
.container-user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 800px;
    margin: 0 auto;
}
.container-user-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 800px;
    margin: 0 auto;
}
.user-rol-icon:before {
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background: url(../images/iconos/ico_user_rol.svg);
}
.user-mail-icon:before{
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background: url(../images/iconos/ico_user_mail.svg);
}
.user-camera-icon:before{
    width: 22px;
    height: 20px;
    background-repeat: no-repeat;
    background: url(../images/iconos/ico_user_camera.svg);
}

.customer-welcome-profile-image:before {
    content: "";
    min-width: 35px;
    height: 35px;
    margin-right: 9px;
    display: inline-block;
    background-repeat: no-repeat;
    background-image: url(../images/iconos/ico_profile_user_2.svg);
}
.container-user .box {
    width: 385px;
}
.container-user .box--title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 10px;
    margin-bottom: 11px;
}
.container-user .box--title .title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #181818;
    margin: 0;
}
.container-user .box--content {
    display: block;
    border-radius: 5px;
    background-color: #FFFFFF;
    padding: 15px 10px 30px 10px;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.06);
}

.container-user-block .box--content {
    display: block;
    border-radius: 5px;
    background-color: #FFFFFF;
    padding: 15px 10px 30px 10px;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.06);
}

.top-title-user {
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 900;
    font-size: 16px;
    color: #FCFCFC;
    margin-bottom: 0;
}

.user-profile-image-container{
    display: flex;
    align-items: center;
    justify-content: center
}

q,
blockquote {
  quotes: "“" "”" "‘" "’";
}


/*
  * TABLE EXPANDED
*/
tr.order-detail-row {
    height: 0 !important;
}
tr.order-element-row.order-expanded-row td {
    background-color: #ECECEC;
}
tr.order-element-row:not(.order-expanded-row):hover td {
    background-color: #ECECEC;
}
tr.order-element-row:not(.order-expanded-row):active td {
    background-color: #ECECEC;
}
.order-element-row td {
    border-bottom-width: 0;
}
.example-element-detail {
    overflow: hidden;
    display: flex;
}
.table__list .order-detail-row > td {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.table__list tbody tr:first-child td:first-child {
    border-top-left-radius: 5px;
}
.table__list tbody tr:first-child td:last-child {
    border-top-right-radius: 5px;
}
.table__list tbody tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
}
.table__list tbody tr:last-child td:last-child {
    border-bottom-right-radius: 5px;
}
.table__list tbody tr .grey {
    background-color: #e0e0e0;
}
.table__list tbody tr .white {
    background-color: #FFFFFF;
}
.table--show_status {
    width: 100%;
}
.table--show_status tbody tr td {
    padding-top: 8px;
    padding-bottom: 8px;
    font-family: 'Open Sans', sans-serif; /*Avenir*/
    font-weight: 300;
    font-size: 14px;
    color: #FFFFFF;
    background-color: #5C5C5C;
    border-radius: 0;
    border-bottom: 1px solid #6E6E6E;
}
.table__list tbody tr td:first-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.table__list tbody tr td:last-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.table--show_status tbody tr:first-child td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 0px;
}
.table--show_status tbody tr:first-child td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 0px;
}
.table--show_status tbody tr:last-child td {
    border-bottom: none;
}
.table--show_status tbody tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
}
.table--show_status tbody tr:last-child td:last-child {
    border-bottom-right-radius: 5px;
}
.table--show-detail > tbody > tr > td {
    position: relative;
}
.table--show-detail > tbody > tr > td:not(.col-detail):last-child::after {
    display: inline-block;
    position: absolute;
    content: "";
    width: 14px;
    height: 9px;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../images/iconos/ico_arrow_select.svg);
}
.table--show-detail > tbody > tr[aria-expanded="true"] > td:not(.col-detail):last-child::after {
    top: 40%;
    -webkit-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    transform: translateY(-40%);
    transform: rotate(180deg);
}

/*
  * STATE
*/
.state {
    display: inline-block;
    font-size: 0px;
    width: 18px;
    height: 18px;
    border-radius: 18px;
    vertical-align: middle;
}
.state--normal {
    background-color: #ffffff;
}
.state--success {
    background-color: #1BBE65;
}
.state--danger {
    background-color: #FF0000;
}

/*
  * PAGINATE
*/
body .ngx-pagination {
    padding: 0;
    margin: 30px 0 0;
    text-align: center;
}
body .ngx-pagination a,
body .ngx-pagination a span {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #272727;
}
.ngx-pagination .disabled {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
}
body .ngx-pagination .current {
    background-color: #1BBE65;
}
body .ngx-pagination .current {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #ffffff;
}

.cursor {
    cursor: pointer;
}

fieldset + .ng-star-inserted,
select + .ng-star-inserted,
.schedule + .ng-star-inserted,
.mat-form-field.ng-invalid + .ng-star-inserted,
.mat-form-field-invalid + .ng-star-inserted {
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
    font-size: 12px;
    color: #f44336;
}
.schedule {
    display: block;
    width: 100%;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    font-size: 12px;
    color: #ffffff !important;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    background: #6F6E6E;
    border-radius: 4px;
    text-decoration: underline;
}
.req,
.table__order tr td span.req,
.new_order .table__order tr td:first-child span.req {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 12px;
    color: #f44336;
    line-height: normal;
}

/** CR STYLES **/

.days-omnix {
    margin: 0 0 5px;
    display: flex;
    justify-content: space-between;
}
.days-omnix > label {
    margin: 0 2px 2px 0;
    display: inline-block;
    position: relative;
    font-size: 0;
}
.days-omnix .inp-day {
    width: 70px;
    height:25px;
    background: #595354;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 5px;
    cursor: pointer;
}
.days-omnix .inp-day:checked {
    background: #189752;
}

.days-omnix.red-btns .inp-day:not(:disabled):checked {
    background: rgb(207, 32, 32);
}
.days-omnix .inp-day:disabled {
    background: #434D47;
    opacity: 0.5;
    cursor: not-allowed;
}
.days-omnix .inp-day + span {
    color:#fff;
    font-weight: bold;
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
    pointer-events: none;
}

.omnix-tabs .mat-tab-header {
    border: none;
    margin: 0px;
}
.omnix-tabs .mat-tab-label {
    background: #E8E8F0;
    opacity: 1;
    color: #5F6772;
    border-radius: 0px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    width: 34%;
}
.omnix-tabs .mat-tab-label-active{
    background: #d9d9e6;
}
.omnix-tabs .mat-ink-bar {
    background-color: #EA064C !important;
}
.mat-tab-group.mat-primary .mat-ink-bar {
    background-color: #EA064C !important;
}
.omnix-tabs .mat-tab-label:not(:last-of-type){
    margin-right: 0px;
}
.omnix-tabs .mat-tab-body {
    background: #fff;
    padding: 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.06);
    min-height: 500px;

}
.form_error .ng-star-inserted {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 10px;
    color: #f44336;
}

/* v4 */
/* Inputs */
/* Inputs modals */
.mat-dialog-container .mat-form-field.mat-focused .mat-form-field-ripple{
    background-color: #1BBE65;
}
/* Courier */
.courier-clone-route table.table__list{
    margin-bottom: 0.1rem;
}
.courier-clone-route .table > thead > tr{
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.06);
}
.courier-clone-route .table > thead > tr > th{
    font-weight: 500;
}
.courier-clone-route .table > tbody > tr > td:nth-child(3){
    vertical-align: top;
}
.courier-clone-route .x-duplicate-courier-routes{
    cursor: pointer;
}
.courier-clone-route .x-duplicate-courier-routes-paginator{
    margin-bottom: 1rem;
}

/* Paginator */
table.dataTable.table__paginator thead th,
table.dataTable.table__paginator thead td,
table.dataTable.no-footer.table__paginator{
    border-bottom: 0;
}
table.dataTable.table__paginator + .dataTables_paginate.paging_simple_numbers{
    float: none;
    text-align: center;
}
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate {
    margin-top: 1.5rem;
}
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button.disabled:active,
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button,
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button:hover,
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button:active{
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #cacaca !important;
}
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button.disabled:active{
    background: transparent;
}
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button,
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button:hover,
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button:active{
    color: #272727 !important;
    padding: 0.1875rem 0.625rem;
    border-radius: 0;
}
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button.previous,
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button.next {
    position: relative;
}
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button.previous:before {
    content: '«';
    display: inline-block;
    margin-right: 0.5rem;
}
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button.next:after {
    content: '»';
    display: inline-block;
    margin-left: 0.5rem;
}
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate .paginate_button:hover{
    background: #e6e6e6;
    border-color: transparent;
    box-shadow: none;
}
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate  .paginate_button.current,
.dataTables_wrapper table.dataTable.table__paginator + .dataTables_paginate  .paginate_button.current:hover{
    background: #1BBE65;
    border-color: transparent;
    color: white !important;
    cursor: default;
}

.mat-chip-list .mat-chip-list-wrapper {
    margin: 0;
}

.box-email-notification button.mat-mini-fab .mat-button-wrapper {
    line-height: 16px;
}

@media (max-width: 1200px) {
    .edit_order .box-column {
        width: calc((100% / 2) - 14px);
    }
    .edit_order .box-column:first-child {
        width: calc((100% / 2) - 14px);
    }
    .edit_order .box-column:nth-child(2n) {
        margin-right: 0;
    }
    .edit_order .box-column:nth-child(3n),
    .edit_order .box-column:nth-child(4n) {
        margin-top: 25px;
    }
    .new_order .box-column {
        width: calc((100% / 2) - 8px);
    }
    .new_order .box-column:first-child {
        width: calc((100% / 2) - 8px);
    }
    .new_order .box-column:nth-child(2n) {
        margin-right: 0;
    }
    .new_order .box-column:nth-child(3n),
    .new_order .box-column:nth-child(4n) {
        margin-top: 25px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 100%;
    }
    .maincontent {
        padding: 39px 20px 39px 20px;
    }
}

@media (max-width: 768px) {
    .maincontent {
        padding: 20px 0 20px 0;
    }
    .nav-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 10px;
    }
    .nav-top .box-title {
        padding-bottom: 10px;
    }
    .nav-top .actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .nav-top .actions > div {
        margin-bottom: 10px;
    }
    .nav-top .actions .box-actions .button {
        width: 100%;
    }
    .new_order .box-column,
    .edit_order .box-column {
        width: 100%;
        margin: 20px 0 0 0;
    }
    .new_order .box-column:first-child,
    .edit_order .box-column:first-child {
        width: 100%;
    }
    .container-transfer {
        width: 100%;
    }
    .container-transfer .box {
        width: calc(calc(100% - 10px) / 2);
    }
    .table.table__normal thead tr th,
    .table.table__normal tbody tr td {
        font-size: 11px;
    }
    .table.table__normal tbody tr td {
        padding: 5px !important;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 0;
    }
    .select--top {
        width: 150px;
        padding: 0 10px 0 10px;
    }
    .select--title {
        padding: 0 10px;
    }
    .nav-top .button--success {
        min-width: 150px;
        padding: 8px 10px 8px 10px;
    }
    .edit_order .box-column {
        width: 100%;
        margin: 20px 0 0 0;
    }
    .edit_order .box-column:first-child {
        width: 100%;
    }
    .container-transfer {
        width: 100%;
    }
    .container-transfer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .container-transfer .box {
        width: 100%;
    }
    .container-transfer .box:last-child {
        margin-top: 20px;
    }
}