/**
* 2007-2023 Weblir
*
*  @author    weblir <hello@weblir.com>
*  @copyright 2012-2023 weblir
*  @license   https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
*  International Registered Trademark & Property of weblir.com
*
*  You are allowed to modify this copy for your own use only. You must not redistribute it. License
*  is permitted for one Prestashop instance only but you can install it on your test instances.
*/

.whats-float {
    position: fixed;
    top:25%;
    width:160px;
    overflow: hidden;
    background-color: #25d366;
    color: #FFF;
    z-index: 10;
    transition: all 0.5s ease-in-out;
    vertical-align: middle
}
.whats-float a span {
    color: white;
    font-size: 14px;
    padding-top: 6px;
    padding-bottom: 5px;
    position: absolute;
    line-height: 16px;
    font-weight: bolder;
}
.whats-float img {
    padding: 10px;
    transform:rotate(0deg);
    transition: all 0.5s ease-in-out;
}
.whats-float:hover {
    color: #FFFFFF;
    transform:translate(0px,0px);
}
.whats-float:hover img  {
    transform:rotate(360deg);
}

.position-left {
    left: 0;
    transform:translate(-118px,0px);
    border-radius: 0 10px 10px 0;
}
.position-right {
    right: 0;
    transform:translate(118px,0px);
    border-radius: 10px 0 0 10px;
}
.position-left img {
    float: right;
}

.position-left span {
    padding-left: 3px;
    padding-right: 3px;
}