﻿@import url('https://fonts.googleapis.com/css2?family=Exo&display=swap');
@import "vars.css";
@import "layout.css";
@import "kpis.css";
@import "notifications.css";
@import "preloader.css";
@import "filters.css";
@import "customized.css";

/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

* {
    font-family: Exo, sans-serif;
    font-size: var(--font-size);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 1.3px;
    /*user-select: none;*/
}

/* Tentative for easy dark mode */
.dark:not(img) {
    filter: invert(100%) hue-rotate(180deg);
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: var(--primary-color);
    text-decoration: none;
}

    a:hover {
        color: var(--primary-color);
        text-decoration: none;
    }

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */

@media (min-width: 768px) {
    /*html {
    font-size: 16px;
  }*/
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    /*position: relative;*/
    min-height: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    background: var(--body-background);
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

ol, ul {
    padding-left: 20px;
}

thead > tr > td {
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.semi-transparent {
    opacity: 0.5;
}

.semi-semi-transparent {
    opacity: 0.25;
}

.transparent {
    color: var(--transparent) !important;
}

.white {
    color: var(--white) !important;
}

.black {
    color: var(--black) !important;
}

.blue {
    color: var(--blue) !important;
}

.green {
    color: var(--green) !important;
}

.red {
    color: var(--red) !important;
}

.orange {
    color: var(--orange) !important;
}

.yellow {
    color: var(--yellow) !important;
}

.gray {
    color: var(--gray-lite) !important;
}

.dark-gray {
    color: var(--gray-dark) !important;
}

.purple {
    color: var(--purple) !important;
}

.gold {
    color: var(--gold) !important;
}

.silver {
    color: var(--silver) !important;
}

.bronze {
    color: var(--bronze) !important;
}

.primary {
    color: var(--primary-color) !important;
}

.secondary {
    color: var(--secondary-color) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-transparent {
    background-color: var(--transparent);
}

.bg-blue {
    background-color: var(--blue) !important;
}

.bg-green {
    background-color: var(--green) !important;
}

.bg-red {
    background-color: var(--red) !important;
}

.bg-orange {
    background-color: var(--orange) !important;
}

.bg-yellow {
    background-color: var(--yellow) !important;
}

.bg-gray {
    background-color: var(--gray-lite) !important;
}

.bg-dark-gray {
    background-color: var(--gray-dark) !important;
}

.bg-purple {
    background-color: var(--purple) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.bg-silver {
    background-color: var(--silver) !important;
}

.bg-bronze {
    background-color: var(--bronze) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.font-5x {
    font-size: 5rem !important;
}

.font-4x {
    font-size: 4rem !important;
}

.font-3x {
    font-size: 3rem !important;
}

.font-2x {
    font-size: 2rem !important;
}

.font-big {
    font-size: 2rem !important;
}

.font-slightlybig {
    font-size: 1.5rem !important;
}

.font-little {
    font-size: 0.8rem !important;
}

.font-normal {
    font-size: 1rem !important;
}

.clickable {
    cursor: pointer !important;
}

.cursor-default {
    cursor: default !important;
}

.not-clickable {
    cursor: not-allowed !important;
}

[v-cloak] {
    display: none;
}

.only-if-light {
    display: none;
}

.only-if-dark {
    display: none;
}

.light .only-if-light {
    display: block;
}

.dark .only-if-dark {
    display: block;
}

.joyful .only-if-joyful {
    display: block;
}

.centered {
    display: flex;
    align-items: center;
    justify-items: center;
}

.form-control {
    border: solid;
    border-width: 2px;
    border-radius: var(--radius);
    border-color: var(--transparent);
    height: 40px;
    background-color: var(--overlay-green);
    color: var(--primary-color);
    background-clip: border-box;
}

    .form-control:focus,
    .form-control:active {
        border-width: 2px;
        border-radius: var(--radius);
        border-color: var(--secondary-color);
        height: 40px;
        background-color: var(--overlay-green);
        color: var(--primary-color);
        box-shadow: var(--overlay-green) 2px 2px 10px;
        /*background-color: #ffffff55;*/
    }

    input.field-not-valid,
    .form-control.field-not-valid,
    .field-not-valid {
        border-color: var(--red) !important;
    }

select.form-control {
    appearance: auto;
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: var(--padding);
    background: #d3d3d3;
    outline: none;
    border-radius: var(--radius);
}

    input[type=range]:hover {
        opacity: 1;
    }

    input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: calc(var(--padding) * 2);
        height: calc(var(--padding) * 2);
        background: var(--primary-color);
        cursor: pointer;
        border-radius: 100%;
    }

    input[type=range]::-moz-range-thumb {
        width: calc(var(--padding) * 2);
        height: calc(var(--padding) * 2);
        background: var(--primary-color);
        cursor: pointer;
        border-radius: 100%;
    }

.btn {
    /*width: 100%;*/
    padding: 0 !important;
    padding-left: var(--padding) !important;
    padding-right: var(--padding) !important;
    height: 40px;
    line-height: 36px;
    border-width: 2px;
    border-radius: var(--radius);
    color: var(--white) !important;
    background: var(--primary-color);
    border-color: var(--primary-color);
    cursor: pointer;
    text-transform: uppercase;
    /*box-shadow: var(--overlay-green-dark) 2px 2px 10px;*/
    font-weight: bold;
}

    .btn:hover {
        color: var(--primary-color) !important;
        background: var(--white) !important;
    }

    .btn.alt {
        border-width: 2px;
        border-radius: var(--radius);
        color: var(--white) !important;
        background: var(--secondary-color);
        border-color: var(--secondary-color);
    }

    .btn:hover.alt {
        color: var(--secondary-color) !important;
        background: var(--white);
    }

    .btn.green {
        border-width: 2px;
        border-radius: var(--radius);
        color: var(--white) !important;
        background: var(--green);
        border-color: var(--green);
    }

    .btn:hover.green {
        color: var(--green) !important;
        background: var(--white);
    }

    .btn.yellow {
        border-width: 2px;
        border-radius: var(--radius);
        color: var(--black) !important;
        background: var(--yellow);
        border-color: var(--yellow);
    }

    .btn:hover.yellow {
        color: var(--yellow) !important;
        background: var(--white);
    }

    .btn.orange {
        border-width: 2px;
        border-radius: var(--radius);
        color: var(--white) !important;
        background: var(--orange);
        border-color: var(--orange);
    }

    .btn:hover.orange {
        color: var(--orange) !important;
        background: var(--white);
    }

    .btn.red {
        border-width: 2px;
        border-radius: var(--radius);
        color: var(--white) !important;
        background: var(--red);
        border-color: var(--red);
    }

    .btn:hover.red {
        color: var(--red) !important;
        background: var(--white);
    }

    .btn.secondary {
        border-width: 2px;
        border-radius: var(--radius);
        color: var(--primary-color) !important;
        background: var(--secondary-color);
        border-color: var(--secondary-color);
    }

    .btn:hover.secondary {
        color: var(--primary-color) !important;
        background: var(--white);
        border-color: var(--primary-color);
    }

    .btn.default {
        border-width: 2px;
        border-radius: var(--radius);
        color: var(--white) !important;
        background: var(--gray-lite);
        border-color: var(--gray-lite);
    }

    .btn:hover.default {
        color: var(--gray-lite) !important;
        background: var(--white);
    }

.max-width-500 {
    width: auto !important;
    max-width: 500px !important;
}

.max-height-500 {
    height: auto !important;
    max-height: 500px !important;
}

.max-height-400 {
    height: auto !important;
    max-height: 400px !important;
}

.max-height-300 {
    height: auto !important;
    max-height: 300px !important;
}

.max-height-250 {
    height: auto !important;
    max-height: 250px !important;
}

.max-height-200 {
    height: auto !important;
    max-height: 200px !important;
}

.max-height-100 {
    height: auto !important;
    max-height: 100px !important;
}

.max-height-100x100 {
    height: auto !important;
    max-height: 100% !important;
}

.max-width-100x100 {
    width: auto !important;
    max-width: 100% !important;
}

.scroll {
    scroll-behavior: smooth;
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

    .scroll::-webkit-scrollbar-track,
    .scroll::-webkit-scrollbar {
        width: var(--padding);
        background: var(--secondary-color);
        box-shadow: none;
        border-radius: var(--radius);
    }

    .scroll::-webkit-scrollbar-thumb {
        width: var(--padding);
        background: var(--primary-color);
        box-shadow: none;
        border-radius: var(--radius);
    }

.hscroll {
    scroll-behavior: smooth;
    overflow: hidden !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
}

    .hscroll::-webkit-scrollbar-track,
    .hscroll::-webkit-scrollbar {
        height: var(--padding);
        background: var(--secondary-color);
        box-shadow: none;
        border-radius: var(--radius);
    }

    .hscroll::-webkit-scrollbar-thumb {
        height: var(--padding);
        background: var(--primary-color);
        box-shadow: none;
        border-radius: var(--radius);
    }

.w-50 {
    width: 50% !important;
}

.w-40 {
    width: 40% !important;
}

.w-30 {
    width: 30% !important;
}

.w-20 {
    width: 20% !important;
}

.h200 {
    height: 200px !important;
}

.hovering {
    color: #00000099;
}

.min-height-50 {
    min-height: 50px;
}

.min-height-100 {
    min-height: 100px;
}

.min-height-200 {
    min-height: 200px;
}

.min-height-400 {
    min-height: 400px;
}

.min-height-700 {
    min-height: 700px;
}

.ftf-scrollable::-webkit-scrollbar {
    width: calc(var(--padding) * 0.5);
    border-radius: var(--radius);
}

.ftf-scrollable::-webkit-scrollbar-track {
    background-color: var(--secondary-color);
    border-radius: var(--radius);
}

.ftf-scrollable::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: var(--radius);
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-justify {
    text-align: justify !important;
}

.max-height-90-view {
    max-height: 90vh;
}

.pr-1 {
    padding-right: 0.25rem !important;
}

.pr-2 {
    padding-right: 0.5rem !important;
}

.pr-3 {
    padding-right: 1rem !important;
}

.pr-4 {
    padding-right: 1.5rem !important;
}

.pr-5 {
    padding-right: 3rem !important;
}

.pl-1 {
    padding-left: 0.25rem !important;
}

.pl-2 {
    padding-left: 0.5rem !important;
}

.pl-3 {
    padding-left: 1rem !important;
}

.pl-4 {
    padding-left: 1.5rem !important;
}

.pl-5 {
    padding-left: 3rem !important;
}

.border-radius {
    border-radius: var(--radius);
}

.w10 {
    width: 10% !important;
}
.w15 {
    width: 15% !important;
}
.w20 {
    width: 20% !important;
}
.w25 {
    width: 25% !important;
}
.w30 {
    width: 30% !important;
}
.w50 {
    width: 50% !important;
}
.w75 {
    width: 75% !important;
}
.w100 {
    width: 100% !important;
}
.auto-height {
    height: auto !important;
}
.w30 {
    width: 30px !important;
}
.w200 {
    width: 200px !important;
}
.w300 {
    width: 300px !important;
}

.not-selectable {
    user-select: none;
}