#floating-logo {

    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
	-webkit-tap-highlight-color: transparent;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s ease;
}

#floating-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

#floating-logo:hover img {
    transform: scale(1.15);
}

#floating-logo.show {
    opacity: 0.8;
    visibility: visible;
    transform: translateY(0);
}