/*------------------------------------------*/
/*    Scroll To Top Style
/*------------------------------------------*/
#spiderLogo {
    display: block;
    visibility: visible;
    position: fixed;
    transform: translateX(-25px);
	left: 0;
    bottom: 0;
    margin: 0;
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
    opacity: 0;
    z-index: 10000;
    border-top-left-radius: 3px;
    color: #fff;
    text-align: center;
    -webkit-box-shadow: 0px 14px 47px 0px rgba(28, 28, 28, 0.24);
	-moz-box-shadow: 0px 14px 47px 0px rgba(28, 28, 28, 0.24);
	box-shadow: 0px 14px 47px 0px rgba(28, 28, 28, 0.24);
    background-color: #ffffff;
    box-sizing: border-box;
	transform: translateY(100px);
    -webkit-transition: opacity .2s ease-out,visibility .2s ease-out,color .2s ease-out, background-color .2s ease-out, right .1s ease-out, transform 0.4s ease-out;
    -moz-transition: opacity .2s ease-out,visibility .2s ease-out,color .2s ease-out, background-color .2s ease-out, right .1s ease-out, transform 0.4s ease-out;
    transition: opacity .2s ease-out,visibility .2s ease-out,color .2s ease-out, background-color .2s ease-out, right .1s ease-out, transform 0.4s ease-out;
}
#spiderLogo img {
	max-width: 100%;
}

#spiderLogo:hover{
  background-color: #D8C4CB;
}
#spiderLogo.on {
    opacity: 1;
    visibility: visible;
	transform: translateY(0px);
}
#spiderLogo:hover .mkdf-icon-stack {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px);
}
#spiderLogo:hover .spiderLogo-text {
    opacity: 0;
}