
@font-face {
    font-family: 'FontAwesome';
    /* src: url('fonts/fa/fa-light-300.woff2') format('woff2'); */
    /* src: url('fonts/fa/fa-regular-400.woff2') format('woff2'); */
    src: url('fonts/fa/fa-solid-900.woff2') format('woff2');
    font-weight: normal;
    font-style: normal
}

.MuiIcon-root {
    font-family: 'FontAwesome' !important;
}

html {
    height: 100%;
}

body {
    height: 100%;
}

#root {
    min-height: 100vh;
    display: flex;
    min-width: 0;
    width: 100%;
    height: 100%;
}

.CmtLayout-wrapper {
    height: 100%;
}

.CmtLayout-content {
    height: 100%;
}

.loader-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-image {
    width: 200px;
    height: auto;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    margin-top: 10px;
}

.circular-loader {
    animation: rotate 2s linear infinite;
}

.loader-path {
    fill: none;
    stroke-width: 3px;
    animation: animate-stroke 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-stroke {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
        stroke: #7352C7;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
        stroke: #7352C7;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
        stroke: #7352C7;
    }
}

.List {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: scroll;
    width: 100%;
}