3.1.2 (Brainy Betty)
8896e3fbceff9ddbdcf1e9cfb00eb54f1f485432
o:Sass::Tree::RootNode
:@has_childrenT:@children[o:Sass::Tree::ImportNode
;[ :@imported_filename"shared:@options{ :
@linei:@template0o:Sass::Tree::CommentNode;[ ;
@
:@lines[ :
@loud0:@value"Ú/* Provides cross-browser CSS opacity. Takes a number between 0 and 1 as the argument, e.g. 0.5 for 50% opacity.
 *
 *     @param $opacity
 *         A number between 0 and 1, where 0 is transparent and 1 is opaque. */;i:@silenti o:Sass::Tree::MixinDefNode;T;[u:Sass::Tree::IfNodem[o:Sass::Script::Operation
:@operand2o:Sass::Script::Variable	:@options{ :
@name"legacy-support-for-ie8:@underscored_name"legacy_support_for_ie8:
@linei;@:@operand1o; 
;o;	;@;	"legacy-support-for-ie7;
"legacy_support_for_ie7;i;@;o;	;@;	"legacy-support-for-ie6;
"legacy_support_for_ie6;i:@operator:or;i;;;i0[o:Sass::Tree::PropNode:@children[ :
@tabsi ;{ ;	["filter:@prop_syntax:new:@valueo:Sass::Script::Funcall
;{ :@keywords{ :
@args[o:&Sass::Script::StringInterpolation
;@:@aftero:Sass::Script::String	;@;");i:
@type:string:	@mido;
;@;{ ;[o; 
;o:Sass::Script::Number:@original"100;@:@denominator_units[ :@numerator_units[ ;ii;i;@;o;	;@;	"opacity;
"opacity;i;:
times;i;	"
round;i;i:@beforeo;	;@;"5progid:DXImageTransform.Microsoft.Alpha(Opacity=;i;;;	"unquote;i;io:Sass::Tree::PropNode;[ :
@tabsi ;
@
:
@name["opacity:@prop_syntax:new;o:Sass::Script::Variable	;
{ ;"opacity:@underscored_name"opacity;i;i;
@
:
@args[[o;;
{ ;"opacity;"opacity0;"opacity;io;;[ ;
@
;[ ;0;"2/* Make an element completely transparent. */;i;i o;;T;[o:Sass::Tree::MixinNode;[ ;
@
:@keywords{ ;[o:Sass::Script::Number:@original"0;
{ :@denominator_units[ :@numerator_units[ ;i ;i;"opacity;i;
@
;[ ;"transparent;io;;[ ;
@
;[ ;0;"-/* Make an element completely opaque. */;i;i o;;T;[o;;[ ;
@
;{ ;[o;;"1;
{ ; @.;![ ;i;i;"opacity;i;
@
;[ ;"opaque;i;
@
;i;"€@import "shared";

// Provides cross-browser CSS opacity. Takes a number between 0 and 1 as the argument, e.g. 0.5 for 50% opacity.
//
//     @param $opacity
//         A number between 0 and 1, where 0 is transparent and 1 is opaque.

@mixin opacity($opacity) {
  @if $legacy-support-for-ie6 or $legacy-support-for-ie7 or $legacy-support-for-ie8 {
    filter: unquote("progid:DXImageTransform.Microsoft.Alpha(Opacity=#{round($opacity * 100)})");
  }
  opacity: $opacity;
}

// Make an element completely transparent.
@mixin transparent { @include opacity(0); }

// Make an element completely opaque.
@mixin opaque { @include opacity(1); }
