.speech-bubble {
	position: fixed;
	background: #fff;
	border-radius: .4em; 
  display: block;
  width: 300px;
  height: 150px;
  box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.24);
  right: 30px;
  bottom: 120px;
  text-align: center;
}


.speech-bubble:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 80%;
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-top-color: #fff;
	border-bottom: 0;
	border-right: 0;
	margin-left: -10px;
	margin-bottom: -20px;
}

@keyframes wait_n_fade {
  0% {
    display: none;
  }
  90% {
    display: none;
  }
  100% {
    display: block;
  }
}

.text {
  height: 70px;
  margin-top: 80px;
}

.speech-bubble .num {
  color: #fff;
  background-color: red;
  width: 20px;
  font-family: sans-serif;
  text-align: center;
  border-radius: 20px;
  height: 20px;
  line-height: 20px;
  border: 3px solid #ccc;
  position: absolute;
  top: -10px;
}

.speech-bubble .close {
  color: #fff;
  background-color: #a7a7a7;
  width: 20px;
  font-family: sans-serif;
  text-align: center;
  border-radius: 20px;
  height: 20px;
  line-height: 20px;
  border: 3px solid #ccc;
  position: absolute;
  top: -10px;
  right: 0;
  cursor: pointer;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 176, 59, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(0, 176, 59, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(0, 176, 59, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 176, 59, 0.4);
    box-shadow: 0 0 0 0 rgba(20, 176, 59, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(0, 176, 59, 0);
      box-shadow: 0 0 0 10px rgba(0, 176, 59, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(0, 176, 59, 0);
      box-shadow: 0 0 0 0 rgba(0, 176, 59, 0);
  }
}

.pulse {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: block;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #00b03b;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(20, 176, 59, 0.4);
  animation: pulse 2s infinite;
}
.pulse:hover {
  animation: none;
}



.pulse i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 5px;
  left: 24px;
}
.pulse > div {
  font-size: 12px;
  width: 53px;
  text-align: center;
  position: absolute;
  top: 30px;
  left: 7px;
  font-family: sans-serif;
  color: #fff;
}

.speech-bubble h1 {
  font-family: sans-serif;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
  color: #a7a7a7;
}

.speech-bubble button {
  width: 80%;
  margin: 0 auto;
  height: 40px;
  font-size: 20px;
  border: 4px solid  #00b03b;
  border-radius: 10px;
  margin-top: 10px;
  color: #fff;
  background-color: #00b03b;
}
.speech-bubble a {
  text-decoration: underline;
  font-family: sans-serif;
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
}