/********** styles **/

#scroll {
  display: none;
}

.fixed-tabs-Whats {
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 100;
}

.fixed-tabs-Whats:hover .aba-whatsphone-icone a strong {
  margin-left: 0;
}

.aba-whatsphone {
  background: #25d366;
  height: 60px;
  width: 60px;
  border-radius: 30px;
  transition: 0.4s ease;
  -webkit-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.3);
  box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.3);
  overflow: hidden;
  animation-name: bounceIn;
  animation-duration: 500ms;
  animation-timing-function: linear;
  animation-fill-mode: forwards;

}

.aba-whatsphone:hover {
  width: 400px;
  transition: 0.4s ease;
}

.aba-whatsphone-icone {
  background: url(../images/whatsapp.png) no-repeat 15px;
  width: 400px;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}

.aba-whatsphone-icone:hover {
  background: none;
  margin-left: 0;
}

.aba-whatsphone-icone a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.aba-whatsphone-icone a strong {
  display: block;
  font-size: 15px;
  margin-left: 70px;
  color: #ffffff;
  text-transform: uppercase;
}

/********** keyframes **/
@keyframes bounceIn{
  0%{
    opacity: 0;
    transform: scale(0.3) translate3d(0,0,0);
  }
  50%{
    opacity: 0.9;
    transform: scale(1.1);
  }
  80%{
    opacity: 1;
    transform: scale(0.89);
  }
  100%{
    opacity: 1;
    transform: scale(1) translate3d(0,0,0);
  }
}

/********** media query **/
@media (min-width: 768px) and (max-width: 1200px) {
  #desktop {
    display: block;
  }
}

@media (min-width: 320px) and (max-width: 768px) {

  #desktop {
    display: none;
  }

  .fixed-tabs-Whats {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
    left: 0;
  }

  .aba-whatsphone {
    height: 40px;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .aba-whatsphone:hover {
    width: 100%
  }

  .aba-whatsphone-icone {
    width: 100%;
  }

  .aba-whatsphone-icone:hover {
    background: url(../../images/whatsapp.png) no-repeat 15px;
  }

  .aba-whatsphone-icone a strong {
    margin-left: 0;
  }

  .aba-whatsphone-icone a strong:hover {
    margin-left: 0;    
  }

}

@media (max-width: 500px) {
  .aba-whatsphone-icone a strong {
    font-size: 3.4vw;
  }
}