.sb-body-overlay {
    z-index: 10000023;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    overflow: hidden;
    pointer-events: none;
    top: 0;
    bottom: 0;
    opacity: 0.8;
}

    .sb-loading.e-hide,
    .sb-body-overlay.e-hide {
        display: none;
        opacity: 0;
    }

.sb-loading {
    width: 56px;
    height: 56px;
    position: absolute;
    top: calc(50% - 28px);
    left: calc(50% - 28px);
    z-index: 10000;
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    display: inline-block;
    background: white;
}

.circular {
    animation: rotate 2s linear infinite;
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
    stroke: #5a5a5a;
}

.sb-body-overlay-2 {
    z-index: 10000023;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    overflow: hidden;
    pointer-events: none;
    top: 0;
    bottom: 0;
}

    .sb-loading.e-hide,
    .sb-body-overlay.e-hide {
        display: none;
        opacity: 0;
    }

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

.sf-visible {
    visibility: visible;
}

.sf-hidden {
    visibility: hidden;
}


/* Search and List component styles */
.sf-list-ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.sf-list-li {
    background: transparent;
    border: none;
    height: 40px;
    line-height: 1.5;
    padding: 0px 0px 0px 10px;
    position: relative;
    cursor: pointer;
}

.sf-list-group-li {
    border: none;
    color: #000000;
    opacity: 87;
    font-weight: 700;
    background: transparent;
/*    height: 40px;*/
    line-height: 1.5;
    padding: 0px 16px 0px 10px;
    list-style-type: none;
}

.sf-list-li:hover:not(.sf-list-li-active),
.sf-search-hover {
    background: #d7d7d7;
}

.sf-list-li.sf-list-li-active,
.sf-tree-full-row.sf-tree-active {
    background: #5a5a5a;
    background: #504e4e;
    color: #bdb6b6 !important;
    border-left: solid;
}

    .sf-list-li.sf-list-li-active *,
    .sf-tree-active + .sf-tree-text-content * {
        color: #bdb6b6;
    }

.sf-blazor-home .sf-search-icon,
.sf-search-container .sf-search-icon,
.sf-search-container .sf-clear-icon {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    color: #333;
    letter-spacing: 0;
    line-height: 23px;
    float: right;
    padding: 28px 15px;
}

    .sf-blazor-home .sf-search-icon::before,
    .sf-blazor-home .sf-search-input::placeholder {
        color: #c3cade !important;
    }

.sf-blazor-home .sf-search-input:focus {
    border: 2px solid #d9deec !important;
    box-shadow: none !important;
}

.sf-search-icon::before {
    content: "\e925";
    color: #B3B3CB;
}