.floating-msg {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.msg-logo {
    width: 65px;
    height: 65px;
    background-color: #3b5d50 ;
    /* background-color: #fff ; */
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.20);;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* .msg-logo::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #007bff;
} */

.msg-icons {
    position: absolute;
    bottom: calc(100% + 10px); /* Adjusted to create space for icons */
    right: 50%;
    transform: translateX(50%);
    display: none;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.msg-icons a {
    display: inline-block;
    margin: 5px;
}

.msg-icons img {
    width: 40px;
    height: 40px;
    /* border-radius: 50%; */
}

.msg-img>a>img{
  max-width: 40px !important;
}