* {
    font-family: "Ubuntu";
}

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

button:focus {
    outline: none;
}

button::-moz-focus-inner {
    border: 0;
}

abbr {
    cursor: help;
}

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

.white-space-nowrap {
    white-space: nowrap;
}

.document-type {
    width: 116px;
}

.edit-link {
    margin-left: 2px;
    color: rgba(0, 169, 181, 1);
    text-decoration: none;
}

.edit-link:hover,
.edit-link:active {
    color: rgba(0, 139, 161, 1);
}

body {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
}

.browser-support-message {
    background-color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 50px;
}

.browser-support-message p {
    position: relative;
    top: 50%;
    bottom: 50%;
    margin: auto;
    text-align: center;
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    min-height: 100vh;
    opacity: 0;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.logo {
    margin: 48px 8px 32px 8px;
}

.logo a {
    text-decoration: none;
}

.logo img {
    display: block;
    width: 250px;
    margin: auto;
    -webkit-filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.26));
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.26));
}

.app-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px;
    margin-bottom: 16px;
    font-size: 32px;
    color: white;
    text-shadow: 2px 2px 4px rgb(0, 0, 0);
}

.app-title span {
    text-align: center;
}

.app-title i {
    padding: 16px;
    font-size: 48px;
}

.login-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.login-form-wrapper form {
    background-color: rgba(255, 255, 255, 0.6);
    width: 100%;
    max-width: 350px;
    margin: 4px 4px 32px 4px;
    border: 3px solid rgba(0, 169, 181, 1);
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.25);
}

.login-form-wrapper .form-title {
    background-color: rgba(0, 169, 181, 1);
    padding: 16px;
    margin-bottom: 16px;
    font-size: 18px;
}

.login-form-wrapper .field {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    margin-bottom: 16px;
    color: #00a9b5;
}

