// stylelint-disable declaration-no-important

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