body.no-scroll {
    overflow: hidden;
    height: 100%;
}

/* Section Loader */
.loader-container {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    overflow: hidden;
    z-index: 10;    
}

.loader-container h3 {
    color: #000000;
    font-size: 2.2rem;
    margin: 0;
    /* margin-bottom: 5px; */
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    height: 55px;
    overflow: hidden;
    display: inline-flex;
    margin-right: 8px;
    /* top: 100px;
    z-index: -1;
    bottom: 15px; */
}

.loader-container .content-loader {
    width: 800px;
    height: 80px;
    background-color: #ffffff;
    z-index: 10;
    padding-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
}

.loader-container .loader-bar {
    width: 500px;
    height: 4px;
    background-color: #ebebeb;
    border-radius: 10px;
    position: relative;
}

.loader-container .loader-bar .loader-progress {
    height: 100%;
    width: 10%;
    background-color: rgb(0, 0, 0);
    border-radius: 10px;
}

@media (max-width : 600px) {

    .loader-container {
        flex-direction: column;
    }

    .loader-container .content-loader {
        width: 90%;
        height: 100px;

    }

    .loader-container .loader-bar {
        width: 100%;
    }

    .loader-container h3 {
        font-size: 0.95rem;
        height: 30px;
    }
}