.login-form-wrapper .field label {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.login-form-wrapper .input {
    display: flex;
}

.login-form-wrapper .input i {
    background-color: rgba(0, 169, 181, 1);
    flex-shrink: 0;
    width: 18px;
    padding: 8px 6px;
    border: 1px solid rgba(0, 169, 181, 1);
    border-radius: 2px 0 0 2px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.login-form-wrapper .input input {
    background-color: #fff;
    width: calc(100% - 32px);
    /* Se le resta el width del icono */
    padding: 8px;
    margin: 0;
    border: 1px solid rgba(0, 169, 181, 1);
    border-radius: 0 2px 2px 0;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.login-form-wrapper .input input:-moz-submit-invalid,
.login-form-wrapper .input input:invalid {
    box-shadow: none;
}

.login-error {
    background-color: #cf1f2f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    margin: 0 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.login-error i {
    padding: 2px;
    cursor: pointer;
}

.login-form-wrapper .submit {
    display: flex;
    justify-content: flex-end;
    padding: 16px;
}

.login-form-wrapper .submit input {
    background-color: rgba(0, 169, 181, 1);
    border: 0;
    border-radius: 2px;
    padding: 8px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.login-form-wrapper .submit input:hover {
    background-color: rgba(0, 139, 161, 1);
    /* rgba(0, 139, 251, 1); */
    box-shadow: 0px 0px 4px 0px rgba(0, 139, 251, 1);
}

.login-form-wrapper .submit input:disabled {
    background-color: rgba(0, 169, 181, 0.5) !important;
    box-shadow: none !important;
    cursor: not-allowed;
}

.messages {
    position: fixed;
    left: calc(240px);
    bottom: 32px;
    margin: 0 16px;
    z-index: 9999;
}

.messages.errors {
    background-color: rgba(207, 31, 47, 1);
    border-radius: 2px;
    overflow: hidden;
}

.messages-header {
    background-color: rgba(0, 0, 0, 0.1);
    display: block;
    padding: 8px;
    padding-right: 36px;
    font-size: 15px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.85);
}

.messages-scroll {
    max-height: 300px;
    overflow-y: auto;
}

.message {
    display: flex;
    align-items: center;
    padding: 4px;
    margin-top: 16px;
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.85);
}

.message-success {
    background-color: rgba(31, 191, 111, 1);
}

.message-error {
    position: relative;
    padding: 8px 4px;
    margin-top: 0px;
}

.message-error:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.messages.errors .messages-close {
    position: absolute;
    top: 0;
    right: 0px;
    width: 12px;
    height: 12px;
    padding: 2px;
    border-left: 3px solid #f5dddf;
    border-bottom: 3px solid #f5dddf;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.messages.errors .messages-close:hover {
    background-color: rgba(255, 255, 255, 0.85);
    color: rgba(207, 31, 47, 1);
}

.messages.errors .message-close {
    position: absolute;
    padding: 2px;
    font-size: 12px;
    cursor: pointer;
    opacity: 0;
}

.messages.errors .message:hover .message-close {
    opacity: 1;
}

.messages.errors .message-close:hover {
    color: white;
}

.message-close {
    position: absolute;
    right: 8px;
    padding: 2px;
    cursor: pointer;
}

.message-close:hover {
    color: white;
}

.message-icon {
    margin: 4px;
    font-size: 24px;
}

.message span {
    padding-right: 32px;
    margin: 4px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.message ul {
    width: 100%;
    font-size: 12px;
    text-align: left;
}

.admin-sidebar-wrapper {
    background-color: rgba(0, 169, 181, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 0;
    bottom: 0;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.admin-sidebar-logo {
    background-color: rgb(5, 52, 70) !important;
    padding: 36px 0px;
}

.admin-sidebar-logo a {
    background-color: transparent !important;
    border-right: none !important;
    border-bottom: none !important;
}

.admin-sidebar-logo img {
    opacity: 0.8;
    -webkit-filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.admin-sidebar-logo .logo-responsive {
    display: none;
    width: 40px;
    padding: 10px;
}

.admin-sidebar-logo .logo-not-responsive {
    width: 210px;
    padding: 0px 20px 0px 10px;
}

.admin-sidebar-logo a:hover img {
    opacity: 1;
}

.admin-sidebar-wrapper a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    border-right: 4px solid transparent;
    border-bottom: 1px solid rgba(0, 139, 161, 0.4);
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.admin-sidebar-wrapper a:not(.active-link):hover {
    border-right: 4px solid rgba(255, 255, 255, 1);
    background-color: rgba(0, 139, 161, 0.4);
}

.admin-sidebar-wrapper a:active,
.admin-sidebar-wrapper .active-link {
    background-color: rgba(0, 139, 161, 0.8) !important;
}

/* Esto está aquí debajo para que la regla sea
priorizada sobre la anterior */

.admin-sidebar-logo a:active {
    background-color: transparent !important;
}

.admin-sidebar-wrapper a i {
    width: 48px;
    padding: 20px 4px;
    text-align: center;
    font-size: 18px;
}

.admin-sidebar-wrapper a span {
    padding: 20px 40px 20px 0px;
}

.admin-sidebar-wrapper form a:hover {
    background-color: rgba(231, 40, 64, 0.9) !important;
}

.admin-responsive-sidebar-wrapper {
    background-color: rgba(0, 169, 181, 0.95);
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.5);
    z-index: 99999991;
}

.admin-responsive-sidebar-logo {
    background-color: rgb(5, 52, 70) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0px;
}

.admin-responsive-sidebar-logo a {
    margin-left: 16px;
}

.admin-responsive-sidebar-logo img {
    height: 45px;
    opacity: 0.8;
    -webkit-filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.admin-responsive-sidebar-logo a:hover img {
    opacity: 1;
}

.admin-responsive-sidebar-logo .nav-toggler {
    margin-right: 16px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.admin-responsive-sidebar-logo .nav-toggler:hover {
    color: rgba(255, 255, 255, 1);
}

.admin-responsive-sidebar-wrapper .links {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.admin-responsive-sidebar-wrapper .links a {
    display: block;
    border-right: 6px solid transparent;
    border-bottom: 1px solid rgba(0, 139, 161, 0.4);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.admin-responsive-sidebar-wrapper .links a:not(.active-link):hover {
    border-right: 6px solid rgba(255, 255, 255, 1);
    background-color: rgba(0, 139, 161, 0.4);
}

.admin-responsive-sidebar-wrapper .links a:active,
.admin-responsive-sidebar-wrapper .links .active-link {
    background-color: rgba(0, 139, 161, 0.8) !important;
}

.admin-responsive-sidebar-wrapper .links a i {
    width: 48px;
    padding: 20px 4px;
    text-align: center;
    font-size: 18px;
}

.admin-responsive-sidebar-wrapper .links a span {
    padding: 20px 40px 20px 0px;
}

.admin-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 64px);
    padding: 32px;
    margin-left: 240px;
}

.admin-content-wrapper.list {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    min-height: calc(100vh - 128px);
    padding: 96px 32px 32px 32px;
}

.pagination-links {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.pagination-links ul {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 5px;
    list-style-type: none;
}

.pagination-links li {
    margin: 0 2px;
    margin-top: 10px;
}

.pagination-links li .page-link {
    background-color: rgba(0, 169, 181, 0.8);
    padding: 4px 8px;
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 12px;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.pagination-links li .page-link:hover {
    background-color: rgba(0, 139, 161, 0.8);
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.2);
}

.pagination-links li.active .page-link,
.pagination-links li .page-link:active {
    background-color: rgba(0, 139, 161, 1);
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0);
}

.pagination-links li.disabled .page-link {
    background-color: rgba(0, 169, 181, 0.3);
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0);
}

.menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    z-index: 7;
}

.menu-triangle {
    width: 0;
    height: 0;
    border-top: 36px solid rgba(5, 52, 70, 1);
    border-left: 26px solid transparent;
    z-index: 9;
}

.menu {
    background-color: rgba(5, 52, 70, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 200px;
    padding: 0px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    z-index: 8;
}

.menu span {
    width: 145px;
    padding: 7px 0;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu .options {
    display: flex;
    align-items: center;
    padding: 7px 0;
}

.menu .options a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.menu .options a:hover {
    color: white;
}

.menu .options a .fa-cog {
    font-size: 15px;
}

.menu .options a:hover .fa-cog {
    -webkit-animation: cog-rotation 2s infinite linear;
    animation: cog-rotation 2s infinite linear;
}

@-webkit-keyframes cog-rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

@keyframes cog-rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

.breadcrumbs {
    margin: 16px 0;
    font-size: 12px;
}

.breadcrumbs a {
    background-color: rgba(0, 169, 181, 0.8);
    padding: 4px 8px;
    border: 2px solid rgba(0, 169, 181, 0.8);
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.breadcrumbs a:hover {
    background-color: rgba(0, 139, 161, 0.8);
    border-color: rgba(0, 139, 161, 0.8);
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.25);
}

.breadcrumbs a:active {
    background-color: rgba(0, 139, 161, 1);
    border-color: rgba(0, 139, 161, 1);
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0);
}

.breadcrumbs span {
    font-weight: bold;
    color: rgba(0, 169, 181, 1);
}

.admin-content-wrapper.list .window {
    width: 100%;
    min-width: 215.5px;
}

.filter-wrapper {
    background-color: rgba(0, 169, 181, 0.8);
    display: flex;
    align-items: center;
    max-width: 100%;
    min-width: 215.5px;
    margin-bottom: 16px;
    /* border: 3px solid rgba(0, 169, 181, 0.8); */
    padding: 5px;
    border-radius: 5px;
    box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.25);
}

.filter-title {
    padding: 8px;
}

.filter-title i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
}

.filter {
    padding: 2px 0px 8px 8px;
}

.filter form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.filter .field {
    margin-right: 8px;
}

.filter form label,
.filter form input,
.filter form select {
    display: block;
    width: 120px;
    font-size: 12px;
}

.filter form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.3);
}

.filter form input[type="date"] {
    padding: 2px 4px;
}

.filter form label {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.9);
}

.filter form input,
.filter form select {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 4px;
    border: none;
    border-radius: 2px;
    color: #5a5a5a;
}

.filter form select {
    width: 128px;
    padding: 3px 4px;
}

.window {
    background-color: rgba(255, 255, 255, 0.6);
    /* border: 3px solid #09abb7; */
    border-radius: 5px;
    box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.25);
}

