body.loader-showing {
    overflow: hidden !important;
}

body.loader-showing * {
    overflow: hidden !important;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.075);
    color: white;
    z-index: 30000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-container .loader-inner {
    position: relative;
    width: 150px;
    height: 150px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-container .loader-inner .loader-image {
    width: 140px;
    height: 140px;
    border-top: 10px solid #3c8dbc;
    border-bottom: 10px solid #3c8dbc;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-radius: 50%;
    -webkit-animation: 1s spin infinite linear;
    -moz-animation: 1s spin infinite linear;
    -ms-animation: 1s spin infinite linear;
    -o-animation: 1s spin infinite linear;
    animation: 1s spin infinite linear;
}

.loader-container .loader-inner .loader-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    letter-spacing: 0.43px;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes spin {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(360deg);
    }
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}