// INDEX OF SLIDING EXITS

@import
  "_slideOutDown",
  "_slideOutLeft",
  "_slideOutRight",
  "_slideOutUp";


.animated {
  &.slideOutDown {
    @include slideOutDown();
  }
  &.slideOutLeft {
    @include slideOutLeft();
  }
  &.slideOutRight {
    @include slideOutRight();
  }
  &.slideOutUp {
    @include slideOutUp();
  }
}