@import '../settings/base';

.#{$css_prefix}_c_spin {
  &--is_fullscreen {
    position: fixed;
    z-index: $zindex_fullscreen;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  &--is_area {
    position: absolute;
    z-index: $zindex_top;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  &__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  &__loading {
    animation: loading-rotate 1s linear infinite;
  }
}