.nut-image {
  display: block;
  position: relative;

  .nut-img {
    display: block;
    width: 100%;
    height: 100%;
  }

  &.nut-image-round {
    border-radius: 50%;
    overflow: hidden;
  }

  .nut-img-loading {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: $color-background;
    background-size: 100% 100%;
  }

  .nut-img-error {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: $color-background;
    background-size: 100% 100%;
  }
}

[dir='rtl'] .nut-image,
.nut-rtl .nut-image {
  .nut-img-loading {
    left: auto;
    right: 0;
  }

  .nut-img-error {
    left: auto;
    right: 0;
  }
}
