.venom-button {
    position: fixed;
    bottom: 15px;
    left: 15px;
    font-size: 14px;
    transition: bottom 0.2s;
    z-index: 998;
}

.venom-button .venom-button-button {
    position: relative;
    border-radius: 50%;
    box-shadow: 1px 1px 4px rgba(60, 60, 60, 0.4);
    transition: box-shadow 0.2s;
    cursor: pointer;
    overflow: hidden;
}

.venom-button .venom-button-button img,
.venom-button .venom-button-button svg {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    border-radius: 50%;
}

.venom-button:hover {
    bottom: 17px;
}

.venom-button:hover .venom-button-button {
    box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.4);
}

.venom-button .venom-button-popup {
    /*border: 2px solid white;*/
    border-radius: 6px;
    background-color: #E5DDD5;
    position: absolute;
    overflow: hidden;
    padding: 0;
    box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.25);
    width: 0px;
    height: 0px;
    bottom: 0;
    opacity: 0;
    transition: bottom 0.1s ease-out, opacity 0.2s ease-out;
    transform-origin: bottom;
}

.venom-button .venom-button-popup.active {
    padding: 0 12px 12px 12px;
    width: 260px;
    height: auto;
    bottom: 82px;
    opacity: 1;
}

.venom-button .venom-button-popup .venom-button-message {
    background-color: white;
    padding: 8px;
    border-radius: 0px 5px 5px 5px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
    opacity: 0;
    color: black;
    transition: opacity 0.2s;
}

.venom-button .venom-button-popup.active .venom-button-message {
    opacity: 1;
    transition-delay: 0.2s;
}

.venom-button .venom-button-popup .venom-button-head {
    /* text-align: right;
    color: white;
    margin: 0 -15px 10px -15px;
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    cursor: pointer; */
    color: #fff;
    margin: 0 -15px 10px;
    padding: 6px 10px;
    display: flex;
    justify-content: space-between;
    line-height: normal;
    font-size: 13px;
    padding-top: 8px;
    align-items: center;
}

.venom-button .venom-button-input-message {
    background-color: white;
    margin: 10px -15px -15px -15px;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.venom-button .venom-button-input-message textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: none;
    padding: 8px;
    margin: 10px 0;
    width: 100%;
    max-width: 100%;
    font-family: inherit;
    font-size: inherit;
    resize: none;
    color: black;
}

.venom-button .venom-button-btn-send {
    margin-left: 12px;
    font-size: 0;
    cursor: pointer;
}

.venom-button-button{
    width: 50px !important;
    height: 50px !important;
    background: none !important;
    box-shadow: none !important;
}
.venom-button-head{
    background-color: #ad0663 !important;
}