/* Text link style */
.jquery_scrollup--text {
    right: 31px;
    bottom: 20px;
}

/* Pill style */
.jquery_scrollup--pill {
    right: 31px;
    bottom: 20px;
    background-color: #555555;
    color: #fff;
    font-size: 12px;
    font-family: sans-serif;
    text-decoration: none;
    opacity: .9;
    padding: 10px 20px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    -webkit-transition: background 200ms linear;
    -moz-transition: background 200ms linear;
    -o-transition: background 200ms linear;
    transition: background 200ms linear;
    -webkit-backface-visibility: hidden;
}
.jquery_scrollup--pill:hover {
    background-color: #000000;
}

/* Tab style */
.jquery_scrollup--tab {
    bottom: 0;
    right: 30px;
    width: 70px;
    height: 70px;
    margin-bottom: -10px;
    padding: 10px 5px;
    font: 14px/20px sans-serif;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px 0 #ffffff;
    color: #828282;
    -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    background-color: #E6E6E6;
    background: -moz-linear-gradient(top, #EBEBEB, #DEDEDE);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#EBEBEB), to(#DEDEDE));
    background: -webkit-linear-gradient(top, #EBEBEB, #DEDEDE);
    background: -o-linear-gradient(top, #EBEBEB, #DEDEDE);
    background: linear-gradient(to bottom, #EBEBEB, #DEDEDE);
    background-repeat: repeat-x;
    -webkit-transition: margin-bottom 150ms linear;
    -moz-transition: margin-bottom 150ms linear;
    -o-transition: margin-bottom 150ms linear;
    transition: margin-bottom 150ms linear;
}
.jquery_scrollup--tab:hover {
    margin-bottom: 0;
}

/* Image style */
.jquery_scrollup--icon {
    border-radius: 100%;
    background-color: #555555;
    right: 31px;
    bottom: 20px;
    width: 50px;    /* Width of image */
    height: 50px;   /* Height of image */
    font-size: 0;
    line-height: 0;
}
.jquery_scrollup--icon:hover {
    background-color: #000000;
}
.jquery_scrollup--icon:after {
    background-color: #FFFFFF;
    display: block;
    content: " ";
    width: 100%;
    height: 100%;
    -webkit-mask-image: url(../misc/angle-up.svg);
    -webkit-mask-size: 28px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url(../misc/angle-up.svg);
    mask-size: 28px;
    mask-repeat: no-repeat;
    mask-position: center;
}
