@keyframes fadeInOut {
            0% {
                opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }

        #changingText {
            animation: fadeInOut 4s ease-in-out;
        }


.chat-cont-right {
    position: inherit;
    right: 0px;
    opacity: 1;
    visibility: visible;
    z-index: 99;
}