.window-title {
    background-color: rgba(0, 169, 181, 0.8);
    padding: 16px;
    margin-bottom: 16px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.window-content {
    padding: 16px;
}

.window-content .quick-access {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.window-content .quick-access-link {
    position: relative;
    margin: 10px;
    border: 2px solid rgba(0, 169, 181, 1);
    border-radius: 50%;
    overflow: hidden;
}

.window-content .quick-access-link a {
    text-decoration: none;
}

.window-content .quick-access-link .list-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    color: rgba(0, 169, 181, 1);
    font-size: 28px;
    z-index: 98762;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.window-content .quick-access-link:hover .list-link {
    background-color: rgba(0, 169, 181, 0.8);
    color: rgba(255, 255, 255, 0.9);
}

.window-content .quick-access-link .add-link {
    background-color: rgba(0, 139, 161, 0.5);
    position: absolute;
    left: -2px;
    bottom: -2px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 104px;
    height: 26px;
    border-radius: 2px 0 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    z-index: 98765;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.window-content .quick-access-link:hover .add-link {
    opacity: 1;
}

.window-content .quick-access-link .add-link:hover {
    background-color: rgba(0, 139, 161, 1);
    /* background-color: rgba(197, 43, 68, 0.9); */
    /* height: 104px; */
    /* font-size: 24px; */
}

.table-options {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.table-options .add-link {
    margin-right: 16px;
    margin-bottom: 8px;
}

.add-link a {
    background-color: rgba(0, 169, 181, 0.8);
    display: inline-block;
    padding: 6px;
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 12px;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.add-link a:hover {
    background-color: rgba(0, 139, 161, 0.8);
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.3);
}

.add-link a:active {
    background-color: rgba(0, 139, 161, 1);
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0);
}

.add-link a i {
    margin-right: 2px;
    font-size: 12px;
}

.order-input {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 8px;
    border-radius: 2px;
    font-size: 12px;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.3);
}

.order-input label {
    background-color: rgba(0, 169, 181, 0.8);
    padding: 6px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.order-input label i {
    margin-right: 4px;
}

.order-input select {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 0px;
    border: 0;
    font-size: 12px;
}

.import-options-wrapper {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    z-index: 99999995;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.import-options {
    background-color: rgba(255, 255, 255, 1);
    position: relative;
    margin: 10px;
    border-left: 6px solid #00a9b5;
    border-right: 6px solid #00a9b5;
    border-radius: 4px;
    overflow: hidden;
    z-index: 99999996;
    cursor: auto;
    box-shadow: 1px 2px 6px 2px rgba(0, 0, 0, 0.5);
}

.import-options .close {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    background-color: rgba(0, 139, 161, 0.8);
    font-size: 12px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    z-index: 99999997;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.import-options .close:hover {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(0, 169, 181, 1);
}

.import-options h1 {
    background-color: rgba(0, 169, 181, 1);
    padding: 15px 10px;
    color: #eff1f2;
    margin: 0;
    font-size: 17px;
    font-weight: normal;
    margin-bottom: 16px;
}

.import-options h1 i {
    margin-right: 8px;
}

.import-options h2 {
    margin: 10px 10px 8px 10px;
    color: rgba(0, 169, 181, 1);
    border-bottom: 1px solid rgba(0, 169, 181, 0.5);
    font-size: 15px;
    font-weight: normal;
}

.import-options .import-input {
    display: flex;
    margin: 0 10px 8px 10px;
}

.import-options label {
    background-color: rgba(0, 169, 181, 1);
    width: 150px;
    padding: 8px 10px;
    border-radius: 2px 0 0 2px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.import-options .input {
    background-color: rgba(0, 169, 181, 0.8);
    width: 70px;
    padding: 8px 10px;
    border: 0;
    border-radius: 0 2px 2px 0;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.import-options select.input {
    width: 90px;
}

.import-options input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.4);
}

.import-options .file-input {
    background-color: rgba(0, 169, 181, 1);
    display: flex;
    justify-content: space-between;
    width: 240px;
    padding: 8px 10px;
    border: 0;
    border-radius: 0 2px 2px 0;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.import-options .file-input span {
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.import-options button {
    background-color: rgba(0, 169, 181, 1);
    display: block;
    width: calc(100% - 60px);
    padding: 15px 0;
    margin: 20px auto 0 auto;
    border: 0;
    border-radius: 4px 4px 0 0;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.import-options button:hover,
.import-options .file-input:hover {
    background-color: rgba(0, 139, 161, 0.8);
}

.import-options button:active,
.import-options .file-input:active {
    background-color: rgba(0, 139, 161, 1);
}

.import-options button:disabled {
    background-color: rgba(0, 139, 161, 0.3);
    cursor: not-allowed;
}

.import-options button .wait {
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.import-options button .wait i {
    margin-left: 8px;
    font-size: 18px;
    -webkit-animation: spinner-rotation 1s infinite linear;
    animation: spinner-rotation 1s infinite linear;
}

@-webkit-keyframes spinner-rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

@keyframes spinner-rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

/*
|--------------------------------------------------------------------------
| Google tables
|--------------------------------------------------------------------------
|
| Estilos para las tablas de Google
|
*/
.scroll-table{
    max-height: 30em !important;
    overflow-y: auto !important;
}
#table,
#table2 {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

#table .google-visualization-table-th,
#table2 .google-visualization-table-th {
    background-image: none;
    background-color: #32b9c3;
    padding: 8px;
    color: rgba(255, 255, 255, 0.9);
}

#table .google-visualization-table-sortind,
#table2 .google-visualization-table-sortind {
    color: rgba(0, 139, 161, 1);
}

#table .google-visualization-table-tr-over,
#table2 .google-visualization-table-tr-over {
    background-color: rgba(0, 169, 181, 0.05);
}

#table .google-visualization-table-tr-sel,
#table2 .google-visualization-table-tr-sel {
    background-color: rgba(0, 139, 161, 0.15);
}

#table .google-visualization-table-td,
#table2 .google-visualization-table-td {
    padding: 6px;
    color: #5a5a5a;
}

#table .number-of-customers,
#table2 .number-of-customers {
    width: 170px;
    min-width: 170px;
    text-align: center;
}

#table .options,
#table2 .options {
    width: 170px;
    min-width: 170px;
}

#table form,
#table2 form {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#table .link,
#table2 .link {
    text-align: center;
}

#table .link a i,
#table2 .link a i {
    font-size: 12px;
}

