
/*@font-face {
    font-family: "Gabriola";
    src: url('fonts/Gabriola.ttf') format('truetype');
}*/
@import url("tooltip.css");

html, body {
    margin: 0;
    padding: 0;
    font-family: Roboto,"Helvetica Neue",sans-serif;
}

h1,h2,h3:focus {
    outline: none;
}

h1, h2, h3 {
    color: var(--header-color);
}


:root {
    --box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    --primary-color: rgb(13,71,161);
    --text-color: #0d47a1;
    --label-color: lightgray;
    --btn-bg-color: rgb(13,71,161,.75);
    --btn-color: white;
    --btn-hover-bg-color: rgb(3,161,223);
    --btn-accept-bg-color: #2f81aa;
    --border-color: #ccc;
    --ttip-bg-color: deepskyblue;
    --success-color: darkgreen;
    --err-msg-color: orangered;
    --logo-color-1: rgb(232,63,14);
    --logo-color-2: rgb(19,113,173);
    --logo-color-3: rgb(41,171,46);
    --menu-btn-bg-color: rgb(13,71,161,.75);
    --header-color: #5c7392;
}

/*
    $boxShadow: 5px 5px 8px rgba(0, 0, 0, 0.175);
$activeColor: #0d47a1; // #33b5e5; 
$menuColor: rgb(246, 250, 250);  //#263238;
$mainColor: #0d47a1;
$titleColor: rgb(246, 250, 250); 
$lineColor: rgba(0, 0, 0, 0.12);
*/

#app-load-container {
    padding: 2rem 3rem;
    position: fixed;
    left: calc(50vw - 103px);
    top: calc(50vh - 56px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.app-spinner-info {
    margin-top: 0.5rem;
}

.app-spinner {
    display: flex;
    align-items: center;
    position: relative;
    width: 80px;
    height: 15px;
}

    .app-spinner div {
        position: absolute;
        top: 0px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #092040;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .app-spinner div:nth-child(1) {
            left: 8px;
            background-color: var(--logo-color-1);
            animation: app-spinner1 0.6s infinite;
        }

        .app-spinner div:nth-child(2) {
            left: 8px;
            background-color: var(--logo-color-2);
            animation: app-spinner2 0.6s infinite;
        }

        .app-spinner div:nth-child(3) {
            left: 32px;
            background-color: var(--logo-color-3);
            animation: app-spinner2 0.6s infinite;
        }

        .app-spinner div:nth-child(4) {
            left: 56px;
            background-color: var(--logo-color-3);
            animation: app-spinner3 0.6s infinite;
        }

@keyframes app-spinner1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes app-spinner3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes app-spinner2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.app-err-ui-container {
    cursor: default;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.app-err-ui-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--err-msg-color);
}

.app-err-ui-info {
    display: flex;
    flex-direction: row;
    font-size: 1rem;
    line-height: 1rem;
}

    .app-err-ui-info span {
        margin-right: 5px;
    }

.app-reload {
    margin-left: auto;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 40px;
}

    .app-reload:hover {
        background-color: var(--hover-bg-color);
        color: var(--hover-color);
    }

button {
    padding: .5rem 1rem;
    background-color: var(--btn-bg-color);
    color: var(--btn-color);
    border: none;
    outline: none;
}

    button[disabled] {
        opacity: 0.4;
    }

    button:hover {
        background-color: var(--btn-hover-bg-color);
    }

    button[disabled]:hover {
        background-color: var(--btn-bg-color);
        cursor: not-allowed;
    }

code {
    color: #c02d76;
}


.txt-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

label {
    font-size: .75rem;
    font-weight: 100;
    color: dimgray;
    user-select: none; /* Standard */
    -webkit-user-select: none; /* Für Webkit-Browser (Chrome, Safari) */
    -moz-user-select: none; /* Für Firefox */
    -ms-user-select: none; /* Für ältere IE-Versionen */
}

span {
    user-select: none; /* Standard */
    -webkit-user-select: none; /* Für Webkit-Browser (Chrome, Safari) */
    -moz-user-select: none; /* Für Firefox */
    -ms-user-select: none; /* Für ältere IE-Versionen */
}

input {
    padding: 0.5rem;
    border-width: 0.5px;
    border-style: solid;
    border-color: var(--border-color);
    cursor: default;
    color: var(--header-color);
}

textarea {
    font-family: Roboto,"Helvetica Neue",sans-serif;
    padding: 0.5rem;
    border-width: 0.5px;
    border-style: solid;
    border-color: var(--border-color);
    cursor: default;
    color: var(--header-color);
}

    textarea:focus {
        outline: .5px solid rgb(32, 170, 212);
    }

input:not([type=radio]):focus {
    outline: .5px solid rgb(32, 170, 212);
}

input:not(focus), textarea:not(focus) {
    border: .5px solid lightgray;
}

input:hover, input:focus, textarea:hover, textarea:focus {
    /*background-color: var(--chips-bg-color);*/
    outline: .5px solid rgb(32, 170, 212);
}

.flx-col {
    display: flex;
    flex-direction: column;
}

.flx-row {
    display: flex;
    flex-direction: row;
}

.validation-error {
    margin: .25rem 0;
    font-size: .75rem;
    color: var(--logo-color-1);
}
.page-view {
    height: 100%;
    display: grid;
}

.view-container {
    height: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
}

.center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .center-container .material-icons {
        font-size: 10rem;
        color: var(--logo-color-1);
    }

.info-text {
    color: var(--logo-color-2);
}

.txt-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ml-1 {
    margin-left: .25rem;
}
.mr-1 {
    margin-right:.25rem;
}