.chat-wrap {
    display: inline-flex;;
    /* margin-left: -30px; */
}

.chat-button {
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ellipse {
    border-radius: 25px;
    background: #dfdfdf;
    width: 100px;
    height: 50px;
    margin-right: 10px;

    /* display: inline; */
}

.circle {
    height: 50px;
    width: 50px;
    shape-outside: circle();
    clip-path: circle();
    background: #ffc700;
}

.chat-button-text {
    overflow-wrap: break-word;
    font-size: 30px;
    user-select: none;
    font-family: Montserrat;
    font-weight: bold;
}

.ellipse-text {
    font-size: 15px;
}

#close-button {
    display: none;
}

.unread-counter-wrap {
    height: 18px;
    width: 18px;
    shape-outside: circle();
    clip-path: circle();
    background: #de3f53;
    text-align: center;
    /* float: right; */
    color: #dfdfdf;
    /* font-size: 30px; */
    user-select: none;
    /* display: flex; */
    margin-left: -15px;
    position: absolute;
    top: 4px;
    right: 0;
    line-height: 18px;
}
.unread-counter {
    font-size: 14px;
}

.open-wrap {
    display: flex;
}