﻿#loading {
    display: flex;
    justify-content: center;
}

#loading-container {
    width: 600px;
    top: 45%;
    height: 200px;
    margin-top: -100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: absolute;
}

#loading .circle {
    border-radius: 50%;
    background-color: #160939;
    width: 75px;
    height: 75px;
    position: absolute;
    opacity: 0;
    animation: scaleIn 4s infinite cubic-bezier(0.16, 0.21, 0.89, 0.32);
}

#loading .meshtech-material-circle {
    border-radius: 50%;
    background-color: #4340D2;
    width: 75px;
    height: 75px;
    position: absolute;
    opacity: 0;
    animation: scaleIn 4s infinite cubic-bezier(0.16, 0.21, 0.89, 0.32);
}

#loading .dark-circle {
    border-radius: 50%;
    background-color: #3b9fd5;
    width: 75px;
    height: 75px;
    position: absolute;
    opacity: 0;
    animation: scaleIn 4s infinite cubic-bezier(0.16, 0.21, 0.89, 0.32);
}

#loading .item {
    z-index: 100;
    padding: 5px;
}

#loading .item img {
    width: 50%;
    display: block;
    float: none;
    margin: 0 auto;
    position: relative;
    margin-left: 27%;
}

@keyframes scaleIn {
    from {
        transform: scale(0.5, 0.5);
        opacity: 0.5;
    }

    to {
        transform: scale(2.5, 2.5);
        opacity: 0;
    }
}

#blazor-error-ui {
    background: #F5F5F5;
    color: black;
    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: 769px) {
    /*.body {
        margin-top: 0 !important;
    }*/
    /*.rz-sidebar {*/
    /*    top: 0 !important;*/
    /*}*/
    .filters-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none;
    }
}

.align-vertically-items {
    vertical-align: middle;
}


/* --------------------------------- */
body {
    margin-bottom: 0 !important;
    background-color: var(--rz-sidebar-background-color) !important;
    color: var(--rz-text-color);
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
    font-size: 14px;
!important;
    font-weight: 400 !important;
}

html {
    --rz-input-font-size: 14px !important;
    --rz-body-font-size: 14px !important;
    --rz-input-padding-block: 7px !important;
    --rz-input-padding-inline: 7px !important;
    --rz-body-line-height: 20.006px !important;
    --rz-panel-menu-font-size: 14px !important;

    .rz-panel {
        background-color: rgb(18, 18, 18) !important;
    }

    .rz-treenode {
        background-color: rgb(30, 30, 30) !important;
    }

}