///////////////////////////////
// THEME / MIXINS / BLEND MODES
///////////////////////////////


// Multiply
@mixin multiply($imp:null) {

  @supports (mix-blend-mode: multiply) {
    mix-blend-mode: multiply $imp;
  }

}


// Soft Light
@mixin soft-light($imp:null) {

  @supports (mix-blend-mode: soft-light) {
    mix-blend-mode: soft-light $imp;
  }

}