@charset "UTF-8";

@font-face {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    src: url("/fonts/Open_Sans/OpenSans-Regular.ttf");
}

@font-face {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    src: url("/fonts/Montserrat/Montserrat-Regular.ttf");
}

@font-face {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-style: normal;
    src: url("/fonts/Oswald/Oswald-Regular.ttf");
}

@font-face {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-style: normal;
    src: url("/fonts/Raleway/Raleway-Regular.ttf");
}

body {
    padding-top: 60px;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    background-color: #f5f7fa;
    color: #424242;
}

a.original-link {
    color: #0076bf;
    text-decoration: underline;
}

a {
    text-decoration: none;
    color: #d9e7ef;
    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    transition: color 0.4s;
}

    a:hover {
        color: #b6d0df;
    }

    a:hover, a:focus, a:active {
        text-decoration: none;
    }

input[type="checkbox"] {
    width: 13px !important;
}

button {
    cursor: pointer;
    font-size: 14px !important;
    font-family: 60px !important;
}

    button:active, button:focus, button:focus:active {
        outline: none;
    }

    button[disabled] {
        cursor: not-allowed;
    }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    text-transform: capitalize;
    font-family: "Roboto Condensed", sans-serif;
}

    h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child,
    .h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child {
        margin-top: 0;
    }

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-header {
    position: fixed !important;
    z-index: 10 !important;
    height: 60px;
    top: 0;
    left: 0;
    right: 0;
    color: #0a6b86;
    background-color: #b6d0df !important;
}

.trial-header {
    color: #0a6b86;
    background-color: #b6d0df;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}

    .site-header > .container,
    .site-header > .container-fluid {
        display: flex;
    }

@media only screen and (max-width: 877px) {
    .site-header > .container,
    .site-header > .container-fluid {
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
}

#navigation {
    position: fixed;
    z-index: 12;
    top: 0;
    right: 0;
    bottom: 0;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    background-color: white;
    transform: translateX(260px);
    transition: transform 0.4s ease;
}

@media only screen and (min-width: 878px) {
    #navigation {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        flex-direction: row;
        transform: translateX(0);
    }
}

#navigation.open {
    transform: translateX(0);
}

/* Overlay */
.nav-overlay {
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}

/* Navigation Overlay */
.navigation-overlay {
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}

#site-main {
    height: calc(100vh - 60px);
    display: flex;
    align-items: stretch;
}

    #site-main .navigation-left {
        position: fixed;
        z-index: 11;
        top: 0;
        left: 0;
        bottom: 0;
        width: 260px;
        height: 100vh;
        padding: 10px;
        background-color: white;
        overflow: hidden;
        overflow-y: auto;
        transform: translateX(-260px);
        transition: transform 0.4s ease;
    }

@media only screen and (min-width: 877px) {
    #site-main .navigation-left {
        position: relative;
        z-index: 0;
        top: auto;
        left: auto;
        bottom: auto;
        width: 280px;
        max-width: 280px;
        flex: 0 0 280px;
        height: auto;
        transform: translateX(0);
        border-right: 1px solid #e0e0e0;
    }

        #site-main .navigation-left.hidden {
            display: none;
        }
}

#site-main .navigation-left.open {
    transform: translateX(0);
}

#site-main .navigation-left:empty {
    display: none;
}

#site-main .site-content {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding: 20px 0 0 0;
    overflow-y: auto;
}

@media only screen and (min-width: 878px) {
    #site-main .site-content {
        width: calc(100% - 280px);
        max-width: calc(100% - 280px);
        flex: 0 0 calc(100% - 280px);
    }
}

#site-main .site-content.full-size {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

.site-navigation .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
}

@media only screen and (min-width: 878px) {
    .site-navigation .nav-menu {
        flex-direction: row;
        align-items: center;
    }
}

.site-navigation .nav-menu > li {
    border-bottom: 1px solid #EEE;
}

    .site-navigation .nav-menu > li:last-child {
        border-bottom: none;
    }

@media only screen and (min-width: 878px) {
    .site-navigation .nav-menu > li {
        line-height: 60px;
        border-bottom: none;
    }
}

