// stylelint-disable declaration-no-important

@for $i from 0 through 20 {
  .opacity-#{$i * 5} {
    opacity: calc(#{$i * 5} / 100) !important;
  }
}
