/*------------------------------------------- watsapp toggle */
.whatsapp-toggle{
    width: 55px;
    height: 55px;
    background-color: rgb(7, 214, 7);
    position: fixed;
    bottom: 30px;
    right: 25px;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 99999999999999999999999999999999 !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .whatsapp-toggle i.fa-whatsapp{
    font-size: 35px;
    color: white;
    transition: all .3s ease;
    position: absolute;
  }
  .whatsapp-toggle i.fa-times{
    font-size: 35px;
    color: white;
    transition: all .3s ease;
    display: none;
  }
  .rot{
    transform: rotate(150deg);
  }
  #check:checked + .whatsapp-toggle .fa-whatsapp {
    display: none !important;
  }
  /*------------------------------------------------------ one */
  .whatsapp-fluid{
    position: fixed;
    right: 40px;
    bottom: 100px;
    width: 350px;
    height: auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    visibility: hidden;
    opacity: 0;
    transition: all .4s ease;
    z-index: 9999999999999999999999999999;
  }
  .whatsapp-fluid:hover{
    transition: all .4s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  .whatsapp-fluid .whatsapp-container{
    width: 100%;
    padding: 0px 15px;
    padding-top: 10px;
    background-color: rgb(7, 214, 7);
    display: flex;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .whatsapp-fluid .whatsapp-container .group-a{
    width: 20%;
  }
  .whatsapp-fluid .whatsapp-container .group-a img{
    width: 100%;
  }
  .whatsapp-fluid .whatsapp-container .group-b{
    width: 70%;
    padding: 5px;
  }
  .whatsapp-fluid .whatsapp-container .group-b h3{
    color: white;
    font-family: "calibri";
    font-size: 22px;
  }
  .whatsapp-fluid .whatsapp-container .group-b p{
    color: rgba(255, 255, 255, 0.815);
    font-size: 13px;
  }
  .block{
    display: block !important;
  }
  .whatsapp-fluid .paragraph-watsapp p{
    color: gray;
    padding: 10px;
    padding-top: 0;
  }
  .whatsapp-fluid .whatsapp-inner-msg{
    padding: 20px;
  }
  .whatsapp-fluid .w-messenger {
    width: 100%;
  }
  .whatsapp-fluid .w-messenger a:hover{
    background: white;
    transition: all .4s ease;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  }
  .whatsapp-fluid .w-messenger a{
    width: 100%;
    display: flex;
    text-decoration: none;
    background: whitesmoke;
    display: flex;
    padding: 10px 10px;
    border-left: 2px solid rgb(7, 214, 7);
    border-radius: 5px;
    margin-bottom: 10px;
    transition: all .4s ease;
  }
  .whatsapp-fluid .w-messenger a .icon{
    width: 25%;
  }
  .whatsapp-fluid .w-messenger a .icon img{
    width: 90%;
    border-radius: 50%;
  }
  .whatsapp-fluid .w-messenger a .txt-watsapp{
    width: 55%;
    padding-left: 10px;
    padding-top: 6px;
    display: flex;
    justify-content: left;
    align-items: center;
  }
  .whatsapp-fluid .w-messenger a .txt-watsapp h3{
    color: gray;
    font-family: "calibri";
    font-size: 18px;
    margin-top: -15px;
  }
  .whatsapp-fluid .w-messenger a .txt-watsapp p{
    color: gray;
    font-family: "calibri";
    font-size: 14px;
  }
  .whatsapp-fluid .whatsapp-icon-right{
    width: 20%;
    display: flex;
    align-items: center;
    text-align: right;
  }
  .whatsapp-fluid .whatsapp-icon-right img{
    width: 70%;
    margin-left: 20px;
  }
  
  @media (max-width: 400px){
    .whatsapp-fluid{
      position: fixed;
      right: 10px;
      bottom: 95px;
      width: 350px;
      height: auto;
      background-color: white;
      border-radius: 10px;
      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      transition: all .4s ease;
      z-index: 9999999999999999999999999999;
    }
  }
  
  @media (max-width: 370px){
    .whatsapp-fluid{
      position: fixed;
      right: 10px;
      bottom: 95px;
      width: 300px;
      height: auto;
      background-color: white;
      border-radius: 10px;
      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      transition: all .4s ease;
      z-index: 9999999999999999999999999999;
    }
    .whatsapp-fluid .whatsapp-container{
      display: block;
    }
    .whatsapp-fluid .whatsapp-container .group-b{
      width: 100%;
    }
  }
  
  @media (max-width: 315px){
    .whatsapp-fluid{
      position: fixed;
      right: 10px;
      bottom: 95px;
      width: 250px;
      height: auto;
      background-color: white;
      border-radius: 10px;
      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      display: none;
      transition: all .4s ease;
      z-index: 9999999999999999999999999999;
    }
  }

  .whatsapp-fluid.active{
    visibility: visible;
    opacity: 1;
    bottom: 130px;
  }

  .whatsapp-fluid.active .whatsapp-inner-msg .w-messenger{
    animation: fadeIn 1s;
    margin-bottom: 10px;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
      margin-bottom: -25px;
    }

    50% {
      opacity: 0.7;
      margin-bottom: -15px; 
    }

    10% {
        opacity: 1;
        margin-bottom: 0px; 
      }
  }