#back-to-top {
    position: fixed;
    bottom:3.5vw;
    right:18vw;
    z-index: 100000;
	height:auto;
    cursor: pointer;
    transition: opacity 0.2s ease-out;
    opacity:0;
}
#back-to-top:hover {
opacity:.9;
}
#back-to-top.show {
    opacity: 1;
}

#back-to-top img {
float:left;width:100%;height:100%;
}
@media (min-width: 1024px) and (max-width: 1080px) {
#back-to-top {
right:20vw;
}
#back-to-top img {
width: 80%;
}
}
@media (min-width: 900px) and (max-width: 1023px) {
#back-to-top {
right:23vw;
}
#back-to-top img {
width: 80%;
}
}
@media (min-width: 800px) and (max-width: 899px) {
#back-to-top {
right:25vw;
}
#back-to-top img {
width: 80%;
}
}
@media (min-width: 320px) and (max-width: 799px) {
#back-to-top {
right:1vw;
}
#back-to-top img {
width: 60%;
}
}