#loadingperson {
    position: absolute;
    top: 40%;
    width: 100%;
}
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.loading__msg {
    font-family: Roboto;
    font-size: 16px;
}
.loading__dots {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin: 33px 0 30px 0;
}
.loading__dots__dot {
    background-color: #44BBA4;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 5px;
    color: #587B7F;
}
.loading__dots__dot:nth-child(1) {
    animation: bounce 1s 1s infinite;
}
.loading__dots__dot:nth-child(2) {
    animation: bounce 1s 1.2s infinite;
}
.loading__dots__dot:nth-child(3) {
    animation: bounce 1s 1.4s infinite;
}
@keyframes bounce {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, 15px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.loading-custom {
    position: fixed;
    z-index: 9999;
    display: block;
    width: 100%;
    height:100%;
    top: 0;
    left: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.15s;
    pointer-events: none;
}
.loading-custom.show {
    opacity: 1;
    pointer-events: all;
}
.loading-custom__msg {
    font-family: Roboto;
    font-size: 16px;
}
.loading-custom__dots {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    margin: 33px 0 30px 0;
}
.loading-custom__dots__dot {
    background-color: #44BBA4;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 5px;
    color: #587B7F;
}
.loading-custom__dots__dot:nth-child(1) {
    animation: bounce 1s 1s infinite;
}
.loading-custom__dots__dot:nth-child(2) {
    animation: bounce 1s 1.2s infinite;
}
.loading-custom__dots__dot:nth-child(3) {
    animation: bounce 1s 1.4s infinite;
}