body fuse-splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F1F5F9;
    color: #1FAA9F;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

body fuse-splash-screen img {
    width: 120px;
    max-width: 120px;
}

body fuse-splash-screen fuse-loading-bar {
    margin-top: 40px;
    width: 200px;
}

body fuse-splash-screen fuse-loading-bar mat-progress-bar {
    height: 4px;
    border-radius: 2px;
}

body fuse-splash-screen fuse-loading-bar .mat-progress-bar-fill::after {
    background-color: #1FAA9F;
}

body fuse-splash-screen fuse-loading-bar .mat-progress-bar-buffer {
    background-color: rgba(31, 170, 159, 0.2);
}

body:not(.fuse-splash-screen-hidden) {
    overflow: hidden;
}

body.fuse-splash-screen-hidden fuse-splash-screen {
    visibility: hidden;
    opacity: 0;
}

body .mantine-14tgpg6 {
    left: 183px !important;
}

@media screen and (max-width: 769px ) {
    body .mantine-14tgpg6 {
        left: 0px !important;
    }
}