.w100 {
    width: 100%;
    padding: 1em;
}

.hide {
    display: none !important;
}

.text_right {
    text-align: right;
}

.usr_image,
.usr_sign {
    height: 3.5em;
    padding: 2px;
    border-radius: 50%;
    height: 100%;
}

.usr_container {
    border-left: none !important;
}


/* Overlay */

#overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: .8;
    z-index: 2;
    background-color: black;
}

#load_banner .all_load {
    text-align: center;
}

.lds-ellipsis {
    position: relative;
    width: 80px;
    height: 80px;
    top: 50%;
    margin: 0 auto;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis.wait_banner div {
    background-color: black;
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

.no_post {
    background-color: #0089e0;
    padding: 1em !important;
    margin: 0em !important;
    color: white;
}

.no_post .button {
    background-color: white;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}