@import url('/open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100%;
}

app {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.top-row {
    height: 4.5rem;
    display: flex;
    align-items: center;
    z-index: 999;
}

.main {
    flex: 1;
}

    .main .top-row {
        justify-content: flex-end;
    }

        .main .top-row > a, .main .top-row .btn-link {
            white-space: nowrap;
            margin-left: 10px;
            margin-right: 10px;
        }

        .main .top-row a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }



#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;
    }


/*Rotating icons*/
@-webkit-keyframes rotating /* Safari and Chrome */ {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.rotating {
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
}



/*TOOLTIP*/

.tooltip-wrapper {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    cursor: help;
    font-size: 12px;
    margin-left: 10px;
}

    .tooltip-wrapper span {
        visibility: hidden;
        position: absolute;
        min-width: 120px;
        bottom: 100%;
        left: 50%;
        margin-left: -60px;
        background-color: #3e3e3e;
        color: #ffffff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        z-index: 999;
        font-size: 12px;
    }

        .tooltip-wrapper span hr {
            margin-top: 0;
            /*margin-bottom: 0;*/
            border-top: 1px solid #d6d3d3;
        }

    .tooltip-wrapper:hover span {
        visibility: visible;
    }

@keyframes pulsate {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.pulsatingDots:after {
    display: inline-block;
    content: " .";
    animation: pulsate 1s infinite;
}


.dxbl-image {
    max-width: 10px;
    max-height: 10px;
}

.siteStatus_Ok {
    color: green;
    font-weight: bold;
}

.siteStatus_Orange {
    color: orange;
    font-weight: bold;
}

.siteStatus_Error {
    color: red;
    font-weight: bold;
}
