.text-message {
    position: fixed;
    width: 40%;
    min-height: 30%;
    background: #6b2b7f;
    margin: auto;
    left: 0;
    right: 0;
    top: 94px;
    box-shadow: 1px 1px 8px 4px rgba(0, 0, 0, 0.1);
    z-index: -1;
    border-radius: 4px;
    text-align: center;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .text-message i {
        position: absolute;
        right: 10px;
        top: 10px;
        font-size: 20px;
        color: #ffc419;
        cursor:pointer;
    }

    .text-message h4{
        color:#fff;
    }
    .slide-in-blurred-left {
        animation: slide-in-blurred-left 1s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
        z-index: 555555555555;
    }


@keyframes slide-in-blurred-left {
    0% {
        transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
        transform-origin: 100% 50%;
        filter: blur(40px);
        opacity: 0;
    }

    100% {
        transform: translateX(0) scaleY(1) scaleX(1);
        transform-origin: 50% 50%;
        filter: blur(0);
        opacity: 1;
    }
}