/**
* 2007-2021 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2021 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
.des-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* background-color: #25d366; */
    /* border-radius: 50%; */
    /* width: 5rem; */
    /* height: 5rem; */
    /* text-align: center; */
    /* display: flex; */
    /* align-items: center; */
    cursor: pointer;
    z-index: 9999;
    /* border: 5px solid white; */
}

.des-whatsapp i {
    font-size: 3.1rem;
    color: white;
}

.des-whatsapp a {
    width: 100%;
}

.des-whatsapp a:before {
    -webkit-animation: sonar 1s ease-out infinite;
    -moz-animation: sonar 1s ease-out infinite;
    animation: sonar 1s ease-out infinite;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: sonar;
    background: transparent;
    border: 4px solid #4fc862;
    content: "";
    height: 91px;
    left: -15px;
    filter: alpha(opacity=0);
    opacity: 0;
    position: absolute;
    top: -18px;
    width: 91px;
    z-index: 1;
    border-radius: 50%;
}
sonar{
    from{
        -webkit-transform:scale(0);
        opacity:1;
    }to{
        -webkit-transform:scale(1);
        opacity:0;
    }
}
@-moz-keyframes sonar{
    from{
        -moz-transform:scale(0);
        opacity:1;
    }to{
        -moz-transform:scale(1);
        opacity:0;
    }
}
@keyframes sonar{
    from{
        transform:scale(0);
        opacity:1;
    }to{
        transform:scale(1);
        opacity:0;
    }
}
#product .des-whatsapp {
    bottom: 140px;
}