#specialButton {
    display: flex;
    vertical-align: top;
    text-align: center;
    font-weight: 900;
    border-radius: 50%;
    position: fixed;
    z-index: 999;
    color: #fff!important;
    cursor: pointer;
    background-color: #2f2484;
    -webkit-animation: pulsing 3s infinite;
    animation: pulsing 3s infinite;
    -webkit-transition: bottom .2s ease-out 0s;
    -moz-transition: bottom .2s ease-out 0s;
    -o-transition: bottom .2s ease-out 0s;
    transition: bottom .2s ease-out 0s;
    justify-content: center;
    align-items: center;
    right: 2%;
    bottom: 2%;
    margin: 5px 0;
    padding: 5px;
}

#specialButton a{

    color: #fff!important;

}

@-webkit-keyframes pulsing {
  0% {
    -webkit-transform: scale(0.95, 0.95);
    transform: scale(0.95, 0.95)
  }
  50% {
    -webkit-transform: scale(1.0, 1.0);
    transform: scale(1.0, 1.0);
  }
  100% {
    -webkit-transform: scale(0.95, 0.95);
    transform: scale(0.95, 0.95);
  }
}

@keyframes pulsing {
  0% {
    -webkit-transform: scale(0.95, 0.95);
    transform: scale(0.95, 0.95)
  }
  50% {
    -webkit-transform: scale(1.0, 1.0);
    transform: scale(1.0, 1.0);
  }
  100% {
    -webkit-transform: scale(0.95, 0.95);
    transform: scale(0.95, 0.95);
  }
}
@media (max-width: 767px){
#specialButton {
    background-size: 70px;
    font-size: 14px;
    width: 70px;
    height: 70px;
}
    
}
 @media (min-width: 767px){
#specialButton {
    background-size: 90px;
    font-size: 16px;
    width: 80px;
    height: 80px;
}
 }
 
