.close-button {
    position: absolute;
    top: 0px;
    right: 0px;
    background: transparent;
    color: #fff;
    width: 38px;
    max-width: 38px;
    height: 38px;
    font-size: 32px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    outline: none !important;
    padding: 4px;
}

.close-button:hover {
    background: transparent;
}

.user-info-container {
    max-height: 100%;
}

.user-img-div {
    width: 56px;
    height: 56px;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-img {
    width: 56px;
    height: 56px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 30px;
}

.user-name {
    margin: 6px 0px;
    font-weight: bolder;
    font-size: 22px;
}

@media (max-width: 992px) {
    .user-img {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-height: 900px) {
    .user-img-div {
        margin: 0px 10px;
    }

    .user-name {
        text-align: left;
        font-size: 24px;
    }

    .msg {
        font-size: 20px;
    }

    .user-info-container {
        display: flex;
    }
}

/* @media screen and (max-height:786px) {
} */

@media screen and (max-height:760px) {
    .user-name {
        text-align: left;
        font-size: 22px;
    }

    .msg {
        font-size: 18px;
    }
}

/* @media screen and (max-height: 720px) {
} */

@media screen and (max-height: 640px) {
    .user-name {
        text-align: left;
        font-size: 18px;
    }

    .msg {
        font-size: 16px;
    }
}

.chat-header-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    color: #FFF;
    background: #DB532A;
    width: 100%;
    min-height: 116px;
    padding: 10px 10px 10px 10px;
    transition: all .7s ease-in-out;
}

.chat-header-container.menu {
    padding: 10px 10px 60px 10px;
}

