@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: local("Material Icons"), local("MaterialIcons-Regular"), url("../fonts/MaterialIcons-Regular.woff") format("woff");
}

@font-face {
    font-family: 'Material Icons Outlined';
    font-style: normal;
    font-weight: 400;
    src: local("Material Icons Outlined"), local("MaterialIcons-Outlined"), url("../fonts/MaterialIcons-Outlined.woff") format("woff");
}

@font-face {
    font-family: 'Roboto';
    font-weight: 200;
    font-style: normal;
    font-stretch: normal;
    src: local("Roboto-Light"), local("Roboto"), url("../fonts/Roboto-Light.ttf") format("ttf");
}

@font-face {
    font-family: 'Roboto';
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    src: local("Roboto-Light"), local("Roboto"), url("../fonts/Roboto-Light.ttf") format("ttf");
}

@font-face {
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    src: local("Roboto-Regular"), local("Roboto"), url("../fonts/Roboto-Regular.ttf") format("ttf");
}

@font-face {
    font-family: 'Roboto';
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    src: local("Roboto-Bold"), local("Roboto Bold"), url("../fonts/Roboto-Bold.ttf") format("ttf");
}

@font-face {
    font-family: 'Roboto';
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    src: local("Roboto-Bold"), local("Roboto Bold"), url("../fonts/Roboto-Bold.ttf") format("ttf");
}

@font-face {
    font-family: 'Roboto';
    font-weight: 900;
    font-style: normal;
    font-stretch: normal;
    src: local("Roboto-Black"), local("Roboto Black"), url("../fonts/Roboto-Black.ttf") format("ttf");
}

@font-face {
    font-family: 'Roboto';
    font-weight: 200;
    font-style: italic;
    font-stretch: normal;
    src: local("Roboto-LightItalic"), local("Roboto"), url("../fonts/Roboto-LightItalic.ttf") format("ttf");
}

@font-face {
    font-family: 'Roboto';
    font-weight: 300;
    font-style: italic;
    font-stretch: normal;
    src: local("Roboto-LightItalic"), local("Roboto"), url("../fonts/Roboto-LightItalic.ttf") format("ttf");
}

@font-face {
    font-family: 'Roboto';
    font-weight: 400;
    font-style: italic;
    font-stretch: normal;
    src: local("Roboto-Italic"), local("Roboto"), url("../fonts/Roboto-Italic.ttf") format("ttf");
}

@font-face {
    font-family: 'Roboto';
    font-weight: 600;
    font-style: italic;
    font-stretch: normal;
    src: local("Roboto-BoldItalic"), local("Roboto"), url("../fonts/Roboto-BoldItalic.ttf") format("ttf");
}
@font-face {
    font-family: 'Roboto';
    font-weight: 700;
    font-style: italic;
    font-stretch: normal;
    src: local("Roboto-BoldItalic"), local("Roboto"), url("../fonts/Roboto-BoldItalic.ttf") format("ttf");
}

@font-face {
    font-family: 'Roboto';
    font-weight: 900;
    font-style: italic;
    font-stretch: normal;
    src: local("Roboto-BlackItalic"), local("Roboto"), url("../fonts/Roboto-BlackItalic.ttf") format("ttf");
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#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;
}

.heading-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

:root {
    --rz-text-h1-font-size: 3rem;
    --rz-text-h1-font-weight: 300;
}

.chip {
    display: inline-flex;
    align-items: center;
    background-color: var(--rz-primary);
    color: white;
    border-radius: 16px;
    padding: 0.3rem 0.8rem;
    margin: 0.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.chip-text {
    font-weight: 500;
}

.blink-smooth {
    animation: blink_smooth 1s infinite;
}

@keyframes blink_smooth {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}