/* .single_add_to_cart_button{
    width: 120px;
    height: 50px;
    background-color: #E71D29;
    color: white;
    font-size: 20px;
    border: 0;
    border-radius: 50px;
    background-color: #fff090;
} */

.btn-floating {
    position: fixed;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .2s;
    opacity: 0.7;
}

.btn-floating img{
    width: 55px !important;
    height: 55px !important;
}

.floating-wa:hover{
    opacity: 1;
}

.bounce2 {
    animation: bounce2 2s ease infinite;
  }
  @keyframes bounce2 {
      0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
      40% {transform: translateY(-30px);}
      60% {transform: translateY(-15px);}
  }
  
.btn-floating.whatsapp {
    bottom: 25px;
}

/* Tooltip */
.tooltiptext {
    visibility: visible;
    position: absolute;
    z-index: 1;
    width: 100px;
    color: white;
    font-size: 12px;
    background-color: #192733;
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
  }
  
  .hover-text:hover .tooltiptext {
    visibility: visible;
  }

  .hover-text .tooltiptext::after{
        content: "";
        position: absolute;
        top: 50%;
        left: 100%;
        margin-top: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent transparent #192733;
  }
  
  #top {
    top: -40px;
    left: -50%;
  }
  
  #bottom {
    top: 25px;
    left: -50%;
  }
  
  #left {
    top: 0px;
    right: 120%;
  }
  
  #right {
    top: -8px;
    left: 120%;
  }
/* Tooltip-end */