/**
 * Solwin Infotech
 * Solwin ScrolltoTop Extension
 *
 * @category   Solwin
 * @package    Solwin_ScrolltoTop
 * @copyright  Copyright © 2006-2016 Solwin (https://www.solwininfotech.com)
 * @license    https://www.solwininfotech.com/magento-extension-license/ 
 */

a.scrollup {
    background: #222!important;
    bottom: 82px;
    display: block;
    position: fixed;
    right: 10px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    width: 40px;
    height: 40px;
    -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    text-align: center;
    font-size: 13px;
    color: #fff !important;
    text-transform: uppercase;
    font-family: proxima_nova_semibold;
    padding: 2px;
    cursor: pointer;
    z-index: 999;
}
.scrollup i.fa.fa-angle-up {
    color: white;
    display: block;
    font-size: 20px;
    margin-bottom: -3px;
}
span.top {
    color: white;
}
.scrollup:hover {
    color: #ffffff !important;
    background-color: #f48256 !important;
    border-color: #f48256 !important;
}
.scroll-img {
    display: block;
    margin: 0 auto;
}
.scrollup .scroll-img.default-img {
    display: block;
}
.scrollup .scroll-img.hover-img {
    display: none;
}
.scrollup:hover .scroll-img.default-img {
    display: none;
}
.scrollup:hover .scroll-img.hover-img {
    display: block;
}