/**
 * 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/ 
 */

#scroll-to-top {
	position: relative;
    text-align: center;
    width: 100%;
}
.scrollup {
    background: transparent !important;
    bottom: 82px;
    color: #e5e5e5 !important;
    cursor: pointer;
    display: none;
    font-size: 13px;
    font-weight: 600;
    min-height: 40px;
    padding: 2px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    width: 80px;
    z-index: 9999;
	bottom: 0;
	right: auto !important
}
.scrollup i {
	font-size: 80px !important;
}
.scrollup:hover {
    background: transparent;
    color: #e5e5e5 !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;
}

@media only screen and (max-width: 1024px){
	#scroll-to-top {
		position: relative;
		text-align: right;
		width: calc(100% - 80px);
		margin-top: -20px;
	}
}