/* GLOBAL */
:root {
    --header-height: 34px;
}

* {
    font-family: Roboto, "Helvetica", "Arial", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: var(--grey-lighter);
}

a {
    cursor: pointer;
    text-decoration: underline;
}

#glassPane {
    position: fixed;
    user-select: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--grey-darker);
    opacity: 0.5;
    z-index: 15;
}

.button {
    min-width: 90px;
    height: 28px;
    padding: 0 7px 0 7px;
    background-color: var(--secondary-color-darker);
    color: var(--secondary-color-lighter);
    font-weight: bold;
    cursor: pointer;
    border: 1px solid var(--secondary-color-dark);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    border-radius: 5px;
    margin-top: 2px;
}

.button:hover {
    background-color: var(--secondary-color-dark);
    color: white;
}

.button>i {
    font-size: 15px;
    margin-right: 3px;
}

/* TEXTS */
@font-face {
    font-family: Roboto;
    src: url(../resources/Library/Roboto-Regular.ttf);
}

.material-icons {
    user-select: none;
}

.positiveValue {
    color: var(--common-green-mid) !important;
}

.negativeValue {
    color: var(--error-color-mid) !important;;
}

/* Flex global */
.row {
    display: flex;
    flex-direction: row;
}

@media only screen and (max-width: 768px) {
    .row.mobileWrap {
        flex-wrap: wrap-reverse;
        justify-content: flex-end;
    }
}

.column {
    display: flex;
    flex-direction: column;
}

.alignEnd {
    display: flex;
    justify-content: flex-end;
}

.marginTopSmall {
    margin-top: 7px;
}

.marginTopBig {
    margin-top: 15px;
}

/* GLOBAL CLASSES*/
.hidden {
    visibility: hidden;
}