﻿/*Mud-Tabs lower case*/
.mud-tab {
    text-transform: none !important;
}

/*Fix MudBlazor schwarzer Border um Überschrift bei active,focus*/
h1:focus, h1:active, h1:hover {
    border: none !important;
}

dl {
    border: 3px double #ccc;
    margin: 12px;
    padding: 0.5em;
}

dt {
    font-weight: bold;
    color: var(--mud-palette-primary);
}

    dt::after {
        content: ":";
    }

dd {
    margin: 0 0 0 0px;
    padding: 0 0 0.5em 0;
}

/*Fix MudBlazor Problem, dass am Ende der table der border-bottom fehlt*/
.mud-simple-table.mud-table-bordered .mud-table-container table tbody tr td:last-child {
    border-bottom: 1px solid var(--mud-palette-table-lines);
}


.mud-input-control.mud-input-required > .mud-input-control-input-container > .mud-input-label::after {
    content: "*";
    color: red;
}
.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

.loading-progress circle {
    fill: none;
    stroke: #808080;
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}

.loading-progress circle:last-child {
    stroke: #1414b8;
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.05s ease-in-out;
}

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.35rem) 0 auto 0.2rem;
}

.loading-progress-text:after {
    color: black;
    content: var(--blazor-load-percentage-text, "Loading...");
}


@media only screen and (min-width: 960px) {
    .loading-progress {
        margin: 30vh auto 1rem auto;
    }


    .loading-progress-text {
        inset: calc(30vh + 3.35rem) 0 auto 0.2rem;
    }
}


#blazor-error-ui {
    color: rgb(242, 33, 18);
    background-color: #f8d7da;
    min-height: 200px;
    position: initial;
    left: initial;
    bottom: initial;
    position: fixed;
    top: 35%;
}

#blazor-error-ui-content {
    min-height: 200px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 35%;
    width: 100%;
}

    #blazor-error-ui-content .reload {
        color: inherit;
        text-decoration: underline;
        margin-left: 10px;
    }

    #blazor-error-ui-content .dismiss {
        color: inherit;
        cursor: pointer;
        position: initial;
        right: initial;
        top: initial;
        margin-left: 10px;
    }
/*
#app .mud-wasm {
    animation: slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg,#353a4e 50%,#d00712 50%);
    bottom: 0;
    left: -50%;
    opacity: .5;
    position: fixed;
    right: -50%;
    top: 0;
    z-index: -1
}

#app .mud-wasm-cont {
    height: 100%;
    width: 100%;
    left: 50%;
    padding: 10vmin;
    position: fixed;
    text-align: center;
    top: 50%;
    transform: translate(-50%,-50%)
}

@media only screen and (min-width: 960px) {
    #app .mud-wasm-cont {
        padding: 30vmin;
    }
}*/