@use '../../styles/utils' as *

.image_container
  position: relative
  overflow: hidden

  #image_spinner
    width: $size-32px
    height: $size-32px
    border: $size-4px solid $primary
    border-top: $size-4px solid transparent
    border-radius: 50%
    animation: identifier 1s linear infinite
    z-index: 5
    position: absolute

    @keyframes identifier
      from
        transform: rotate(0deg)

      to
        transform: rotate(360deg)
