

html,
body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    background: url('/images/logos/logo_main.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 118px;
    height: 48px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}
.info-area {
    min-width: 290px;
}
.row {
    width: 100%;
}

.field {
    width: 50%;
}

.data {
    width: 50%;
}

.ui-button {
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    margin: 10px;
    padding: 0 0.5em;
    font: 400 18px Roboto, Arial, sans-serif;
    overflow: hidden;
    height: 40px;
    cursor: pointer;
}

.ui-button:hover {
    background: rgb(235, 235, 235);
}

.d-count {
    display: flex;
    align-items: center;
}

.legend-row {
    width: 100%;
    padding: 1px 5px;
    display: flex;
}

.xaf-alert-message {
    white-space: pre-line !important;
}

@keyframes drop {
    0% {
        transform: translateY(-200px) scaleY(0.9);
        opacity: 0;
    }

    5% {
        opacity: 0.7;
    }

    50% {
        transform: translateY(0px) scaleY(1);
        opacity: 1;
    }

    65% {
        transform: translateY(-17px) scaleY(0.9);
        opacity: 1;
    }

    75% {
        transform: translateY(-22px) scaleY(0.9);
        opacity: 1;
    }

    100% {
        transform: translateY(0px) scaleY(1);
        opacity: 1;
    }
}

.drop {
    animation: drop 0.3s linear forwards var(--delay-time);
}
