.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#1ba33d;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}

.blink {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

.my-float{
    margin-top:16px;
}

.bubble-shadow {
  background-color: rgba(0,0,0, 7%);
  filter: blur(18px);
  width: 220px;
  height: 60px;
  position: fixed;
  bottom: 39px;
  right: 80px;
  /* border-radius: 24px; */
}

.speech-bubble {
	background: #fff;
  box-shadow: 0 2px 7px rgb(0 0 0 / 15%);
	position: fixed;
  bottom:40px;
	right:120px;
	text-align: center;
	padding: 20px 15px;
	width: fit-content;
	border-radius: 10px;
  color: #1ba33d;
  z-index: 9999;
}
.speech-bubble:after {
	content: '';
	position: absolute;
	display: block;
	top: 50%;
	left: 100%;
	margin-top: -10px;
	width: 0;
	height: 0;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #fff;
}