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

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

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-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 }
}

body {
  font-family: "Helvetica Neue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  max-width: 680px;
}

#title-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  text-align: center;
  font-weight: 300;
  font-size: 36px;
}

.narrative {
  margin: 10px 0px 0px 0px;
  text-align: justify;
  max-width: 580px;
  line-height: 18px;
}

#search-container {
  text-align: center;
  margin: 20px 0px 20px 0px;
}

.suggest-skills {
  margin-left: 5px;
  height: 45px;
  background-color: #99CCFF;
  border-radius: 10px;
  color: #5a5a5a;
  padding: 0px 10px;
  font-weight: 600;
}

.suggest-skills:focus {
  outline: 0;
}

#loader {
  position: absolute;
  left: 50%;
  top: 200px;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index:20001;
}

#cover {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background-color: #fff;
  z-index: 2000;
}

#interactive-container {
  position: relative;
  text-align: center;
}

.bootstrap-tagsinput {
  width: 600px;
  line-height: 35px;
  text-align: left;
  border-radius: 10px;
}

.tag {
  font-size: 100% !important;
}
