.float-button {
  position: fixed;
  bottom: 60px;
  right: 60px;
  z-index: 9999;
}

.float-button a {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #0099cc;
  color: #fff;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.float-button a:hover {
  background-color: #0077b3;
}

.float-button i {
  position: relative;
  top: 4px;
}
/*
.callphone-form
{background: #457fca;
background: -webkit-linear-gradient(to right, #5691c8, #457fca);
background: linear-gradient(to right, #5691c8, #457fca);

}
.callphone-form .modal-title
{color: white;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.5em;
  }
  .callphone-form p {
    color: white;
  }

  .callphone-form label {
    color: white;
  }
*/

.modal-content .form-wrapper{
    flex-direction: column;
}
.float-button {
  position: fixed;
  bottom: 100px;
  right: 60px;
  z-index: 9999;
}

.float-button a {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #0099cc;
  color: #fff;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}


.float-button:before {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 2px solid #4fbaea;
    left: -30px;
    right: -30px;
    top: -30px;
    bottom: -30px;
     border-radius: 50%;
    animation: animate 1.5s linear infinite;
    background-color:rgba(66,170,255, 0.3);
}

.float-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #4fbaea;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
     border-radius: 50%;
    animation: animate 1.5s linear infinite;
}
@keyframes animate
{
0%
{
    transform: scale(0.5);
      opacity: 0;
}
50%
{
    opacity: 1;
}
100%
{
    transform: scale(1.2);
    opacity: 0;
}
}