﻿:root {
    --background: #F7F8FB;
    --background-dark: #E6E8EE;
    --primary-dark: #3a99d4;
    --primary-xdark: #368ec5;
    --primary: #42AAEB;
    --primary-muted: rgba(66,170,235,0.5);
    --foreground: #4B515C;
    --foreground-muted: #919CAF;
    --error: #E76886;
    --error-dark: #ce5a75;
    --success: #00AA87;
    --success-dark: #009375;
    --container-separator-color: #e7e7e7;
}


html,
body,
app {
    height: 100%;
    width: 100%;
    background-color: #f7fafe;
    overflow:hidden;
}

body {
    background-color: #f5f5f5;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-grab {
    cursor: grab;
}

.no-select {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}

.skeleton-shadow {
    background-color: #444;
    min-height: 12px;
    border-radius: 5px;
    opacity: .1;
    min-width: 10px;
    animation: fading 1.5s infinite;
}


@keyframes fading {
    0% {
        opacity: .1;
    }

    50% {
        opacity: .2;
    }

    100% {
        opacity: .1;
    }
}

/*.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}*/

.invalid {
    border: 1px solid var(--error);
}

.validation-message {
    color: var(--error);
    font-size: 14px;
    margin-top: 5px;
}



#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;
    }



.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");
    }

@media (max-width:768px) {

    .page-container {
        flex-direction: column;
    }

}

@media (min-width:320px)
{
    .d-xsm-block {
        display:block !important;
    }
}