.wh-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

.wh-button .whats-chat {
    position: absolute;
    bottom: 110%;
    right: 0%;
    width: 250px;
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 15px;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s;
    transform-origin: bottom right;
}

.wh-button .whats-chat.active {
    opacity: 1;
    pointer-events: all;
    height: auto;
    overflow: hidden;
}

.wh-ap-btn img {
    width: 35px;
}

.wh-button .wh-ap-btn {
    background-color: #2ecc71;
    font-size: 30px;
    border: none;
    border-radius: 100px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    // animation: shake 1s infinite;
    cursor: pointer;
}

.wh-button .wh-ap-btn:hover {
    animation: none;
}
.whats-chat input{
	min-height:unset !important;
	height: unset !important;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}