/**
* Scroll to top
*/

.ise-scroll-to-top {
    width: 40px;
    height: 40px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    position: fixed;
    bottom: 150px;
    border-radius: 50%;
    right: 20px;
    display: none;
    z-index: 2000;
    background-color: #969696;
    background-image: url(images/scroll_to_top_arrow.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 20px;
    overflow: hidden;
}


.ise-scroll-to-top:before {
    left: 28px;
}

.ise-scroll-to-top:after {
    right: 28px;
}

.ise-scroll-to-top:focus {
    outline: none;
}

/**
* End Scroll to top
*/