@keyframes spined {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.animation-spin {
  animation-name: spined;
  animation-duration: 2500ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.recruter-timeslots .recruter-timeslots__delete {
  line-height: 1;
}
.recruter-timeslots .recruter-timeslots__delete .icon {
  display: inline-block;
}

.modal.form-organizer-timeslots__modal {
  z-index: 10500;
}
.form-organizer-timeslots__modal .form__submit .btn__icon {
  display: none;
}
.form-organizer-timeslots__modal .form__submit.loading .btn__icon {
  display: inline-block;
}