.floating-wpp {
    position: fixed;
    bottom: 15px;
    left: 15px;
    font-size: 16px;
    transition: bottom 0.2s;
}

.floating-wpp .floating-wpp-button {
  
    transition: box-shadow 0.2s;
    cursor: pointer;
    overflow: hidden;
}

.floating-wpp .floating-wpp-button img,
.floating-wpp .floating-wpp-button svg {
    position: absolute;
	-webkit-animation: bounce 5s infinite alternate;
    width: 100%;
    height: auto;
    object-fit: cover;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.floating-wpp:hover {
    bottom: 17px;
}

.floating-wpp:hover .floating-wpp-button {
    
}

.floating-wpp .floating-wpp-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;
}

.floating-wpp .floating-wpp-popup.active {
    padding: 0 12px 12px 12px;
    width: 360px;
    height: auto;
    bottom: 82px;
    opacity: 1;
}

@media only screen and (max-width: 767px){

.floating-wpp .floating-wpp-popup.active {
	  width: 300px;
}
}
.floating-wpp .floating-wpp-popup .floating-wpp-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;
    transition: opacity 0.2s;
}
.floating-wpp .floating-wpp-popup .floating-wpp-message1 {
    background-color: white;
    padding: 8px;
    border-radius: 0px 5px 5px 5px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.5s;
}
.floating-wpp .floating-wpp-popup .floating-wpp-message2{
    background-color: white;
    padding: 8px;
    border-radius: 0px 5px 5px 5px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.5s;
}
.floating-wpp .floating-wpp-popup.active .floating-wpp-message {
    opacity: 1;
    transition-delay: 0.4s;
	width: 85%;
}
.floating-wpp .floating-wpp-popup.active .floating-wpp-message1 {
    opacity: 1;
    transition-delay: 1.2s;
	width: 85%;
	margin-top: 10px;
}
.floating-wpp .floating-wpp-popup.active .floating-wpp-message2 {
    opacity: 1;
    transition-delay: 2s;
	width: 85%;
	margin-top: 10px;
}
.floating-wpp .floating-wpp-popup .floating-wpp-head {
    text-align: left;
    color: white;
    margin: 0 -15px 10px -15px;
    padding: 8px 18px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
	font-size: 18px;
}
.footer
{
	position: absolute;
	text-align: center;
    color: black;
	font-size: 18px;
}
.floating-wpp .floating-wpp-input-message {
    background-color: white;
    margin: 10px -15px -15px -15px;
    padding: 0 15px;
    display: flex;
    align-items: center;
	
}

.floating-wpp .floating-wpp-input-message textarea {
    border: 1px solid #ccc;
    border-radius: 20px;
    box-shadow: none;
    padding: 10px 0px 0px 20px;
    margin: 10px 0;
    width: 100%;
    max-width: 100%;
    font-family: inherit;
    font-size: inherit;
    resize: none;
	outline: none;
}

.floating-wpp .floating-wpp-btn-send {
    margin-left: 12px;
    font-size: 0;
    cursor: pointer;
	border-radius: 50%;
    background-color: #009688;
    width: 35px;
    height: 30px;
    text-align: center;
}
