﻿
/* ********** */
/* DEFAULTS */
/* ********** */
* {
    user-select: none;
}

    *:focus {
        outline: none;
    }
html,
body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100vh;
    padding: 0;
    margin: 0;
}
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #404040;
    line-height: 1.6;
}
h1, h2, strong {
    font-weight: 700;
}
div.no-data {
    font-size: 16px;
    font-weight: 800;
    color: #c0c0c0;
    padding: 8px 16px 8px 16px;
    /*    color: #808080;
    background-color: #f1f1f1;
    border-radius: 8px;
    border: 1px solid #808080;
    width: 200px;
    margin: 8px auto 8px auto;*/
}
img {
    max-width: 100%;
}
div.error {
    background-color: #cc0000;
    color: #ffffff;
    border: 1px solid #cc0000;
    border-radius: 5px;
}
fieldset {
    border: 0px;
}
.bold,
.boldish {
    font-weight:600;
}
.bolder {
    font-weight:700;
}
/** tooltip **/
.tooltipster-sidetip.tooltipster-shadow.tooltipster-shadow-customized .tooltipster-box {
    max-width:250px;
    background-color:#f9f9f9;
    border:1px solid #c0c0c0;
    border-radius: 6px;
    box-shadow: 5px 5px 2px 0 rgba(0,0,0,0.4);
}
.tooltipster-sidetip.tooltipster-shadow.tooltipster-shadow-customized .tooltipster-content {
    color: #333;
    padding: .5em 1em;
}

/** loading **/
div.loading i {
    color: #15aabf !important;
    font-size: 1.25em !important;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    -o-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
i.loading {
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    -o-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(359deg);
    }
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(359deg);
    }
}
/** overflow **/
.scroll-y {
    overflow-y: auto !important;
}
.scroll-x {
    overflow-x: auto !important;
}
/** input **/
input[type=text],
textarea,
select {
    background-color:#fff;
    color: #333;
    border: 1px solid rgb(225, 225, 225 );
    padding-left: 2px;
    height:30px;
}
    input[type=text]:hover,
    textarea:hover,
    select:hover {
        border: 1px solid #15aabf;
        background: -webkit-linear-gradient(#E1F4F8, #fff);
        background: linear-gradient(#E1F4F8, #fff);
    }
textarea {
    height:150px;
}
.form-control {
    font-size: 14px !important;
    padding-left: 2px;
    height: 30px;
}
/* table styles */
div.dataTables_filter input, div.dataTables_length select {
    padding: 4px 8px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555555;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

div.td-left {
    color: rgb(0, 76, 137);
    float: left;
    width: 92%;
}

i.td-right {
    color: rgb(0, 76, 137);
    font-size: 20px !important;
    float: left;
    width: 8%;
    color: #3d89c4 !important;
}

td.no-data {
    min-height: 350px;
    text-align: center;
    color: #808080;
    font-size: 16px;
    vertical-align: middle;
}

table.table-summary {
    font-size: 13px !important;
    border-collapse: collapse !important;
}

    table.table-summary tr th {
        background-color: rgb(240, 240, 240);
        color: rgb(65, 65, 65);
        text-align: center;
        border-top: 1px solid rgb(221, 221, 221) !important;
    }

        table.table-summary tr th:first-child {
            border-top-left-radiusxx: 5px !important;
        }

        table.table-summary tr th:last-child {
            border-top-right-radiusxx: 5px !important;
        }

    table.table-summary tr.last-row td {
        height: 1px !important;
        max-height: 1px !important;
        font-size: 0px !important;
        background-color: rgb(221, 221, 221) !important;
        padding: 0 !important;
        margin: 0 !important;
    }

        table.table-summary tr.last-row td:first-child {
            border-bottom-left-radiusxxx: 5px !important;
        }

        table.table-summary tr.last-row td:last-child {
            border-bottom-right-radiusxxx: 5px !important;
        }

.table-striped > tbody > tr:nth-of-type(2n+1) {
    background-color: rgb(250,250,250) !important;
}

table.dataTable thead th, table.dataTable thead td {
    border-bottom: 1px solid rgb(100,100,100) !important;
}

div.dataTables_length, div.dataTables_length label, div.dataTables_length input, div.dataTables_length select,
div.dataTables_info, div.dataTables_info label, div.dataTables_info input,
div.dataTables_filter, div.dataTables_filter label, div.dataTables_filter input,
div.dataTables_paginate {
    font-size: 12px !important;
    font-weight: normal !important;
    margin-right: 5px;
    padding-left: 5px;
}

td.success {
    color: darkgreen !important;
}

td.info {
    color: #444 !important;
}

td.error {
    color: #cc0000 !important;
}

td.warning {
    color: #F17C20 !important;
}
.td-kpi {
    margin-top:5px !important;
    font-size: 11px !important;
    margin-right: 5px !important;
}
.td-kpi-left {
    margin-left:5px !important;
    float: left !important;
}
.td-kpi-big {
    margin-top: 0px !important;
    font-size: 22px !important;
}
.td-kpi-dim {
    opacity: .75 !important;
}