.messages {
    margin-right: 10px;
}

.float-alert {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: max-content;
    min-width: 30%;
    z-index: 9999999999 !important;
    animation: .3s showFloatAlert forwards;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    min-height: unset;
    border: none !important;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    transition: 300ms
}

.float-alert .message {
    flex: 1;
    height: max-content;
}

.float-alert button {
    color: var(--color-light);
    font-size: 14px;
}

@keyframes showFloatAlert {
    from {
        left: -300px;
    }
    to {
        left: 30px;
    }
}

.float-alert-leave {
    animation: .3s hideFloatAlert forwards;
}

@keyframes hideFloatAlert {
    from {
        left: 30px;
    }
    to {
        left: -300px;
    }
}

.modal-loading {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
}

.modal-loading .backdrop {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 0px;
    top: 0px;
}

.modal-loading .loading-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-light);
    z-index: 99999;
    border-radius: 15px;
    padding: 15px 25px;
    font-weight: bold;
    font-size: 16ox;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.modal-loading .loading-content img {
    width: 35px;
    margin-right: 15px;
}