#table form a,
#table form button,
#table2 form a,
#table2 form button {
    background-color: transparent;
    padding: 0;
    margin: 0 4px;
    border: none;
    color: #5a5a5a;
    text-decoration: none;
    cursor: pointer;
}

#table form i,
#table2 form i {
    font-size: 14px;
}

#table form a:hover,
#table form button:hover,
#table2 form a:hover,
#table2 form button:hover {
    color: rgb(5, 52, 70);
}

/*
|
|
|--------------------------------------------------------------------------
| Fin de Google tables
|--------------------------------------------------------------------------
*/

.admin-content-wrapper.form .window {
    background-color: rgba(0, 169, 181, 0.8) !important;
    width: 100%;
    max-width: 300px;
}

.admin-content-wrapper.bigger-form .window {
    background-color: rgba(0, 169, 181, 0.8) !important;
    width: 100%;
    max-width: 500px;
}

.admin-form .form-section {
    margin-bottom: 8px;
}

.admin-form .form-section .title {
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.admin-form .form-section .fields {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.admin-form .form-section .field {
    width: 48%;
}

.filter .field {
    position: relative;
}

.admin-form .field {
    position: relative;
    margin-bottom: 14px;
}

.admin-form .field label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.admin-form .input {
    display: flex;
}

.admin-form .input i {
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 18px;
    padding: 6px;
    border: 1px solidr rgba(255, 255, 255, 0.8);
    border-radius: 2px 0 0 2px;
    text-align: center;
    color: rgba(0, 169, 181, 1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.admin-form .input input,
.admin-form .input select,
.admin-form .input span {
    background-color: #fff;
    width: calc(100% - 32px);
    /* Se le resta el width del icono */
    padding: 6px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 0 2px 2px 0;
    box-sizing: border-box;
    font-size: 12px;
    color: #5a5a5a;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.admin-form .input ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.3);
}

.admin-form .input.disabled {
    cursor: not-allowed;
}

.input.disabled .file-input {
    cursor: not-allowed;
    pointer-events: none;
    background-color: rgba(186, 186, 186, 0.7) !important;
    
}

.admin-form .input.disabled i,
.admin-form .input.disabled input {
    background-color: rgba(186, 186, 186, 0.7) !important;
    border-color: transparent !important;
    color: rgba(255, 255, 255, 0.8) !important;
    pointer-events: none !important;
}

.admin-form .input .invalid-icon {
    position: absolute;
    right: 0;
    cursor: help;
    z-index: 100;
}

.admin-form .input .invalid-icon i {
    background-color: transparent !important;
    padding: 8px 6px;
    color: rgba(225, 255, 255, 0.8) !important;
    font-size: 12px !important;
}

.admin-form .input input:-moz-submit-invalid,
.admin-form .input input:invalid,
.admin-form .input select:-moz-submit-invalid,
.admin-form .input select:invalid {
    box-shadow: none;
}

.filter .consultants-input,
.filter .customers-input {
    background-color: #d4eff1;
    position: absolute;
    margin-top: -2px;
    width: 100%;
    max-height: 180px;
    overflow: auto;
    z-index: 1000;
}

.admin-form .consultants-input,
.admin-form .customers-input {
    background-color: #d4eff1;
    position: absolute;
    width: calc(100% - 32px);
    margin-top: -2px;
    margin-left: 30px;
    max-height: 180px;
    overflow: auto;
    z-index: 1000;
}

.filter .consultants-input div,
.filter .customers-input div,
.admin-form .consultants-input div,
.admin-form .customers-input div {
    background-color: #d4eff1;
    padding: 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 12px;
    color: #5a5a5a;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.filter .consultants-input div:hover,
.filter .customers-input div:hover,
.admin-form .consultants-input div:hover,
.admin-form .customers-input div:hover {
    background-color: white;
}

.apply-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-left: 12px;
    margin-right: 6px;
    font-size: 36px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
}

.apply-filter:hover {
    color: rgba(255, 255, 255, 1);
}

.admin-form .input input[type="file"] {
    display: none;
}

.admin-form .file-input {
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    width: 100%;
    max-width: calc(100% - 32px);
    border: 1px solid transparent;
    border-radius: 0 2px 2px 0;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.admin-form .file-input:hover {
    background-color: #fff;
}

.admin-form .file-input:active {
    background-color: rgba(255, 255, 255, 0.4);
}

.admin-form .file-input i {
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.admin-form .file-input span {
    background-color: transparent;
    border: none;
    border-radius: 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.admin-form .submit {
    margin-top: 32px;
    text-align: right;
    font-size: 12px;
}

.admin-form .submit a {
    background-color: rgba(255, 255, 255, 0);
    padding: 6px;
    margin-right: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.admin-form .submit a:hover {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0);
    color: rgba(0, 169, 181, 1);
}

.admin-form .submit input {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0);
    color: rgba(0, 169, 181, 1);
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.admin-form .submit input:hover {
    background-color: white;
    border-color: white;
}

.admin-form .submit input:disabled {
    background-color: rgba(255, 255, 255, 0.8);
    color: rgba(0, 169, 181, 1);
    opacity: 0.5;
    cursor: not-allowed;
}

.admin-form .note {
    margin-top: 16px;
    margin-bottom: -14px;
    text-align: right;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.user-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 32px);
    margin: 32px 8px 0px 8px;
}

.user-content-wrapper.customer {
    justify-content: flex-start;
}

.user-content-wrapper img {
    width: 100%;
    max-width: 340px;
    margin-left: 8px;
    margin-right: 8px;
    margin-bottom: 32px;
    -webkit-filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.26));
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.26));
}

.user-content-wrapper.customer img {
    margin-bottom: 48px;
}

.user-menu {
    background-color: rgba(5, 52, 70, 1);
    position: fixed;
    top: 0;
    right: 0;
    padding: 8px 32px;
    text-align: right;
    border-radius: 0 0 0 4px;
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.25);
}

.user-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.user-menu a:hover {
    color: rgba(255, 255, 255, 1);
}

.user-menu i {
    margin-left: 8px;
}

.user-content-wrapper .window {
    width: 100%;
    max-width: 500px;
    margin-bottom: 32px;
}

.user-content-wrapper.customer .window {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 32px;
}

.user-content-wrapper .window-title i {
    margin-right: 8px;
}

.window-section {
    margin-bottom: 16px;
}

.window-section .title {
    margin-bottom: 16px;
    color: rgba(0, 169, 181, 0.8);
    border-bottom: 1px solid rgba(0, 169, 181, 0.4);
}

.window-section .content {
    display: flex;
    flex-wrap: wrap;
    color: rgba(0, 0, 0, 0.55);
}

.window-section .content .field {
    display: flex;
    width: 100%;
    margin-bottom: 8px;
    border-radius: 2px;
    overflow: hidden;
}

.window-section .content .field label,
.window-section .content .working-filter label {
    background-color: rgba(0, 169, 181, 0.8);
    display: inline-block;
    min-width: 110px;
    padding: 4px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.window-section .content .field span {
    display: inline-block;
    padding: 4px;
    font-size: 14px;
    font-weight: bold;
}

.window-section .content .field a {
    font-size: 13px;
}

.window-section .content .field a i {
    margin-left: 4px;
}

.worker-filter {
    display: flex;
    margin-bottom: 8px;
}

.worker-filter label {
    background-color: rgba(0, 169, 181, 0.8);
    padding: 4px 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.worker-filter select {
    background-color: rgba(0, 169, 181, 0.6);
    padding: 4px 8px;
    font-size: 12px;
    border: none;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.consultant-filter,
.customer-filter {
    display: flex;
    flex-wrap: wrap;
}

.consultant-filter-field,
.customer-filter-field {
    display: flex;
    margin-bottom: 8px;
}

.consultant-filter label,
.customer-filter label {
    background-color: rgba(0, 169, 181, 0.8);
    display: flex;
    align-items: center;
    padding: 4px 8px;
    font-size: 12px;
    border: none;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.consultant-filter input,
.customer-filter input {
    background-color: rgba(0, 169, 181, 0.6);
    padding: 4px 8px;
    display: flex;
    align-items: center;
    margin-right: 8px;
    font-size: 12px;
    border: none;
    color: rgba(255, 255, 255, 0.8);
}

.consultant-filter input[type="date"],
.customer-filter input[type="date"] {
    text-align: center;
}

.consultant-filter .consultant-filter,
.customer-filter .customer-filter {
    display: flex;
    position: relative;
}

.consultant-filter .customer-input-wrapper,
.consultant-filter .customer-input,
.customer-filter .customer-input {
    display: flex;
    position: relative;
}

.consultant-filter .customers-input {
    background-color: #d4eff1;
    position: absolute;
    top: 27px;
    right: 8px;
    width: calc(100% - 63px);
    max-height: 180px;
    overflow: auto;
    z-index: 1000;
}

.consultant-filter .customers-input div,
.customer-filter .customers-input div {
    background-color: #d4eff1;
    padding: 4px;
    font-size: 12px;
    color: #5a5a5a;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.consultant-filter .customers-input div:hover,
.customer-filter .customers-input div:hover {
    background-color: white;
}

.consultant-filter input[type="text"],
.customer-filter input[type="text"] {
    max-width: 130px;
}

.consultant-filter ::-webkit-input-placeholder,
.customer-filter ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.6);
}

.consultant-filter input[type="submit"],
.customer-filter input[type="submit"] {
    background-color: rgba(0, 169, 181, 0.8);
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.consultant-filter input[type="submit"]:hover,
.customer-filter input[type="submit"]:hover {
    background-color: rgba(0, 139, 161, 0.8);
}

.consultant-filter input[type="submit"]:active,
.customer-filter input[type="submit"]:active {
    background-color: rgba(0, 139, 161, 1);
}

@media (max-width: 370px) {
    .app-title {
        font-size: 24px;
    }
}

@media (max-width: 445px) {
    /* .menu {
        display: none;
    }
    .menu-triangle {
        display: none;
    } */
    .admin-sidebar-wrapper {
        display: none;
    }
    .admin-content-wrapper {
        margin-left: 0px;
    }
    .admin-responsive-sidebar-wrapper {
        display: block;
    }
    .messages {
        left: 0px;
    }
    .filter-wrapper {
        flex-direction: column;
        width: 100%;
    }
    .filter-wrapper .filter {
        width: 100%;
        padding: 0;
    }
    .filter form {
        padding: 2px 8px;
    }
    .filter form .field {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
    }
    .filter form label,
    .filter form input,
    .filter form select {
        display: block;
        width: calc(100% - 8px);
        font-size: 12px;
    }
    .filter form select {
        width: 100%;
        padding: 3px 4px;
    }
    .window-section .content .field {
        flex-direction: column;
    }
    .window-section .content .field label {
        width: 100%;
    }
    .window-content .quick-access-link {
        margin: 6px;
    }
    .window-content .quick-access-link .list-link {
        width: 80px;
        height: 80px;
    }
    .window-content .quick-access-link .add-link {
        width: 84px;
        height: 22px;
        font-size: 13px;
    }
}

@media (max-width: 540px) {
    .admin-form .form-section .field {
        width: 100%;
    }
}

@media (min-width: 445px) and (max-width: 886px) {
    .admin-sidebar-logo {
        padding: 0;
    }
    .admin-sidebar-logo .logo-not-responsive {
        display: none;
    }
    .admin-sidebar-logo .logo-responsive {
        display: block;
    }
    .admin-sidebar-wrapper a span {
        display: none;
    }
    .admin-content-wrapper {
        margin-left: 60px;
    }
    .messages {
        left: 60px;
    }
}

.tinytext-success {
    color: #7aff4e;
    position: absolute;
    bottom: -12px;
    font-size: 9px;
}

.admin-form input.disabled {
    background-color: #d5d5d5;
    border-color: #d5d5d5;
    cursor: default;
}


/* quitar cosas de la paginacion, mejor esto que crear vistas creo yo */
.page-item:first-child, /* Oculta "Previous" */
.page-item:last-child { /* Oculta "Next" */
    display: none !important;
}

.small.text-muted { /* Oculta el "Showing..." */
    display: none !important;
}