.demo-footer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    visibility: visible;
    transition: all 2s ease;
    -webkit-transition: all 2s ease;
    z-index: 999999999999999;
}

.demo-footer.visible {
    opacity: 1;
    visibility: visible;
}

.demo-footer a {
    color: grey;
    display: block;
    font-size: 14px;
    padding: .5em 1em;
    text-decoration: none;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    font-weight: 400;
}

/* Body animatin
--------------------------------------------- */

body {
	animation: fadein 1.4s;
}

@keyframes fadein {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}

}