#brdev_button_whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}
#brdev_button_whatsapp .button-whatsapp img {
    transition: .5s ease;
}
#brdev_button_whatsapp .button-whatsapp img:hover {
    transform: scale(1.2);
}
#brdev_button_whatsapp span {
	font-size: 14px;
    background: var(--theme-color-2);
    color: white;
    border: 1px solid white;
    text-align: center;
    font-weight: 700;
    display: inline-block;
    padding: 5px 1.5rem;
    border-radius: 30px;
    position: absolute;
    top: -4.5rem;
    right: -10px;
    width: max-content;
    transition: .3s ease;
    animation: bounce-wsp 2s infinite cubic-bezier(0.4, 0, 1, 1);
    -webkit-box-shadow: 0px 2px 5px 0px rgb(128 128 128);
    -moz-box-shadow: 0px 2px 5px 0px rgba(128,128,128,1);
    box-shadow: 0px 2px 5px 0px rgb(128 128 128);
}
@-webkit-keyframes bounce-wsp {
    0%, 100% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.1);
    }
}
@media (max-width: 575.98px) {
	#brdev_button_whatsapp {
		right: 0rem;
	}
    #brdev_button_whatsapp .grid-wsp {
		display: grid;
		gap: 10px;
    }
	#brdev_button_whatsapp span {
		right: 4rem;
		font-size: 12px;
		top: 0;
		width: 8rem;
		padding: 5px 0rem;
	    display: none;
	}
}