/* widgets style call/whatsup */

.fixedright {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 48px;
    right: 30px;
    
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    
    z-index: 100;
    animation: white-shadow .8s infinite, red-shadow .8s infinite;
    box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
    
  }
  
  .fixed {
    position: fixed;
    transition: all 1.5s ease 0s;
    width: 50px;
    height: 50px;
    bottom: 48px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    left: 30px;
    z-index: 100;
    animation: white-shadow .8s infinite, green-shadow .8s infinite;
    box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
    
  }
  
  .close{position: absolute;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  background: #000 !important;
  border-radius: 30px;
  color: #fff;
  top: 10px;
  right: 10px;
  padding: 0px !important;
  margin: 0px !important;}
  
  @keyframes white-shadow {
  0% {
  -webkit-box-shadow: 0 0 0 0 rgba(0.5, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(0.5, 255, 255, 0.5);
  -webkit-transition: box-shadow .3s ease-in-out;
  -webkit-transition: -webkit-box-shadow .3s ease-in-out;
  -o-transition: box-shadow .3s ease-in-out;
  transition: box-shadow .3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  }
  100% {
  -webkit-box-shadow: 0 0 0 30px transparent;
  box-shadow: 0 0 0 30px transparent;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: box-shadow .4s ease-in-out;
  -webkit-transition: -webkit-box-shadow .4s ease-in-out;
  -o-transition: box-shadow .4s ease-in-out;
  transition: box-shadow .4s ease-in-out;
  transition: box-shadow 0.4s ease-in-out, -webkit-box-shadow 0.4s ease-in-out;
  }
  }
  @-webkit-keyframes red-shadow {
  0% {
  -webkit-box-shadow: 0 0 0 0 rgba(228, 31, 122, 0.4);
  box-shadow: 0 0 0 0 rgba(228, 31, 122, 0.4);
  }
  100% {
  -webkit-box-shadow: 0 0 0 30px transparent;
  box-shadow: 0 0 0 30px transparent;
  }
  }
  @keyframes red-shadow {
  0% {
  -webkit-box-shadow: 0 0 0 0 rgba(228, 31, 122, 0.4);
  box-shadow: 0 0 0 0 rgba(228, 31, 122, 0.4);
  }
  100% {
  -webkit-box-shadow: 0 0 0 30px transparent;
  box-shadow: 0 0 0 30px transparent;
  }
  }
  
  /* end widgets */