.site-navigation .nav-menu > li > a {
    margin: 0;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    text-align: start;
    font-size: 14px;
    color: #757575;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .site-navigation .nav-menu > li > a:active {
        background-color: #eeeeee;
    }

    .site-navigation .nav-menu > li > a.active {
        font-weight: 600;
        color: #b6d0df;
    }

    .site-navigation .nav-menu > li > a.button {
        color: #ffffff;
        background-color: #b6d0df;
    }

@media only screen and (min-width: 878px) {
    .site-navigation .nav-menu > li > a {
        padding: 0 8px;
        font-size: 12px;
        color: inherit;
    }

        .site-navigation .nav-menu > li > a:active {
            background-color: #eeeeee;
        }

        .site-navigation .nav-menu > li > a:hover {
            color: #b6d0df;
        }

        .site-navigation .nav-menu > li > a.active {
            color: #b6d0df;
            position: relative;
        }

            .site-navigation .nav-menu > li > a.active::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                border-bottom: 4px solid #b6d0df;
            }

        .site-navigation .nav-menu > li > a.button {
            padding: 0 10px;
            color: #ffffff;
            background-color: #b6d0df;
        }

            .site-navigation .nav-menu > li > a.button:hover {
                background-color: #d9e7ef;
            }
}

@media only screen and (min-width: 992px) {
    .site-navigation .nav-menu > li > a {
        padding: 0 12px;
        font-size: 14px;
    }
}

.data-table {
    margin-bottom: 30px;
    background-color: #FFF;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

    .data-table > .header {
        display: flex;
        align-items: center;
        padding: 15px;
    }

        .data-table > .header > h1, .data-table > .header > h2, .data-table > .header > h3, .data-table > .header > h4, .data-table > .header > h5, .data-table > .header > h6 {
            margin: 0;
        }

        .data-table > .header > .items {
            margin: 0 0 0 auto;
        }

    .data-table > .table {
        margin-bottom: 0;
    }

        .data-table > .table > thead {
            font-size: 12px;
        }

        .data-table > .table td, .data-table > .table th {
            vertical-align: middle;
        }

.btn-crud {
    padding: 8px;
    display: inline-flex;
    border-radius: 50%;
    border: 1px solid #ff5722;
    color: #ff5722;
    background-color: transparent;
}

    .btn-crud:hover {
        color: #e64a19;
        border-color: #e64a19;
    }

    .btn-crud > em {
        font-size: 18px;
    }

.site-header .brand {
    line-height: 60px;
}

    .site-header .brand > img {
        width: auto;
        height: 50px;
    }

.site-header .btn-toggle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-right: 1px solid #d9e7ef;
    color: inherit;
    background-color: transparent;
}

    .site-header .btn-toggle.right {
        border-right: none;
        border-left: 1px solid #EEE;
    }

@media only screen and (min-width: 878px) {
    .site-header .btn-toggle {
        display: none;
    }
}

