@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* line 13, /home/helpdesk/app/assets/stylesheets/styles/style.css.scss */
.spin .glyphicon, .glyphicon.spin-hover:hover .glyphicon,
.spin-hover:hover .glyphicon .glyphicon,
.spin.glyphicon,
.glyphicon.spin-hover:hover,
.spin-hover:hover .glyphicon {
  -webkit-animation-name: spin;
  -webkit-animation-duration: 2000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-duration: 2000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spin;
  -ms-animation-duration: 2000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
}

/* line 35, /home/helpdesk/app/assets/stylesheets/styles/style.css.scss */
.form-group .padded {
  padding-top: 7px;
}
