/* #PRODUIRE{fond=css/bootstrap.css}
   md5:345fcba0455af88dbafb0ba9c949727a */
/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

// Core variables and mixins
// ------ Couleurs ------

@black:         						#000;
@white:             				#fff;

@gris-base:         	 	#000;
@gris-darker:       		lighten(@gris-base, 13.5%); // #222
@gris-dark:          	 	lighten(@gris-base, 40%);   // #333
@gris:                  	 	lighten(@gris-base, 70%); // #555
@gris-light:          		#f0f1f2; // #777
@gris-lighter:       	 	lighten(@gris-base, 90.9%); // #e8e8e8
@gris-extralighter:  	#F5F5F5; // #e8e8e8

// Adaptateur BS2
@grisDarker: 					@gris-darker;
@grisDark:    					@gris-dark;
@grisLight:    					@gris-light;
@grisLighter: 				@gris-lighter;
@grisExtraLighter:	@gris-extralighter;

@bleu:            				#005977;
@bleuLight:        		#D9E7F0;
@bleuDark:    				#005977;
@vert:          					#2B8E12;
@vertLight:        		#BED444;
@rougeLight:      		#ec1e24;
@rouge:              		#DC1E39;
@rougeDark:      		#B30005;
@jaune:         					#EB9E05;
@orange:        				#DD6E00;
@orangeLighter:  	lighten(@orange, 30%);
@orangeLight:      	lighten(@orange, 15%);
@orangeDark:   			darken(@orange, 15%);
@rose:              			#FF5798;
@violet:           				#A65EE3;
@turquoise:						#3ABCA2;

@bleu_fb:								#4D68A1;
@bleu_tw:							#25AAE1;

@couleur-defaut : 						@rouge;
@couleur-secondaire : 		@bleuLight;
@couleur-defautLight: 			lighten(@couleur-defaut, 15%);
@couleur-defautDark: 				darken(@couleur-defaut, 15%);

// Scaffolding
@bodyBackground:         @white;
@textColor:                     @grisDark;

// Links
@linkColor:                   @rouge;
@linkColorHover:          @rouge;

// Adaptateur BS2
@brand-defaut:   				@rouge;
@brand-primary:   			@bleu;
@brand-vert:   						@vert;
@brand-jaune:         			@jaune;
@brand-orange:     		@orange;
@brand-rouge:      			@rouge;
@body-bg:                 @bodyBackground;
@text-color:              	@textColor;
@link-color:              	@linkColor;
@link-hover-color:     @bleuDark;
@link-hover-decoration: none;

// ===  Typography ===

@sansFontFamily: 			   	'Nunito Sans', Verdana, sans-serif;
@serifFontFamily:  			 	Georgia, Cambria, Times New Roman, Times, serif;
@monoFontFamily:    		"Courier New", Courier, monospace;

@baseFontSize:     			18px;
@baseFontFamily: 			@sansFontFamily;
@baseLineHeight:     		24px;
@altFontFamily:     			@sansFontFamily;
@labeur: 											@baseFontFamily;

@headingsFontFamily:    @baseFontFamily; // empty to use BS defaut, @baseFontFamily
@headingsFontWeight: 		normal;    // instead of browser defaut, bold
@headingsColor:         			inherit; // empty to use BS defaut, @textColor
@titraille: 												@baseFontFamily;

// Adaptateur BS2
@font-family-sans-serif:  			@sansFontFamily;
@font-family-serif:       				@serifFontFamily;
@font-family-monospace:   	@monoFontFamily;
@font-family-base:  						  @font-family-serif;
@font-size-base:          				@baseFontSize;
@font-size-large:     							@fontSizeLarge; // ~18px
@font-size-small:     						@fontSizeSmall; // ~12px

@font-size-h1:            floor((@font-size-base * 2));
@font-size-h2:            floor((@font-size-base * 1.5));
@font-size-h3:            ceil((@font-size-base * 1.25));
@font-size-h4:            ceil((@font-size-base * 1.1));
@font-size-h5:            @font-size-base;
@font-size-h6:            @font-size-base;

//** Unit-less `line-height` for use in components like buttons.
@line-height-base:        unit(@baseLineHeight / @baseFontSize);
//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
@line-height-computed:    @baseLineHeight; // ~20px

//** By defaut, this inherits from the `<body>`.
@headings-font-family: 		@headingsFontFamily;
@headings-font-weight: 	@headingsFontWeight;
@headings-line-height: 		1.1;
@headings-color:          		@headingsColor;

//== Iconography
//
//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.

//** Load fonts from this directory.
@icon-font-path:          "../fonts/";
//** File name for all font files.
@icon-font-name:          "glyphicons-halflings-regular";
//** Element ID within SVG icon file.
@icon-font-svg-id:        "glyphicons_halflingsregular";

// ==== Component sizing ====

@fontSizeLarge: 									@baseFontSize * 1.25; // ~18px
@fontSizeSmall: 									@baseFontSize * 0.85; // ~12px
@fontSizeMini:    									@baseFontSize * 0.75; // ~11px

@paddingLarge: 									.2em .5em; // 44px
@paddingSmall: 									2px 10px;  // 26px
@paddingMini:   									0 6px;   // 22px

@baseBorderRadius:     				.2em;
@borderRadiusLarge:    			.2em;
@borderRadiusSmall:    			.4em;

@padding-base-vertical:   		0.4em;
@padding-base-horizontal:  12%;

@padding-large-vertical:    	0.2em;
@padding-large-horizontal: .7em;

@padding-small-vertical:    	.4em;
@padding-small-horizontal: .6em;

@padding-xs-vertical:       		1px;
@padding-xs-horizontal:     	5px;

@line-height-large:         1.3333333; // extra decimals for Win 8.1 Chrome
@line-height-small:         1.5;

// Adaptateur BS2
@border-radius-base:   				@baseBorderRadius;
@border-radius-large:  				@borderRadiusLarge;
@border-radius-small:  				@borderRadiusSmall;

//** Global color for active items (e.g., navs or dropdowns).
@component-active-color:    #fff;
//** Global background color for active items (e.g., navs or dropdowns).
@component-active-bg:       @brand-primary;

//** Width of the `border` for generating carets that indicator dropdowns.
@caret-width-base:          4px;
//** Carets increase slightly in size for larger components.
@caret-width-large:         5px;


// Tables
@tableBackground:               @grisLighter; // overall background-color
@tableBackgroundAccent:    #f9f9f9; // for striping
@tableBackgroundHover:     #f5f5f5; // for hover
@tableBorder:                       #ddd; // table and cell border

//** Padding for `<th>`s and `<td>`s.
@table-cell-padding:            8px;
//** Padding for cells in `.table-condensed`.
@table-condensed-cell-padding:  5px;

// Adaptateur BS2
@table-bg:                      		@tableBackground;
@table-bg-accent:     				  @tableBackgroundAccent;
@table-bg-hover:              	@tableBackgroundHover;
@table-bg-active:      				@table-bg-hover;
@table-border-color: 					@tableBorder;


// Buttons

@btnBackground:                							@couleur-defaut;
@btnBackgroundHighlight:  							darken(@couleur-defaut, 10%);
@btnBorder:                        							#bbb;

@btnPrimaryBackground:                	@linkColor;
@btnPrimaryBackgroundHighlight:  	spin(@btnPrimaryBackground, 20%);

@btnJauneBackground:             						lighten(@bleu, 5%);
@btnJauneBackgroundHighlight:  				darken(@bleu, 5%);

@btnVertBackground:              		lighten(@vert, 5%);
@btnVertBackgroundHighlight:   darken(@vert, 5%);

@btnOrangeBackground:            			lighten(@orange, 15%);
@btnOrangeBackgroundHighlight: 	@orange;

@btnRougeBackground:               		@rouge;
@btnRougeBackgroundHighlight:    darken(@rouge, 5%);

@btnBleuBackground:               		@bleu;
@btnBleuBackgroundHighlight:     darken(@bleu, 5%);

@btnVioletBackground:               		@violet;
@btnVioletBackgroundHighlight:     darken(@violet, 5%);

@btnInverseBackground:              #444;
@btnInverseBackgroundHighlight:   @grisDarker;

// Adaptateur BS2
@btn-font-weight:              				normal;
@btn-defaut-color:            					#fff;
@btn-defaut-bg:               					@btnBackground;
@btn-defaut-border:        					darken(@btn-defaut-bg, 5%);
@btn-primary-color:           			  #fff;
@btn-primary-bg:              			  @btnPrimaryBackground;
@btn-primary-border:        			  darken(@btn-primary-bg, 5%);
@btn-vert-color:           			  			#fff;
@btn-vert-bg:              			  			@btnVertBackground;
@btn-vert-border:        			  			darken(@btn-vert-bg, 5%);
@btn-jaune-color:                 			#fff;
@btn-jaune-bg:                    			@brand-jaune;
@btn-jaune-border:              			darken(@btn-jaune-bg, 5%);
@btn-orange-color:          			  	#fff;
@btn-orange-bg:              			  	@btnOrangeBackground;
@btn-orange-border:        			  	darken(@btn-orange-bg, 5%);
@btn-rouge-color:            			  	#fff;
@btn-rouge-bg:                			 		@btnRougeBackground;
@btn-rouge-border:         			  	darken(@btn-rouge-bg, 5%);
@btn-bleu-color:            			  		#fff;
@btn-bleu-bg:                			 			@btnBleuBackground;
@btn-bleu-border:         			  			darken(@btn-bleu-bg, 5%);
@btn-violet-color:            			  	#fff;
@btn-violet-bg:                			 		@btnVioletBackground;
@btn-violet-border:         			  		darken(@btn-violet-bg, 5%);
@btn-link-disabled-color:   			  @gris-light;
@btn-border-radius-base:  			  @border-radius-base;
@btn-border-radius-large: 			  @border-radius-large;
@btn-border-radius-small: 			  @border-radius-small;

// ==== Filigrane ====

@filigrane : 																url('');

// ==== Forms ====

// --- Couleurs ---
@formActionsBackground:        #f5f5f5;
@inputBackground:            				@white;
@inputBorder:                   					#ccc;
@inputDisabledBackground:     @grisLighter;
@placeholderText:         						@grisLight;
@input-border-focus:             #66afe9;
@legend-color:                   				@gris-dark;
@legend-border-color:            		#e5e5e5;
@input-group-addon-bg:           @gris-lighter;

// --- Hauteurs ---
@inputHeight:                   					@baseLineHeight + 10px; // base line-height + 8px vertical padding + 2px top/bottom border
@input-height-base:              (@line-height-computed + (@padding-base-vertical * 2) + 2);
@input-height-large:             (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);
@input-height-small:             (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);
@form-group-margin-bottom:   0;

@cursor-disabled:                not-allowed;

// Adaptateur BS2
@input-group-addon-border-color: @input-border;
@input-bg:                       					@inputBackground;
@input-bg-disabled:              			@inputDisabledBackground;
@input-color:                    					@gris;
@input-border:                   				@inputBorder;
@input-border-radius:            		@inputBorderRadius;
@input-color-placeholder:        @placeholderText;
@input-border-radius-large:      @border-radius-large;
@input-border-radius-small:      @border-radius-small;
@inputBorderRadius:             		@baseBorderRadius;


// ==== Dropdowns ====
@dropdownBackground:            	@white;
@dropdownBorder:                			rgba(0,0,0,.2);
@dropdownDividerTop:            		#e5e5e5;
@dropdownDividerBottom:         @white;

@dropdownLinkColor:             			@grisDark;
@dropdownLinkColorHover:        	@white;
@dropdownLinkColorActive:       	@white;

@dropdownLinkBackgroundActive:  	@linkColor;
@dropdownLinkBackgroundHover:   	@dropdownLinkBackgroundActive;

// Adaptateur BS2
@dropdown-bg:                    				@dropdownBackground;
@dropdown-border:                			@dropdownBorder;
@dropdown-fallback-border:       #ccc;
@dropdown-divider-bg:            		@dropdownDividerTop;
@dropdown-link-color:            			@dropdownLinkColor;
@dropdown-link-hover-color:      	@dropdownLinkColorHover;
@dropdown-link-hover-bg:         	@dropdownLinkBackgroundHover;
@dropdown-link-active-color:     	@dropdownLinkColorActive;
@dropdown-link-active-bg:        	@dropdownLinkBackgroundActive;
@dropdown-link-disabled-color:  @gris-light;
@dropdown-header-color:          	@gris-light;
@dropdown-caret-color:           		#000;



// ==== Z-index master list ====
@zindexDropdown:          				1000;
@zindexPopover:           					1010;
@zindexTooltip:           						1030;
@zindexFixedNavbar:       				1030;
@zindexModalBackdrop:   				1040;
@zindexModal:             						1050;

// Adaptateur border-style: 2px;
@zindex-navbar:            					1000;
@zindex-dropdown:          				@zindexDropdown;
@zindex-popover:           					@zindexPopover;
@zindex-tooltip:           						@zindexTooltip;
@zindex-navbar-fixed:      				@zindexFixedNavbar;
@zindex-modal-background:  	@zindexModalBackdrop;
@zindex-modal:             					@zindexModal;

// ============================= GRILLE =============================

// Grille par defaut
@gridColumns:             							12;
@gridColumnWidth:      							60px;
@gridGutterWidth:         						50px;
@gridRowWidth:            						(@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
@fluidGridColumnWidth: 						percentage(@gridColumnWidth/@gridRowWidth);
@fluidGridGutterWidth:    					percentage(@gridGutterWidth/@gridRowWidth);
// Adaptateur BS2
@grid-columns:              						@gridColumns;
@grid-gutter-width:         						@gridGutterWidth;
@grid-float-breakpoint:     					@navbarCollapseDesktopWidth;
@grid-float-breakpoint-max: 			(@grid-float-breakpoint - 1);

// Extra small screen / phone
@screen-xs:                  		480px;
@screen-xs-min:             @screen-xs;
@screen-phone:              @screen-xs-min;

// Small screen - 768px max ( tablette debout )
@screen-sm:                  	768px;
@screen-sm-min:            	@screen-sm;
@screen-tablet:              	@screen-sm-min;

// Medium screen - 992 max ( tablettes paysage )
@screen-md:                  	992px;
@screen-md-min:            	@screen-md;
@screen-desktop:           	@screen-md-min;

// Large - 1280px max ( petits écrans tradi )
@screen-lg:                  		1280px;
@screen-lg-min:              	@screen-lg;
@screen-lg-desktop:       	@screen-lg-min;

// Extra Large - 1366px max ( petits écrans 16:9 )
@screen-xl:                  		1366px;
@screen-xl-min:              	@screen-xl;
@screen-xl-desktop:       	@screen-xl-min;

// So media queries don't overlap when required, provide a maximum
@screen-xs-max:            	(@screen-sm-min - 1);
@screen-sm-max:           	(@screen-md-min - 1);
@screen-md-max:           	(@screen-lg-min - 1);
@screen-lg-max:           		(@screen-xl-min - 1);

// Small screen / tablet
@container-tablet:             				(720px + @grid-gutter-width);
@container-sm:                 					@container-tablet;

// Medium screen / desktop
@container-desktop:            			(950px + @grid-gutter-width);
@container-md:                 				@container-desktop;

// Large screen / wide desktop
@container-large-desktop:      		(1200px + @grid-gutter-width);
@container-lg:                 					@container-large-desktop;

// Trés largeLarge screen / wide desktop
@container-treslarge-desktop:   (1306px + @grid-gutter-width);
@container-xl:                 						@container-treslarge-desktop;

@navbarCollapseWidth:             			767px;
@navbarCollapseDesktopWidth:     @navbarCollapseWidth + 1;
@navbarHeight:                    						140px;
@navbarBackgroundHighlight:       #ffffff;
@navbarBackground:       								@bleu;
@navbarBorder:               								lighten(@navbarBackground, 12%);
@navbarText:                   								@white;
@navbarLinkColor:           								@white;
@navbarLinkColorHover:  								@grisDark;
@navbarLinkColorActive:  								@gris;
@navbarLinkBackgroundHover:       transparent;
@navbarLinkBackgroundActive:      darken(@navbarBackground, 5%);
@navbarBrandColor:                				@navbarLinkColor;

// ------ Menu navba: r negatif ------

@navbarInverseBackground:                					#111111;
@navbarInverseBackgroundHighlight:       		#222222;
@navbarInverseBorder:                    							#252525;
@navbarInverseText:                    									@grisLight;
@navbarInverseLinkColor:             								@grisLight;
@navbarInverseLinkColorHover:   									@white;
@navbarInverseLinkColorActive:   								@navbarInverseLinkColorHover;
@navbarInverseLinkBackgroundHover:       	transparent;
@navbarInverseLinkBackgroundActive:      		@navbarInverseBackground;
@navbarInverseSearchBackground:          		lighten(@navbarInverseBackground, 25%);
@navbarInverseSearchBackgroundFocus:    @white;
@navbarInverseSearchBorder:              				@navbarInverseBackground;
@navbarInverseSearchPlaceholderColor:    	#ccc;
@navbarInverseBrandColor:                					@navbarInverseLinkColor;

// Ajout Laurent
@navbarsupHeight:                    			42px;

// Adaptateur BS2
// Basics of a navbar
@navbar-height:                    @navbarHeight;
@navbar-margin-bottom:             @line-height-computed;
@navbar-border-radius:             @border-radius-base;
@navbar-padding-horizontal:        floor((@grid-gutter-width / 2));
@navbar-padding-vertical:          ((@navbar-height - @line-height-computed) / 2);
@navbar-collapse-max-height:       340px;
@navbar-defaut-color:             @navbarText;
@navbar-defaut-bg:                @navbarBackground;
@navbar-defaut-border:            @navbarBorder;
// Navbar links
@navbar-defaut-link-color:               					@navbarLinkColor;
@navbar-defaut-link-hover-color:          		@navbarLinkColorHover;
@navbar-defaut-link-hover-bg:             		@navbarLinkBackgroundHover;
@navbar-defaut-link-active-color:    					@navbarLinkColorActive;
@navbar-defaut-link-active-bg:        					@navbarLinkBackgroundActive;
@navbar-defaut-link-disabled-color:       	#ccc;
@navbar-defaut-link-disabled-bg:    					transparent;
// Navbar brand label
@navbar-defaut-brand-color:               @navbarBrandColor;
@navbar-defaut-brand-hover-color:         darken(@navbar-defaut-brand-color, 10%);
@navbar-defaut-brand-hover-bg:            transparent;
// Navbar toggle
@navbar-defaut-toggle-hover-bg:       				#ddd;
@navbar-defaut-toggle-icon-bar-bg:   				#888;
@navbar-defaut-toggle-border-color:  				#ddd;

//=== Inverted navbar
// Reset inverted navbar basics
@navbar-inverse-color:                    						@navbarInverseText;
@navbar-inverse-bg:                        						@navbarInverseBackground;
@navbar-inverse-border:                  						@navbarInverseBorder;
// Inverted navbar list-style: 						;
@navbar-inverse-link-color:              						@navbarInverseLinkColor;
@navbar-inverse-link-hover-color:    						@navbarInverseLinkColorHover;
@navbar-inverse-link-hover-bg:            				@navbarInverseLinkBackgroundHover;
@navbar-inverse-link-active-color:        			@navbarInverseLinkColorActive;
@navbar-inverse-link-active-bg:           				@navbarInverseLinkBackgroundActive;
@navbar-inverse-link-disabled-color:    				#444;
@navbar-inverse-link-disabled-bg:        			transparent;
// Inverted navbar brand label
@navbar-inverse-brand-color:            					@navbarInverseBrandColor;
@navbar-inverse-brand-hover-color:  					#fff;
@navbar-inverse-brand-hover-bg:      					transparent;
// Inverted navbar toggle
@navbar-inverse-toggle-hover-bg:     					#333;
@navbar-inverse-toggle-icon-bar-bg: 					#fff;
@navbar-inverse-toggle-border-color:					#333;


//== Tabs
@nav-tabs-border-color:                     #ddd;
@nav-tabs-link-hover-border-color:          @gris-lighter;
@nav-tabs-active-link-hover-bg:             @body-bg;
@nav-tabs-active-link-hover-color:          @gris;
@nav-tabs-active-link-hover-border-color:   #ddd;
@nav-tabs-justified-link-border-color:            #ddd;
@nav-tabs-justified-active-link-border-color:     @body-bg;

//== Pills
@nav-pills-border-radius:                   @border-radius-base;
@nav-pills-active-link-hover-bg:            @component-active-bg;
@nav-pills-active-link-hover-color:         @component-active-color;


// ==== Pagination =====
@paginationBackground:                #fff;
@paginationBorder:                    #ddd;
@paginationActiveBackground:          #f5f5f5;

// Adaptateur BS2
@pagination-color:                 						@link-color;
@pagination-bg:                     						@paginationBackground;
@pagination-border:               						@paginationBorder;
@pagination-hover-color:       						@link-hover-color;
@pagination-hover-bg:           						@gris-lighter;
@pagination-hover-border:     						#ddd;
@pagination-active-color:       						#fff;
@pagination-active-bg:           						@brand-primary;
@pagination-active-border:    						@brand-primary;
@pagination-disabled-color:   						@gris-light;
@pagination-disabled-bg:       						#fff;
@pagination-disabled-border:						#ddd;


// ==== Pager (BS2) ====

@pager-bg:                    									@pagination-bg;
@pager-border:             									  @pagination-border;
@pager-border-radius:   									15px;
@pager-hover-bg:          									@pagination-hover-bg;
@pager-active-bg:         									@pagination-active-bg;
@pager-active-color:     									  @pagination-active-color;
@pager-disabled-color:  									@pagination-disabled-color;

/* ==== Form states and alerts ==== */

@orangeText:             				#c09853;
@orangeBackground:       	#fcf8e3;
@orangeBorder:           			darken(spin(@orangeBackground, -10), 3%);
@rougeText: 													#b94a48;
@rougeBackground: 							#f2dede;
@rougeBorder: 											darken(spin(@rougeBackground, -10), 3%);
@vertText: 										#468847;
@vertBackground: 				#dff0d8;
@vertBorder: 								darken(spin(@vertBackground, -10), 5%);
@jauneText: 													#3a87ad;
@jauneBackground: 								#d9edf7;
@jauneBorder: 												darken(spin(@jauneBackground, -10), 7%);

/* Adaptateur BS2 */

@state-vert-text: 					@vertText;
@state-vert-bg: 					    @vertBackground;
@state-vert-border: 			@vertBorder;
@state-jaune-text: 					     		@jauneText;
@state-jaune-bg: 					       		@jauneBackground;
@state-jaune-border: 					   	@jauneBorder;
@state-orange-text: 					@orangeText;
@state-orange-bg: 					  @orangeBackground;
@state-orange-border: 			@orangeBorder;
@state-rouge-text: 					  @rougeText;
@state-rouge-bg: 					    @rougeBackground;
@state-rouge-border: 				@rougeBorder;

/* ==== Tooltips and popovers ==== */

@tooltipColor:            					#fff;
@tooltipBackground:      			#000;
@tooltipArrowWidth:      			5px;
@tooltipArrowColor:       			@tooltipBackground;
@popoverBackground:   			#fff;
@popoverArrowWidth:   			10px;
@popoverArrowColor:    			#fff;
@popoverTitleBackground: 	darken(@popoverBackground, 3%);

/* Adaptateur BS2 */
@tooltip-max-width:           	200px;
@tooltip-color:               			@tooltipColor;
@tooltip-bg:                  				@tooltipBackground;
@tooltip-opacity:             			.9;
@tooltip-arrow-width:         	@tooltipArrowWidth;
@tooltip-arrow-color:         	@tooltipArrowColor;


/* ==== Special enhancement for popovers ==== */
@popoverArrowOuterWidth:  @popoverArrowWidth + 1;
@popoverArrowOuterColor:  rgba(0,0,0,.25);

/* Adaptateur BS2 */
@popover-bg:                          							@popoverBackground;
@popover-max-width:                   					276px;
@popover-border-color:               					fadeout(@popoverArrowOuterColor, 5%);
@popover-fallback-border-color:     				#ccc;
@popover-title-bg:                    							@popoverTitleBackground;
@popover-arrow-width:                 				@popoverArrowWidth;
@popover-arrow-color:                 					@popover-bg;
@popover-arrow-outer-width:         				@popoverArrowOuterWidth;
@popover-arrow-outer-color:          				@popoverArrowOuterColor;
@popover-arrow-outer-fallback-color:  	darken(@popover-fallback-border-color, 20%);

/* ==== Labels (BS2) ==== */

@label-defaut-bg:            		@gris-light;
@label-primary-bg:            	@brand-primary;
@label-vert-bg:           	 	@brand-vert;
@label-jaune-bg:               			@brand-jaune;
@label-orange-bg:            	@brand-orange;
@label-rouge-bg:             	@brand-rouge;
@label-color:                 				#fff;
@label-link-hover-color:      	#fff;

/* ==== Modals (BS2) ==== */

// Padding applied to the modal body
@modal-inner-padding:         15px;
// Padding applied to the modal title
@modal-title-padding:         15px;
// Modal title line-height
@modal-title-line-height:     @line-height-base;
// Background color of modal content area
@modal-content-bg:                             #fff;
// Modal content border color
@modal-content-border-color:                   rgba(0,0,0,.2);
// Modal content border color **for IE8**
@modal-content-fallback-border-color:          #999;
// Modal backdrop background color
@modal-backdrop-bg:           #000;
// Modal backdrop opacity
@modal-backdrop-opacity:      .5;
// Modal header border color
@modal-header-border-color:   #e5e5e5;
// Modal footer border color
@modal-footer-border-color:   @modal-header-border-color;
@modal-lg:                    			900px;
@modal-md:                    		600px;
@modal-sm:                    			300px;


/* ==== Alerts (BS2) ==== */

@alert-padding:              			15px;
@alert-border-radius:         	@border-radius-base;
@alert-link-font-weight:      	bold;

@alert-vert-bg:           		@state-vert-bg;
@alert-vert-text:         		@state-vert-text;
@alert-vert-border:     		@state-vert-border;

@alert-jaune-bg:               			@state-jaune-bg;
@alert-jaune-text:             			@state-jaune-text;
@alert-jaune-border:         			@state-jaune-border;

@alert-orange-bg:            	@state-orange-bg;
@alert-orange-text:          	@state-orange-text;
@alert-orange-border:      	@state-orange-border;

@alert-rouge-bg:             		@state-rouge-bg;
@alert-rouge-text:           	@state-rouge-text;
@alert-rouge-border:         @state-rouge-border;


/* ==== Progress bars (BS2) ==== */

// Background color of the whole progress component
@progress-bg:                 #f5f5f5;
// Progress bar text color
@progress-bar-color:          #fff;
// Variable for setting rounded corners on progress bar.
@progress-border-radius:      @border-radius-base;
// Defaut progress bar color
@progress-bar-bg:             @brand-primary;
// Vert progress bar color
@progress-bar-vert-bg:     @brand-vert;
// Orange progress bar color
@progress-bar-orange-bg:     @brand-orange;
// Rouge progress bar color
@progress-bar-rouge-bg:      @brand-rouge;
// Info progress bar color
@progress-bar-jaune-bg:        @brand-jaune;

/* ==== Thumbail (BS2) ==== */

@thumbnail-padding:           			4px;
@thumbnail-bg:                					@body-bg;
@thumbnail-border:            				#ddd;
@thumbnail-border-radius:     		@border-radius-base;
@thumbnail-caption-color:     		@text-color;
@thumbnail-caption-padding:   	9px;


/* ==== Wells ===== */
@wellBackground:                  #f5f5f5;

// Adaptateur BS2
@well-bg:                     							@wellBackground;
@well-border:                 						darken(@well-bg, 7%);


/* ==== Badges (BS2) ==== */

@badge-color:                 						#fff;
@badge-link-hover-color:      			#fff;
@badge-bg:                    						@gris-light;
@badge-active-color:          				@link-color;
@badge-active-bg:             				#fff;
@badge-font-weight:           			bold;
@badge-line-height:           				1;
@badge-border-radius:         			10px;

/* ==== Carousel (BS2) ==== */

@carousel-text-shadow:                			 0 1px 2px rgba(0,0,0,.6);
@carousel-control-color:                			#fff;
@carousel-control-width:               			 15%;
@carousel-control-opacity:            			.5;
@carousel-control-font-size:          			 20px;
@carousel-indicator-active-bg:      			#fff;
@carousel-indicator-border-color:  			#fff;
@carousel-caption-color:               			#fff;


/* ==== Close (BS2) ==== */

@close-font-weight:           bold;
@close-color:                 #000;
@close-text-shadow:           0 1px 0 #fff;


/* ==== Code  (BS2) ==== */

@code-color:                  #c7254e;
@code-bg:                     #f9f2f4;

@kbd-color:                   #fff;
@kbd-bg:                      #333;

@pre-bg:                      #f5f5f5;
@pre-color:                   @gris-dark;
@pre-border-color:            #ccc;
@pre-scrollable-max-height:   340px;

/* ==== Type  (BS2) ==== */

/* Horizontal offset for forms and lists. */
@component-offset-horizontal: 180px;
/* Text muted color */
@text-muted:                  @gris-light;
/* Abbreviations and acronyms border color */
@abbr-border-color:           @gris-light;
/* Headings small color */
@headings-small-color:        @gris-light;
/* Blockquote small color */
@blockquote-small-color:      @gris-light;
/* Blockquote font size */
@blockquote-font-size:        inherit;
/* Blockquote border color */
@blockquote-border-color:     @gris-lighter;
/* Page header border color */
@page-header-border-color:    @gris-lighter;
/* Width of horizontal description list titles */
@dl-horizontal-offset:        @component-offset-horizontal;
/* Point at which .dl-horizontal becomes horizontal */
@dl-horizontal-breakpoint:    @grid-float-breakpoint;
/* Horizontal line color. */
@hrBorder:                @grisLighter;
@hr-border:                @hrBorder;


/* ==== Sprite icons path ==== */
@iconSpritePath:          "../img/glyphicons-halflings.png";
@iconWhiteSpritePath:     "../img/glyphicons-halflings-white.png";

/* ==== Horizontal forms & lists ==== */
@horizontalComponentOffset:       180px;

/* ==== Hero unit ==== */
@heroUnitBackground:              @grisLighter;
@heroUnitHeadingColor:            inherit;
@heroUnitLeadColor:               inherit;

/* Typo SPIP */
@emFontSize : 1em * (@font-size-base / 16);
@emLineHeight : 1em * (@line-height-base);
@emVertMargin : @emLineHeight;

@indentStep : (@container-md / @grid-columns) / 2;
@indentStep1200 : (@container-lg / @grid-columns) / 2;
@indentStep768 : (@container-sm / @grid-columns) / 2;

@font-size-large-em : 1em * @font-size-large / @font-size-base;
@font-size-small-em : 1em * @font-size-small / @font-size-base;
@font-size-h1-em: 1em * @font-size-h1 / @font-size-base;
@font-size-h2-em: 1em * @font-size-h2 / @font-size-base;
@font-size-h3-em: 1em * @font-size-h3 / @font-size-base;
@font-size-h4-em: 1em * @font-size-h4 / @font-size-base;
@font-size-h5-em: 1em * @font-size-h5 / @font-size-base;
@font-size-h6-em: 1em * @font-size-h6 / @font-size-base;
//
// Mixins
// --------------------------------------------------

// Vendor Prefixes
//
// All vendor mixins are deprecated as of v3.2.0 due to the introduction of
// Autoprefixer in our Gruntfile. They have been removed in v4.

// - Animations
// - Backface visibility
// - Box shadow
// - Box sizing
// - Content columns
// - Hyphens
// - Placeholder text
// - Transformations
// - Transitions
// - User Select


// Animations
.animation(@animation) {
  -webkit-animation: @animation;
       -o-animation: @animation;
          animation: @animation;
}
.animation-name(@name) {
  -webkit-animation-name: @name;
          animation-name: @name;
}
.animation-duration(@duration) {
  -webkit-animation-duration: @duration;
          animation-duration: @duration;
}
.animation-timing-function(@timing-function) {
  -webkit-animation-timing-function: @timing-function;
          animation-timing-function: @timing-function;
}
.animation-delay(@delay) {
  -webkit-animation-delay: @delay;
          animation-delay: @delay;
}
.animation-iteration-count(@iteration-count) {
  -webkit-animation-iteration-count: @iteration-count;
          animation-iteration-count: @iteration-count;
}
.animation-direction(@direction) {
  -webkit-animation-direction: @direction;
          animation-direction: @direction;
}
.animation-fill-mode(@fill-mode) {
  -webkit-animation-fill-mode: @fill-mode;
          animation-fill-mode: @fill-mode;
}

// Backface visibility
// Prevent browsers from flickering when using CSS 3D transforms.
// Defaut value is `visible`, but can be changed to `hidden`

.backface-visibility(@visibility) {
  -webkit-backface-visibility: @visibility;
     -moz-backface-visibility: @visibility;
          backface-visibility: @visibility;
}

// Drop shadows
//
// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's
// supported browsers that have box shadow capabilities now support it.

.box-shadow(@shadow) {
  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1
          box-shadow: @shadow;
}

// Box sizing
.box-sizing(@boxmodel) {
  -webkit-box-sizing: @boxmodel;
     -moz-box-sizing: @boxmodel;
          box-sizing: @boxmodel;
}

// CSS3 Content Columns
.content-columns(@column-count; @column-gap: @grid-gutter-width) {
  -webkit-column-count: @column-count;
     -moz-column-count: @column-count;
          column-count: @column-count;
  -webkit-column-gap: @column-gap;
     -moz-column-gap: @column-gap;
          column-gap: @column-gap;
}

// Optional hyphenation
.hyphens(@mode: auto) {
  word-wrap: break-word;
  -webkit-hyphens: @mode;
     -moz-hyphens: @mode;
      -ms-hyphens: @mode; // IE10+
       -o-hyphens: @mode;
          hyphens: @mode;
}

// Placeholder text
.placeholder(@color: @input-color-placeholder) {
  // Firefox
  &::-moz-placeholder {
    color: @color;
    opacity: 1; // Override Firefox's unusual defaut opacity; see https://github.com/twbs/bootstrap/pull/11526
  }
  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+
  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome
}

// Transformations
.scale(@ratio) {
  -webkit-transform: scale(@ratio);
      -ms-transform: scale(@ratio); // IE9 only
       -o-transform: scale(@ratio);
          transform: scale(@ratio);
}
.scale(@ratioX; @ratioY) {
  -webkit-transform: scale(@ratioX, @ratioY);
      -ms-transform: scale(@ratioX, @ratioY); // IE9 only
       -o-transform: scale(@ratioX, @ratioY);
          transform: scale(@ratioX, @ratioY);
}
.scaleX(@ratio) {
  -webkit-transform: scaleX(@ratio);
      -ms-transform: scaleX(@ratio); // IE9 only
       -o-transform: scaleX(@ratio);
          transform: scaleX(@ratio);
}
.scaleY(@ratio) {
  -webkit-transform: scaleY(@ratio);
      -ms-transform: scaleY(@ratio); // IE9 only
       -o-transform: scaleY(@ratio);
          transform: scaleY(@ratio);
}
.skew(@x; @y) {
  -webkit-transform: skewX(@x) skewY(@y);
      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+
       -o-transform: skewX(@x) skewY(@y);
          transform: skewX(@x) skewY(@y);
}
.translate(@x; @y) {
  -webkit-transform: translate(@x, @y);
      -ms-transform: translate(@x, @y); // IE9 only
       -o-transform: translate(@x, @y);
          transform: translate(@x, @y);
}
.translate3d(@x; @y; @z) {
  -webkit-transform: translate3d(@x, @y, @z);
          transform: translate3d(@x, @y, @z);
}
.rotate(@degrees) {
  -webkit-transform: rotate(@degrees);
      -ms-transform: rotate(@degrees); // IE9 only
       -o-transform: rotate(@degrees);
          transform: rotate(@degrees);
}
.rotateX(@degrees) {
  -webkit-transform: rotateX(@degrees);
      -ms-transform: rotateX(@degrees); // IE9 only
       -o-transform: rotateX(@degrees);
          transform: rotateX(@degrees);
}
.rotateY(@degrees) {
  -webkit-transform: rotateY(@degrees);
      -ms-transform: rotateY(@degrees); // IE9 only
       -o-transform: rotateY(@degrees);
          transform: rotateY(@degrees);
}
.perspective(@perspective) {
  -webkit-perspective: @perspective;
     -moz-perspective: @perspective;
          perspective: @perspective;
}
.perspective-origin(@perspective) {
  -webkit-perspective-origin: @perspective;
     -moz-perspective-origin: @perspective;
          perspective-origin: @perspective;
}
.transform-origin(@origin) {
  -webkit-transform-origin: @origin;
     -moz-transform-origin: @origin;
      -ms-transform-origin: @origin; // IE9 only
          transform-origin: @origin;
}


// Transitions

.transition(@transition) {
  -webkit-transition: @transition;
       -o-transition: @transition;
          transition: @transition;
}
.transition-property(@transition-property) {
  -webkit-transition-property: @transition-property;
          transition-property: @transition-property;
}
.transition-delay(@transition-delay) {
  -webkit-transition-delay: @transition-delay;
          transition-delay: @transition-delay;
}
.transition-duration(@transition-duration) {
  -webkit-transition-duration: @transition-duration;
          transition-duration: @transition-duration;
}
.transition-timing-function(@timing-function) {
  -webkit-transition-timing-function: @timing-function;
          transition-timing-function: @timing-function;
}
.transition-transform(@transition) {
  -webkit-transition: -webkit-transform @transition;
     -moz-transition: -moz-transform @transition;
       -o-transition: -o-transform @transition;
          transition: transform @transition;
}


// User select
// For selecting text on the page

.user-select(@select) {
  -webkit-user-select: @select;
     -moz-user-select: @select;
      -ms-user-select: @select; // IE10+
          user-select: @select;
}
// Form validation states
//
// Used in forms.less to generate the form validation CSS for warnings, errors,
// and successes.

.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {
  // Color the label and help text
  .help-block,
  .control-label,
  .radio,
  .checkbox,
  .radio-inline,
  .checkbox-inline,
  &.radio label,
  &.checkbox label,
  &.radio-inline label,
  &.checkbox-inline label  {
    color: @text-color;
  }
  // Set the border and box shadow on specific inputs to match
  .form-control {
    border-color: @border-color;
    .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work
    &:focus {
      border-color: darken(@border-color, 10%);
      @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);
      .box-shadow(@shadow);
    }
  }
  // Set validation states also for addons
  .input-group-addon {
    color: @text-color;
    border-color: @border-color;
    background-color: @background-color;
  }
  // Optional feedback icon
  .form-control-feedback {
    color: @text-color;
  }
}


// Form control focus state
//
// Generate a customized focus state and for any input with the specified color,
// which defauts to the `@input-border-focus` variable.
//
// We highly encourage you to not customize the defaut value, but instead use
// this to tweak colors on an as-needed basis. This aesthetic change is based on
// WebKit's defaut styles, but applicable to a wider range of browsers. Its
// usability and accessibility should be taken into account with any change.
//
// Example usage: change the defaut bleu border and shadow to white for better
// contrast against a dark gris background.
.form-control-focus(@color: @input-border-focus) {
  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);
  &:focus {
    border-color: @color;
    outline: 0;
    .box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}");
  }
}

// Form control sizing
//
// Relative text size, padding, and border-radii changes for form controls. For
// horizontal sizing, wrap controls in the predefined grid classes. `<select>`
// element gets special love because it's special, and that's a fact!
.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
  height: @input-height;
  padding: @padding-vertical @padding-horizontal;
  font-size: @font-size;
  line-height: @line-height;
  border-radius: @border-radius;

  select& {
    height: @input-height;
    line-height: @input-height;
  }

  textarea&,
  select[multiple]& {
    height: auto;
  }
}

// WebKit-style focus

.tab-focus() {
  // Defaut
  outline: thin dotted;
  // WebKit
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
// MIXINS Button variants
//
// Easily pump out defaut styles, as well as :hover, :focus, :active,
// and disabled options for all buttons

.button-variant(@color; @background; @border) {
  color: @color;
  background-color: @background;
  border-color: @border;

  &:focus,
  &.focus {
    color: @color;
    background-color: darken(@background, 10%);
        border-color: darken(@border, 25%);
  }
  &:hover {
    color: @color;
    background-color: darken(@background, 10%);
        border-color: darken(@border, 12%);
  }
  &:active,
  &.active,
  .open > .dropdown-toggle& {
    color: @color;
    background-color: darken(@background, 10%);
        border-color: darken(@border, 12%);

    &:hover,
    &:focus,
    &.focus {
      color: @color;
      background-color: darken(@background, 17%);
          border-color: darken(@border, 25%);
    }
  }
  &:active,
  &.active,
  .open > .dropdown-toggle& {
    background-image: none;
  }
  &.disabled,
  &[disabled],
  fieldset[disabled] & {
    &:hover,
    &:focus,
    &.focus {
      background-color: @background;
          border-color: @border;
    }
  }

  .badge {
    color: @background;
    background-color: @color;
  }
}

// Button sizes
.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
  padding: @padding-vertical @padding-horizontal;
  font-size: @font-size;
  line-height: @line-height;
  border-radius: @border-radius;
}

// Base styles
// --------------------------------------------------

.btn {
  display: inline-block;
  margin-bottom: 0; // For input.btn
  font-weight: @btn-font-weight;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none; // Reset unusual Firefox-on-Android defaut style; see https://github.com/necolas/normalize.css/bootstrapleger/issues/214
  border: 1px solid transparent;
  white-space: nowrap;
  .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);
  .user-select(none);

  &,
  &:active,
  &.active {
    &:focus,
    &.focus {
      .tab-focus();
    }
  }

  &:hover,
  &:focus,
  &.focus {
    color: @btn-defaut-color;
    text-decoration: none;
  }

  &:active,
  &.active {
    outline: 0;
    background-image: none;
    .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
  }

  &.disabled,
  &[disabled],
  fieldset[disabled] & {
    cursor: @cursor-disabled;
    .opacity(.65);
    .box-shadow(none);
  }

}

@media screen and (max-width: @screen-xs-max) {
	// RETAR
	.btn{white-space: normal; }
}

// Alternate buttons
// --------------------------------------------------

.btn-defaut {
  .button-variant(@btn-defaut-color; @btn-defaut-bg; @btn-defaut-border);
}
.btn-secondaire {
  .button-variant(@btn-defaut-color; @btn-defaut-bg; @btn-defaut-border);
}
// Vert appears as vert
.btn-vert {
  .button-variant(@btn-vert-color; @btn-vert-bg; @btn-vert-border);
}
// Info appears as bleu-vert
.btn-jaune {
  .button-variant(@btn-jaune-color; @btn-jaune-bg; @btn-jaune-border);
}
// Orange appears as orange
.btn-orange {
  .button-variant(@btn-orange-color; @btn-orange-bg; @btn-orange-border);
}
// Rouge and error appear as red
.btn-rouge {
  .button-variant(@btn-rouge-color; @btn-rouge-bg; @btn-rouge-border);
}

.btn-bleu {
  .button-variant(@btn-bleu-color; @btn-bleu-bg; @btn-bleu-border);
}

.btn-violet {
  .button-variant(@btn-violet-color; @btn-violet-bg; @btn-violet-border);
}

.btn-blanc{
  .button-variant(@couleur-defaut; #fff; darken(#fff, 5%));
  color: black;
}

// Button Sizes
// --------------------------------------------------

.btn-petit {
  // line-height: ensure even-numbered height of button next to large input
  .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);
}
.btn-moyen {
  // line-height: ensure proper height of button next to small input
  .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);
}
.btn-grand {
  .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @btn-border-radius-large);
}

// /* boutons admin forum */
// .boutons.modererforum .submit {.btn-petit}
// .boutons.modererforum .poubelle .submit {.btn-rouge;}
// .boutons.modererforum .spam .submit {.btn-orange;}

/* boutons action de Spip */

.bouton_action_post.btn{
	.submit{
		background-color: transparent;
		border: none;
	}
}


/* boutons d'admin */
body .spip-admin-bloc, body .spip-admin-float {z-index: @zindex-navbar-fixed + 1;}
// 

// Layout
// Clearfix
//
// For modern browsers
// 1. The space content is one way to avoid an Opera bug when the
//    contenteditable attribute is included anywhere else in the document.
//    Otherwise it causes space to appear at the top and bottom of elements
//    that are clearfixed.
// 2. The use of `table` rather than `block` is only necessary if using
//    `:before` to contain the top-margins of child elements.
//
// Source: http://nicolasgallagher.com/micro-clearfix-hack/

.clearfix() {
  &:before,
  &:after {
    content: " "; // 1
    display: table; // 2
  }
  &:after {
    clear: both;
  }
}
// Framework grid generation
//
// Used only by Bootstrap to generate the correct number of grid classes given
// any value of `@grid-columns`.

.make-grid-columns() {
  // Common styles for all sizes of grid columns, widths 1-12
  .col(@index) { // initial
    @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}";
    .col((@index + 1), @item);
  }
  .col(@index, @list) when (@index =< @grid-columns) { // general; "=<" isn't a typo
    @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}";
    .col((@index + 1), ~"@{list}, @{item}");
  }
  .col(@index, @list) when (@index > @grid-columns) { // terminal
    @{list} {
      position: relative;
      // Prevent columns from collapsing when empty
      min-height: 1px;
      // Inner gutter via padding
      padding-left:  ceil((@grid-gutter-width / 2));
      padding-right: floor((@grid-gutter-width / 2));
    }
  }
  .col(1); // kickstart it
}

.float-grid-columns(@class) {
  .col(@index) { // initial
    @item: ~".col-@{class}-@{index}";
    .col((@index + 1), @item);
  }
  .col(@index, @list) when (@index =< @grid-columns) { // general
    @item: ~".col-@{class}-@{index}";
    .col((@index + 1), ~"@{list}, @{item}");
  }
  .col(@index, @list) when (@index > @grid-columns) { // terminal
    @{list} {
      float: left;
    }
  }
  .col(1); // kickstart it
}

.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {
  .col-@{class}-@{index} {
    width: percentage((@index / @grid-columns));
  }
}
.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {
  .col-@{class}-push-@{index} {
    left: percentage((@index / @grid-columns));
  }
}
.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {
  .col-@{class}-push-0 {
    left: auto;
  }
}
.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {
  .col-@{class}-pull-@{index} {
    right: percentage((@index / @grid-columns));
  }
}
.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {
  .col-@{class}-pull-0 {
    right: auto;
  }
}
.calc-grid-column(@index, @class, @type) when (@type = offset) {
  .col-@{class}-offset-@{index} {
    margin-left: percentage((@index / @grid-columns));
  }
}

// Basic looping in LESS
.loop-grid-columns(@index, @class, @type) when (@index >= 0) {
  .calc-grid-column(@index, @class, @type);
  // next iteration
  .loop-grid-columns((@index - 1), @class, @type);
}

// Create grid for specific class
.make-grid(@class) {
  .float-grid-columns(@class);
  .loop-grid-columns(@grid-columns, @class, width);
  .loop-grid-columns(@grid-columns, @class, pull);
  .loop-grid-columns(@grid-columns, @class, push);
  .loop-grid-columns(@grid-columns, @class, offset);
}
// Grid system
//
// Generate semantic grid columns with these mixins.

// Centered container element
.container-fixed(@gutter: @grid-gutter-width) {
  margin-right: auto;
  margin-left: auto;
  padding-left:  floor((@gutter / 2));
  padding-right: ceil((@gutter / 2));
  &:extend(.clearfix all);
}

// Creates a wrapper for a series of columns
.make-row(@gutter: @grid-gutter-width) {
  margin-left:  ceil((@gutter / -2));
  margin-right: floor((@gutter / -2));
  &:extend(.clearfix all);
}

// Generate the extra small columns
.make-xs-column(@columns; @gutter: @grid-gutter-width) {
  position: relative;
  float: left;
  width: percentage((@columns / @grid-columns));
  min-height: 1px;
  padding-left:  (@gutter / 2);
  padding-right: (@gutter / 2);
}

// Ajout Laurent : crée une marge supplementaire
// égale au pourcentage que prend la goutière sur un portable;
.margesup{
  width: calc( 100% - percentage( @grid-gutter-width / @screen-xs-min )  );
  margin-left: auto;
  margin-right: auto;
}
.make-xs-column-offset(@columns) {
  margin-left: percentage((@columns / @grid-columns));
}
.make-xs-column-push(@columns) {
  left: percentage((@columns / @grid-columns));
}
.make-xs-column-pull(@columns) {
  right: percentage((@columns / @grid-columns));
}

// Generate the small columns
.make-sm-column(@columns; @gutter: @grid-gutter-width) {
  position: relative;
  min-height: 1px;
  padding-left:  (@gutter / 2);
  padding-right: (@gutter / 2);

  @media (min-width: @screen-sm-min) {
    float: left;
    width: percentage((@columns / @grid-columns));
  }
}
.make-sm-column-offset(@columns) {
  @media (min-width: @screen-sm-min) {
    margin-left: percentage((@columns / @grid-columns));
  }
}
.make-sm-column-push(@columns) {
  @media (min-width: @screen-sm-min) {
    left: percentage((@columns / @grid-columns));
  }
}
.make-sm-column-pull(@columns) {
  @media (min-width: @screen-sm-min) {
    right: percentage((@columns / @grid-columns));
  }
}

@media (min-width: @screen-sm-min) {
  .margesup{
    width: calc( 100% - percentage( @grid-gutter-width / @screen-sm-min ) * 4  );
    margin-left: auto;
    margin-right: auto;
  }
}

// Generate the medium columns
.make-md-column(@columns; @gutter: @grid-gutter-width) {
  position: relative;
  min-height: 1px;
  padding-left:  (@gutter / 2);
  padding-right: (@gutter / 2);

  @media (min-width: @screen-md-min) {
    float: left;
    width: percentage((@columns / @grid-columns));
  }
}
.make-md-column-offset(@columns) {
  @media (min-width: @screen-md-min) {
    margin-left: percentage((@columns / @grid-columns));
  }
}
.make-md-column-push(@columns) {
  @media (min-width: @screen-md-min) {
    left: percentage((@columns / @grid-columns));
  }
}
.make-md-column-pull(@columns) {
  @media (min-width: @screen-md-min) {
    right: percentage((@columns / @grid-columns));
  }
}

@media (min-width: @screen-md-min) {
  .margesup{
    width: calc( 100% - percentage( @grid-gutter-width / @screen-md-min ) * 4  );
    margin-left: auto;
    margin-right: auto;
  }
}

// Generate the large columns
.make-lg-column(@columns; @gutter: @grid-gutter-width) {
  position: relative;
  min-height: 1px;
  padding-left:  (@gutter / 2);
  padding-right: (@gutter / 2);

  @media (min-width: @screen-lg-min) {
    float: left;
    width: percentage((@columns / @grid-columns));
  }
}
.make-lg-column-offset(@columns) {
  @media (min-width: @screen-lg-min) {
    margin-left: percentage((@columns / @grid-columns));
  }
}
.make-lg-column-push(@columns) {
  @media (min-width: @screen-lg-min) {
    left: percentage((@columns / @grid-columns));
  }
}
.make-lg-column-pull(@columns) {
  @media (min-width: @screen-lg-min) {
    right: percentage((@columns / @grid-columns));
  }
}

@media (min-width: @screen-lg-min) {
  .margesup{
    width: calc( 100% - percentage( @grid-gutter-width / @screen-lg-min ) * 4  );
    margin-left: auto;
    margin-right: auto;
  }
}

// ============== IMAGES ===============

// Responsive image
.img-responsive(@display: block) {
  display: @display;
  max-width: 100%; // Part 1: Set a maximum relative to the parent
  height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
}

// Retina image
.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {
  background-image: url('https://ericbocquet.fr/@{file-1x}');
  @media
  only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (   min--moz-device-pixel-ratio: 2),
  only screen and (     -o-min-device-pixel-ratio: 2/1),
  only screen and (        min-device-pixel-ratio: 2),
  only screen and (                min-resolution: 192dpi),
  only screen and (                min-resolution: 2dppx) {
    background-image: url('https://ericbocquet.fr/@{file-2x}');
    background-size: @width-1x @height-1x;
  }
}

// ============== OPACITE ===============

.opacity(@opacity) {
  opacity: @opacity;
  // IE8 filter
  @opacity-ie: (@opacity * 100);
  filter: ~"alpha(opacity=@{opacity-ie})";
}

// ============== BORDS ARRONDIS ===============

// Border Radius
.border-radius(@radius) {
  -webkit-border-radius: @radius;
     -moz-border-radius: @radius;
          border-radius: @radius;
}

// Center-align a block level element

.centrer {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.centrerflex {
	align-self: center;
	align-items: center;
	justify-content: center;
	display: flex;
}
.centrervertical {
	align-self: center;
	align-items: center;
	display: flex;
}


// Single Corner Border Radius
.border-top-left-radius(@radius) {
  -webkit-border-top-left-radius: @radius;
      -moz-border-radius-topleft: @radius;
          border-top-left-radius: @radius;
}
.border-top-right-radius(@radius) {
  -webkit-border-top-right-radius: @radius;
      -moz-border-radius-topright: @radius;
          border-top-right-radius: @radius;
}
.border-bottom-right-radius(@radius) {
  -webkit-border-bottom-right-radius: @radius;
      -moz-border-radius-bottomright: @radius;
          border-bottom-right-radius: @radius;
}
.border-bottom-left-radius(@radius) {
  -webkit-border-bottom-left-radius: @radius;
      -moz-border-radius-bottomleft: @radius;
          border-bottom-left-radius: @radius;
}

// Single Side Border Radius
.border-top-radius(@radius) {
  .border-top-right-radius(@radius);
  .border-top-left-radius(@radius);
}
.border-right-radius(@radius) {
  .border-top-right-radius(@radius);
  .border-bottom-right-radius(@radius);
}
.border-bottom-radius(@radius) {
  .border-bottom-right-radius(@radius);
  .border-bottom-left-radius(@radius);
}
.border-left-radius(@radius) {
  .border-top-left-radius(@radius);
  .border-bottom-left-radius(@radius);
}

// Drop shadows
.box-shadow(@shadow : 4px 4px 4px rgba(0, 0, 0, 0.2) ) {
  -webkit-box-shadow: @shadow;
     -moz-box-shadow: @shadow;
          box-shadow: @shadow;
}

// Transitions
.transition(@transition) {
  -webkit-transition: @transition;
     -moz-transition: @transition;
       -o-transition: @transition;
          transition: @transition;
}
.transition-delay(@transition-delay) {
  -webkit-transition-delay: @transition-delay;
     -moz-transition-delay: @transition-delay;
       -o-transition-delay: @transition-delay;
          transition-delay: @transition-delay;
}
.transition-duration(@transition-duration) {
  -webkit-transition-duration: @transition-duration;
     -moz-transition-duration: @transition-duration;
       -o-transition-duration: @transition-duration;
          transition-duration: @transition-duration;
}

.animation(@temps:1s, @quoi: all, @apres:0.01s ){
	.transition(@quoi @temps cubic-bezier(.25,.46,.45,.94) @apres);
}

// Transformations
.rotation(@degrees) {
  -webkit-transform: rotate(@degrees);
     -moz-transform: rotate(@degrees);
      -ms-transform: rotate(@degrees);
       -o-transform: rotate(@degrees);
          transform: rotate(@degrees);
}
.scale(@ratio) {
  -webkit-transform: scale(@ratio);
     -moz-transform: scale(@ratio);
      -ms-transform: scale(@ratio);
       -o-transform: scale(@ratio);
          transform: scale(@ratio);
}
.translate(@x, @y) {
  -webkit-transform: translate(@x, @y);
     -moz-transform: translate(@x, @y);
      -ms-transform: translate(@x, @y);
       -o-transform: translate(@x, @y);
          transform: translate(@x, @y);
}
.skew(@x, @y) {
  -webkit-transform: skew(@x, @y);
     -moz-transform: skew(@x, @y);
      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885
       -o-transform: skew(@x, @y);
          transform: skew(@x, @y);
  -webkit-backface-visibility: hidden; // See https://github.com/twbs/bootstrap/issues/5319
}
.translate3d(@x, @y, @z) {
  -webkit-transform: translate3d(@x, @y, @z);
     -moz-transform: translate3d(@x, @y, @z);
       -o-transform: translate3d(@x, @y, @z);
          transform: translate3d(@x, @y, @z);
}
.transform-origin(@pos) {
  -webkit-transform-origin: @pos;
  	-ms-transform-origin: @pos;
    	transform-origin: @pos;
}

// Backface visibility
// Prevent browsers from flickering when using CSS 3D transforms.
// Defaut value is `visible`, but can be changed to `hidden
// See git pull https://github.com/dannykeane/bootstrap.git backface-visibility for examples
.backface-visibility(@visibility){
  -webkit-backface-visibility: @visibility;
     -moz-backface-visibility: @visibility;
          backface-visibility: @visibility;
}

// Background clipping
// Heads up: FF 3.6 and under need "padding" instead of "padding-box"
.background-clip(@clip) {
  -webkit-background-clip: @clip;
     -moz-background-clip: @clip;
          background-clip: @clip;
}

// Background sizing
.background-size(@size) {
  -webkit-background-size: @size;
     -moz-background-size: @size;
       -o-background-size: @size;
          background-size: @size;
}

// Box sizing
.box-sizing(@boxmodel) {
  -webkit-box-sizing: @boxmodel;
     -moz-box-sizing: @boxmodel;
          box-sizing: @boxmodel;
}

// User select
// For selecting text on the page
.user-select(@select) {
  -webkit-user-select: @select;
     -moz-user-select: @select;
      -ms-user-select: @select;
       -o-user-select: @select;
          user-select: @select;
}

// Resize anything
.resizable(@direction) {
  resize: @direction; // Options: horizontal, vertical, both
  overflow: auto; // Safari fix
}

// CSS3 Content Columns
.content-columns(@columnCount, @columnGap: @gridGutterWidth) {
  -webkit-column-count: @columnCount;
     -moz-column-count: @columnCount;
          column-count: @columnCount;
  -webkit-column-gap: @columnGap;
     -moz-column-gap: @columnGap;
          column-gap: @columnGap;
}

// Optional hyphenation
.cesure(@mode: auto) {
  word-wrap: break-word;
  -webkit-hyphens: @mode;
     -moz-hyphens: @mode;
      -ms-hyphens: @mode;
       -o-hyphens: @mode;
          hyphens: @mode;
}

// Opacity
.opacity(@opacity) {
  opacity: @opacity / 100;
  filter: ~"alpha(opacity=@{opacity})";
}

// =========  BACKGROUNDS  ==========

// Add an alphatransparency value to any background or border color (via Elyse Holladay)

.transparentbg(@color: @white, @alpha: 1) {
  background-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);
}
.transparentbd(@color: @white, @alpha: 1) {
  border-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);
  .background-clip(padding-box);
}

// Laurent : background image transparent
// ex : transparentbgimage( url('https://ericbocquet.fr/squ/sites/senateurs.lhumaindabord.fr/ergo/bg.jpg'), @bleuDark);
.transparentbgimage(@image, @couleur) {
	position:relative;
	background-color: @couleur;
	&>* {
		z-index: 1;
		position: relative;
	}
	&:before {
			content:"";
			position:absolute;
			width:100%;
			height:100%;
			top:0;
			left:0;
			background: @image 0 0 no-repeat;
			background-size:cover;
			opacity: .2;
			z-index: 0;
	}
}

// =========  DEGRADES  ==========

// Pour annuler un dégradé sous IE9
.reset-filter() {
  filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
}

.deg_h(@startColor: #555, @endColor: #333, @debut:0, @fin:100%, @image : rien) {
  background-image: -moz-linear-gradient(left, @startColor @debut, @endColor @fin), url('https://ericbocquet.fr/@{image}'); // FF 3.6+
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from(@startColor @debut), to(@endColor @fin), url('https://ericbocquet.fr/@{image}')); // Safari 4+, Chrome 2+
  background-image: -webkit-linear-gradient(left, @startColor @debut, @endColor @fin), url('https://ericbocquet.fr/@{image}'); // Safari 5.1+, Chrome 10+
  background-image: -o-linear-gradient(left, @startColor @debut, @endColor @fin), url('https://ericbocquet.fr/@{image}'); // Opera 11.10
  background-image: linear-gradient(to right, @startColor @debut, @endColor @fin), url('https://ericbocquet.fr/@{image}'); // Standard, IE10
  background-repeat: repeat-x;
  filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@startColor),argb(@endColor))); // IE9 and down
}
.deg_v(@startColor: #555, @endColor: #333, @debut:0, @fin:100%) {
  background-image: -moz-linear-gradient(top, @startColor @debut, @endColor @fin); // FF 3.6+
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor @debut), to(@endColor @fin)); // Safari 4+, Chrome 2+
  background-image: -webkit-linear-gradient(top, @startColor @debut, @endColor @fin); // Safari 5.1+, Chrome 10+
  background-image: -o-linear-gradient(top, @startColor @debut, @endColor @fin); // Opera 11.10
  background-image: linear-gradient(to bottom, @startColor @debut, @endColor @fin); // Standard, IE10
  background-repeat: repeat-x;
  filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@startColor),argb(@endColor))); // IE9 and down
}
.deg_dir(@startColor: #555, @endColor: #333, @deg: 45deg) {
  background-repeat: repeat-x;
  background-image: -moz-linear-gradient(@deg, @startColor, @endColor); // FF 3.6+
  background-image: -webkit-linear-gradient(@deg, @startColor, @endColor); // Safari 5.1+, Chrome 10+
  background-image: -o-linear-gradient(@deg, @startColor, @endColor); // Opera 11.10
  background-image: linear-gradient(@deg, @startColor, @endColor); // Standard, IE10
}
.deg_hor3(@startColor: #00b3ee, @midColor: #7a43b6, @colorStop: 50%, @endColor: #c3325f) {
  background-image: -webkit-gradient(left, linear, 0 0, 0 100%, from(@startColor), color-stop(@colorStop, @midColor), to(@endColor));
  background-image: -webkit-linear-gradient(left, @startColor, @midColor @colorStop, @endColor);
  background-image: -moz-linear-gradient(left, @startColor, @midColor @colorStop, @endColor);
  background-image: -o-linear-gradient(left, @startColor, @midColor @colorStop, @endColor);
  background-image: linear-gradient(to right, @startColor, @midColor @colorStop, @endColor);
  background-repeat: no-repeat;
  filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@startColor),argb(@endColor))); // IE9 and down, gets no color-stop at all for proper fallback
}
.deg_ver3(@startColor: #00b3ee, @midColor: #7a43b6, @colorStop: 50%, @endColor: #c3325f) {
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), color-stop(@colorStop, @midColor), to(@endColor));
  background-image: -webkit-linear-gradient(@startColor, @midColor @colorStop, @endColor);
  background-image: -moz-linear-gradient(top, @startColor, @midColor @colorStop, @endColor);
  background-image: -o-linear-gradient(@startColor, @midColor @colorStop, @endColor);
  background-image: linear-gradient(@startColor, @midColor @colorStop, @endColor);
  background-repeat: no-repeat;
  filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@startColor),argb(@endColor))); // IE9 and down, gets no color-stop at all for proper fallback
}
.deg_dir3(@startColor: transparent, @midColor: #fff, @colorStop: 50%, @endColor: transparent, @dir: 45deg) {
  background-image: -webkit-gradient(@dir, linear, 0 0, 0 100%, from(@startColor), color-stop(@colorStop, @midColor), to(@endColor));
  background-image: -webkit-linear-gradient(@dir, @startColor, @midColor @colorStop, @endColor);
  background-image: -moz-linear-gradient(@dir, @startColor, @midColor @colorStop, @endColor);
  background-image: -o-linear-gradient(@dir, @startColor, @midColor @colorStop, @endColor);
  background-image: linear-gradient(@dir, @startColor, @midColor @colorStop, @endColor);
  background-repeat: no-repeat;
}
.deg_hor5(@color1: #00b3ee, @color2: #7a43b6, @colorStop2: 25%, @color3: #7a43b6, @colorStop3: 50%, @color4: #7a43b6, @colorStop4: 25%, @color5: #c3325f) {
  background-image: -webkit-linear-gradient(left, @color1, @color2 @colorStop2, @color3 @colorStop3, @color4 @colorStop4, @color5);
  background-image: -moz-linear-gradient(left, @color1, @color2 @colorStop2, @color3 @colorStop3, @color4 @colorStop4, @color5);
  background-image: -o-linear-gradient(left, @color1, @color2 @colorStop2, @color3 @colorStop3, @color4 @colorStop4, @color5);
  background-image: linear-gradient(to right, @color1, @color2 @colorStop2, @color3 @colorStop3, @color4 @colorStop4, @color5);
  background-repeat: no-repeat;
  filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@color1),argb(@color2),argb(@color3),argb(@color4),argb(@color5))); // IE9 and down, gets no color-stop at all for proper fallback
}
.deg_ver5(@color1: #00b3ee, @color2: #7a43b6, @colorStop2: 25%, @color3: #7a43b6, @colorStop3: 50%, @color4: #7a43b6, @colorStop4: 25%, @color5: #c3325f) {
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@color1), color-stop(@colorStop2, @color2), color-stop(@colorStop3, @color3), color-stop(@colorStop4, @color4), to(@color5));
  background-image: -webkit-linear-gradient(@color1, @color2 @colorStop2, @color3 @colorStop3, @color4 @colorStop4, @color5);
  background-image: -moz-linear-gradient(top, @color1, @color2 @colorStop2, @color3 @colorStop3, @color4 @colorStop4, @color5);
  background-image: -o-linear-gradient(@color1, @color2 @colorStop2, @color3 @colorStop3, @color4 @colorStop4, @color5);
  background-image: linear-gradient(@color1, @color2 @colorStop2, @color3 @colorStop3, @color4 @colorStop4, @color5);
  background-repeat: no-repeat;
  filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@color1),argb(@color2),argb(@color3),argb(@color4),argb(@color5))); // IE9 and down, gets no color-stop at all for proper fallback
}



.deg_radial(@innerColor: #555, @outerColor: #333) {
  background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(@innerColor), to(@outerColor));
  background-image: -webkit-radial-gradient(circle, @innerColor, @outerColor);
  background-image: -moz-radial-gradient(circle, @innerColor, @outerColor);
  background-image: -o-radial-gradient(circle, @innerColor, @outerColor);
  background-repeat: no-repeat;
}
.deg_hachures(@color: #555, @angle: 45deg) {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,.15)), color-stop(.75, rgba(255,255,255,.15)), color-stop(.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(@angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(@angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(@angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(@angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
}

// Boutons
// ------------------
.buttonBackground(@startColor, @endColor, @textColor: #fff, @textShadow: 0 -1px 0 rgba(0,0,0,.25)) {
  // gradientBar will set the background to a pleasing blend of these, to support IE<=9
  .gradientBar(@startColor, @endColor, @textColor, @textShadow);

  // in these cases the gradient won't cover the background, so we override
  &:hover, &:focus, &:active, &.active, &.disabled, &[disabled] {
    color: @textColor;
    background-color: @endColor;
    *background-color: darken(@endColor, 5%);
  }

  // IE 7 + 8 can't handle box-shadow to show active, so we darken a bit ourselves
  &:active,
  &.active {
    background-color: darken(@endColor, 10%) e("\9");
  }
}

.titencadre() {
	display: table;
	overflow: hidden;
	background: @couleur-defaut;
	color: #fff;
	padding: .2em 2.5%;
	a { color: #fff; }
}

.titencadre{ .titencadre() }

.carre(@cote) {
	width: @cote;
	height: @cote;
}

.pucecarre(@taille: .8em, @couleur: @couleur-defaut){
	&::before{
		content: "";
		.carre(@taille);
		display: inline-block;
		background-color: @couleur-defaut;
		margin: 0 3% 0 -8%;
		line-height: 100%;
		top: .05em;
		position: relative;
	}
}

.pucecarre{ .pucecarre(); }

.pucetriangle(@taille: .4em, @couleur: @couleur-defaut){
	&:before{
		content: '';
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: @taille 0 @taille @taille * 1.5 ;
		border-color: transparent transparent transparent @couleur;
		position: absolute;
		left: 0;
		top: .1em;
	}
}

.pucefleche(@taille: .5em, @couleur: @couleur-defaut, @epaisseur: 2px){
	&::before {
	  content: " ";
	  display: block;
	  overflow: hidden;
	  background: transparent;
	  height: @taille;
	  width: @taille;
	  border: @epaisseur solid @couleur;
	  border-width: 2px 2px 0 0;
	  transform: rotate(45deg);
	  float: left;
	  margin: 0.5em 0.9em 0 0;
	}
}

.filetapres(@hauteur:2px,@largeur:@container-treslarge-desktop - @grid-gutter-width,@couleur:@couleur-defaut) {
	position: relative;
	&:after{
		content: "";
		display: block;
		width: @largeur;
		height: @hauteur;
		background: @couleur;
		bottom: 0;
		position: absolute;
		left: 50%;
		transform: translate(-50%);
	}
}

// Reset and dependencies
//
// Glyphicons for Bootstrap
//
// Since icons are fonts, they can be placed anywhere text is placed and are
// thus automatically sized to match the surrounding child. To use, create an
// inline element with the appropriate classes, like so:
//
// <a href="#"><span class="icon icon-star"></span> Star</a>

// Importer la typo :
// Ne pas mettre de balise CHEMIN permet de gagner du temps
@font-face {
	font-display: block;
  font-family: 'bootstrap-icons';
  src: 	url('https://ericbocquet.fr/squ/squelettes/css/bootstrapleger/fonts/bootstrap-icons.woff2') format('woff2'),
       		url('https://ericbocquet.fr/squ/squelettes/css/bootstrapleger/fonts/bootstrap-icons.woff') format('woff');
}

// Catchall baseclass
.icon {
  position: relative;
  &::before {
  	display: inline-block;
	  font-style: normal;
	  line-height: 1;
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
		margin-right: 0.5em;
	  font-family: bootstrap-icons !important;
	  font-weight: normal !important;
	  font-variant: normal;
	  text-transform: none;
	  vertical-align: -.125em;
  }
}

// Individual icons
.icon-asterisk            										  { &:before { content: "\002a"; } }
.icon-plus                  											{ &:before { content: "\002b"; } }
.icon-euro,
.icon-eur                  												{ &:before { content: "\20ac"; } }
.icon-moins               										  { &:before { content: "\2212"; } }
.icon-cloud                										 	{ &:before { content: "\2601"; } }
.icon-envelope          										  { &:before { content: "\f32f"; } }
.icon-crayon               										{ &:before { content: "\270f"; } }
.icon-verre                										 	{ &:before { content: "\e001"; } }
.icon-music               										  { &:before { content: "\e002"; } }
.icon-search              										  { &:before { content: "\F52A"; } }
.icon-coeur                 										{ &:before { content: "\e005"; } }
.icon-star                 												{ &:before { content: "\e006"; } }
.icon-star-blanche								        	{ &:before { content: "\e007"; } }
.icon-user               											  { &:before { content: "\e008"; } }
.icon-film                												{ &:before { content: "\e009"; } }
.icon-fenetre          										  	{ &:before { content: "\e010"; } }
.icon-grille             										    	{ &:before { content: "\e011"; } }
.icon-liste              		 											{ &:before { content: "\e012"; } }
.icon-ok                  											 	{ &:before { content: "\e013"; } }
.icon-croix              											 	{ &:before { content: "\e014"; } }
.icon-zoom-in         									     	{ &:before { content: "\e015"; } }
.icon-zoom-out       								      	{ &:before { content: "\e016"; } }
.icon-off                 													{ &:before { content: "\e017"; } }
.icon-signal            											  	{ &:before { content: "\e018"; } }
.icon-engrenage     							        	{ &:before { content: "\e019"; } }
.icon-poubelle        							       		{ &:before { content: "\e020"; } }
.icon-accueil           								       	{ &:before { content: "\e021"; } }
.icon-fichier            								     		{ &:before { content: "\e022"; } }
.icon-horloge          								       	{ &:before { content: "\f116"; } }
.icon-route             									    	{ &:before { content: "\e024"; } }
.icon-download2    								 		   		{ &:before { content: "\e025"; } }
.icon-download   									        	{ &:before { content: "\e026"; } }
.icon-upload        									     			{ &:before { content: "\e027"; } }
.icon-inbox          									     			{ &:before { content: "\e028"; } }
.icon-recharge     										    		{ &:before { content: "\e029"; } }
.icon-recharge2   			  					       		{ &:before { content: "\e030"; } }
.icon-recharge3   			  					      		{ &:before { content: "\e031"; } }
.icon-list2            												 		{ &:before { content: "\e032"; } }
.icon-cadenas      									        	{ &:before { content: "\e033"; } }
.icon-drapeau      									        	{ &:before { content: "\e034"; } }
.icon-ecouteurs   									       		{ &:before { content: "\e035"; } }
.icon-mute          														{ &:before { content: "\e036"; } }
.icon-son-moins  										       	{ &:before { content: "\e037"; } }
.icon-son-plus     										      	{ &:before { content: "\e038"; } }
.icon-qrcode            									   		{ &:before { content: "\e039"; } }
.icon-codebar          									     	{ &:before { content: "\e040"; } }
.icon-tag                  											 	{ &:before { content: "\e041"; } }
.icon-tags                										 		{ &:before { content: "\e042"; } }
.icon-livre                										 		{ &:before { content: "\e043"; } }
.icon-prefere         									     		{ &:before { content: "\e044"; } }
.icon-print             										     	{ &:before { content: "\e045"; } }
.icon-photo              										  	{ &:before { content: "\e046"; } }
.icon-typo                										  	{ &:before { content: "\e047"; } }
.icon-gras                										  	{ &:before { content: "\e048"; } }
.icon-italic               											 	{ &:before { content: "\e049"; } }
.icon-casse-hauteur          					 		{ &:before { content: "\e050"; } }
.icon-casse-largeur						 					  	{ &:before { content: "\e051"; } }
.icon-align-left       						 							{ &:before { content: "\e052"; } }
.icon-align-center   					 					  	{ &:before { content: "\e053"; } }
.icon-align-right     						 					  	{ &:before { content: "\e054"; } }
.icon-align-justify   					 					  	{ &:before { content: "\e055"; } }
.icon-list                 												{ &:before { content: "\e056"; } }
.icon-indent-gauche           					 	{ &:before { content: "\e057"; } }
.icon-indent-droite       		 					  	{ &:before { content: "\e058"; } }
.icon-camera       														{ &:before { content: "\e059"; } }
.icon-image         							 					  	{ &:before { content: "\e060"; } }
.icon-marker        							 					 		{ &:before { content: "\e062"; } }
.icon-contraste    							 					 		{ &:before { content: "\e063"; } }
.icon-goutte                   									{ &:before { content: "\e064"; } }
.icon-edit         							     					 		{ &:before { content: "\e065"; } }
.icon-export     							     					 		{ &:before { content: "\e066"; } }
.icon-check      							     					 		{ &:before { content: "\e067"; } }
.icon-expand   							     					    { &:before { content: "\e068"; } }
.icon-back        															{ &:before { content: "\e069"; } }
.icon-back2      							  							{ &:before { content: "\e070"; } }
.icon-back3      							   							{ &:before { content: "\e071"; } }
.icon-play        							     							{ &:before { content: "\e072"; } }
.icon-pause      							   							{ &:before { content: "\e073"; } }
.icon-stop        							     							{ &:before { content: "\e074"; } }
.icon-next3      							     							{ &:before { content: "\e075"; } }
.icon-next2      									 							{ &:before { content: "\e076"; } }
.icon-next        																{ &:before { content: "\e077"; } }
.icon-eject       							   								{ &:before { content: "\e078"; } }
.icon-plus-rond            			 							{ &:before { content: "\e081"; } }
.icon-moins-rond             								{ &:before { content: "\e082"; } }
.icon-croix-rond        											{ &:before { content: "\e083"; } }
.icon-ok-rond            											{ &:before { content: "\e084"; } }
.icon-interrogation-rond   							{ &:before { content: "\e085"; } }
.icon-info-rond     				     							  { &:before { content: "\e086"; } }
.icon-cible            												 	{ &:before { content: "\e087"; } }
.icon-croix-rond2 				     							  { &:before { content: "\e088"; } }
.icon-ok-rond2     				     							  { &:before { content: "\e089"; } }
.icon-interdit            									 		{ &:before { content: "\e090"; } }
.icon-faire-suivre         					  		  	{ &:before { content: "\e095"; } }
.icon-plein-ecran      							    		{ &:before { content: "\e096"; } }
.icon-petit-ecran      		  									{ &:before { content: "\e097"; } }
.icon-exclamation-rond 						   		{ &:before { content: "\e101"; } }
.icon-cadeau      	         						    	{ &:before { content: "\e102"; } }
.icon-feuille        	         							 		{ &:before { content: "\e103"; } }
.icon-flame         	         									{ &:before { content: "\e104"; } }
.icon-oeil            							 					 		{ &:before { content: "\e105"; } }
.icon-oeil-ferme   							      		   	{ &:before { content: "\e106"; } }
.icon-attention    								       			{ &:before { content: "\e107"; } }
.icon-avion          								        		{ &:before { content: "\e108"; } }
.icon-calendar     								          	{ &:before { content: "\e109"; } }
.icon-random       						          			{ &:before { content: "\e110"; } }
.icon-bulle            						 				   		{ &:before { content: "\e111"; } }
.icon-fer               						 								{ &:before { content: "\e112"; } }
.icon-retweet              						 				{ &:before { content: "\e115"; } }
.icon-caddie        														{ &:before { content: "\e116"; } }
.icon-dossier-ferme     						      	{ &:before { content: "\e117"; } }
.icon-dossier    														  	{ &:before { content: "\e118"; } }
.icon-hauteur   													  	{ &:before { content: "\e119"; } }
.icon-largeur    																{ &:before { content: "\e120"; } }
.icon-dd           						 						      	{ &:before { content: "\e121"; } }
.icon-haut-parleur       						      	{ &:before { content: "\e122"; } }
.icon-cloche               									    { &:before { content: "\e123"; } }
.icon-pub          														 	{ &:before { content: "\e124"; } }
.icon-pouce-leve      									     	{ &:before { content: "\e125"; } }
.icon-pouce-baisse   							      	{ &:before { content: "\e126"; } }
.icon-doigt-droite     							     		{ &:before { content: "\e127"; } }
.icon-doigt-gauche   							        { &:before { content: "\e128"; } }
.icon-doigt-up           									   	{ &:before { content: "\e129"; } }
.icon-doigt-down          									{ &:before { content: "\e130"; } }
.icon-planette        										      { &:before { content: "\e135"; } }
.icon-outil               												{ &:before { content: "\e136"; } }
.icon-tasks             												  { &:before { content: "\e137"; } }
.icon-filtre              													{ &:before { content: "\e138"; } }
.icon-cartable         											  { &:before { content: "\e139"; } }
.icon-plein-ecran2  											  { &:before { content: "\e140"; } }
.icon-compteur      												  { &:before { content: "\e141"; } }
.icon-joint             													{ &:before { content: "\e142"; } }
.icon-coeur-blanc 												  { &:before { content: "\e143"; } }
.icon-lien              												  { &:before { content: "\e144"; } }
.icon-phone          												  { &:before { content: "\e145"; } }
.icon-punaise       												  { &:before { content: "\e146"; } }
.icon-dollard         												  { &:before { content: "\e148"; } }
.icon-livre             												  { &:before { content: "\e149"; } }
.icon-classement  										  		{ &:before { content: "\e150"; } }
.icon-classement-alphabet      				{ &:before { content: "\e151"; } }
.icon-classement-alphabet-inv				{ &:before { content: "\e152"; } }
.icon-classement-chiffre          				{ &:before { content: "\e153"; } }
.icon-classement-chiffre-inv 			  	{ &:before { content: "\e154"; } }
.icon-classement-taille     							{ &:before { content: "\e155"; } }
.icon-classement-taille-inv 						{ &:before { content: "\e156"; } }
.icon-case              													{ &:before { content: "\e157"; } }
.icon-log-in               									 		{ &:before { content: "\e161"; } }
.icon-eclair               									  	{ &:before { content: "\e162"; } }
.icon-log-out              									  	{ &:before { content: "\e163"; } }
.icon-nouvelle-fenetre          			  	{ &:before { content: "\e164"; } }
.icon-enregistrer       									 		{ &:before { content: "\e165"; } }
.icon-sauvegarde      									 		{ &:before { content: "\e166"; } }
.icon-ouvrir                									 		{ &:before { content: "\e167"; } }
.icon-sauvegarde-ok 									 		{ &:before { content: "\e168"; } }
.icon-import              									 		{ &:before { content: "\e169"; } }
.icon-export               									 		{ &:before { content: "\e170"; } }
.icon-envoi                									 		{ &:before { content: "\e171"; } }
.icon-disquette          									 		{ &:before { content: "\e172"; } }
.icon-disquette-ok          							 	{ &:before { content: "\e173"; } }
.icon-disquette-suppr     							  { &:before { content: "\e174"; } }
.icon-disquette-import       	 					{ &:before { content: "\e175"; } }
.icon-disquette-export          					{ &:before { content: "\e176"; } }
.icon-cb            															{ &:before { content: "\e177"; } }
.icon-transfert         						   				  { &:before { content: "\e178"; } }
.icon-restaurant      						   			    { &:before { content: "\e179"; } }
.icon-hopital            						   			 		{ &:before { content: "\e180"; } }
.icon-compresse      						   			   	{ &:before { content: "\e181"; } }
.icon-phone2           										    { &:before { content: "\e182"; } }
.icon-phone3           										  	{ &:before { content: "\e183"; } }
.icon-tour                											  { &:before { content: "\e184"; } }
.icon-histogramme    				   				    { &:before { content: "\e185"; } }
.icon-video-sd            									  { &:before { content: "\e186"; } }
.icon-video-hd            									  { &:before { content: "\e187"; } }
.icon-video-cc            											{ &:before { content: "\e188"; } }
.icon-video-stereo      								    { &:before { content: "\e189"; } }
.icon-video-dolby       								    { &:before { content: "\e190"; } }
.icon-sound-5-1          									  { &:before { content: "\e191"; } }
.icon-sound-6-1          									  { &:before { content: "\e192"; } }
.icon-sound-7-1          									  { &:before { content: "\e193"; } }
.icon-copyright-mark 									    { &:before { content: "\e194"; } }
.icon-marque-depose 									  { &:before { content: "\e195"; } }
.icon-cloud-download									    { &:before { content: "\e197"; } }
.icon-cloud-upload     									  { &:before { content: "\e198"; } }
.icon-sapin           													{ &:before { content: "\e199"; } }
.icon-arbre      																{ &:before { content: "\e200"; } }
.icon-cd            							     				  	{ &:before { content: "\e201"; } }
.icon-save-file              										{ &:before { content: "\e202"; } }
.icon-open-file  							     				    { &:before { content: "\e203"; } }
.icon-niveau-superieur 					        { &:before { content: "\e204"; } }
.icon-copier          										      { &:before { content: "\e205"; } }
.icon-coller           											    { &:before { content: "\e206"; } }
.icon-attention2    									        { &:before { content: "\e209"; } }
.icon-equalizer     												  { &:before { content: "\e210"; } }
.icon-roi                													{ &:before { content: "\e211"; } }
.icon-reine            												 	{ &:before { content: "\e212"; } }
.icon-pion             												 	{ &:before { content: "\e213"; } }
.icon-fou               													{ &:before { content: "\e214"; } }
.icon-cavalier       							   				  { &:before { content: "\e215"; } }
.icon-biberon        													{ &:before { content: "\e216"; } }
.icon-tente            													{ &:before { content: "\26fa"; } }
.icon-paperboard  													{ &:before { content: "\e218"; } }
.icon-lit                 													{ &:before { content: "\e219"; } }
.icon-pomme        													{ &:before { content: "\f8ff"; } }
.icon-effacer         													{ &:before { content: "\e221"; } }
.icon-sablier         													{ &:before { content: "\231b"; } }
.icon-lampe          							   					{ &:before { content: "\e223"; } }
.icon-dupliquer     							   				 	{ &:before { content: "\e224"; } }
.icon-tirelire          													{ &:before { content: "\e225"; } }
.icon-couper         													{ &:before { content: "\e226"; } }
.icon-bitcoin         													{ &:before { content: "\e227"; } }
.icon-bitcoin2       							   				  { &:before { content: "\e227"; } }
.icon-bitcoin3       							   				  { &:before { content: "\e227"; } }
.icon-yen              													{ &:before { content: "\00a5"; } }
.icon-yen2            												  { &:before { content: "\00a5"; } }
.icon-rouble          												  { &:before { content: "\20bd"; } }
.icon-rouble2        											    { &:before { content: "\20bd"; } }
.icon-balance       											    { &:before { content: "\e230"; } }
.icon-glace           													{ &:before { content: "\e231"; } }
.icon-glace-entamee    									{ &:before { content: "\e232"; } }
.icon-education            									{ &:before { content: "\e233"; } }
.icon-suspension      											{ &:before { content: "\e234"; } }
.icon-suspension-vertical  				    	{ &:before { content: "\e235"; } }
.icon-menu         														{ &:before { content: "\e236"; } }
.icon-modal-window											  { &:before { content: "\e237"; } }
.icon-bidon              											  { &:before { content: "\e238"; } }
.icon-ble                  											 	{ &:before { content: "\e239"; } }
.icon-lunettes          											  { &:before { content: "\e240"; } }
.icon-taille-texte      											  { &:before { content: "\e241"; } }
.icon-souligne         											  { &:before { content: "\e242"; } }
.icon-couleur-arriere-plan 				    	{ &:before { content: "\e243"; } }
.icon-aligner-haut 											    { &:before { content: "\e244"; } }
.icon-aligner-bas    												{ &:before { content: "\e245"; } }
.icon-aligner-horizontal									{ &:before { content: "\e246"; } }
.icon-aligner-gauche      								{ &:before { content: "\e247"; } }
.icon-aligner-vertical  										{ &:before { content: "\e248"; } }
.icon-aligner-droit     											{ &:before { content: "\e249"; } }
.icon-prompt              									 	{ &:before { content: "\e254"; } }
.icon-exposant           										{ &:before { content: "\e255"; } }
.icon-indice              											{ &:before { content: "\e256"; } }
.icon-fleche-gauche        					    	{ &:before { content: "\e091"; } }
.icon-fleche-droite       	   								{ &:before { content: "\e092"; } }
.icon-fleche-haut         					  				{ &:before { content: "\e093"; } }
.icon-fleche-bas         			  							{ &:before { content: "\e094"; } }
.icon-fleche-gauche2      								{ &:before { content: "\e079"; } }
.icon-fleche-droite2        								{ &:before { content: "\e080"; } }
.icon-fleche-haut2       										{ &:before { content: "\e113"; } }
.icon-fleche-bas2        								   	{ &:before { content: "\e114"; } }
.icon-fleche-gauche3 									    { &:before { content: "\e250"; } }
.icon-fleche-droite3    									  { &:before { content: "\e251"; } }
.icon-fleche-haut3      									 	{ &:before { content: "\e252"; } }
.icon-fleche-bas3       									   	{ &:before { content: "\e253"; } }
.icon-fleche-gauche4        				    	{ &:before { content: "\e257"; } }
.icon-fleche-droite4           							{ &:before { content: "\F285"; } }
.icon-fleche-bas4              							{ &:before { content: "\F282"; } }
.icon-fleche-haut4             							{ &:before { content: "\e260"; } }
.icon-fleche-droite-rond  						  	{ &:before { content: "\e131"; } }
.icon-fleche-gauche-rond					     	{ &:before { content: "\e132"; } }
.icon-fleche-haut-rond    					   		{ &:before { content: "\e133"; } }
.icon-fleche-bas-rond     								{ &:before { content: "\e134"; } }
.icon-fleche-droite-case        			  	{ &:before { content: "\e158"; } }
.icon-fleche-bas-case          						{ &:before { content: "\e159"; } }
.icon-fleche-haut-case      							{ &:before { content: "\e160"; } }

// icones après
.btn-asterisk           											  { &:after { content: "\002a"; } }
.btn-plus                 												{ &:after { content: "\002b"; } }
.btn-euro,
.btn-eur                   												{ &:after { content: "\20ac"; } }
.btn-moins              											  { &:after { content: "\2212"; } }
.btn-cloud               												{ &:after { content: "\2601"; } }
.btn-envelope         											  { &:after { content: "\2709"; } }
.btn-crayon             											  { &:after { content: "\270f"; } }
.btn-verre               												{ &:after { content: "\e001"; } }
.btn-music               										 	  { &:after { content: "\e002"; } }
.btn-search             										 	  { &:after { content: "\e003"; } }
.btn-coeur               										 	  { &:after { content: "\e005"; } }
.btn-star                  												{ &:after { content: "\e006"; } }
.btn-star-blanche    											  { &:after { content: "\e007"; } }
.btn-user              											   { &:after { content: "\e008"; } }
.btn-film               												  { &:after { content: "\e009"; } }
.btn-fenetre         												    { &:after { content: "\e010"; } }
.btn-grille             											     { &:after { content: "\e011"; } }
.btn-liste              														{ &:after { content: "\e012"; } }
.btn-ok                 											  { &:after { content: "\e013"; } }
.btn-croix             											  { &:after { content: "\e014"; } }
.btn-zoom-in        							 				   { &:after { content: "\e015"; } }
.btn-zoom-out      						 				    { &:after { content: "\e016"; } }
.btn-off                 											 { &:after { content: "\e017"; } }
.btn-signal            										   { &:after { content: "\e018"; } }
.btn-engrenage    								       { &:after { content: "\e019"; } }
.btn-poubelle       											   { &:after { content: "\e020"; } }
.btn-accueil          										  { &:after { content: "\e021"; } }
.btn-fichier           								      { &:after { content: "\e022"; } }
.btn-horloge         								        { &:after { content: "\f116"; } }
.btn-route            											    { &:after { content: "\e024"; } }
.btn-download2    									     { &:after { content: "\e025"; } }
.btn-download      								       { &:after { content: "\e026"; } }
.btn-upload          									     { &:after { content: "\e027"; } }
.btn-inbox            										    { &:after { content: "\e028"; } }
.btn-recharge       										   { &:after { content: "\e029"; } }
.btn-recharge2     								         { &:after { content: "\e030"; } }
.btn-recharge3     					 			      { &:after { content: "\e031"; } }
.btn-list2             												  { &:after { content: "\e032"; } }
.btn-cadenas      					   			        { &:after { content: "\e033"; } }
.btn-drapeau      					   			        { &:after { content: "\e034"; } }
.btn-ecouteurs    					 	 			      { &:after { content: "\e035"; } }
.btn-mute           											  { &:after { content: "\e036"; } }
.btn-son-moins   						 			       { &:after { content: "\e037"; } }
.btn-son-plus      						 			      { &:after { content: "\e038"; } }
.btn-qrcode         						 			      { &:after { content: "\e039"; } }
.btn-codebar       						 			       { &:after { content: "\e040"; } }
.btn-tag              									      { &:after { content: "\e041"; } }
.btn-tags             									      { &:after { content: "\e042"; } }
.btn-livre             									      { &:after { content: "\e043"; } }
.btn-prefere        									       { &:after { content: "\e044"; } }
.btn-print            									      { &:after { content: "\e045"; } }
.btn-photo          									       { &:after { content: "\e046"; } }
.btn-typo            									       { &:after { content: "\e047"; } }
.btn-gras             									      { &:after { content: "\e048"; } }
.btn-italic            									     { &:after { content: "\e049"; } }
.btn-casse-hauteur      					      { &:after { content: "\e050"; } }
.btn-casse-largeur       		 				    { &:after { content: "\e051"; } }
.btn-align-left        										   { &:after { content: "\e052"; } }
.btn-align-center   									      { &:after { content: "\e053"; } }
.btn-align-right      									    { &:after { content: "\e054"; } }
.btn-align-justify   									     { &:after { content: "\e055"; } }
.btn-list                 											{ &:after { content: "\e056"; } }
.btn-indent-gauche      				      { &:after { content: "\e057"; } }
.btn-indent-droite        		 						 { &:after { content: "\e058"; } }
.btn-camera       													{ &:after { content: "\e059"; } }
.btn-image         										     { &:after { content: "\e060"; } }
.btn-marker       								 					 { &:after { content: "\e062"; } }
.btn-contraste    						   					  { &:after { content: "\e063"; } }
.btn-goutte        							   					   { &:after { content: "\e064"; } }
.btn-edit             							 						 { &:after { content: "\e065"; } }
.btn-export        							   					  { &:after { content: "\e066"; } }
.btn-check         							   					  { &:after { content: "\e067"; } }
.btn-expand       						   					  { &:after { content: "\e068"; } }
.btn-back      															  { &:after { content: "\e069"; } }
.btn-back2    															  { &:after { content: "\e070"; } }
.btn-back3    									   					  { &:after { content: "\e071"; } }
.btn-play       									   					  { &:after { content: "\e072"; } }
.btn-pause    									   					  { &:after { content: "\e073"; } }
.btn-stop       									   					  { &:after { content: "\e074"; } }
.btn-next3    									   					  { &:after { content: "\e075"; } }
.btn-next2    															  { &:after { content: "\e076"; } }
.btn-next      															  { &:after { content: "\e077"; } }
.btn-eject                  										{ &:after { content: "\e078"; } }
.btn-plus-rond          									 { &:after { content: "\e081"; } }
.btn-moins-rond       				 					 { &:after { content: "\e082"; } }
.btn-croix-rond         									  { &:after { content: "\e083"; } }
.btn-ok-rond             									  { &:after { content: "\e084"; } }
.btn-interrogation-rond     					   { &:after { content: "\e085"; } }
.btn-info-rond      						   					  { &:after { content: "\e086"; } }
.btn-cible             													{ &:after { content: "\e087"; } }
.btn-croix-rond2  						   					  { &:after { content: "\e088"; } }
.btn-ok-rond2      						   					  { &:after { content: "\e089"; } }
.btn-interdit         												  { &:after { content: "\e090"; } }
.btn-faire-suivre       									  { &:after { content: "\e095"; } }
.btn-plein-ecran       									  { &:after { content: "\e096"; } }
.btn-petit-ecran        									 { &:after { content: "\e097"; } }
.btn-exclamation-rond 						    { &:after { content: "\e101"; } }
.btn-cadeau      			      						   { &:after { content: "\e102"; } }
.btn-feuille        			      							 { &:after { content: "\e103"; } }
.btn-flame         			      							{ &:after { content: "\e104"; } }
.btn-oeil            													{ &:after { content: "\e105"; } }
.btn-oeil-ferme  							   			   { &:after { content: "\e106"; } }
.btn-attention        										  { &:after { content: "\e107"; } }
.btn-avion         			 				   			   { &:after { content: "\e108"; } }
.btn-calendar    			 				   			     { &:after { content: "\e109"; } }
.btn-random      			 				   			     { &:after { content: "\e110"; } }
.btn-bulle          			 				  					 { &:after { content: "\e111"; } }
.btn-fer                													{ &:after { content: "\e112"; } }
.btn-retweet        							 			     { &:after { content: "\e115"; } }
.btn-caddie          													{ &:after { content: "\e116"; } }
.btn-dossier-ferme   								    { &:after { content: "\e117"; } }
.btn-dossier    													    { &:after { content: "\e118"; } }
.btn-hauteur  														   { &:after { content: "\e119"; } }
.btn-largeur    													 		{ &:after { content: "\e120"; } }
.btn-dd           						   						   { &:after { content: "\e121"; } }
.btn-haut-parleur          						   { &:after { content: "\e122"; } }
.btn-cloche               									  { &:after { content: "\e123"; } }
.btn-pub           														{ &:after { content: "\e124"; } }
.btn-pouce-leve       									    { &:after { content: "\e125"; } }
.btn-pouce-baisse    				 			     { &:after { content: "\e126"; } }
.btn-doigt-droite      				 							{ &:after { content: "\e127"; } }
.btn-doigt-gauche    				 			     { &:after { content: "\e128"; } }
.btn-doigt-up            									 { &:after { content: "\e129"; } }
.btn-doigt-down       				 			    { &:after { content: "\e130"; } }
.btn-planette             									  { &:after { content: "\e135"; } }
.btn-outil               												{ &:after { content: "\e136"; } }
.btn-tasks             										   { &:after { content: "\e137"; } }
.btn-filtre              											 { &:after { content: "\e138"; } }
.btn-cartable         										    { &:after { content: "\e139"; } }
.btn-plein-ecran2  					   			     { &:after { content: "\e140"; } }
.btn-compteur       										      { &:after { content: "\e141"; } }
.btn-joint            													{ &:after { content: "\e142"; } }
.btn-coeur-blanc								 			       { &:after { content: "\e143"; } }
.btn-lien             							 			  { &:after { content: "\e144"; } }
.btn-phone         							 			     { &:after { content: "\e145"; } }
.btn-punaise       							 			      { &:after { content: "\e146"; } }
.btn-dollard        							 			        { &:after { content: "\e148"; } }
.btn-livre            							 			    { &:after { content: "\e149"; } }
.btn-classement 							 			    { &:after { content: "\e150"; } }
.btn-classement-alphabet       		{ &:after { content: "\e151"; } }
.btn-classement-alphabet-inv   	{ &:after { content: "\e152"; } }
.btn-classement-chiffre          		{ &:after { content: "\e153"; } }
.btn-classement-chiffre-inv      	{ &:after { content: "\e154"; } }
.btn-classement-taille     						{ &:after { content: "\e155"; } }
.btn-classement-taille-inv 					{ &:after { content: "\e156"; } }
.btn-case              											{ &:after { content: "\e157"; } }
.btn-log-in             											{ &:after { content: "\e161"; } }
.btn-eclair             											{ &:after { content: "\e162"; } }
.btn-log-out           											{ &:after { content: "\e163"; } }
.btn-nouvelle-fenetre 				    		  { &:after { content: "\e164"; } }
.btn-enregistrer          				   			{ &:after { content: "\e165"; } }
.btn-sauvegarde         				       	{ &:after { content: "\e166"; } }
.btn-ouvrir                							   	{ &:after { content: "\e167"; } }
.btn-sauvegarde-ok  							    { &:after { content: "\e168"; } }
.btn-import               							  	{ &:after { content: "\e169"; } }
.btn-export               							  	{ &:after { content: "\e170"; } }
.btn-envoi                 							  	{ &:after { content: "\e171"; } }
.btn-disquette           									{ &:after { content: "\e172"; } }
.btn-disquette-ok      							    { &:after { content: "\e173"; } }
.btn-disquette-suppr      						 { &:after { content: "\e174"; } }
.btn-disquette-import     						{ &:after { content: "\e175"; } }
.btn-disquette-export     						{ &:after { content: "\e176"; } }
.btn-cb            														{ &:after { content: "\e177"; } }
.btn-transfert        											{ &:after { content: "\e178"; } }
.btn-restaurant     							        { &:after { content: "\e179"; } }
.btn-hopital           									   { &:after { content: "\e180"; } }
.btn-compresse     									      { &:after { content: "\e181"; } }
.btn-phone2          									  { &:after { content: "\e182"; } }
.btn-phone3          									 { &:after { content: "\e183"; } }
.btn-tour               									{ &:after { content: "\e184"; } }
.btn-histogramme                  	{ &:after { content: "\e185"; } }
.btn-video-sd            							 	{ &:after { content: "\e186"; } }
.btn-video-hd            							  { &:after { content: "\e187"; } }
.btn-video-cc            								{ &:after { content: "\e188"; } }
.btn-video-stereo      							  { &:after { content: "\e189"; } }
.btn-video-dolby       							  { &:after { content: "\e190"; } }
.btn-sound-5-1          							  { &:after { content: "\e191"; } }
.btn-sound-6-1          							  { &:after { content: "\e192"; } }
.btn-sound-7-1          							  { &:after { content: "\e193"; } }
.btn-copyright-mark  							  { &:after { content: "\e194"; } }
.btn-marque-depose 							{ &:after { content: "\e195"; } }
.btn-cloud-download 							   { &:after { content: "\e197"; } }
.btn-cloud-upload          						{ &:after { content: "\e198"; } }
.btn-sapin      													  { &:after { content: "\e199"; } }
.btn-arbre      														{ &:after { content: "\e200"; } }
.btn-cd           													{ &:after { content: "\e201"; } }
.btn-save-file 														  { &:after { content: "\e202"; } }
.btn-open-file														  { &:after { content: "\e203"; } }
.btn-niveau-superieur              { &:after { content: "\e204"; } }
.btn-copier         								     	{ &:after { content: "\e205"; } }
.btn-coller           								    	{ &:after { content: "\e206"; } }
.btn-attention2   								      { &:after { content: "\e209"; } }
.btn-equalizer     								      { &:after { content: "\e210"; } }
.btn-roi               										 { &:after { content: "\e211"; } }
.btn-reine           										    { &:after { content: "\e212"; } }
.btn-pion            										    { &:after { content: "\e213"; } }
.btn-fou              											{ &:after { content: "\e214"; } }
.btn-cavalier       								     { &:after { content: "\e215"; } }
.btn-biberon       								 			{ &:after { content: "\e216"; } }
.btn-tente           								     	{ &:after { content: "\26fa"; } }
.btn-paperboard 						          { &:after { content: "\e218"; } }
.btn-lit                 									 { &:after { content: "\e219"; } }
.btn-pomme        							     { &:after { content: "\f8ff"; } }
.btn-effacer         						       { &:after { content: "\e221"; } }
.btn-sablier         								   { &:after { content: "\231b"; } }
.btn-lampe          						       { &:after { content: "\e223"; } }
.btn-dupliquer     						       { &:after { content: "\e224"; } }
.btn-tirelire         						 			 { &:after { content: "\e225"; } }
.btn-couper         										{ &:after { content: "\e226"; } }
.btn-bitcoin         							     	{ &:after { content: "\e227"; } }
.btn-bitcoin2       						        { &:after { content: "\e227"; } }
.btn-bitcoin3       						        { &:after { content: "\e227"; } }
.btn-yen              								    { &:after { content: "\00a5"; } }
.btn-yen2            							      { &:after { content: "\00a5"; } }
.btn-rouble          							      { &:after { content: "\20bd"; } }
.btn-rouble2        						        { &:after { content: "\20bd"; } }
.btn-balance       					 		      { &:after { content: "\e230"; } }
.btn-glace           									 { &:after { content: "\e231"; } }
.btn-glace-entamee 			 				 { &:after { content: "\e232"; } }
.btn-education         							  { &:after { content: "\e233"; } }
.btn-suspension      								{ &:after { content: "\e234"; } }
.btn-suspension-vertical 	   	  { &:after { content: "\e235"; } }
.btn-menu         											{ &:after { content: "\e236"; } }
.btn-modal-window  	     		    { &:after { content: "\e237"; } }
.btn-bidon                	  				  { &:after { content: "\e238"; } }
.btn-ble                  								{ &:after { content: "\e239"; } }
.btn-lunettes          							 { &:after { content: "\e240"; } }
.btn-taille-texte      					     { &:after { content: "\e241"; } }
.btn-souligne         						 		 { &:after { content: "\e242"; } }
.btn-couleur-arriere-plan       { &:after { content: "\e243"; } }
.btn-aligner-haut       							{ &:after { content: "\e244"; } }
.btn-aligner-bas    									{ &:after { content: "\e245"; } }
.btn-aligner-horizontal						{ &:after { content: "\e246"; } }
.btn-aligner-gauche      					{ &:after { content: "\e247"; } }
.btn-aligner-vertical  							{ &:after { content: "\e248"; } }
.btn-aligner-droit     								{ &:after { content: "\e249"; } }
.btn-prompt           				  			  { &:after { content: "\e254"; } }
.btn-exposant        							   { &:after { content: "\e255"; } }
.btn-indice             									{ &:after { content: "\e256"; } }

// Boutons fleches
.btn-fleche-gauche   			   					  { &:after { content: "\e091"; } }
.btn-fleche-droite     									  { &:after { content: "\e092"; } }
.btn-fleche-haut       				 					 { &:after { content: "\e093"; } }
.btn-fleche-bas         									  { &:after { content: "\e094"; } }
.btn-fleche-gauche2       						 	{ &:after { content: "\e079"; } }
.btn-fleche-droite2   				 					  { &:after { content: "\e080"; } }
.btn-fleche-haut2    				   			     { &:after { content: "\e113"; } }
.btn-fleche-bas2  							 			     { &:after { content: "\e114"; } }
.btn-fleche-gauche3 			       	{ &:after { content: "\e250"; } }
.btn-fleche-droite3    			      	{ &:after { content: "\e251"; } }
.btn-fleche-bas3    				  			 	{ &:after { content: "\e252"; } }
.btn-fleche-haut3   		  			    { &:after { content: "\e253"; } }
.btn-fleche-gauche4              { &:after { content: "\e257"; } }
.btn-fleche-droite4         			 { &:after { content: "\e258"; } }
.btn-fleche-bas4           					{ &:after { content: "\e259"; } }
.btn-fleche-haut4                		{ &:after { content: "\e260"; } }
.btn-fleche-droite-rond   						{ &:after { content: "\e131"; } }
.btn-fleche-gauche-rond   			   { &:after { content: "\e132"; } }
.btn-fleche-haut-rond      					  { &:after { content: "\e133"; } }
.btn-fleche-bas-rond 									  { &:after { content: "\e134"; } }
.btn-fleche-droite-case              { &:after { content: "\e158"; } }
.btn-fleche-bas-case      											{ &:after { content: "\e159"; } }
.btn-fleche-haut-case    											{ &:after { content: "\e160"; } }

.icon-123, .icon-123    { &:before { content: "\f67f"; } }
.icon-alarm-fill, .icon-alarm-plein    { &:before { content: "\f101"; } }
.icon-alarm, .icon-alarm    { &:before { content: "\f102"; } }
.icon-align-bottom, .icon-align-bas    { &:before { content: "\f103"; } }
.icon-align-center, .icon-align-centre    { &:before { content: "\f104"; } }
.icon-align-end, .icon-align-fin    { &:before { content: "\f105"; } }
.icon-align-middle, .icon-align-milieu    { &:before { content: "\f106"; } }
.icon-align-start, .icon-align-start    { &:before { content: "\f107"; } }
.icon-align-top, .icon-align-haut    { &:before { content: "\f108"; } }
.icon-alt, .icon-alt    { &:before { content: "\f109"; } }
.icon-app-indicator, .icon-app-indicator    { &:before { content: "\f10a"; } }
.icon-app, .icon-app    { &:before { content: "\f10b"; } }
.icon-archive-fill, .icon-archive-plein    { &:before { content: "\f10c"; } }
.icon-archive, .icon-archive    { &:before { content: "\f10d"; } }
.icon-arrow-90deg-down, .icon-fleche-90deg-bas    { &:before { content: "\f10e"; } }
.icon-arrow-90deg-left, .icon-fleche-90deg-gauche    { &:before { content: "\f10f"; } }
.icon-arrow-90deg-right, .icon-fleche-90deg-droite    { &:before { content: "\f110"; } }
.icon-arrow-90deg-up, .icon-fleche-90deg-haut    { &:before { content: "\f111"; } }
.icon-arrow-bar-down, .icon-fleche-bar-bas    { &:before { content: "\f112"; } }
.icon-arrow-bar-left, .icon-fleche-bar-gauche    { &:before { content: "\f113"; } }
.icon-arrow-bar-right, .icon-fleche-bar-droite    { &:before { content: "\f114"; } }
.icon-arrow-bar-up, .icon-fleche-bar-haut    { &:before { content: "\f115"; } }
.icon-arrow-clockwise, .icon-recharge    { &:before { content: "\f116"; } }
.icon-arrow-counterclockwise, .icon-fleche-counterclockwise    { &:before { content: "\f117"; } }
.icon-arrow-down-circle-fill, .icon-fleche-bas-rond-plein    { &:before { content: "\f118"; } }
.icon-arrow-down-circle, .icon-fleche-bas-rond    { &:before { content: "\f119"; } }
.icon-arrow-down-left-circle-fill, .icon-fleche-bas-gauche-rond-plein    { &:before { content: "\f11a"; } }
.icon-arrow-down-left-circle, .icon-fleche-bas-gauche-rond    { &:before { content: "\f11b"; } }
.icon-arrow-down-left-square-fill, .icon-fleche-bas-gauche-carre-plein    { &:before { content: "\f11c"; } }
.icon-arrow-down-left-square, .icon-fleche-bas-gauche-carre    { &:before { content: "\f11d"; } }
.icon-arrow-down-left, .icon-fleche-bas-gauche    { &:before { content: "\f11e"; } }
.icon-arrow-down-right-circle-fill, .icon-fleche-bas-droite-rond-plein    { &:before { content: "\f11f"; } }
.icon-arrow-down-right-circle, .icon-fleche-bas-droite-rond    { &:before { content: "\f120"; } }
.icon-arrow-down-right-square-fill, .icon-fleche-bas-droite-carre-plein    { &:before { content: "\f121"; } }
.icon-arrow-down-right-square, .icon-fleche-bas-droite-carre    { &:before { content: "\f122"; } }
.icon-arrow-down-right, .icon-fleche-bas-droite    { &:before { content: "\f123"; } }
.icon-arrow-down-short, .icon-fleche-bas-court    { &:before { content: "\f124"; } }
.icon-arrow-down-square-fill, .icon-fleche-bas-carre-plein    { &:before { content: "\f125"; } }
.icon-arrow-down-square, .icon-fleche-bas-carre    { &:before { content: "\f126"; } }
.icon-arrow-down-up, .icon-fleche-bas-haut    { &:before { content: "\f127"; } }
.icon-arrow-down, .icon-fleche-bas    { &:before { content: "\f128"; } }
.icon-arrow-left-circle-fill, .icon-fleche-gauche-rond-plein    { &:before { content: "\f129"; } }
.icon-arrow-left-circle, .icon-fleche-gauche-rond    { &:before { content: "\f12a"; } }
.icon-arrow-left-right, .icon-fleche-gauche-droite    { &:before { content: "\f12b"; } }
.icon-arrow-left-short, .icon-fleche-gauche-court    { &:before { content: "\f12c"; } }
.icon-arrow-left-square-fill, .icon-fleche-gauche-carre-plein    { &:before { content: "\f12d"; } }
.icon-arrow-left-square, .icon-fleche-gauche-carre    { &:before { content: "\f12e"; } }
.icon-arrow-left, .icon-fleche-gauche    { &:before { content: "\f12f"; } }
.icon-arrow-repeat, .icon-fleche-repeat    { &:before { content: "\f130"; } }
.icon-arrow-return-left, .icon-fleche-return-gauche    { &:before { content: "\f131"; } }
.icon-arrow-return-right, .icon-fleche-return-droite    { &:before { content: "\f132"; } }
.icon-arrow-right-circle-fill, .icon-fleche-droite-rond-plein    { &:before { content: "\f133"; } }
.icon-arrow-right-circle, .icon-fleche-droite-rond    { &:before { content: "\f134"; } }
.icon-arrow-right-short, .icon-fleche-droite-court    { &:before { content: "\f135"; } }
.icon-arrow-right-square-fill, .icon-fleche-droite-carre-plein    { &:before { content: "\f136"; } }
.icon-arrow-right-square, .icon-fleche-droite-carre    { &:before { content: "\f137"; } }
.icon-arrow-right, .icon-fleche-droite    { &:before { content: "\f138"; } }
.icon-arrow-up-circle-fill, .icon-fleche-bas-rond-plein    { &:before { content: "\f139"; } }
.icon-arrow-up-circle, .icon-fleche-bas-rond    { &:before { content: "\f13a"; } }
.icon-arrow-up-left-circle-fill, .icon-fleche-bas-gauche-rond-plein    { &:before { content: "\f13b"; } }
.icon-arrow-up-left-circle, .icon-fleche-bas-gauche-rond    { &:before { content: "\f13c"; } }
.icon-arrow-up-left-square-fill, .icon-fleche-bas-gauche-carre-plein    { &:before { content: "\f13d"; } }
.icon-arrow-up-left-square, .icon-fleche-bas-gauche-carre    { &:before { content: "\f13e"; } }
.icon-arrow-up-left, .icon-fleche-bas-gauche    { &:before { content: "\f13f"; } }
.icon-arrow-up-right-circle-fill, .icon-fleche-bas-droite-rond-plein    { &:before { content: "\f140"; } }
.icon-arrow-up-right-circle, .icon-fleche-bas-droite-rond    { &:before { content: "\f141"; } }
.icon-arrow-up-right-square-fill, .icon-fleche-bas-droite-carre-plein    { &:before { content: "\f142"; } }
.icon-arrow-up-right-square, .icon-fleche-bas-droite-carre    { &:before { content: "\f143"; } }
.icon-arrow-up-right, .icon-fleche-bas-droite    { &:before { content: "\f144"; } }
.icon-arrow-up-short, .icon-fleche-bas-court    { &:before { content: "\f145"; } }
.icon-arrow-up-square-fill, .icon-fleche-bas-carre-plein    { &:before { content: "\f146"; } }
.icon-arrow-up-square, .icon-fleche-bas-carre    { &:before { content: "\f147"; } }
.icon-arrow-up, .icon-fleche-haut    { &:before { content: "\f148"; } }
.icon-arrows-angle-contract, .icon-fleches-angle-contract    { &:before { content: "\f149"; } }
.icon-arrows-angle-expand, .icon-fleches-angle-expand    { &:before { content: "\f14a"; } }
.icon-arrows-collapse, .icon-fleches-collapse    { &:before { content: "\f14b"; } }
.icon-arrows-expand, .icon-fleches-expand    { &:before { content: "\f14c"; } }
.icon-arrows-fullscreen, .icon-fleches-plein-ecran    { &:before { content: "\f14d"; } }
.icon-arrows-move, .icon-fleches-move    { &:before { content: "\f14e"; } }
.icon-aspect-ratio-fill, .icon-aspect-ratio-plein    { &:before { content: "\f14f"; } }
.icon-aspect-ratio, .icon-aspect-ratio    { &:before { content: "\f150"; } }
.icon-asterisk, .icon-asterisk    { &:before { content: "\f151"; } }
.icon-at, .icon-at    { &:before { content: "\f152"; } }
.icon-award-fill, .icon-award-plein    { &:before { content: "\f153"; } }
.icon-award, .icon-award    { &:before { content: "\f154"; } }
.icon-back, .icon-back    { &:before { content: "\f155"; } }
.icon-backspace-fill, .icon-backspace-plein    { &:before { content: "\f156"; } }
.icon-backspace-reverse-fill, .icon-backspace-reverse-plein    { &:before { content: "\f157"; } }
.icon-backspace-reverse, .icon-backspace-reverse    { &:before { content: "\f158"; } }
.icon-backspace, .icon-backspace    { &:before { content: "\f159"; } }
.icon-badge-3d-fill, .icon-badge-3d-plein    { &:before { content: "\f15a"; } }
.icon-badge-3d, .icon-badge-3d    { &:before { content: "\f15b"; } }
.icon-badge-4k-fill, .icon-badge-4k-plein    { &:before { content: "\f15c"; } }
.icon-badge-4k, .icon-badge-4k    { &:before { content: "\f15d"; } }
.icon-badge-8k-fill, .icon-badge-8k-plein    { &:before { content: "\f15e"; } }
.icon-badge-8k, .icon-badge-8k    { &:before { content: "\f15f"; } }
.icon-badge-ad-fill, .icon-badge-ad-plein    { &:before { content: "\f160"; } }
.icon-badge-ad, .icon-badge-ad    { &:before { content: "\f161"; } }
.icon-badge-ar-fill, .icon-badge-ar-plein    { &:before { content: "\f162"; } }
.icon-badge-ar, .icon-badge-ar    { &:before { content: "\f163"; } }
.icon-badge-cc-fill, .icon-badge-cc-plein    { &:before { content: "\f164"; } }
.icon-badge-cc, .icon-badge-cc    { &:before { content: "\f165"; } }
.icon-badge-hd-fill, .icon-badge-hd-plein    { &:before { content: "\f166"; } }
.icon-badge-hd, .icon-badge-hd    { &:before { content: "\f167"; } }
.icon-badge-tm-fill, .icon-badge-tm-plein    { &:before { content: "\f168"; } }
.icon-badge-tm, .icon-badge-tm    { &:before { content: "\f169"; } }
.icon-badge-vo-fill, .icon-badge-vo-plein    { &:before { content: "\f16a"; } }
.icon-badge-vo, .icon-badge-vo    { &:before { content: "\f16b"; } }
.icon-badge-vr-fill, .icon-badge-vr-plein    { &:before { content: "\f16c"; } }
.icon-badge-vr, .icon-badge-vr    { &:before { content: "\f16d"; } }
.icon-badge-wc-fill, .icon-badge-wc-plein    { &:before { content: "\f16e"; } }
.icon-badge-wc, .icon-badge-wc    { &:before { content: "\f16f"; } }
.icon-bag-check-fill, .icon-bag-ok-plein    { &:before { content: "\f170"; } }
.icon-bag-check, .icon-bag-ok    { &:before { content: "\f171"; } }
.icon-bag-dash-fill, .icon-bag-dash-plein    { &:before { content: "\f172"; } }
.icon-bag-dash, .icon-bag-dash    { &:before { content: "\f173"; } }
.icon-bag-fill, .icon-bag-plein    { &:before { content: "\f174"; } }
.icon-bag-plus-fill, .icon-bag-plus-plein    { &:before { content: "\f175"; } }
.icon-bag-plus, .icon-bag-plus    { &:before { content: "\f176"; } }
.icon-bag-x-fill, .icon-bag-x-plein    { &:before { content: "\f177"; } }
.icon-bag-x, .icon-bag-croix    { &:before { content: "\f178"; } }
.icon-bag, .icon-bag    { &:before { content: "\f179"; } }
.icon-bar-chart-fill, .icon-histogramme-plein    { &:before { content: "\f17a"; } }
.icon-bar-chart-line-fill, .icon-histogramme-line-plein    { &:before { content: "\f17b"; } }
.icon-bar-chart-line, .icon-histogramme-line    { &:before { content: "\f17c"; } }
.icon-bar-chart-steps, .icon-histogramme-steps    { &:before { content: "\f17d"; } }
.icon-bar-chart, .icon-histogramme    { &:before { content: "\f17e"; } }
.icon-basket-fill, .icon-basket-plein    { &:before { content: "\f17f"; } }
.icon-basket, .icon-basket    { &:before { content: "\f180"; } }
.icon-basket2-fill, .icon-basket2-plein    { &:before { content: "\f181"; } }
.icon-basket2, .icon-basket2    { &:before { content: "\f182"; } }
.icon-basket3-fill, .icon-basket3-plein    { &:before { content: "\f183"; } }
.icon-basket3, .icon-basket3    { &:before { content: "\f184"; } }
.icon-battery-charging, .icon-batterie-charging    { &:before { content: "\f185"; } }
.icon-battery-full, .icon-batterie-full    { &:before { content: "\f186"; } }
.icon-battery-half, .icon-batterie-moitie    { &:before { content: "\f187"; } }
.icon-battery, .icon-batterie    { &:before { content: "\f188"; } }
.icon-bell-fill, .icon-alarme-plein    { &:before { content: "\f189"; } }
.icon-bell, .icon-alarme    { &:before { content: "\f18a"; } }
.icon-bezier, .icon-bezier    { &:before { content: "\f18b"; } }
.icon-bezier2, .icon-bezier2    { &:before { content: "\f18c"; } }
.icon-bicycle, .icon-velo    { &:before { content: "\f18d"; } }
.icon-binoculars-fill, .icon-lunettes-plein    { &:before { content: "\f18e"; } }
.icon-binoculars, .icon-lunettes    { &:before { content: "\f18f"; } }
.icon-blockquote-left, .icon-blockquote-gauche    { &:before { content: "\f190"; } }
.icon-blockquote-right, .icon-blockquote-droite    { &:before { content: "\f191"; } }
.icon-book-fill, .icon-livre-plein    { &:before { content: "\f192"; } }
.icon-book-half, .icon-livre-moitie    { &:before { content: "\f193"; } }
.icon-book, .icon-livre    { &:before { content: "\f194"; } }
.icon-bookmark-check-fill, .icon-livremark-ok-plein    { &:before { content: "\f195"; } }
.icon-bookmark-check, .icon-livremark-ok    { &:before { content: "\f196"; } }
.icon-bookmark-dash-fill, .icon-livremark-dash-plein    { &:before { content: "\f197"; } }
.icon-bookmark-dash, .icon-livremark-dash    { &:before { content: "\f198"; } }
.icon-bookmark-fill, .icon-livremark-plein    { &:before { content: "\f199"; } }
.icon-bookmark-heart-fill, .icon-livremark-coeur-plein    { &:before { content: "\f19a"; } }
.icon-bookmark-heart, .icon-livremark-coeur    { &:before { content: "\f19b"; } }
.icon-bookmark-plus-fill, .icon-livremark-plus-plein    { &:before { content: "\f19c"; } }
.icon-bookmark-plus, .icon-livremark-plus    { &:before { content: "\f19d"; } }
.icon-bookmark-star-fill, .icon-livremark-star-plein    { &:before { content: "\f19e"; } }
.icon-bookmark-star, .icon-livremark-star    { &:before { content: "\f19f"; } }
.icon-bookmark-x-fill, .icon-livremark-x-plein    { &:before { content: "\f1a0"; } }
.icon-bookmark-x, .icon-livremark-croix    { &:before { content: "\f1a1"; } }
.icon-bookmark, .icon-livremark    { &:before { content: "\f1a2"; } }
.icon-bookmarks-fill, .icon-livremarks-plein    { &:before { content: "\f1a3"; } }
.icon-bookmarks, .icon-livremarks    { &:before { content: "\f1a4"; } }
.icon-bookshelf, .icon-livreshelf    { &:before { content: "\f1a5"; } }
.icon-bootstrap-fill, .icon-bootstrap-plein    { &:before { content: "\f1a6"; } }
.icon-bootstrap-reboot, .icon-bootstrap-reboot    { &:before { content: "\f1a7"; } }
.icon-bootstrap, .icon-bootstrap    { &:before { content: "\f1a8"; } }
.icon-pleiner-all, .icon-plein-tout    { &:before { content: "\f1a9"; } }
.icon-pleiner-bottom, .icon-plein-bas    { &:before { content: "\f1aa"; } }
.icon-pleiner-center, .icon-plein-centre    { &:before { content: "\f1ab"; } }
.icon-pleiner-inner, .icon-plein-inner    { &:before { content: "\f1ac"; } }
.icon-pleiner-left, .icon-plein-gauche    { &:before { content: "\f1ad"; } }
.icon-pleiner-middle, .icon-plein-milieu    { &:before { content: "\f1ae"; } }
.icon-pleiner-outer, .icon-plein-outer    { &:before { content: "\f1af"; } }
.icon-pleiner-right, .icon-plein-droite    { &:before { content: "\f1b0"; } }
.icon-pleiner-style, .icon-plein-style    { &:before { content: "\f1b1"; } }
.icon-pleiner-top, .icon-plein-haut    { &:before { content: "\f1b2"; } }
.icon-pleiner-width, .icon-plein-width    { &:before { content: "\f1b3"; } }
.icon-pleiner, .icon-plein    { &:before { content: "\f1b4"; } }
.icon-bounding-box-circles, .icon-bounding-box-ronds    { &:before { content: "\f1b5"; } }
.icon-bounding-box, .icon-bounding-box    { &:before { content: "\f1b6"; } }
.icon-box-arrow-down-left, .icon-box-fleche-bas-gauche    { &:before { content: "\f1b7"; } }
.icon-box-arrow-down-right, .icon-box-fleche-bas-droite    { &:before { content: "\f1b8"; } }
.icon-box-arrow-down, .icon-box-fleche-bas    { &:before { content: "\f1b9"; } }
.icon-box-arrow-in-down-left, .icon-box-fleche-in-bas-gauche    { &:before { content: "\f1ba"; } }
.icon-box-arrow-in-down-right, .icon-box-fleche-in-bas-droite    { &:before { content: "\f1bb"; } }
.icon-box-arrow-in-down, .icon-box-fleche-in-bas    { &:before { content: "\f1bc"; } }
.icon-box-arrow-in-left, .icon-box-fleche-in-gauche    { &:before { content: "\f1bd"; } }
.icon-box-arrow-in-right, .icon-box-fleche-in-droite    { &:before { content: "\f1be"; } }
.icon-box-arrow-in-up-left, .icon-box-fleche-in-bas-gauche    { &:before { content: "\f1bf"; } }
.icon-box-arrow-in-up-right, .icon-box-fleche-in-bas-droite    { &:before { content: "\f1c0"; } }
.icon-box-arrow-in-up, .icon-box-fleche-in-haut    { &:before { content: "\f1c1"; } }
.icon-box-arrow-left, .icon-box-fleche-gauche    { &:before { content: "\f1c2"; } }
.icon-box-arrow-right, .icon-log-out    { &:before { content: "\f1c3"; } }
.icon-box-arrow-up-left, .icon-box-fleche-bas-gauche    { &:before { content: "\f1c4"; } }
.icon-box-arrow-up-right, .icon-box-fleche-bas-droite    { &:before { content: "\f1c5"; } }
.icon-box-arrow-up, .icon-box-fleche-haut    { &:before { content: "\f1c6"; } }
.icon-box-seam, .icon-box-seam    { &:before { content: "\f1c7"; } }
.icon-box, .icon-box    { &:before { content: "\f1c8"; } }
.icon-braces, .icon-braces    { &:before { content: "\f1c9"; } }
.icon-bricks, .icon-bricks    { &:before { content: "\f1ca"; } }
.icon-briefcase-fill, .icon-briefcase-plein    { &:before { content: "\f1cb"; } }
.icon-briefcase, .icon-briefcase    { &:before { content: "\f1cc"; } }
.icon-brightness-alt-high-fill, .icon-brightness-alt-high-plein    { &:before { content: "\f1cd"; } }
.icon-brightness-alt-high, .icon-brightness-alt-high    { &:before { content: "\f1ce"; } }
.icon-brightness-alt-low-fill, .icon-brightness-alt-low-plein    { &:before { content: "\f1cf"; } }
.icon-brightness-alt-low, .icon-brightness-alt-low    { &:before { content: "\f1d0"; } }
.icon-brightness-high-fill, .icon-brightness-high-plein    { &:before { content: "\f1d1"; } }
.icon-brightness-high, .icon-brightness-high    { &:before { content: "\f1d2"; } }
.icon-brightness-low-fill, .icon-brightness-low-plein    { &:before { content: "\f1d3"; } }
.icon-brightness-low, .icon-brightness-low    { &:before { content: "\f1d4"; } }
.icon-broadcast-pin, .icon-broadcast-pin    { &:before { content: "\f1d5"; } }
.icon-broadcast, .icon-broadcast    { &:before { content: "\f1d6"; } }
.icon-brush-fill, .icon-brush-plein    { &:before { content: "\f1d7"; } }
.icon-brush, .icon-brush    { &:before { content: "\f1d8"; } }
.icon-bucket-fill, .icon-bucket-plein    { &:before { content: "\f1d9"; } }
.icon-bucket, .icon-bucket    { &:before { content: "\f1da"; } }
.icon-bug-fill, .icon-bug-plein    { &:before { content: "\f1db"; } }
.icon-bug, .icon-bug    { &:before { content: "\f1dc"; } }
.icon-building, .icon-immeuble    { &:before { content: "\f1dd"; } }
.icon-bullseye, .icon-bullseye    { &:before { content: "\f1de"; } }
.icon-calculator-fill, .icon-calculator-plein    { &:before { content: "\f1df"; } }
.icon-calculator, .icon-calculator    { &:before { content: "\f1e0"; } }
.icon-calendar-check-fill, .icon-calendar-ok-plein    { &:before { content: "\f1e1"; } }
.icon-calendar-check, .icon-calendar-ok    { &:before { content: "\f1e2"; } }
.icon-calendar-date-fill, .icon-calendar-date-plein    { &:before { content: "\f1e3"; } }
.icon-calendar-date, .icon-calendar-date    { &:before { content: "\f1e4"; } }
.icon-calendar-day-fill, .icon-calendar-day-plein    { &:before { content: "\f1e5"; } }
.icon-calendar-day, .icon-calendar-day    { &:before { content: "\f1e6"; } }
.icon-calendar-event-fill, .icon-calendar-event-plein    { &:before { content: "\f1e7"; } }
.icon-calendar-event, .icon-calendar-event    { &:before { content: "\f1e8"; } }
.icon-calendar-fill, .icon-calendar-plein    { &:before { content: "\f1e9"; } }
.icon-calendar-minus-fill, .icon-calendar-minus-plein    { &:before { content: "\f1ea"; } }
.icon-calendar-minus, .icon-calendar-minus    { &:before { content: "\f1eb"; } }
.icon-calendar-month-fill, .icon-calendar-month-plein    { &:before { content: "\f1ec"; } }
.icon-calendar-month, .icon-calendar-month    { &:before { content: "\f1ed"; } }
.icon-calendar-plus-fill, .icon-calendar-plus-plein    { &:before { content: "\f1ee"; } }
.icon-calendar-plus, .icon-calendar-plus    { &:before { content: "\f1ef"; } }
.icon-calendar-range-fill, .icon-calendar-range-plein    { &:before { content: "\f1f0"; } }
.icon-calendar-range, .icon-calendar-range    { &:before { content: "\f1f1"; } }
.icon-calendar-week-fill, .icon-calendar-week-plein    { &:before { content: "\f1f2"; } }
.icon-calendar-week, .icon-calendar-week    { &:before { content: "\f1f3"; } }
.icon-calendar-x-fill, .icon-calendar-x-plein    { &:before { content: "\f1f4"; } }
.icon-calendar-x, .icon-calendar-croix    { &:before { content: "\f1f5"; } }
.icon-calendar, .icon-calendar    { &:before { content: "\f1f6"; } }
.icon-calendar2-check-fill, .icon-calendar2-ok-plein    { &:before { content: "\f1f7"; } }
.icon-calendar2-check, .icon-calendar2-ok    { &:before { content: "\f1f8"; } }
.icon-calendar2-date-fill, .icon-calendar2-date-plein    { &:before { content: "\f1f9"; } }
.icon-calendar2-date, .icon-calendar2-date    { &:before { content: "\f1fa"; } }
.icon-calendar2-day-fill, .icon-calendar2-day-plein    { &:before { content: "\f1fb"; } }
.icon-calendar2-day, .icon-calendar2-day    { &:before { content: "\f1fc"; } }
.icon-calendar2-event-fill, .icon-calendar2-event-plein    { &:before { content: "\f1fd"; } }
.icon-calendar2-event, .icon-calendar2-event    { &:before { content: "\f1fe"; } }
.icon-calendar2-fill, .icon-calendar2-plein    { &:before { content: "\f1ff"; } }
.icon-calendar2-minus-fill, .icon-calendar2-minus-plein    { &:before { content: "\f200"; } }
.icon-calendar2-minus, .icon-calendar2-minus    { &:before { content: "\f201"; } }
.icon-calendar2-month-fill, .icon-calendar2-month-plein    { &:before { content: "\f202"; } }
.icon-calendar2-month, .icon-calendar2-month    { &:before { content: "\f203"; } }
.icon-calendar2-plus-fill, .icon-calendar2-plus-plein    { &:before { content: "\f204"; } }
.icon-calendar2-plus, .icon-calendar2-plus    { &:before { content: "\f205"; } }
.icon-calendar2-range-fill, .icon-calendar2-range-plein    { &:before { content: "\f206"; } }
.icon-calendar2-range, .icon-calendar2-range    { &:before { content: "\f207"; } }
.icon-calendar2-week-fill, .icon-calendar2-week-plein    { &:before { content: "\f208"; } }
.icon-calendar2-week, .icon-calendar2-week    { &:before { content: "\f209"; } }
.icon-calendar2-x-fill, .icon-calendar2-x-plein    { &:before { content: "\f20a"; } }
.icon-calendar2-x, .icon-calendar2-croix    { &:before { content: "\f20b"; } }
.icon-calendar2, .icon-calendar2    { &:before { content: "\f20c"; } }
.icon-calendar3-event-fill, .icon-calendar3-event-plein    { &:before { content: "\f20d"; } }
.icon-calendar3-event, .icon-calendar3-event    { &:before { content: "\f20e"; } }
.icon-calendar3-fill, .icon-calendar3-plein    { &:before { content: "\f20f"; } }
.icon-calendar3-range-fill, .icon-calendar3-range-plein    { &:before { content: "\f210"; } }
.icon-calendar3-range, .icon-calendar3-range    { &:before { content: "\f211"; } }
.icon-calendar3-week-fill, .icon-calendar3-week-plein    { &:before { content: "\f212"; } }
.icon-calendar3-week, .icon-calendar3-week    { &:before { content: "\f213"; } }
.icon-calendar3, .icon-calendar3    { &:before { content: "\f214"; } }
.icon-calendar4-event, .icon-calendar4-event    { &:before { content: "\f215"; } }
.icon-calendar4-range, .icon-calendar4-range    { &:before { content: "\f216"; } }
.icon-calendar4-week, .icon-calendar4-week    { &:before { content: "\f217"; } }
.icon-calendar4, .icon-calendar4    { &:before { content: "\f218"; } }
.icon-camera-fill, .icon-camera-plein    { &:before { content: "\f219"; } }
.icon-camera-reels-fill, .icon-camera-reels-plein    { &:before { content: "\f21a"; } }
.icon-camera-reels, .icon-camera-reels    { &:before { content: "\f21b"; } }
.icon-camera-video-fill, .icon-camera-video-plein    { &:before { content: "\f21c"; } }
.icon-camera-video-off-fill, .icon-camera-video-off-plein    { &:before { content: "\f21d"; } }
.icon-camera-video-off, .icon-camera-video-off    { &:before { content: "\f21e"; } }
.icon-camera-video, .icon-camera-video    { &:before { content: "\f21f"; } }
.icon-camera, .icon-camera    { &:before { content: "\f220"; } }
.icon-camera2, .icon-camera2    { &:before { content: "\f221"; } }
.icon-capslock-fill, .icon-capslock-plein    { &:before { content: "\f222"; } }
.icon-capslock, .icon-capslock    { &:before { content: "\f223"; } }
.icon-card-checklist, .icon-cb-oklist    { &:before { content: "\f224"; } }
.icon-card-heading, .icon-cb-heading    { &:before { content: "\f225"; } }
.icon-card-image, .icon-cb-image    { &:before { content: "\f226"; } }
.icon-card-list, .icon-cb-liste    { &:before { content: "\f227"; } }
.icon-card-text, .icon-cb-texte    { &:before { content: "\f228"; } }
.icon-caret-down-fill, .icon-caret-bas-plein    { &:before { content: "\f229"; } }
.icon-caret-down-square-fill, .icon-caret-bas-carre-plein    { &:before { content: "\f22a"; } }
.icon-caret-down-square, .icon-caret-bas-carre    { &:before { content: "\f22b"; } }
.icon-caret-down, .icon-caret-bas    { &:before { content: "\f22c"; } }
.icon-caret-left-fill, .icon-caret-gauche-plein    { &:before { content: "\f22d"; } }
.icon-caret-left-square-fill, .icon-caret-gauche-carre-plein    { &:before { content: "\f22e"; } }
.icon-caret-left-square, .icon-caret-gauche-carre    { &:before { content: "\f22f"; } }
.icon-caret-left, .icon-caret-gauche    { &:before { content: "\f230"; } }
.icon-caret-right-fill, .icon-caret-droite-plein    { &:before { content: "\f231"; } }
.icon-caret-right-square-fill, .icon-caret-droite-carre-plein    { &:before { content: "\f232"; } }
.icon-caret-right-square, .icon-caret-droite-carre    { &:before { content: "\f233"; } }
.icon-caret-right, .icon-caret-droite    { &:before { content: "\f234"; } }
.icon-caret-up-fill, .icon-caret-bas-plein    { &:before { content: "\f235"; } }
.icon-caret-up-square-fill, .icon-caret-bas-carre-plein    { &:before { content: "\f236"; } }
.icon-caret-up-square, .icon-caret-bas-carre    { &:before { content: "\f237"; } }
.icon-caret-up, .icon-caret-haut    { &:before { content: "\f238"; } }
.icon-cart-check-fill, .icon-caddie-ok-plein    { &:before { content: "\f239"; } }
.icon-cart-check, .icon-caddie-ok    { &:before { content: "\f23a"; } }
.icon-cart-dash-fill, .icon-caddie-dash-plein    { &:before { content: "\f23b"; } }
.icon-cart-dash, .icon-caddie-dash    { &:before { content: "\f23c"; } }
.icon-cart-fill, .icon-caddie-plein    { &:before { content: "\f23d"; } }
.icon-cart-plus-fill, .icon-caddie-plus-plein    { &:before { content: "\f23e"; } }
.icon-cart-plus, .icon-caddie-plus    { &:before { content: "\f23f"; } }
.icon-cart-x-fill, .icon-caddie-x-plein    { &:before { content: "\f240"; } }
.icon-cart-x, .icon-caddie-croix    { &:before { content: "\f241"; } }
.icon-cart, .icon-caddie    { &:before { content: "\f242"; } }
.icon-cart2, .icon-caddie2    { &:before { content: "\f243"; } }
.icon-cart3, .icon-caddie3    { &:before { content: "\f244"; } }
.icon-cart4, .icon-caddie4    { &:before { content: "\f245"; } }
.icon-cash-stack, .icon-cash-stack    { &:before { content: "\f246"; } }
.icon-cash, .icon-cash    { &:before { content: "\f247"; } }
.icon-cast, .icon-cast    { &:before { content: "\f248"; } }
.icon-chat-dots-fill, .icon-chat-dots-plein    { &:before { content: "\f249"; } }
.icon-chat-dots, .icon-chat-dots    { &:before { content: "\f24a"; } }
.icon-chat-fill, .icon-chat-plein    { &:before { content: "\f24b"; } }
.icon-chat-left-dots-fill, .icon-chat-gauche-dots-plein    { &:before { content: "\f24c"; } }
.icon-chat-left-dots, .icon-chat-gauche-dots    { &:before { content: "\f24d"; } }
.icon-chat-left-fill, .icon-chat-gauche-plein    { &:before { content: "\f24e"; } }
.icon-chat-left-quote-fill, .icon-chat-gauche-quote-plein    { &:before { content: "\f24f"; } }
.icon-chat-left-quote, .icon-chat-gauche-quote    { &:before { content: "\f250"; } }
.icon-chat-left-text-fill, .icon-chat-gauche-texte-plein    { &:before { content: "\f251"; } }
.icon-chat-left-text, .icon-chat-gauche-texte    { &:before { content: "\f252"; } }
.icon-chat-left, .icon-chat-gauche    { &:before { content: "\f253"; } }
.icon-chat-quote-fill, .icon-chat-quote-plein    { &:before { content: "\f254"; } }
.icon-chat-quote, .icon-chat-quote    { &:before { content: "\f255"; } }
.icon-chat-right-dots-fill, .icon-chat-droite-dots-plein    { &:before { content: "\f256"; } }
.icon-chat-right-dots, .icon-chat-droite-dots    { &:before { content: "\f257"; } }
.icon-chat-right-fill, .icon-chat-droite-plein    { &:before { content: "\f258"; } }
.icon-chat-right-quote-fill, .icon-chat-droite-quote-plein    { &:before { content: "\f259"; } }
.icon-chat-right-quote, .icon-chat-droite-quote    { &:before { content: "\f25a"; } }
.icon-chat-right-text-fill, .icon-chat-droite-texte-plein    { &:before { content: "\f25b"; } }
.icon-chat-right-text, .icon-chat-droite-texte    { &:before { content: "\f25c"; } }
.icon-chat-right, .icon-chat-droite    { &:before { content: "\f25d"; } }
.icon-chat-square-dots-fill, .icon-chat-carre-dots-plein    { &:before { content: "\f25e"; } }
.icon-chat-square-dots, .icon-chat-carre-dots    { &:before { content: "\f25f"; } }
.icon-chat-square-fill, .icon-chat-carre-plein    { &:before { content: "\f260"; } }
.icon-chat-square-quote-fill, .icon-chat-carre-quote-plein    { &:before { content: "\f261"; } }
.icon-chat-square-quote, .icon-chat-carre-quote    { &:before { content: "\f262"; } }
.icon-chat-square-text-fill, .icon-chat-carre-texte-plein    { &:before { content: "\f263"; } }
.icon-chat-square-text, .icon-chat-carre-texte    { &:before { content: "\f264"; } }
.icon-chat-square, .icon-chat-carre    { &:before { content: "\f265"; } }
.icon-chat-text-fill, .icon-chat-texte-plein    { &:before { content: "\f266"; } }
.icon-chat-text, .icon-chat-texte    { &:before { content: "\f267"; } }
.icon-chat, .icon-chat    { &:before { content: "\f268"; } }
.icon-check-all, .icon-ok-tout    { &:before { content: "\f269"; } }
.icon-check-circle-fill, .icon-ok-rond-plein    { &:before { content: "\f26a"; } }
.icon-check-circle, .icon-ok-rond    { &:before { content: "\f26b"; } }
.icon-check-square-fill, .icon-ok-carre-plein    { &:before { content: "\f26c"; } }
.icon-check-square, .icon-ok-carre    { &:before { content: "\f26d"; } }
.icon-check, .icon-ok    { &:before { content: "\f26e"; } }
.icon-check2-all, .icon-ok2-tout    { &:before { content: "\f26f"; } }
.icon-check2-circle, .icon-ok2-rond    { &:before { content: "\f270"; } }
.icon-check2-square, .icon-ok2-carre    { &:before { content: "\f271"; } }
.icon-check2, .icon-ok2    { &:before { content: "\f272"; } }
.icon-chevron-bar-contract, .icon-chevron-bar-contract    { &:before { content: "\f273"; } }
.icon-chevron-bar-down, .icon-chevron-bar-bas    { &:before { content: "\f274"; } }
.icon-chevron-bar-expand, .icon-chevron-bar-expand    { &:before { content: "\f275"; } }
.icon-chevron-bar-left, .icon-chevron-bar-gauche    { &:before { content: "\f276"; } }
.icon-chevron-bar-right, .icon-chevron-bar-droite    { &:before { content: "\f277"; } }
.icon-chevron-bar-up, .icon-chevron-bar-haut    { &:before { content: "\f278"; } }
.icon-chevron-compact-down, .icon-chevron-compact-bas    { &:before { content: "\f279"; } }
.icon-chevron-compact-left, .icon-chevron-compact-gauche    { &:before { content: "\f27a"; } }
.icon-chevron-compact-right, .icon-chevron-compact-droite    { &:before { content: "\f27b"; } }
.icon-chevron-compact-up, .icon-chevron-compact-haut    { &:before { content: "\f27c"; } }
.icon-chevron-contract, .icon-chevron-contract    { &:before { content: "\f27d"; } }
.icon-chevron-double-down, .icon-chevron-double-bas    { &:before { content: "\f27e"; } }
.icon-chevron-double-left, .icon-chevron-double-gauche    { &:before { content: "\f27f"; } }
.icon-chevron-double-right, .icon-chevron-double-droite    { &:before { content: "\f280"; } }
.icon-chevron-double-up, .icon-chevron-double-haut    { &:before { content: "\f281"; } }
.icon-chevron-down, .icon-chevron-bas    { &:before { content: "\f282"; } }
.icon-chevron-expand, .icon-chevron-expand    { &:before { content: "\f283"; } }
.icon-chevron-left, .icon-chevron-gauche    { &:before { content: "\f284"; } }
.icon-chevron-right, .icon-chevron-droite    { &:before { content: "\f285"; } }
.icon-chevron-up, .icon-chevron-haut    { &:before { content: "\f286"; } }
.icon-circle-fill, .icon-rond-plein    { &:before { content: "\f287"; } }
.icon-circle-half, .icon-rond-moitie    { &:before { content: "\f288"; } }
.icon-circle-square, .icon-rond-carre    { &:before { content: "\f289"; } }
.icon-circle, .icon-rond    { &:before { content: "\f28a"; } }
.icon-clipboard-check, .icon-clipboard-ok    { &:before { content: "\f28b"; } }
.icon-clipboard-data, .icon-clipboard-data    { &:before { content: "\f28c"; } }
.icon-clipboard-minus, .icon-clipboard-minus    { &:before { content: "\f28d"; } }
.icon-clipboard-plus, .icon-clipboard-plus    { &:before { content: "\f28e"; } }
.icon-clipboard-x, .icon-clipboard-croix    { &:before { content: "\f28f"; } }
.icon-clipboard, .icon-clipboard    { &:before { content: "\f290"; } }
.icon-clock-fill, .icon-horloge-plein    { &:before { content: "\f116"; } }
.icon-clock-history, .icon-horloge-history    { &:before { content: "\f292"; } }
.icon-clock, .icon-horloge    { &:before { content: "\f116"; } }
.icon-cloud-arrow-down-fill, .icon-cloud-fleche-bas-plein    { &:before { content: "\f294"; } }
.icon-cloud-arrow-down, .icon-cloud-fleche-bas    { &:before { content: "\f295"; } }
.icon-cloud-arrow-up-fill, .icon-cloud-fleche-bas-plein    { &:before { content: "\f296"; } }
.icon-cloud-arrow-up, .icon-cloud-fleche-haut    { &:before { content: "\f297"; } }
.icon-cloud-check-fill, .icon-cloud-ok-plein    { &:before { content: "\f298"; } }
.icon-cloud-check, .icon-cloud-ok    { &:before { content: "\f299"; } }
.icon-cloud-download-fill, .icon-cloud-basload-plein    { &:before { content: "\f29a"; } }
.icon-cloud-download, .icon-cloud-basload    { &:before { content: "\f29b"; } }
.icon-cloud-drizzle-fill, .icon-cloud-drizzle-plein    { &:before { content: "\f29c"; } }
.icon-cloud-drizzle, .icon-cloud-drizzle    { &:before { content: "\f29d"; } }
.icon-cloud-fill, .icon-cloud-plein    { &:before { content: "\f29e"; } }
.icon-cloud-fog-fill, .icon-cloud-fog-plein    { &:before { content: "\f29f"; } }
.icon-cloud-fog, .icon-cloud-fog    { &:before { content: "\f2a0"; } }
.icon-cloud-fog2-fill, .icon-cloud-fog2-plein    { &:before { content: "\f2a1"; } }
.icon-cloud-fog2, .icon-cloud-fog2    { &:before { content: "\f2a2"; } }
.icon-cloud-hail-fill, .icon-cloud-hail-plein    { &:before { content: "\f2a3"; } }
.icon-cloud-hail, .icon-cloud-hail    { &:before { content: "\f2a4"; } }
.icon-cloud-haze-1, .icon-cloud-haze-1    { &:before { content: "\f2a5"; } }
.icon-cloud-haze-fill, .icon-cloud-haze-plein    { &:before { content: "\f2a6"; } }
.icon-cloud-haze, .icon-cloud-haze    { &:before { content: "\f2a7"; } }
.icon-cloud-haze2-fill, .icon-cloud-haze2-plein    { &:before { content: "\f2a8"; } }
.icon-cloud-lightning-fill, .icon-cloud-lightning-plein    { &:before { content: "\f2a9"; } }
.icon-cloud-lightning-rain-fill, .icon-cloud-lightning-rain-plein    { &:before { content: "\f2aa"; } }
.icon-cloud-lightning-rain, .icon-cloud-lightning-rain    { &:before { content: "\f2ab"; } }
.icon-cloud-lightning, .icon-cloud-lightning    { &:before { content: "\f2ac"; } }
.icon-cloud-minus-fill, .icon-cloud-minus-plein    { &:before { content: "\f2ad"; } }
.icon-cloud-minus, .icon-cloud-minus    { &:before { content: "\f2ae"; } }
.icon-cloud-moon-fill, .icon-cloud-moon-plein    { &:before { content: "\f2af"; } }
.icon-cloud-moon, .icon-cloud-moon    { &:before { content: "\f2b0"; } }
.icon-cloud-plus-fill, .icon-cloud-plus-plein    { &:before { content: "\f2b1"; } }
.icon-cloud-plus, .icon-cloud-plus    { &:before { content: "\f2b2"; } }
.icon-cloud-rain-fill, .icon-cloud-rain-plein    { &:before { content: "\f2b3"; } }
.icon-cloud-rain-heavy-fill, .icon-cloud-rain-heavy-plein    { &:before { content: "\f2b4"; } }
.icon-cloud-rain-heavy, .icon-cloud-rain-heavy    { &:before { content: "\f2b5"; } }
.icon-cloud-rain, .icon-cloud-rain    { &:before { content: "\f2b6"; } }
.icon-cloud-slash-fill, .icon-cloud-slash-plein    { &:before { content: "\f2b7"; } }
.icon-cloud-slash, .icon-cloud-slash    { &:before { content: "\f2b8"; } }
.icon-cloud-sleet-fill, .icon-cloud-sleet-plein    { &:before { content: "\f2b9"; } }
.icon-cloud-sleet, .icon-cloud-sleet    { &:before { content: "\f2ba"; } }
.icon-cloud-snow-fill, .icon-cloud-snow-plein    { &:before { content: "\f2bb"; } }
.icon-cloud-snow, .icon-cloud-snow    { &:before { content: "\f2bc"; } }
.icon-cloud-sun-fill, .icon-cloud-sun-plein    { &:before { content: "\f2bd"; } }
.icon-cloud-sun, .icon-cloud-sun    { &:before { content: "\f2be"; } }
.icon-cloud-upload-fill, .icon-cloud-upload-plein    { &:before { content: "\f2bf"; } }
.icon-cloud-upload, .icon-cloud-upload    { &:before { content: "\f2c0"; } }
.icon-cloud, .icon-cloud    { &:before { content: "\f2c1"; } }
.icon-clouds-fill, .icon-clouds-plein    { &:before { content: "\f2c2"; } }
.icon-clouds, .icon-clouds    { &:before { content: "\f2c3"; } }
.icon-cloudy-fill, .icon-cloudy-plein    { &:before { content: "\f2c4"; } }
.icon-cloudy, .icon-cloudy    { &:before { content: "\f2c5"; } }
.icon-code-slash, .icon-code-slash    { &:before { content: "\f2c6"; } }
.icon-code-square, .icon-code-carre    { &:before { content: "\f2c7"; } }
.icon-code, .icon-code    { &:before { content: "\f2c8"; } }
.icon-collection-fill, .icon-collection-plein    { &:before { content: "\f2c9"; } }
.icon-collection-play-fill, .icon-collection-play-plein    { &:before { content: "\f2ca"; } }
.icon-collection-play, .icon-collection-play    { &:before { content: "\f2cb"; } }
.icon-collection, .icon-collection    { &:before { content: "\f2cc"; } }
.icon-columns-gap, .icon-columns-gap    { &:before { content: "\f2cd"; } }
.icon-columns, .icon-columns    { &:before { content: "\f2ce"; } }
.icon-command, .icon-command    { &:before { content: "\f2cf"; } }
.icon-compass-fill, .icon-compass-plein    { &:before { content: "\f2d0"; } }
.icon-compass, .icon-compass    { &:before { content: "\f2d1"; } }
.icon-cone-striped, .icon-cone-striped    { &:before { content: "\f2d2"; } }
.icon-cone, .icon-cone    { &:before { content: "\f2d3"; } }
.icon-controller, .icon-controller    { &:before { content: "\f2d4"; } }
.icon-cpu-fill, .icon-cpu-plein    { &:before { content: "\f2d5"; } }
.icon-cpu, .icon-cpu    { &:before { content: "\f2d6"; } }
.icon-credit-card-2-back-fill, .icon-credit-cb-2-back-plein    { &:before { content: "\f2d7"; } }
.icon-credit-card-2-back, .icon-credit-cb-2-back    { &:before { content: "\f2d8"; } }
.icon-credit-card-2-front-fill, .icon-credit-cb-2-front-plein    { &:before { content: "\f2d9"; } }
.icon-credit-card-2-front, .icon-credit-cb-2-front    { &:before { content: "\f2da"; } }
.icon-credit-card-fill, .icon-credit-cb-plein    { &:before { content: "\f2db"; } }
.icon-credit-card, .icon-credit-cb    { &:before { content: "\f2dc"; } }
.icon-crop, .icon-crop    { &:before { content: "\f2dd"; } }
.icon-cup-fill, .icon-cup-plein    { &:before { content: "\f2de"; } }
.icon-cup-straw, .icon-cup-straw    { &:before { content: "\f2df"; } }
.icon-cup, .icon-cup    { &:before { content: "\f2e0"; } }
.icon-cursor-fill, .icon-cursor-plein    { &:before { content: "\f2e1"; } }
.icon-cursor-text, .icon-cursor-texte    { &:before { content: "\f2e2"; } }
.icon-cursor, .icon-cursor    { &:before { content: "\f2e3"; } }
.icon-dash-circle-dotted, .icon-dash-rond-dotted    { &:before { content: "\f2e4"; } }
.icon-dash-circle-fill, .icon-dash-rond-plein    { &:before { content: "\f2e5"; } }
.icon-dash-circle, .icon-dash-rond    { &:before { content: "\f2e6"; } }
.icon-dash-square-dotted, .icon-dash-carre-dotted    { &:before { content: "\f2e7"; } }
.icon-dash-square-fill, .icon-dash-carre-plein    { &:before { content: "\f2e8"; } }
.icon-dash-square, .icon-dash-carre    { &:before { content: "\f2e9"; } }
.icon-dash, .icon-dash    { &:before { content: "\f2ea"; } }
.icon-diagram-2-fill, .icon-diagram-2-plein    { &:before { content: "\f2eb"; } }
.icon-diagram-2, .icon-diagram-2    { &:before { content: "\f2ec"; } }
.icon-diagram-3-fill, .icon-diagram-3-plein    { &:before { content: "\f2ed"; } }
.icon-diagram-3, .icon-diagram-3    { &:before { content: "\f2ee"; } }
.icon-diamond-fill, .icon-diamond-plein    { &:before { content: "\f2ef"; } }
.icon-diamond-half, .icon-diamond-moitie    { &:before { content: "\f2f0"; } }
.icon-diamond, .icon-diamond    { &:before { content: "\f2f1"; } }
.icon-dice-1-fill, .icon-dice-1-plein    { &:before { content: "\f2f2"; } }
.icon-dice-1, .icon-dice-1    { &:before { content: "\f2f3"; } }
.icon-dice-2-fill, .icon-dice-2-plein    { &:before { content: "\f2f4"; } }
.icon-dice-2, .icon-dice-2    { &:before { content: "\f2f5"; } }
.icon-dice-3-fill, .icon-dice-3-plein    { &:before { content: "\f2f6"; } }
.icon-dice-3, .icon-dice-3    { &:before { content: "\f2f7"; } }
.icon-dice-4-fill, .icon-dice-4-plein    { &:before { content: "\f2f8"; } }
.icon-dice-4, .icon-dice-4    { &:before { content: "\f2f9"; } }
.icon-dice-5-fill, .icon-dice-5-plein    { &:before { content: "\f2fa"; } }
.icon-dice-5, .icon-dice-5    { &:before { content: "\f2fb"; } }
.icon-dice-6-fill, .icon-dice-6-plein    { &:before { content: "\f2fc"; } }
.icon-dice-6, .icon-dice-6    { &:before { content: "\f2fd"; } }
.icon-disc-fill, .icon-disc-plein    { &:before { content: "\f2fe"; } }
.icon-disc, .icon-disc    { &:before { content: "\f2ff"; } }
.icon-discord, .icon-discord    { &:before { content: "\f300"; } }
.icon-display-fill, .icon-display-plein    { &:before { content: "\f301"; } }
.icon-display, .icon-display    { &:before { content: "\f302"; } }
.icon-distribute-horizontal, .icon-distribute-horizontal    { &:before { content: "\f303"; } }
.icon-distribute-vertical, .icon-distribute-vertical    { &:before { content: "\f304"; } }
.icon-door-closed-fill, .icon-door-closed-plein    { &:before { content: "\f305"; } }
.icon-door-closed, .icon-door-closed    { &:before { content: "\f306"; } }
.icon-door-open-fill, .icon-door-ouvrir-plein    { &:before { content: "\f307"; } }
.icon-door-open, .icon-door-ouvrir    { &:before { content: "\f308"; } }
.icon-dot, .icon-dot    { &:before { content: "\f309"; } }
.icon-download, .icon-basload    { &:before { content: "\f30a"; } }
.icon-droplet-fill, .icon-goutte-plein    { &:before { content: "\f30b"; } }
.icon-droplet-half, .icon-goutte-moitie    { &:before { content: "\f30c"; } }
.icon-droplet, .icon-goutte    { &:before { content: "\f30d"; } }
.icon-earbuds, .icon-earbuds    { &:before { content: "\f30e"; } }
.icon-easel-fill, .icon-easel-plein    { &:before { content: "\f30f"; } }
.icon-easel, .icon-easel    { &:before { content: "\f310"; } }
.icon-egg-fill, .icon-egg-plein    { &:before { content: "\f311"; } }
.icon-egg-fried, .icon-egg-fried    { &:before { content: "\f312"; } }
.icon-egg, .icon-egg    { &:before { content: "\f313"; } }
.icon-eject-fill, .icon-eject-plein    { &:before { content: "\f314"; } }
.icon-eject, .icon-eject    { &:before { content: "\f315"; } }
.icon-emoji-angry-fill, .icon-emoji-angry-plein    { &:before { content: "\f316"; } }
.icon-emoji-angry, .icon-emoji-angry    { &:before { content: "\f317"; } }
.icon-emoji-dizzy-fill, .icon-emoji-dizzy-plein    { &:before { content: "\f318"; } }
.icon-emoji-dizzy, .icon-emoji-dizzy    { &:before { content: "\f319"; } }
.icon-emoji-expressionless-fill, .icon-emoji-expressionless-plein    { &:before { content: "\f31a"; } }
.icon-emoji-expressionless, .icon-emoji-expressionless    { &:before { content: "\f31b"; } }
.icon-emoji-frown-fill, .icon-emoji-frown-plein    { &:before { content: "\f31c"; } }
.icon-emoji-frown, .icon-emoji-frown    { &:before { content: "\f31d"; } }
.icon-emoji-heart-eyes-fill, .icon-emoji-coeur-oeil-plein    { &:before { content: "\f31e"; } }
.icon-emoji-heart-eyes, .icon-emoji-coeur-oeil    { &:before { content: "\f31f"; } }
.icon-emoji-laughing-fill, .icon-emoji-rire-plein    { &:before { content: "\f320"; } }
.icon-emoji-laughing, .icon-emoji-rire    { &:before { content: "\f321"; } }
.icon-emoji-neutral-fill, .icon-emoji-neutral-plein    { &:before { content: "\f322"; } }
.icon-emoji-neutral, .icon-emoji-neutral    { &:before { content: "\f323"; } }
.icon-emoji-smile-fill, .icon-emoji-rire-plein    { &:before { content: "\f324"; } }
.icon-emoji-smile-upside-down-fill, .icon-emoji-rire-upside-bas-plein    { &:before { content: "\f325"; } }
.icon-emoji-smile-upside-down, .icon-emoji-rire-upside-bas    { &:before { content: "\f326"; } }
.icon-emoji-smile, .icon-emoji-rire    { &:before { content: "\f327"; } }
.icon-emoji-sunglasses-fill, .icon-emoji-sunglasses-plein    { &:before { content: "\f328"; } }
.icon-emoji-sunglasses, .icon-emoji-sunglasses    { &:before { content: "\f329"; } }
.icon-emoji-wink-fill, .icon-emoji-wink-plein    { &:before { content: "\f32a"; } }
.icon-emoji-wink, .icon-emoji-wink    { &:before { content: "\f32b"; } }
.icon-envelope-fill, .icon-envelope-plein    { &:before { content: "\f32c"; } }
.icon-envelope-open-fill, .icon-envelope-ouvrir-plein    { &:before { content: "\f32d"; } }
.icon-envelope-open, .icon-envelope-ouvrir    { &:before { content: "\f32e"; } }
.icon-eraser-fill, .icon-eraser-plein    { &:before { content: "\f330"; } }
.icon-eraser, .icon-eraser    { &:before { content: "\f331"; } }
.icon-exclamation-circle-fill, .icon-exclamation-rond-plein    { &:before { content: "\f332"; } }
.icon-exclamation-circle, .icon-exclamation-rond    { &:before { content: "\f333"; } }
.icon-exclamation-diamond-fill, .icon-exclamation-diamond-plein    { &:before { content: "\f334"; } }
.icon-exclamation-diamond, .icon-exclamation-diamond    { &:before { content: "\f335"; } }
.icon-exclamation-octagon-fill, .icon-exclamation-octagon-plein    { &:before { content: "\f336"; } }
.icon-exclamation-octagon, .icon-exclamation-octagon    { &:before { content: "\f337"; } }
.icon-exclamation-square-fill, .icon-exclamation-carre-plein    { &:before { content: "\f338"; } }
.icon-exclamation-square, .icon-exclamation-carre    { &:before { content: "\f339"; } }
.icon-exclamation-triangle-fill, .icon-exclamation-triangle-plein    { &:before { content: "\f33a"; } }
.icon-exclamation-triangle, .icon-exclamation-triangle    { &:before { content: "\f33b"; } }
.icon-exclamation, .icon-exclamation    { &:before { content: "\f33c"; } }
.icon-exclude, .icon-exclude    { &:before { content: "\f33d"; } }
.icon-eye-fill, .icon-oeil-plein    { &:before { content: "\f33e"; } }
.icon-eye-slash-fill, .icon-oeil-slash-plein    { &:before { content: "\f33f"; } }
.icon-eye-slash, .icon-oeil-slash    { &:before { content: "\f340"; } }
.icon-eye, .icon-oeil    { &:before { content: "\f341"; } }
.icon-eyedropper, .icon-oeildropper    { &:before { content: "\f342"; } }
.icon-eyeglasses, .icon-oeilglasses    { &:before { content: "\f343"; } }
.icon-facebook, .icon-facebook    { &:before { content: "\f344"; } }
.icon-file-arrow-down-fill, .icon-fichier-fleche-bas-plein    { &:before { content: "\f345"; } }
.icon-file-arrow-down, .icon-fichier-fleche-bas    { &:before { content: "\f346"; } }
.icon-file-arrow-up-fill, .icon-fichier-fleche-bas-plein    { &:before { content: "\f347"; } }
.icon-file-arrow-up, .icon-fichier-fleche-haut    { &:before { content: "\f348"; } }
.icon-file-bar-graph-fill, .icon-fichier-bar-graph-plein    { &:before { content: "\f349"; } }
.icon-file-bar-graph, .icon-fichier-bar-graph    { &:before { content: "\f34a"; } }
.icon-file-binary-fill, .icon-fichier-binary-plein    { &:before { content: "\f34b"; } }
.icon-file-binary, .icon-fichier-binary    { &:before { content: "\f34c"; } }
.icon-file-break-fill, .icon-fichier-break-plein    { &:before { content: "\f34d"; } }
.icon-file-break, .icon-fichier-break    { &:before { content: "\f34e"; } }
.icon-file-check-fill, .icon-fichier-ok-plein    { &:before { content: "\f34f"; } }
.icon-file-check, .icon-fichier-ok    { &:before { content: "\f350"; } }
.icon-file-code-fill, .icon-fichier-code-plein    { &:before { content: "\f351"; } }
.icon-file-code, .icon-fichier-code    { &:before { content: "\f352"; } }
.icon-file-diff-fill, .icon-fichier-diff-plein    { &:before { content: "\f353"; } }
.icon-file-diff, .icon-fichier-diff    { &:before { content: "\f354"; } }
.icon-file-earmark-arrow-down-fill, .icon-fichier-earmark-fleche-bas-plein    { &:before { content: "\f355"; } }
.icon-file-earmark-arrow-down, .icon-fichier-earmark-fleche-bas    { &:before { content: "\f356"; } }
.icon-file-earmark-arrow-up-fill, .icon-fichier-earmark-fleche-bas-plein    { &:before { content: "\f357"; } }
.icon-file-earmark-arrow-up, .icon-fichier-earmark-fleche-haut    { &:before { content: "\f358"; } }
.icon-file-earmark-bar-graph-fill, .icon-fichier-earmark-bar-graph-plein    { &:before { content: "\f359"; } }
.icon-file-earmark-bar-graph, .icon-fichier-earmark-bar-graph    { &:before { content: "\f35a"; } }
.icon-file-earmark-binary-fill, .icon-fichier-earmark-binary-plein    { &:before { content: "\f35b"; } }
.icon-file-earmark-binary, .icon-fichier-earmark-binary    { &:before { content: "\f35c"; } }
.icon-file-earmark-break-fill, .icon-fichier-earmark-break-plein    { &:before { content: "\f35d"; } }
.icon-file-earmark-break, .icon-fichier-earmark-break    { &:before { content: "\f35e"; } }
.icon-file-earmark-check-fill, .icon-fichier-earmark-ok-plein    { &:before { content: "\f35f"; } }
.icon-file-earmark-check, .icon-fichier-earmark-ok    { &:before { content: "\f360"; } }
.icon-file-earmark-code-fill, .icon-fichier-earmark-code-plein    { &:before { content: "\f361"; } }
.icon-file-earmark-code, .icon-fichier-earmark-code    { &:before { content: "\f362"; } }
.icon-file-earmark-diff-fill, .icon-fichier-earmark-diff-plein    { &:before { content: "\f363"; } }
.icon-file-earmark-diff, .icon-fichier-earmark-diff    { &:before { content: "\f364"; } }
.icon-file-earmark-easel-fill, .icon-fichier-earmark-easel-plein    { &:before { content: "\f365"; } }
.icon-file-earmark-easel, .icon-fichier-earmark-easel    { &:before { content: "\f366"; } }
.icon-file-earmark-excel-fill, .icon-fichier-earmark-excel-plein    { &:before { content: "\f367"; } }
.icon-file-earmark-excel, .icon-fichier-earmark-excel    { &:before { content: "\f368"; } }
.icon-file-earmark-fill, .icon-fichier-earmark-plein    { &:before { content: "\f369"; } }
.icon-file-earmark-font-fill, .icon-fichier-earmark-typo-plein    { &:before { content: "\f36a"; } }
.icon-file-earmark-font, .icon-fichier-earmark-typo    { &:before { content: "\f36b"; } }
.icon-file-earmark-image-fill, .icon-fichier-earmark-image-plein    { &:before { content: "\f36c"; } }
.icon-file-earmark-image, .icon-fichier-earmark-image    { &:before { content: "\f36d"; } }
.icon-file-earmark-lock-fill, .icon-fichier-earmark-cadenas-plein    { &:before { content: "\f36e"; } }
.icon-file-earmark-lock, .icon-fichier-earmark-cadenas    { &:before { content: "\f36f"; } }
.icon-file-earmark-lock2-fill, .icon-fichier-earmark-cadenas2-plein    { &:before { content: "\f370"; } }
.icon-file-earmark-lock2, .icon-fichier-earmark-cadenas2    { &:before { content: "\f371"; } }
.icon-file-earmark-medical-fill, .icon-fichier-earmark-medical-plein    { &:before { content: "\f372"; } }
.icon-file-earmark-medical, .icon-fichier-earmark-medical    { &:before { content: "\f373"; } }
.icon-file-earmark-minus-fill, .icon-fichier-earmark-minus-plein    { &:before { content: "\f374"; } }
.icon-file-earmark-minus, .icon-fichier-earmark-minus    { &:before { content: "\f375"; } }
.icon-file-earmark-music-fill, .icon-fichier-earmark-music-plein    { &:before { content: "\f376"; } }
.icon-file-earmark-music, .icon-fichier-earmark-music    { &:before { content: "\f377"; } }
.icon-file-earmark-person-fill, .icon-fichier-earmark-user-plein    { &:before { content: "\f378"; } }
.icon-file-earmark-person, .icon-fichier-earmark-user    { &:before { content: "\f379"; } }
.icon-file-earmark-play-fill, .icon-fichier-earmark-play-plein    { &:before { content: "\f37a"; } }
.icon-file-earmark-play, .icon-fichier-earmark-play    { &:before { content: "\f37b"; } }
.icon-file-earmark-plus-fill, .icon-fichier-earmark-plus-plein    { &:before { content: "\f37c"; } }
.icon-file-earmark-plus, .icon-fichier-earmark-plus    { &:before { content: "\f37d"; } }
.icon-file-earmark-post-fill, .icon-fichier-earmark-post-plein    { &:before { content: "\f37e"; } }
.icon-file-earmark-post, .icon-fichier-earmark-post    { &:before { content: "\f37f"; } }
.icon-file-earmark-ppt-fill, .icon-fichier-earmark-ppt-plein    { &:before { content: "\f380"; } }
.icon-file-earmark-ppt, .icon-fichier-earmark-ppt    { &:before { content: "\f381"; } }
.icon-file-earmark-richtext-fill, .icon-fichier-earmark-richtext-plein    { &:before { content: "\f382"; } }
.icon-file-earmark-richtext, .icon-fichier-earmark-richtext    { &:before { content: "\f383"; } }
.icon-file-earmark-ruled-fill, .icon-fichier-earmark-ruled-plein    { &:before { content: "\f384"; } }
.icon-file-earmark-ruled, .icon-fichier-earmark-ruled    { &:before { content: "\f385"; } }
.icon-file-earmark-slides-fill, .icon-fichier-earmark-slides-plein    { &:before { content: "\f386"; } }
.icon-file-earmark-slides, .icon-fichier-earmark-slides    { &:before { content: "\f387"; } }
.icon-file-earmark-spreadsheet-fill, .icon-fichier-earmark-spreadsheet-plein    { &:before { content: "\f388"; } }
.icon-file-earmark-spreadsheet, .icon-fichier-earmark-spreadsheet    { &:before { content: "\f389"; } }
.icon-file-earmark-text-fill, .icon-fichier-earmark-texte-plein    { &:before { content: "\f38a"; } }
.icon-file-earmark-text, .icon-fichier-earmark-texte    { &:before { content: "\f38b"; } }
.icon-file-earmark-word-fill, .icon-fichier-earmark-word-plein    { &:before { content: "\f38c"; } }
.icon-file-earmark-word, .icon-fichier-earmark-word    { &:before { content: "\f38d"; } }
.icon-file-earmark-x-fill, .icon-fichier-earmark-x-plein    { &:before { content: "\f38e"; } }
.icon-file-earmark-x, .icon-fichier-earmark-croix    { &:before { content: "\f38f"; } }
.icon-file-earmark-zip-fill, .icon-fichier-earmark-zip-plein    { &:before { content: "\f390"; } }
.icon-file-earmark-zip, .icon-fichier-earmark-zip    { &:before { content: "\f391"; } }
.icon-file-earmark, .icon-fichier-earmark    { &:before { content: "\f392"; } }
.icon-file-easel-fill, .icon-fichier-easel-plein    { &:before { content: "\f393"; } }
.icon-file-easel, .icon-fichier-easel    { &:before { content: "\f394"; } }
.icon-file-excel-fill, .icon-fichier-excel-plein    { &:before { content: "\f395"; } }
.icon-file-excel, .icon-fichier-excel    { &:before { content: "\f396"; } }
.icon-file-fill, .icon-fichier-plein    { &:before { content: "\f397"; } }
.icon-file-font-fill, .icon-fichier-typo-plein    { &:before { content: "\f398"; } }
.icon-file-font, .icon-fichier-typo    { &:before { content: "\f399"; } }
.icon-file-image-fill, .icon-fichier-image-plein    { &:before { content: "\f39a"; } }
.icon-file-image, .icon-fichier-image    { &:before { content: "\f39b"; } }
.icon-file-lock-fill, .icon-fichier-cadenas-plein    { &:before { content: "\f39c"; } }
.icon-file-lock, .icon-fichier-cadenas    { &:before { content: "\f39d"; } }
.icon-file-lock2-fill, .icon-fichier-cadenas2-plein    { &:before { content: "\f39e"; } }
.icon-file-lock2, .icon-fichier-cadenas2    { &:before { content: "\f39f"; } }
.icon-file-medical-fill, .icon-fichier-medical-plein    { &:before { content: "\f3a0"; } }
.icon-file-medical, .icon-fichier-medical    { &:before { content: "\f3a1"; } }
.icon-file-minus-fill, .icon-fichier-minus-plein    { &:before { content: "\f3a2"; } }
.icon-file-minus, .icon-fichier-minus    { &:before { content: "\f3a3"; } }
.icon-file-music-fill, .icon-fichier-music-plein    { &:before { content: "\f3a4"; } }
.icon-file-music, .icon-fichier-music    { &:before { content: "\f3a5"; } }
.icon-file-person-fill, .icon-fichier-user-plein    { &:before { content: "\f3a6"; } }
.icon-file-person, .icon-fichier-user    { &:before { content: "\f3a7"; } }
.icon-file-play-fill, .icon-fichier-play-plein    { &:before { content: "\f3a8"; } }
.icon-file-play, .icon-fichier-play    { &:before { content: "\f3a9"; } }
.icon-file-plus-fill, .icon-fichier-plus-plein    { &:before { content: "\f3aa"; } }
.icon-file-plus, .icon-fichier-plus    { &:before { content: "\f3ab"; } }
.icon-file-post-fill, .icon-fichier-post-plein    { &:before { content: "\f3ac"; } }
.icon-file-post, .icon-fichier-post    { &:before { content: "\f3ad"; } }
.icon-file-ppt-fill, .icon-fichier-ppt-plein    { &:before { content: "\f3ae"; } }
.icon-file-ppt, .icon-fichier-ppt    { &:before { content: "\f3af"; } }
.icon-file-richtext-fill, .icon-fichier-richtext-plein    { &:before { content: "\f3b0"; } }
.icon-file-richtext, .icon-fichier-richtext    { &:before { content: "\f3b1"; } }
.icon-file-ruled-fill, .icon-fichier-ruled-plein    { &:before { content: "\f3b2"; } }
.icon-file-ruled, .icon-fichier-ruled    { &:before { content: "\f3b3"; } }
.icon-file-slides-fill, .icon-fichier-slides-plein    { &:before { content: "\f3b4"; } }
.icon-file-slides, .icon-fichier-slides    { &:before { content: "\f3b5"; } }
.icon-file-spreadsheet-fill, .icon-fichier-spreadsheet-plein    { &:before { content: "\f3b6"; } }
.icon-file-spreadsheet, .icon-fichier-spreadsheet    { &:before { content: "\f3b7"; } }
.icon-file-text-fill, .icon-fichier-texte-plein    { &:before { content: "\f3b8"; } }
.icon-file-text, .icon-fichier-texte    { &:before { content: "\f3b9"; } }
.icon-file-word-fill, .icon-fichier-word-plein    { &:before { content: "\f3ba"; } }
.icon-file-word, .icon-fichier-word    { &:before { content: "\f3bb"; } }
.icon-file-x-fill, .icon-fichier-x-plein    { &:before { content: "\f3bc"; } }
.icon-file-x, .icon-fichier-croix    { &:before { content: "\f3bd"; } }
.icon-file-zip-fill, .icon-fichier-zip-plein    { &:before { content: "\f3be"; } }
.icon-file-zip, .icon-fichier-zip    { &:before { content: "\f3bf"; } }
.icon-file, .icon-fichier    { &:before { content: "\f3c0"; } }
.icon-files-alt, .icon-fichiers-alt    { &:before { content: "\f3c1"; } }
.icon-files, .icon-fichiers    { &:before { content: "\f3c2"; } }
.icon-film, .icon-film    { &:before { content: "\f3c3"; } }
.icon-filter-circle-fill, .icon-filter-rond-plein    { &:before { content: "\f3c4"; } }
.icon-filter-circle, .icon-filter-rond    { &:before { content: "\f3c5"; } }
.icon-filter-left, .icon-filter-gauche    { &:before { content: "\f3c6"; } }
.icon-filter-right, .icon-filter-droite    { &:before { content: "\f3c7"; } }
.icon-filter-square-fill, .icon-filter-carre-plein    { &:before { content: "\f3c8"; } }
.icon-filter-square, .icon-filter-carre    { &:before { content: "\f3c9"; } }
.icon-filter, .icon-filter    { &:before { content: "\f3ca"; } }
.icon-flag-fill, .icon-drapeau-plein    { &:before { content: "\f3cb"; } }
.icon-flag, .icon-drapeau    { &:before { content: "\f3cc"; } }
.icon-flower1, .icon-flower1    { &:before { content: "\f3cd"; } }
.icon-flower2, .icon-flower2    { &:before { content: "\f3ce"; } }
.icon-flower3, .icon-flower3    { &:before { content: "\f3cf"; } }
.icon-folder-check, .icon-dossier-ok    { &:before { content: "\f3d0"; } }
.icon-folder-fill, .icon-dossier-plein    { &:before { content: "\f3d1"; } }
.icon-folder-minus, .icon-dossier-minus    { &:before { content: "\f3d2"; } }
.icon-folder-plus, .icon-dossier-plus    { &:before { content: "\f3d3"; } }
.icon-folder-symlink-fill, .icon-dossier-symlink-plein    { &:before { content: "\f3d4"; } }
.icon-folder-symlink, .icon-dossier-symlink    { &:before { content: "\f3d5"; } }
.icon-folder-x, .icon-dossier-croix    { &:before { content: "\f3d6"; } }
.icon-folder, .icon-dossier    { &:before { content: "\f3d7"; } }
.icon-folder2-open, .icon-dossier2-ouvrir    { &:before { content: "\f3d8"; } }
.icon-folder2, .icon-dossier2    { &:before { content: "\f3d9"; } }
.icon-fonts, .icon-typo    { &:before { content: "\f3da"; } }
.icon-forward-fill, .icon-next-plein    { &:before { content: "\f3db"; } }
.icon-forward, .icon-next    { &:before { content: "\f3dc"; } }
.icon-front, .icon-front    { &:before { content: "\f3dd"; } }
.icon-fullscreen-exit, .icon-plein-ecran-exit    { &:before { content: "\f3de"; } }
.icon-fullscreen, .icon-plein-ecran    { &:before { content: "\f3df"; } }
.icon-funnel-fill, .icon-funnel-plein    { &:before { content: "\f3e0"; } }
.icon-funnel, .icon-funnel    { &:before { content: "\f3e1"; } }
.icon-gear-fill, .icon-engrenage-plein    { &:before { content: "\f3e2"; } }
.icon-gear-wide-connected, .icon-engrenage-wide-connected    { &:before { content: "\f3e3"; } }
.icon-gear-wide, .icon-engrenage-wide    { &:before { content: "\f3e4"; } }
.icon-gear, .icon-engrenage    { &:before { content: "\f3e5"; } }
.icon-gem, .icon-gem    { &:before { content: "\f3e6"; } }
.icon-geo-alt-fill, .icon-marker-alt-plein    { &:before { content: "\f3e7"; } }
.icon-geo-alt, .icon-marker-alt    { &:before { content: "\f3e8"; } }
.icon-geo-fill, .icon-marker-plein    { &:before { content: "\f3e9"; } }
.icon-geo, .icon-marker    { &:before { content: "\f3ea"; } }
.icon-gift-fill, .icon-gift-plein    { &:before { content: "\f3eb"; } }
.icon-gift, .icon-gift    { &:before { content: "\f3ec"; } }
.icon-github, .icon-github    { &:before { content: "\f3ed"; } }
.icon-globe, .icon-globe    { &:before { content: "\f3ee"; } }
.icon-globe2, .icon-globe2    { &:before { content: "\f3ef"; } }
.icon-google, .icon-google    { &:before { content: "\f3f0"; } }
.icon-graph-down, .icon-graph-bas    { &:before { content: "\f3f1"; } }
.icon-graph-up, .icon-graph-haut    { &:before { content: "\f3f2"; } }
.icon-grid-1x2-fill, .icon-grille-1x2-plein    { &:before { content: "\f3f3"; } }
.icon-grid-1x2, .icon-grille-1x2    { &:before { content: "\f3f4"; } }
.icon-grid-3x2-gap-fill, .icon-grille-3x2-gap-plein    { &:before { content: "\f3f5"; } }
.icon-grid-3x2-gap, .icon-grille-3x2-gap    { &:before { content: "\f3f6"; } }
.icon-grid-3x2, .icon-grille-3x2    { &:before { content: "\f3f7"; } }
.icon-grid-3x3-gap-fill, .icon-grille-3x3-gap-plein    { &:before { content: "\f3f8"; } }
.icon-grid-3x3-gap, .icon-grille-3x3-gap    { &:before { content: "\f3f9"; } }
.icon-grid-3x3, .icon-grille    { &:before { content: "\f3fa"; } }
.icon-grid-fill, .icon-grille-plein    { &:before { content: "\f3fb"; } }
.icon-grid, .icon-grille    { &:before { content: "\f3fc"; } }
.icon-grip-horizontal, .icon-grip-horizontal    { &:before { content: "\f3fd"; } }
.icon-grip-vertical, .icon-grip-vertical    { &:before { content: "\f3fe"; } }
.icon-hammer, .icon-marteau    { &:before { content: "\f3ff"; } }
.icon-hand-index-fill, .icon-main-index-plein    { &:before { content: "\f400"; } }
.icon-hand-index-thumb-fill, .icon-main-index-thumb-plein    { &:before { content: "\f401"; } }
.icon-hand-index-thumb, .icon-main-index-thumb    { &:before { content: "\f402"; } }
.icon-hand-index, .icon-main-index    { &:before { content: "\f403"; } }
.icon-hand-thumbs-down-fill, .icon-main-thumbs-bas-plein    { &:before { content: "\f404"; } }
.icon-hand-thumbs-down, .icon-main-thumbs-bas    { &:before { content: "\f405"; } }
.icon-hand-thumbs-up-fill, .icon-main-thumbs-bas-plein    { &:before { content: "\f406"; } }
.icon-hand-thumbs-up, .icon-main-thumbs-haut    { &:before { content: "\f407"; } }
.icon-handbag-fill, .icon-mainbag-plein    { &:before { content: "\f408"; } }
.icon-handbag, .icon-mainbag    { &:before { content: "\f409"; } }
.icon-hash, .icon-hash    { &:before { content: "\f40a"; } }
.icon-hdd-fill, .icon-hdd-plein    { &:before { content: "\f40b"; } }
.icon-hdd-network-fill, .icon-hdd-network-plein    { &:before { content: "\f40c"; } }
.icon-hdd-network, .icon-hdd-network    { &:before { content: "\f40d"; } }
.icon-hdd-rack-fill, .icon-hdd-rack-plein    { &:before { content: "\f40e"; } }
.icon-hdd-rack, .icon-hdd-rack    { &:before { content: "\f40f"; } }
.icon-hdd-stack-fill, .icon-hdd-stack-plein    { &:before { content: "\f410"; } }
.icon-hdd-stack, .icon-hdd-stack    { &:before { content: "\f411"; } }
.icon-hdd, .icon-hdd    { &:before { content: "\f412"; } }
.icon-headphones, .icon-headphones    { &:before { content: "\f413"; } }
.icon-headset, .icon-headset    { &:before { content: "\f414"; } }
.icon-heart-fill, .icon-coeur-plein    { &:before { content: "\f415"; } }
.icon-heart-half, .icon-coeur-moitie    { &:before { content: "\f416"; } }
.icon-heart, .icon-coeur    { &:before { content: "\f417"; } }
.icon-heptagon-fill, .icon-heptagon-plein    { &:before { content: "\f418"; } }
.icon-heptagon-half, .icon-heptagon-moitie    { &:before { content: "\f419"; } }
.icon-heptagon, .icon-heptagon    { &:before { content: "\f41a"; } }
.icon-hexagon-fill, .icon-hexagon-plein    { &:before { content: "\f41b"; } }
.icon-hexagon-half, .icon-hexagon-moitie    { &:before { content: "\f41c"; } }
.icon-hexagon, .icon-hexagon    { &:before { content: "\f41d"; } }
.icon-hourglass-bottom, .icon-hourglass-bas    { &:before { content: "\f41e"; } }
.icon-hourglass-split, .icon-hourglass-split    { &:before { content: "\f41f"; } }
.icon-hourglass-top, .icon-hourglass-haut    { &:before { content: "\f420"; } }
.icon-hourglass, .icon-hourglass    { &:before { content: "\f421"; } }
.icon-house-door-fill, .icon-accueil-door-plein    { &:before { content: "\f422"; } }
.icon-house-door, .icon-accueil-door    { &:before { content: "\f423"; } }
.icon-house-fill, .icon-accueil-plein    { &:before { content: "\f424"; } }
.icon-house, .icon-accueil    { &:before { content: "\f425"; } }
.icon-hr, .icon-hr    { &:before { content: "\f426"; } }
.icon-hurricane, .icon-tempete    { &:before { content: "\f427"; } }
.icon-image-alt, .icon-image-alt    { &:before { content: "\f428"; } }
.icon-image-fill, .icon-image-plein    { &:before { content: "\f429"; } }
.icon-image, .icon-image    { &:before { content: "\f42a"; } }
.icon-images, .icon-images    { &:before { content: "\f42b"; } }
.icon-inbox-fill, .icon-inbox-plein    { &:before { content: "\f42c"; } }
.icon-inbox, .icon-inbox    { &:before { content: "\f42d"; } }
.icon-inboxes-fill, .icon-inboxes-plein    { &:before { content: "\f42e"; } }
.icon-inboxes, .icon-inboxes    { &:before { content: "\f42f"; } }
.icon-info-circle-fill, .icon-info-rond-plein    { &:before { content: "\f430"; } }
.icon-info-circle, .icon-info-rond    { &:before { content: "\f431"; } }
.icon-info-square-fill, .icon-info-carre-plein    { &:before { content: "\f432"; } }
.icon-info-square, .icon-info-carre    { &:before { content: "\f433"; } }
.icon-info, .icon-info    { &:before { content: "\f434"; } }
.icon-input-cursor-text, .icon-input-cursor-texte    { &:before { content: "\f435"; } }
.icon-input-cursor, .icon-input-cursor    { &:before { content: "\f436"; } }
.icon-instagram, .icon-instagram    { &:before { content: "\f437"; } }
.icon-intersect, .icon-intersect    { &:before { content: "\f438"; } }
.icon-journal-album, .icon-journal-album    { &:before { content: "\f439"; } }
.icon-journal-arrow-down, .icon-journal-fleche-bas    { &:before { content: "\f43a"; } }
.icon-journal-arrow-up, .icon-journal-fleche-haut    { &:before { content: "\f43b"; } }
.icon-journal-bookmark-fill, .icon-journal-livremark-plein    { &:before { content: "\f43c"; } }
.icon-journal-bookmark, .icon-journal-livremark    { &:before { content: "\f43d"; } }
.icon-journal-check, .icon-journal-ok    { &:before { content: "\f43e"; } }
.icon-journal-code, .icon-journal-code    { &:before { content: "\f43f"; } }
.icon-journal-medical, .icon-journal-medical    { &:before { content: "\f440"; } }
.icon-journal-minus, .icon-journal-minus    { &:before { content: "\f441"; } }
.icon-journal-plus, .icon-journal-plus    { &:before { content: "\f442"; } }
.icon-journal-richtext, .icon-journal-richtext    { &:before { content: "\f443"; } }
.icon-journal-text, .icon-journal-texte    { &:before { content: "\f444"; } }
.icon-journal-x, .icon-journal-croix    { &:before { content: "\f445"; } }
.icon-journal, .icon-journal    { &:before { content: "\f446"; } }
.icon-journals, .icon-journals    { &:before { content: "\f447"; } }
.icon-joystick, .icon-joystick    { &:before { content: "\f448"; } }
.icon-justify-left, .icon-justifier-gauche    { &:before { content: "\f449"; } }
.icon-justify-right, .icon-justifier-droite    { &:before { content: "\f44a"; } }
.icon-justify, .icon-justifier    { &:before { content: "\f44b"; } }
.icon-kanban-fill, .icon-kanban-plein    { &:before { content: "\f44c"; } }
.icon-kanban, .icon-kanban    { &:before { content: "\f44d"; } }
.icon-key-fill, .icon-cle-plein    { &:before { content: "\f44e"; } }
.icon-key, .icon-cle    { &:before { content: "\f44f"; } }
.icon-keyboard-fill, .icon-cleboard-plein    { &:before { content: "\f450"; } }
.icon-keyboard, .icon-cleboard    { &:before { content: "\f451"; } }
.icon-ladder, .icon-ladder    { &:before { content: "\f452"; } }
.icon-lamp-fill, .icon-lampe-plein    { &:before { content: "\f453"; } }
.icon-lamp, .icon-lampe    { &:before { content: "\f454"; } }
.icon-laptop-fill, .icon-laptop-plein    { &:before { content: "\f455"; } }
.icon-laptop, .icon-laptop    { &:before { content: "\f456"; } }
.icon-layer-backward, .icon-layer-backward    { &:before { content: "\f457"; } }
.icon-layer-forward, .icon-layer-next    { &:before { content: "\f458"; } }
.icon-layers-fill, .icon-layers-plein    { &:before { content: "\f459"; } }
.icon-layers-half, .icon-layers-moitie    { &:before { content: "\f45a"; } }
.icon-layers, .icon-layers    { &:before { content: "\f45b"; } }
.icon-layout-sidebar-inset-reverse, .icon-layout-sidebar-inset-reverse    { &:before { content: "\f45c"; } }
.icon-layout-sidebar-inset, .icon-layout-sidebar-inset    { &:before { content: "\f45d"; } }
.icon-layout-sidebar-reverse, .icon-layout-sidebar-reverse    { &:before { content: "\f45e"; } }
.icon-layout-sidebar, .icon-layout-sidebar    { &:before { content: "\f45f"; } }
.icon-layout-split, .icon-layout-split    { &:before { content: "\f460"; } }
.icon-layout-text-sidebar-reverse, .icon-layout-texte-sidebar-reverse    { &:before { content: "\f461"; } }
.icon-layout-text-sidebar, .icon-layout-texte-sidebar    { &:before { content: "\f462"; } }
.icon-layout-text-window-reverse, .icon-layout-texte-fenetre-reverse    { &:before { content: "\f463"; } }
.icon-layout-text-window, .icon-layout-texte-fenetre    { &:before { content: "\f464"; } }
.icon-layout-three-columns, .icon-layout-three-columns    { &:before { content: "\f465"; } }
.icon-layout-wtf, .icon-layout-wtf    { &:before { content: "\f466"; } }
.icon-life-preserver, .icon-life-preserver    { &:before { content: "\f467"; } }
.icon-lightbulb-fill, .icon-lightbulb-plein    { &:before { content: "\f468"; } }
.icon-lightbulb-off-fill, .icon-lightbulb-off-plein    { &:before { content: "\f469"; } }
.icon-lightbulb-off, .icon-lightbulb-off    { &:before { content: "\f46a"; } }
.icon-lightbulb, .icon-lightbulb    { &:before { content: "\f46b"; } }
.icon-lightning-charge-fill, .icon-lightning-charge-plein    { &:before { content: "\f46c"; } }
.icon-lightning-charge, .icon-lightning-charge    { &:before { content: "\f46d"; } }
.icon-lightning-fill, .icon-lightning-plein    { &:before { content: "\f46e"; } }
.icon-lightning, .icon-lightning    { &:before { content: "\f46f"; } }
.icon-link-45deg, .icon-lien-45deg    { &:before { content: "\f470"; } }
.icon-link, .icon-lien    { &:before { content: "\f471"; } }
.icon-linkedin, .icon-lienedin    { &:before { content: "\f472"; } }
.icon-list-check, .icon-liste-ok    { &:before { content: "\f473"; } }
.icon-list-nested, .icon-liste-nested    { &:before { content: "\f474"; } }
.icon-list-ol, .icon-liste-ol    { &:before { content: "\f475"; } }
.icon-list-stars, .icon-liste-stars    { &:before { content: "\f476"; } }
.icon-list-task, .icon-liste-task    { &:before { content: "\f477"; } }
.icon-list-ul, .icon-liste-ul    { &:before { content: "\f478"; } }
.icon-list, .icon-liste    { &:before { content: "\f479"; } }
.icon-lock-fill, .icon-cadenas-plein    { &:before { content: "\f47a"; } }
.icon-lock, .icon-cadenas    { &:before { content: "\f47b"; } }
.icon-mailbox, .icon-mailbox    { &:before { content: "\f47c"; } }
.icon-mailbox2, .icon-mailbox2    { &:before { content: "\f47d"; } }
.icon-map-fill, .icon-map-plein    { &:before { content: "\f47e"; } }
.icon-map, .icon-map    { &:before { content: "\f47f"; } }
.icon-markdown-fill, .icon-markdown-plein    { &:before { content: "\f480"; } }
.icon-markdown, .icon-markdown    { &:before { content: "\f481"; } }
.icon-mask, .icon-mask    { &:before { content: "\f482"; } }
.icon-megaphone-fill, .icon-megaphone-plein    { &:before { content: "\f483"; } }
.icon-megaphone, .icon-megaphone    { &:before { content: "\f484"; } }
.icon-menu-app-fill, .icon-menu-app-plein    { &:before { content: "\f485"; } }
.icon-menu-app, .icon-menu-app    { &:before { content: "\f486"; } }
.icon-menu-button-fill, .icon-menu-button-plein    { &:before { content: "\f487"; } }
.icon-menu-button-wide-fill, .icon-menu-button-wide-plein    { &:before { content: "\f488"; } }
.icon-menu-button-wide, .icon-menu-button-wide    { &:before { content: "\f489"; } }
.icon-menu-button, .icon-menu-button    { &:before { content: "\f48a"; } }
.icon-menu-down, .icon-menu-bas    { &:before { content: "\f48b"; } }
.icon-menu-up, .icon-menu-haut    { &:before { content: "\f48c"; } }
.icon-mic-fill, .icon-mic-plein    { &:before { content: "\f48d"; } }
.icon-mic-mute-fill, .icon-mic-mute-plein    { &:before { content: "\f48e"; } }
.icon-mic-mute, .icon-mute    { &:before { content: "\f48f"; } }
.icon-mic, .icon-mic    { &:before { content: "\f490"; } }
.icon-minecart-loaded, .icon-minecart-loaded    { &:before { content: "\f491"; } }
.icon-minecart, .icon-minecart    { &:before { content: "\f492"; } }
.icon-moisture, .icon-moisture    { &:before { content: "\f493"; } }
.icon-moon-fill, .icon-moon-plein    { &:before { content: "\f494"; } }
.icon-moon-stars-fill, .icon-moon-stars-plein    { &:before { content: "\f495"; } }
.icon-moon-stars, .icon-moon-stars    { &:before { content: "\f496"; } }
.icon-moon, .icon-moon    { &:before { content: "\f497"; } }
.icon-mouse-fill, .icon-mouse-plein    { &:before { content: "\f498"; } }
.icon-mouse, .icon-mouse    { &:before { content: "\f499"; } }
.icon-mouse2-fill, .icon-mouse2-plein    { &:before { content: "\f49a"; } }
.icon-mouse2, .icon-mouse2    { &:before { content: "\f49b"; } }
.icon-mouse3-fill, .icon-mouse3-plein    { &:before { content: "\f49c"; } }
.icon-mouse3, .icon-mouse3    { &:before { content: "\f49d"; } }
.icon-music-note-beamed, .icon-music-note-beamed    { &:before { content: "\f49e"; } }
.icon-music-note-list, .icon-music-note-liste    { &:before { content: "\f49f"; } }
.icon-music-note, .icon-music    { &:before { content: "\f4a0"; } }
.icon-music-player-fill, .icon-music-player-plein    { &:before { content: "\f4a1"; } }
.icon-music-player, .icon-music-player    { &:before { content: "\f4a2"; } }
.icon-newspaper, .icon-newspaper    { &:before { content: "\f4a3"; } }
.icon-node-minus-fill, .icon-node-minus-plein    { &:before { content: "\f4a4"; } }
.icon-node-minus, .icon-node-minus    { &:before { content: "\f4a5"; } }
.icon-node-plus-fill, .icon-node-plus-plein    { &:before { content: "\f4a6"; } }
.icon-node-plus, .icon-node-plus    { &:before { content: "\f4a7"; } }
.icon-nut-fill, .icon-nut-plein    { &:before { content: "\f4a8"; } }
.icon-nut, .icon-nut    { &:before { content: "\f4a9"; } }
.icon-octagon-fill, .icon-octagon-plein    { &:before { content: "\f4aa"; } }
.icon-octagon-half, .icon-octagon-moitie    { &:before { content: "\f4ab"; } }
.icon-octagon, .icon-octagon    { &:before { content: "\f4ac"; } }
.icon-option, .icon-option    { &:before { content: "\f4ad"; } }
.icon-outlet, .icon-outlet    { &:before { content: "\f4ae"; } }
.icon-paint-bucket, .icon-paint-bucket    { &:before { content: "\f4af"; } }
.icon-palette-fill, .icon-palette-plein    { &:before { content: "\f4b0"; } }
.icon-palette, .icon-palette    { &:before { content: "\f4b1"; } }
.icon-palette2, .icon-palette2    { &:before { content: "\f4b2"; } }
.icon-paperclip, .icon-paperclip    { &:before { content: "\f4b3"; } }
.icon-paragraph, .icon-paragraph    { &:before { content: "\f4b4"; } }
.icon-patch-check-fill, .icon-patch-ok-plein    { &:before { content: "\f4b5"; } }
.icon-patch-check, .icon-patch-ok    { &:before { content: "\f4b6"; } }
.icon-patch-exclamation-fill, .icon-patch-exclamation-plein    { &:before { content: "\f4b7"; } }
.icon-patch-exclamation, .icon-patch-exclamation    { &:before { content: "\f4b8"; } }
.icon-patch-minus-fill, .icon-patch-minus-plein    { &:before { content: "\f4b9"; } }
.icon-patch-minus, .icon-patch-minus    { &:before { content: "\f4ba"; } }
.icon-patch-plus-fill, .icon-patch-plus-plein    { &:before { content: "\f4bb"; } }
.icon-patch-plus, .icon-patch-plus    { &:before { content: "\f4bc"; } }
.icon-patch-question-fill, .icon-patch-question-plein    { &:before { content: "\f4bd"; } }
.icon-patch-question, .icon-patch-question    { &:before { content: "\f4be"; } }
.icon-pause-btn-fill, .icon-pause-btn-plein    { &:before { content: "\f4bf"; } }
.icon-pause-btn, .icon-pause-btn    { &:before { content: "\f4c0"; } }
.icon-pause-circle-fill, .icon-pause-rond-plein    { &:before { content: "\f4c1"; } }
.icon-pause-circle, .icon-pause-rond    { &:before { content: "\f4c2"; } }
.icon-pause-fill, .icon-pause-plein    { &:before { content: "\f4c3"; } }
.icon-pause, .icon-pause    { &:before { content: "\f4c4"; } }
.icon-peace-fill, .icon-peace-plein    { &:before { content: "\f4c5"; } }
.icon-peace, .icon-peace    { &:before { content: "\f4c6"; } }
.icon-pen-fill, .icon-pen-plein    { &:before { content: "\f4c7"; } }
.icon-pen, .icon-pen    { &:before { content: "\f4c8"; } }
.icon-pencil-fill, .icon-pencil-plein    { &:before { content: "\f4c9"; } }
.icon-pencil-square, .icon-pencil-carre    { &:before { content: "\f4ca"; } }
.icon-pencil, .icon-pencil    { &:before { content: "\f4cb"; } }
.icon-pentagon-fill, .icon-pentagon-plein    { &:before { content: "\f4cc"; } }
.icon-pentagon-half, .icon-pentagon-moitie    { &:before { content: "\f4cd"; } }
.icon-pentagon, .icon-pentagon    { &:before { content: "\f4ce"; } }
.icon-people-fill, .icon-people-plein    { &:before { content: "\f4cf"; } }
.icon-people, .icon-people    { &:before { content: "\f4d0"; } }
.icon-percent, .icon-percent    { &:before { content: "\f4d1"; } }
.icon-person-badge-fill, .icon-user-badge-plein    { &:before { content: "\f4d2"; } }
.icon-person-badge, .icon-user-badge    { &:before { content: "\f4d3"; } }
.icon-person-bounding-box, .icon-user-bounding-box    { &:before { content: "\f4d4"; } }
.icon-person-check-fill, .icon-user-ok-plein    { &:before { content: "\f4d5"; } }
.icon-person-check, .icon-user-ok    { &:before { content: "\f4d6"; } }
.icon-person-circle, .icon-user-rond    { &:before { content: "\f4d7"; } }
.icon-person-dash-fill, .icon-user-dash-plein    { &:before { content: "\f4d8"; } }
.icon-person-dash, .icon-user-dash    { &:before { content: "\f4d9"; } }
.icon-person-fill, .icon-user-plein    { &:before { content: "\f4da"; } }
.icon-person-lines-fill, .icon-user-lines-plein    { &:before { content: "\f4db"; } }
.icon-person-plus-fill, .icon-user-plus-plein    { &:before { content: "\f4dc"; } }
.icon-person-plus, .icon-user-plus    { &:before { content: "\f4dd"; } }
.icon-person-square, .icon-user-carre    { &:before { content: "\f4de"; } }
.icon-person-x-fill, .icon-user-x-plein    { &:before { content: "\f4df"; } }
.icon-person-x, .icon-user-croix    { &:before { content: "\f4e0"; } }
.icon-person, .icon-user    { &:before { content: "\f4e1"; } }
.icon-phone-fill, .icon-tel-plein    { &:before { content: "\f4e2"; } }
.icon-phone-landscape-fill, .icon-tel-landscape-plein    { &:before { content: "\f4e3"; } }
.icon-phone-landscape, .icon-tel-landscape    { &:before { content: "\f4e4"; } }
.icon-phone-vibrate-fill, .icon-tel-vibrate-plein    { &:before { content: "\f4e5"; } }
.icon-phone-vibrate, .icon-tel-vibrate    { &:before { content: "\f4e6"; } }
.icon-phone, .icon-tel    { &:before { content: "\f4e7"; } }
.icon-pie-chart-fill, .icon-camembert-plein    { &:before { content: "\f4e8"; } }
.icon-pie-chart, .icon-camembert    { &:before { content: "\f4e9"; } }
.icon-pin-angle-fill, .icon-pin-angle-plein    { &:before { content: "\f4ea"; } }
.icon-pin-angle, .icon-pin-angle    { &:before { content: "\f4eb"; } }
.icon-pin-fill, .icon-pin-plein    { &:before { content: "\f4ec"; } }
.icon-pin, .icon-pin    { &:before { content: "\f4ed"; } }
.icon-pip-fill, .icon-pip-plein    { &:before { content: "\f4ee"; } }
.icon-pip, .icon-pip    { &:before { content: "\f4ef"; } }
.icon-play-btn-fill, .icon-play-btn-plein    { &:before { content: "\f4f0"; } }
.icon-play-btn, .icon-play-btn    { &:before { content: "\f4f1"; } }
.icon-play-circle-fill, .icon-play-rond-plein    { &:before { content: "\f4f2"; } }
.icon-play-circle, .icon-play-rond    { &:before { content: "\f4f3"; } }
.icon-play-fill, .icon-play-plein    { &:before { content: "\f4f4"; } }
.icon-play, .icon-play    { &:before { content: "\f4f5"; } }
.icon-plug-fill, .icon-plug-plein    { &:before { content: "\f4f6"; } }
.icon-plug, .icon-plug    { &:before { content: "\f4f7"; } }
.icon-plus-circle-dotted, .icon-plus-rond-dotted    { &:before { content: "\f4f8"; } }
.icon-plus-circle-fill, .icon-plus-rond-plein    { &:before { content: "\f4f9"; } }
.icon-plus-circle, .icon-plus-rond    { &:before { content: "\f4fa"; } }
.icon-plus-square-dotted, .icon-plus-carre-dotted    { &:before { content: "\f4fb"; } }
.icon-plus-square-fill, .icon-plus-carre-plein    { &:before { content: "\f4fc"; } }
.icon-plus-square, .icon-plus-carre    { &:before { content: "\f4fd"; } }
.icon-plus, .icon-plus    { &:before { content: "\f4fe"; } }
.icon-power, .icon-power    { &:before { content: "\f4ff"; } }
.icon-printer-fill, .icon-printer-plein    { &:before { content: "\f500"; } }
.icon-printer, .icon-print    { &:before { content: "\f501"; } }
.icon-puzzle-fill, .icon-puzzle-plein    { &:before { content: "\f502"; } }
.icon-puzzle, .icon-puzzle    { &:before { content: "\f503"; } }
.icon-question-circle-fill, .icon-question-rond-plein    { &:before { content: "\f504"; } }
.icon-question-circle, .icon-question-rond    { &:before { content: "\f505"; } }
.icon-question-diamond-fill, .icon-question-diamond-plein    { &:before { content: "\f506"; } }
.icon-question-diamond, .icon-question-diamond    { &:before { content: "\f507"; } }
.icon-question-octagon-fill, .icon-question-octagon-plein    { &:before { content: "\f508"; } }
.icon-question-octagon, .icon-question-octagon    { &:before { content: "\f509"; } }
.icon-question-square-fill, .icon-question-carre-plein    { &:before { content: "\f50a"; } }
.icon-question-square, .icon-question-carre    { &:before { content: "\f50b"; } }
.icon-question, .icon-question    { &:before { content: "\f50c"; } }
.icon-rainbow, .icon-rainbow    { &:before { content: "\f50d"; } }
.icon-receipt-cutoff, .icon-receipt-cutoff    { &:before { content: "\f50e"; } }
.icon-receipt, .icon-receipt    { &:before { content: "\f50f"; } }
.icon-reception-0, .icon-reception-0    { &:before { content: "\f510"; } }
.icon-reception-1, .icon-reception-1    { &:before { content: "\f511"; } }
.icon-reception-2, .icon-reception-2    { &:before { content: "\f512"; } }
.icon-reception-3, .icon-reception-3    { &:before { content: "\f513"; } }
.icon-reception-4, .icon-reception-4    { &:before { content: "\f514"; } }
.icon-record-btn-fill, .icon-record-btn-plein    { &:before { content: "\f515"; } }
.icon-record-btn, .icon-record-btn    { &:before { content: "\f516"; } }
.icon-record-circle-fill, .icon-record-rond-plein    { &:before { content: "\f517"; } }
.icon-record-circle, .icon-record-rond    { &:before { content: "\f518"; } }
.icon-record-fill, .icon-record-plein    { &:before { content: "\f519"; } }
.icon-record, .icon-record    { &:before { content: "\f51a"; } }
.icon-record2-fill, .icon-record2-plein    { &:before { content: "\f51b"; } }
.icon-record2, .icon-record2    { &:before { content: "\f51c"; } }
.icon-reply-all-fill, .icon-reply-tout-plein    { &:before { content: "\f51d"; } }
.icon-reply-all, .icon-reply-tout    { &:before { content: "\f51e"; } }
.icon-reply-fill, .icon-reply-plein    { &:before { content: "\f51f"; } }
.icon-reply, .icon-reply    { &:before { content: "\f520"; } }
.icon-rss-fill, .icon-rss-plein    { &:before { content: "\f521"; } }
.icon-rss, .icon-rss    { &:before { content: "\f522"; } }
.icon-rulers, .icon-rulers    { &:before { content: "\f523"; } }
.icon-save-fill, .icon-sauvegarde-plein    { &:before { content: "\f524"; } }
.icon-save, .icon-sauvegarde    { &:before { content: "\f525"; } }
.icon-save2-fill, .icon-sauvegarde2-plein    { &:before { content: "\f526"; } }
.icon-save2, .icon-sauvegarde2    { &:before { content: "\f527"; } }
.icon-scissors, .icon-scissors    { &:before { content: "\f528"; } }
.icon-screwdriver, .icon-screwdriver    { &:before { content: "\f529"; } }
.icon-search, .icon-search    { &:before { content: "\f52a"; } }
.icon-segmented-nav, .icon-segmented-nav    { &:before { content: "\f52b"; } }
.icon-server, .icon-server    { &:before { content: "\f52c"; } }
.icon-share-fill, .icon-share-plein    { &:before { content: "\f52d"; } }
.icon-share, .icon-share    { &:before { content: "\f52e"; } }
.icon-shield-check, .icon-shield-ok    { &:before { content: "\f52f"; } }
.icon-shield-exclamation, .icon-shield-exclamation    { &:before { content: "\f530"; } }
.icon-shield-fill-check, .icon-shield-plein-ok    { &:before { content: "\f531"; } }
.icon-shield-fill-exclamation, .icon-shield-plein-exclamation    { &:before { content: "\f532"; } }
.icon-shield-fill-minus, .icon-shield-plein-minus    { &:before { content: "\f533"; } }
.icon-shield-fill-plus, .icon-shield-plein-plus    { &:before { content: "\f534"; } }
.icon-shield-fill-x, .icon-shield-plein-croix    { &:before { content: "\f535"; } }
.icon-shield-fill, .icon-shield-plein    { &:before { content: "\f536"; } }
.icon-shield-lock-fill, .icon-shield-cadenas-plein    { &:before { content: "\f537"; } }
.icon-shield-lock, .icon-shield-cadenas    { &:before { content: "\f538"; } }
.icon-shield-minus, .icon-shield-minus    { &:before { content: "\f539"; } }
.icon-shield-plus, .icon-shield-plus    { &:before { content: "\f53a"; } }
.icon-shield-shaded, .icon-shield-shaded    { &:before { content: "\f53b"; } }
.icon-shield-slash-fill, .icon-shield-slash-plein    { &:before { content: "\f53c"; } }
.icon-shield-slash, .icon-shield-slash    { &:before { content: "\f53d"; } }
.icon-shield-x, .icon-shield-croix    { &:before { content: "\f53e"; } }
.icon-shield, .icon-shield    { &:before { content: "\f53f"; } }
.icon-shift-fill, .icon-shift-plein    { &:before { content: "\f540"; } }
.icon-shift, .icon-shift    { &:before { content: "\f541"; } }
.icon-shop-window, .icon-shop-fenetre    { &:before { content: "\f542"; } }
.icon-shop, .icon-shop    { &:before { content: "\f543"; } }
.icon-shuffle, .icon-shuffle    { &:before { content: "\f544"; } }
.icon-signpost-2-fill, .icon-signpost-2-plein    { &:before { content: "\f545"; } }
.icon-signpost-2, .icon-signpost-2    { &:before { content: "\f546"; } }
.icon-signpost-fill, .icon-signpost-plein    { &:before { content: "\f547"; } }
.icon-signpost-split-fill, .icon-signpost-split-plein    { &:before { content: "\f548"; } }
.icon-signpost-split, .icon-signpost-split    { &:before { content: "\f549"; } }
.icon-signpost, .icon-signpost    { &:before { content: "\f54a"; } }
.icon-sim-fill, .icon-sim-plein    { &:before { content: "\f54b"; } }
.icon-sim, .icon-sim    { &:before { content: "\f54c"; } }
.icon-skip-backward-btn-fill, .icon-skip-backward-btn-plein    { &:before { content: "\f54d"; } }
.icon-skip-backward-btn, .icon-skip-backward-btn    { &:before { content: "\f54e"; } }
.icon-skip-backward-circle-fill, .icon-skip-backward-rond-plein    { &:before { content: "\f54f"; } }
.icon-skip-backward-circle, .icon-skip-backward-rond    { &:before { content: "\f550"; } }
.icon-skip-backward-fill, .icon-skip-backward-plein    { &:before { content: "\f551"; } }
.icon-skip-backward, .icon-skip-backward    { &:before { content: "\f552"; } }
.icon-skip-end-btn-fill, .icon-skip-fin-btn-plein    { &:before { content: "\f553"; } }
.icon-skip-end-btn, .icon-skip-fin-btn    { &:before { content: "\f554"; } }
.icon-skip-end-circle-fill, .icon-skip-fin-rond-plein    { &:before { content: "\f555"; } }
.icon-skip-end-circle, .icon-skip-fin-rond    { &:before { content: "\f556"; } }
.icon-skip-end-fill, .icon-skip-fin-plein    { &:before { content: "\f557"; } }
.icon-skip-end, .icon-skip-fin    { &:before { content: "\f558"; } }
.icon-skip-forward-btn-fill, .icon-skip-next-btn-plein    { &:before { content: "\f559"; } }
.icon-skip-forward-btn, .icon-skip-next-btn    { &:before { content: "\f55a"; } }
.icon-skip-forward-circle-fill, .icon-skip-next-rond-plein    { &:before { content: "\f55b"; } }
.icon-skip-forward-circle, .icon-skip-next-rond    { &:before { content: "\f55c"; } }
.icon-skip-forward-fill, .icon-skip-next-plein    { &:before { content: "\f55d"; } }
.icon-skip-forward, .icon-skip-next    { &:before { content: "\f55e"; } }
.icon-skip-start-btn-fill, .icon-skip-start-btn-plein    { &:before { content: "\f55f"; } }
.icon-skip-start-btn, .icon-skip-start-btn    { &:before { content: "\f560"; } }
.icon-skip-start-circle-fill, .icon-skip-start-rond-plein    { &:before { content: "\f561"; } }
.icon-skip-start-circle, .icon-skip-start-rond    { &:before { content: "\f562"; } }
.icon-skip-start-fill, .icon-skip-start-plein    { &:before { content: "\f563"; } }
.icon-skip-start, .icon-skip-start    { &:before { content: "\f564"; } }
.icon-slack, .icon-slack    { &:before { content: "\f565"; } }
.icon-slash-circle-fill, .icon-slash-rond-plein    { &:before { content: "\f566"; } }
.icon-slash-circle, .icon-slash-rond    { &:before { content: "\f567"; } }
.icon-slash-square-fill, .icon-slash-carre-plein    { &:before { content: "\f568"; } }
.icon-slash-square, .icon-slash-carre    { &:before { content: "\f569"; } }
.icon-slash, .icon-slash    { &:before { content: "\f56a"; } }
.icon-sliders, .icon-sliders    { &:before { content: "\f56b"; } }
.icon-smartwatch, .icon-smartwatch    { &:before { content: "\f56c"; } }
.icon-snow, .icon-snow    { &:before { content: "\f56d"; } }
.icon-snow2, .icon-snow2    { &:before { content: "\f56e"; } }
.icon-snow3, .icon-snow3    { &:before { content: "\f56f"; } }
.icon-sort-alpha-down-alt, .icon-sort-alpha-bas-alt    { &:before { content: "\f570"; } }
.icon-sort-alpha-down, .icon-sort-alpha-bas    { &:before { content: "\f571"; } }
.icon-sort-alpha-up-alt, .icon-sort-alpha-bas-alt    { &:before { content: "\f572"; } }
.icon-sort-alpha-up, .icon-sort-alpha-haut    { &:before { content: "\f573"; } }
.icon-sort-down-alt, .icon-sort-bas-alt    { &:before { content: "\f574"; } }
.icon-sort-down, .icon-sort-bas    { &:before { content: "\f575"; } }
.icon-sort-numeric-down-alt, .icon-sort-numeric-bas-alt    { &:before { content: "\f576"; } }
.icon-sort-numeric-down, .icon-sort-numeric-bas    { &:before { content: "\f577"; } }
.icon-sort-numeric-up-alt, .icon-sort-numeric-bas-alt    { &:before { content: "\f578"; } }
.icon-sort-numeric-up, .icon-sort-numeric-haut    { &:before { content: "\f579"; } }
.icon-sort-up-alt, .icon-sort-bas-alt    { &:before { content: "\f57a"; } }
.icon-sort-up, .icon-sort-haut    { &:before { content: "\f57b"; } }
.icon-soundwave, .icon-soundwave    { &:before { content: "\f57c"; } }
.icon-speaker-fill, .icon-son-plein    { &:before { content: "\f57d"; } }
.icon-speaker, .icon-son    { &:before { content: "\f57e"; } }
.icon-speedometer, .icon-speedometer    { &:before { content: "\f57f"; } }
.icon-speedometer2, .icon-speedometer2    { &:before { content: "\f580"; } }
.icon-spellcheck, .icon-spellcheck    { &:before { content: "\f581"; } }
.icon-square-fill, .icon-carre-plein    { &:before { content: "\f582"; } }
.icon-square-half, .icon-carre-moitie    { &:before { content: "\f583"; } }
.icon-square, .icon-carre    { &:before { content: "\f584"; } }
.icon-stack, .icon-stack    { &:before { content: "\f585"; } }
.icon-star-fill, .icon-star-plein    { &:before { content: "\f586"; } }
.icon-star-half, .icon-star-moitie    { &:before { content: "\f587"; } }
.icon-star, .icon-star    { &:before { content: "\f588"; } }
.icon-stars, .icon-stars    { &:before { content: "\f589"; } }
.icon-stickies-fill, .icon-stickies-plein    { &:before { content: "\f58a"; } }
.icon-stickies, .icon-stickies    { &:before { content: "\f58b"; } }
.icon-sticky-fill, .icon-sticky-plein    { &:before { content: "\f58c"; } }
.icon-sticky, .icon-sticky    { &:before { content: "\f58d"; } }
.icon-stop-btn-fill, .icon-stop-btn-plein    { &:before { content: "\f58e"; } }
.icon-stop-btn, .icon-stop-btn    { &:before { content: "\f58f"; } }
.icon-stop-circle-fill, .icon-stop-rond-plein    { &:before { content: "\f590"; } }
.icon-stop-circle, .icon-stop-rond    { &:before { content: "\f591"; } }
.icon-stop-fill, .icon-stop-plein    { &:before { content: "\f592"; } }
.icon-stop, .icon-stop    { &:before { content: "\f593"; } }
.icon-stoplights-fill, .icon-stoplights-plein    { &:before { content: "\f594"; } }
.icon-stoplights, .icon-stoplights    { &:before { content: "\f595"; } }
.icon-stopwatch-fill, .icon-stopwatch-plein    { &:before { content: "\f596"; } }
.icon-stopwatch, .icon-stopwatch    { &:before { content: "\f597"; } }
.icon-subtract, .icon-subtract    { &:before { content: "\f598"; } }
.icon-suit-club-fill, .icon-suit-club-plein    { &:before { content: "\f599"; } }
.icon-suit-club, .icon-suit-club    { &:before { content: "\f59a"; } }
.icon-suit-diamond-fill, .icon-suit-diamond-plein    { &:before { content: "\f59b"; } }
.icon-suit-diamond, .icon-suit-diamond    { &:before { content: "\f59c"; } }
.icon-suit-heart-fill, .icon-suit-coeur-plein    { &:before { content: "\f59d"; } }
.icon-suit-heart, .icon-suit-coeur    { &:before { content: "\f59e"; } }
.icon-suit-spade-fill, .icon-suit-spade-plein    { &:before { content: "\f59f"; } }
.icon-suit-spade, .icon-suit-spade    { &:before { content: "\f5a0"; } }
.icon-sun-fill, .icon-sun-plein    { &:before { content: "\f5a1"; } }
.icon-sun, .icon-sun    { &:before { content: "\f5a2"; } }
.icon-sunglasses, .icon-sunglasses    { &:before { content: "\f5a3"; } }
.icon-sunrise-fill, .icon-sunrise-plein    { &:before { content: "\f5a4"; } }
.icon-sunrise, .icon-sunrise    { &:before { content: "\f5a5"; } }
.icon-sunset-fill, .icon-sunset-plein    { &:before { content: "\f5a6"; } }
.icon-sunset, .icon-sunset    { &:before { content: "\f5a7"; } }
.icon-symmetry-horizontal, .icon-symmetry-horizontal    { &:before { content: "\f5a8"; } }
.icon-symmetry-vertical, .icon-symmetry-vertical    { &:before { content: "\f5a9"; } }
.icon-table, .icon-table    { &:before { content: "\f5aa"; } }
.icon-tablet-fill, .icon-tablet-plein    { &:before { content: "\f5ab"; } }
.icon-tablet-landscape-fill, .icon-tablet-landscape-plein    { &:before { content: "\f5ac"; } }
.icon-tablet-landscape, .icon-tablet-landscape    { &:before { content: "\f5ad"; } }
.icon-tablet, .icon-tablet    { &:before { content: "\f5ae"; } }
.icon-tag-fill, .icon-tag-plein    { &:before { content: "\f5af"; } }
.icon-tag, .icon-tag    { &:before { content: "\f5b0"; } }
.icon-tags-fill, .icon-tags-plein    { &:before { content: "\f5b1"; } }
.icon-tags, .icon-tags    { &:before { content: "\f5b2"; } }
.icon-telegram, .icon-telegram    { &:before { content: "\f5b3"; } }
.icon-telephone-fill, .icon-telephone-plein    { &:before { content: "\f5b4"; } }
.icon-telephone-forward-fill, .icon-telephone-next-plein    { &:before { content: "\f5b5"; } }
.icon-telephone-forward, .icon-telephone-next    { &:before { content: "\f5b6"; } }
.icon-telephone-inbound-fill, .icon-telephone-inbound-plein    { &:before { content: "\f5b7"; } }
.icon-telephone-inbound, .icon-telephone-inbound    { &:before { content: "\f5b8"; } }
.icon-telephone-minus-fill, .icon-telephone-minus-plein    { &:before { content: "\f5b9"; } }
.icon-telephone-minus, .icon-telephone-minus    { &:before { content: "\f5ba"; } }
.icon-telephone-outbound-fill, .icon-telephone-outbound-plein    { &:before { content: "\f5bb"; } }
.icon-telephone-outbound, .icon-telephone-outbound    { &:before { content: "\f5bc"; } }
.icon-telephone-plus-fill, .icon-telephone-plus-plein    { &:before { content: "\f5bd"; } }
.icon-telephone-plus, .icon-telephone-plus    { &:before { content: "\f5be"; } }
.icon-telephone-x-fill, .icon-telephone-x-plein    { &:before { content: "\f5bf"; } }
.icon-telephone-x, .icon-telephone-croix    { &:before { content: "\f5c0"; } }
.icon-telephone, .icon-telephone    { &:before { content: "\f5c1"; } }
.icon-terminal-fill, .icon-terminal-plein    { &:before { content: "\f5c2"; } }
.icon-terminal, .icon-terminal    { &:before { content: "\f5c3"; } }
.icon-text-center, .icon-texte-centre    { &:before { content: "\f5c4"; } }
.icon-text-indent-left, .icon-indent-gauche    { &:before { content: "\f5c5"; } }
.icon-text-indent-right, .icon-indent-droite    { &:before { content: "\f5c6"; } }
.icon-text-left, .icon-texte-gauche    { &:before { content: "\f5c7"; } }
.icon-text-paragraph, .icon-texte-paragraph    { &:before { content: "\f5c8"; } }
.icon-text-right, .icon-texte-droite    { &:before { content: "\f5c9"; } }
.icon-textarea-resize, .icon-textearea-resize    { &:before { content: "\f5ca"; } }
.icon-textarea-t, .icon-textearea-t    { &:before { content: "\f5cb"; } }
.icon-textarea, .icon-textearea    { &:before { content: "\f5cc"; } }
.icon-thermometer-half, .icon-temperature-moitie    { &:before { content: "\f5cd"; } }
.icon-thermometer-high, .icon-temperature-high    { &:before { content: "\f5ce"; } }
.icon-thermometer-low, .icon-temperature-low    { &:before { content: "\f5cf"; } }
.icon-thermometer-snow, .icon-temperature-snow    { &:before { content: "\f5d0"; } }
.icon-thermometer-sun, .icon-temperature-sun    { &:before { content: "\f5d1"; } }
.icon-thermometer, .icon-temperature    { &:before { content: "\f5d2"; } }
.icon-three-dots-vertical, .icon-three-dots-vertical    { &:before { content: "\f5d3"; } }
.icon-three-dots, .icon-three-dots    { &:before { content: "\f5d4"; } }
.icon-toggle-off, .icon-toggle-off    { &:before { content: "\f5d5"; } }
.icon-toggle-on, .icon-toggle-on    { &:before { content: "\f5d6"; } }
.icon-toggle2-off, .icon-toggle2-off    { &:before { content: "\f5d7"; } }
.icon-toggle2-on, .icon-toggle2-on    { &:before { content: "\f5d8"; } }
.icon-toggles, .icon-toggles    { &:before { content: "\f5d9"; } }
.icon-toggles2, .icon-toggles2    { &:before { content: "\f5da"; } }
.icon-tools, .icon-outil    { &:before { content: "\f5db"; } }
.icon-tornado, .icon-tornado    { &:before { content: "\f5dc"; } }
.icon-trash-fill, .icon-poubelle-plein    { &:before { content: "\f5dd"; } }
.icon-trash, .icon-poubelle    { &:before { content: "\f5de"; } }
.icon-trash2-fill, .icon-poubelle2-plein    { &:before { content: "\f5df"; } }
.icon-trash2, .icon-poubelle2    { &:before { content: "\f5e0"; } }
.icon-tree-fill, .icon-arbre-plein    { &:before { content: "\f5e1"; } }
.icon-tree, .icon-arbre    { &:before { content: "\f5e2"; } }
.icon-triangle-fill, .icon-triangle-plein    { &:before { content: "\f5e3"; } }
.icon-triangle-half, .icon-triangle-moitie    { &:before { content: "\f5e4"; } }
.icon-triangle, .icon-triangle    { &:before { content: "\f5e5"; } }
.icon-trophy-fill, .icon-trophy-plein    { &:before { content: "\f5e6"; } }
.icon-trophy, .icon-trophy    { &:before { content: "\f5e7"; } }
.icon-tropical-storm, .icon-tropical-storm    { &:before { content: "\f5e8"; } }
.icon-truck-flatbed, .icon-camion-flatbed    { &:before { content: "\f5e9"; } }
.icon-truck, .icon-camion    { &:before { content: "\f5ea"; } }
.icon-tsunami, .icon-tsunami    { &:before { content: "\f5eb"; } }
.icon-tv-fill, .icon-tv-plein    { &:before { content: "\f5ec"; } }
.icon-tv, .icon-tv    { &:before { content: "\f5ed"; } }
.icon-twitch, .icon-twitch    { &:before { content: "\f5ee"; } }
.icon-twitter, .icon-twitter    { &:before { content: "\f5ef"; } }
.icon-type-bold, .icon-gras    { &:before { content: "\f5f0"; } }
.icon-type-h1, .icon-type-h1    { &:before { content: "\f5f1"; } }
.icon-type-h2, .icon-type-h2    { &:before { content: "\f5f2"; } }
.icon-type-h3, .icon-type-h3    { &:before { content: "\f5f3"; } }
.icon-type-italic, .icon-italic    { &:before { content: "\f5f4"; } }
.icon-type-strikethrough, .icon-type-strikethrough    { &:before { content: "\f5f5"; } }
.icon-type-underline, .icon-type-underline    { &:before { content: "\f5f6"; } }
.icon-type, .icon-type    { &:before { content: "\f5f7"; } }
.icon-ui-checks-grid, .icon-ui-oks-grille    { &:before { content: "\f5f8"; } }
.icon-ui-checks, .icon-ui-oks    { &:before { content: "\f5f9"; } }
.icon-ui-radios-grid, .icon-ui-radios-grille    { &:before { content: "\f5fa"; } }
.icon-ui-radios, .icon-ui-radios    { &:before { content: "\f5fb"; } }
.icon-umbrella-fill, .icon-umbrella-plein    { &:before { content: "\f5fc"; } }
.icon-umbrella, .icon-umbrella    { &:before { content: "\f5fd"; } }
.icon-union, .icon-union    { &:before { content: "\f5fe"; } }
.icon-unlock-fill, .icon-unlock-plein    { &:before { content: "\f5ff"; } }
.icon-unlock, .icon-unlock    { &:before { content: "\f600"; } }
.icon-upc-scan, .icon-upc-scan    { &:before { content: "\f601"; } }
.icon-upc, .icon-upc    { &:before { content: "\f602"; } }
.icon-upload, .icon-upload    { &:before { content: "\f603"; } }
.icon-vector-pen, .icon-vector-pen    { &:before { content: "\f604"; } }
.icon-view-list, .icon-view-liste    { &:before { content: "\f605"; } }
.icon-view-stacked, .icon-view-stacked    { &:before { content: "\f606"; } }
.icon-vinyl-fill, .icon-vinyl-plein    { &:before { content: "\f607"; } }
.icon-vinyl, .icon-vinyl    { &:before { content: "\f608"; } }
.icon-voicemail, .icon-voicemail    { &:before { content: "\f609"; } }
.icon-volume-down-fill, .icon-volume-bas-plein    { &:before { content: "\f60a"; } }
.icon-volume-down, .icon-volume-bas    { &:before { content: "\f60b"; } }
.icon-volume-mute-fill, .icon-volume-mute-plein    { &:before { content: "\f60c"; } }
.icon-volume-mute, .icon-volume-mute    { &:before { content: "\f60d"; } }
.icon-volume-off-fill, .icon-volume-off-plein    { &:before { content: "\f60e"; } }
.icon-volume-off, .icon-volume-off    { &:before { content: "\f60f"; } }
.icon-volume-up-fill, .icon-volume-bas-plein    { &:before { content: "\f610"; } }
.icon-volume-up, .icon-volume-haut    { &:before { content: "\f611"; } }
.icon-vr, .icon-vr    { &:before { content: "\f612"; } }
.icon-wallet-fill, .icon-wallet-plein    { &:before { content: "\f613"; } }
.icon-wallet, .icon-wallet    { &:before { content: "\f614"; } }
.icon-wallet2, .icon-wallet2    { &:before { content: "\f615"; } }
.icon-watch, .icon-watch    { &:before { content: "\f616"; } }
.icon-water, .icon-water    { &:before { content: "\f617"; } }
.icon-whatsapp, .icon-whatsapp    { &:before { content: "\f618"; } }
.icon-wifi-1, .icon-wifi-1    { &:before { content: "\f619"; } }
.icon-wifi-2, .icon-wifi-2    { &:before { content: "\f61a"; } }
.icon-wifi-off, .icon-wifi-off    { &:before { content: "\f61b"; } }
.icon-wifi, .icon-wifi    { &:before { content: "\f61c"; } }
.icon-wind, .icon-wind    { &:before { content: "\f61d"; } }
.icon-window-dock, .icon-fenetre-dock    { &:before { content: "\f61e"; } }
.icon-window-sidebar, .icon-fenetre-sidebar    { &:before { content: "\f61f"; } }
.icon-window, .icon-fenetre    { &:before { content: "\f620"; } }
.icon-wrench, .icon-wrench    { &:before { content: "\f621"; } }
.icon-x-circle-fill, .icon-x-rond-plein    { &:before { content: "\f622"; } }
.icon-x-circle, .icon-x-rond    { &:before { content: "\f623"; } }
.icon-x-diamond-fill, .icon-x-diamond-plein    { &:before { content: "\f624"; } }
.icon-x-diamond, .icon-x-diamond    { &:before { content: "\f625"; } }
.icon-x-octagon-fill, .icon-x-octagon-plein    { &:before { content: "\f626"; } }
.icon-x-octagon, .icon-x-octagon    { &:before { content: "\f627"; } }
.icon-x-square-fill, .icon-x-carre-plein    { &:before { content: "\f628"; } }
.icon-x-square, .icon-x-carre    { &:before { content: "\f629"; } }
.icon-x, .icon-croix    { &:before { content: "\f62a"; } }
.icon-youtube, .icon-youtube    { &:before { content: "\f62b"; } }
.icon-zoom-in, .icon-zoom-in    { &:before { content: "\f62c"; } }
.icon-zoom-out, .icon-zoom-out    { &:before { content: "\f62d"; } }
.icon-bank, .icon-bank    { &:before { content: "\f62e"; } }
.icon-bank2, .icon-bank2    { &:before { content: "\f62f"; } }
.icon-bell-slash-fill, .icon-alarme-slash-plein    { &:before { content: "\f630"; } }
.icon-bell-slash, .icon-alarme-slash    { &:before { content: "\f631"; } }
.icon-cash-coin, .icon-cash-coin    { &:before { content: "\f632"; } }
.icon-check-lg, .icon-ok-lg    { &:before { content: "\f633"; } }
.icon-coin, .icon-coin    { &:before { content: "\f634"; } }
.icon-currency-bitcoin, .icon-currency-bitcoin    { &:before { content: "\f635"; } }
.icon-currency-dollar, .icon-currency-dollar    { &:before { content: "\f636"; } }
.icon-currency-euro, .icon-currency-euro    { &:before { content: "\f637"; } }
.icon-currency-exchange, .icon-currency-exchange    { &:before { content: "\f638"; } }
.icon-currency-pound, .icon-currency-pound    { &:before { content: "\f639"; } }
.icon-currency-yen, .icon-currency-yen    { &:before { content: "\f63a"; } }
.icon-dash-lg, .icon-dash-lg    { &:before { content: "\f63b"; } }
.icon-exclamation-lg, .icon-exclamation-lg    { &:before { content: "\f63c"; } }
.icon-file-earmark-pdf-fill, .icon-fichier-earmark-pdf-plein    { &:before { content: "\f63d"; } }
.icon-file-earmark-pdf, .icon-fichier-earmark-pdf    { &:before { content: "\f63e"; } }
.icon-file-pdf-fill, .icon-fichier-pdf-plein    { &:before { content: "\f63f"; } }
.icon-file-pdf, .icon-fichier-pdf    { &:before { content: "\f640"; } }
.icon-gender-ambiguous, .icon-gender-ambiguous    { &:before { content: "\f641"; } }
.icon-gender-female, .icon-gender-female    { &:before { content: "\f642"; } }
.icon-gender-male, .icon-gender-male    { &:before { content: "\f643"; } }
.icon-gender-trans, .icon-gender-trans    { &:before { content: "\f644"; } }
.icon-headset-vr, .icon-headset-vr    { &:before { content: "\f645"; } }
.icon-info-lg, .icon-info-lg    { &:before { content: "\f646"; } }
.icon-mastodon, .icon-mastodon    { &:before { content: "\f647"; } }
.icon-messenger, .icon-messenger    { &:before { content: "\f648"; } }
.icon-piggy-bank-fill, .icon-piggy-bank-plein    { &:before { content: "\f649"; } }
.icon-piggy-bank, .icon-piggy-bank    { &:before { content: "\f64a"; } }
.icon-pin-map-fill, .icon-pin-map-plein    { &:before { content: "\f64b"; } }
.icon-pin-map, .icon-pin-map    { &:before { content: "\f64c"; } }
.icon-plus-lg, .icon-plus-lg    { &:before { content: "\f64d"; } }
.icon-question-lg, .icon-question-lg    { &:before { content: "\f64e"; } }
.icon-recycle, .icon-recycle    { &:before { content: "\f64f"; } }
.icon-reddit, .icon-reddit    { &:before { content: "\f650"; } }
.icon-safe-fill, .icon-safe-plein    { &:before { content: "\f651"; } }
.icon-safe2-fill, .icon-safe2-plein    { &:before { content: "\f652"; } }
.icon-safe2, .icon-safe2    { &:before { content: "\f653"; } }
.icon-sd-card-fill, .icon-sd-cb-plein    { &:before { content: "\f654"; } }
.icon-sd-card, .icon-sd-cb    { &:before { content: "\f655"; } }
.icon-skype, .icon-skype    { &:before { content: "\f656"; } }
.icon-slash-lg, .icon-slash-lg    { &:before { content: "\f657"; } }
.icon-translate, .icon-translate    { &:before { content: "\f658"; } }
.icon-x-lg, .icon-x-lg    { &:before { content: "\f659"; } }
.icon-safe, .icon-safe    { &:before { content: "\f65a"; } }
.icon-apple, .icon-apple    { &:before { content: "\f65b"; } }
.icon-microsoft, .icon-microsoft    { &:before { content: "\f65d"; } }
.icon-windows, .icon-fenetres    { &:before { content: "\f65e"; } }
.icon-behance, .icon-behance    { &:before { content: "\f65c"; } }
.icon-dribbble, .icon-dribbble    { &:before { content: "\f65f"; } }
.icon-line, .icon-line    { &:before { content: "\f660"; } }
.icon-medium, .icon-medium    { &:before { content: "\f661"; } }
.icon-paypal, .icon-paypal    { &:before { content: "\f662"; } }
.icon-pinterest, .icon-pinterest    { &:before { content: "\f663"; } }
.icon-signal, .icon-signal    { &:before { content: "\f664"; } }
.icon-snapchat, .icon-snapchat    { &:before { content: "\f665"; } }
.icon-spotify, .icon-spotify    { &:before { content: "\f666"; } }
.icon-stack-overflow, .icon-stack-overflow    { &:before { content: "\f667"; } }
.icon-strava, .icon-strava    { &:before { content: "\f668"; } }
.icon-wordpress, .icon-wordpress    { &:before { content: "\f669"; } }
.icon-vimeo, .icon-vimeo    { &:before { content: "\f66a"; } }
.icon-activity, .icon-activity    { &:before { content: "\f66b"; } }
.icon-easel2-fill, .icon-easel2-plein    { &:before { content: "\f66c"; } }
.icon-easel2, .icon-easel2    { &:before { content: "\f66d"; } }
.icon-easel3-fill, .icon-easel3-plein    { &:before { content: "\f66e"; } }
.icon-easel3, .icon-easel3    { &:before { content: "\f66f"; } }
.icon-fan, .icon-fan    { &:before { content: "\f670"; } }
.icon-fingerprint, .icon-fingerprint    { &:before { content: "\f671"; } }
.icon-graph-down-arrow, .icon-graph-bas-fleche    { &:before { content: "\f672"; } }
.icon-graph-up-arrow, .icon-graph-bas-fleche    { &:before { content: "\f673"; } }
.icon-hypnotize, .icon-hypnotize    { &:before { content: "\f674"; } }
.icon-magic, .icon-magic    { &:before { content: "\f675"; } }
.icon-person-rolodex, .icon-user-rolodex    { &:before { content: "\f676"; } }
.icon-person-video, .icon-user-video    { &:before { content: "\f677"; } }
.icon-person-video2, .icon-user-video2    { &:before { content: "\f678"; } }
.icon-person-video3, .icon-user-video3    { &:before { content: "\f679"; } }
.icon-person-workspace, .icon-user-workspace    { &:before { content: "\f67a"; } }
.icon-radioactive, .icon-radioactive    { &:before { content: "\f67b"; } }
.icon-webcam-fill, .icon-webcam-plein    { &:before { content: "\f67c"; } }
.icon-webcam, .icon-webcam    { &:before { content: "\f67d"; } }
.icon-yin-yang, .icon-yin-yang    { &:before { content: "\f67e"; } }
.icon-bandaid-fill, .icon-bandaid-plein    { &:before { content: "\f680"; } }
.icon-bandaid, .icon-bandaid    { &:before { content: "\f681"; } }
.icon-bluetooth, .icon-bluetooth    { &:before { content: "\f682"; } }
.icon-body-text, .icon-body-texte    { &:before { content: "\f683"; } }
.icon-boombox, .icon-boombox    { &:before { content: "\f684"; } }
.icon-boxes, .icon-boxes    { &:before { content: "\f685"; } }
.icon-dpad-fill, .icon-dpad-plein    { &:before { content: "\f686"; } }
.icon-dpad, .icon-dpad    { &:before { content: "\f687"; } }
.icon-ear-fill, .icon-ear-plein    { &:before { content: "\f688"; } }
.icon-ear, .icon-ear    { &:before { content: "\f689"; } }
.icon-envelope-check-1, .icon-envelope-ok-1    { &:before { content: "\f68a"; } }
.icon-envelope-check-fill, .icon-envelope-ok-plein    { &:before { content: "\f68b"; } }
.icon-envelope-check, .icon-envelope-ok    { &:before { content: "\f68c"; } }
.icon-envelope-dash-1, .icon-envelope-dash-1    { &:before { content: "\f68d"; } }
.icon-envelope-dash-fill, .icon-envelope-dash-plein    { &:before { content: "\f68e"; } }
.icon-envelope-dash, .icon-envelope-dash    { &:before { content: "\f68f"; } }
.icon-envelope-exclamation-1, .icon-envelope-exclamation-1    { &:before { content: "\f690"; } }
.icon-envelope-exclamation-fill, .icon-envelope-exclamation-plein    { &:before { content: "\f691"; } }
.icon-envelope-exclamation, .icon-envelope-exclamation    { &:before { content: "\f692"; } }
.icon-envelope-plus-fill, .icon-envelope-plus-plein    { &:before { content: "\f693"; } }
.icon-envelope-plus, .icon-envelope-plus    { &:before { content: "\f694"; } }
.icon-envelope-slash-1, .icon-envelope-slash-1    { &:before { content: "\f695"; } }
.icon-envelope-slash-fill, .icon-envelope-slash-plein    { &:before { content: "\f696"; } }
.icon-envelope-slash, .icon-envelope-slash    { &:before { content: "\f697"; } }
.icon-envelope-x-1, .icon-envelope-x-1    { &:before { content: "\f698"; } }
.icon-envelope-x-fill, .icon-envelope-x-plein    { &:before { content: "\f699"; } }
.icon-envelope-x, .icon-envelope-croix    { &:before { content: "\f69a"; } }
.icon-explicit-fill, .icon-explicit-plein    { &:before { content: "\f69b"; } }
.icon-explicit, .icon-explicit    { &:before { content: "\f69c"; } }
.icon-git, .icon-git    { &:before { content: "\f69d"; } }
.icon-infinity, .icon-infinity    { &:before { content: "\f69e"; } }
.icon-list-columns-reverse, .icon-liste-columns-reverse    { &:before { content: "\f69f"; } }
.icon-list-columns, .icon-liste-columns    { &:before { content: "\f6a0"; } }
.icon-meta, .icon-meta    { &:before { content: "\f6a1"; } }
.icon-mortorboard-fill, .icon-mortorboard-plein    { &:before { content: "\f6a2"; } }
.icon-mortorboard, .icon-mortorboard    { &:before { content: "\f6a3"; } }
.icon-nintendo-switch, .icon-nintendo-switch    { &:before { content: "\f6a4"; } }
.icon-pc-display-horizontal, .icon-pc-display-horizontal    { &:before { content: "\f6a5"; } }
.icon-pc-display, .icon-pc-display    { &:before { content: "\f6a6"; } }
.icon-pc-horizontal, .icon-pc-horizontal    { &:before { content: "\f6a7"; } }
.icon-pc, .icon-pc    { &:before { content: "\f6a8"; } }
.icon-playstation, .icon-playstation    { &:before { content: "\f6a9"; } }
.icon-plus-slash-minus, .icon-plus-slash-minus    { &:before { content: "\f6aa"; } }
.icon-projector-fill, .icon-projector-plein    { &:before { content: "\f6ab"; } }
.icon-projector, .icon-projector    { &:before { content: "\f6ac"; } }
.icon-qr-code-scan, .icon-qr-code-scan    { &:before { content: "\f6ad"; } }
.icon-qr-code, .icon-qr-code    { &:before { content: "\f6ae"; } }
.icon-quora, .icon-quora    { &:before { content: "\f6af"; } }
.icon-quote, .icon-quote    { &:before { content: "\f6b0"; } }
.icon-robot, .icon-robot    { &:before { content: "\f6b1"; } }
.icon-send-check-fill, .icon-send-ok-plein    { &:before { content: "\f6b2"; } }
.icon-send-check, .icon-send-ok    { &:before { content: "\f6b3"; } }
.icon-send-dash-fill, .icon-send-dash-plein    { &:before { content: "\f6b4"; } }
.icon-send-dash, .icon-send-dash    { &:before { content: "\f6b5"; } }
.icon-send-exclamation-1, .icon-send-exclamation-1    { &:before { content: "\f6b6"; } }
.icon-send-exclamation-fill, .icon-send-exclamation-plein    { &:before { content: "\f6b7"; } }
.icon-send-exclamation, .icon-send-exclamation    { &:before { content: "\f6b8"; } }
.icon-send-fill, .icon-send-plein    { &:before { content: "\f6b9"; } }
.icon-send-plus-fill, .icon-send-plus-plein    { &:before { content: "\f6ba"; } }
.icon-send-plus, .icon-send-plus    { &:before { content: "\f6bb"; } }
.icon-send-slash-fill, .icon-send-slash-plein    { &:before { content: "\f6bc"; } }
.icon-send-slash, .icon-send-slash    { &:before { content: "\f6bd"; } }
.icon-send-x-fill, .icon-send-x-plein    { &:before { content: "\f6be"; } }
.icon-send-x, .icon-send-croix    { &:before { content: "\f6bf"; } }
.icon-send, .icon-send    { &:before { content: "\f6c0"; } }
.icon-steam, .icon-steam    { &:before { content: "\f6c1"; } }
.icon-terminal-dash-1, .icon-terminal-dash-1    { &:before { content: "\f6c2"; } }
.icon-terminal-dash, .icon-terminal-dash    { &:before { content: "\f6c3"; } }
.icon-terminal-plus, .icon-terminal-plus    { &:before { content: "\f6c4"; } }
.icon-terminal-split, .icon-terminal-split    { &:before { content: "\f6c5"; } }
.icon-ticket-detailed-fill, .icon-ticket-detailed-plein    { &:before { content: "\f6c6"; } }
.icon-ticket-detailed, .icon-ticket-detailed    { &:before { content: "\f6c7"; } }
.icon-ticket-fill, .icon-ticket-plein    { &:before { content: "\f6c8"; } }
.icon-ticket-perforated-fill, .icon-ticket-perforated-plein    { &:before { content: "\f6c9"; } }
.icon-ticket-perforated, .icon-ticket-perforated    { &:before { content: "\f6ca"; } }
.icon-ticket, .icon-ticket    { &:before { content: "\f6cb"; } }
.icon-tiktok, .icon-tiktok    { &:before { content: "\f6cc"; } }
.icon-window-dash, .icon-fenetre-dash    { &:before { content: "\f6cd"; } }
.icon-window-desktop, .icon-fenetre-desktop    { &:before { content: "\f6ce"; } }
.icon-window-fullscreen, .icon-fenetre-plein-ecran    { &:before { content: "\f6cf"; } }
.icon-window-plus, .icon-fenetre-plus    { &:before { content: "\f6d0"; } }
.icon-window-split, .icon-fenetre-split    { &:before { content: "\f6d1"; } }
.icon-window-stack, .icon-fenetre-stack    { &:before { content: "\f6d2"; } }
.icon-window-x, .icon-fenetre-croix    { &:before { content: "\f6d3"; } }
.icon-xbox, .icon-xbox    { &:before { content: "\f6d4"; } }
.icon-ethernet, .icon-ethernet    { &:before { content: "\f6d5"; } }
.icon-hdmi-fill, .icon-hdmi-plein    { &:before { content: "\f6d6"; } }
.icon-hdmi, .icon-hdmi    { &:before { content: "\f6d7"; } }
.icon-usb-c-fill, .icon-usb-c-plein    { &:before { content: "\f6d8"; } }
.icon-usb-c, .icon-usb-c    { &:before { content: "\f6d9"; } }
.icon-usb-fill, .icon-usb-plein    { &:before { content: "\f6da"; } }
.icon-usb-plug-fill, .icon-usb-plug-plein    { &:before { content: "\f6db"; } }
.icon-usb-plug, .icon-usb-plug    { &:before { content: "\f6dc"; } }
.icon-usb-symbol, .icon-usb-symbol    { &:before { content: "\f6dd"; } }
.icon-usb, .icon-usb    { &:before { content: "\f6de"; } }
.icon-boombox-fill, .icon-boombox-plein    { &:before { content: "\f6df"; } }
.icon-displayport-1, .icon-displayport-1    { &:before { content: "\f6e0"; } }
.icon-displayport, .icon-displayport    { &:before { content: "\f6e1"; } }
.icon-gpu-card, .icon-gpu-cb    { &:before { content: "\f6e2"; } }
.icon-memory, .icon-memory    { &:before { content: "\f6e3"; } }
.icon-modem-fill, .icon-modem-plein    { &:before { content: "\f6e4"; } }
.icon-modem, .icon-modem    { &:before { content: "\f6e5"; } }
.icon-motherboard-fill, .icon-motherboard-plein    { &:before { content: "\f6e6"; } }
.icon-motherboard, .icon-motherboard    { &:before { content: "\f6e7"; } }
.icon-optical-audio-fill, .icon-optical-audio-plein    { &:before { content: "\f6e8"; } }
.icon-optical-audio, .icon-optical-audio    { &:before { content: "\f6e9"; } }
.icon-pci-card, .icon-pci-cb    { &:before { content: "\f6ea"; } }
.icon-router-fill, .icon-router-plein    { &:before { content: "\f6eb"; } }
.icon-router, .icon-router    { &:before { content: "\f6ec"; } }
.icon-ssd-fill, .icon-ssd-plein    { &:before { content: "\f6ed"; } }
.icon-ssd, .icon-ssd    { &:before { content: "\f6ee"; } }
.icon-thunderbolt-fill, .icon-thunderbolt-plein    { &:before { content: "\f6ef"; } }
.icon-thunderbolt, .icon-thunderbolt    { &:before { content: "\f6f0"; } }
.icon-usb-drive-fill, .icon-usb-drive-plein    { &:before { content: "\f6f1"; } }
.icon-usb-drive, .icon-usb-drive    { &:before { content: "\f6f2"; } }
.icon-usb-micro-fill, .icon-usb-micro-plein    { &:before { content: "\f6f3"; } }
.icon-usb-micro, .icon-usb-micro    { &:before { content: "\f6f4"; } }
.icon-usb-mini-fill, .icon-usb-mini-plein    { &:before { content: "\f6f5"; } }
.icon-usb-mini, .icon-usb-mini    { &:before { content: "\f6f6"; } }
.icon-cloud-haze2, .icon-cloud-haze2    { &:before { content: "\f6f7"; } }
.icon-device-hdd-fill, .icon-device-hdd-plein    { &:before { content: "\f6f8"; } }
.icon-device-hdd, .icon-device-hdd    { &:before { content: "\f6f9"; } }
.icon-device-ssd-fill, .icon-device-ssd-plein    { &:before { content: "\f6fa"; } }
.icon-device-ssd, .icon-device-ssd    { &:before { content: "\f6fb"; } }
.icon-displayport-fill, .icon-displayport-plein    { &:before { content: "\f6fc"; } }
.icon-mortarboard-fill, .icon-mortarboard-plein    { &:before { content: "\f6fd"; } }
.icon-mortarboard, .icon-mortarboard    { &:before { content: "\f6fe"; } }
.icon-terminal-x, .icon-terminal-croix    { &:before { content: "\f6ff"; } }
.icon-arrow-through-heart-fill, .icon-fleche-through-coeur-plein    { &:before { content: "\f700"; } }
.icon-arrow-through-heart, .icon-fleche-through-coeur    { &:before { content: "\f701"; } }
.icon-badge-sd-fill, .icon-badge-sd-plein    { &:before { content: "\f702"; } }
.icon-badge-sd, .icon-badge-sd    { &:before { content: "\f703"; } }
.icon-bag-heart-fill, .icon-bag-coeur-plein    { &:before { content: "\f704"; } }
.icon-bag-heart, .icon-bag-coeur    { &:before { content: "\f705"; } }
.icon-balloon-fill, .icon-balloon-plein    { &:before { content: "\f706"; } }
.icon-balloon-heart-fill, .icon-balloon-coeur-plein    { &:before { content: "\f707"; } }
.icon-balloon-heart, .icon-balloon-coeur    { &:before { content: "\f708"; } }
.icon-balloon, .icon-balloon    { &:before { content: "\f709"; } }
.icon-box2-fill, .icon-box2-plein    { &:before { content: "\f70a"; } }
.icon-box2-heart-fill, .icon-box2-coeur-plein    { &:before { content: "\f70b"; } }
.icon-box2-heart, .icon-box2-coeur    { &:before { content: "\f70c"; } }
.icon-box2, .icon-box2    { &:before { content: "\f70d"; } }
.icon-braces-asterisk, .icon-braces-asterisk    { &:before { content: "\f70e"; } }
.icon-calendar-heart-fill, .icon-calendar-coeur-plein    { &:before { content: "\f70f"; } }
.icon-calendar-heart, .icon-calendar-coeur    { &:before { content: "\f710"; } }
.icon-calendar2-heart-fill, .icon-calendar2-coeur-plein    { &:before { content: "\f711"; } }
.icon-calendar2-heart, .icon-calendar2-coeur    { &:before { content: "\f712"; } }
.icon-chat-heart-fill, .icon-chat-coeur-plein    { &:before { content: "\f713"; } }
.icon-chat-heart, .icon-chat-coeur    { &:before { content: "\f714"; } }
.icon-chat-left-heart-fill, .icon-chat-gauche-coeur-plein    { &:before { content: "\f715"; } }
.icon-chat-left-heart, .icon-chat-gauche-coeur    { &:before { content: "\f716"; } }
.icon-chat-right-heart-fill, .icon-chat-droite-coeur-plein    { &:before { content: "\f717"; } }
.icon-chat-right-heart, .icon-chat-droite-coeur    { &:before { content: "\f718"; } }
.icon-chat-square-heart-fill, .icon-chat-carre-coeur-plein    { &:before { content: "\f719"; } }
.icon-chat-square-heart, .icon-chat-carre-coeur    { &:before { content: "\f71a"; } }
.icon-clipboard-check-fill, .icon-clipboard-ok-plein    { &:before { content: "\f71b"; } }
.icon-clipboard-data-fill, .icon-clipboard-data-plein    { &:before { content: "\f71c"; } }
.icon-clipboard-fill, .icon-clipboard-plein    { &:before { content: "\f71d"; } }
.icon-clipboard-heart-fill, .icon-clipboard-coeur-plein    { &:before { content: "\f71e"; } }
.icon-clipboard-heart, .icon-clipboard-coeur    { &:before { content: "\f71f"; } }
.icon-clipboard-minus-fill, .icon-clipboard-minus-plein    { &:before { content: "\f720"; } }
.icon-clipboard-plus-fill, .icon-clipboard-plus-plein    { &:before { content: "\f721"; } }
.icon-clipboard-pulse, .icon-clipboard-pulse    { &:before { content: "\f722"; } }
.icon-clipboard-x-fill, .icon-clipboard-x-plein    { &:before { content: "\f723"; } }
.icon-clipboard2-check-fill, .icon-clipboard2-ok-plein    { &:before { content: "\f724"; } }
.icon-clipboard2-check, .icon-clipboard2-ok    { &:before { content: "\f725"; } }
.icon-clipboard2-data-fill, .icon-clipboard2-data-plein    { &:before { content: "\f726"; } }
.icon-clipboard2-data, .icon-clipboard2-data    { &:before { content: "\f727"; } }
.icon-clipboard2-fill, .icon-clipboard2-plein    { &:before { content: "\f728"; } }
.icon-clipboard2-heart-fill, .icon-clipboard2-coeur-plein    { &:before { content: "\f729"; } }
.icon-clipboard2-heart, .icon-clipboard2-coeur    { &:before { content: "\f72a"; } }
.icon-clipboard2-minus-fill, .icon-clipboard2-minus-plein    { &:before { content: "\f72b"; } }
.icon-clipboard2-minus, .icon-clipboard2-minus    { &:before { content: "\f72c"; } }
.icon-clipboard2-plus-fill, .icon-clipboard2-plus-plein    { &:before { content: "\f72d"; } }
.icon-clipboard2-plus, .icon-clipboard2-plus    { &:before { content: "\f72e"; } }
.icon-clipboard2-pulse-fill, .icon-clipboard2-pulse-plein    { &:before { content: "\f72f"; } }
.icon-clipboard2-pulse, .icon-clipboard2-pulse    { &:before { content: "\f730"; } }
.icon-clipboard2-x-fill, .icon-clipboard2-x-plein    { &:before { content: "\f731"; } }
.icon-clipboard2-x, .icon-clipboard2-croix    { &:before { content: "\f732"; } }
.icon-clipboard2, .icon-clipboard2    { &:before { content: "\f733"; } }
.icon-emoji-kiss-fill, .icon-emoji-kiss-plein    { &:before { content: "\f734"; } }
.icon-emoji-kiss, .icon-emoji-kiss    { &:before { content: "\f735"; } }
.icon-envelope-heart-fill, .icon-envelope-coeur-plein    { &:before { content: "\f736"; } }
.icon-envelope-heart, .icon-envelope-coeur    { &:before { content: "\f737"; } }
.icon-envelope-open-heart-fill, .icon-envelope-ouvrir-coeur-plein    { &:before { content: "\f738"; } }
.icon-envelope-open-heart, .icon-envelope-ouvrir-coeur    { &:before { content: "\f739"; } }
.icon-envelope-paper-fill, .icon-envelope-paper-plein    { &:before { content: "\f73a"; } }
.icon-envelope-paper-heart-fill, .icon-envelope-paper-coeur-plein    { &:before { content: "\f73b"; } }
.icon-envelope-paper-heart, .icon-envelope-paper-coeur    { &:before { content: "\f73c"; } }
.icon-envelope-paper, .icon-envelope-paper    { &:before { content: "\f73d"; } }
.icon-filetype-aac, .icon-fichiertype-aac    { &:before { content: "\f73e"; } }
.icon-filetype-ai, .icon-fichiertype-ai    { &:before { content: "\f73f"; } }
.icon-filetype-bmp, .icon-fichiertype-bmp    { &:before { content: "\f740"; } }
.icon-filetype-cs, .icon-fichiertype-cs    { &:before { content: "\f741"; } }
.icon-filetype-css, .icon-fichiertype-css    { &:before { content: "\f742"; } }
.icon-filetype-csv, .icon-fichiertype-csv    { &:before { content: "\f743"; } }
.icon-filetype-doc, .icon-fichiertype-doc    { &:before { content: "\f744"; } }
.icon-filetype-docx, .icon-fichiertype-docx    { &:before { content: "\f745"; } }
.icon-filetype-exe, .icon-fichiertype-exe    { &:before { content: "\f746"; } }
.icon-filetype-gif, .icon-fichiertype-gif    { &:before { content: "\f747"; } }
.icon-filetype-heic, .icon-fichiertype-heic    { &:before { content: "\f748"; } }
.icon-filetype-html, .icon-fichiertype-html    { &:before { content: "\f749"; } }
.icon-filetype-java, .icon-fichiertype-java    { &:before { content: "\f74a"; } }
.icon-filetype-jpg, .icon-fichiertype-jpg    { &:before { content: "\f74b"; } }
.icon-filetype-js, .icon-fichiertype-js    { &:before { content: "\f74c"; } }
.icon-filetype-jsx, .icon-fichiertype-jsx    { &:before { content: "\f74d"; } }
.icon-filetype-key, .icon-fichiertype-cle    { &:before { content: "\f74e"; } }
.icon-filetype-m4p, .icon-fichiertype-m4p    { &:before { content: "\f74f"; } }
.icon-filetype-md, .icon-fichiertype-md    { &:before { content: "\f750"; } }
.icon-filetype-mdx, .icon-fichiertype-mdx    { &:before { content: "\f751"; } }
.icon-filetype-mov, .icon-fichiertype-mov    { &:before { content: "\f752"; } }
.icon-filetype-mp3, .icon-fichiertype-mp3    { &:before { content: "\f753"; } }
.icon-filetype-mp4, .icon-fichiertype-mp4    { &:before { content: "\f754"; } }
.icon-filetype-otf, .icon-fichiertype-otf    { &:before { content: "\f755"; } }
.icon-filetype-pdf, .icon-fichiertype-pdf    { &:before { content: "\f756"; } }
.icon-filetype-php, .icon-fichiertype-php    { &:before { content: "\f757"; } }
.icon-filetype-png, .icon-fichiertype-png    { &:before { content: "\f758"; } }
.icon-filetype-ppt-1, .icon-fichiertype-ppt-1    { &:before { content: "\f759"; } }
.icon-filetype-ppt, .icon-fichiertype-ppt    { &:before { content: "\f75a"; } }
.icon-filetype-psd, .icon-fichiertype-psd    { &:before { content: "\f75b"; } }
.icon-filetype-py, .icon-fichiertype-py    { &:before { content: "\f75c"; } }
.icon-filetype-raw, .icon-fichiertype-raw    { &:before { content: "\f75d"; } }
.icon-filetype-rb, .icon-fichiertype-rb    { &:before { content: "\f75e"; } }
.icon-filetype-sass, .icon-fichiertype-sass    { &:before { content: "\f75f"; } }
.icon-filetype-scss, .icon-fichiertype-scss    { &:before { content: "\f760"; } }
.icon-filetype-sh, .icon-fichiertype-sh    { &:before { content: "\f761"; } }
.icon-filetype-svg, .icon-fichiertype-svg    { &:before { content: "\f762"; } }
.icon-filetype-tiff, .icon-fichiertype-tiff    { &:before { content: "\f763"; } }
.icon-filetype-tsx, .icon-fichiertype-tsx    { &:before { content: "\f764"; } }
.icon-filetype-ttf, .icon-fichiertype-ttf    { &:before { content: "\f765"; } }
.icon-filetype-txt, .icon-fichiertype-txt    { &:before { content: "\f766"; } }
.icon-filetype-wav, .icon-fichiertype-wav    { &:before { content: "\f767"; } }
.icon-filetype-woff, .icon-fichiertype-woff    { &:before { content: "\f768"; } }
.icon-filetype-xls-1, .icon-fichiertype-xls-1    { &:before { content: "\f769"; } }
.icon-filetype-xls, .icon-fichiertype-xls    { &:before { content: "\f76a"; } }
.icon-filetype-xml, .icon-fichiertype-xml    { &:before { content: "\f76b"; } }
.icon-filetype-yml, .icon-fichiertype-yml    { &:before { content: "\f76c"; } }
.icon-heart-arrow, .icon-coeur-fleche    { &:before { content: "\f76d"; } }
.icon-heart-pulse-fill, .icon-coeur-pulse-plein    { &:before { content: "\f76e"; } }
.icon-heart-pulse, .icon-coeur-pulse    { &:before { content: "\f76f"; } }
.icon-heartbreak-fill, .icon-coeurbreak-plein    { &:before { content: "\f770"; } }
.icon-heartbreak, .icon-coeurbreak    { &:before { content: "\f771"; } }
.icon-hearts, .icon-coeurs    { &:before { content: "\f772"; } }
.icon-hospital-fill, .icon-hospital-plein    { &:before { content: "\f773"; } }
.icon-hospital, .icon-hospital    { &:before { content: "\f774"; } }
.icon-house-heart-fill, .icon-accueil-coeur-plein    { &:before { content: "\f775"; } }
.icon-house-heart, .icon-accueil-coeur    { &:before { content: "\f776"; } }
.icon-incognito, .icon-incognito    { &:before { content: "\f777"; } }
.icon-magnet-fill, .icon-magnet-plein    { &:before { content: "\f778"; } }
.icon-magnet, .icon-magnet    { &:before { content: "\f779"; } }
.icon-person-heart, .icon-user-coeur    { &:before { content: "\f77a"; } }
.icon-person-hearts, .icon-user-coeurs    { &:before { content: "\f77b"; } }
.icon-phone-flip, .icon-tel-flip    { &:before { content: "\f77c"; } }
.icon-plugin, .icon-plugin    { &:before { content: "\f77d"; } }
.icon-postage-fill, .icon-postage-plein    { &:before { content: "\f77e"; } }
.icon-postage-heart-fill, .icon-postage-coeur-plein    { &:before { content: "\f77f"; } }
.icon-postage-heart, .icon-postage-coeur    { &:before { content: "\f780"; } }
.icon-postage, .icon-postage    { &:before { content: "\f781"; } }
.icon-postcard-fill, .icon-postcard-plein    { &:before { content: "\f782"; } }
.icon-postcard-heart-fill, .icon-postcard-coeur-plein    { &:before { content: "\f783"; } }
.icon-postcard-heart, .icon-postcard-coeur    { &:before { content: "\f784"; } }
.icon-postcard, .icon-postcard    { &:before { content: "\f785"; } }
.icon-search-heart-fill, .icon-search-coeur-plein    { &:before { content: "\f786"; } }
.icon-search-heart, .icon-search-coeur    { &:before { content: "\f787"; } }
.icon-sliders2-vertical, .icon-sliders2-vertical    { &:before { content: "\f788"; } }
.icon-sliders2, .icon-sliders2    { &:before { content: "\f789"; } }
.icon-trash3-fill, .icon-poubelle3-plein    { &:before { content: "\f78a"; } }
.icon-trash3, .icon-poubelle3    { &:before { content: "\f78b"; } }
.icon-valentine, .icon-valentine    { &:before { content: "\f78c"; } }
.icon-valentine2, .icon-valentine2    { &:before { content: "\f78d"; } }
.icon-wrench-adjustable-circle-fill, .icon-wrench-adjustable-rond-plein    { &:before { content: "\f78e"; } }
.icon-wrench-adjustable-circle, .icon-wrench-adjustable-rond    { &:before { content: "\f78f"; } }
.icon-wrench-adjustable, .icon-wrench-adjustable    { &:before { content: "\f790"; } }
.icon-filetype-json, .icon-fichiertype-json    { &:before { content: "\f791"; } }
.icon-filetype-pptx, .icon-fichiertype-pptx    { &:before { content: "\f792"; } }
.icon-filetype-xlsx, .icon-fichiertype-xlsx    { &:before { content: "\f793"; } }
.icon-1-circle-1, .icon-1-rond-1    { &:before { content: "\f794"; } }
.icon-1-circle-fill-1, .icon-1-rond-plein-1    { &:before { content: "\f795"; } }
.icon-1-circle-fill, .icon-1-rond-plein    { &:before { content: "\f796"; } }
.icon-1-circle, .icon-1-rond    { &:before { content: "\f797"; } }
.icon-1-square-fill, .icon-1-carre-plein    { &:before { content: "\f798"; } }
.icon-1-square, .icon-1-carre    { &:before { content: "\f799"; } }
.icon-2-circle-1, .icon-2-rond-1    { &:before { content: "\f79a"; } }
.icon-2-circle-fill-1, .icon-2-rond-plein-1    { &:before { content: "\f79b"; } }
.icon-2-circle-fill, .icon-2-rond-plein    { &:before { content: "\f79c"; } }
.icon-2-circle, .icon-2-rond    { &:before { content: "\f79d"; } }
.icon-2-square-fill, .icon-2-carre-plein    { &:before { content: "\f79e"; } }
.icon-2-square, .icon-2-carre    { &:before { content: "\f79f"; } }
.icon-3-circle-1, .icon-3-rond-1    { &:before { content: "\f7a0"; } }
.icon-3-circle-fill-1, .icon-3-rond-plein-1    { &:before { content: "\f7a1"; } }
.icon-3-circle-fill, .icon-3-rond-plein    { &:before { content: "\f7a2"; } }
.icon-3-circle, .icon-3-rond    { &:before { content: "\f7a3"; } }
.icon-3-square-fill, .icon-3-carre-plein    { &:before { content: "\f7a4"; } }
.icon-3-square, .icon-3-carre    { &:before { content: "\f7a5"; } }
.icon-4-circle-1, .icon-4-rond-1    { &:before { content: "\f7a6"; } }
.icon-4-circle-fill-1, .icon-4-rond-plein-1    { &:before { content: "\f7a7"; } }
.icon-4-circle-fill, .icon-4-rond-plein    { &:before { content: "\f7a8"; } }
.icon-4-circle, .icon-4-rond    { &:before { content: "\f7a9"; } }
.icon-4-square-fill, .icon-4-carre-plein    { &:before { content: "\f7aa"; } }
.icon-4-square, .icon-4-carre    { &:before { content: "\f7ab"; } }
.icon-5-circle-1, .icon-5-rond-1    { &:before { content: "\f7ac"; } }
.icon-5-circle-fill-1, .icon-5-rond-plein-1    { &:before { content: "\f7ad"; } }
.icon-5-circle-fill, .icon-5-rond-plein    { &:before { content: "\f7ae"; } }
.icon-5-circle, .icon-5-rond    { &:before { content: "\f7af"; } }
.icon-5-square-fill, .icon-5-carre-plein    { &:before { content: "\f7b0"; } }
.icon-5-square, .icon-5-carre    { &:before { content: "\f7b1"; } }
.icon-6-circle-1, .icon-6-rond-1    { &:before { content: "\f7b2"; } }
.icon-6-circle-fill-1, .icon-6-rond-plein-1    { &:before { content: "\f7b3"; } }
.icon-6-circle-fill, .icon-6-rond-plein    { &:before { content: "\f7b4"; } }
.icon-6-circle, .icon-6-rond    { &:before { content: "\f7b5"; } }
.icon-6-square-fill, .icon-6-carre-plein    { &:before { content: "\f7b6"; } }
.icon-6-square, .icon-6-carre    { &:before { content: "\f7b7"; } }
.icon-7-circle-1, .icon-7-rond-1    { &:before { content: "\f7b8"; } }
.icon-7-circle-fill-1, .icon-7-rond-plein-1    { &:before { content: "\f7b9"; } }
.icon-7-circle-fill, .icon-7-rond-plein    { &:before { content: "\f7ba"; } }
.icon-7-circle, .icon-7-rond    { &:before { content: "\f7bb"; } }
.icon-7-square-fill, .icon-7-carre-plein    { &:before { content: "\f7bc"; } }
.icon-7-square, .icon-7-carre    { &:before { content: "\f7bd"; } }
.icon-8-circle-1, .icon-8-rond-1    { &:before { content: "\f7be"; } }
.icon-8-circle-fill-1, .icon-8-rond-plein-1    { &:before { content: "\f7bf"; } }
.icon-8-circle-fill, .icon-8-rond-plein    { &:before { content: "\f7c0"; } }
.icon-8-circle, .icon-8-rond    { &:before { content: "\f7c1"; } }
.icon-8-square-fill, .icon-8-carre-plein    { &:before { content: "\f7c2"; } }
.icon-8-square, .icon-8-carre    { &:before { content: "\f7c3"; } }
.icon-9-circle-1, .icon-9-rond-1    { &:before { content: "\f7c4"; } }
.icon-9-circle-fill-1, .icon-9-rond-plein-1    { &:before { content: "\f7c5"; } }
.icon-9-circle-fill, .icon-9-rond-plein    { &:before { content: "\f7c6"; } }
.icon-9-circle, .icon-9-rond    { &:before { content: "\f7c7"; } }
.icon-9-square-fill, .icon-9-carre-plein    { &:before { content: "\f7c8"; } }
.icon-9-square, .icon-9-carre    { &:before { content: "\f7c9"; } }
.icon-airplane-engines-fill, .icon-avion-engines-plein    { &:before { content: "\f7ca"; } }
.icon-airplane-engines, .icon-avion-engines    { &:before { content: "\f7cb"; } }
.icon-airplane-fill, .icon-avion-plein    { &:before { content: "\f7cc"; } }
.icon-airplane, .icon-avion    { &:before { content: "\f7cd"; } }
.icon-alexa, .icon-alexa    { &:before { content: "\f7ce"; } }
.icon-alipay, .icon-alipay    { &:before { content: "\f7cf"; } }
.icon-android, .icon-android    { &:before { content: "\f7d0"; } }
.icon-android2, .icon-android2    { &:before { content: "\f7d1"; } }
.icon-box-fill, .icon-box-plein    { &:before { content: "\f7d2"; } }
.icon-box-seam-fill, .icon-box-seam-plein    { &:before { content: "\f7d3"; } }
.icon-browser-chrome, .icon-browser-chrome    { &:before { content: "\f7d4"; } }
.icon-browser-edge, .icon-browser-edge    { &:before { content: "\f7d5"; } }
.icon-browser-firefox, .icon-browser-firefox    { &:before { content: "\f7d6"; } }
.icon-browser-safari, .icon-browser-safari    { &:before { content: "\f7d7"; } }
.icon-c-circle-1, .icon-c-rond-1    { &:before { content: "\f7d8"; } }
.icon-c-circle-fill-1, .icon-c-rond-plein-1    { &:before { content: "\f7d9"; } }
.icon-c-circle-fill, .icon-c-rond-plein    { &:before { content: "\f7da"; } }
.icon-c-circle, .icon-c-rond    { &:before { content: "\f7db"; } }
.icon-c-square-fill, .icon-c-carre-plein    { &:before { content: "\f7dc"; } }
.icon-c-square, .icon-c-carre    { &:before { content: "\f7dd"; } }
.icon-capsule-pill, .icon-capsule-pill    { &:before { content: "\f7de"; } }
.icon-capsule, .icon-capsule    { &:before { content: "\f7df"; } }
.icon-car-front-fill, .icon-car-front-plein    { &:before { content: "\f7e0"; } }
.icon-car-front, .icon-car-front    { &:before { content: "\f7e1"; } }
.icon-cassette-fill, .icon-cassette-plein    { &:before { content: "\f7e2"; } }
.icon-cassette, .icon-cassette    { &:before { content: "\f7e3"; } }
.icon-cc-circle-1, .icon-cc-rond-1    { &:before { content: "\f7e4"; } }
.icon-cc-circle-fill-1, .icon-cc-rond-plein-1    { &:before { content: "\f7e5"; } }
.icon-cc-circle-fill, .icon-cc-rond-plein    { &:before { content: "\f7e6"; } }
.icon-cc-circle, .icon-cc-rond    { &:before { content: "\f7e7"; } }
.icon-cc-square-fill, .icon-cc-carre-plein    { &:before { content: "\f7e8"; } }
.icon-cc-square, .icon-cc-carre    { &:before { content: "\f7e9"; } }
.icon-cup-hot-fill, .icon-cup-hot-plein    { &:before { content: "\f7ea"; } }
.icon-cup-hot, .icon-cup-hot    { &:before { content: "\f7eb"; } }
.icon-currency-rupee, .icon-currency-rupee    { &:before { content: "\f7ec"; } }
.icon-dropbox, .icon-dropbox    { &:before { content: "\f7ed"; } }
.icon-escape, .icon-escape    { &:before { content: "\f7ee"; } }
.icon-fast-forward-btn-fill, .icon-fast-next-btn-plein    { &:before { content: "\f7ef"; } }
.icon-fast-forward-btn, .icon-fast-next-btn    { &:before { content: "\f7f0"; } }
.icon-fast-forward-circle-fill, .icon-fast-next-rond-plein    { &:before { content: "\f7f1"; } }
.icon-fast-forward-circle, .icon-fast-next-rond    { &:before { content: "\f7f2"; } }
.icon-fast-forward-fill, .icon-fast-next-plein    { &:before { content: "\f7f3"; } }
.icon-fast-forward, .icon-fast-next    { &:before { content: "\f7f4"; } }
.icon-filetype-sql, .icon-fichiertype-sql    { &:before { content: "\f7f5"; } }
.icon-fire, .icon-fire    { &:before { content: "\f7f6"; } }
.icon-google-play, .icon-google-play    { &:before { content: "\f7f7"; } }
.icon-h-circle-1, .icon-h-rond-1    { &:before { content: "\f7f8"; } }
.icon-h-circle-fill-1, .icon-h-rond-plein-1    { &:before { content: "\f7f9"; } }
.icon-h-circle-fill, .icon-h-rond-plein    { &:before { content: "\f7fa"; } }
.icon-h-circle, .icon-h-rond    { &:before { content: "\f7fb"; } }
.icon-h-square-fill, .icon-h-carre-plein    { &:before { content: "\f7fc"; } }
.icon-h-square, .icon-h-carre    { &:before { content: "\f7fd"; } }
.icon-indent, .icon-indent    { &:before { content: "\f7fe"; } }
.icon-lungs-fill, .icon-lungs-plein    { &:before { content: "\f7ff"; } }
.icon-lungs, .icon-lungs    { &:before { content: "\f800"; } }
.icon-microsoft-teams, .icon-microsoft-teams    { &:before { content: "\f801"; } }
.icon-p-circle-1, .icon-p-rond-1    { &:before { content: "\f802"; } }
.icon-p-circle-fill-1, .icon-p-rond-plein-1    { &:before { content: "\f803"; } }
.icon-p-circle-fill, .icon-p-rond-plein    { &:before { content: "\f804"; } }
.icon-p-circle, .icon-p-rond    { &:before { content: "\f805"; } }
.icon-p-square-fill, .icon-p-carre-plein    { &:before { content: "\f806"; } }
.icon-p-square, .icon-p-carre    { &:before { content: "\f807"; } }
.icon-pass-fill, .icon-pass-plein    { &:before { content: "\f808"; } }
.icon-pass, .icon-pass    { &:before { content: "\f809"; } }
.icon-prescription, .icon-prescription    { &:before { content: "\f80a"; } }
.icon-prescription2, .icon-prescription2    { &:before { content: "\f80b"; } }
.icon-r-circle-1, .icon-r-rond-1    { &:before { content: "\f80c"; } }
.icon-r-circle-fill-1, .icon-r-rond-plein-1    { &:before { content: "\f80d"; } }
.icon-r-circle-fill, .icon-r-rond-plein    { &:before { content: "\f80e"; } }
.icon-r-circle, .icon-r-rond    { &:before { content: "\f80f"; } }
.icon-r-square-fill, .icon-r-carre-plein    { &:before { content: "\f810"; } }
.icon-r-square, .icon-r-carre    { &:before { content: "\f811"; } }
.icon-repeat-1, .icon-repeat-1    { &:before { content: "\f812"; } }
.icon-repeat, .icon-repeat    { &:before { content: "\f813"; } }
.icon-rewind-btn-fill, .icon-rewind-btn-plein    { &:before { content: "\f814"; } }
.icon-rewind-btn, .icon-rewind-btn    { &:before { content: "\f815"; } }
.icon-rewind-circle-fill, .icon-rewind-rond-plein    { &:before { content: "\f816"; } }
.icon-rewind-circle, .icon-rewind-rond    { &:before { content: "\f817"; } }
.icon-rewind-fill, .icon-rewind-plein    { &:before { content: "\f818"; } }
.icon-rewind, .icon-rewind    { &:before { content: "\f819"; } }
.icon-train-freight-front-fill, .icon-train-freight-front-plein    { &:before { content: "\f81a"; } }
.icon-train-freight-front, .icon-train-freight-front    { &:before { content: "\f81b"; } }
.icon-train-front-fill, .icon-train-front-plein    { &:before { content: "\f81c"; } }
.icon-train-front, .icon-train-front    { &:before { content: "\f81d"; } }
.icon-train-lightrail-front-fill, .icon-train-lightrail-front-plein    { &:before { content: "\f81e"; } }
.icon-train-lightrail-front, .icon-train-lightrail-front    { &:before { content: "\f81f"; } }
.icon-truck-front-fill, .icon-camion-front-plein    { &:before { content: "\f820"; } }
.icon-truck-front, .icon-camion-front    { &:before { content: "\f821"; } }
.icon-ubuntu, .icon-ubuntu    { &:before { content: "\f822"; } }
.icon-unindent, .icon-unindent    { &:before { content: "\f823"; } }
.icon-unity, .icon-unity    { &:before { content: "\f824"; } }
.icon-universal-access-circle, .icon-universal-access-rond    { &:before { content: "\f825"; } }
.icon-universal-access, .icon-universal-access    { &:before { content: "\f826"; } }
.icon-virus, .icon-virus    { &:before { content: "\f827"; } }
.icon-virus2, .icon-virus2    { &:before { content: "\f828"; } }
.icon-wechat, .icon-wechat    { &:before { content: "\f829"; } }
.icon-yelp, .icon-yelp    { &:before { content: "\f82a"; } }
.icon-sign-stop-fill, .icon-sign-stop-plein    { &:before { content: "\f82b"; } }
.icon-sign-stop-lights-fill, .icon-sign-stop-lights-plein    { &:before { content: "\f82c"; } }
.icon-sign-stop-lights, .icon-sign-stop-lights    { &:before { content: "\f82d"; } }
.icon-sign-stop, .icon-sign-stop    { &:before { content: "\f82e"; } }
.icon-sign-turn-left-fill, .icon-sign-turn-gauche-plein    { &:before { content: "\f82f"; } }
.icon-sign-turn-left, .icon-sign-turn-gauche    { &:before { content: "\f830"; } }
.icon-sign-turn-right-fill, .icon-sign-turn-droite-plein    { &:before { content: "\f831"; } }
.icon-sign-turn-right, .icon-sign-turn-droite    { &:before { content: "\f832"; } }
.icon-sign-turn-slight-left-fill, .icon-sign-turn-slight-gauche-plein    { &:before { content: "\f833"; } }
.icon-sign-turn-slight-left, .icon-sign-turn-slight-gauche    { &:before { content: "\f834"; } }
.icon-sign-turn-slight-right-fill, .icon-sign-turn-slight-droite-plein    { &:before { content: "\f835"; } }
.icon-sign-turn-slight-right, .icon-sign-turn-slight-droite    { &:before { content: "\f836"; } }
.icon-sign-yield-fill, .icon-sign-yield-plein    { &:before { content: "\f837"; } }
.icon-sign-yield, .icon-sign-yield    { &:before { content: "\f838"; } }
.icon-ev-station-fill, .icon-ev-station-plein    { &:before { content: "\f839"; } }
.icon-ev-station, .icon-ev-station    { &:before { content: "\f83a"; } }
.icon-fuel-pump-diesel-fill, .icon-fuel-pump-diesel-plein    { &:before { content: "\f83b"; } }
.icon-fuel-pump-diesel, .icon-fuel-pump-diesel    { &:before { content: "\f83c"; } }
.icon-fuel-pump-fill, .icon-fuel-pump-plein    { &:before { content: "\f83d"; } }
.icon-fuel-pump, .icon-fuel-pump    { &:before { content: "\f83e"; } }
.icon-0-circle-fill, .icon-0-rond-plein    { &:before { content: "\f83f"; } }
.icon-0-circle, .icon-0-rond    { &:before { content: "\f840"; } }
.icon-0-square-fill, .icon-0-carre-plein    { &:before { content: "\f841"; } }
.icon-0-square, .icon-0-carre    { &:before { content: "\f842"; } }
.icon-rocket-fill, .icon-rocket-plein    { &:before { content: "\f843"; } }
.icon-rocket-takeoff-fill, .icon-rocket-takeoff-plein    { &:before { content: "\f844"; } }
.icon-rocket-takeoff, .icon-rocket-takeoff    { &:before { content: "\f845"; } }
.icon-rocket, .icon-rocket    { &:before { content: "\f846"; } }
.icon-stripe, .icon-stripe    { &:before { content: "\f847"; } }
.icon-subscript, .icon-subscript    { &:before { content: "\f848"; } }
.icon-superscript, .icon-superscript    { &:before { content: "\f849"; } }
.icon-trello, .icon-trello    { &:before { content: "\f84a"; } }
.icon-envelope-at-fill, .icon-envelope-at-plein    { &:before { content: "\f84b"; } }
.icon-envelope-at, .icon-envelope-at    { &:before { content: "\f84c"; } }
.icon-regex, .icon-regex    { &:before { content: "\f84d"; } }
.icon-text-wrap, .icon-texte-wrap    { &:before { content: "\f84e"; } }
.icon-sign-dead-end-fill, .icon-sign-dead-fin-plein    { &:before { content: "\f84f"; } }
.icon-sign-dead-end, .icon-sign-dead-fin    { &:before { content: "\f850"; } }
.icon-sign-do-not-enter-fill, .icon-sign-do-not-enter-plein    { &:before { content: "\f851"; } }
.icon-sign-do-not-enter, .icon-sign-do-not-enter    { &:before { content: "\f852"; } }
.icon-sign-intersection-fill, .icon-sign-intersection-plein    { &:before { content: "\f853"; } }
.icon-sign-intersection-side-fill, .icon-sign-intersection-side-plein    { &:before { content: "\f854"; } }
.icon-sign-intersection-side, .icon-sign-intersection-side    { &:before { content: "\f855"; } }
.icon-sign-intersection-t-fill, .icon-sign-intersection-t-plein    { &:before { content: "\f856"; } }
.icon-sign-intersection-t, .icon-sign-intersection-t    { &:before { content: "\f857"; } }
.icon-sign-intersection-y-fill, .icon-sign-intersection-y-plein    { &:before { content: "\f858"; } }
.icon-sign-intersection-y, .icon-sign-intersection-y    { &:before { content: "\f859"; } }
.icon-sign-intersection, .icon-sign-intersection    { &:before { content: "\f85a"; } }
.icon-sign-merge-left-fill, .icon-sign-merge-gauche-plein    { &:before { content: "\f85b"; } }
.icon-sign-merge-left, .icon-sign-merge-gauche    { &:before { content: "\f85c"; } }
.icon-sign-merge-right-fill, .icon-sign-merge-droite-plein    { &:before { content: "\f85d"; } }
.icon-sign-merge-right, .icon-sign-merge-droite    { &:before { content: "\f85e"; } }
.icon-sign-no-left-turn-fill, .icon-sign-no-gauche-turn-plein    { &:before { content: "\f85f"; } }
.icon-sign-no-left-turn, .icon-sign-no-gauche-turn    { &:before { content: "\f860"; } }
.icon-sign-no-parking-fill, .icon-sign-no-parking-plein    { &:before { content: "\f861"; } }
.icon-sign-no-parking, .icon-sign-no-parking    { &:before { content: "\f862"; } }
.icon-sign-no-right-turn-fill, .icon-sign-no-droite-turn-plein    { &:before { content: "\f863"; } }
.icon-sign-no-right-turn, .icon-sign-no-droite-turn    { &:before { content: "\f864"; } }
.icon-sign-railroad-fill, .icon-sign-railroad-plein    { &:before { content: "\f865"; } }
.icon-sign-railroad, .icon-sign-railroad    { &:before { content: "\f866"; } }
.icon-building-add, .icon-immeuble-add    { &:before { content: "\f867"; } }
.icon-building-check, .icon-immeuble-ok    { &:before { content: "\f868"; } }
.icon-building-dash, .icon-immeuble-dash    { &:before { content: "\f869"; } }
.icon-building-down, .icon-immeuble-bas    { &:before { content: "\f86a"; } }
.icon-building-exclamation, .icon-immeuble-exclamation    { &:before { content: "\f86b"; } }
.icon-building-fill-add, .icon-immeuble-plein-add    { &:before { content: "\f86c"; } }
.icon-building-fill-check, .icon-immeuble-plein-ok    { &:before { content: "\f86d"; } }
.icon-building-fill-dash, .icon-immeuble-plein-dash    { &:before { content: "\f86e"; } }
.icon-building-fill-down, .icon-immeuble-plein-bas    { &:before { content: "\f86f"; } }
.icon-building-fill-exclamation, .icon-immeuble-plein-exclamation    { &:before { content: "\f870"; } }
.icon-building-fill-gear, .icon-immeuble-plein-engrenage    { &:before { content: "\f871"; } }
.icon-building-fill-lock, .icon-immeuble-plein-cadenas    { &:before { content: "\f872"; } }
.icon-building-fill-slash, .icon-immeuble-plein-slash    { &:before { content: "\f873"; } }
.icon-building-fill-up, .icon-immeuble-plein-haut    { &:before { content: "\f874"; } }
.icon-building-fill-x, .icon-immeuble-plein-croix    { &:before { content: "\f875"; } }
.icon-building-fill, .icon-immeuble-plein    { &:before { content: "\f876"; } }
.icon-building-gear, .icon-immeuble-engrenage    { &:before { content: "\f877"; } }
.icon-building-lock, .icon-immeuble-cadenas    { &:before { content: "\f878"; } }
.icon-building-slash, .icon-immeuble-slash    { &:before { content: "\f879"; } }
.icon-building-up, .icon-immeuble-haut    { &:before { content: "\f87a"; } }
.icon-building-x, .icon-immeuble-croix    { &:before { content: "\f87b"; } }
.icon-buildings-fill, .icon-immeubles-plein    { &:before { content: "\f87c"; } }
.icon-buildings, .icon-immeubles    { &:before { content: "\f87d"; } }
.icon-bus-front-fill, .icon-bus-front-plein    { &:before { content: "\f87e"; } }
.icon-bus-front, .icon-bus-front    { &:before { content: "\f87f"; } }
.icon-ev-front-fill, .icon-ev-front-plein    { &:before { content: "\f880"; } }
.icon-ev-front, .icon-ev-front    { &:before { content: "\f881"; } }
.icon-globe-americas, .icon-globe-americas    { &:before { content: "\f882"; } }
.icon-globe-asia-australia, .icon-globe-asia-australia    { &:before { content: "\f883"; } }
.icon-globe-central-south-asia, .icon-globe-central-south-asia    { &:before { content: "\f884"; } }
.icon-globe-europe-africa, .icon-globe-europe-africa    { &:before { content: "\f885"; } }
.icon-house-add-fill, .icon-accueil-add-plein    { &:before { content: "\f886"; } }
.icon-house-add, .icon-accueil-add    { &:before { content: "\f887"; } }
.icon-house-check-fill, .icon-accueil-ok-plein    { &:before { content: "\f888"; } }
.icon-house-check, .icon-accueil-ok    { &:before { content: "\f889"; } }
.icon-house-dash-fill, .icon-accueil-dash-plein    { &:before { content: "\f88a"; } }
.icon-house-dash, .icon-accueil-dash    { &:before { content: "\f88b"; } }
.icon-house-down-fill, .icon-accueil-bas-plein    { &:before { content: "\f88c"; } }
.icon-house-down, .icon-accueil-bas    { &:before { content: "\f88d"; } }
.icon-house-exclamation-fill, .icon-accueil-exclamation-plein    { &:before { content: "\f88e"; } }
.icon-house-exclamation, .icon-accueil-exclamation    { &:before { content: "\f88f"; } }
.icon-house-gear-fill, .icon-accueil-engrenage-plein    { &:before { content: "\f890"; } }
.icon-house-gear, .icon-accueil-engrenage    { &:before { content: "\f891"; } }
.icon-house-lock-fill, .icon-accueil-cadenas-plein    { &:before { content: "\f892"; } }
.icon-house-lock, .icon-accueil-cadenas    { &:before { content: "\f893"; } }
.icon-house-slash-fill, .icon-accueil-slash-plein    { &:before { content: "\f894"; } }
.icon-house-slash, .icon-accueil-slash    { &:before { content: "\f895"; } }
.icon-house-up-fill, .icon-accueil-bas-plein    { &:before { content: "\f896"; } }
.icon-house-up, .icon-accueil-haut    { &:before { content: "\f897"; } }
.icon-house-x-fill, .icon-accueil-x-plein    { &:before { content: "\f898"; } }
.icon-house-x, .icon-accueil-croix    { &:before { content: "\f899"; } }
.icon-person-add, .icon-user-add    { &:before { content: "\f89a"; } }
.icon-person-down, .icon-user-bas    { &:before { content: "\f89b"; } }
.icon-person-exclamation, .icon-user-exclamation    { &:before { content: "\f89c"; } }
.icon-person-fill-add, .icon-user-plein-add    { &:before { content: "\f89d"; } }
.icon-person-fill-check, .icon-user-plein-ok    { &:before { content: "\f89e"; } }
.icon-person-fill-dash, .icon-user-plein-dash    { &:before { content: "\f89f"; } }
.icon-person-fill-down, .icon-user-plein-bas    { &:before { content: "\f8a0"; } }
.icon-person-fill-exclamation, .icon-user-plein-exclamation    { &:before { content: "\f8a1"; } }
.icon-person-fill-gear, .icon-user-plein-engrenage    { &:before { content: "\f8a2"; } }
.icon-person-fill-lock, .icon-user-plein-cadenas    { &:before { content: "\f8a3"; } }
.icon-person-fill-slash, .icon-user-plein-slash    { &:before { content: "\f8a4"; } }
.icon-person-fill-up, .icon-user-plein-haut    { &:before { content: "\f8a5"; } }
.icon-person-fill-x, .icon-user-plein-croix    { &:before { content: "\f8a6"; } }
.icon-person-gear, .icon-user-engrenage    { &:before { content: "\f8a7"; } }
.icon-person-lock, .icon-user-cadenas    { &:before { content: "\f8a8"; } }
.icon-person-slash, .icon-user-slash    { &:before { content: "\f8a9"; } }
.icon-person-up, .icon-user-haut    { &:before { content: "\f8aa"; } }
.icon-scooter, .icon-scooter    { &:before { content: "\f8ab"; } }
.icon-taxi-front-fill, .icon-taxi-front-plein    { &:before { content: "\f8ac"; } }
.icon-taxi-front, .icon-taxi-front    { &:before { content: "\f8ad"; } }
.icon-amd, .icon-amd    { &:before { content: "\f8ae"; } }
.icon-database-add, .icon-db-add    { &:before { content: "\f8af"; } }
.icon-database-check, .icon-db-ok    { &:before { content: "\f8b0"; } }
.icon-database-dash, .icon-db-dash    { &:before { content: "\f8b1"; } }
.icon-database-down, .icon-db-bas    { &:before { content: "\f8b2"; } }
.icon-database-exclamation, .icon-db-exclamation    { &:before { content: "\f8b3"; } }
.icon-database-fill-add, .icon-db-plein-add    { &:before { content: "\f8b4"; } }
.icon-database-fill-check, .icon-db-plein-ok    { &:before { content: "\f8b5"; } }
.icon-database-fill-dash, .icon-db-plein-dash    { &:before { content: "\f8b6"; } }
.icon-database-fill-down, .icon-db-plein-bas    { &:before { content: "\f8b7"; } }
.icon-database-fill-exclamation, .icon-db-plein-exclamation    { &:before { content: "\f8b8"; } }
.icon-database-fill-gear, .icon-db-plein-engrenage    { &:before { content: "\f8b9"; } }
.icon-database-fill-lock, .icon-db-plein-cadenas    { &:before { content: "\f8ba"; } }
.icon-database-fill-slash, .icon-db-plein-slash    { &:before { content: "\f8bb"; } }
.icon-database-fill-up, .icon-db-plein-haut    { &:before { content: "\f8bc"; } }
.icon-database-fill-x, .icon-db-plein-croix    { &:before { content: "\f8bd"; } }
.icon-database-fill, .icon-db-plein    { &:before { content: "\f8be"; } }
.icon-database-gear, .icon-db-engrenage    { &:before { content: "\f8bf"; } }
.icon-database-lock, .icon-db-cadenas    { &:before { content: "\f8c0"; } }
.icon-database-slash, .icon-db-slash    { &:before { content: "\f8c1"; } }
.icon-database-up, .icon-db-haut    { &:before { content: "\f8c2"; } }
.icon-database-x, .icon-db-croix    { &:before { content: "\f8c3"; } }
.icon-database, .icon-db    { &:before { content: "\f8c4"; } }
.icon-houses-fill, .icon-accueils-plein    { &:before { content: "\f8c5"; } }
.icon-houses, .icon-accueils    { &:before { content: "\f8c6"; } }
.icon-nvidia, .icon-nvidia    { &:before { content: "\f8c7"; } }
.icon-person-vcard-fill, .icon-user-vcard-plein    { &:before { content: "\f8c8"; } }
.icon-person-vcard, .icon-user-vcard    { &:before { content: "\f8c9"; } }
.icon-sina-weibo, .icon-sina-weibo    { &:before { content: "\f8ca"; } }
.icon-tencent-qq, .icon-tencent-qq    { &:before { content: "\f8cb"; } }
.icon-wikipedia, .icon-wikipedia    { &:before { content: "\f8cc"; } }

// Core CSS
//
// Scaffolding
// --------------------------------------------------

* {													.box-sizing(border-box); }
*:before, *:after {		.box-sizing(border-box); }

// Body reset

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
  font-family: @font-family-base;
  font-size: @font-size-base;
  line-height: @line-height-base;
  color: @text-color;
  background-color: @body-bg;
}

// Reset fonts for relevant elements
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

// Links
a {
  color: @link-color;
  text-decoration: none;
  &:hover, &:focus {
    color: @link-hover-color;
    text-decoration: @link-hover-decoration;
  }
  &:focus {.tab-focus(); }
}

// RETAR TEST
.spip_logo, .spip_logos{
	max-width: 100%;
	height: auto;
}
// Responsive images (ensure images don't scale beyond their parents)
.img-responsive {.img-responsive(); }
.img-rounded { border-radius: @border-radius-large; }

// Image thumbnails
.img-thumbnail {
  padding: @thumbnail-padding;
  line-height: @line-height-base;
  background-color: @thumbnail-bg;
  border: 1px solid @thumbnail-border;
  border-radius: @thumbnail-border-radius;
  .transition(all .2s ease-in-out);
  .img-responsive(inline-block);
}

// Horizontal rules

hr {
  margin-top:    @line-height-computed;
  margin-bottom: @line-height-computed;
  border: 0;
  border-top: 1px solid @hr-border;
}

// Termes seulement invisibles des écrans

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.sr-only-focusable {
  &:active, &:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
  }
}

// Body reset
// -------------------------
html { font-size: 100.01%; } /* pour IE < 6 */
/* Cf.: http://www.pompage.net/pompe/definir-des-tailles-de-polices-en-css/bootstrapleger/ et http://forum.alsacreations.com/topic-4-54377-1.html */

body {
  margin: 0;
  font-family: @font-family-base;
  font-size: @emFontSize;
  line-height: @emLineHeight;
  color: @text-color;
  background-color: @body-bg;
}

.cartouche {
  &:last-child{ margin-bottom: 0; }
  margin-bottom: @emVertMargin;
}

/* Liens */
a {color: @link-color;}
a:focus, a:hover, a:active {
	color: @link-hover-color;
	text-decoration: @link-hover-decoration;
	outline: none;
}
a[hreflang]:after { content: "\0000a0(" attr(hreflang) ")"; }
@media print {
  a, a:visited { color: @text-color; text-decoration: underline; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* Don't show links for images, or javascript/internal links */
}

.on { font-weight: bold; }
/* Titraille / Intertitres */
h1,.h1,.h1-like,
h2,.h2,.h2-like,
h3,.h3,.h3-like,
h4,.h4,.h4-like,
h5,.h5,.h5-like,
h6,.h6,.h6-like {
  font-family: @headings-font-family;
  color:@headings-color;
  display: block; margin: 0; padding: 0; font-size: 100%; font-weight: @headings-font-weight;
  text-rendering: optimizelegibility; // Fix the character spacing for headings
  small {
    font-weight: normal;
    line-height: 1;
    color: @headings-small-color;
    display:inline;
    display:inline-block; /* evite de le couper si ne tient pas sur la fin de la ligne */
  }
}
hr { height: 1px;margin: @emLineHeight 0;border: 0;background: @hr-border; color: @hr-border;}

h1,.h1,.h1-like { font-size: @font-size-h1-em; line-height: @headings-line-height; margin-bottom: @emVertMargin / @font-size-h1-em; small { font-size: 0.65em; }}
h2,.h2,.h2-like { font-size: @font-size-h2-em; line-height: 1.2em; margin-bottom: @emVertMargin / @font-size-h2-em; small { font-size: 0.70em; }}
h3,.h3,.h3-like { font-size: @font-size-h3-em; line-height: 1.2em; margin-bottom: @emVertMargin / @font-size-h3-em; small { font-size: 0.80em; }}
h4,.h4,.h4-like { font-size: @font-size-h4-em; line-height: 1.2em; margin-bottom: @emVertMargin / @font-size-h4-em; }
h5,.h5,.h5-like { font-size: @font-size-h5-em; line-height: 1.2em; font-weight: bold; margin-bottom: @emVertMargin; }
h6,.h6,.h6-like { font-size: @font-size-h6-em; line-height: 1.2em; font-weight: bold; }


// Alignment
.text-left          	{ text-align: left; }
.text-right        	{ text-align: right; }
.text-center     	{ text-align: center; }
.text-justify      { text-align: justify; }
.text-nowrap    { white-space: nowrap; }

// Transformation
.text-lowercase   	{ text-transform: lowercase; }
.text-uppercase   	{ text-transform: uppercase; }
.text-capitalize    	{ text-transform: capitalize; }

// Contextual colors

.text-emphasis-variant(@color) {
  color: @color;
  a&:hover,
  a&:focus {
    color: darken(@color, 10%);
  }
}
.muted,.text-muted   {
	.text-emphasis-variant(@text-muted);
}
.text-defaut {
  .text-emphasis-variant(@brand-defaut);
}
.text-vert {
  .text-emphasis-variant(@state-vert-text);
}
.text-jaune {
  .text-emphasis-variant(@state-jaune-text);
}
.text-orange {
  .text-emphasis-variant(@state-orange-text);
}
.text-rouge {
  .text-emphasis-variant(@state-rouge-text);
}

.bg-variant(@color) {
  background-color: @color;
  a&:hover,
  a&:focus {
    background-color: darken(@color, 10%);
  }
}

// Contextual backgrounds
// For now we'll leave these alongside the text classes until v4 when we can
// safely shift things around (per SemVer rules).
.bg-defaut {
  // Given the contrast here, this is the only class to have its color inverted
  // automatically.
  color: #fff;
  .bg-variant(@brand-defaut);
}
.bg-vert {
  .bg-variant(@state-vert-bg);
}
.bg-jaune {
  .bg-variant(@state-jaune-bg);
}
.bg-orange {
  .bg-variant(@state-orange-bg);
}
.bg-rouge {
  .bg-variant(@state-rouge-bg);
}

/* Enrichissements typographiques */
small, .small { font-size: floor((100% * @font-size-small / @font-size-base)); }
big, .big { font-size: floor((100% * @font-size-large / @font-size-base)); }
mark,.mark { background-color: @state-orange-bg;}


cite { font-style: italic; }

// Blockquotes
blockquote {
	font-size: @blockquote-font-size;
	border-left: 1px solid @blockquote-border-color;

	p,
	ul,
	ol {
		&:last-child {
			margin-bottom: 0;
		}
	}

 // Note: Deprecated small and .small as of v3.1.0
 // Context: https://github.com/twbs/bootstrap/issues/11660
 footer,
 small,
 .small {
   display: block;
	 line-height: inherit;
   color: @blockquote-small-color;

   &:before {
     content: '\2014 \00A0'; // em dash, nbsp
   }
 }
}

.lead {
  margin-bottom: @line-height-computed;
  font-size: 1.5em;
  font-weight: 200;
  line-height: @emLineHeight;
}

/* Complements */

.page-header {
  padding-bottom: (@line-height-computed / 2) - 1;
  margin: @line-height-computed 0 (@line-height-computed * 1.5);
  border-bottom: 1px solid @page-header-border-color;
}

.jumbotron h1 {word-wrap: break-word;}
.spip_surligne {
  background-color: @state-jaune-bg;
  color: @state-jaune-text;
}

/* Citations, poesie */
.spip_poesie { border-left: 1px solid @blockquote-border-color; }
.spip_poesie div { margin-left: @indentStep; text-indent: -1 * @indentStep; }
@media (min-width: @screen-lg-min) {
  .spip_poesie div { margin-left: @indentStep1200; text-indent: -1 * @indentStep1200; }
}
@media (max-width: @screen-sm-max) {
  .spip_poesie div { margin-left: @indentStep768; text-indent: -1 * @indentStep768; }
}

/* Enluminures typo V3 / Cf.: https://contrib.spip.net/3118 */
.caractencadre-spip {}
.caractencadre2-spip {}
.texteencadre-spip {}
//
// Grid system
// --------------------------------------------------


// Container widths
.container {
  .container-fixed();
  @media (min-width: @screen-sm-min) {width: @container-sm; }
  @media (min-width: @screen-md-min) {width: @container-md; }
  @media (min-width: @screen-lg-min) {width: @container-lg; }
  @media (min-width: @screen-xl-min) {width: @container-xl; }
}

.container-fluid {.container-fixed(); }
.row {.make-row(); }
.make-grid-columns();
.make-grid(xs);

// Responsive
@media (min-width: @screen-sm-min) {.make-grid(sm); }
@media (min-width: @screen-md-min) {.make-grid(md); }
@media (min-width: @screen-lg-min) {.make-grid(lg); }
@media (min-width: @screen-xl-min) {.make-grid(xl); }

/**
 * HashGrid from http://hashgrid.com/
 * only visible for webmaster users
 */
#grid {
  .hashgrid (@container-width, @grid-gutter-width, @grid-columns, @line-height-computed) {
    #bsgrid{
      /* Dimensions - same width as your grid with gutters */
      width: @container-width;
      margin-left: -1 * (@container-width / 2 );
    }

    /* Vertical grid lines */
    #bsgrid div.vert{
      width: percentage((1 / @grid-columns));
      //border-left:1px solid darkturquoise;
      //border-right:1px solid darkturquoise;
      //margin-right: @grid-gutter-width - 1px;
      position: relative;
      &:before {
        display: block;
        position: absolute;
        content: "";
        height: 100%;
        width: 1px;
        top:0;
        left: 0;
        border-left: 1px solid darkturquoise;
      }
      &:after {
        display: block;
        position: absolute;
        content: "";
        height: 100%;
        width: 1px;
        top:0;
        right: @grid-gutter-width;
        border-right: 1px solid darkturquoise;
      }
    }
    #bsgrid .vert-container {margin-left: @grid-gutter-width / 2; }

    /* Horizontal grid lines, defined by your base line height */
    #bsgrid div.horiz{
      /* 20px line height */
      height: @line-height-computed - 1px;
      border-bottom: 1px dotted darkgris;
      margin: 0;
      padding: 0;
    }
  }
}

// Fixed (940px)
#grid > .hashgrid(@container-md, @grid-gutter-width, @grid-columns, @line-height-computed);
@media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
  #grid > .hashgrid(@container-sm, @grid-gutter-width, @grid-columns, @line-height-computed);
}
@media (min-width: @screen-lg-min) {
  #grid > .hashgrid(@container-lg, @grid-gutter-width, @grid-columns, @line-height-computed);
}
@media (min-width: @screen-xl-min) {
  #grid > .hashgrid(@container-xl, @grid-gutter-width, @grid-columns, @line-height-computed);
}
#bsgrid{
    /* Grid (left-aligned)
    position: absolute;
    top: 0;
    left: 0;
    margin-left:0;
    */

    /* Grid (centered) */
    position: absolute;
    top: 0;
    left: 50%;
}

// Basic looping in LESS
.loop-grid-spans(@index, @type) when (@index >= 0) {
  .calc-grid-span(@index, @type);
  // next iteration
  .loop-grid-spans((@index - 1), @type);
}

// Create grid for specific class
.make-grid-span() {
  .float-grid-spans();
  .loop-grid-spans(@grid-columns, width);
  .loop-grid-spans(@grid-columns, offset);
}
//
// Tables
// --------------------------------------------------

table {background-color: @table-bg; }
caption {
  padding-top: @table-cell-padding;
  padding-bottom: @table-cell-padding;
  color: @text-muted;
  text-align: left;
}
th {text-align: left; }

// Baseline styles

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: @line-height-computed;
  // Cells
  > thead,
  > tbody,
  > tfoot {
    > tr {
      > th,
      > td {
        padding: @table-cell-padding;
        line-height: @line-height-base;
        vertical-align: top;
        border-top: 1px solid @table-border-color;
      }
    }
  }
  // Bottom align for column headings
  > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid @table-border-color;
  }
  // Remove top border from thead by defaut
  > caption + thead,
  > colgroup + thead,
  > thead:first-child {
    > tr:first-child {
      > th,
      > td {
        border-top: 0;
      }
    }
  }
  // Account for multiple tbody instances
  > tbody + tbody {border-top: 2px solid @table-border-color; }

  // Nesting
  .table {background-color: @body-bg; }
  > tbody > tr:hover {background-color: @table-bg-hover; }
  > tbody > tr:nth-of-type(odd) {background-color: @table-bg-accent; }
}


// Condensed table w/ half padding

.table-condensed {
  > thead,
  > tbody,
  > tfoot {
    > tr {
      > th,
      > td {
        padding: @table-condensed-cell-padding;
      }
    }
  }
}


// Bordered version
//
// Add borders all around the table and between all the columns.

.table-bordered {
  border: 1px solid @table-border-color;
  > thead,
  > tbody,
  > tfoot {
    > tr {
      > th,
      > td {
        border: 1px solid @table-border-color;
      }
    }
  }
  > thead > tr {
    > th,
    > td {
      border-bottom-width: 2px;
    }
  }
}

// Table cell sizing
table col[class*="col-"] {
  position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
  float: none;
  display: table-column;
}
table {
  td,
  th {
    &[class*="col-"] {
      position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
      float: none;
      display: table-cell;
    }
  }
}

.table-row-variant(@state; @background) {
  // Exact selectors below required to override `.table-striped` and prevent
  // inheritance to nested tables.
  .table > thead > tr,
  .table > tbody > tr,
  .table > tfoot > tr {
    > td.@{state},
    > th.@{state},
    &.@{state} > td,
    &.@{state} > th {
      background-color: @background;
    }
  }

  // Hover states for `.table-hover`
  // Note: this is not available for cells or rows within `thead` or `tfoot`.
  .table-hover > tbody > tr {
    > td.@{state}:hover,
    > th.@{state}:hover,
    &.@{state}:hover > td,
    &:hover > .@{state},
    &.@{state}:hover > th {
      background-color: darken(@background, 5%);
    }
  }
}

// Table backgrounds
//
// Exact selectors below required to override `.table-striped` and prevent
// inheritance to nested tables.

// Generate the contextual variants
.table-row-variant(active; @table-bg-active);
.table-row-variant(success; @state-vert-bg);
.table-row-variant(info; @state-jaune-bg);
.table-row-variant(orange; @state-orange-bg);
.table-row-variant(rouge; @state-rouge-bg);


// Responsive tables
//
// Wrap your tables in `.table-responsive` and we'll make them mobile friendly
// by enabling horizontal scrolling. Only applies <768px. Everything above that
// will display normally.

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)

  @media screen and (max-width: @screen-xs-max) {
    width: 100%;
    margin-bottom: (@line-height-computed * 0.75);
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid @table-border-color;

    // Tighten up spacing
    > .table {
      margin-bottom: 0;

      // Ensure the content doesn't wrap
      > thead,
      > tbody,
      > tfoot {
        > tr {
          > th,
          > td {
            white-space: nowrap;
          }
        }
      }
    }

    // Special overrides for the bordered tables
    > .table-bordered {
      border: 0;

      // Nuke the appropriate borders so that the parent can handle them
      > thead,
      > tbody,
      > tfoot {
        > tr {
          > th:first-child,
          > td:first-child {
            border-left: 0;
          }
          > th:last-child,
          > td:last-child {
            border-right: 0;
          }
        }
      }

      // Only nuke the last row's bottom-border in `tbody` and `tfoot` since
      // chances are there will be only one `tr` in a `thead` and that would
      // remove the border altogether.
      > tbody,
      > tfoot {
        > tr:last-child {
          > th,
          > td {
            border-bottom: 0;
          }
        }
      }

    }
  }
}

/* Tableaux SPIP */
table.spip {.table}
//
// Forms
// --------------------------------------------------

button, input, optgroup, select, textarea {
  color: inherit; // 1
  font: inherit; // 2
  margin: 0; // 3
}
button {overflow: visible; }
button, select {text-transform: none; }
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button; // 2
  cursor: pointer; // 3
}
button[disabled], html input[disabled] {cursor: defaut; }
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {line-height: normal; }
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box; // 1
  padding: 0; // 2
}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {height: auto; }
input[type="search"] {
  -webkit-appearance: textfield; // 1
  box-sizing: content-box; //2
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0; // 1
  padding: 0; // 2
}
textarea {overflow: auto; }
optgroup {font-weight: bold; }

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 1.1em;
  font-size: (@font-size-base * 1.5);
  line-height: inherit;
  color: @legend-color;
  border: 0;
  border-bottom: 1px solid @legend-border-color;
}

label {
  display: inline-block;
  max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)
  margin-bottom: 5px;
  font-weight: bold;
}

// Normalize form controls
input[type="search"] {.box-sizing(border-box); }
input[type="radio"], input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9; // IE8-9
  line-height: normal;
}
input[type="file"] {display: block; }

// Make range inputs behave like textual form controls
input[type="range"] {
  display: block;
  width: 100%;
}

// Make multiple select elements height not fixed
select[multiple], select[size] {height: auto; }

// Focus for file, radio, and checkbox
input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
  .tab-focus();
}

// Adjust output element
output {
  display: block;
  padding-top: (@padding-base-vertical + 1);
  font-size: @font-size-base;
  line-height: @line-height-base;
  color: @input-color;
}

.form-control {
  display: block;
  width: 100%;
  height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
  padding: @padding-base-vertical @padding-base-horizontal;
  font-size: @font-size-base;
  line-height: @line-height-base;
  color: @input-color;
  background-color: @input-bg;
  background-image: none; // Reset unusual Firefox-on-Android defaut style; see https://github.com/necolas/normalize.css/bootstrapleger/issues/214
  border: 1px solid @input-border;
  border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.
  .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
  .transition(~"border-color ease-in-out .15s, box-shadow ease-in-out .15s");
  .form-control-focus();
  .placeholder();

  // Unstyle the caret on `<select>`s in IE10+.
  &::-ms-expand {
    border: 0;
    background-color: transparent;
  }

  // Disabled and read-only inputs
  &[disabled], &[readonly], fieldset[disabled] & {
    background-color: @input-bg-disabled;
    opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655
  }

  &[disabled],
  fieldset[disabled] & {cursor: @cursor-disabled; }
  textarea& {height: auto; }
}

input[type="search"] {-webkit-appearance: none; }

// Special styles for iOS temporal inputs

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"] {
    &.form-control {line-height: @input-height-base; }
    &.input-sm, .input-group-moyen & {line-height: @input-height-small; }
    &.input-lg, .input-group-lg & {line-height: @input-height-large; } }
}

.form-group {margin-bottom: @form-group-margin-bottom; }

// Checkboxes and radios
.radio, .checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;

  label {
    min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
  }
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}

.radio + .radio, .checkbox + .checkbox {margin-top: -5px; }

// Radios and checkboxes on same line
.radio-inline, .checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; // space out consecutive inline controls
}

// Apply same disabled cursor tweak as for inputs
input[type="radio"], input[type="checkbox"] {
  &[disabled], &.disabled,
  fieldset[disabled] & {cursor: @cursor-disabled; }
}
// These classes are used directly on <label>s
.radio-inline, .checkbox-inline {
  &.disabled,
  fieldset[disabled] & {cursor: @cursor-disabled; }
}
// These classes are used on elements with <label> descendants
.radio, .checkbox {
  &.disabled, fieldset[disabled] & {
    label {cursor: @cursor-disabled; }
  }
}

// Static form control text
.form-control-static {
  // Size it appropriately next to real form controls
  padding-top: (@padding-base-vertical + 1);
  padding-bottom: (@padding-base-vertical + 1);
  // Remove defaut margin from `p`
  margin-bottom: 0;
  min-height: (@line-height-computed + @font-size-base);

  &.input-grand, &.input-petit {
    padding-left: 0;
    padding-right: 0;
  }
}

// Redimensionnement d'elements par groupe

.input-petit {
  .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);
}
.form-group-petit {
  .form-control {
    height: @input-height-small;
    padding: @padding-small-vertical @padding-small-horizontal;
    font-size: @font-size-small;
    line-height: @line-height-small;
    border-radius: @input-border-radius-small;
  }
  select.form-control {
    height: @input-height-small;
    line-height: @input-height-small;
  }
  textarea.form-control, select[multiple].form-control {
    height: auto;
  }
  .form-control-static {
    height: @input-height-small;
    min-height: (@line-height-computed + @font-size-small);
    padding: (@padding-small-vertical + 1) @padding-small-horizontal;
    font-size: @font-size-small;
    line-height: @line-height-small;
  }
}

.input-grand {
  .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);
}
.form-group-grand {
  .form-control {
    height: @input-height-large;
    padding: @padding-large-vertical @padding-large-horizontal;
    font-size: @font-size-large;
    line-height: @line-height-large;
    border-radius: @input-border-radius-large;
  }
  select.form-control {
    height: @input-height-large;
    line-height: @input-height-large;
  }
  textarea.form-control, select[multiple].form-control {
    height: auto;
  }
  .form-control-static {
    height: @input-height-large;
    min-height: (@line-height-computed + @font-size-large);
    padding: (@padding-large-vertical + 1) @padding-large-horizontal;
    font-size: @font-size-large;
    line-height: @line-height-large;
  }
}

// Feedback states
.ok {
  .form-control-validation(@state-vert-text; @state-vert-text; @state-vert-bg);
}
.avertissement {
  .form-control-validation(@state-orange-text; @state-orange-text; @state-orange-bg);
}
.erreur {
  .form-control-validation(@state-rouge-text; @state-rouge-text; @state-rouge-bg);
}

// Help text

.aide {
  display: block; // account for any element using help-block
  margin-top: 5px;
  margin-bottom: 10px;
  color: lighten(@text-color, 25%); // lighten the text some for contrast
}

// Horizontal forms

.form-large {

  .radio, .checkbox, .radio-inline, .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: (@padding-base-vertical + 1); // Defaut padding plus a border
  }
  // Account for padding we're adding to ensure the alignment and of help text
  .radio, .checkbox {min-height: (@line-height-computed + (@padding-base-vertical + 1)); }
  .form-group {.make-row(); }

  // Reset spacing and right align labels, but scope to media queries so that
  @media (min-width: @screen-sm-min) {
    .control-label {
      text-align: right;
      margin-bottom: 0;
      padding-top: (@padding-base-vertical + 1); // Defaut padding plus a border
    }
  }

  // Form group sizes
  .form-group-grand {
    @media (min-width: @screen-sm-min) {
      .control-label {
        padding-top: (@padding-large-vertical + 1);
        font-size: @font-size-large;
      }
    }
  }
  .form-group-petit {
    @media (min-width: @screen-sm-min) {
      .control-label {
        padding-top: (@padding-small-vertical + 1);
        font-size: @font-size-small;
      }
    }
  }
}

legend {
	font-size: @font-size-h3-em;
	line-height: @emLineHeight / @font-size-h3-em;
	margin-bottom: @emVertMargin / @font-size-h3-em / 2;
	margin-top: @emVertMargin / @font-size-h3-em / 2;
}


// Form controls
// -------------------------

// Shared size and type resets
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	padding: 0.8em;
	margin-bottom: 0;
}
select {
	line-height: 2.2em;
	height: @baseLineHeight * 1.8;
  padding: 0.1em .8em 0;
}

legend {
	font-size: @font-size-h3-em;
	line-height: @emLineHeight / @font-size-h3-em;
	margin-bottom: @emVertMargin / @font-size-h3-em / 2;
	margin-top: @emVertMargin / @font-size-h3-em / 2;
}

/* Surcharge RTL */
.rtl {
  .form-search .input-append .search-query {border-radius : 0 14px 14px 0; }
  .form-search .input-append .btn {border-radius : 14px 0 0 14px; }
  .form-search .input-prepend .search-query {border-radius : 14px 0 0 14px; }
  .form-search .input-prepend .btn {border-radius : 0 14px 14px 0; }
}

/* ========== Formulaires Spip de tout le site ========= */

.formulaire_spip, .jeux_cadre {
	clear: both;
	margin-bottom: @emLineHeight;
	position: relative;

	form {
		margin-bottom: 0;

		/* ---------- Lignes  ------------ */

		.editer-groupe,		>div>ul, fieldset>ul, form>ul, form>div>ul, .auteurs_multiples {
			list-style: none;
			.form-group;
		}

		.editer, .row-fluid, .fieldset,ul {
			list-style: none;
			clear: both;
			vertical-align: top;
		}
		.editer {
			margin-top: 0;
			margin-bottom: 1.5em;
			vertical-align: bottom;
		}

		//  ---------- Champ texte ---------- */

		input.text,input.password,input.email,input.date, textarea, select {
			width: 100%;
			color: @input-color;
			border: 1px solid @inputBorder;
			background-color: @inputBackground;
			border-radius: @inputBorderRadius;
		}
		select{
			border-radius: @inputBorderRadius 0 0 @inputBorderRadius;
		}
		textarea {height: auto;}

		.markItUp {
			margin-top: .8em;
			.markItUpContainer .markItUpHeader {
					width: 100%;
					padding-right: 0;
					padding-left: 0;
				}
			.markItUpContainer .markItUpHeader + textarea {
					border-top-left-radius: 0;
					border-top-right-radius: 0;
					border-top:0;
				}
		}

		// Certains champs ne font que la moitié  de la largeur en grand écran
		.saisie_pays,
		.saisie_input,
		.saisie_nom_inscription,
		.saisie_mail_inscription,
		.saisie_mot,
		.saisie_case,
		.saisie_radio,
		.editer_nom,
		.editer_portable, // Pour le portable des formulaires contact
		.editer_pays,
		.editer_nom_site,
		.editer_url_site,
		.editer_new_pass,
		.editer_new_pass2,
		.saisie_email,
		.editer_session_email,
		.editer_email {
			width: 44.6%;
			margin-left: 5%;
			display: inline-block;
			@media (max-width:@screen-xs-min) { width: 94%; }
		}

		input.submit, button.submit {.animation(.5s); }

	}
}

/* ========== Formulaires Spip du contenu  ========= */

/* ---------- La logique de ligne est reservée à la classe contenu   ------------ */

.contenu {

	.formulaire_spip, .jeux_cadre  {
		clear: both;
		margin-bottom: 			@emLineHeight;
		padding: 								@emLineHeight @emLineHeight*1.7 @emLineHeight*1.7;
		background-color: 	@well-bg;
		position: relative;
		text-align: left;
		position: relative;

		form {
			.editer-groupe,		>div>ul, fieldset>ul, form>ul, form>div>ul, .auteurs_multiples {
				margin-left: -5%;
				padding: 0;
				.form-group;
				> li { margin-left: 5% }
			}
			.editer, .row-fluid, .fieldset,ul {margin-left: 5%; }
		}
	}

}

.contenu, .footer {

	.formulaire_spip, .jeux_cadre {

		form {

			/* ---------- TItres, labels et légendes  ------------ */

			legend, .legend {
				display: block;
				width: 100%;
				padding: 0;
				text-align: left;
				margin-bottom: 1em;
				font-size: @baseFontSize * 1.5;
				line-height: @baseLineHeight * 2;
				color: @textColor;
				border: 0;
				border-bottom: 1px solid #e5e5e5;
				// Small
				small {
					font-size: @baseLineHeight * .75;
					color: @grisLight;
				}
			}

			legend {&:extend(h3);}

			label {
				font-weight: 600;
				color: @textColor;
				text-align: left;
				font-size: 18px;
				line-height: 26px;
				min-width: 12%;
			}

			/* ---------- Fieldset  ------------ */

			fieldset {
				&.serre {
					padding: 16px .8em 0;
					margin: 1em 0 2em 0;
					border: 0;
					border: 1px solid #ddd;
					border-radius: 0.5em;
				}
				// RETAR : .editer,
				legend, .legend, .row-fluid {width: 100%; }
				li { text-align: left; }
				.saisie_case { margin-left: 0; }
			}

			/* ---------- Cases à cocher  ------------ */

			.choix {
				display: inline-block;
				text-align: left;
				margin: .3em 0 0 0;
				label {
					display:inline;
					font-weight:normal;
				}
				input.checkbox, input.radio {
					margin-top: .3em;
					margin-bottom: 1px;
				}
			}

			input.radio, input.checkbox, .editer input#horaire {
				width:auto;
				margin: @paddingMini;
				margin-left:0;
				vertical-align: top;
				display: inline-block;
			}
			.editer input#horaire {margin-top: 6px; }

			/* ---------- boutons radio   ------------ */

			.saisie_radio, .saisie_oui_non {
				label { margin-right: 1em; }
			}

			/* ---------- Checkbox   ------------ */

			// Si une seule case à cocher
			.case_et_radio {
				margin-top: 0;
				margin-bottom: 0;
				width: 100%;
				label {
					margin-bottom: 1em;
					width: 90%;
				}
			}
			.editer_horaire{
				.case_et_radio;
				margin-bottom: 1em;
			}

			.saisie_checkbox, .saisie_case,  .editer_session, .saisie_listes, .saisie_listes_diffusion {
				.choix{
					.case_et_radio;
				}
				.choix + .choix { margin-top: .3em; }
			}

			.saisie_selection_multiple select {
					padding: .7em .7em;
					option{
						border: 1px solid #eee;
						margin-bottom: 0.5em;
						padding: 0.3em 0.6em;
						border-radius: 0.2em;
						min-height: 1.9em;
						&:checked {
							background-color: @couleur-defaut;
						}
					}
			}
			/* choix de mot dans le form forum notamment */
			.choix_mots {
				.saisie_mot {
					.make-xs-column(6);
					@media (max-width:@screen-xs-min) {
						width: 100%;
						float: none;
					}
				  float: left;
				  margin-left: @fluidGridGutterWidth;
				  *margin-left: @fluidGridGutterWidth - (.5 / @gridRowWidth * 100 * 1%);
					&:nth-child(2n-1) {clear: both;}
					label {display:inline;font-weight:normal;}
					input.radio,
					input.checkbox {
						width:auto;
						margin: @paddingMini;
						margin-left:0;
						margin-bottom: 1px;
					}
				}
			}

			/* Champs date */

			.editer_date_debut_fin {
				label {
					float: left;
					width: 15%;
					padding: 0.7em 0;
				}
				input.date {
					width:5em;
					padding-right:25px;
					float: left;
					font-size: 18px;
				}
				input.heure {width:7em; }

				img.ui-datepicker-trigger {
					float: left;
					padding: 1em;
					margin-left: -2.9em;
				}
			}

			/* ---------- Ajout d'articles ou de rubriques ---------- */

			.browser {
				display: block;
				overflow: hidden;
				background: #fff;
				padding: 1em .8em;
				margin: 1.5em 0 0;
				h2 {
					font-size: 1.1em !important;
					color: #000;
					text-transform: none;
				}
				.items {li { list-style: none;} }
				.chemin {
					margin-bottom: 0.9em;
					a, strong {
						font-weight: 500;
						font-style: italic;
					}
				}
				.ajaxbloc {
					border: 1px solid #ddd;
					display: block;
					overflow: hidden;
					margin: 1em 0;
					padding: 1em 3%;
					.choix_rapide{
						input{ padding: 0.6em; }
						a {
							background: @grisLighter;
							padding: 0.6em;
							border-radius: 0.3em;
							margin-left: 0.9em;
						}
					}
					.frame {
						display: inline-block;
						border-right: 1px solid #ddd;
						padding-right: 3%;
						margin-right: 3%;
						width:45%;
						vertical-align: top;
						.article{
							margin-top: 0.1em;
							position: inherit;
							padding: 0.3em 0 0;
						}
						&:last-of-type{border-right: 0 solid #fff; }
						a {margin-right: 2%; }
					}
				}
			}

			/* ---------- Boutons ---------- */

			p.boutons {
				margin: @emLineHeight*.8 0;
				text-align: center;
			}
			input.submit, button.submit {
				.btn;
				.btn-defaut;
				padding: 0.6em 7%;
				font-size: 1.2em;
				line-height: 1.5em;
				background-color: @couleur-defaut;
				white-space: normal;
			}


			.picker_bouton {
				.btn();
				.btn-orange();
				color: rgba(0,0,0,0);
				.bind-ajax{
					color: #fff;
					margin: 0 3%;
				}
			}

			/* ---------- Explications   ------------ */

			.help-block, .help-inline {
				color: lighten(@textColor, 15%); // lighten the text some for contrast
				font-style: italic;
				text-align: left;
			}

			.explication {
				margin-bottom: .2em !important ; // Important car explication est un <P> qui a une marge par défaut dans les articles
				margin:0 0 @emVertMargin;
				font-weight: 400;
				font-size: 1.05em;
				display: block;
				.help-block;
			}

			.editer.obligatoire label {font-weight: 500;}

			.attention {
				color: @orange;
				display: block;
				margin: -.2em 0 0.3em;
			}

			/* Reponses, previsu et erreurs
			----------------------------------------------- */

			.erreur {
				display: block;
				color: @state-rouge-text;
				.erreur_message {
					display: block;
					// float: right;
					color: @rouge;
					font-weight: bold;
					margin-bottom: .5em;
					label {display: inline;}
					input {margin: 0;}
				}
				input.text,input.password,input.email,input.date, textarea, select {
			    border-color: @state-rouge-text;
			    color: @state-rouge-text;
			    width: 100%;
			    .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
			    &:focus {
			      border-color: darken(@state-rouge-text, 10%);
			      @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@state-rouge-text, 20%);
			      .box-shadow(@shadow);
			    }
			  }
			}

		}

		/* ========== Formulaires en une ligne  ========= */

		.form-inline {

		  // Kick in the inline
		  @media (min-width: @screen-sm-min) {

		    .form-group, .form-control, .input-group, .radio, .checkbox, .form-control-static {
		      display: inline-block;
		      vertical-align: middle;
		    }

		    .form-group { margin-bottom: 0; }
		    // In navbar-form, allow folks to *not* use `.form-group`
		    .form-control {
		      width: auto; // Prevent labels from stacking above inputs in `.form-group`
		    }
		    .input-group {
		      display: inline-table;
		      .input-group-addon, .input-group-btn, .form-control {width: auto; }
			    & > .form-control {width: 100%; }
		    }
		    .control-label {
		      margin-bottom: 0;
		      vertical-align: middle;
		    }

		    .radio, .checkbox {
		      margin-top: 0;
		      margin-bottom: 0;
		      label {padding-left: 0; }
		    }
		    .radio input[type="radio"], .checkbox input[type="checkbox"] {
		      position: relative;
		      margin-left: 0;
		    }

				// Spécial Spip
				.saisie_input, .saisie_nom_inscription, .saisie_mail_inscription, .saisie_mot, .saisie_case, .saisie_email  {
					margin-left: 0;
				}
				.editer { margin-bottom: 0; }

		  }

		}

	}

}

.contenu .formulaire_uploadhtml5{
	padding: 2.5em;
	margin-bottom: 4em;
}

/* Reponses */
.reponse_formulaire {.message;}
.reponse_formulaire_ok {
	.message-vert;
	.nospam-checkbox { display: none; }
}
.reponse_formulaire_erreur {.message-rouge;}
.content .article .reponse_formulaire { margin: 0.7em 0 0.1em; }

.secondary {
	.formulaire_spip {
		padding: @emLineHeight/2;
		margin-bottom: 2em;
		.boutons {
			margin: 0 -@emLineHeight/2 -@emLineHeight/2;
			padding: @emLineHeight/2;
		}
	}
}

/* Variantes et cas particuliers
----------------------------------------------- */

/* quelques fieldset.info qui ne sont pas des messages d'info */
.formulaire_spip, .jeux_cadre {
	 fieldset.info {
	  background-color: inherit;
	  color: inherit;
	  text-shadow:inherit;
	  .border-radius(inherit);
	  &:extend(fieldset);
	}
}

/* Selection des langues */
.formulaire_menu_lang {
	margin: 0;
	padding: 0;
	background: none;
	border: 0;}
.formulaire_menu_lang form select {width: 100%; }

/* Formulaire de login dans une page */
.formulaire_login form {
	.editer {clear:left;}
	input.text,
	input.password {
		width: 89%;
		@media (max-width: @screen-xs) {width: 100%; }
	}
	.editer_password p.details 	{ margin-top: 0.9em; }
	#pass_securise 									{ margin-left: 0.9em; }
}

.formulaire_login #spip_logo_auteur {
	float:right;
	@media (max-width: @screen-xs) {margin-top: -35px; }
}

/* Formulaire formidable seulement */

.formulaire_formidable form {
	p.boutons {
		margin: @emLineHeight*1.5 0 0;
		padding: @emLineHeight*1.5 @emLineHeight 0;
		border-top: 1px solid @grisLight;
		text-align: center;
	}
	.editer {width: 94.7%; }
}

/* Time Picker
----------------------------------------------- */

body div.time-picker {
	width: 144px;
	li {
		padding: 0.5em 0.7em;
		font-size: 1.4em;
	}
}

body .ui-datepicker {
	.ui-datepicker-header {
		padding: 3% .8em 0;
		.ui-datepicker-prev {	float: left; }
		.ui-datepicker-next {	float: right; }
		.ui-datepicker-title {
			width: 100%;
			display: block;
			overflow: hidden;
			select {
				font-size: .9em;
				width: 50%;
				height: 100%;
				padding: 0;
				margin: 3% 0;
			}
		}
	}
	img.ui-datepicker-trigger {
		display: inline-block;
		padding: 0;
		margin: 0px 0 0 -19px;
		vertical-align: middle;
		z-index:2;
	}
	table {
		text-align: center;
		td{
			padding: 1px 2px;
			overflow: hidden;
			a{
				display: block;
				width: 80%;
				padding: 10%;
			}
		}
	}
	div.time-picker {
		font-size:11px;
		width:5em; /* needed for IE */
	}
}

/*  */
.bugajaxie { display: none; }

/* ============ RESPONSIVE GENERIQUE  ============ */

@media (max-width: @screen-xs) {
	// RETAR
	.contenu .formulaire_spip {
		padding: 1em 5vw 1.4em;
		form{
			.saisie_input, .saisie_nom_inscription, .saisie_mail_inscription, .saisie_mot, .saisie_fieldset, .saisie_email  {
				width: 95%;
				margin-bottom: 1em;
			}
			p.boutons {
			    margin: 0;
			    padding: 1.5em 0 .5em;
			    text-align: center;
	  	}
			input.submit{
				padding: 0.2em 7%;
				border-radius: .3em;
			}
		}
	}
}
// MIXINS Button variants
//
// Easily pump out defaut styles, as well as :hover, :focus, :active,
// and disabled options for all buttons

.button-variant(@color; @background; @border) {
  color: @color;
  background-color: @background;
  border-color: @border;

  &:focus,
  &.focus {
    color: @color;
    background-color: darken(@background, 10%);
        border-color: darken(@border, 25%);
  }
  &:hover {
    color: @color;
    background-color: darken(@background, 10%);
        border-color: darken(@border, 12%);
  }
  &:active,
  &.active,
  .open > .dropdown-toggle& {
    color: @color;
    background-color: darken(@background, 10%);
        border-color: darken(@border, 12%);

    &:hover,
    &:focus,
    &.focus {
      color: @color;
      background-color: darken(@background, 17%);
          border-color: darken(@border, 25%);
    }
  }
  &:active,
  &.active,
  .open > .dropdown-toggle& {
    background-image: none;
  }
  &.disabled,
  &[disabled],
  fieldset[disabled] & {
    &:hover,
    &:focus,
    &.focus {
      background-color: @background;
          border-color: @border;
    }
  }

  .badge {
    color: @background;
    background-color: @color;
  }
}

// Button sizes
.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
  padding: @padding-vertical @padding-horizontal;
  font-size: @font-size;
  line-height: @line-height;
  border-radius: @border-radius;
}

// Base styles
// --------------------------------------------------

.btn {
  display: inline-block;
  margin-bottom: 0; // For input.btn
  font-weight: @btn-font-weight;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none; // Reset unusual Firefox-on-Android defaut style; see https://github.com/necolas/normalize.css/bootstrapleger/issues/214
  border: 1px solid transparent;
  white-space: nowrap;
  .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);
  .user-select(none);

  &,
  &:active,
  &.active {
    &:focus,
    &.focus {
      .tab-focus();
    }
  }

  &:hover,
  &:focus,
  &.focus {
    color: @btn-defaut-color;
    text-decoration: none;
  }

  &:active,
  &.active {
    outline: 0;
    background-image: none;
    .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
  }

  &.disabled,
  &[disabled],
  fieldset[disabled] & {
    cursor: @cursor-disabled;
    .opacity(.65);
    .box-shadow(none);
  }

}

@media screen and (max-width: @screen-xs-max) {
	// RETAR
	.btn{white-space: normal; }
}

// Alternate buttons
// --------------------------------------------------

.btn-defaut {
  .button-variant(@btn-defaut-color; @btn-defaut-bg; @btn-defaut-border);
}
.btn-secondaire {
  .button-variant(@btn-defaut-color; @btn-defaut-bg; @btn-defaut-border);
}
// Vert appears as vert
.btn-vert {
  .button-variant(@btn-vert-color; @btn-vert-bg; @btn-vert-border);
}
// Info appears as bleu-vert
.btn-jaune {
  .button-variant(@btn-jaune-color; @btn-jaune-bg; @btn-jaune-border);
}
// Orange appears as orange
.btn-orange {
  .button-variant(@btn-orange-color; @btn-orange-bg; @btn-orange-border);
}
// Rouge and error appear as red
.btn-rouge {
  .button-variant(@btn-rouge-color; @btn-rouge-bg; @btn-rouge-border);
}

.btn-bleu {
  .button-variant(@btn-bleu-color; @btn-bleu-bg; @btn-bleu-border);
}

.btn-violet {
  .button-variant(@btn-violet-color; @btn-violet-bg; @btn-violet-border);
}

.btn-blanc{
  .button-variant(@couleur-defaut; #fff; darken(#fff, 5%));
  color: black;
}

// Button Sizes
// --------------------------------------------------

.btn-petit {
  // line-height: ensure even-numbered height of button next to large input
  .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);
}
.btn-moyen {
  // line-height: ensure proper height of button next to small input
  .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);
}
.btn-grand {
  .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @btn-border-radius-large);
}

// /* boutons admin forum */
// .boutons.modererforum .submit {.btn-petit}
// .boutons.modererforum .poubelle .submit {.btn-rouge;}
// .boutons.modererforum .spam .submit {.btn-orange;}

/* boutons action de Spip */

.bouton_action_post.btn{
	.submit{
		background-color: transparent;
		border: none;
	}
}


/* boutons d'admin */
body .spip-admin-bloc, body .spip-admin-float {z-index: @zindex-navbar-fixed + 1;}

// Components
//
// Component animations
// --------------------------------------------------

// Heads up!
//
// We don't use the `.opacity()` mixin here since it causes a bug with text
// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.

.fade {
  opacity: 0;
  .transition(opacity .15s linear);
  &.in {
    opacity: 1;
  }
}

.collapse {
  display: none;

  &.in      { display: block; }
  tr&.in    { display: table-row; }
  tbody&.in { display: table-row-group; }
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  .transition-property(~"height, visibility");
  .transition-duration(.35s);
  .transition-timing-function(ease);
}

/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */

@animate-duration: 1s;
@animate-delay: 1s;
@animate-repeat: 100;

.anime {
	animation-duration: 1s;
  .animation-duration(@animate-duration);
  .animation-fill-mode(both);
}
.anime.anim_infinite {
  .animation-iteration-count(infinite);
}
.anime.anim_repeat-1 {
  .animation-iteration-count(1);
  .animation-iteration-count(@animate-repeat);
}
.anime.anim_repeat-2 {
  .animation-iteration-count(calc(1 * 2));
  .animation-iteration-count(calc(@animate-repeat * 2));
}
.anime.anim_repeat-3 {
  .animation-iteration-count(calc(1 * 3));
  .animation-iteration-count(calc(@animate-repeat * 3));
}
.anime.anim_delay-1s {
	.animation-delay(1s);
  .animation-delay(@animate-delay);
}
.anime.anim_delay-2s {
  .animation-delay(calc(1s * 2));
  .animation-delay(calc(@animate-delay * 2));
}
.anime.anim_delay-3s {
  .animation-delay(calc(1s * 3));
  .animation-delay(calc(@animate-delay * 3));
}
.anime.anim_delay-4s {
  .animation-delay(calc(1s * 4));
  .animation-delay(calc(@animate-delay * 4));
}
.anime.anim_delay-5s {
  .animation-delay(calc(1s * 5));
  .animation-delay(calc(@animate-delay * 5));
}
.anime.anim_faster {
  .animation-duration(calc(1s / 2));
  .animation-duration(calc(@animate-duration / 2));
}
.anime.anim_fast {
  .animation-duration(calc(1s * 0.8));
  .animation-duration(calc(@animate-duration * 0.8));
}
.anime.anim_slow {
  .animation-duration(calc(1s * 2));
  .animation-duration(calc(@animate-duration * 2));
}
.anime.anim_slower {
  .animation-duration(calc(1s * 3));
  .animation-duration(calc(@animate-duration * 3));
}
@media print, (prefers-reduced-motion: reduce) {
  .anime {
    .animation-duration(1ms) !important;
    .transition-duration(1ms) !important;
    .animation-iteration-count(1) !important;
  }

  .anime[class*='Out'] { opacity: 0; }
}
/* Attention seekers  */
@rebond1:-10px;
@rebond2:-5px;
@rebond3:-1px;
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    .animation-timing-function(cubic-bezier(0.215, 0.61, 0.355, 1));
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    .animation-timing-function(cubic-bezier(0.755, 0.05, 0.855, 0.06));
    transform: translate3d(0, @rebond1, 0) scaleY(1.1);
  }

  70% {
    .animation-timing-function(cubic-bezier(0.755, 0.05, 0.855, 0.06));
    transform: translate3d(0, @rebond2, 0) scaleY(1.05);
  }

  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, @rebond3, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    .animation-timing-function(cubic-bezier(0.215, 0.61, 0.355, 1));
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    .animation-timing-function(cubic-bezier(0.755, 0.05, 0.855, 0.06));
    transform: translate3d(0, @rebond1, 0) scaleY(1.1);
  }

  70% {
    .animation-timing-function(cubic-bezier(0.755, 0.05, 0.855, 0.06));
    transform: translate3d(0, @rebond2, 0) scaleY(1.05);
  }

  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, @rebond3, 0) scaleY(1.02);
  }
}
.anim_bounce {
  .animation-name(bounce);
  .transform-origin(center bottom);
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.anim_flash {
  .animation-name(flash);
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
        transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1) !important;
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05) !important;
  }

  to {
    transform: scale3d(1, 1, 1) !important;
  }
}
.anim_pulse {
  .animation-name(pulse);
  .animation-timing-function(ease-in-out);
}
@-webkit-keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
.anim_rubberBand {
  .animation-name(rubberBand);
}
@-webkit-keyframes shakeX {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.anim_shakeX {
  .animation-name(shakeX);
}
@-webkit-keyframes shakeY {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(0, 10px, 0);
  }
}
.anim_shakeY {
  .animation-name(shakeY);
}
@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}
.anim_headShake {
  .animation-timing-function(ease-in-out);
  .animation-name(headShake);
}
@-webkit-keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.anim_swing {
  .transform-origin(top center);
  .animation-name(swing);
}
@-webkit-keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
.anim_tada {
  .animation-name(tada);
}
/* ----------------------------------------------
 * Generated by Animista on 2022-9-13 18:8:37
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation pulsate-bck
 * ----------------------------------------
 */
@-webkit-keyframes dansant {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes dansant {
  0% {
            transform: scale(1);
  }
  10% {
            transform: rotate3d(0, 0, 1, -1deg);
  }
  20% {
            transform: scale(0.95) rotate3d(0, 0, 1, 1deg);
  }
  30% {
            transform: rotate3d(0, 0, 1, -1deg) skewX(1.5625deg) skewY(-1.5625deg);
  }
  40% {
            transform: rotate3d(0, 0, 1, -1deg);
  }
  50% {
            transform: scale(0.98) ;
  }
  60% {
            transform: scale(0.95) rotate3d(0, 0, 1, 1deg);
  }
  70% {
            transform: rotate3d(0, 0, 1, -1deg) skewX(-1.5625deg) skewY(1.5625deg);
  }
  80% {
            transform: scale(0.98) rotate3d(0, 0, 1, 1deg);
  }
  90% {
            transform: scale(0.9) rotate3d(0, 0, 1, 1deg);
  }
  100% {
            transform: scale(1);
  }
}


.anim_dansant {
  .animation-name(dansant);
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.anim_wobble {
  .animation-name(wobble);
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.anim_jello {
  .animation-name(jello);
  .transform-origin(center);
}
@-webkit-keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}
.anim_heartBeat {
  .animation-name(heartBeat);
  .animation-duration(calc(1s * 1.3));
  .animation-duration(calc(@animate-duration * 1.3));
  .animation-timing-function(ease-in-out);
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.anim_backInDown {
  .animation-name(backInDown);
}
@-webkit-keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.anim_backInLeft {
  .animation-name(backInLeft);
}
@-webkit-keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.anim_backInRight {
  .animation-name(backInRight);
}
@-webkit-keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.anim_backInUp {
  .animation-name(backInUp);
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.anim_backOutDown {
  .animation-name(backOutDown);
}
@-webkit-keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.anim_backOutLeft {
  .animation-name(backOutLeft);
}
@-webkit-keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.anim_backOutRight {
  .animation-name(backOutRight);
}
@-webkit-keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.anim_backOutUp {
  .animation-name(backOutUp);
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    .animation-timing-function(cubic-bezier(0.215, 0.61, 0.355, 1));
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    .animation-timing-function(cubic-bezier(0.215, 0.61, 0.355, 1));
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.anim_bounceIn {
  .animation-duration(calc(1s * 0.75));
  .animation-duration(calc(@animate-duration * 0.75));
  .animation-name(bounceIn);
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    .animation-timing-function(cubic-bezier(0.215, 0.61, 0.355, 1));
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    .animation-timing-function(cubic-bezier(0.215, 0.61, 0.355, 1));
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.anim_bounceInDown {
  .animation-name(bounceInDown);
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    .animation-timing-function(cubic-bezier(0.215, 0.61, 0.355, 1));
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    .animation-timing-function(cubic-bezier(0.215, 0.61, 0.355, 1));
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.anim_bounceInLeft {
  .animation-name(bounceInLeft);
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    .animation-timing-function(cubic-bezier(0.215, 0.61, 0.355, 1));
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    .animation-timing-function(cubic-bezier(0.215, 0.61, 0.355, 1));
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.anim_bounceInRight {
  .animation-name(bounceInRight);
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    .animation-timing-function(cubic-bezier(0.215, 0.61, 0.355, 1));
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    .animation-timing-function(cubic-bezier(0.215, 0.61, 0.355, 1));
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.anim_bounceInUp {
  .animation-name(bounceInUp);
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.anim_bounceOut {
  .animation-duration(calc(1s * 0.75));
  .animation-duration(calc(@animate-duration * 0.75));
  .animation-name(bounceOut);
}
@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.anim_bounceOutDown {
  .animation-name(bounceOutDown);
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.anim_bounceOutLeft {
  .animation-name(bounceOutLeft);
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.anim_bounceOutRight {
  .animation-name(bounceOutRight);
}
@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.anim_bounceOutUp {
  .animation-name(bounceOutUp);
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.anim_fadeIn {
  .animation-name(fadeIn);
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.anim_fadeInDown {
  .animation-name(fadeInDown);
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.anim_fadeInDownBig {
  .animation-name(fadeInDownBig);
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.anim_fadeInLeft {
  .animation-name(fadeInLeft);
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.anim_fadeInLeftBig {
  .animation-name(fadeInLeftBig);
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.anim_fadeInRight {
  .animation-name(fadeInRight);
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.anim_fadeInRightBig {
  .animation-name(fadeInRightBig);
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.anim_fadeInUp {
  .animation-name(fadeInUp);
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.anim_fadeInUpBig {
  .animation-name(fadeInUpBig);
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.anim_fadeInTopLeft {
  .animation-name(fadeInTopLeft);
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.anim_fadeInTopRight {
  .animation-name(fadeInTopRight);
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.anim_fadeInBottomLeft {
  .animation-name(fadeInBottomLeft);
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.anim_fadeInBottomRight {
  .animation-name(fadeInBottomRight);
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.anim_fadeOut {
  .animation-name(fadeOut);
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.anim_fadeOutDown {
  .animation-name(fadeOutDown);
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.anim_fadeOutDownBig {
  .animation-name(fadeOutDownBig);
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.anim_fadeOutLeft {
  .animation-name(fadeOutLeft);
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.anim_fadeOutLeftBig {
  .animation-name(fadeOutLeftBig);
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.anim_fadeOutRight {
  .animation-name(fadeOutRight);
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.anim_fadeOutRightBig {
  .animation-name(fadeOutRightBig);
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.anim_fadeOutUp {
  .animation-name(fadeOutUp);
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.anim_fadeOutUpBig {
  .animation-name(fadeOutUpBig);
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.anim_fadeOutTopLeft {
  .animation-name(fadeOutTopLeft);
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.anim_fadeOutTopRight {
  .animation-name(fadeOutTopRight);
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.anim_fadeOutBottomRight {
  .animation-name(fadeOutBottomRight);
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.anim_fadeOutBottomLeft {
  .animation-name(fadeOutBottomLeft);
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    .animation-timing-function(ease-out);
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    .animation-timing-function(ease-out);
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    .animation-timing-function(ease-in);
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    .animation-timing-function(ease-in);
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    .animation-timing-function(ease-in);
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    .animation-timing-function(ease-out);
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    .animation-timing-function(ease-out);
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    .animation-timing-function(ease-in);
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    .animation-timing-function(ease-in);
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    .animation-timing-function(ease-in);
  }
}
.anime.anim_flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  .animation-name(flip);
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    .animation-timing-function(ease-in);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    .animation-timing-function(ease-in);
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    .animation-timing-function(ease-in);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    .animation-timing-function(ease-in);
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.anim_flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  .animation-name(flipInX);
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    .animation-timing-function(ease-in);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    .animation-timing-function(ease-in);
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    .animation-timing-function(ease-in);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    .animation-timing-function(ease-in);
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.anim_flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  .animation-name(flipInY);
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.anim_flipOutX {
  .animation-duration(calc(1s * 0.75));
  .animation-duration(calc(@animate-duration * 0.75));
  .animation-name(flipOutX);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.anim_flipOutY {
  .animation-duration(calc(1s * 0.75));
  .animation-duration(calc(@animate-duration * 0.75));
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  .animation-name(flipOutY);
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.anim_lightSpeedInRight {
  .animation-name(lightSpeedInRight);
  .animation-timing-function(ease-out);
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.anim_lightSpeedInLeft {
  .animation-name(lightSpeedInLeft);
  .animation-timing-function(ease-out);
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.anim_lightSpeedOutRight {
  .animation-name(lightSpeedOutRight);
  .animation-timing-function(ease-in);
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.anim_lightSpeedOutLeft {
  .animation-name(lightSpeedOutLeft);
  .animation-timing-function(ease-in);
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.anim_rotateIn {
  .animation-name(rotateIn);
  .transform-origin(center);
}
@-webkit-keyframes rotateInDownLeft {
  from {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.anim_rotateInDownLeft {
  .animation-name(rotateInDownLeft);
  .transform-origin(left bottom);
}
@-webkit-keyframes rotateInDownRight {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.anim_rotateInDownRight {
  .animation-name(rotateInDownRight);
  .transform-origin(right bottom);
}
@-webkit-keyframes rotateInUpLeft {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.anim_rotateInUpLeft {
  .animation-name(rotateInUpLeft);
  .transform-origin(left bottom);
}
@-webkit-keyframes rotateInUpRight {
  from {
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.anim_rotateInUpRight {
  .animation-name(rotateInUpRight);
  .transform-origin(right bottom);
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.anim_rotateOut {
  .animation-name(rotateOut);
  .transform-origin(center);
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.anim_rotateOutDownLeft {
  .animation-name(rotateOutDownLeft);
  .transform-origin(left bottom);
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.anim_rotateOutDownRight {
  .animation-name(rotateOutDownRight);
  .transform-origin(right bottom);
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.anim_rotateOutUpLeft {
  .animation-name(rotateOutUpLeft);
  .transform-origin(left bottom);
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.anim_rotateOutUpRight {
  .animation-name(rotateOutUpRight);
  .transform-origin(right bottom);
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    .animation-timing-function(ease-in-out);
  }

  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    .animation-timing-function(ease-in-out);
  }

  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    .animation-timing-function(ease-in-out);
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    .animation-timing-function(ease-in-out);
  }

  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    .animation-timing-function(ease-in-out);
  }

  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    .animation-timing-function(ease-in-out);
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.anim_hinge {
  .animation-duration(calc(1s * 2));
  .animation-duration(calc(@animate-duration * 2));
  .animation-name(hinge);
  .transform-origin(top left);
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    .transform-origin(center bottom);
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    .transform-origin(center bottom);
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
.anim_jackInTheBox {
  .animation-name(jackInTheBox);
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.anim_rollIn {
  .animation-name(rollIn);
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.anim_rollOut {
  .animation-name(rollOut);
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.anim_zoomIn {
  .animation-name(zoomIn);
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    .animation-timing-function(cubic-bezier(0.55, 0.055, 0.675, 0.19));
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    .animation-timing-function(cubic-bezier(0.175, 0.885, 0.32, 1));
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    .animation-timing-function(cubic-bezier(0.55, 0.055, 0.675, 0.19));
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    .animation-timing-function(cubic-bezier(0.175, 0.885, 0.32, 1));
  }
}
.anim_zoomInDown {
  .animation-name(zoomInDown);
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    .animation-timing-function(cubic-bezier(0.55, 0.055, 0.675, 0.19));
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    .animation-timing-function(cubic-bezier(0.175, 0.885, 0.32, 1));
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    .animation-timing-function(cubic-bezier(0.55, 0.055, 0.675, 0.19));
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    .animation-timing-function(cubic-bezier(0.175, 0.885, 0.32, 1));
  }
}
.anim_zoomInLeft {
  .animation-name(zoomInLeft);
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    .animation-timing-function(cubic-bezier(0.55, 0.055, 0.675, 0.19));
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    .animation-timing-function(cubic-bezier(0.175, 0.885, 0.32, 1));
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    .animation-timing-function(cubic-bezier(0.55, 0.055, 0.675, 0.19));
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    .animation-timing-function(cubic-bezier(0.175, 0.885, 0.32, 1));
  }
}
.anim_zoomInRight {
  .animation-name(zoomInRight);
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    .animation-timing-function(cubic-bezier(0.55, 0.055, 0.675, 0.19));
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    .animation-timing-function(cubic-bezier(0.175, 0.885, 0.32, 1));
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    .animation-timing-function(cubic-bezier(0.55, 0.055, 0.675, 0.19));
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    .animation-timing-function(cubic-bezier(0.175, 0.885, 0.32, 1));
  }
}
.anim_zoomInUp {
  .animation-name(zoomInUp);
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.anim_zoomOut {
  .animation-name(zoomOut);
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    .animation-timing-function(cubic-bezier(0.55, 0.055, 0.675, 0.19));
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    .animation-timing-function(cubic-bezier(0.175, 0.885, 0.32, 1));
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    .animation-timing-function(cubic-bezier(0.55, 0.055, 0.675, 0.19));
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    .animation-timing-function(cubic-bezier(0.175, 0.885, 0.32, 1));
  }
}
.anim_zoomOutDown {
  .animation-name(zoomOutDown);
  .transform-origin(center bottom);
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.anim_zoomOutLeft {
  .animation-name(zoomOutLeft);
  .transform-origin(left center);
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.anim_zoomOutRight {
  .animation-name(zoomOutRight);
  .transform-origin(right center);
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    .animation-timing-function(cubic-bezier(0.55, 0.055, 0.675, 0.19));
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    .animation-timing-function(cubic-bezier(0.175, 0.885, 0.32, 1));
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    .animation-timing-function(cubic-bezier(0.55, 0.055, 0.675, 0.19));
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    .animation-timing-function(cubic-bezier(0.175, 0.885, 0.32, 1));
  }
}
.anim_zoomOutUp {
  .animation-name(zoomOutUp);
  .transform-origin(center bottom);
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.anim_slideInDown {
  .animation-name(slideInDown);
}
@-webkit-keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.anim_slideInLeft {
  .animation-name(slideInLeft);
}
@-webkit-keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.anim_slideInRight {
  .animation-name(slideInRight);
}
@-webkit-keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.anim_slideInUp {
  .animation-name(slideInUp);
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.anim_slideOutDown {
  .animation-name(slideOutDown);
}
@-webkit-keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.anim_slideOutLeft {
  .animation-name(slideOutLeft);
}
@-webkit-keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.anim_slideOutRight {
  .animation-name(slideOutRight);
}
@-webkit-keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.anim_slideOutUp {
  .animation-name(slideOutUp);
}
// 
// 
// 
//
// Navbars
// --------------------------------------------------

.navbar {
  position: relative;
  min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)
  margin-bottom: @navbar-margin-bottom;
  border: 1px solid transparent;
  // Prevent floats from breaking the navbar
  &:extend(.clearfix all);
  @media (min-width: @grid-float-breakpoint) {border-radius: @navbar-border-radius; }
}

.navbar-fixed-top, .navbar-fixed-bottom {
  .navbar-collapse {
    max-height: @navbar-collapse-max-height;
    @media (max-device-width: @screen-xs-min) and (orientation: landscape) {
      max-height: 200px;
    }
  }
}

// Barre fixe
.navbar-fixed-top, .navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: @zindex-navbar-fixed;
  @media (min-width: @grid-float-breakpoint) { border-radius: 0; }
}

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0; // override .navbar defauts
  border-width: 1px 0 0;
}

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: @navbar-padding-horizontal;
  background-color: transparent;
  background-image: none; // Reset unusual Firefox-on-Android defaut style; see https://github.com/necolas/normalize.css/bootstrapleger/issues/214
  border: 1px solid transparent;
  border-radius: @border-radius-base;

  // We remove the `outline` here, but later compensate by attaching `:hover`
  &:focus {outline: 0; }
  @media (min-width: @grid-float-breakpoint) { display: none; }
}

// Component alignment
@media (min-width: @grid-float-breakpoint) {
  .navbar-left  { float: left; }
  .navbar-right {
    float:right;
    margin-right: -@navbar-padding-horizontal;
    ~ .navbar-right {margin-right: 0; }
  }
}

@media (max-width: @grid-float-breakpoint-max) {
  .navbar-responsive {
    position: absolute;
    top:0;
    right: 20px;
    .navbar-inner {
      background: transparent;
      .box-shadow(none);
      border: none;
      .nav-collapse {background-color: @navbar-defaut-bg;}
    }
    &.navbar-inverse .navbar-inner .nav-collapse {background-color: @navbar-inverse-bg;}
  }
}

// ------ COULEURS ------

.navbar-default {
  background-color: 									@navbar-defaut-bg;
  border-color: 													@navbar-defaut-border;
}

.navbar-nav > li > a {color: 	@navbar-defaut-link-color; }
.navbar-toggle {
  &:hover,&:focus {
  	background-color: @navbar-defaut-toggle-hover-bg;
  }
  svg { fill: #fff; }
  a:focus, a:focus {
  	outline: none;
  	color: @couleur-defaut;
  	svg {
  		fill:@couleur-defaut;
  	}
  }
}
//
// Pagination (multiple pages)
// --------------------------------------------------
.pagination {
	border-top: 1px solid @gris;
	padding-top: 1em;
	margin-top: 1.6em;
	ul {
	  margin: @line-height-computed 0;
	  padding: 0;
	  .centrerflex;
		.active  {
			span, strong {
				background-color: @couleur-defaut;
				border-color: @couleur-defaut;
				color: #fff;
			}
		}

	  > li {
	    display: inline; // Remove list-style and block-level defauts
	    > a, > span, > strong {position: relative;
	      border: 1px solid @pagination-border;
	      margin-left: -1px;
				height: 2em;
				min-width: 2em;
				font-size: 1.3em;
				.centrerflex;
				&:hover {
					transition: .5s all;
					background-color: @couleur-defaut;
					border-color: @couleur-defaut;
					color: #fff;
				}
	    }
	    &:first-child {
	      > a, > span, > strong {
	        margin-left: 0;
	        .border-left-radius(@border-radius-base);
	      }
	    }
	    &:last-child {
	      > a, > span, > strong {
	        .border-right-radius(@border-radius-base);
	      }
	    }
	  }

	  > li > a, > li > span, > strong {
	    &:hover,
	    &:focus {
	      z-index: 2;
	      color: @pagination-hover-color;
	      background-color: @pagination-hover-bg;
	      border-color: @pagination-hover-border;
	    }
	  }

	  > .active > a, > .active > span, > .active strong {
	    &, &:hover, &:focus {
	      z-index: 3;
	      color: @pagination-active-color;
	      background-color: @pagination-active-bg;
	      border-color: @pagination-active-border;
	      cursor: defaut;
	    }
	  }

	  > .disabled {
	    > span,
	    > span:hover,
	    > span:focus,
	    > strong,
	    > strong:hover,
	    > strong:focus,
	    > a,
	    > a:hover,
	    > a:focus {
	      color: @pagination-disabled-color;
	      background-color: @pagination-disabled-bg;
	      border-color: @pagination-disabled-border;
	      cursor: @cursor-disabled;
	    }
	  }
	}
	.pagination-label {display: inline-block; }
	.label {
	  float: left;
	  color: inherit;
	  background: transparent;
	  text-shadow: none;
	  padding: 4px;
	  line-height: @line-height-base;
	}
  .page {
  	padding-top: 0;
  	margin-top: 0;
  	margin-bottom: 0;
		background: #fff;
  }

  //  Encore utile ?
	// .pages {
	// 	font-size: 1.1em;
	// 	strong, a {
	// 		height: 2.5em;
	// 		display: inline-block;
	// 		overflow: hidden;
	// 		text-align: center;
	// 		padding: 0.7em 0;
	// 		max-width: 3em;
	// 		text-align: center;
	// 		vertical-align: middle;
	// 		line-height: 1.1;
	// 		padding: .3em;
	// 		border: .4em solid #fff;
	// 	}

	// 	.sep{
	// 		width: 1em;
	// 		line-height: .9;
	// 		margin-bottom: 0.2em;
	// 		padding: 0.6em;
	// 		font-weight: 200;
	// 		height: 2.1em;
	// 	}
	// 	.sep, .page, .next, .prev, > span {
	// 		vertical-align: middle;
	// 		display: inline-block;
	// 	}
	// 	.disabled { color: @gris; }
	// 	.active strong {
	// 		color: @pagination-color;
	// 		font-weight: 700;
	// 	}
	// 	a {
	// 		transition: .5s all;
	// 		border-radius: 50%;
	// 	}
	// 	.next, .prev{
	// 		font-size: 1.3em;
	// 		line-height: 1;
	// 	}
	// }

}

.pagination-mini .pagination-label,
.pagination-small .pagination-label {position: absolute; left: -999em; height: 1%; }

/* tri, analogue a pagination mais avec des boutons de tri dedans */
// .tri {
//   display: block;
//   margin: @line-height-computed 0;
// }
// 
// 
// 
// 
//
// Messages pour formulaires
// --------------------------------------------------

.message {
  padding: @alert-padding;
  margin-bottom: @line-height-computed;
  border: 1px solid transparent;
  border-radius: @alert-border-radius;
  line-height: 1.6em;

  h4 {
    margin-top: 0;
    color: inherit;
  }
  a {
  	font-weight: @alert-link-font-weight;
  	&:hover { text-decoration: underline; }
  }
  > p, > ul { 	margin-bottom: 0; }
 	> p + p { 		margin-top: .5em; }
	p:last-of-type { margin-bottom: 0; }

}

// Alerts

.message-couleur(@background; @border; @text-color) {
  background-color: @background;
  border-color: @border;
  color: @text-color;
  // Parce que parfois mis sur un table-row, (ds panier par ex.) on annule le display:block;
  // display: block;
  overflow: hidden;
  min-width: 10%;
  hr {border-top-color: darken(@border, 5%); }
  a {color: darken(@text-color, 10%); }
}

// Message avec une coroix pour le fermer

.message-croix {
  padding-right: (@alert-padding + 20);

  // Adjust close link position
  .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
  }
}

// couleur

.message-vert {
  .message-couleur(@alert-vert-bg; @alert-vert-border; @alert-vert-text);
}

.message-jaune {
  .message-couleur(@alert-jaune-bg; @alert-jaune-border; @alert-jaune-text);
}

.message-orange {
  .message-couleur(@alert-orange-bg; @alert-orange-border; @alert-orange-text);
}

.message-rouge {
  .message-couleur(@alert-rouge-bg; @alert-rouge-border; @alert-rouge-text);
}

.info {.message; .message-jaune;}
.success {.message; .message-vert;}
.orange {.message; .message-orange;}
.error {.message;.message-rouge}
// 
// 
//
// Responsive: Utility classes
// --------------------------------------------------


// IE10 in Windows (Phone) 8
//
// Support for responsive views via media queries is kind of borked in IE10, for
// Surface/desktop in split view and for Windows Phone 8. This particular fix
// must be accompanied by a snippet of JavaScript to sniff the user agent and
// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at
// our Getting Started page for more information on this bug.
//
// For more information, see the following:
//
// Issue: https://github.com/twbs/bootstrap/issues/10497
// Docs: http://getbootstrap.com/getting-started/#support-ie10-width
// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/
// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/

.responsive-visibility() {
  display: block !important;
  table&  { display: table !important; }
  tr&     { display: table-row !important; }
  th&,
  td&     { display: table-cell !important; }
}

@-ms-viewport {
  width: device-width;
}


// Visibility utilities
// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
   display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

.visible-xs {
  @media (max-width: @screen-xs-max) {
    .responsive-visibility();
  }
}
.visible-xs-block {
  @media (max-width: @screen-xs-max) {
    display: block !important;
  }
}
.visible-xs-inline {
  @media (max-width: @screen-xs-max) {
    display: inline !important;
  }
}
.visible-xs-inline-block {
  @media (max-width: @screen-xs-max) {
    display: inline-block !important;
  }
}

.visible-sm {
  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
    .responsive-visibility();
  }
}
.visible-sm-block {
  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
    display: block !important;
  }
}
.visible-sm-inline {
  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
    display: inline !important;
  }
}
.visible-sm-inline-block {
  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
    display: inline-block !important;
  }
}

.visible-md {
  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
    .responsive-visibility();
  }
}
.visible-md-block {
  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
    display: block !important;
  }
}
.visible-md-inline {
  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
    display: inline !important;
  }
}
.visible-md-inline-block {
  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
    display: inline-block !important;
  }
}

.visible-lg {
  @media (min-width: @screen-lg-min) {
    .responsive-visibility();
  }
}
.visible-lg-block {
  @media (min-width: @screen-lg-min) {
    display: block !important;
  }
}
.visible-lg-inline {
  @media (min-width: @screen-lg-min) {
    display: inline !important;
  }
}
.visible-lg-inline-block {
  @media (min-width: @screen-lg-min) {
    display: inline-block !important;
  }
}

.cache-xs, .hidden-xs {
  @media (max-width: @screen-xs-max) {
     display: none !important;
  }
}
.cache-sm, .hidden-sm {
  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
     display: none !important;
  }
}
.cache-md, .hidden-md {
  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
     display: none !important;
  }
}
.cache-lg, .hidden-lg {
  @media (min-width: @screen-lg-min) {
     display: none !important;
  }
}


// Print utilities
//
// Media queries are placed on the inside to be mixin-friendly.

// Note: Deprecated .visible-print as of v3.2.0
.visible-print {
   display: none !important;

  @media print {
    .responsive-visibility();
  }
}
.visible-print-block {
  display: none !important;

  @media print {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;

  @media print {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;

  @media print {
    display: inline-block !important;
  }
}

.cache-print, .hidden-print {
  @media print {
     display: none !important;
  }
}
// Embeds responsive
//
// Credit: Nicolas Gallagher and SUIT CSS.

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;

  .embed-responsive-item,
  iframe,
  embed,
  object,
  video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0;
  }
}

// Modifier class for 16:9 aspect ratio
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

// Modifier class for 4:3 aspect ratio
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
// 

// Components w/ JavaScript
// 
// 
// 
//
// Carousel
// --------------------------------------------------


// Wrapper for the slide container and indicators
.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;

  > .item {
    display: none;
    position: relative;
    .transition(.6s ease-in-out left);

    // Account for jankitude on images
    > img,
    > a > img {
      &:extend(.img-responsive);
      line-height: 1;
    }

    // WebKit CSS3 transforms for supported devices
    @media all and (transform-3d), (-webkit-transform-3d) {
      .transition-transform(~'0.6s ease-in-out');
      .backface-visibility(~'hidden');
      .perspective(1000px);

      &.next,
      &.active.right {
        .translate3d(100%, 0, 0);
        left: 0;
      }
      &.prev,
      &.active.left {
        .translate3d(-100%, 0, 0);
        left: 0;
      }
      &.next.left,
      &.prev.right,
      &.active {
        .translate3d(0, 0, 0);
        left: 0;
      }
    }
  }

  > .active,
  > .next,
  > .prev {
    display: block;
  }

  > .active {
    left: 0;
  }

  > .next,
  > .prev {
    position: absolute;
    top: 0;
    width: 100%;
  }

  > .next {
    left: 100%;
  }
  > .prev {
    left: -100%;
  }
  > .next.left,
  > .prev.right {
    left: 0;
  }

  > .active.left {
    left: -100%;
  }
  > .active.right {
    left: 100%;
  }

}

// Left/right controls for nav
// ---------------------------

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: @carousel-control-width;
  .opacity(@carousel-control-opacity);
  font-size: @carousel-control-font-size;
  color: @carousel-control-color;
  text-align: center;
  text-shadow: @carousel-text-shadow;
  background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug
  // We can't have this transition here because WebKit cancels the carousel
  // animation if you trip this while in the middle of another animation.

  &.right {
    left: auto;
    right: 0;
  }

  // Hover/focus state
  &:hover,
  &:focus {
    outline: 0;
    color: @carousel-control-color;
    text-decoration: none;
    .opacity(.9);
  }

  // Toggles
  .icon-prev,
  .icon-next,
  .glyphicon-chevron-left,
  .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block;
  }
  .icon-prev,
  .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px;
  }
  .icon-next,
  .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px;
  }
  .icon-prev,
  .icon-next {
    width:  20px;
    height: 20px;
    line-height: 1;
    font-family: serif;
  }


  .icon-prev {
    &:before {
      content: '\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)
    }
  }
  .icon-next {
    &:before {
      content: '\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)
    }
  }
}

// Optional indicator pips
//
// Add an unordered list with the following class and add a list item for each
// slide your carousel holds.

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;

  li {
    display: inline-block;
    width:  10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid @carousel-indicator-border-color;
    border-radius: 10px;
    cursor: pointer;

    // IE8-9 hack for event handling
    //
    // Internet Explorer 8-9 does not support clicks on elements without a set
    // `background-color`. We cannot use `filter` since that's not viewed as a
    // background color by the browser. Thus, a hack is needed.
    // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer
    //
    // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we
    // set alpha transparency for the best results possible.
    background-color: #000 \9; // IE8
    background-color: rgba(0,0,0,0); // IE9
  }
  .active {
    margin: 0;
    width:  12px;
    height: 12px;
    background-color: @carousel-indicator-active-bg;
  }
}

// Optional captions
// -----------------------------
// Hidden by defaut for smaller viewports
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: @carousel-caption-color;
  text-align: center;
  text-shadow: @carousel-text-shadow;
  & .btn {
    text-shadow: none; // No shadow for button elements in carousel-caption
  }
}


// Scale up controls for tablets and up
@media screen and (min-width: @screen-sm-min) {

  // Scale up the controls a smidge
  .carousel-control {
    .glyphicon-chevron-left,
    .glyphicon-chevron-right,
    .icon-prev,
    .icon-next {
      width: (@carousel-control-font-size * 1.5);
      height: (@carousel-control-font-size * 1.5);
      margin-top: (@carousel-control-font-size / -2);
      font-size: (@carousel-control-font-size * 1.5);
    }
    .glyphicon-chevron-left,
    .icon-prev {
      margin-left: (@carousel-control-font-size / -2);
    }
    .glyphicon-chevron-right,
    .icon-next {
      margin-right: (@carousel-control-font-size / -2);
    }
  }

  // Show and left align the captions
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }

  // Move up the indicators
  .carousel-indicators {
    bottom: 20px;
  }
}

// Utility classes