.site-header ul.items {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

@media only screen and (min-width: 878px) {
    .site-header ul.items {
        margin-top: 0;
        margin-left: auto;
        flex-direction: row;
    }
}

.site-header ul.items > li {
    border-top: 1px solid #eeeeee;
}

@media only screen and (min-width: 878px) {
    .site-header ul.items > li {
        border-top: none;
        line-height: 60px;
    }
}

.site-header ul.items > li.time > a, .site-header ul.items > li.loading > a {
    cursor: default;
}

    .site-header ul.items > li.time > a:hover, .site-header ul.items > li.loading > a:hover {
        cursor: inherit;
    }

    .site-header ul.items > li.time > a:active, .site-header ul.items > li.loading > a:active {
        background-color: transparent;
    }

.site-header ul.items > li > a,
.site-header ul.items > li > span {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    font-family: 60px;
    color: #0a6b86 !important;
}

    .site-header ul.items > li > a:active,
    .site-header ul.items > li > span:active {
        background-color: #d9e7ef;
    }

@media only screen and (min-width: 878px) {
    .site-header ul.items > li > a,
    .site-header ul.items > li > span {
        padding: 0 10px;
    }

        .site-header ul.items > li > a:hover,
        .site-header ul.items > li > span:hover {
            background-color: #c8dbe7;
        }
}

.site-header ul.items > li > a > .fa,
.site-header ul.items > li > span > .fa {
    font-size: 18px;
}

.site-header ul.items > li > a > span,
.site-header ul.items > li > span > span {
    line-height: normal;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

@media only screen and (min-width: 878px) {
    .nav-menu {
        flex-direction: row;
    }
}

.nav-menu .companylogo {
    display: none !important;
}

.nav-menu > li {
    border-bottom: 1px solid #eeeeee;
}

@media only screen and (min-width: 878px) {
    .nav-menu > li {
        border-bottom: none;
        line-height: 60px;
    }
}

.nav-menu > li > a {
    padding: 10px 30px;
    display: block;
    font-size: 18px;
    font-family: "Roboto Condensed", sans-serif;
    color: #424242;
}

    .nav-menu > li > a.selected {
        border-left: 5px solid #0a6b86;
        color: #0a6b86;
    }

@media only screen and (min-width: 878px) {
    .nav-menu > li > a {
        position: relative;
        padding: 0 8px;
        box-sizing: border-box;
        color: #0a6b86;
    }

        .nav-menu > li > a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            font-family: FontAwesome, sans-serif;
            line-height: normal;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .nav-menu > li > a:hover {
            background-color: #c8dbe7;
        }

        .nav-menu > li > a.selected {
            font-weight: normal;
            border-left: none;
            color: #0a6b86;
        }

            .nav-menu > li > a.selected::after {
                bottom: 5px;
                opacity: 1;
            }
}

.navigation-left > .header {
    padding: 12px;
    color: #546e7a;
}

    .navigation-left > .header > .title {
        padding: 0;
        margin: 0;
        font-size: 16px;
        font-weight: normal;
    }

        .navigation-left > .header > .title > .fa {
            margin-right: 8px;
        }

.navigation-left > .body {
    margin-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

    .navigation-left > .body > ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

        .navigation-left > .body > ul > li > a {
            display: block;
            padding: 8px 30px;
            font-size: 13px;
            cursor: pointer;
            color: #424242;
            transition: all 0.3s ease;
        }

            .navigation-left > .body > ul > li > a:hover {
                background-color: rgba(182, 208, 223, 0.2);
            }

            .navigation-left > .body > ul > li > a:active {
                background-color: #eeeeee;
            }

            .navigation-left > .body > ul > li > a.selected {
                color: #0a6b86;
                border-left: 4px solid #0a6b86;
            }

                .navigation-left > .body > ul > li > a.selected::after {
                    content: "";
                    float: right;
                    font-family: FontAwesome, sans-serif;
                }

h1.productlogo {
    font-size: 22px;
    text-transform: lowercase;
}

@media only screen and (min-width: 992px) {
    h1.productlogo {
        font-size: 36px;
    }
}

h1.productlogo > strong {
    text-transform: uppercase;
}

h1.productlogo > .developmentInfo {
    display: block;
    position: relative;
    font-size: 16px;
}

.content-header {
    padding: 0px 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 4px 4px 0 0;
    border: 1px solid #cfd8dc;
    border-top-width: 3px;
    border-bottom: none;
    background-color: #ffffff;
}

    .content-header:blank, .content-header:empty {
        display: none;
    }

    .content-header > .title {
        padding: 0;
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: #616161;
    }

    .content-header > .btn-group {
        margin-left: auto;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

.content-body {
    overflow: visible;
    padding: 0px 20px 20px 20px;
    border-radius: 0 0 4px 4px;
    border: 1px solid #cfd8dc;
    border-top: none;
    background-color: #ffffff;
    display: flex;
}

    .content-body h3.h5 {
        font-size: 16px;
        font-weight: 600;
        color: #424242;
    }

    .content-body .list-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

        .content-body .list-menu > li > a {
            padding: 6px 20px;
        }

            .content-body .list-menu > li > a.selected {
                border-left: 4px solid #b6d0df;
            }

.page-title {
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: start;
}

    .page-title:first-child {
        margin-top: 0;
    }

    .page-title > h1, .page-title > h2, .page-title > h3, .page-title > h4, .page-title > h5, .page-title > h6 {
        position: relative;
        padding-bottom: 15px;
    }

        .page-title > h1::after, .page-title > h2::after, .page-title > h3::after, .page-title > h4::after, .page-title > h5::after, .page-title > h6::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #b6d0df;
        }

.multiselect {
    height: auto !important;
    display: flex;
    align-items: center;
    flex-direction: column;
}

@media only screen and (min-width: 768px) {
    .multiselect {
        flex-direction: row;
        height: 200px !important;
    }
}

.multiselect > .selectList {
    width: 40%;
    height: 100%;
    flex: 1 1 40%;
}

    .multiselect > .selectList > select {
        width: 100%;
        height: 100%;
        border: 1px solid #bdbdbd;
    }

.multiselect > .updown-container,
.multiselect > .addremove-container {
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

@media only screen and (min-width: 768px) {
    .multiselect > .updown-container,
    .multiselect > .addremove-container {
        flex-direction: column;
    }
}

.multiselect > .updown-container > button,
.multiselect > .addremove-container > button {
    margin: 10px !important;
    width: 40px !important;
    height: 40px !important;
}

.client_logo_item {
    margin-right: -1px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

    .client_logo_item:first-child {
        margin-right: 0;
    }

    .client_logo_item img {
        max-height: 80px;
    }

.site-footer {
    margin-top: 20px;
}

    .site-footer .copyrights {
        padding: 20px;
        margin: 0;
        letter-spacing: 1px;
        font-size: 12px;
        border-top: 1px solid #e0e0e0;
        color: #546e7a;
    }

.row {
    min-width: 100%;
}

.text-primary {
    color: #b6d0df !important;
}

.text-justify {
    text-indent: 20px;
}

.btn {
    cursor: pointer;
    border-radius: 4px !important;
    border: none !important;
    text-transform: capitalize;
    white-space: normal;
}

    .btn:focus {
        box-shadow: none;
    }

    .btn.disabled, .btn:disabled {
        opacity: 0.5;
    }

.btn-lg {
    padding: 12px 30px;
}

.btn-uppercase {
    text-transform: uppercase;
}

.btn-primary,
.btn-primary.close {
    background-color: #6fa2c0;
}

    .btn-primary:hover,
    .btn-primary.close:hover {
        background-color: #93b9cf;
    }

    .btn-primary:disabled, .btn-primary.disabled,
    .btn-primary.close:disabled,
    .btn-primary.close.disabled {
        background-color: #b6d0df;
    }

    .btn-primary:not(:disabled):not(.disabled):hover,
    .btn-primary.close:not(:disabled):not(.disabled):hover {
        background-color: #93b9cf;
    }

    .btn-primary:not(:disabled):not(.disabled):active,
    .btn-primary.close:not(:disabled):not(.disabled):active {
        box-shadow: none;
        background-color: #0a6b86;
    }

        .btn-primary:not(:disabled):not(.disabled):active:focus,
        .btn-primary.close:not(:disabled):not(.disabled):active:focus {
            box-shadow: none;
        }


.custom-checkbox {
    cursor: pointer !important;
}

.table .custom-checkbox {
    padding-left: 2rem !important;
}

    .table .custom-checkbox .custom-control-label {
        cursor: pointer !important;
    }

.dropdown-menu {
    margin: 0;
    padding: 0;
    border-radius: 0;
}

@media only screen and (max-width: 877px) {
    .dropdown-menu {
        position: relative;
        top: auto;
        left: auto;
        min-width: 100%;
        float: none;
        border: none;
        background-color: #fafafa;
    }
}

.dropdown-menu > .dropdown-item {
    padding: 10px 30px 10px 20px;
    line-height: normal;
    text-align: start;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (min-width: 878px) {
    .dropdown-menu > .dropdown-item {
        padding: 10px 20px;
    }

        .dropdown-menu > .dropdown-item:hover {
            color: #ffffff;
            background-color: #b6d0df;
        }

        .dropdown-menu > .dropdown-item:active {
            background-color: #0a6b86;
        }
}

/* Table */
.table {
    width: 100% !important;
    box-sizing: border-box !important;
}

    .table td, .table tr {
        white-space: nowrap;
    }

        .table tr.clickable {
            cursor: pointer;
        }

        .table tr.selected {
            background-color: rgba(66, 165, 245, 0.4);
        }

.table-bordered thead td,
.table-bordered thead th,
.table-bordered tbody td,
.table-bordered tbody th {
    border-left-width: 0;
    border-right-width: 0;
}

.table-responsive .table-bordered {
    border: 1px solid #e0e0e0;
}

.table table td,
.table table tr {
    white-space: pre-wrap;
}
/* Card */
.card {
    border-color: rgba(0, 0, 0, 0.2);
}

    .card > .card-header {
        font-family: "Open Sans", sans-serif;
        font-size: 14px !important;
        font-weight: bold;
        line-height: 1.5;
        padding: 0.75rem;
    }

    .card .card-body {
        border-top: 1px solid rgba(0, 0, 0, 0.125);
        padding: 0.75rem;
    }

        .card .card-body #chartContainer {
            margin-top: -40px;
        }

@media only screen and (min-width: 878px) {
    .card > .card-body {
        padding: 1.25rem;
    }
}

/* Button Group */
.btn-group > button,
.btn-group > input[type=button],
.btn-group input[type=submit] {
    margin: 5px;
}

.custom-control-label {
    cursor: pointer;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: #eeeeee;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: #bdbdbd;
    /* Handle on hover */
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #9e9e9e;
    }

button.right {
    margin: 0;
}

button.close {
    padding-right: 10px;
    padding-left: 10px;
    font-weight: normal !important;
    color: #ffffff;
    background-color: #424242;
    text-shadow: none;
    opacity: 1;
}

    button.close:not(:disabled):hover, button.close:not(.disabled):hover {
        background-color: #616161;
    }

#form {
    float: none;
}

    #form .articleContainer {
        padding: 0;
    }

/*  . DataTables
 * --------------------------------------------------- */
.no-sort {
    pointer-events: none !important;
    cursor: default !important;
    background-image: none !important;
}

    .no-sort::after {
        display: none !important;
    }

.legendItem {
    display: flex;
}

    .legendItem > .legendColorBox {
        min-width: 11px;
    }

.validation-summary-errors {
    margin-bottom: 20px;
}

    .validation-summary-errors > ul {
        border-radius: 4px;
        border: 1px solid #f5c6cb;
        color: #721c24;
        background-color: #f8d7da;
    }

        .validation-summary-errors > ul > li {
            margin-bottom: 15px;
        }

            .validation-summary-errors > ul > li:last-child {
                margin-bottom: 0;
            }

html.block-scroll {
    overflow-y: scroll;
}

    html.block-scroll > body {
        overflow-y: hidden;
    }

/* Error Messages */
#message {
    top: 50%;
    left: 50%;
    width: auto;
    max-width: 90%;
    transform: translate(-50%, -50%);
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

    #message > p {
        margin: 0;
    }

/*------------------------- RESPONSIVE ------------------------- */
/* MD UP */
@media screen and (min-width: 878px) {
    /*---------------- Layouts ------------------ */
    /* Navigation */
    #navigation {
        overflow: unset;
        background-color: transparent;
    }

    /* Navigation Left */
    /*---------------- Modules -------------------- */
    .site-header .brand {
        display: flex;
        align-items: center;
    }

    /* Navigation Menu */
    .nav-menu {
        height: 100%;
    }

        .nav-menu > li > a {
            padding: 0 10px;
            display: inline-block !important;
        }

            .nav-menu > li > a:hover {
                background-color: transparent;
            }
}

/*# sourceMappingURL=app.css.map */

.modal-dialog {
    max-width: 50%;
}

.modal-body {
    max-height: 750px;
    overflow-y: auto;
}
