/* Keyframes */

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 }
  to { bottom:0px; opacity:1 } }

@keyframes animatebottom {
 from{ bottom:-100px; opacity:0 }
 to{ bottom:0; opacity:1 } }

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); } }

@keyframes spin {
 0% { transform: rotate(0deg); }
 100% { transform: rotate(360deg); } }