#starpeak_engine_chatwidget {
    min-width: 64px;
    height: 64px;

    background: #0061e9;
    border: 1px solid #0061e9;
    border-radius: 360px;
    padding: 18px;

    box-sizing: border-box;

    cursor: pointer;

    font-size: 18px;
    font-weight: 500;

    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
}

#starpeak_engine_chatwidget span {
    width:0;
    text-wrap: nowrap;
    overflow: hidden;
    transition: width .5s ease-in-out;
}

#starpeak_engine_chatwidget:hover {
    border: 1px solid #0061e9;
    color: #0061e9;
    background: #FFFFFF;
}

#starpeak_engine_chatwidget:hover span {
    width:96px;
}

#starpeak_engine_chatwidget svg path { 
    fill: #fff;
}

#starpeak_engine_chatwidget:hover svg path {    
    fill: #0061e9;
}

