﻿.e-filemanager .e-address .e-search-wrap {
    display: none;
}

:root {
    --error-color: #dc2626;
}

.required-form-field:after {
    content: "*"
}

.validation-message {
    color: var(--error-color);
    font-size: .75rem;
    line-height: 1rem;
}

.spinner {
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    animation: mulShdSpin 1.3s infinite linear;
    transform: translateZ(0);
}

@keyframes mulShdSpin {
    0%, 100% {
        box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
    }

    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }

    25% {
        box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }

    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }

    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }

    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }

    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }

    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}

.e-grid .e-icon-filter.e-filtered::before {
    content: "\e796";
    color: #405eaa;
}

.e-grid .e-focused:not(.e-menu-item):not(.e-editedbatchcell) {
    box-shadow: 0 0 0 1px #405eaa inset;
}

ul > li[class="e-upload-file-list"] > span[class="e-icons e-file-delete-btn"]{
    visibility: hidden;
}

ul > li[class="e-upload-file-list e-upload-success"] > span[class="e-icons e-file-delete-btn"] {
    visibility: hidden;
}

div[class="e-pane e-pane-horizontal e-scrollable e-layout-content e-resizable"] {
    overflow: hidden !important;
}

.e-grid .e-icon-ascending::before {
    content: '\e7a3' !important;
}

.e-grid .e-icon-descending::before {
    content: '\e7b6 ' !important;
}

#components-reconnect-modal {
    display: none !important;
}

#network-status-banner {
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 4px;
    padding-bottom: 4px;
    max-height: 0;
    color: #f1f1f1;
    font-size: 15px;
    text-align: center;
    position: fixed;
    display: none;
    transition: max-height 0.5s;
    z-index: 2030;

    &.online {
        opacity: 1;
        display: block;
        max-height: 28px;
        color: #fff;
        background-color: #63A54A;
    }

    &.offline {
        opacity: 1;
        display: block;
        max-height: 28px;
        color: #000000d9;
        background-color: #ffbe5c4d;
    }

    &.hide {
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
}