/**
 * Back to Top - Module Prestashop 1.7
 * @author Jatniel Guzmán - https://jatnielguzman.com
 * @copyright 2021
 * @license MIT
 */
#back-top {
    display: inline-block;
    background-color: #ffae37;
    width: 55px;
    height: 55px;
    text-align: center;
    margin: 30px;
    position: fixed;
    bottom: 60px;
    right: 11px;
    transition: background-color .3s;
    z-index: 19190;
    border-radius: 9999px;
    box-shadow: 0 3px 10px 0 #999;
}
#back-top:hover {
    cursor: pointer;
    /* background-color: #f97203; */
    opacity: .7;
}
#back-top .to-top {

}
#back-top .to-top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: black;
}