@font-face {
    font-family: equity_ot_a;
    font-style: normal;
    font-weight: normal;
    font-stretch: normal;
    font-display: auto;
    src: url('../fonts/equity_ot_a_regular.woff2') format('woff2');
}

@font-face {
    font-family: equity_ot_a;
    font-style: italic;
    font-weight: normal;
    font-stretch: normal;
    font-display: auto;
    src: url('../fonts/equity_ot_a_italic.woff2') format('woff2');
}

@font-face {
    font-family: equity_ot_a;
    font-style: normal;
    font-weight: bold;
    font-stretch: normal;
    font-display: auto;
    src: url('../fonts/equity_ot_a_bold.woff2') format('woff2');
}

@font-face {
    font-family: equity_ot_a;
    font-style: italic;
    font-weight: bold;
    font-stretch: normal;
    font-display: auto;
    src: url('../fonts/equity_ot_a_bold_italic.woff2') format('woff2');
}

@font-face {
    font-family: triplicate_a;
    font-style: normal;
    font-weight: normal;
    font-stretch: normal;
    font-display: auto;
    src: url('../fonts/triplicate_a_regular.woff2') format('woff2');
}

@font-face {
    font-family: triplicate_a;
    font-style: normal;
    font-weight: bold;
    font-stretch: normal;
    font-display: auto;
    src: url('../fonts/triplicate_a_bold.woff2') format('woff2');
}

:root {
    --bg-highlight: yellow;
    --bg-baseline: #c7221c;
    --color-baseline: #fff;
}

body
{
    font-family: equity_ot_a, serif;
    border:none;
}

table
{
    font-family: triplicate_a, monospace;
}

mark
{
    background-color: var(--bg-highlight);
}

.blink-it {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

tr.is-baseline
{
    background-color: var(--bg-baseline);
    color: var(--color-baseline);
    border:2px solid black;
    font-weight: bolder;
}

#blazor-error-ui {
    background: red;
    color:white;
    font-weight: bolder;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

.loading-progress circle {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}

.loading-progress circle:last-child {
    stroke: #1b6ec2;
    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.25rem) 0 auto 0.2rem;
}

.loading-progress-text:after {
    content: var(--blazor-load-percentage-text, "Loading");
}
