@mixin support($prop,$vars...){
@supports "#{$prop}"{
@each $key in $vars{
.#{$key} {
@content;
}
}
}
}
@supports (background-clip:text) or (-webkit-background-clip:text) or (-moz-background-clip:text){
}