/* btn used to open the chat form - fixed at the bottom of the page */
.btn-bizapp {
  border-radius: 50px;
  background-color: #00a9ce;
  border: none;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 28px;
  width: 45px;
  height: 45px;
  transition: all 0.5s;
  cursor: pointer;
  padding: 16px 20px;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
}

.btn-bizapp span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  display:flex;
  align-items: center;
  /* justify-content: center; */
  font-size: 11px;
  margin-left: 2px;
}

.btn-bizapp span:after {
  content: 'Precisa de ajuda?';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -300px;
  transition: 0.5s;
  justify-content: start;
  text-align: justify;
  align-items: center;
  vertical-align: center;
  transition: 0.5s;
  margin-top: -2.5px;
}

.btn-bizapp:hover span {
  padding-right: 25px;
  justify-content: space-between;
}

.btn-bizapp:hover .text{
  display: block;
}

.btn-bizapp:hover{
  width: 160px;
}

.btn-bizapp:hover span:after {
  opacity: 1;
  right: 0;
}

#myForm {
  border-radius: 5px;
  border: 1px solid #cacaca;
}

.closePopUp{
display: block;
position: fixed;
bottom: 312px;
right: 50px;
border: 3px solid #f1f1f1;
z-index: 99;
width:30px;
height:30px;
background-color: transparent;
color:#f1f1f1;
}

/* The popup chat - hidden by default */
.chat-popup {
display: none;
position: fixed;
bottom: 0;
right: 15px;
border: 3px solid #f1f1f1;
z-index: 9;
height:350px;
background-color: white;
}

.center-bizapp {
  position: relative;
  bottom: 13px;
  right: 18px;
}

.center-bizapp span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  display:flex;
  align-items: center;
  /* justify-content: center; */
  font-size: 11px;
  margin-left: 2px;
}

.center-bizapp span:after {
  content: 'Precisa de ajuda?';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -300px;
  transition: 0.5s;
  justify-content: start;
  text-align: center;
  align-items: center;
  transition: 0.5s;
  margin-top: 5px;
}
