.notice-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222222;
    z-index: 1000;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

.text-justify-dynamic {
    text-align: justify;
    text-justify: inter-word;
}

@media (max-width: 767px) {
    .text-justify-dynamic {
        text-align: left;
        text-justify: inter-word;
    }
}

/*----------------------------------------------loader*/

.loader-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999999999;
    background-color: rgba(30, 30, 30, 0.5);
}
.loader {
    width: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
}

.loader-wheel {
    animation: spin 1s infinite linear;
    border: 2px solid rgba(30, 30, 30, 0.5);
    border-left: 4px solid #fff;
    border-radius: 50%;
    height: 50px;
    margin-bottom: 10px;
    width: 50px;
}

.loader-text {
    color: #fff;
    font-family: arial, sans-serif;
}

.loader-text:after {
    content: 'Mensagem Enviada!';
    animation: load 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes load {
    0% {
        content: 'Mensagem Enviada!';
    }

    33% {
        content: 'Mensagem Enviada!.';
    }

    67% {
        content: 'Mensagem Enviada!..';
    }

    100% {
        content: 'Mensagem Enviada!...';
    }
}