.loader {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: #FAFAFA;
    z-index: 99999;

    
}

    .loader .image-loader {
        width: 200px;
        height: 200px;
    }

/* loader dinamico */

.loader-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
}

.loader-title {
    font-size: 20px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 400px;
    min-width: 400px;
    box-sizing: border-box;
    color: #1D9BF0;
    line-height: 26.46px;
    font-weight: bold;
    overflow-wrap: break-word;
}

.loader-progres {
    width: 100%;
    max-width: 400px;
    height: 76px;
    border-radius: 12px;
    background-color: #FFFF;
    border: 4px solid #D9D9D9;
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
    justify-content: flex-start;
}

.progress {
    width: 0;
    height: 100%;
    background-color: #1D9BF0;
    transition: width linear;
}

.loader-text {
    font-weight: bold;
    font-size: 20px;
    color: #5A5A5A;
    width: 100%;
    max-width: 412px;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

@media (max-width: 440px) {

    .loader-title {
        width: 100%;
        max-width: 350px;
        min-width: 350px;
        box-sizing: border-box;
    }

    .loader-progres {
        max-width: 375px;
        height: 71.25px;
        border-radius: 11.25;
    }

    .loader-text {
        max-width: 308px;
        margin: 0 auto;
    }
}

.hidden{
    display: none;
}
