@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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;
    }

span.e-connect:before{
    content:'\e823';
}

span.e-connected:before{
    content:'\e7a3';
}

.color-box {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-color: transparent;
    left: 5px;
    top: 5px;
    border-style: solid;
    border-width: 1px;
}
.reverse-color-text {
    mix-blend-mode: difference;
    filter: invert(1) contrast(11) grayscale(1);
}

@-webkit-keyframes Spinning {
    0% {
        -webkit-transform: rotate(0);
    }

    10% {
        -webkit-transform: rotate(5.8deg);
    }

    20% {
        -webkit-transform: rotate(17.4deg);
    }

    30% {
        -webkit-transform: rotate(40.6deg);
    }

    40% {
        -webkit-transform: rotate(87.1deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    60% {
        -webkit-transform: rotate(272.9deg);
    }

    70% {
        -webkit-transform: rotate(319.4deg);
    }

    80% {
        -webkit-transform: rotate(342.6deg);
    }

    90% {
        -webkit-transform: rotate(354.2deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes Spinning {
    0% {
        transform: scale(1) rotate(0);
    }

    10% {
        transform: scale(1) rotate(5.8deg);
    }

    20% {
        transform: scale(1) rotate(17.4deg);
    }

    30% {
        transform: scale(1) rotate(40.6deg);
    }

    40% {
        transform: scale(1) rotate(87.1deg);
    }

    50% {
        transform: scale(1) rotate(180deg);
    }

    60% {
        transform: scale(1) rotate(272.9deg);
    }

    70% {
        transform: scale(1) rotate(319.4deg);
    }

    80% {
        transform: scale(1) rotate(342.6deg);
    }

    90% {
        transform: scale(1) rotate(354.2deg);
    }

    100% {
        transform: scale(1) rotate(360deg);
    }
}

@-webkit-keyframes Downflow {
    0%{background-position:50% 100%}
    50%{background-position:50% 50%}
    100%{background-position:50% 0%}
}
@-moz-keyframes Downflow {
    0%{background-position:50% 100%}
    50%{background-position:50% 50%}
    100%{background-position:50% 0%}
}
@keyframes Downflow {
    0%{background-position:50% 100%}
    50%{background-position:50% 50%}
    100%{background-position:50% 0%}
}

@-webkit-keyframes bounce-horizontal {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes bounce-horizontal {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes bounce-horizontal {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.spinner {
    font-size: 200%;
    font-weight: bold;
    -webkit-animation: Spinning 1000ms infinite linear;
    -moz-animation: Spinning 1000ms infinite linear;
    -o-animation: Spinning 1000ms infinite linear;
    animation: Spinning 1000ms infinite linear;
}

.pulse {
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 80%, rgba(0,0,0,1) 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;

    -webkit-animation: Downflow 1s linear infinite;
    -moz-animation: Downflow 1s linear infinite;
    animation: Downflow 1s linear infinite;
}

.h-bounce {
    -webkit-animation: bounce-horizontal 4000ms infinite linear;
    -moz-animation: bounce-horizontal 4000ms infinite linear;
    -o-animation: bounce-horizontal 4000ms infinite linear;
    animation: bounce-horizontal 4000ms infinite linear;
}

.inline-spinner {
    font-size: small;
}

.inline-text {
    display: inline;
}

.e-grid .e-altrow {
    background-color: #ececfa;
}

img.e-grid-img-thumbnail {
    max-height: 90px;
    max-width: 90px;
}

i.error {
    color: #f20000;
}

i.warning {
    color: #ff8c00;
}

.overlay-container {
    position: relative;
}

.overlay {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: rgba(255, 0, 0, 0.25);
    cursor: not-allowed;
}