/* Floating Wrapper Css Start */
.float__wrapper {
    position: fixed;
    bottom: 60px;
    right: 60px; 
    z-index: 999999;
}
.float__wrapper a {
    display: block;
    text-align: center;
    background: #d52729;
    color: #fff;
    width: 112px;
    height: 112px;
    border-radius: 100%;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: bold; 
    position: relative;
    -webkit-box-shadow: 0px 0px 82px -7px rgba(213,39,41,1);
    -moz-box-shadow: 0px 0px 82px -7px rgba(213,39,41,1);
    box-shadow: 0px 0px 82px -7px rgba(213,39,41,1);
    cursor: pointer;
    box-shadow: 0 0 0 rgba(204,169,44, 0.4);
    animation: pulse 2s infinite;
}
.float__wrapper a span {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(0%, 25%);
    -moz-transform: translate(0%, 25%);
    -ms-transform: translate(0%, 25%);
    -o-transform: translate(0%, 25%);
    transform: translate(0%, 25%);
}
/* element scroller */  
.float__wrapper a:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(239,48,73, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 50px rgba(239,48,73, 0);
      box-shadow: 0 0 0 50px rgba(239,48,73, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 50px rgba(239,48,73, 0);
      box-shadow: 0 0 0 50px rgba(239,48,73, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(239,48,73, 0.4);
    box-shadow: 0 0 0 0 rgba(239,48,73, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 50px rgba(239,48,73, 0);
      box-shadow: 0 0 0 50px rgba(239,48,73, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 50px rgba(239,48,73, 0);
      box-shadow: 0 0 0 50px rgba(239,48,73, 0);
  }
}
/* Floating Wrapper Css End */