﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

body {
    background-color: #f4f4f4;
    height: 100vh;
    font-size: 14px;
}

.form-control {
    font-size: 14px;
}

.dot {
    font-weight: 500;
    color: #92d050;
    font-style: italic;
}

.license-notice {
    margin-top: auto;
    margin-left: auto;
    padding: 5px 8px;
    font-size: 0.8rem;
    color: #999;
}

#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;
    }

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spinner {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,.4);
    z-index: 9999;
}

    .spinner::after {
        content: '';
        display: block;
        position: absolute;
        left: 48%;
        top: 40%;
        width: 50px;
        height: 50px;
        border-style: solid;
        border-color: #ccc;
        border-top-color: transparent;
        border-width: 6px;
        border-radius: 50%;
        -webkit-animation: spin .8s linear infinite;
        animation: spin .8s linear infinite;
    }

d-radio-group section {
    display: flex;
}

    d-radio-group section > * {
        margin-right: 1.5rem;
    }