/* loading */
#loader {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20%;
  z-index: 1;
  width: 105px;
  height: 105px;
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #f8ab48;
  -webkit-animation: spin 0.5s linear infinite;
  animation: spin 0.5s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


@-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 }
}