﻿.loader-app {
    width: 100vw;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.img-loader {
    display: flex;
    justify-content: center;
    border: 2px solid #ccc;
    padding: 20px;

    align-items: center;
    margin-right: 8px;
    background: #fafafb;
    width: 256px;
    height: 256px;
    animation: ui-pulse 1.1s infinite;
    border-radius: 50%;
}

.img-loader img {
    width: 100%;
}

.hx-input-file-drop-zone {
    border: var(--hx-input-file-drop-zone-border-width) dashed #373a3c !important;
}

/*.hx-grid-header-cell-container{*/
/*    white-space: nowrap !important;*/
/*}*/

tr .hx-context-menu {
    opacity: 1 !important;
}

@keyframes ui-pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
