@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;*/
}

body {
    padding-top: 65px;
    padding-bottom: 20px;
}

@font-face {
    font-family: "cco-iconfont";
    src: url(/fonts/cco-iconfont.ttf);
}

.cco-iconfont {
    font-family: cco-iconfont;
    font-size: larger;
}

.cursor-pointer {
    cursor: pointer;
}

.nav-item {
    margin-right: 0px;
}

.nav-item a {
    color: #d7d7d7;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
}

.nav-item a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.dropdown-item {
    height: initial !important;
    line-height: initial !important;
}

.content {
    padding-top: 1.1rem;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid 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;
    }

@media (min-width: 768px) {

    .navbar-toggler {
        display: none;
    }
}

@media (max-width: 979px) {
    body {
        padding-top: 0px;
    }
}


.loader {
    position: relative;
    width: 16px;
    margin: 2px auto;
    display: inline-block;
    vertical-align: super;
}

.duo {
    height: 4px;
    width: 10px;
    background: hsla(0, 0%, 0%, 0.0);
    position: absolute;
}

.duo, .dot {
    animation-duration: 0.8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.duo1 {
    left: 0;
}

.duo2 {
    left: 6px
}


.dot {
    width: 4px;
    height: 4px;
    border-radius: 2px;
    /*background: #333;*/
    background: var(--info);
    position: absolute;
}

.dot-a {
    left: 0px;
}

.dot-b {
    right: 0px;
}


@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(180deg)
    }

    100% {
        transform: rotate(180deg)
    }
}

@keyframes onOff {
    0% {
        opacity: 0;
    }

    49% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.duo1 {
    animation-name: spin;
}

.duo2 {
    animation-name: spin;
    animation-direction: reverse;
}

    .duo2 .dot-b {
        animation-name: onOff;
    }

.duo1 .dot-a {
    opacity: 0;
    animation-name: onOff;
    animation-direction: reverse;
}
