/**
* 2007-2019 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-2019 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.
*/
.scrollUp.visible{
    -moz-transform: rotate(360deg) translateX(-30px) translateY(0px);
    -webkit-transform: translate(-30px,0) rotate(-360deg);
    -o-transform: translate(-30px,0) rotate(-360deg);
    -ms-transform: translate(-30px,0) rotate(-360deg);
    transform: translate(-20px,0) rotate(-360deg);
}
.scrollUp::before{
    content: '\e905';
    font-family: 'icomoon';
    color: #fff;
    font-size: 20px;
    text-align: center;
    width: 100%;

    line-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


.scrollUp{
    position: fixed;
    bottom: 100px;
    right: 20px;
    /*padding-top: 28px;*/
    width: 50px;
    height: 50px;
    font-size: 14px;
    line-height: 28px;
    font-weight: 700;
    letter-spacing: .06em;
    color: #000;
    background: #af2f62;
    cursor: pointer;
    z-index: 888;
    /*display: none;*/
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 4px 4px 9px 1px rgb(0 0 0 / 15%);
    -moz-box-shadow: 4px 4px 9px 1px rgba(0,0,0,.15);
    -webkit-box-shadow: 4px 4px 9px 1px rgb(0 0 0 / 15%);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}

@media (max-width: 640px) {
    .scrollUp{
        width: 45px;
        height: 45px;
    }
}