* {
    font-family: Quicksand, sans-serif;
}

html {
    box-sizing: border-box;
    font-size: 16px;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.hidden {
    display: none !important;
}

.header {
    width: 100%;
    height: auto;
}

.header__line {
    background-color: #BF0909;
    width: 100%;
    height: 25px;
}

.header__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 60px;
}

.navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar__content {
    width: calc(100% - 120px);
    background: #ebecec;
    display: flex;
    justify-content: flex-end;
    padding: 8px 15px;
    border-radius: 9px;
}

.navbar__data {
    display: flex;
}

.navbar__username {
    font-size: 15px;
    display: flex;
    align-items: center;
}

.navbar__username strong {
    margin-left: 5px;
}

.navbar__button {
    color: white;
    border: none;
    background-color: #e72419;
    border-radius: 5px;
    padding: 6px 24px;
    cursor: pointer;
    margin-left: 15px;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.navbar__button:hover {
    background-color: #cc2017;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.container--login {
    margin-bottom: 100px;
}

.container__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container__button {
    border: none;
    font-size: 15px;
    border-radius: 5px;
    padding: 8px 30px;
    cursor: pointer;
    color: #333;
    text-decoration: none;
    text-align: center;
    background-color: #ebecec;
}

.container__button:disabled {
    cursor: not-allowed;
    background-color: #ebecec;
}

.container__button:disabled:hover {
    background-color: #ebecec;
}

.container__button:hover {
    background-color: #dedede;
}

.container__button:not(:last-child) {
    margin-right: 15px;
}

.container__button--primary {
    color: white;
    background-color: #e72419;
}

.container__button--primary:hover {
    background-color: #cc2017;
}

.container__wrapper {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container__header {
    margin: 60px 20px 60px 20px;
}

.container__header--m20 {
    margin: 20px;
}

.container__title {
    font-size: 26px;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
}

.container__body {
    margin: auto;
    text-align: center;
}

.container__form {
    max-width: 400px;
    border: solid 2px #e6e6e6;
    border-radius: 3px;
    margin: auto;
}

.container__form--sucess {
    max-width: 650px;
    margin: 0 20px;
}

.container__form-header {
    background-color: #BF0909;
    text-align: center;
    padding: 8px 20px;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.container__form-body {
    background-color: white;
    padding: 35px 20px 20px 20px;
}

.container__form-footer {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background-color: #575656;
    padding: 8px 20px;
    text-align: center;
}

.container__form-actions {
    display: flex;
    justify-content: center;
}

.container__form-button {
    font-size: 16px;
    color: white;
    border: none;
    background-color: #BF0909;
    border-radius: 5px;
    padding: 8px 24px;
    cursor: pointer;
    margin-top: 10px;
}

.container__form-button:hover {
    background-color: #cc2017;
}

.container__form-button--disabled,
.container__form-button--disabled:hover {
    background-color: #e72419;
    cursor: default;
    opacity: 0.5;
}

.container__form-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container__form-msg svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.container__form-msg span {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    margin: 0 20px 10px 20px;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #575656;
    width: 100%;
    height: 60px;
}

.footer--nofixed {
    position: relative;
}

.form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    font-size: 18px;
    border: solid 1px #d2d2d2;
    padding: 5px 10px;
    margin-left: 20px;
    width: calc(100% - 20px);
}

label {
    font-size: 18px;
    font-weight: bold;
}

.control-label {
    width: 30%;
    text-align: right;
}

.control-input {
    text-align: right;
    width: 70%;
}

.list__tablet {
    display: none;
}

.list__code {
    display: none;
    font-weight: bold;
    color: #666;
}

table {
    border: solid 2px #ebecec;
    margin: 0;
    padding: 0;
    max-width: 1000px;
    border-radius: 9px;
}

table thead tr th {
    font-size: 14px;
    background-color: #ebecec;
    padding: 5px 10px;
}

table tbody tr td {
    font-size: 15px;
    border-bottom: solid 2px #ebecec;
    border-right: solid 2px #ebecec;
    padding: 5px 10px;
    margin: 0;
}

table tbody tr td span {
    display: block;
    border: solid 2px #666;
    color: #666;
    padding: 12px 8px;
    margin: 0 auto;
    width: 60px;
    font-size: 1.5em;
    border-radius: 9px;
    text-align: center;
}

table tbody tr td small {
    display: block;
    text-align: center;
    margin-top: 5px;
}

table tbody tr td:last-child {
    border-right: none;
}

table tfoot tr td {
    font-size: 15px;
    background-color: #ebecec;
    padding: 10px 20px;
    text-align: justify;
}

.img-thumbnail {
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
}

.alert {
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    margin-top: 20px;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    text-align: center;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
    text-align: center;
}

.enlini {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

@media screen and (max-width: 870px) {
    .header__nav {
        padding: 10px 30px;
    }
    .header__logo img {
        width: 400px;
    }
    .header__logo2 img {
        width: 150px;
    }
    .navbar__content {
        width: calc(100% - 70px);
    }
    .container {
        margin-bottom: 60px;
    }
    .container__header {
        margin: 40px 20px 40px 20px;
    }
    .container__title {
        font-size: 23px;
        line-height: 24px;
    }
    .footer {
        display: none;
    }
    body table tbody tr td span {
        font-size: 1.2em;
        padding: 8px 4px;
        width: 45px;
    }
    body table tbody tr td small {
        font-size: 12px;
    }
    .list__desktop {
        display: none;
    }
    .list__tablet {
        display: table-cell;
        font-size: 14px;
    }
}

@media screen and (max-width: 635px) {
    .header__logo2 img {
        display: none;
    }
    .navbar__content {
        width: calc(100% - 60px);
    }
    .list__tablet {
        font-size: 13px;
    }
    body table tfoot tr td {
        font-size: 13px;
    }
}

@media screen and (max-width: 460px) {
    .header__line {
        height: 15px;
    }
    .header__nav {
        padding: 8px 20px;
    }
    .navbar__content {
        justify-content: space-between;
        width: calc(100% - 20px);
    }
    .navbar__data {
        width: 100%;
        justify-content: space-between;
    }
    .navbar__username {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar__username strong {
        margin-left: 0;
    }
    .container {
        margin-bottom: 40px;
    }
    .container__actions {
        flex-direction: column;
    }
    .container__button {
        width: 100%;
    }
    .container__button:not(:last-child) {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .container__body {
        width: 100%;
    }
    .container__header {
        margin: 20px;
    }
    .container__title {
        font-size: 18px;
        line-height: 20px;
    }
    .container__form {
        margin: 0 20px;
        width: calc(100% - 40px);
    }
    .container__form-msg svg {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    .container__form-msg span {
        font-size: 18px;
        margin: 0 10px 8px 10px;
    }
    .form-group {
        flex-direction: column;
    }
    .control-label {
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
    }
    .control-input {
        text-align: right;
        width: 100%;
    }
    input[type="text"],
    input[type="password"] {
        margin-left: 0;
        width: 100%;
    }
    .list__tablet {
        font-size: 12px;
    }
    .list__tablet strong {
        font-size: 11px;
    }
    .list__mobile {
        display: none;
    }
    body table {
        border: none;
    }
    body table thead tr th {
        font-size: 12px;
    }
    body table tfoot tr td {
        font-size: 11px;
        padding: 10px;
    }
    .list__code {
        display: block;
    }
    .alert {
        padding: 10px;
        font-size: 13px;
    }
}

.chart_div {
    margin: 20px;
}

.tabs ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.tabs>div>div {
    display: none;
}

.tabs>div>div.active {
    display: inline-block;
}

.tabs ul li a.active {
    background-color: white;
}

.tabs ul li a {
    display: block;
    outline: none;
    padding: 1rem;
    text-decoration: none;
    border: 1px solid #eee;
    border-bottom: 0;
    background-color: #eee;
    color: #000;
    transform: translateY(1px);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.empty {
    padding: 25px;
    text-align: center;
}

.centrado {
    text-align: center;
}

@media print {
    .noprint {
        display: none;
    }
}