.autocomplete-suggestions {
    text-align: left; cursor: default; border: 1px solid #ccc; border-top: 0; background: #fff; box-shadow: -1px 1px 3px rgba(0,0,0,.1);

    /* core styles should not be changed */
    position: absolute; display: none; z-index: 9999; max-height: 254px; overflow: hidden; overflow-y: auto; box-sizing: border-box;
}
.autocomplete-suggestion { position: relative; padding: 0 .6em; line-height: 23px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 1.02em; color: #333; }
.autocomplete-suggestion b { font-weight: normal; color: #1f8dd6; }
.autocomplete-suggestion.selected { background: #f0f0f0; }
/*-------------------------------------*\
	HINT.css - A CSS tooltip library
\*-------------------------------------*/
/**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/lab/hint/
 *
 * Release under The MIT License
 *
 */
/**
 * source: hint-core.scss
 *
 * Defines the basic styling for the tooltip.
 * Each tooltip is made of 2 parts:
 * 	1) body (:after)
 * 	2) arrow (:before)
 *
 * Classes added:
 * 	1) hint
 */
/* line 13, ../../../../sass/common/ext/hint.css/hint-core.scss */
.hint, [data-hint] {
    position: relative;
    display: inline-block;
    /**
     * tooltip arrow
     */
    /**
     * tooltip body
     */
}
/* line 17, ../../../../sass/common/ext/hint.css/hint-core.scss */
.hint:before, .hint:after, [data-hint]:before, [data-hint]:after {
    position: absolute;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: hidden;
    opacity: 0;
    z-index: 1000000;
    pointer-events: none;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    transition: 0.3s ease;
}
/* line 40, ../../../../sass/common/ext/hint.css/hint-core.scss */
.hint:hover:before, .hint:hover:after, .hint:focus:before, .hint:focus:after, [data-hint]:hover:before, [data-hint]:hover:after, [data-hint]:focus:before, [data-hint]:focus:after {
    visibility: visible;
    opacity: 1;
}
/* line 49, ../../../../sass/common/ext/hint.css/hint-core.scss */
.hint:before, [data-hint]:before {
    content: '';
    position: absolute;
    background: transparent;
    border: 6px solid transparent;
    z-index: 1000001;
}
/* line 61, ../../../../sass/common/ext/hint.css/hint-core.scss */
.hint:after, [data-hint]:after {
    content: attr(data-hint);
    background: #383838;
    color: white;
    text-shadow: 0 -1px 0px black;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 12px;
    white-space: nowrap;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

/**
 * source: hint-position.scss
 *
 * Defines the positoning logic for the tooltips.
 *
 * Classes added:
 * 	1) hint--top
 * 	2) hint--bottom
 * 	3) hint--left
 * 	4) hint--right
 */
/**
 * set default color for tooltip arrows
 */
/* line 16, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--top:before {
    border-top-color: #383838;
}

/* line 16, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--bottom:before {
    border-bottom-color: #383838;
}

/* line 16, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--left:before {
    border-left-color: #383838;
}

/* line 16, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--right:before {
    border-right-color: #383838;
}

/**
 * top tooltip
 */
/* line 14, ../../../../sass/common/ext/hint.css/hint-position.scss */
.hint--top:before {
    margin-bottom: -12px;
}
/* line 19, ../../../../sass/common/ext/hint.css/hint-position.scss */
.hint--top:after {
    margin-left: -18px;
}
/* line 24, ../../../../sass/common/ext/hint.css/hint-position.scss */
.hint--top:before, .hint--top:after {
    bottom: 100%;
    left: 50%;
}
/* line 27, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--top:hover:after, .hint--top:hover:before, .hint--top:focus:after, .hint--top:focus:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

/**
 * bottom tooltip
 */
/* line 14, ../../../../sass/common/ext/hint.css/hint-position.scss */
.hint--bottom:before {
    margin-top: -12px;
}
/* line 19, ../../../../sass/common/ext/hint.css/hint-position.scss */
.hint--bottom:after {
    margin-left: -18px;
}
/* line 24, ../../../../sass/common/ext/hint.css/hint-position.scss */
.hint--bottom:before, .hint--bottom:after {
    top: 100%;
    left: 50%;
}
/* line 27, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--bottom:hover:after, .hint--bottom:hover:before, .hint--bottom:focus:after, .hint--bottom:focus:before {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px);
}

/**
 * right tooltip
 */
/* line 35, ../../../../sass/common/ext/hint.css/hint-position.scss */
.hint--right:before {
    margin-left: -12px;
    margin-bottom: -6px;
}
/* line 42, ../../../../sass/common/ext/hint.css/hint-position.scss */
.hint--right:after {
    margin-bottom: -14px;
}
/* line 47, ../../../../sass/common/ext/hint.css/hint-position.scss */
.hint--right:before, .hint--right:after {
    left: 100%;
    bottom: 50%;
}
/* line 27, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--right:hover:after, .hint--right:hover:before, .hint--right:focus:after, .hint--right:focus:before {
    -webkit-transform: translateX(8px);
    -moz-transform: translateX(8px);
    transform: translateX(8px);
}

/**
 * left tooltip
 */
/* line 35, ../../../../sass/common/ext/hint.css/hint-position.scss */
.hint--left:before {
    margin-right: -12px;
    margin-bottom: -6px;
}
/* line 42, ../../../../sass/common/ext/hint.css/hint-position.scss */
.hint--left:after {
    margin-bottom: -14px;
}
/* line 47, ../../../../sass/common/ext/hint.css/hint-position.scss */
.hint--left:before, .hint--left:after {
    right: 100%;
    bottom: 50%;
}
/* line 27, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--left:hover:after, .hint--left:hover:before, .hint--left:focus:after, .hint--left:focus:before {
    -webkit-transform: translateX(-8px);
    -moz-transform: translateX(-8px);
    transform: translateX(-8px);
}

/**
 * source: hint-color-types.scss
 *
 * Contains tooltips of various types based on color differences.
 *
 * Classes added:
 * 	1) hint--error
 * 	2) hint--warning
 * 	3) hint--info
 * 	4) hint--success
 *
 */
/**
 * Error
 */
/* line 17, ../../../../sass/common/ext/hint.css/hint-color-types.scss */
.hint--error:after {
    background-color: #b34e4d;
    text-shadow: 0 -1px 0px #592726;
}
/* line 11, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--error.hint--top:before {
    border-top-color: #b34e4d;
}
/* line 11, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--error.hint--bottom:before {
    border-bottom-color: #b34e4d;
}
/* line 11, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--error.hint--left:before {
    border-left-color: #b34e4d;
}
/* line 11, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--error.hint--right:before {
    border-right-color: #b34e4d;
}

/**
 * Warning
 */
/* line 17, ../../../../sass/common/ext/hint.css/hint-color-types.scss */
.hint--warning:after {
    background-color: #c09854;
    text-shadow: 0 -1px 0px #6c5328;
}
/* line 11, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--warning.hint--top:before {
    border-top-color: #c09854;
}
/* line 11, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--warning.hint--bottom:before {
    border-bottom-color: #c09854;
}
/* line 11, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--warning.hint--left:before {
    border-left-color: #c09854;
}
/* line 11, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--warning.hint--right:before {
    border-right-color: #c09854;
}

/**
 * Info
 */
/* line 17, ../../../../sass/common/ext/hint.css/hint-color-types.scss */
.hint--info:after {
    background-color: #3986ac;
    text-shadow: 0 -1px 0px #193b4d;
}
/* line 11, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--info.hint--top:before {
    border-top-color: #3986ac;
}
/* line 11, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--info.hint--bottom:before {
    border-bottom-color: #3986ac;
}
/* line 11, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--info.hint--left:before {
    border-left-color: #3986ac;
}
/* line 11, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--info.hint--right:before {
    border-right-color: #3986ac;
}

/**
 * Success
 */
/* line 17, ../../../../sass/common/ext/hint.css/hint-color-types.scss */
.hint--success:after {
    background-color: #458746;
    text-shadow: 0 -1px 0px #1a321a;
}
/* line 11, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--success.hint--top:before {
    border-top-color: #458746;
}
/* line 11, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--success.hint--bottom:before {
    border-bottom-color: #458746;
}
/* line 11, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--success.hint--left:before {
    border-left-color: #458746;
}
/* line 11, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--success.hint--right:before {
    border-right-color: #458746;
}

/**
 * source: hint-always.scss
 *
 * Defines a persisted tooltip which shows always.
 *
 * Classes added:
 * 	1) hint--always
 *
 */
/* line 12, ../../../../sass/common/ext/hint.css/hint-always.scss */
.hint--always:after, .hint--always:before {
    opacity: 1;
    visibility: visible;
}
/* line 27, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--always.hint--top:after, .hint--always.hint--top:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}
/* line 27, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--always.hint--bottom:after, .hint--always.hint--bottom:before {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px);
}
/* line 27, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--always.hint--left:after, .hint--always.hint--left:before {
    -webkit-transform: translateX(-8px);
    -moz-transform: translateX(-8px);
    transform: translateX(-8px);
}
/* line 27, ../../../../sass/common/ext/hint.css/hint-mixins.scss */
.hint--always.hint--right:after, .hint--always.hint--right:before {
    -webkit-transform: translateX(8px);
    -moz-transform: translateX(8px);
    transform: translateX(8px);
}

/**
 * source: hint-rounded.scss
 *
 * Defines rounded corner tooltips.
 *
 * Classes added:
 * 	1) hint--rounded
 *
 */
/* line 12, ../../../../sass/common/ext/hint.css/hint-rounded.scss */
.hint--rounded:after {
    border-radius: 4px;
}

/**
 * source: hint-effects.scss
 *
 * Defines various transition effects for the tooltips.
 *
 * Classes added:
 * 	1) hint--bounce
 *
 */
/* line 12, ../../../../sass/common/ext/hint.css/hint-effects.scss */
.hint--bounce:before, .hint--bounce:after {
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition: opacity 0.3s ease, visibility 0.3s ease, -moz-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}
@charset "UTF-8";
/* *** All variables belong to these files ** */
/* Global */
/* Menu */
/* tabs */
/* lists */
/* *** All variables belong to these files ** */
/* Global */
/* Menu */
/* tabs */
/* lists */
/* list / header blocs (filter / actions)  */
/* list / button */
/* modal */
/* detail */
/* form */
/* subtotals */
/* Headers */
/* Status */
/* Actions / buttons */
/*!
 * Font Awesome Free 5.5.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
/* line 4, ../../../sass/common/ext/fontawesome/_core.scss */
.fa,
.fas,
.far,
.fal,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

/* line 5, ../../../sass/common/ext/fontawesome/_larger.scss */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em;
}

/* line 11, ../../../sass/common/ext/fontawesome/_larger.scss */
.fa-xs {
  font-size: .75em;
}

/* line 15, ../../../sass/common/ext/fontawesome/_larger.scss */
.fa-sm {
  font-size: .875em;
}

/* line 20, ../../../sass/common/ext/fontawesome/_larger.scss */
.fa-1x {
  font-size: 1em;
}

/* line 20, ../../../sass/common/ext/fontawesome/_larger.scss */
.fa-2x {
  font-size: 2em;
}

/* line 20, ../../../sass/common/ext/fontawesome/_larger.scss */
.fa-3x {
  font-size: 3em;
}

/* line 20, ../../../sass/common/ext/fontawesome/_larger.scss */
.fa-4x {
  font-size: 4em;
}

/* line 20, ../../../sass/common/ext/fontawesome/_larger.scss */
.fa-5x {
  font-size: 5em;
}

/* line 20, ../../../sass/common/ext/fontawesome/_larger.scss */
.fa-6x {
  font-size: 6em;
}

/* line 20, ../../../sass/common/ext/fontawesome/_larger.scss */
.fa-7x {
  font-size: 7em;
}

/* line 20, ../../../sass/common/ext/fontawesome/_larger.scss */
.fa-8x {
  font-size: 8em;
}

/* line 20, ../../../sass/common/ext/fontawesome/_larger.scss */
.fa-9x {
  font-size: 9em;
}

/* line 20, ../../../sass/common/ext/fontawesome/_larger.scss */
.fa-10x {
  font-size: 10em;
}

/* line 3, ../../../sass/common/ext/fontawesome/_fixed-width.scss */
.fa-fw {
  text-align: center;
  width: 1.25em;
}

/* line 4, ../../../sass/common/ext/fontawesome/_list.scss */
.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
/* line 9, ../../../sass/common/ext/fontawesome/_list.scss */
.fa-ul > li {
  position: relative;
}

/* line 12, ../../../sass/common/ext/fontawesome/_list.scss */
.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

/* line 4, ../../../sass/common/ext/fontawesome/_bordered-pulled.scss */
.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em;
}

/* line 10, ../../../sass/common/ext/fontawesome/_bordered-pulled.scss */
.fa-pull-left {
  float: left;
}

/* line 11, ../../../sass/common/ext/fontawesome/_bordered-pulled.scss */
.fa-pull-right {
  float: right;
}

/* line 18, ../../../sass/common/ext/fontawesome/_bordered-pulled.scss */
.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em;
}
/* line 19, ../../../sass/common/ext/fontawesome/_bordered-pulled.scss */
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em;
}

/* line 4, ../../../sass/common/ext/fontawesome/_animated.scss */
.fa-spin {
  animation: fa-spin 2s infinite linear;
}

/* line 8, ../../../sass/common/ext/fontawesome/_animated.scss */
.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* line 4, ../../../sass/common/ext/fontawesome/_rotated-flipped.scss */
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

/* line 5, ../../../sass/common/ext/fontawesome/_rotated-flipped.scss */
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

/* line 6, ../../../sass/common/ext/fontawesome/_rotated-flipped.scss */
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

/* line 8, ../../../sass/common/ext/fontawesome/_rotated-flipped.scss */
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

/* line 9, ../../../sass/common/ext/fontawesome/_rotated-flipped.scss */
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

/* line 10, ../../../sass/common/ext/fontawesome/_rotated-flipped.scss */
.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

/* line 16, ../../../sass/common/ext/fontawesome/_rotated-flipped.scss */
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

/* line 4, ../../../sass/common/ext/fontawesome/_stacked.scss */
.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

/* line 13, ../../../sass/common/ext/fontawesome/_stacked.scss */
.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

/* line 21, ../../../sass/common/ext/fontawesome/_stacked.scss */
.fa-stack-1x {
  line-height: inherit;
}

/* line 25, ../../../sass/common/ext/fontawesome/_stacked.scss */
.fa-stack-2x {
  font-size: 2em;
}

/* line 29, ../../../sass/common/ext/fontawesome/_stacked.scss */
.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
/* line 4, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-500px:before {
  content: "\f26e";
}

/* line 5, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-accessible-icon:before {
  content: "\f368";
}

/* line 6, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-accusoft:before {
  content: "\f369";
}

/* line 7, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

/* line 8, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ad:before {
  content: "\f641";
}

/* line 9, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-address-book:before {
  content: "\f2b9";
}

/* line 10, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-address-card:before {
  content: "\f2bb";
}

/* line 11, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-adjust:before {
  content: "\f042";
}

/* line 12, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-adn:before {
  content: "\f170";
}

/* line 13, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-adversal:before {
  content: "\f36a";
}

/* line 14, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-affiliatetheme:before {
  content: "\f36b";
}

/* line 15, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-air-freshener:before {
  content: "\f5d0";
}

/* line 16, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-algolia:before {
  content: "\f36c";
}

/* line 17, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-align-center:before {
  content: "\f037";
}

/* line 18, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-align-justify:before {
  content: "\f039";
}

/* line 19, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-align-left:before {
  content: "\f036";
}

/* line 20, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-align-right:before {
  content: "\f038";
}

/* line 21, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-alipay:before {
  content: "\f642";
}

/* line 22, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-allergies:before {
  content: "\f461";
}

/* line 23, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-amazon:before {
  content: "\f270";
}

/* line 24, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-amazon-pay:before {
  content: "\f42c";
}

/* line 25, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ambulance:before {
  content: "\f0f9";
}

/* line 26, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

/* line 27, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-amilia:before {
  content: "\f36d";
}

/* line 28, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-anchor:before {
  content: "\f13d";
}

/* line 29, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-android:before {
  content: "\f17b";
}

/* line 30, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-angellist:before {
  content: "\f209";
}

/* line 31, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-angle-double-down:before {
  content: "\f103";
}

/* line 32, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-angle-double-left:before {
  content: "\f100";
}

/* line 33, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-angle-double-right:before {
  content: "\f101";
}

/* line 34, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-angle-double-up:before {
  content: "\f102";
}

/* line 35, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-angle-down:before {
  content: "\f107";
}

/* line 36, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-angle-left:before {
  content: "\f104";
}

/* line 37, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-angle-right:before {
  content: "\f105";
}

/* line 38, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-angle-up:before {
  content: "\f106";
}

/* line 39, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-angry:before {
  content: "\f556";
}

/* line 40, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-angrycreative:before {
  content: "\f36e";
}

/* line 41, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-angular:before {
  content: "\f420";
}

/* line 42, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ankh:before {
  content: "\f644";
}

/* line 43, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-app-store:before {
  content: "\f36f";
}

/* line 44, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-app-store-ios:before {
  content: "\f370";
}

/* line 45, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-apper:before {
  content: "\f371";
}

/* line 46, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-apple:before {
  content: "\f179";
}

/* line 47, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-apple-alt:before {
  content: "\f5d1";
}

/* line 48, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-apple-pay:before {
  content: "\f415";
}

/* line 49, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-archive:before {
  content: "\f187";
}

/* line 50, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-archway:before {
  content: "\f557";
}

/* line 51, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

/* line 52, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

/* line 53, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

/* line 54, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

/* line 55, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-arrow-circle-down:before {
  content: "\f0ab";
}

/* line 56, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-arrow-circle-left:before {
  content: "\f0a8";
}

/* line 57, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-arrow-circle-right:before {
  content: "\f0a9";
}

/* line 58, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-arrow-circle-up:before {
  content: "\f0aa";
}

/* line 59, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-arrow-down:before {
  content: "\f063";
}

/* line 60, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-arrow-left:before {
  content: "\f060";
}

/* line 61, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-arrow-right:before {
  content: "\f061";
}

/* line 62, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-arrow-up:before {
  content: "\f062";
}

/* line 63, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-arrows-alt:before {
  content: "\f0b2";
}

/* line 64, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-arrows-alt-h:before {
  content: "\f337";
}

/* line 65, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-arrows-alt-v:before {
  content: "\f338";
}

/* line 66, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

/* line 67, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-asterisk:before {
  content: "\f069";
}

/* line 68, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-asymmetrik:before {
  content: "\f372";
}

/* line 69, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-at:before {
  content: "\f1fa";
}

/* line 70, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-atlas:before {
  content: "\f558";
}

/* line 71, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-atom:before {
  content: "\f5d2";
}

/* line 72, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-audible:before {
  content: "\f373";
}

/* line 73, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-audio-description:before {
  content: "\f29e";
}

/* line 74, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-autoprefixer:before {
  content: "\f41c";
}

/* line 75, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-avianex:before {
  content: "\f374";
}

/* line 76, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-aviato:before {
  content: "\f421";
}

/* line 77, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-award:before {
  content: "\f559";
}

/* line 78, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-aws:before {
  content: "\f375";
}

/* line 79, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-backspace:before {
  content: "\f55a";
}

/* line 80, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-backward:before {
  content: "\f04a";
}

/* line 81, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-balance-scale:before {
  content: "\f24e";
}

/* line 82, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ban:before {
  content: "\f05e";
}

/* line 83, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-band-aid:before {
  content: "\f462";
}

/* line 84, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bandcamp:before {
  content: "\f2d5";
}

/* line 85, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-barcode:before {
  content: "\f02a";
}

/* line 86, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bars:before {
  content: "\f0c9";
}

/* line 87, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-baseball-ball:before {
  content: "\f433";
}

/* line 88, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-basketball-ball:before {
  content: "\f434";
}

/* line 89, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bath:before {
  content: "\f2cd";
}

/* line 90, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-battery-empty:before {
  content: "\f244";
}

/* line 91, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-battery-full:before {
  content: "\f240";
}

/* line 92, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-battery-half:before {
  content: "\f242";
}

/* line 93, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-battery-quarter:before {
  content: "\f243";
}

/* line 94, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-battery-three-quarters:before {
  content: "\f241";
}

/* line 95, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bed:before {
  content: "\f236";
}

/* line 96, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-beer:before {
  content: "\f0fc";
}

/* line 97, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-behance:before {
  content: "\f1b4";
}

/* line 98, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-behance-square:before {
  content: "\f1b5";
}

/* line 99, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bell:before {
  content: "\f0f3";
}

/* line 100, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bell-slash:before {
  content: "\f1f6";
}

/* line 101, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bezier-curve:before {
  content: "\f55b";
}

/* line 102, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bible:before {
  content: "\f647";
}

/* line 103, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bicycle:before {
  content: "\f206";
}

/* line 104, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bimobject:before {
  content: "\f378";
}

/* line 105, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-binoculars:before {
  content: "\f1e5";
}

/* line 106, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-birthday-cake:before {
  content: "\f1fd";
}

/* line 107, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bitbucket:before {
  content: "\f171";
}

/* line 108, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bitcoin:before {
  content: "\f379";
}

/* line 109, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bity:before {
  content: "\f37a";
}

/* line 110, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-black-tie:before {
  content: "\f27e";
}

/* line 111, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-blackberry:before {
  content: "\f37b";
}

/* line 112, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-blender:before {
  content: "\f517";
}

/* line 113, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-blender-phone:before {
  content: "\f6b6";
}

/* line 114, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-blind:before {
  content: "\f29d";
}

/* line 115, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-blogger:before {
  content: "\f37c";
}

/* line 116, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-blogger-b:before {
  content: "\f37d";
}

/* line 117, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bluetooth:before {
  content: "\f293";
}

/* line 118, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bluetooth-b:before {
  content: "\f294";
}

/* line 119, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bold:before {
  content: "\f032";
}

/* line 120, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bolt:before {
  content: "\f0e7";
}

/* line 121, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bomb:before {
  content: "\f1e2";
}

/* line 122, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bone:before {
  content: "\f5d7";
}

/* line 123, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bong:before {
  content: "\f55c";
}

/* line 124, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-book:before {
  content: "\f02d";
}

/* line 125, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-book-dead:before {
  content: "\f6b7";
}

/* line 126, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-book-open:before {
  content: "\f518";
}

/* line 127, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-book-reader:before {
  content: "\f5da";
}

/* line 128, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bookmark:before {
  content: "\f02e";
}

/* line 129, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bowling-ball:before {
  content: "\f436";
}

/* line 130, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-box:before {
  content: "\f466";
}

/* line 131, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-box-open:before {
  content: "\f49e";
}

/* line 132, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-boxes:before {
  content: "\f468";
}

/* line 133, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-braille:before {
  content: "\f2a1";
}

/* line 134, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-brain:before {
  content: "\f5dc";
}

/* line 135, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-briefcase:before {
  content: "\f0b1";
}

/* line 136, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-briefcase-medical:before {
  content: "\f469";
}

/* line 137, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-broadcast-tower:before {
  content: "\f519";
}

/* line 138, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-broom:before {
  content: "\f51a";
}

/* line 139, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-brush:before {
  content: "\f55d";
}

/* line 140, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-btc:before {
  content: "\f15a";
}

/* line 141, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bug:before {
  content: "\f188";
}

/* line 142, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-building:before {
  content: "\f1ad";
}

/* line 143, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bullhorn:before {
  content: "\f0a1";
}

/* line 144, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bullseye:before {
  content: "\f140";
}

/* line 145, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-burn:before {
  content: "\f46a";
}

/* line 146, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-buromobelexperte:before {
  content: "\f37f";
}

/* line 147, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bus:before {
  content: "\f207";
}

/* line 148, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-bus-alt:before {
  content: "\f55e";
}

/* line 149, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-business-time:before {
  content: "\f64a";
}

/* line 150, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-buysellads:before {
  content: "\f20d";
}

/* line 151, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-calculator:before {
  content: "\f1ec";
}

/* line 152, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-calendar:before {
  content: "\f133";
}

/* line 153, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-calendar-alt:before {
  content: "\f073";
}

/* line 154, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-calendar-check:before {
  content: "\f274";
}

/* line 155, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-calendar-minus:before {
  content: "\f272";
}

/* line 156, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-calendar-plus:before {
  content: "\f271";
}

/* line 157, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-calendar-times:before {
  content: "\f273";
}

/* line 158, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-camera:before {
  content: "\f030";
}

/* line 159, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-camera-retro:before {
  content: "\f083";
}

/* line 160, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-campground:before {
  content: "\f6bb";
}

/* line 161, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cannabis:before {
  content: "\f55f";
}

/* line 162, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-capsules:before {
  content: "\f46b";
}

/* line 163, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-car:before {
  content: "\f1b9";
}

/* line 164, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-car-alt:before {
  content: "\f5de";
}

/* line 165, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-car-battery:before {
  content: "\f5df";
}

/* line 166, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-car-crash:before {
  content: "\f5e1";
}

/* line 167, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-car-side:before {
  content: "\f5e4";
}

/* line 168, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-caret-down:before {
  content: "\f0d7";
}

/* line 169, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-caret-left:before {
  content: "\f0d9";
}

/* line 170, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-caret-right:before {
  content: "\f0da";
}

/* line 171, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-caret-square-down:before {
  content: "\f150";
}

/* line 172, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-caret-square-left:before {
  content: "\f191";
}

/* line 173, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-caret-square-right:before {
  content: "\f152";
}

/* line 174, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-caret-square-up:before {
  content: "\f151";
}

/* line 175, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-caret-up:before {
  content: "\f0d8";
}

/* line 176, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cart-arrow-down:before {
  content: "\f218";
}

/* line 177, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cart-plus:before {
  content: "\f217";
}

/* line 178, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cat:before {
  content: "\f6be";
}

/* line 179, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cc-amazon-pay:before {
  content: "\f42d";
}

/* line 180, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cc-amex:before {
  content: "\f1f3";
}

/* line 181, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cc-apple-pay:before {
  content: "\f416";
}

/* line 182, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cc-diners-club:before {
  content: "\f24c";
}

/* line 183, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cc-discover:before {
  content: "\f1f2";
}

/* line 184, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cc-jcb:before {
  content: "\f24b";
}

/* line 185, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cc-mastercard:before {
  content: "\f1f1";
}

/* line 186, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cc-paypal:before {
  content: "\f1f4";
}

/* line 187, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cc-stripe:before {
  content: "\f1f5";
}

/* line 188, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cc-visa:before {
  content: "\f1f0";
}

/* line 189, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-centercode:before {
  content: "\f380";
}

/* line 190, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-certificate:before {
  content: "\f0a3";
}

/* line 191, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chair:before {
  content: "\f6c0";
}

/* line 192, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chalkboard:before {
  content: "\f51b";
}

/* line 193, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chalkboard-teacher:before {
  content: "\f51c";
}

/* line 194, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-charging-station:before {
  content: "\f5e7";
}

/* line 195, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chart-area:before {
  content: "\f1fe";
}

/* line 196, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chart-bar:before {
  content: "\f080";
}

/* line 197, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chart-line:before {
  content: "\f201";
}

/* line 198, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chart-pie:before {
  content: "\f200";
}

/* line 199, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-check:before {
  content: "\f00c";
}

/* line 200, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-check-circle:before {
  content: "\f058";
}

/* line 201, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-check-double:before {
  content: "\f560";
}

/* line 202, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-check-square:before {
  content: "\f14a";
}

/* line 203, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chess:before {
  content: "\f439";
}

/* line 204, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chess-bishop:before {
  content: "\f43a";
}

/* line 205, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chess-board:before {
  content: "\f43c";
}

/* line 206, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chess-king:before {
  content: "\f43f";
}

/* line 207, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chess-knight:before {
  content: "\f441";
}

/* line 208, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chess-pawn:before {
  content: "\f443";
}

/* line 209, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chess-queen:before {
  content: "\f445";
}

/* line 210, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chess-rook:before {
  content: "\f447";
}

/* line 211, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chevron-circle-down:before {
  content: "\f13a";
}

/* line 212, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chevron-circle-left:before {
  content: "\f137";
}

/* line 213, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chevron-circle-right:before {
  content: "\f138";
}

/* line 214, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chevron-circle-up:before {
  content: "\f139";
}

/* line 215, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chevron-down:before {
  content: "\f078";
}

/* line 216, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chevron-left:before {
  content: "\f053";
}

/* line 217, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chevron-right:before {
  content: "\f054";
}

/* line 218, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chevron-up:before {
  content: "\f077";
}

/* line 219, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-child:before {
  content: "\f1ae";
}

/* line 220, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-chrome:before {
  content: "\f268";
}

/* line 221, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-church:before {
  content: "\f51d";
}

/* line 222, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-circle:before {
  content: "\f111";
}

/* line 223, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-circle-notch:before {
  content: "\f1ce";
}

/* line 224, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-city:before {
  content: "\f64f";
}

/* line 225, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-clipboard:before {
  content: "\f328";
}

/* line 226, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-clipboard-check:before {
  content: "\f46c";
}

/* line 227, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-clipboard-list:before {
  content: "\f46d";
}

/* line 228, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-clock:before {
  content: "\f017";
}

/* line 229, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-clone:before {
  content: "\f24d";
}

/* line 230, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-closed-captioning:before {
  content: "\f20a";
}

/* line 231, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cloud:before {
  content: "\f0c2";
}

/* line 232, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cloud-download-alt:before {
  content: "\f381";
}

/* line 233, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cloud-meatball:before {
  content: "\f73b";
}

/* line 234, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cloud-moon:before {
  content: "\f6c3";
}

/* line 235, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cloud-moon-rain:before {
  content: "\f73c";
}

/* line 236, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cloud-rain:before {
  content: "\f73d";
}

/* line 237, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cloud-showers-heavy:before {
  content: "\f740";
}

/* line 238, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cloud-sun:before {
  content: "\f6c4";
}

/* line 239, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cloud-sun-rain:before {
  content: "\f743";
}

/* line 240, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cloud-upload-alt:before {
  content: "\f382";
}

/* line 241, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cloudscale:before {
  content: "\f383";
}

/* line 242, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cloudsmith:before {
  content: "\f384";
}

/* line 243, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cloudversify:before {
  content: "\f385";
}

/* line 244, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cocktail:before {
  content: "\f561";
}

/* line 245, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-code:before {
  content: "\f121";
}

/* line 246, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-code-branch:before {
  content: "\f126";
}

/* line 247, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-codepen:before {
  content: "\f1cb";
}

/* line 248, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-codiepie:before {
  content: "\f284";
}

/* line 249, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-coffee:before {
  content: "\f0f4";
}

/* line 250, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cog:before {
  content: "\f013";
}

/* line 251, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cogs:before {
  content: "\f085";
}

/* line 252, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-coins:before {
  content: "\f51e";
}

/* line 253, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-columns:before {
  content: "\f0db";
}

/* line 254, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-comment:before {
  content: "\f075";
}

/* line 255, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-comment-alt:before {
  content: "\f27a";
}

/* line 256, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-comment-dollar:before {
  content: "\f651";
}

/* line 257, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-comment-dots:before {
  content: "\f4ad";
}

/* line 258, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-comment-slash:before {
  content: "\f4b3";
}

/* line 259, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-comments:before {
  content: "\f086";
}

/* line 260, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-comments-dollar:before {
  content: "\f653";
}

/* line 261, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-compact-disc:before {
  content: "\f51f";
}

/* line 262, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-compass:before {
  content: "\f14e";
}

/* line 263, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-compress:before {
  content: "\f066";
}

/* line 264, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-concierge-bell:before {
  content: "\f562";
}

/* line 265, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-connectdevelop:before {
  content: "\f20e";
}

/* line 266, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-contao:before {
  content: "\f26d";
}

/* line 267, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cookie:before {
  content: "\f563";
}

/* line 268, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cookie-bite:before {
  content: "\f564";
}

/* line 269, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-copy:before {
  content: "\f0c5";
}

/* line 270, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-copyright:before {
  content: "\f1f9";
}

/* line 271, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-couch:before {
  content: "\f4b8";
}

/* line 272, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cpanel:before {
  content: "\f388";
}

/* line 273, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-creative-commons:before {
  content: "\f25e";
}

/* line 274, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-creative-commons-by:before {
  content: "\f4e7";
}

/* line 275, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-creative-commons-nc:before {
  content: "\f4e8";
}

/* line 276, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

/* line 277, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

/* line 278, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-creative-commons-nd:before {
  content: "\f4eb";
}

/* line 279, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-creative-commons-pd:before {
  content: "\f4ec";
}

/* line 280, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

/* line 281, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-creative-commons-remix:before {
  content: "\f4ee";
}

/* line 282, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-creative-commons-sa:before {
  content: "\f4ef";
}

/* line 283, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

/* line 284, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

/* line 285, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-creative-commons-share:before {
  content: "\f4f2";
}

/* line 286, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-creative-commons-zero:before {
  content: "\f4f3";
}

/* line 287, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-credit-card:before {
  content: "\f09d";
}

/* line 288, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-critical-role:before {
  content: "\f6c9";
}

/* line 289, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-crop:before {
  content: "\f125";
}

/* line 290, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-crop-alt:before {
  content: "\f565";
}

/* line 291, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cross:before {
  content: "\f654";
}

/* line 292, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-crosshairs:before {
  content: "\f05b";
}

/* line 293, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-crow:before {
  content: "\f520";
}

/* line 294, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-crown:before {
  content: "\f521";
}

/* line 295, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-css3:before {
  content: "\f13c";
}

/* line 296, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-css3-alt:before {
  content: "\f38b";
}

/* line 297, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cube:before {
  content: "\f1b2";
}

/* line 298, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cubes:before {
  content: "\f1b3";
}

/* line 299, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cut:before {
  content: "\f0c4";
}

/* line 300, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-cuttlefish:before {
  content: "\f38c";
}

/* line 301, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-d-and-d:before {
  content: "\f38d";
}

/* line 302, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

/* line 303, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dashcube:before {
  content: "\f210";
}

/* line 304, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-database:before {
  content: "\f1c0";
}

/* line 305, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-deaf:before {
  content: "\f2a4";
}

/* line 306, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-delicious:before {
  content: "\f1a5";
}

/* line 307, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-democrat:before {
  content: "\f747";
}

/* line 308, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-deploydog:before {
  content: "\f38e";
}

/* line 309, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-deskpro:before {
  content: "\f38f";
}

/* line 310, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-desktop:before {
  content: "\f108";
}

/* line 311, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dev:before {
  content: "\f6cc";
}

/* line 312, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-deviantart:before {
  content: "\f1bd";
}

/* line 313, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dharmachakra:before {
  content: "\f655";
}

/* line 314, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-diagnoses:before {
  content: "\f470";
}

/* line 315, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dice:before {
  content: "\f522";
}

/* line 316, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dice-d20:before {
  content: "\f6cf";
}

/* line 317, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dice-d6:before {
  content: "\f6d1";
}

/* line 318, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dice-five:before {
  content: "\f523";
}

/* line 319, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dice-four:before {
  content: "\f524";
}

/* line 320, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dice-one:before {
  content: "\f525";
}

/* line 321, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dice-six:before {
  content: "\f526";
}

/* line 322, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dice-three:before {
  content: "\f527";
}

/* line 323, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dice-two:before {
  content: "\f528";
}

/* line 324, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-digg:before {
  content: "\f1a6";
}

/* line 325, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-digital-ocean:before {
  content: "\f391";
}

/* line 326, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-digital-tachograph:before {
  content: "\f566";
}

/* line 327, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-directions:before {
  content: "\f5eb";
}

/* line 328, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-discord:before {
  content: "\f392";
}

/* line 329, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-discourse:before {
  content: "\f393";
}

/* line 330, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-divide:before {
  content: "\f529";
}

/* line 331, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dizzy:before {
  content: "\f567";
}

/* line 332, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dna:before {
  content: "\f471";
}

/* line 333, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dochub:before {
  content: "\f394";
}

/* line 334, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-docker:before {
  content: "\f395";
}

/* line 335, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dog:before {
  content: "\f6d3";
}

/* line 336, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dollar-sign:before {
  content: "\f155";
}

/* line 337, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dolly:before {
  content: "\f472";
}

/* line 338, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dolly-flatbed:before {
  content: "\f474";
}

/* line 339, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-donate:before {
  content: "\f4b9";
}

/* line 340, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-door-closed:before {
  content: "\f52a";
}

/* line 341, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-door-open:before {
  content: "\f52b";
}

/* line 342, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dot-circle:before {
  content: "\f192";
}

/* line 343, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dove:before {
  content: "\f4ba";
}

/* line 344, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-download:before {
  content: "\f019";
}

/* line 345, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-draft2digital:before {
  content: "\f396";
}

/* line 346, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-drafting-compass:before {
  content: "\f568";
}

/* line 347, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dragon:before {
  content: "\f6d5";
}

/* line 348, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-draw-polygon:before {
  content: "\f5ee";
}

/* line 349, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dribbble:before {
  content: "\f17d";
}

/* line 350, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dribbble-square:before {
  content: "\f397";
}

/* line 351, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dropbox:before {
  content: "\f16b";
}

/* line 352, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-drum:before {
  content: "\f569";
}

/* line 353, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-drum-steelpan:before {
  content: "\f56a";
}

/* line 354, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-drumstick-bite:before {
  content: "\f6d7";
}

/* line 355, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-drupal:before {
  content: "\f1a9";
}

/* line 356, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dumbbell:before {
  content: "\f44b";
}

/* line 357, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dungeon:before {
  content: "\f6d9";
}

/* line 358, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-dyalog:before {
  content: "\f399";
}

/* line 359, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-earlybirds:before {
  content: "\f39a";
}

/* line 360, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ebay:before {
  content: "\f4f4";
}

/* line 361, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-edge:before {
  content: "\f282";
}

/* line 362, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-edit:before {
  content: "\f044";
}

/* line 363, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-eject:before {
  content: "\f052";
}

/* line 364, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-elementor:before {
  content: "\f430";
}

/* line 365, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ellipsis-h:before {
  content: "\f141";
}

/* line 366, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ellipsis-v:before {
  content: "\f142";
}

/* line 367, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ello:before {
  content: "\f5f1";
}

/* line 368, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ember:before {
  content: "\f423";
}

/* line 369, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-empire:before {
  content: "\f1d1";
}

/* line 370, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-envelope:before {
  content: "\f0e0";
}

/* line 371, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-envelope-open:before {
  content: "\f2b6";
}

/* line 372, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-envelope-open-text:before {
  content: "\f658";
}

/* line 373, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-envelope-square:before {
  content: "\f199";
}

/* line 374, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-envira:before {
  content: "\f299";
}

/* line 375, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-equals:before {
  content: "\f52c";
}

/* line 376, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-eraser:before {
  content: "\f12d";
}

/* line 377, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-erlang:before {
  content: "\f39d";
}

/* line 378, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ethereum:before {
  content: "\f42e";
}

/* line 379, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-etsy:before {
  content: "\f2d7";
}

/* line 380, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-euro-sign:before {
  content: "\f153";
}

/* line 381, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-exchange-alt:before {
  content: "\f362";
}

/* line 382, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-exclamation:before {
  content: "\f12a";
}

/* line 383, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-exclamation-circle:before {
  content: "\f06a";
}

/* line 384, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-exclamation-triangle:before {
  content: "\f071";
}

/* line 385, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-expand:before {
  content: "\f065";
}

/* line 386, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-expand-arrows-alt:before {
  content: "\f31e";
}

/* line 387, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-expeditedssl:before {
  content: "\f23e";
}

/* line 388, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-external-link-alt:before {
  content: "\f35d";
}

/* line 389, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-external-link-square-alt:before {
  content: "\f360";
}

/* line 390, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-eye:before {
  content: "\f06e";
}

/* line 391, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-eye-dropper:before {
  content: "\f1fb";
}

/* line 392, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-eye-slash:before {
  content: "\f070";
}

/* line 393, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-facebook:before {
  content: "\f09a";
}

/* line 394, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-facebook-f:before {
  content: "\f39e";
}

/* line 395, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-facebook-messenger:before {
  content: "\f39f";
}

/* line 396, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-facebook-square:before {
  content: "\f082";
}

/* line 397, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

/* line 398, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fast-backward:before {
  content: "\f049";
}

/* line 399, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fast-forward:before {
  content: "\f050";
}

/* line 400, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fax:before {
  content: "\f1ac";
}

/* line 401, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-feather:before {
  content: "\f52d";
}

/* line 402, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-feather-alt:before {
  content: "\f56b";
}

/* line 403, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-female:before {
  content: "\f182";
}

/* line 404, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fighter-jet:before {
  content: "\f0fb";
}

/* line 405, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file:before {
  content: "\f15b";
}

/* line 406, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-alt:before {
  content: "\f15c";
}

/* line 407, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-archive:before {
  content: "\f1c6";
}

/* line 408, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-audio:before {
  content: "\f1c7";
}

/* line 409, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-code:before {
  content: "\f1c9";
}

/* line 410, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-contract:before {
  content: "\f56c";
}

/* line 411, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-csv:before {
  content: "\f6dd";
}

/* line 412, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-download:before {
  content: "\f56d";
}

/* line 413, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-excel:before {
  content: "\f1c3";
}

/* line 414, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-export:before {
  content: "\f56e";
}

/* line 415, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-image:before {
  content: "\f1c5";
}

/* line 416, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-import:before {
  content: "\f56f";
}

/* line 417, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-invoice:before {
  content: "\f570";
}

/* line 418, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-invoice-dollar:before {
  content: "\f571";
}

/* line 419, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-medical:before {
  content: "\f477";
}

/* line 420, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-medical-alt:before {
  content: "\f478";
}

/* line 421, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-pdf:before {
  content: "\f1c1";
}

/* line 422, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-powerpoint:before {
  content: "\f1c4";
}

/* line 423, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-prescription:before {
  content: "\f572";
}

/* line 424, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-signature:before {
  content: "\f573";
}

/* line 425, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-upload:before {
  content: "\f574";
}

/* line 426, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-video:before {
  content: "\f1c8";
}

/* line 427, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-file-word:before {
  content: "\f1c2";
}

/* line 428, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fill:before {
  content: "\f575";
}

/* line 429, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fill-drip:before {
  content: "\f576";
}

/* line 430, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-film:before {
  content: "\f008";
}

/* line 431, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-filter:before {
  content: "\f0b0";
}

/* line 432, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fingerprint:before {
  content: "\f577";
}

/* line 433, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fire:before {
  content: "\f06d";
}

/* line 434, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fire-extinguisher:before {
  content: "\f134";
}

/* line 435, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-firefox:before {
  content: "\f269";
}

/* line 436, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-first-aid:before {
  content: "\f479";
}

/* line 437, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-first-order:before {
  content: "\f2b0";
}

/* line 438, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-first-order-alt:before {
  content: "\f50a";
}

/* line 439, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-firstdraft:before {
  content: "\f3a1";
}

/* line 440, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fish:before {
  content: "\f578";
}

/* line 441, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fist-raised:before {
  content: "\f6de";
}

/* line 442, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-flag:before {
  content: "\f024";
}

/* line 443, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-flag-checkered:before {
  content: "\f11e";
}

/* line 444, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-flag-usa:before {
  content: "\f74d";
}

/* line 445, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-flask:before {
  content: "\f0c3";
}

/* line 446, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-flickr:before {
  content: "\f16e";
}

/* line 447, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-flipboard:before {
  content: "\f44d";
}

/* line 448, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-flushed:before {
  content: "\f579";
}

/* line 449, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fly:before {
  content: "\f417";
}

/* line 450, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-folder:before {
  content: "\f07b";
}

/* line 451, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-folder-minus:before {
  content: "\f65d";
}

/* line 452, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-folder-open:before {
  content: "\f07c";
}

/* line 453, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-folder-plus:before {
  content: "\f65e";
}

/* line 454, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-font:before {
  content: "\f031";
}

/* line 455, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-font-awesome:before {
  content: "\f2b4";
}

/* line 456, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-font-awesome-alt:before {
  content: "\f35c";
}

/* line 457, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-font-awesome-flag:before {
  content: "\f425";
}

/* line 458, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

/* line 459, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fonticons:before {
  content: "\f280";
}

/* line 460, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fonticons-fi:before {
  content: "\f3a2";
}

/* line 461, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-football-ball:before {
  content: "\f44e";
}

/* line 462, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fort-awesome:before {
  content: "\f286";
}

/* line 463, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

/* line 464, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-forumbee:before {
  content: "\f211";
}

/* line 465, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-forward:before {
  content: "\f04e";
}

/* line 466, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-foursquare:before {
  content: "\f180";
}

/* line 467, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-free-code-camp:before {
  content: "\f2c5";
}

/* line 468, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-freebsd:before {
  content: "\f3a4";
}

/* line 469, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-frog:before {
  content: "\f52e";
}

/* line 470, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-frown:before {
  content: "\f119";
}

/* line 471, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-frown-open:before {
  content: "\f57a";
}

/* line 472, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-fulcrum:before {
  content: "\f50b";
}

/* line 473, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-funnel-dollar:before {
  content: "\f662";
}

/* line 474, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-futbol:before {
  content: "\f1e3";
}

/* line 475, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-galactic-republic:before {
  content: "\f50c";
}

/* line 476, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-galactic-senate:before {
  content: "\f50d";
}

/* line 477, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-gamepad:before {
  content: "\f11b";
}

/* line 478, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-gas-pump:before {
  content: "\f52f";
}

/* line 479, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-gavel:before {
  content: "\f0e3";
}

/* line 480, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-gem:before {
  content: "\f3a5";
}

/* line 481, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-genderless:before {
  content: "\f22d";
}

/* line 482, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-get-pocket:before {
  content: "\f265";
}

/* line 483, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-gg:before {
  content: "\f260";
}

/* line 484, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-gg-circle:before {
  content: "\f261";
}

/* line 485, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ghost:before {
  content: "\f6e2";
}

/* line 486, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-gift:before {
  content: "\f06b";
}

/* line 487, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-git:before {
  content: "\f1d3";
}

/* line 488, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-git-square:before {
  content: "\f1d2";
}

/* line 489, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-github:before {
  content: "\f09b";
}

/* line 490, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-github-alt:before {
  content: "\f113";
}

/* line 491, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-github-square:before {
  content: "\f092";
}

/* line 492, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-gitkraken:before {
  content: "\f3a6";
}

/* line 493, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-gitlab:before {
  content: "\f296";
}

/* line 494, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-gitter:before {
  content: "\f426";
}

/* line 495, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-glass-martini:before {
  content: "\f000";
}

/* line 496, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-glass-martini-alt:before {
  content: "\f57b";
}

/* line 497, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-glasses:before {
  content: "\f530";
}

/* line 498, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-glide:before {
  content: "\f2a5";
}

/* line 499, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-glide-g:before {
  content: "\f2a6";
}

/* line 500, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-globe:before {
  content: "\f0ac";
}

/* line 501, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-globe-africa:before {
  content: "\f57c";
}

/* line 502, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-globe-americas:before {
  content: "\f57d";
}

/* line 503, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-globe-asia:before {
  content: "\f57e";
}

/* line 504, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-gofore:before {
  content: "\f3a7";
}

/* line 505, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-golf-ball:before {
  content: "\f450";
}

/* line 506, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-goodreads:before {
  content: "\f3a8";
}

/* line 507, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-goodreads-g:before {
  content: "\f3a9";
}

/* line 508, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-google:before {
  content: "\f1a0";
}

/* line 509, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-google-drive:before {
  content: "\f3aa";
}

/* line 510, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-google-play:before {
  content: "\f3ab";
}

/* line 511, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-google-plus:before {
  content: "\f2b3";
}

/* line 512, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-google-plus-g:before {
  content: "\f0d5";
}

/* line 513, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-google-plus-square:before {
  content: "\f0d4";
}

/* line 514, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-google-wallet:before {
  content: "\f1ee";
}

/* line 515, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-gopuram:before {
  content: "\f664";
}

/* line 516, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-graduation-cap:before {
  content: "\f19d";
}

/* line 517, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-gratipay:before {
  content: "\f184";
}

/* line 518, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grav:before {
  content: "\f2d6";
}

/* line 519, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-greater-than:before {
  content: "\f531";
}

/* line 520, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-greater-than-equal:before {
  content: "\f532";
}

/* line 521, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grimace:before {
  content: "\f57f";
}

/* line 522, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grin:before {
  content: "\f580";
}

/* line 523, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grin-alt:before {
  content: "\f581";
}

/* line 524, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grin-beam:before {
  content: "\f582";
}

/* line 525, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grin-beam-sweat:before {
  content: "\f583";
}

/* line 526, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grin-hearts:before {
  content: "\f584";
}

/* line 527, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grin-squint:before {
  content: "\f585";
}

/* line 528, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grin-squint-tears:before {
  content: "\f586";
}

/* line 529, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grin-stars:before {
  content: "\f587";
}

/* line 530, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grin-tears:before {
  content: "\f588";
}

/* line 531, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grin-tongue:before {
  content: "\f589";
}

/* line 532, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grin-tongue-squint:before {
  content: "\f58a";
}

/* line 533, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grin-tongue-wink:before {
  content: "\f58b";
}

/* line 534, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grin-wink:before {
  content: "\f58c";
}

/* line 535, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grip-horizontal:before {
  content: "\f58d";
}

/* line 536, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grip-vertical:before {
  content: "\f58e";
}

/* line 537, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-gripfire:before {
  content: "\f3ac";
}

/* line 538, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-grunt:before {
  content: "\f3ad";
}

/* line 539, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-gulp:before {
  content: "\f3ae";
}

/* line 540, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-h-square:before {
  content: "\f0fd";
}

/* line 541, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hacker-news:before {
  content: "\f1d4";
}

/* line 542, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hacker-news-square:before {
  content: "\f3af";
}

/* line 543, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hackerrank:before {
  content: "\f5f7";
}

/* line 544, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hammer:before {
  content: "\f6e3";
}

/* line 545, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hamsa:before {
  content: "\f665";
}

/* line 546, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hand-holding:before {
  content: "\f4bd";
}

/* line 547, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hand-holding-heart:before {
  content: "\f4be";
}

/* line 548, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hand-holding-usd:before {
  content: "\f4c0";
}

/* line 549, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hand-lizard:before {
  content: "\f258";
}

/* line 550, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hand-paper:before {
  content: "\f256";
}

/* line 551, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hand-peace:before {
  content: "\f25b";
}

/* line 552, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hand-point-down:before {
  content: "\f0a7";
}

/* line 553, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hand-point-left:before {
  content: "\f0a5";
}

/* line 554, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hand-point-right:before {
  content: "\f0a4";
}

/* line 555, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hand-point-up:before {
  content: "\f0a6";
}

/* line 556, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hand-pointer:before {
  content: "\f25a";
}

/* line 557, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hand-rock:before {
  content: "\f255";
}

/* line 558, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hand-scissors:before {
  content: "\f257";
}

/* line 559, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hand-spock:before {
  content: "\f259";
}

/* line 560, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hands:before {
  content: "\f4c2";
}

/* line 561, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hands-helping:before {
  content: "\f4c4";
}

/* line 562, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-handshake:before {
  content: "\f2b5";
}

/* line 563, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hanukiah:before {
  content: "\f6e6";
}

/* line 564, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hashtag:before {
  content: "\f292";
}

/* line 565, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hat-wizard:before {
  content: "\f6e8";
}

/* line 566, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-haykal:before {
  content: "\f666";
}

/* line 567, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hdd:before {
  content: "\f0a0";
}

/* line 568, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-heading:before {
  content: "\f1dc";
}

/* line 569, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-headphones:before {
  content: "\f025";
}

/* line 570, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-headphones-alt:before {
  content: "\f58f";
}

/* line 571, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-headset:before {
  content: "\f590";
}

/* line 572, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-heart:before {
  content: "\f004";
}

/* line 573, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-heartbeat:before {
  content: "\f21e";
}

/* line 574, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-helicopter:before {
  content: "\f533";
}

/* line 575, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-highlighter:before {
  content: "\f591";
}

/* line 576, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hiking:before {
  content: "\f6ec";
}

/* line 577, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hippo:before {
  content: "\f6ed";
}

/* line 578, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hips:before {
  content: "\f452";
}

/* line 579, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hire-a-helper:before {
  content: "\f3b0";
}

/* line 580, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-history:before {
  content: "\f1da";
}

/* line 581, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hockey-puck:before {
  content: "\f453";
}

/* line 582, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-home:before {
  content: "\f015";
}

/* line 583, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hooli:before {
  content: "\f427";
}

/* line 584, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hornbill:before {
  content: "\f592";
}

/* line 585, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-horse:before {
  content: "\f6f0";
}

/* line 586, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hospital:before {
  content: "\f0f8";
}

/* line 587, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hospital-alt:before {
  content: "\f47d";
}

/* line 588, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hospital-symbol:before {
  content: "\f47e";
}

/* line 589, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hot-tub:before {
  content: "\f593";
}

/* line 590, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hotel:before {
  content: "\f594";
}

/* line 591, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hotjar:before {
  content: "\f3b1";
}

/* line 592, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hourglass:before {
  content: "\f254";
}

/* line 593, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hourglass-end:before {
  content: "\f253";
}

/* line 594, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hourglass-half:before {
  content: "\f252";
}

/* line 595, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hourglass-start:before {
  content: "\f251";
}

/* line 596, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-house-damage:before {
  content: "\f6f1";
}

/* line 597, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-houzz:before {
  content: "\f27c";
}

/* line 598, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hryvnia:before {
  content: "\f6f2";
}

/* line 599, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-html5:before {
  content: "\f13b";
}

/* line 600, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-hubspot:before {
  content: "\f3b2";
}

/* line 601, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-i-cursor:before {
  content: "\f246";
}

/* line 602, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-id-badge:before {
  content: "\f2c1";
}

/* line 603, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-id-card:before {
  content: "\f2c2";
}

/* line 604, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-id-card-alt:before {
  content: "\f47f";
}

/* line 605, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-image:before {
  content: "\f03e";
}

/* line 606, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-images:before {
  content: "\f302";
}

/* line 607, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-imdb:before {
  content: "\f2d8";
}

/* line 608, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-inbox:before {
  content: "\f01c";
}

/* line 609, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-indent:before {
  content: "\f03c";
}

/* line 610, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-industry:before {
  content: "\f275";
}

/* line 611, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-infinity:before {
  content: "\f534";
}

/* line 612, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-info:before {
  content: "\f129";
}

/* line 613, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-info-circle:before {
  content: "\f05a";
}

/* line 614, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-instagram:before {
  content: "\f16d";
}

/* line 615, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-internet-explorer:before {
  content: "\f26b";
}

/* line 616, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ioxhost:before {
  content: "\f208";
}

/* line 617, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-italic:before {
  content: "\f033";
}

/* line 618, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-itunes:before {
  content: "\f3b4";
}

/* line 619, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-itunes-note:before {
  content: "\f3b5";
}

/* line 620, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-java:before {
  content: "\f4e4";
}

/* line 621, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-jedi:before {
  content: "\f669";
}

/* line 622, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-jedi-order:before {
  content: "\f50e";
}

/* line 623, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-jenkins:before {
  content: "\f3b6";
}

/* line 624, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-joget:before {
  content: "\f3b7";
}

/* line 625, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-joint:before {
  content: "\f595";
}

/* line 626, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-joomla:before {
  content: "\f1aa";
}

/* line 627, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-journal-whills:before {
  content: "\f66a";
}

/* line 628, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-js:before {
  content: "\f3b8";
}

/* line 629, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-js-square:before {
  content: "\f3b9";
}

/* line 630, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-jsfiddle:before {
  content: "\f1cc";
}

/* line 631, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-kaaba:before {
  content: "\f66b";
}

/* line 632, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-kaggle:before {
  content: "\f5fa";
}

/* line 633, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-key:before {
  content: "\f084";
}

/* line 634, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-keybase:before {
  content: "\f4f5";
}

/* line 635, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-keyboard:before {
  content: "\f11c";
}

/* line 636, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-keycdn:before {
  content: "\f3ba";
}

/* line 637, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-khanda:before {
  content: "\f66d";
}

/* line 638, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-kickstarter:before {
  content: "\f3bb";
}

/* line 639, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-kickstarter-k:before {
  content: "\f3bc";
}

/* line 640, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-kiss:before {
  content: "\f596";
}

/* line 641, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-kiss-beam:before {
  content: "\f597";
}

/* line 642, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-kiss-wink-heart:before {
  content: "\f598";
}

/* line 643, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-kiwi-bird:before {
  content: "\f535";
}

/* line 644, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-korvue:before {
  content: "\f42f";
}

/* line 645, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-landmark:before {
  content: "\f66f";
}

/* line 646, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-language:before {
  content: "\f1ab";
}

/* line 647, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-laptop:before {
  content: "\f109";
}

/* line 648, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-laptop-code:before {
  content: "\f5fc";
}

/* line 649, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-laravel:before {
  content: "\f3bd";
}

/* line 650, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-lastfm:before {
  content: "\f202";
}

/* line 651, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-lastfm-square:before {
  content: "\f203";
}

/* line 652, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-laugh:before {
  content: "\f599";
}

/* line 653, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-laugh-beam:before {
  content: "\f59a";
}

/* line 654, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-laugh-squint:before {
  content: "\f59b";
}

/* line 655, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-laugh-wink:before {
  content: "\f59c";
}

/* line 656, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-layer-group:before {
  content: "\f5fd";
}

/* line 657, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-leaf:before {
  content: "\f06c";
}

/* line 658, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-leanpub:before {
  content: "\f212";
}

/* line 659, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-lemon:before {
  content: "\f094";
}

/* line 660, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-less:before {
  content: "\f41d";
}

/* line 661, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-less-than:before {
  content: "\f536";
}

/* line 662, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-less-than-equal:before {
  content: "\f537";
}

/* line 663, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-level-down-alt:before {
  content: "\f3be";
}

/* line 664, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-level-up-alt:before {
  content: "\f3bf";
}

/* line 665, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-life-ring:before {
  content: "\f1cd";
}

/* line 666, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-lightbulb:before {
  content: "\f0eb";
}

/* line 667, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-line:before {
  content: "\f3c0";
}

/* line 668, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-link:before {
  content: "\f0c1";
}

/* line 669, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-linkedin:before {
  content: "\f08c";
}

/* line 670, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-linkedin-in:before {
  content: "\f0e1";
}

/* line 671, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-linode:before {
  content: "\f2b8";
}

/* line 672, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-linux:before {
  content: "\f17c";
}

/* line 673, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-lira-sign:before {
  content: "\f195";
}

/* line 674, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-list:before {
  content: "\f03a";
}

/* line 675, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-list-alt:before {
  content: "\f022";
}

/* line 676, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-list-ol:before {
  content: "\f0cb";
}

/* line 677, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-list-ul:before {
  content: "\f0ca";
}

/* line 678, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-location-arrow:before {
  content: "\f124";
}

/* line 679, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-lock:before {
  content: "\f023";
}

/* line 680, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-lock-open:before {
  content: "\f3c1";
}

/* line 681, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-long-arrow-alt-down:before {
  content: "\f309";
}

/* line 682, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

/* line 683, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

/* line 684, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

/* line 685, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-low-vision:before {
  content: "\f2a8";
}

/* line 686, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-luggage-cart:before {
  content: "\f59d";
}

/* line 687, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-lyft:before {
  content: "\f3c3";
}

/* line 688, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-magento:before {
  content: "\f3c4";
}

/* line 689, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-magic:before {
  content: "\f0d0";
}

/* line 690, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-magnet:before {
  content: "\f076";
}

/* line 691, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mail-bulk:before {
  content: "\f674";
}

/* line 692, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mailchimp:before {
  content: "\f59e";
}

/* line 693, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-male:before {
  content: "\f183";
}

/* line 694, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mandalorian:before {
  content: "\f50f";
}

/* line 695, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-map:before {
  content: "\f279";
}

/* line 696, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-map-marked:before {
  content: "\f59f";
}

/* line 697, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-map-marked-alt:before {
  content: "\f5a0";
}

/* line 698, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-map-marker:before {
  content: "\f041";
}

/* line 699, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-map-marker-alt:before {
  content: "\f3c5";
}

/* line 700, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-map-pin:before {
  content: "\f276";
}

/* line 701, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-map-signs:before {
  content: "\f277";
}

/* line 702, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-markdown:before {
  content: "\f60f";
}

/* line 703, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-marker:before {
  content: "\f5a1";
}

/* line 704, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mars:before {
  content: "\f222";
}

/* line 705, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mars-double:before {
  content: "\f227";
}

/* line 706, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mars-stroke:before {
  content: "\f229";
}

/* line 707, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mars-stroke-h:before {
  content: "\f22b";
}

/* line 708, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mars-stroke-v:before {
  content: "\f22a";
}

/* line 709, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mask:before {
  content: "\f6fa";
}

/* line 710, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mastodon:before {
  content: "\f4f6";
}

/* line 711, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-maxcdn:before {
  content: "\f136";
}

/* line 712, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-medal:before {
  content: "\f5a2";
}

/* line 713, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-medapps:before {
  content: "\f3c6";
}

/* line 714, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-medium:before {
  content: "\f23a";
}

/* line 715, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-medium-m:before {
  content: "\f3c7";
}

/* line 716, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-medkit:before {
  content: "\f0fa";
}

/* line 717, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-medrt:before {
  content: "\f3c8";
}

/* line 718, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-meetup:before {
  content: "\f2e0";
}

/* line 719, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-megaport:before {
  content: "\f5a3";
}

/* line 720, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-meh:before {
  content: "\f11a";
}

/* line 721, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-meh-blank:before {
  content: "\f5a4";
}

/* line 722, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

/* line 723, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-memory:before {
  content: "\f538";
}

/* line 724, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-menorah:before {
  content: "\f676";
}

/* line 725, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mercury:before {
  content: "\f223";
}

/* line 726, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-meteor:before {
  content: "\f753";
}

/* line 727, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-microchip:before {
  content: "\f2db";
}

/* line 728, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-microphone:before {
  content: "\f130";
}

/* line 729, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-microphone-alt:before {
  content: "\f3c9";
}

/* line 730, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-microphone-alt-slash:before {
  content: "\f539";
}

/* line 731, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-microphone-slash:before {
  content: "\f131";
}

/* line 732, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-microscope:before {
  content: "\f610";
}

/* line 733, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-microsoft:before {
  content: "\f3ca";
}

/* line 734, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-minus:before {
  content: "\f068";
}

/* line 735, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-minus-circle:before {
  content: "\f056";
}

/* line 736, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-minus-square:before {
  content: "\f146";
}

/* line 737, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mix:before {
  content: "\f3cb";
}

/* line 738, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mixcloud:before {
  content: "\f289";
}

/* line 739, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mizuni:before {
  content: "\f3cc";
}

/* line 740, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mobile:before {
  content: "\f10b";
}

/* line 741, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mobile-alt:before {
  content: "\f3cd";
}

/* line 742, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-modx:before {
  content: "\f285";
}

/* line 743, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-monero:before {
  content: "\f3d0";
}

/* line 744, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-money-bill:before {
  content: "\f0d6";
}

/* line 745, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-money-bill-alt:before {
  content: "\f3d1";
}

/* line 746, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-money-bill-wave:before {
  content: "\f53a";
}

/* line 747, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

/* line 748, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-money-check:before {
  content: "\f53c";
}

/* line 749, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-money-check-alt:before {
  content: "\f53d";
}

/* line 750, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-monument:before {
  content: "\f5a6";
}

/* line 751, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-moon:before {
  content: "\f186";
}

/* line 752, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mortar-pestle:before {
  content: "\f5a7";
}

/* line 753, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mosque:before {
  content: "\f678";
}

/* line 754, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-motorcycle:before {
  content: "\f21c";
}

/* line 755, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mountain:before {
  content: "\f6fc";
}

/* line 756, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-mouse-pointer:before {
  content: "\f245";
}

/* line 757, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-music:before {
  content: "\f001";
}

/* line 758, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-napster:before {
  content: "\f3d2";
}

/* line 759, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-neos:before {
  content: "\f612";
}

/* line 760, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-network-wired:before {
  content: "\f6ff";
}

/* line 761, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-neuter:before {
  content: "\f22c";
}

/* line 762, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-newspaper:before {
  content: "\f1ea";
}

/* line 763, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-nimblr:before {
  content: "\f5a8";
}

/* line 764, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-nintendo-switch:before {
  content: "\f418";
}

/* line 765, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-node:before {
  content: "\f419";
}

/* line 766, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-node-js:before {
  content: "\f3d3";
}

/* line 767, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-not-equal:before {
  content: "\f53e";
}

/* line 768, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-notes-medical:before {
  content: "\f481";
}

/* line 769, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-npm:before {
  content: "\f3d4";
}

/* line 770, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ns8:before {
  content: "\f3d5";
}

/* line 771, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-nutritionix:before {
  content: "\f3d6";
}

/* line 772, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-object-group:before {
  content: "\f247";
}

/* line 773, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-object-ungroup:before {
  content: "\f248";
}

/* line 774, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-odnoklassniki:before {
  content: "\f263";
}

/* line 775, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-odnoklassniki-square:before {
  content: "\f264";
}

/* line 776, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-oil-can:before {
  content: "\f613";
}

/* line 777, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-old-republic:before {
  content: "\f510";
}

/* line 778, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-om:before {
  content: "\f679";
}

/* line 779, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-opencart:before {
  content: "\f23d";
}

/* line 780, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-openid:before {
  content: "\f19b";
}

/* line 781, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-opera:before {
  content: "\f26a";
}

/* line 782, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-optin-monster:before {
  content: "\f23c";
}

/* line 783, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-osi:before {
  content: "\f41a";
}

/* line 784, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-otter:before {
  content: "\f700";
}

/* line 785, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-outdent:before {
  content: "\f03b";
}

/* line 786, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-page4:before {
  content: "\f3d7";
}

/* line 787, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pagelines:before {
  content: "\f18c";
}

/* line 788, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-paint-brush:before {
  content: "\f1fc";
}

/* line 789, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-paint-roller:before {
  content: "\f5aa";
}

/* line 790, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-palette:before {
  content: "\f53f";
}

/* line 791, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-palfed:before {
  content: "\f3d8";
}

/* line 792, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pallet:before {
  content: "\f482";
}

/* line 793, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-paper-plane:before {
  content: "\f1d8";
}

/* line 794, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-paperclip:before {
  content: "\f0c6";
}

/* line 795, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-parachute-box:before {
  content: "\f4cd";
}

/* line 796, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-paragraph:before {
  content: "\f1dd";
}

/* line 797, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-parking:before {
  content: "\f540";
}

/* line 798, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-passport:before {
  content: "\f5ab";
}

/* line 799, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pastafarianism:before {
  content: "\f67b";
}

/* line 800, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-paste:before {
  content: "\f0ea";
}

/* line 801, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-patreon:before {
  content: "\f3d9";
}

/* line 802, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pause:before {
  content: "\f04c";
}

/* line 803, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pause-circle:before {
  content: "\f28b";
}

/* line 804, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-paw:before {
  content: "\f1b0";
}

/* line 805, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-paypal:before {
  content: "\f1ed";
}

/* line 806, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-peace:before {
  content: "\f67c";
}

/* line 807, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pen:before {
  content: "\f304";
}

/* line 808, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pen-alt:before {
  content: "\f305";
}

/* line 809, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pen-fancy:before {
  content: "\f5ac";
}

/* line 810, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pen-nib:before {
  content: "\f5ad";
}

/* line 811, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pen-square:before {
  content: "\f14b";
}

/* line 812, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pencil-alt:before {
  content: "\f303";
}

/* line 813, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pencil-ruler:before {
  content: "\f5ae";
}

/* line 814, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-penny-arcade:before {
  content: "\f704";
}

/* line 815, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-people-carry:before {
  content: "\f4ce";
}

/* line 816, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-percent:before {
  content: "\f295";
}

/* line 817, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-percentage:before {
  content: "\f541";
}

/* line 818, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-periscope:before {
  content: "\f3da";
}

/* line 819, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-person-booth:before {
  content: "\f756";
}

/* line 820, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-phabricator:before {
  content: "\f3db";
}

/* line 821, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-phoenix-framework:before {
  content: "\f3dc";
}

/* line 822, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-phoenix-squadron:before {
  content: "\f511";
}

/* line 823, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-phone:before {
  content: "\f095";
}

/* line 824, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-phone-slash:before {
  content: "\f3dd";
}

/* line 825, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-phone-square:before {
  content: "\f098";
}

/* line 826, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-phone-volume:before {
  content: "\f2a0";
}

/* line 827, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-php:before {
  content: "\f457";
}

/* line 828, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pied-piper:before {
  content: "\f2ae";
}

/* line 829, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pied-piper-alt:before {
  content: "\f1a8";
}

/* line 830, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pied-piper-hat:before {
  content: "\f4e5";
}

/* line 831, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pied-piper-pp:before {
  content: "\f1a7";
}

/* line 832, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-piggy-bank:before {
  content: "\f4d3";
}

/* line 833, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pills:before {
  content: "\f484";
}

/* line 834, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pinterest:before {
  content: "\f0d2";
}

/* line 835, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pinterest-p:before {
  content: "\f231";
}

/* line 836, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pinterest-square:before {
  content: "\f0d3";
}

/* line 837, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-place-of-worship:before {
  content: "\f67f";
}

/* line 838, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-plane:before {
  content: "\f072";
}

/* line 839, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-plane-arrival:before {
  content: "\f5af";
}

/* line 840, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-plane-departure:before {
  content: "\f5b0";
}

/* line 841, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-play:before {
  content: "\f04b";
}

/* line 842, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-play-circle:before {
  content: "\f144";
}

/* line 843, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-playstation:before {
  content: "\f3df";
}

/* line 844, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-plug:before {
  content: "\f1e6";
}

/* line 845, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-plus:before {
  content: "\f067";
}

/* line 846, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-plus-circle:before {
  content: "\f055";
}

/* line 847, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-plus-square:before {
  content: "\f0fe";
}

/* line 848, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-podcast:before {
  content: "\f2ce";
}

/* line 849, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-poll:before {
  content: "\f681";
}

/* line 850, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-poll-h:before {
  content: "\f682";
}

/* line 851, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-poo:before {
  content: "\f2fe";
}

/* line 852, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-poo-storm:before {
  content: "\f75a";
}

/* line 853, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-poop:before {
  content: "\f619";
}

/* line 854, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-portrait:before {
  content: "\f3e0";
}

/* line 855, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pound-sign:before {
  content: "\f154";
}

/* line 856, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-power-off:before {
  content: "\f011";
}

/* line 857, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pray:before {
  content: "\f683";
}

/* line 858, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-praying-hands:before {
  content: "\f684";
}

/* line 859, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-prescription:before {
  content: "\f5b1";
}

/* line 860, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-prescription-bottle:before {
  content: "\f485";
}

/* line 861, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-prescription-bottle-alt:before {
  content: "\f486";
}

/* line 862, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-print:before {
  content: "\f02f";
}

/* line 863, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-procedures:before {
  content: "\f487";
}

/* line 864, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-product-hunt:before {
  content: "\f288";
}

/* line 865, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-project-diagram:before {
  content: "\f542";
}

/* line 866, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-pushed:before {
  content: "\f3e1";
}

/* line 867, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-puzzle-piece:before {
  content: "\f12e";
}

/* line 868, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-python:before {
  content: "\f3e2";
}

/* line 869, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-qq:before {
  content: "\f1d6";
}

/* line 870, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-qrcode:before {
  content: "\f029";
}

/* line 871, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-question:before {
  content: "\f128";
}

/* line 872, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-question-circle:before {
  content: "\f059";
}

/* line 873, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-quidditch:before {
  content: "\f458";
}

/* line 874, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-quinscape:before {
  content: "\f459";
}

/* line 875, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-quora:before {
  content: "\f2c4";
}

/* line 876, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-quote-left:before {
  content: "\f10d";
}

/* line 877, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-quote-right:before {
  content: "\f10e";
}

/* line 878, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-quran:before {
  content: "\f687";
}

/* line 879, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-r-project:before {
  content: "\f4f7";
}

/* line 880, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-rainbow:before {
  content: "\f75b";
}

/* line 881, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-random:before {
  content: "\f074";
}

/* line 882, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ravelry:before {
  content: "\f2d9";
}

/* line 883, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-react:before {
  content: "\f41b";
}

/* line 884, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-reacteurope:before {
  content: "\f75d";
}

/* line 885, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-readme:before {
  content: "\f4d5";
}

/* line 886, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-rebel:before {
  content: "\f1d0";
}

/* line 887, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-receipt:before {
  content: "\f543";
}

/* line 888, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-recycle:before {
  content: "\f1b8";
}

/* line 889, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-red-river:before {
  content: "\f3e3";
}

/* line 890, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-reddit:before {
  content: "\f1a1";
}

/* line 891, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-reddit-alien:before {
  content: "\f281";
}

/* line 892, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-reddit-square:before {
  content: "\f1a2";
}

/* line 893, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-redo:before {
  content: "\f01e";
}

/* line 894, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-redo-alt:before {
  content: "\f2f9";
}

/* line 895, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-registered:before {
  content: "\f25d";
}

/* line 896, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-renren:before {
  content: "\f18b";
}

/* line 897, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-reply:before {
  content: "\f3e5";
}

/* line 898, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-reply-all:before {
  content: "\f122";
}

/* line 899, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-replyd:before {
  content: "\f3e6";
}

/* line 900, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-republican:before {
  content: "\f75e";
}

/* line 901, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-researchgate:before {
  content: "\f4f8";
}

/* line 902, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-resolving:before {
  content: "\f3e7";
}

/* line 903, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-retweet:before {
  content: "\f079";
}

/* line 904, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-rev:before {
  content: "\f5b2";
}

/* line 905, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ribbon:before {
  content: "\f4d6";
}

/* line 906, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ring:before {
  content: "\f70b";
}

/* line 907, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-road:before {
  content: "\f018";
}

/* line 908, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-robot:before {
  content: "\f544";
}

/* line 909, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-rocket:before {
  content: "\f135";
}

/* line 910, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-rocketchat:before {
  content: "\f3e8";
}

/* line 911, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-rockrms:before {
  content: "\f3e9";
}

/* line 912, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-route:before {
  content: "\f4d7";
}

/* line 913, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-rss:before {
  content: "\f09e";
}

/* line 914, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-rss-square:before {
  content: "\f143";
}

/* line 915, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ruble-sign:before {
  content: "\f158";
}

/* line 916, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ruler:before {
  content: "\f545";
}

/* line 917, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ruler-combined:before {
  content: "\f546";
}

/* line 918, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ruler-horizontal:before {
  content: "\f547";
}

/* line 919, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ruler-vertical:before {
  content: "\f548";
}

/* line 920, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-running:before {
  content: "\f70c";
}

/* line 921, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-rupee-sign:before {
  content: "\f156";
}

/* line 922, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sad-cry:before {
  content: "\f5b3";
}

/* line 923, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sad-tear:before {
  content: "\f5b4";
}

/* line 924, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-safari:before {
  content: "\f267";
}

/* line 925, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sass:before {
  content: "\f41e";
}

/* line 926, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-save:before {
  content: "\f0c7";
}

/* line 927, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-schlix:before {
  content: "\f3ea";
}

/* line 928, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-school:before {
  content: "\f549";
}

/* line 929, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-screwdriver:before {
  content: "\f54a";
}

/* line 930, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-scribd:before {
  content: "\f28a";
}

/* line 931, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-scroll:before {
  content: "\f70e";
}

/* line 932, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-search:before {
  content: "\f002";
}

/* line 933, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-search-dollar:before {
  content: "\f688";
}

/* line 934, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-search-location:before {
  content: "\f689";
}

/* line 935, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-search-minus:before {
  content: "\f010";
}

/* line 936, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-search-plus:before {
  content: "\f00e";
}

/* line 937, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-searchengin:before {
  content: "\f3eb";
}

/* line 938, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-seedling:before {
  content: "\f4d8";
}

/* line 939, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sellcast:before {
  content: "\f2da";
}

/* line 940, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sellsy:before {
  content: "\f213";
}

/* line 941, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-server:before {
  content: "\f233";
}

/* line 942, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-servicestack:before {
  content: "\f3ec";
}

/* line 943, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-shapes:before {
  content: "\f61f";
}

/* line 944, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-share:before {
  content: "\f064";
}

/* line 945, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-share-alt:before {
  content: "\f1e0";
}

/* line 946, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-share-alt-square:before {
  content: "\f1e1";
}

/* line 947, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-share-square:before {
  content: "\f14d";
}

/* line 948, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-shekel-sign:before {
  content: "\f20b";
}

/* line 949, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-shield-alt:before {
  content: "\f3ed";
}

/* line 950, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ship:before {
  content: "\f21a";
}

/* line 951, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-shipping-fast:before {
  content: "\f48b";
}

/* line 952, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-shirtsinbulk:before {
  content: "\f214";
}

/* line 953, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-shoe-prints:before {
  content: "\f54b";
}

/* line 954, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-shopping-bag:before {
  content: "\f290";
}

/* line 955, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-shopping-basket:before {
  content: "\f291";
}

/* line 956, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-shopping-cart:before {
  content: "\f07a";
}

/* line 957, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-shopware:before {
  content: "\f5b5";
}

/* line 958, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-shower:before {
  content: "\f2cc";
}

/* line 959, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-shuttle-van:before {
  content: "\f5b6";
}

/* line 960, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sign:before {
  content: "\f4d9";
}

/* line 961, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sign-in-alt:before {
  content: "\f2f6";
}

/* line 962, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sign-language:before {
  content: "\f2a7";
}

/* line 963, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sign-out-alt:before {
  content: "\f2f5";
}

/* line 964, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-signal:before {
  content: "\f012";
}

/* line 965, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-signature:before {
  content: "\f5b7";
}

/* line 966, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-simplybuilt:before {
  content: "\f215";
}

/* line 967, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sistrix:before {
  content: "\f3ee";
}

/* line 968, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sitemap:before {
  content: "\f0e8";
}

/* line 969, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sith:before {
  content: "\f512";
}

/* line 970, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-skull:before {
  content: "\f54c";
}

/* line 971, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-skull-crossbones:before {
  content: "\f714";
}

/* line 972, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-skyatlas:before {
  content: "\f216";
}

/* line 973, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-skype:before {
  content: "\f17e";
}

/* line 974, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-slack:before {
  content: "\f198";
}

/* line 975, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-slack-hash:before {
  content: "\f3ef";
}

/* line 976, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-slash:before {
  content: "\f715";
}

/* line 977, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sliders-h:before {
  content: "\f1de";
}

/* line 978, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-slideshare:before {
  content: "\f1e7";
}

/* line 979, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-smile:before {
  content: "\f118";
}

/* line 980, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-smile-beam:before {
  content: "\f5b8";
}

/* line 981, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-smile-wink:before {
  content: "\f4da";
}

/* line 982, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-smog:before {
  content: "\f75f";
}

/* line 983, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-smoking:before {
  content: "\f48d";
}

/* line 984, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-smoking-ban:before {
  content: "\f54d";
}

/* line 985, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-snapchat:before {
  content: "\f2ab";
}

/* line 986, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-snapchat-ghost:before {
  content: "\f2ac";
}

/* line 987, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-snapchat-square:before {
  content: "\f2ad";
}

/* line 988, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-snowflake:before {
  content: "\f2dc";
}

/* line 989, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-socks:before {
  content: "\f696";
}

/* line 990, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-solar-panel:before {
  content: "\f5ba";
}

/* line 991, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sort:before {
  content: "\f0dc";
}

/* line 992, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sort-alpha-down:before {
  content: "\f15d";
}

/* line 993, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sort-alpha-up:before {
  content: "\f15e";
}

/* line 994, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sort-amount-down:before {
  content: "\f160";
}

/* line 995, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sort-amount-up:before {
  content: "\f161";
}

/* line 996, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sort-down:before {
  content: "\f0dd";
}

/* line 997, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sort-numeric-down:before {
  content: "\f162";
}

/* line 998, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sort-numeric-up:before {
  content: "\f163";
}

/* line 999, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sort-up:before {
  content: "\f0de";
}

/* line 1000, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-soundcloud:before {
  content: "\f1be";
}

/* line 1001, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-spa:before {
  content: "\f5bb";
}

/* line 1002, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-space-shuttle:before {
  content: "\f197";
}

/* line 1003, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-speakap:before {
  content: "\f3f3";
}

/* line 1004, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-spider:before {
  content: "\f717";
}

/* line 1005, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-spinner:before {
  content: "\f110";
}

/* line 1006, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-splotch:before {
  content: "\f5bc";
}

/* line 1007, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-spotify:before {
  content: "\f1bc";
}

/* line 1008, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-spray-can:before {
  content: "\f5bd";
}

/* line 1009, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-square:before {
  content: "\f0c8";
}

/* line 1010, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-square-full:before {
  content: "\f45c";
}

/* line 1011, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-square-root-alt:before {
  content: "\f698";
}

/* line 1012, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-squarespace:before {
  content: "\f5be";
}

/* line 1013, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-stack-exchange:before {
  content: "\f18d";
}

/* line 1014, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-stack-overflow:before {
  content: "\f16c";
}

/* line 1015, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-stamp:before {
  content: "\f5bf";
}

/* line 1016, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-star:before {
  content: "\f005";
}

/* line 1017, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-star-and-crescent:before {
  content: "\f699";
}

/* line 1018, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-star-half:before {
  content: "\f089";
}

/* line 1019, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-star-half-alt:before {
  content: "\f5c0";
}

/* line 1020, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-star-of-david:before {
  content: "\f69a";
}

/* line 1021, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-star-of-life:before {
  content: "\f621";
}

/* line 1022, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-staylinked:before {
  content: "\f3f5";
}

/* line 1023, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-steam:before {
  content: "\f1b6";
}

/* line 1024, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-steam-square:before {
  content: "\f1b7";
}

/* line 1025, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-steam-symbol:before {
  content: "\f3f6";
}

/* line 1026, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-step-backward:before {
  content: "\f048";
}

/* line 1027, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-step-forward:before {
  content: "\f051";
}

/* line 1028, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-stethoscope:before {
  content: "\f0f1";
}

/* line 1029, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sticker-mule:before {
  content: "\f3f7";
}

/* line 1030, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sticky-note:before {
  content: "\f249";
}

/* line 1031, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-stop:before {
  content: "\f04d";
}

/* line 1032, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-stop-circle:before {
  content: "\f28d";
}

/* line 1033, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-stopwatch:before {
  content: "\f2f2";
}

/* line 1034, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-store:before {
  content: "\f54e";
}

/* line 1035, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-store-alt:before {
  content: "\f54f";
}

/* line 1036, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-strava:before {
  content: "\f428";
}

/* line 1037, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-stream:before {
  content: "\f550";
}

/* line 1038, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-street-view:before {
  content: "\f21d";
}

/* line 1039, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-strikethrough:before {
  content: "\f0cc";
}

/* line 1040, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-stripe:before {
  content: "\f429";
}

/* line 1041, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-stripe-s:before {
  content: "\f42a";
}

/* line 1042, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-stroopwafel:before {
  content: "\f551";
}

/* line 1043, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-studiovinari:before {
  content: "\f3f8";
}

/* line 1044, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-stumbleupon:before {
  content: "\f1a4";
}

/* line 1045, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

/* line 1046, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-subscript:before {
  content: "\f12c";
}

/* line 1047, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-subway:before {
  content: "\f239";
}

/* line 1048, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-suitcase:before {
  content: "\f0f2";
}

/* line 1049, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-suitcase-rolling:before {
  content: "\f5c1";
}

/* line 1050, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sun:before {
  content: "\f185";
}

/* line 1051, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-superpowers:before {
  content: "\f2dd";
}

/* line 1052, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-superscript:before {
  content: "\f12b";
}

/* line 1053, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-supple:before {
  content: "\f3f9";
}

/* line 1054, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-surprise:before {
  content: "\f5c2";
}

/* line 1055, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-swatchbook:before {
  content: "\f5c3";
}

/* line 1056, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-swimmer:before {
  content: "\f5c4";
}

/* line 1057, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-swimming-pool:before {
  content: "\f5c5";
}

/* line 1058, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-synagogue:before {
  content: "\f69b";
}

/* line 1059, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sync:before {
  content: "\f021";
}

/* line 1060, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-sync-alt:before {
  content: "\f2f1";
}

/* line 1061, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-syringe:before {
  content: "\f48e";
}

/* line 1062, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-table:before {
  content: "\f0ce";
}

/* line 1063, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-table-tennis:before {
  content: "\f45d";
}

/* line 1064, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tablet:before {
  content: "\f10a";
}

/* line 1065, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tablet-alt:before {
  content: "\f3fa";
}

/* line 1066, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tablets:before {
  content: "\f490";
}

/* line 1067, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tachometer-alt:before {
  content: "\f3fd";
}

/* line 1068, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tag:before {
  content: "\f02b";
}

/* line 1069, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tags:before {
  content: "\f02c";
}

/* line 1070, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tape:before {
  content: "\f4db";
}

/* line 1071, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tasks:before {
  content: "\f0ae";
}

/* line 1072, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-taxi:before {
  content: "\f1ba";
}

/* line 1073, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-teamspeak:before {
  content: "\f4f9";
}

/* line 1074, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-teeth:before {
  content: "\f62e";
}

/* line 1075, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-teeth-open:before {
  content: "\f62f";
}

/* line 1076, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-telegram:before {
  content: "\f2c6";
}

/* line 1077, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-telegram-plane:before {
  content: "\f3fe";
}

/* line 1078, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-temperature-high:before {
  content: "\f769";
}

/* line 1079, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-temperature-low:before {
  content: "\f76b";
}

/* line 1080, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tencent-weibo:before {
  content: "\f1d5";
}

/* line 1081, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-terminal:before {
  content: "\f120";
}

/* line 1082, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-text-height:before {
  content: "\f034";
}

/* line 1083, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-text-width:before {
  content: "\f035";
}

/* line 1084, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-th:before {
  content: "\f00a";
}

/* line 1085, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-th-large:before {
  content: "\f009";
}

/* line 1086, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-th-list:before {
  content: "\f00b";
}

/* line 1087, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-the-red-yeti:before {
  content: "\f69d";
}

/* line 1088, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-theater-masks:before {
  content: "\f630";
}

/* line 1089, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-themeco:before {
  content: "\f5c6";
}

/* line 1090, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-themeisle:before {
  content: "\f2b2";
}

/* line 1091, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-thermometer:before {
  content: "\f491";
}

/* line 1092, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-thermometer-empty:before {
  content: "\f2cb";
}

/* line 1093, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-thermometer-full:before {
  content: "\f2c7";
}

/* line 1094, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-thermometer-half:before {
  content: "\f2c9";
}

/* line 1095, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

/* line 1096, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

/* line 1097, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-think-peaks:before {
  content: "\f731";
}

/* line 1098, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-thumbs-down:before {
  content: "\f165";
}

/* line 1099, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-thumbs-up:before {
  content: "\f164";
}

/* line 1100, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-thumbtack:before {
  content: "\f08d";
}

/* line 1101, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ticket-alt:before {
  content: "\f3ff";
}

/* line 1102, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-times:before {
  content: "\f00d";
}

/* line 1103, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-times-circle:before {
  content: "\f057";
}

/* line 1104, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tint:before {
  content: "\f043";
}

/* line 1105, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tint-slash:before {
  content: "\f5c7";
}

/* line 1106, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tired:before {
  content: "\f5c8";
}

/* line 1107, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-toggle-off:before {
  content: "\f204";
}

/* line 1108, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-toggle-on:before {
  content: "\f205";
}

/* line 1109, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-toilet-paper:before {
  content: "\f71e";
}

/* line 1110, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-toolbox:before {
  content: "\f552";
}

/* line 1111, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tooth:before {
  content: "\f5c9";
}

/* line 1112, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-torah:before {
  content: "\f6a0";
}

/* line 1113, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-torii-gate:before {
  content: "\f6a1";
}

/* line 1114, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tractor:before {
  content: "\f722";
}

/* line 1115, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-trade-federation:before {
  content: "\f513";
}

/* line 1116, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-trademark:before {
  content: "\f25c";
}

/* line 1117, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-traffic-light:before {
  content: "\f637";
}

/* line 1118, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-train:before {
  content: "\f238";
}

/* line 1119, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-transgender:before {
  content: "\f224";
}

/* line 1120, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-transgender-alt:before {
  content: "\f225";
}

/* line 1121, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-trash:before {
  content: "\f1f8";
}

/* line 1122, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-trash-alt:before {
  content: "\f2ed";
}

/* line 1123, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tree:before {
  content: "\f1bb";
}

/* line 1124, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-trello:before {
  content: "\f181";
}

/* line 1125, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tripadvisor:before {
  content: "\f262";
}

/* line 1126, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-trophy:before {
  content: "\f091";
}

/* line 1127, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-truck:before {
  content: "\f0d1";
}

/* line 1128, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-truck-loading:before {
  content: "\f4de";
}

/* line 1129, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-truck-monster:before {
  content: "\f63b";
}

/* line 1130, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-truck-moving:before {
  content: "\f4df";
}

/* line 1131, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-truck-pickup:before {
  content: "\f63c";
}

/* line 1132, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tshirt:before {
  content: "\f553";
}

/* line 1133, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tty:before {
  content: "\f1e4";
}

/* line 1134, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tumblr:before {
  content: "\f173";
}

/* line 1135, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tumblr-square:before {
  content: "\f174";
}

/* line 1136, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-tv:before {
  content: "\f26c";
}

/* line 1137, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-twitch:before {
  content: "\f1e8";
}

/* line 1138, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-twitter:before {
  content: "\f099";
}

/* line 1139, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-twitter-square:before {
  content: "\f081";
}

/* line 1140, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-typo3:before {
  content: "\f42b";
}

/* line 1141, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-uber:before {
  content: "\f402";
}

/* line 1142, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-uikit:before {
  content: "\f403";
}

/* line 1143, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-umbrella:before {
  content: "\f0e9";
}

/* line 1144, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-umbrella-beach:before {
  content: "\f5ca";
}

/* line 1145, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-underline:before {
  content: "\f0cd";
}

/* line 1146, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-undo:before {
  content: "\f0e2";
}

/* line 1147, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-undo-alt:before {
  content: "\f2ea";
}

/* line 1148, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-uniregistry:before {
  content: "\f404";
}

/* line 1149, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-universal-access:before {
  content: "\f29a";
}

/* line 1150, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-university:before {
  content: "\f19c";
}

/* line 1151, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-unlink:before {
  content: "\f127";
}

/* line 1152, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-unlock:before {
  content: "\f09c";
}

/* line 1153, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-unlock-alt:before {
  content: "\f13e";
}

/* line 1154, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-untappd:before {
  content: "\f405";
}

/* line 1155, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-upload:before {
  content: "\f093";
}

/* line 1156, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-usb:before {
  content: "\f287";
}

/* line 1157, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user:before {
  content: "\f007";
}

/* line 1158, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-alt:before {
  content: "\f406";
}

/* line 1159, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-alt-slash:before {
  content: "\f4fa";
}

/* line 1160, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-astronaut:before {
  content: "\f4fb";
}

/* line 1161, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-check:before {
  content: "\f4fc";
}

/* line 1162, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-circle:before {
  content: "\f2bd";
}

/* line 1163, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-clock:before {
  content: "\f4fd";
}

/* line 1164, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-cog:before {
  content: "\f4fe";
}

/* line 1165, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-edit:before {
  content: "\f4ff";
}

/* line 1166, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-friends:before {
  content: "\f500";
}

/* line 1167, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-graduate:before {
  content: "\f501";
}

/* line 1168, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-injured:before {
  content: "\f728";
}

/* line 1169, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-lock:before {
  content: "\f502";
}

/* line 1170, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-md:before {
  content: "\f0f0";
}

/* line 1171, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-minus:before {
  content: "\f503";
}

/* line 1172, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-ninja:before {
  content: "\f504";
}

/* line 1173, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-plus:before {
  content: "\f234";
}

/* line 1174, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-secret:before {
  content: "\f21b";
}

/* line 1175, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-shield:before {
  content: "\f505";
}

/* line 1176, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-slash:before {
  content: "\f506";
}

/* line 1177, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-tag:before {
  content: "\f507";
}

/* line 1178, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-tie:before {
  content: "\f508";
}

/* line 1179, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-user-times:before {
  content: "\f235";
}

/* line 1180, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-users:before {
  content: "\f0c0";
}

/* line 1181, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-users-cog:before {
  content: "\f509";
}

/* line 1182, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-ussunnah:before {
  content: "\f407";
}

/* line 1183, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-utensil-spoon:before {
  content: "\f2e5";
}

/* line 1184, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-utensils:before {
  content: "\f2e7";
}

/* line 1185, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-vaadin:before {
  content: "\f408";
}

/* line 1186, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-vector-square:before {
  content: "\f5cb";
}

/* line 1187, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-venus:before {
  content: "\f221";
}

/* line 1188, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-venus-double:before {
  content: "\f226";
}

/* line 1189, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-venus-mars:before {
  content: "\f228";
}

/* line 1190, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-viacoin:before {
  content: "\f237";
}

/* line 1191, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-viadeo:before {
  content: "\f2a9";
}

/* line 1192, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-viadeo-square:before {
  content: "\f2aa";
}

/* line 1193, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-vial:before {
  content: "\f492";
}

/* line 1194, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-vials:before {
  content: "\f493";
}

/* line 1195, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-viber:before {
  content: "\f409";
}

/* line 1196, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-video:before {
  content: "\f03d";
}

/* line 1197, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-video-slash:before {
  content: "\f4e2";
}

/* line 1198, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-vihara:before {
  content: "\f6a7";
}

/* line 1199, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-vimeo:before {
  content: "\f40a";
}

/* line 1200, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-vimeo-square:before {
  content: "\f194";
}

/* line 1201, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-vimeo-v:before {
  content: "\f27d";
}

/* line 1202, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-vine:before {
  content: "\f1ca";
}

/* line 1203, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-vk:before {
  content: "\f189";
}

/* line 1204, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-vnv:before {
  content: "\f40b";
}

/* line 1205, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-volleyball-ball:before {
  content: "\f45f";
}

/* line 1206, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-volume-down:before {
  content: "\f027";
}

/* line 1207, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-volume-mute:before {
  content: "\f6a9";
}

/* line 1208, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-volume-off:before {
  content: "\f026";
}

/* line 1209, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-volume-up:before {
  content: "\f028";
}

/* line 1210, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-vote-yea:before {
  content: "\f772";
}

/* line 1211, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-vr-cardboard:before {
  content: "\f729";
}

/* line 1212, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-vuejs:before {
  content: "\f41f";
}

/* line 1213, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-walking:before {
  content: "\f554";
}

/* line 1214, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wallet:before {
  content: "\f555";
}

/* line 1215, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-warehouse:before {
  content: "\f494";
}

/* line 1216, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-water:before {
  content: "\f773";
}

/* line 1217, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-weebly:before {
  content: "\f5cc";
}

/* line 1218, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-weibo:before {
  content: "\f18a";
}

/* line 1219, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-weight:before {
  content: "\f496";
}

/* line 1220, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-weight-hanging:before {
  content: "\f5cd";
}

/* line 1221, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-weixin:before {
  content: "\f1d7";
}

/* line 1222, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-whatsapp:before {
  content: "\f232";
}

/* line 1223, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-whatsapp-square:before {
  content: "\f40c";
}

/* line 1224, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wheelchair:before {
  content: "\f193";
}

/* line 1225, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-whmcs:before {
  content: "\f40d";
}

/* line 1226, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wifi:before {
  content: "\f1eb";
}

/* line 1227, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wikipedia-w:before {
  content: "\f266";
}

/* line 1228, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wind:before {
  content: "\f72e";
}

/* line 1229, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-window-close:before {
  content: "\f410";
}

/* line 1230, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-window-maximize:before {
  content: "\f2d0";
}

/* line 1231, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-window-minimize:before {
  content: "\f2d1";
}

/* line 1232, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-window-restore:before {
  content: "\f2d2";
}

/* line 1233, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-windows:before {
  content: "\f17a";
}

/* line 1234, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wine-bottle:before {
  content: "\f72f";
}

/* line 1235, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wine-glass:before {
  content: "\f4e3";
}

/* line 1236, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wine-glass-alt:before {
  content: "\f5ce";
}

/* line 1237, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wix:before {
  content: "\f5cf";
}

/* line 1238, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wizards-of-the-coast:before {
  content: "\f730";
}

/* line 1239, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wolf-pack-battalion:before {
  content: "\f514";
}

/* line 1240, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-won-sign:before {
  content: "\f159";
}

/* line 1241, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wordpress:before {
  content: "\f19a";
}

/* line 1242, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wordpress-simple:before {
  content: "\f411";
}

/* line 1243, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wpbeginner:before {
  content: "\f297";
}

/* line 1244, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wpexplorer:before {
  content: "\f2de";
}

/* line 1245, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wpforms:before {
  content: "\f298";
}

/* line 1246, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wpressr:before {
  content: "\f3e4";
}

/* line 1247, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-wrench:before {
  content: "\f0ad";
}

/* line 1248, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-x-ray:before {
  content: "\f497";
}

/* line 1249, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-xbox:before {
  content: "\f412";
}

/* line 1250, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-xing:before {
  content: "\f168";
}

/* line 1251, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-xing-square:before {
  content: "\f169";
}

/* line 1252, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-y-combinator:before {
  content: "\f23b";
}

/* line 1253, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-yahoo:before {
  content: "\f19e";
}

/* line 1254, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-yandex:before {
  content: "\f413";
}

/* line 1255, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-yandex-international:before {
  content: "\f414";
}

/* line 1256, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-yelp:before {
  content: "\f1e9";
}

/* line 1257, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-yen-sign:before {
  content: "\f157";
}

/* line 1258, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-yin-yang:before {
  content: "\f6ad";
}

/* line 1259, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-yoast:before {
  content: "\f2b1";
}

/* line 1260, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-youtube:before {
  content: "\f167";
}

/* line 1261, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-youtube-square:before {
  content: "\f431";
}

/* line 1262, ../../../sass/common/ext/fontawesome/_icons.scss */
.fa-zhihu:before {
  content: "\f63f";
}

/* line 4, ../../../sass/common/ext/fontawesome/_screen-reader.scss */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* line 48, ../../../sass/common/ext/fontawesome/_mixins.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
 * Font Awesome Free 5.5.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  src: url("/var/themes/common/font-awesome/fonts/fa-regular-400.eot");
  src: url("/var/themes/common/font-awesome/fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("/var/themes/common/font-awesome/fonts/fa-regular-400.woff2") format("woff2"), url("/var/themes/common/font-awesome/fonts/fa-regular-400.woff") format("woff"), url("/var/themes/common/font-awesome/fonts/fa-regular-400.ttf") format("truetype"), url("/var/themes/common/font-awesome/fonts/fa-regular-400.svg#fontawesome") format("svg");
}
/* line 19, ../../../sass/common/ext/fontawesome/regular.scss */
.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
}

/*!
 * Font Awesome Free 5.5.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  src: url("/var/themes/common/font-awesome/fonts/fa-solid-900.eot");
  src: url("/var/themes/common/font-awesome/fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/var/themes/common/font-awesome/fonts/fa-solid-900.woff2") format("woff2"), url("/var/themes/common/font-awesome/fonts/fa-solid-900.woff") format("woff"), url("/var/themes/common/font-awesome/fonts/fa-solid-900.ttf") format("truetype"), url("/var/themes/common/font-awesome/fonts/fa-solid-900.svg#fontawesome") format("svg");
}
/* line 19, ../../../sass/common/ext/fontawesome/solid.scss */
.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

/* line 2, ../../../sass/common/screen/default.scss */
body {
  background: url("/custom/weyrich/var/themes/weyrich/images/bg.jpg") #FFF;
  margin: 5px;
  font-size: 11px;
}

/* line 10, ../../../sass/common/screen/default.scss */
.debug {
  border: .3rem #ffcc57 dashed;
  padding: .2rem;
}

/* line 12, ../../../sass/common/screen/default.scss */
* {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-size: 14px;
}

/* line 17, ../../../sass/common/screen/default.scss */
a {
  text-decoration: none;
  color: black;
}

/* line 22, ../../../sass/common/screen/default.scss */
a:hover {
  color: #AA5500;
  border-bottom: 1px #AA5500 double;
}

/* line 27, ../../../sass/common/screen/default.scss */
a:focus {
  background-color: white;
  border: 1px black solid;
}

/* Applique a tous les tableaux une largeur de 100% par défaut */
/* line 33, ../../../sass/common/screen/default.scss */
* table {
  width: 100%;
}

/* Focus colors */
/* line 37, ../../../sass/common/screen/default.scss */
input:focus {
  background-color: white;
}

/* line 41, ../../../sass/common/screen/default.scss */
textarea:focus {
  background-color: white;
}

/* line 45, ../../../sass/common/screen/default.scss */
select:focus {
  background-color: white;
}

/* LAYOUT */
/* line 50, ../../../sass/common/screen/default.scss */
#leftSide {
  width: 203px;
  float: left;
  margin: 0 5px 5px 5px;
}

/* line 57, ../../../sass/common/screen/default.scss */
#rightSide {
  margin: 5px;
  overflow: auto;
}

/* line 62, ../../../sass/common/screen/default.scss */
div.logoDiv {
  color: #993333;
  font-weight: bold;
  border: 1px solid gray;
  padding: 4px;
  text-align: center;
}

/* line 70, ../../../sass/common/screen/default.scss */
#accountPicture {
  width: 150px;
  margin-left: 25px;
  margin-right: 25px;
}

/* HELP */
/* line 77, ../../../sass/common/screen/default.scss */
img.mainHelpImg {
  position: absolute;
  right: 10px;
  top: 2px;
}

/* line 83, ../../../sass/common/screen/default.scss */
img.mainHelpImg:hover {
  cursor: pointer;
}

/* line 87, ../../../sass/common/screen/default.scss */
div.mainHelpDiv {
  position: absolute;
  right: 1%;
  width: 23%;
  height: 130px;
  top: 2px;
  display: none;
  border: 2px #FFD962 solid;
  padding: 5px;
  -moz-border-radius: 20px 0px 20px 20px;
  z-index: 10;
  background-color: #FFFFE6;
  font-size: 9px;
}

/* DEBUG */
/* line 103, ../../../sass/common/screen/default.scss */
#debugDiv {
  position: absolute;
  width: 25%;
  height: 25%;
  margin-right: auto;
  margin-left: 25%;
  margin-top: 25%;
  display: none;
  border: 3px black solid;
  background-color: #AAAAAA;
}

/* WAIT */
/* line 116, ../../../sass/common/screen/default.scss */
div.mainWaitDiv {
  position: absolute;
  z-index: 2;
  height: 30px;
  left: 400px;
  top: 200px;
  width: 300px;
  display: none;
}

/* COMPLETION */
/* line 127, ../../../sass/common/screen/default.scss */
div#mainCompletionDiv {
  background-color: #DDDDCC;
  position: absolute;
  border: 1px black solid;
  display: none;
}

/* line 134, ../../../sass/common/screen/default.scss */
.overCompletionDiv {
  background-color: #DDDDDD;
  cursor: pointer;
}

/* line 139, ../../../sass/common/screen/default.scss */
div#mainCompletionDiv .selectedString {
  font-weight: bold;
}

/* line 143, ../../../sass/common/screen/default.scss */
div#mainCompletionDiv div.selectedCompletionDiv {
  background-color: #CCCCCC;
  display: block;
}

/* SEARCH */
/* line 149, ../../../sass/common/screen/default.scss */
.search {
  background-color: #DDDDDD;
}

/* line 153, ../../../sass/common/screen/default.scss */
.search_hover {
  background-color: #FFFFFF;
}

/* line 158, ../../../sass/common/screen/default.scss */
div.logoDiv {
  /*position:absolute;*/
  height: 120px;
  color: #993333;
  font-weight: bold;
  border: 1px solid gray;
  padding: 4px;
}

/* line 167, ../../../sass/common/screen/default.scss */
#logo p {
  text-align: center;
  margin-right: 10px;
}

/* line 172, ../../../sass/common/screen/default.scss */
#logo {
  width: 196px;
  border: 1px gray solid;
  background-image: url(/var/themes/demo/images/login_logo.png);
  background-size: 80%;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 40px;
  padding-left: 5px;
  background-color: white;
  display: inline-block;
  vertical-align: top;
}

/* line 187, ../../../sass/common/screen/default.scss */
a {
  text-decoration: none;
  color: black;
}

/* line 192, ../../../sass/common/screen/default.scss */
a:hover {
  color: #AA5500;
  border-bottom: 1px #AA5500 double;
}

/* line 197, ../../../sass/common/screen/default.scss */
img.mainHelpImg {
  position: absolute;
  top: 2px;
}

/* line 202, ../../../sass/common/screen/default.scss */
img.mainHelpImg:hover {
  cursor: pointer;
}

/* line 206, ../../../sass/common/screen/default.scss */
div.mainHelpDiv {
  position: absolute;
  left: 85%;
  max-width: 15%;
  height: 100px;
  top: 2px;
  display: none;
  border: 2px #FFD962 solid;
  padding: 15px;
  -moz-border-radius: 20px 0px 20px 20px;
  z-index: 10;
  background-color: #FFFFE6;
  font-size: 9px;
}

/* line 222, ../../../sass/common/screen/default.scss */
div.aClass {
  background-color: #FF0000;
  position: absolute;
  border: 1px black solid;
  display: none;
}

/* line 229, ../../../sass/common/screen/default.scss */
.logs-object, .logs-query {
  margin-left: -100px;
}

/* line 233, ../../../sass/common/screen/default.scss */
.logs-object {
  color: blue;
}

/* line 237, ../../../sass/common/screen/default.scss */
.logs-query {
  color: red;
}

/* line 241, ../../../sass/common/screen/default.scss */
.logs-query + .logs-inner {
  border: 2px gray solid;
  background-color: #FEE;
  padding: 5px;
}

/* line 1, ../../../sass/common/screen/abonnement.scss */
table.abonnement_clients tr td {
  vertical-align: top;
  text-align: left;
}

/* line 6, ../../../sass/common/screen/abonnement.scss */
table.abonnement_content {
  height: 50px;
  vertical-align: top;
}

/* line 11, ../../../sass/common/screen/abonnement.scss */
table.abonnement_detail {
  vertical-align: top;
  width: 90%;
  left: 15%;
  height: 100%;
  border: 1px gray solid;
}

/* line 19, ../../../sass/common/screen/abonnement.scss */
table.abonnement_tarif {
  vertical-align: top;
  right: 5%;
  width: 95%;
  height: 100%;
  border: 1px gray solid;
}

/* line 27, ../../../sass/common/screen/abonnement.scss */
span.article_info {
  color: #777777;
}

/* line 31, ../../../sass/common/screen/abonnement.scss */
table.abonnement_lignes th {
  border: 1px gray solid;
}

/* line 35, ../../../sass/common/screen/abonnement.scss */
table.abonnement_lignes td {
  border-left: 0px;
}

/* line 39, ../../../sass/common/screen/abonnement.scss */
table.abonnement_lignes td:first-child {
  border-left: 1px gray solid;
}

/* line 43, ../../../sass/common/screen/abonnement.scss */
.user_summary {
  display: grid;
  border: 1px gray solid;
  padding: .5rem;
  margin: auto;
  grid-template-columns: repeat(15, 1fr);
  grid-gap: .5rem;
  max-width: 800px;
}
/* line 47, ../../../sass/common/screen/abonnement.scss */
.user_summary > div {
  margin: auto;
}
/* line 48, ../../../sass/common/screen/abonnement.scss */
.user_summary .label {
  font-weight: bold;
  text-align: center;
  color: #AAA;
}
/* line 49, ../../../sass/common/screen/abonnement.scss */
.user_summary .checkbox {
  width: 1em;
  height: 1em;
  border: 1px solid #DDD;
}
/* line 50, ../../../sass/common/screen/abonnement.scss */
.user_summary .current {
  grid-column: 1/15;
  font-weight: bold;
  color: #A00;
}
/* line 53, ../../../sass/common/screen/abonnement.scss */
.user_summary .subscribed .checkbox {
  background-color: #DDD;
  border: 1px solid gray;
}
/* line 54, ../../../sass/common/screen/abonnement.scss */
.user_summary .subscribed .label {
  color: #000;
}
/* line 57, ../../../sass/common/screen/abonnement.scss */
.user_summary .shipped .checkbox {
  background: url("/custom/weyrich/var/themes/weyrich/images/global/img_check.png") no-repeat;
  border: 1px solid gray;
  background-size: contain;
}
/* line 60, ../../../sass/common/screen/abonnement.scss */
.user_summary .available .checkbox {
  background-color: #3a87ad;
  border: 1px solid gray;
}

/* page main "Abonnement : synthèse" */
/* line 65, ../../../sass/common/screen/abonnement.scss */
.sub-summary {
  background-color: white;
  padding: 1rem;
}
/* line 67, ../../../sass/common/screen/abonnement.scss */
.sub-summary h1 {
  background-color: #DADADA;
  font-size: larger;
  border: 1px #BBBBDD dotted;
}
/* line 69, ../../../sass/common/screen/abonnement.scss */
.sub-summary h2 a {
  color: darkred;
  font-weight: bold;
}
/* line 70, ../../../sass/common/screen/abonnement.scss */
.sub-summary h2 a:after {
  content: '-';
}
/* line 73, ../../../sass/common/screen/abonnement.scss */
.sub-summary .subscription {
  border-top: 1px black solid;
  margin-top: 2rem;
  padding-top: 1rem;
}
/* line 74, ../../../sass/common/screen/abonnement.scss */
.sub-summary .subscription:first-of-type {
  border-top: 0;
  margin-top: 0;
  padding-top: 0rem;
}
/* line 76, ../../../sass/common/screen/abonnement.scss */
.sub-summary .subscription:last-of-type {
  padding-bottom: 2rem;
}
/* line 80, ../../../sass/common/screen/abonnement.scss */
.sub-summary .actions .exports select {
  margin-bottom: 1rem;
  padding: 2px;
  border: 0;
}
/* line 82, ../../../sass/common/screen/abonnement.scss */
.sub-summary .publication {
  display: grid;
  grid-template-columns: 30px 1fr 100px 100px 100px 100px;
  max-width: 700px;
}
/* line 85, ../../../sass/common/screen/abonnement.scss */
.sub-summary .publication > div {
  border: 1px #CCC solid;
  padding: 0.3rem;
  text-align: center;
}

/* PARTIE FORM */
/* line 3, ../../../sass/common/screen/article.scss */
table#article_form label {
  width: 140px;
}

/* line 4, ../../../sass/common/screen/article.scss */
table#article_form tr td select {
  width: 160px;
}

/* barcode */
/* line 7, ../../../sass/common/screen/article.scss */
.barcode {
  font-family: EanP48Lfz;
  font-size: 48pt;
  white-space: nowrap;
}

/* CSS AUTEURS */
/* line 2, ../../../sass/common/screen/auteur.scss */
table.detail_contratcumul {
  padding: 0px;
  border-collapse: collapse;
}

/* line 7, ../../../sass/common/screen/auteur.scss */
table.detail_contratcumul td {
  border: 1px gray solid;
}

/* line 11, ../../../sass/common/screen/auteur.scss */
table.detail_contratcumul td.noborder {
  border: 0px;
}

/* line 15, ../../../sass/common/screen/auteur.scss */
table.detail_contratcumul td.total {
  border: 1px gray solid;
  font-weight: bold;
}

/* line 20, ../../../sass/common/screen/auteur.scss */
table.detail_ayantdroitreglement td.total {
  line-height: 25px;
  font-weight: bold;
}

/* line 2, ../../../sass/common/screen/build_constraints.scss */
#buildConstr * {
  font-size: 9px;
}

/* line 6, ../../../sass/common/screen/build_constraints.scss */
#buildConstr table th {
  background-color: #CCCCFF;
  border: 1px solid gray;
  padding: 0px;
}

/* line 12, ../../../sass/common/screen/build_constraints.scss */
#buildConstr td.bc_title {
  background-color: #DDDDDD;
  border-top: 1px black solid;
}

/* line 17, ../../../sass/common/screen/build_constraints.scss */
#buildConstr tr.bc_selected_row {
  background-color: #FCA;
}

/* line 21, ../../../sass/common/screen/build_constraints.scss */
#buildConstr tr.bc_inner {
  background-color: #FFf5f5;
}

/* line 25, ../../../sass/common/screen/build_constraints.scss */
#buildConstr td.bc_action {
  font-size: 10px;
  padding: 3px;
  text-align: center;
  font-weight: bold;
}

/* line 31, ../../../sass/common/screen/build_constraints.scss */
#buildConstr td.bc_action a.confirm {
  color: #FF5555;
}

/* line 35, ../../../sass/common/screen/build_constraints.scss */
#buildConstr td.bc_action a.cancel {
  color: #5555FF;
}

/* line 5, ../../../sass/common/screen/charts.scss */
.chart-main {
  border: 1px gray solid;
  padding: 10px;
}
/* line 9, ../../../sass/common/screen/charts.scss */
.chart-main h1 {
  font-size: 2em;
  font-weight: bold;
}
/* line 15, ../../../sass/common/screen/charts.scss */
.chart-main .bar-legend span {
  width: 10px;
  height: 10px;
  border: 1px gray solid;
  display: inline-block;
  margin-right: 3px;
}
/* line 23, ../../../sass/common/screen/charts.scss */
.chart-main .row {
  margin-bottom: 15px;
}

/* line 30, ../../../sass/common/screen/charts.scss */
.chart-item {
  color: black;
}

/* line 34, ../../../sass/common/screen/charts.scss */
.chart-legend {
  vertical-align: top;
  margin-bottom: 5px;
}

/*	CSS DEPOTS-VENTE	*/
/* PARTIR DETAIL */
/*----- partie infos & adresse -----*/
/* line 5, ../../../sass/common/screen/depotvente.scss */
table.depotvente_adresses_detail {
  float: right;
  width: 230px;
  margin: 20px 0 50px 0;
  padding-bottom: 5px;
  border: 1px solid #ddd;
}

/* line 12, ../../../sass/common/screen/depotvente.scss */
table.depotvente_adresses_detail th {
  background-color: #ddd;
  height: 10px;
  padding-left: 2px;
  border: 1px solid #ddd;
}

/* line 18, ../../../sass/common/screen/depotvente.scss */
table.depotvente_adresses_detail td {
  font-size: 12px;
  padding-left: 2px;
}

/* line 22, ../../../sass/common/screen/depotvente.scss */
table#depotvente_infos_detail {
  float: left;
  width: 50%;
  margin: 20px 0 50px 0;
  border: 1px solid #ddd;
}

/* line 28, ../../../sass/common/screen/depotvente.scss */
table#depotvente_infos_detail th {
  height: 10px;
  padding-left: 5px;
  background-color: #ddd;
  border: 1px solid #ddd;
}

/* line 34, ../../../sass/common/screen/depotvente.scss */
table#depotvente_infos_detail label {
  float: left;
  display: block;
  width: 125px;
  margin-left: 5px;
}

/* line 40, ../../../sass/common/screen/depotvente.scss */
span#depotvente_detail_observation {
  display: block;
  white-space: pre;
  margin: 5px 0 0 5px;
}

/* PARTIR PRINT */
/*----- partie titre + logo Coprur -----*/
/* line 44, ../../../sass/common/screen/depotvente.scss */
img#depotvente_logo_print {
  position: absolute;
  top: 1%;
  left: 1%;
}

/* line 49, ../../../sass/common/screen/depotvente.scss */
#depotvente_titre_print {
  text-align: center;
  font-size: 2em;
  background: none;
}

/* line 54, ../../../sass/common/screen/depotvente.scss */
#depotvente_libelle_print {
  text-align: center;
  font-size: 1.5em;
}

/*----- partie infos & adresse -----*/
/* line 60, ../../../sass/common/screen/depotvente.scss */
table.depotvente_adresses_print {
  float: right;
  width: 230px;
  margin: 20px 0 50px 0;
  padding-bottom: 5px;
  border: 1px solid #ccc;
}

/* line 67, ../../../sass/common/screen/depotvente.scss */
table.depotvente_adresses_print th {
  background-color: #ccc;
  height: 10px;
  padding-left: 2px;
  border: 1px solid #ccc;
}

/* line 73, ../../../sass/common/screen/depotvente.scss */
table.depotvente_adresses_print td {
  font-size: 12px;
  padding-left: 2px;
}

/* line 77, ../../../sass/common/screen/depotvente.scss */
table#depotvente_infos_print {
  float: left;
  width: 50%;
  margin: 20px 0 50px 0;
  border: 1px solid #ccc;
}

/* line 83, ../../../sass/common/screen/depotvente.scss */
table#depotvente_infos_print th {
  height: 10px;
  padding-left: 5px;
  background-color: #ccc;
  border: 1px solid #ccc;
}

/* line 89, ../../../sass/common/screen/depotvente.scss */
table#depotvente_infos_print label {
  float: left;
  display: block;
  width: 125px;
  margin-left: 5px;
}

/* line 95, ../../../sass/common/screen/depotvente.scss */
span#depotvente_print_observation {
  display: block;
  white-space: pre;
  margin: 5px 0 0 5px;
}

/*----- partie liste des articles -----*/
/* line 98, ../../../sass/common/screen/depotvente.scss */
table#depotvente_detail_liste_articles_print {
  margin: 10px 0;
  border: 1px solid black;
}

/* line 102, ../../../sass/common/screen/depotvente.scss */
table#depotvente_detail_liste_articles_print thead {
  border: 1px solid black;
}

/* line 105, ../../../sass/common/screen/depotvente.scss */
table#depotvente_detail_liste_articles_print thead tr th {
  text-align: left;
  font-size: 10px;
}

/*----- parties paragrahpes (g�n�rales) -----*/
/* line 111, ../../../sass/common/screen/depotvente.scss */
div.depotvente_paragraphe_print {
  clear: both;
  margin: 50px 0;
}

/*----- parties bas de page (date & signature) -----*/
/* line 117, ../../../sass/common/screen/depotvente.scss */
p.footer {
  margin-left: 50%;
}

/*************** PARTIE reconduction *******************/
/* line 124, ../../../sass/common/screen/depotvente.scss */
table.depotvente_innerreconduction_articles {
  border: 1px gray dotted;
}

/* line 1, ../../../sass/common/screen/detail.scss */
div.detail_div {
  margin: 5px;
}

/* line 5, ../../../sass/common/screen/detail.scss */
div.detail_div h2 {
  background-color: #DADADA;
  font-size: larger;
  border: 1px #BBBBDD dotted;
}

/* line 10, ../../../sass/common/screen/detail.scss */
div.detail_div h4 {
  background-color: #ccc;
  margin: 0;
  padding: 0;
}

/* line 15, ../../../sass/common/screen/detail.scss */
span.entete_fiche {
  margin: 5px 0;
}

/* line 19, ../../../sass/common/screen/detail.scss */
div.detail_div label {
  float: left;
  min-width: 200px;
  white-space: no-wrap;
  margin-right: 10px;
  background-color: #DADADA;
  line-height: 12px;
}

/* line 30, ../../../sass/common/screen/detail.scss */
.detail_div .innerLink th {
  text-align: left;
}

/* line 33, ../../../sass/common/screen/detail.scss */
div.detail_div tbody {
  border: 1pt gray solid;
}

/* line 37, ../../../sass/common/screen/detail.scss */
div.detail_div td {
  vertical-align: middle;
}

/* line 41, ../../../sass/common/screen/detail.scss */
div.detail_div th {
  background-color: #DADADA;
}

/* line 44, ../../../sass/common/screen/detail.scss */
div.detail_div tfoot {
  background-color: #DDDDDD;
}

/* line 48, ../../../sass/common/screen/detail.scss */
div.detail_div div.detail_status {
  text-align: center;
  font-size: x-small;
  overflow: auto;
  bottom: 0px;
  position: relative;
}

/* line 55, ../../../sass/common/screen/detail.scss */
div.detail_div img {
  max-width: 300px;
  max-height: 300px;
}

/* line 60, ../../../sass/common/screen/detail.scss */
.detail_actions {
  margin: 5px;
  text-align: left;
  cursor: pointer;
}

/* line 66, ../../../sass/common/screen/detail.scss */
.detail_actions a {
  margin-left: 1px;
  font-size: 12px;
  padding: 1px;
  background-color: #F0F0F0;
  border: 1px #A0A0DD solid;
  white-space: wrap;
  line-height: 24px;
}

/* line 76, ../../../sass/common/screen/detail.scss */
div.detail_openhide_header {
  background-color: #DADADA;
  margin: 3px;
}

/* line 81, ../../../sass/common/screen/detail.scss */
div.detail_openhide_content {
  border: 1px gray dotted;
}

/* line 85, ../../../sass/common/screen/detail.scss */
a.adminAction {
  background-color: #F08080;
}

/* line 89, ../../../sass/common/screen/detail.scss */
a.managerAction {
  background-color: #FFDE40;
}

/* line 94, ../../../sass/common/screen/detail.scss */
.detail_div .actions {
  display: flex;
  flex-direction: row;
  margin-bottom: .5rem;
}
/* line 96, ../../../sass/common/screen/detail.scss */
.detail_div .actions .generic {
  display: flex;
  gap: .2rem;
  margin-right: auto;
}
/* line 102, ../../../sass/common/screen/detail.scss */
.detail_div .actions .action {
  font-size: .8rem;
  padding: .5rem 1rem;
  border: 1px #CCC solid;
  background: #E2E2E2;
  margin: auto;
}
/* line 104, ../../../sass/common/screen/detail.scss */
.detail_div .actions .action:hover {
  background-color: #D5D5D5;
}

/* line 3, ../../../sass/common/screen/docfacture.scss */
.formCheck.docfacture .import-actions {
  border: 1px black dotted;
  max-width: 400px;
  margin: 3px;
  padding: 2px;
  background-color: #EEE;
  font-weight: bold;
}

/* line 13, ../../../sass/common/screen/docfacture.scss */
.docfacture.print .order-logo {
  /*background-color:#CCDDEE;*/
  display: inline-block;
  padding: 0.5rem 0;
}

/* line 19, ../../../sass/common/screen/docfacture.scss */
.formCheck.docfacture .import-actions div {
  margin: 5px 0px 5px 10px;
  font-weight: normal;
}

/* line 24, ../../../sass/common/screen/docfacture.scss */
.formCheck.docfacture .import-actions .button {
  line-height: 25px;
  padding-left: 19px;
}

/* line 29, ../../../sass/common/screen/docfacture.scss */
.formCheck.docfacture .import-actions .button.excel {
  background: url("/custom/weyrich/var/themes/weyrich/images/global/icon-excel.png") no-repeat left transparent;
  background-size: contain;
}

/* line 34, ../../../sass/common/screen/docfacture.scss */
.formCheck.docfacture .import-actions .button.csv {
  background: url("/custom/weyrich/var/themes/weyrich/images/global/icon-csv.gif") no-repeat left transparent;
  background-size: contain;
}

/* Header*/
/* line 43, ../../../sass/common/screen/docfacture.scss */
select.docfacture_headerSelector {
  margin-right: 10px;
}

/* PARTIE COMMUNE DOCFACTURE */
/* line 48, ../../../sass/common/screen/docfacture.scss */
table.docfacture_header td.docfacture_entete_facture {
  margin: 5px 10px;
  width: 400px;
}

/* line 53, ../../../sass/common/screen/docfacture.scss */
td.docfacture_entete_facture .docfacture_hook_header {
  border: 0;
}

/* line 57, ../../../sass/common/screen/docfacture.scss */
.docfacture_entete_facture table tbody tr td {
  line-height: 12px;
  vertical-align: top;
}

/* line 62, ../../../sass/common/screen/docfacture.scss */
td.docfacture_entete_facture div {
  border: 1px solid #ccc;
}

/* line 66, ../../../sass/common/screen/docfacture.scss */
table.docfacture_header td.docfacture_adresse_livr, table.docfacture_header td.docfacture_adresse_fact {
  vertical-align: top;
  width: 200px;
  height: 150px;
  border: 1px solid #ccc;
  text-align: left;
}

/* line 74, ../../../sass/common/screen/docfacture.scss */
table.docfacture_header .label {
  float: left;
  width: 125px;
  margin-left: 5px;
}

/* line 80, ../../../sass/common/screen/docfacture.scss */
div.docfacture_entete_liste_articles {
  height: 13px;
  width: 100%;
  margin: 5px 0;
  text-align: left;
}

/* line 88, ../../../sass/common/screen/docfacture.scss */
span.entete_validation.commande {
  color: #999999;
}
/* line 89, ../../../sass/common/screen/docfacture.scss */
span.entete_validation.facture {
  color: #FF5555;
}
/* line 90, ../../../sass/common/screen/docfacture.scss */
span.entete_validation.facture_web {
  color: #FF9999;
}
/* line 91, ../../../sass/common/screen/docfacture.scss */
span.entete_validation.avoir {
  color: #55FF55;
}
/* line 92, ../../../sass/common/screen/docfacture.scss */
span.entete_validation.bl {
  color: #5555FF;
}

/* line 95, ../../../sass/common/screen/docfacture.scss */
table tr th {
  text-align: left;
}

/* line 99, ../../../sass/common/screen/docfacture.scss */
div.docfacture_bas {
  position: relative;
  height: 105px;
  margin: 5px 0;
}

/* line 105, ../../../sass/common/screen/docfacture.scss */
table.docfacture_talon_reglement {
  border: 1px solid #000;
  left: 0%;
  top: 0%;
}

/* line 111, ../../../sass/common/screen/docfacture.scss */
.docfacture_recap_tva {
  border: 1px solid #000;
  top: 0%;
  margin: 0 267px 0 370px;
}

/* line 117, ../../../sass/common/screen/docfacture.scss */
table.docfacture_infos_banque {
  border: 1px solid #000;
  right: 0%;
  top: 0%;
}

/* line 123, ../../../sass/common/screen/docfacture.scss */
table.docfacture_infos_banque tr td:first-child {
  text-align: right;
}

/* PARTIE DETAIL DOCFATURE */
/* line 128, ../../../sass/common/screen/docfacture.scss */
table.docfacture_detail_liste_articles {
  position: relative;
  margin: 5px 0;
  border: 1px solid black;
}

/* line 134, ../../../sass/common/screen/docfacture.scss */
table.docfacture_detail_liste_articles td.docfacture_observation {
  font-style: italic;
  color: #333333;
}

/* PARTIE FORM DOCFACTURE */
/* line 140, ../../../sass/common/screen/docfacture.scss */
div.docfacture_haut_form {
  position: relative;
  height: 285px;
  margin: 5px 0;
}

/* line 146, ../../../sass/common/screen/docfacture.scss */
table.docfacture_infos_form {
  border: 1px solid #ccc;
  width: 570px;
  height: 170px;
}

/* line 152, ../../../sass/common/screen/docfacture.scss */
table.docfacture_infos_form label {
  width: 135px;
}

/* line 156, ../../../sass/common/screen/docfacture.scss */
table.docfacture_infos_form a img {
  width: 16px;
  margin: 0;
  padding: 0;
}

/* line 162, ../../../sass/common/screen/docfacture.scss */
table.docfacture_infos_form input, table.docfacture_infos_form select, table.docfacture_infos_form textarea {
  width: 200px;
}

/* line 166, ../../../sass/common/screen/docfacture.scss */
tr.docfacture_add_line_help td {
  background-color: #D6DEF2;
  border-top: 1px gray dashed;
  margin-bottom: 5px;
}

/* line 172, ../../../sass/common/screen/docfacture.scss */
tr.docfacture_add_line_comment td {
  border-bottom: 1px gray dashed;
}

/* line 176, ../../../sass/common/screen/docfacture.scss */
div.docfacture_adresse_livraison_form, div.docfacture_adresse_facturation_form {
  position: absolute;
  width: 200px;
  height: 260px;
  border: 1px solid #ccc;
  top: 0%;
}

/* line 184, ../../../sass/common/screen/docfacture.scss */
div.docfacture_adresse_livraison_form {
  right: 0%;
}

/* line 188, ../../../sass/common/screen/docfacture.scss */
div.docfacture_adresse_facturation_form {
  right: 210px;
}

/* line 192, ../../../sass/common/screen/docfacture.scss */
div.docfacture_adresse_info {
  position: absolute;
  width: 135px;
  height: 135px;
  top: 51px;
  line-height: 17px;
  right: 420px;
  border: 1px gray dashed;
  background-color: #D6DEF2;
  padding: 2px;
}

/* line 204, ../../../sass/common/screen/docfacture.scss */
div.docfacture_adresse_livraison_form input, div.docfacture_adresse_facturation_form input, div.docfacture_adresse_livraison_form select, div.docfacture_adresse_facturation_form select {
  width: 95%;
  margin-left: 5px;
}

/* line 209, ../../../sass/common/screen/docfacture.scss */
table.docfacture_form_liste_articles {
  position: relative;
  margin: 5px 0;
}

/* line 223, ../../../sass/common/screen/docfacture.scss */
table.docfacture_form_liste_articles td.docfacture_observation {
  font-style: italic;
  color: #333333;
}

/* line 228, ../../../sass/common/screen/docfacture.scss */
option.docfacture_type_remise_categorie {
  color: blue;
}

/* line 232, ../../../sass/common/screen/docfacture.scss */
option.docfacture_type_remise_promotion {
  color: red;
}

/* line 236, ../../../sass/common/screen/docfacture.scss */
option.docfacture_type_remise_client {
  color: green;
}

/* line 240, ../../../sass/common/screen/docfacture.scss */
option.docfacture_type_remise_quantite {
  color: pink;
}

/* Spe fab : pour afficher qd meme le fieldset, sans mise en page */
/* line 245, ../../../sass/common/screen/docfacture.scss */
.formCheck fieldset.blank {
  background-color: none;
  margin: 0px;
  padding: 0px;
  border: 0px;
}

/* PARTIE PRINT DOCFACTURE */
/* line 254, ../../../sass/common/screen/docfacture.scss */
#docfacture_haut_print {
  position: relative;
  height: 260px;
  margin: 5px 0;
}

/* line 260, ../../../sass/common/screen/docfacture.scss */
img#docfacture_logo_print {
  margin-bottom: 5px;
}

/* line 264, ../../../sass/common/screen/docfacture.scss */
#docfacture_infos_print {
  margin-rigth: 5px;
  padding: 0 5px;
  border: 1px solid #ccc;
  float: left;
}

/* line 271, ../../../sass/common/screen/docfacture.scss */
#docfacture_infos_print label {
  display: block;
  float: left;
  width: 125px;
  margin-left: 5px;
}

/* line 278, ../../../sass/common/screen/docfacture.scss */
#docfacture_adresses_print {
  width: 230px;
  float: right;
}

/* line 283, ../../../sass/common/screen/docfacture.scss */
#docfacture_adresses_print table.docfacture_adresse_livraison_print {
  width: 230px;
  border: 1px solid #ccc;
  vertical-align: top;
  margin-bottom: 5px;
  position: relative;
  height: 3cm;
}

/* line 292, ../../../sass/common/screen/docfacture.scss */
#docfacture_adresses_print table.docfacture_adresse_facturation_print {
  width: 230px;
  border: 1px solid #ccc;
  margin-bottom: 5px;
  position: relative;
  height: 3cm;
}

/* line 300, ../../../sass/common/screen/docfacture.scss */
#docfacture_adresses_print table thead tr th {
  text-align: right;
  background-color: #ccc;
  height: 10px;
}

/* line 306, ../../../sass/common/screen/docfacture.scss */
#docfacture_adresses_print table tr td {
  margin: 0;
  padding: 0;
  font-size: 12px;
  padding-left: 5px;
  vertical-align: top;
}

/* line 314, ../../../sass/common/screen/docfacture.scss */
#docfacture_entete_liste_articles_print {
  height: 0.5cm;
  width: 100%;
  margin: 5px 0;
  text-align: left;
  font-weight: bold;
  font-size: medium;
}

/* line 323, ../../../sass/common/screen/docfacture.scss */
span#docfacture_date_facture {
  float: right;
  font-weight: bold;
  font-size: medium;
}

/** Global liste articles */
/* line 330, ../../../sass/common/screen/docfacture.scss */
table#docfacture_detail_liste_articles_print {
  position: relative;
  margin: 5px 0;
  border: 1px solid black;
  border-spacing: 0px;
  border-collapse: collapse;
  line-height: 0.5cm;
}

/** header liste articles */
/* line 340, ../../../sass/common/screen/docfacture.scss */
table#docfacture_detail_liste_articles_print thead tr th {
  font-size: 10px;
  text-align: center;
  white-space: nowrap;
  border-bottom: 1px gray dotted;
}

/** colonnes Totaux / liste articles */
/* line 348, ../../../sass/common/screen/docfacture.scss */
table#docfacture_detail_liste_articles_total_print {
  border-spacing: 0px;
  border-collapse: collapse;
  border: 0px;
  width: 100%;
}

/*-- Partie pied de page de facture --*/
/*	Sous partie  TALON	*/
/* line 358, ../../../sass/common/screen/docfacture.scss */
div#docfacture_talon_reglement_cutBorder_print {
  border: 1px dashed #000;
  padding: 5px;
}

/* line 363, ../../../sass/common/screen/docfacture.scss */
#docfacture_talon_reglement_print table {
  border: 1px solid #ccc;
}

/* line 367, ../../../sass/common/screen/docfacture.scss */
#docfacture_talon_reglement_print table thead tr th {
  text-align: center;
  padding: 0 5px;
  border: 1px solid #ccc;
  background-color: #ccc;
}

/* line 374, ../../../sass/common/screen/docfacture.scss */
table#docfacture_talon_reglement_print tr td {
  padding: 0 5px;
}

/*	Sous partie TVA	*/
/* line 379, ../../../sass/common/screen/docfacture.scss */
#docfacture_tva_print {
  border: 1px solid #ccc;
  vertical-align: top;
}

/* line 384, ../../../sass/common/screen/docfacture.scss */
#docfacture_tva_print thead tr th {
  text-align: center;
  padding: 0 5px;
  border: 1px solid #ccc;
  background-color: #ccc;
}

/* line 391, ../../../sass/common/screen/docfacture.scss */
table#docfacture_tva_print tr td {
  padding: 0 5px;
}

/*	Sous-partie INFOS BANCAIRE */
/* line 396, ../../../sass/common/screen/docfacture.scss */
#docfacture_infos_banque_print {
  margin: 5px 0;
  border: 1px solid #ccc;
}

/* line 401, ../../../sass/common/screen/docfacture.scss */
#docfacture_infos_banque_print table thead tr th {
  text-align: center;
  padding: 0 5px;
  border: 1px solid #ccc;
  background-color: #ccc;
}

/* line 408, ../../../sass/common/screen/docfacture.scss */
table#docfacture_talon_reglement_print tr td {
  padding: 0 5px;
}

/* line 1, ../../../sass/common/screen/form.scss */
form.formCheck {
  width: 99%;
  margin: 5px;
  vertical-align: top;
}

/* line 7, ../../../sass/common/screen/form.scss */
.formCheck label {
  float: left;
  width: 150px;
}

/* line 12, ../../../sass/common/screen/form.scss */
.formCheck input {
  margin: 0 5px 1px 0;
  padding: 0;
  border: 1px solid #d1d6df;
  background-color: #E5E9F0;
  cursor: pointer;
}

/* line 20, ../../../sass/common/screen/form.scss */
.formCheck select {
  margin-bottom: 1px;
  padding: 0;
  border: 1px solid #d1d6df;
  background-color: #E5E9F0;
  cursor: pointer;
}

/* line 28, ../../../sass/common/screen/form.scss */
.formCheck textarea {
  margin-bottom: 1px;
  padding: 0;
  border: 1px solid #d1d6df;
  background-color: #E5E9F0;
}

/* line 35, ../../../sass/common/screen/form.scss */
.formCheck fieldset legend {
  /*background-color:#CCDDEE;*/
  background: url("/custom/weyrich/var/themes/weyrich/images/var/images/menu/img_menuHeader_background.gif") repeat-x;
  color: black;
  border: 1px gray solid;
  padding: 5px;
}

/* line 43, ../../../sass/common/screen/form.scss */
.formCheck fieldset {
  background-color: #D9D9E0;
  margin: 0 0 10px 0;
  padding: 3px;
  border: 1px dotted;
}

/* line 50, ../../../sass/common/screen/form.scss */
.formCheck input.button {
  -moz-border-radius: 15px;
  border: 3px #BBBBBB solid;
}

/* line 55, ../../../sass/common/screen/form.scss */
.formCheck a img {
  border: 0px;
}

/* line 59, ../../../sass/common/screen/form.scss */
.formCheck img {
  max-width: 300px;
  max-height: 300px;
}

/* line 64, ../../../sass/common/screen/form.scss */
.formCheck img.formErrorMessage {
  font-variant: small-caps;
  position: absolute;
  margin-left: 5px;
}

/* line 70, ../../../sass/common/screen/form.scss */
table.innerLink {
  border: 1px gray solid;
  border-collapse: collapse;
}

/* line 75, ../../../sass/common/screen/form.scss */
.formCheck h4 {
  background-color: #ccc;
  margin: 0;
  padding: 0;
}

/* line 81, ../../../sass/common/screen/form.scss */
.formCheck table.innerLink thead {
  border: 1px gray solid;
}

/* line 85, ../../../sass/common/screen/form.scss */
.formCheck table.innerLink thead th {
  border: 1px gray solid;
  background-color: #D0D0DD;
}

/* line 90, ../../../sass/common/screen/form.scss */
.formCheck table.innerLink tfoot {
  border-top: 1px #AAA dashed;
}

/* line 94, ../../../sass/common/screen/form.scss */
.formCheck table.innerLink tbody tr:nth-child(even) {
  background-color: #E7E7E7;
}

/* line 98, ../../../sass/common/screen/form.scss */
.formCheck table.innerLink tbody tr:nth-child(even) th {
  background-color: #D9D9E0;
}

/* line 102, ../../../sass/common/screen/form.scss */
div.form_summary_fieldset_remaining {
  float: left;
  padding: 0px 5px 0px 5px;
  margin: 0 5px 0 5px;
  background-color: #EEEEFF;
  border: 2px #ccccdd solid;
}

/* line 110, ../../../sass/common/screen/form.scss */
div.form_summary_fieldset_checked {
  float: left;
  padding: 0px 5px 0px 5px;
  margin: 0 5px 0 5px;
  background-color: #CCCCDD;
  border: 2px #AAAACC solid;
  cursor: pointer;
}

/* line 119, ../../../sass/common/screen/form.scss */
div.form_summary_selected_fieldset {
  float: left;
  padding: 0px 5px 0px 5px;
  margin: 0 5px 0 5px;
  background-color: #CCDDEE;
  border: 1px solid;
  font-weight: bold;
}

/* line 128, ../../../sass/common/screen/form.scss */
#form_summary_id {
  background-color: #EEEEEE;
  border-top: 1px gray solid;
  border-bottom: 1px gray solid;
  margin-bottom: 5px;
  padding: 6px;
  height: 15px;
}

/* line 138, ../../../sass/common/screen/form.scss */
.innerLink .actions {
  padding: 1rem .5rem;
}
/* line 139, ../../../sass/common/screen/form.scss */
.innerLink .action {
  cursor: pointer;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
/* line 142, ../../../sass/common/screen/form.scss */
.innerLink .action.select-multiple.enabled {
  border: 1px gray solid;
  padding: 2px;
  background: white;
}

/* line 149, ../../../sass/common/screen/form.scss */
.form-field-innerLink .checkbox {
  margin-bottom: 1rem;
}
/* line 150, ../../../sass/common/screen/form.scss */
.form-field-innerLink .checkbox > div {
  display: flex;
}

/* line 3, ../../../sass/common/screen/input_js.scss */
.multiple-input .header {
  display: flex;
}
/* line 5, ../../../sass/common/screen/input_js.scss */
.multiple-input .header .col {
  flex: 1;
}
/* line 7, ../../../sass/common/screen/input_js.scss */
.multiple-input .body {
  position: relative;
}
/* line 9, ../../../sass/common/screen/input_js.scss */
.multiple-input .body .row {
  display: flex;
}
/* line 11, ../../../sass/common/screen/input_js.scss */
.multiple-input .body .row .field {
  flex: 1;
}
/* line 13, ../../../sass/common/screen/input_js.scss */
.multiple-input .body .autocomplete {
  position: absolute;
  background-color: white;
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 15, ../../../sass/common/screen/input_js.scss */
.multiple-input .body .autocomplete li {
  border: 1px #CCC solid;
  padding: 0.2rem 0.5rem;
}
/* line 18, ../../../sass/common/screen/input_js.scss */
.multiple-input .footer {
  margin-top: 1rem;
  margin-left: 3rem;
}
/* line 21, ../../../sass/common/screen/input_js.scss */
.multiple-input .footer .submit {
  font-size: 1rem;
  height: 2rem;
  cursor: pointer;
  font-family: 'Font Awesome 5 Free';
}
/* line 22, ../../../sass/common/screen/input_js.scss */
.multiple-input .footer .submit:before {
  content: '\f0fe';
  margin-right: .5rem;
  font-size: 1.5rem;
  color: #666;
}
/* line 23, ../../../sass/common/screen/input_js.scss */
.multiple-input .footer .submit:hover {
  text-decoration: underline;
  color: #999;
}

/* line 29, ../../../sass/common/screen/input_js.scss */
.actions .select-all {
  padding-bottom: 1rem;
}
/* line 31, ../../../sass/common/screen/input_js.scss */
.actions .select-all label {
  width: auto;
  float: none;
}
/* line 34, ../../../sass/common/screen/input_js.scss */
.actions .multiple-detail {
  padding: 1rem 0;
}

/* line 1, ../../../sass/common/screen/list.scss */
table.sortable a.sortheader {
  color: #555555;
  font-weight: bold;
  text-decoration: none;
  display: block;
}

/* line 7, ../../../sass/common/screen/list.scss */
table.sortable span.sortarrow {
  color: #555555;
  text-decoration: none;
}

/* line 12, ../../../sass/common/screen/list.scss */
table.sortable {
  max-width: 900px;
  width: 900px;
  border: 1px gray solid;
  margin: 3pt;
  border-spacing: 0px;
}

/* css listes */
/* line 22, ../../../sass/common/screen/list.scss */
tbody.list {
  border-bottom: 2pt gray solid;
}

/* line 26, ../../../sass/common/screen/list.scss */
tbody.list td {
  overflow: hidden;
}

/* line 29, ../../../sass/common/screen/list.scss */
tr.selected {
  background-color: #FFFAC3;
}

/* line 33, ../../../sass/common/screen/list.scss */
tr.unselected {
  background-color: inherit;
}

/* line 37, ../../../sass/common/screen/list.scss */
tr.listAlt {
  background-color: #DDDDDD;
}

/* line 41, ../../../sass/common/screen/list.scss */
td.list {
  border-top: 1px #bbbbbc solid;
  border-left: 1px #bbbbcc solid;
}

/* line 45, ../../../sass/common/screen/list.scss */
tr.list th {
  background-color: #c0c0c0;
  text-align: left;
  border-bottom: 1px #335500 solid;
  cursor: pointer;
}

/* line 54, ../../../sass/common/screen/list.scss */
th#id {
  width: 60px;
}

/* line 58, ../../../sass/common/screen/list.scss */
th#client_id {
  width: 25%;
}

/* line 63, ../../../sass/common/screen/list.scss */
tr.list th.sortDesc:after {
  content: "↓ ";
}

/* line 66, ../../../sass/common/screen/list.scss */
tr.list th.sortAsc:after {
  content: "↑ ";
}

/* line 69, ../../../sass/common/screen/list.scss */
a.sortheader:hover {
  border: 0px;
}

/* line 76, ../../../sass/common/screen/list.scss */
div.list_navi * {
  float: left;
  padding: 2px;
  background-color: #DDDDDD;
  border-bottom: 1px black solid;
  border-left: 0px;
  border-right: 0px;
  border-top: 1px black solid;
  margin: 5px;
  cursor: pointer;
}

/* line 87, ../../../sass/common/screen/list.scss */
div.list_navi *:hover {
  background-color: #AAAAAA;
}

/* line 93, ../../../sass/common/screen/list.scss */
.list .le_elements .int {
  text-align: right;
  padding-right: 2px;
}
/* line 94, ../../../sass/common/screen/list.scss */
.list .le_elements .float {
  text-align: right;
}
/* line 95, ../../../sass/common/screen/list.scss */
.list .le_elements .state {
  vertical-align: top;
  text-align: right;
  width: 10px;
  height: 10px;
}
/* line 96, ../../../sass/common/screen/list.scss */
.list .le_elements .bool {
  text-align: center;
}
/* line 97, ../../../sass/common/screen/list.scss */
.list .le_elements .bool img {
  height: 12px;
}
/* line 99, ../../../sass/common/screen/list.scss */
.list .le_elements .image img {
  width: 100px;
  max-width: 100%;
}

/* line 1, ../../../sass/common/screen/list_elements.scss */
div.le_main {
  width: 100%;
}

/* line 5, ../../../sass/common/screen/list_elements.scss */
.le_errors {
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  text-align: center;
  border: 2px #CC8888 solid;
  background-color: #FFEEEE;
}

/* LE_HEADER : entete de blocs (actions ou filtres) */
/* line 16, ../../../sass/common/screen/list_elements.scss */
.le_header {
  background: url("/custom/weyrich/var/themes/weyrich/images/menu/img_menuHeader_background.png") repeat-x;
  height: 1.5rem;
  display: block;
  border-bottom: 1px dotted #8683B0;
}

/* line 23, ../../../sass/common/screen/list_elements.scss */
.le_header .le_header_title {
  float: left;
  font-weight: bold;
}

/* line 28, ../../../sass/common/screen/list_elements.scss */
.le_header .le_minimize_img {
  height: 12px;
  width: 20px;
  cursor: pointer;
  float: right;
  background: url("/custom/weyrich/var/themes/weyrich/images/forms/img_form_pack_image.png") no-repeat;
}

/* line 36, ../../../sass/common/screen/list_elements.scss */
.le_header .le_minimize_img_packed {
  height: 12px;
  cursor: pointer;
  width: 12px;
  float: right;
  margin-right: 5px;
  background: url("/custom/weyrich/var/themes/weyrich/images/forms/img_form_unpack_image.png") no-repeat;
}

/* LE_FILTERS : Liste des filtres */
/* line 47, ../../../sass/common/screen/list_elements.scss */
.le_main .le_filters {
  background-color: #EEEEEE;
  border: 1px #CCCCCC solid;
  margin-bottom: 1px;
}

/* line 53, ../../../sass/common/screen/list_elements.scss */
.le_filters .le_filters_body {
  display: block;
  padding: 2px;
}

/* line 58, ../../../sass/common/screen/list_elements.scss */
.le_filters_body div {
  min-width: 49%;
  height: 22px;
  margin: 2px;
  line-height: 22px;
  display: inline-block;
}

/* line 66, ../../../sass/common/screen/list_elements.scss */
.le_filters_body div input {
  background-color: #DDDDDD;
}

/* line 70, ../../../sass/common/screen/list_elements.scss */
.le_filters_body div input:focus {
  background-color: #FFFFFF;
}

/* line 74, ../../../sass/common/screen/list_elements.scss */
.le_filters_body div textarea {
  background-color: #DDDDDD;
}

/* line 78, ../../../sass/common/screen/list_elements.scss */
.le_filters_body div textarea:focus {
  background-color: #FFFFFF;
}

/* line 82, ../../../sass/common/screen/list_elements.scss */
.le_filters_body div select {
  background-color: #DDDDDD;
  width: 150px;
}

/* line 87, ../../../sass/common/screen/list_elements.scss */
.le_filters_body div select:focus {
  background-color: #FFFFFF;
}

/* line 93, ../../../sass/common/screen/list_elements.scss */
.le_filters_body label {
  width: 130px;
  display: inline-block;
}

/* line 98, ../../../sass/common/screen/list_elements.scss */
.le_filters .search_button {
  padding-left: 22px;
  margin-left: 5px;
  font-size: 13px;
  font-variant: small-caps;
  background: url("/custom/weyrich/var/themes/weyrich/images/lists/img_action_detail.png") no-repeat;
  height: 22px;
  cursor: pointer;
}

/* LE_ELEMENTS : liste d''elements */
/* line 109, ../../../sass/common/screen/list_elements.scss */
.le_main .le_elements {
  border: 1px gray solid;
  border-spacing: 0px;
  table-layout: fixed;
  background-color: #DDDDDD;
  width: 100%;
}

/* LE_ELEMENTS : images dans la liste */
/* line 119, ../../../sass/common/screen/list_elements.scss */
.le_elements tr {
  background-color: #EEEEEE;
  border: 1px black solid;
}

/* line 125, ../../../sass/common/screen/list_elements.scss */
.le_elements th {
  background-color: #CACACA;
  text-align: left;
  border-bottom: 1px #335500 solid;
  cursor: pointer;
  border-left: 1px #335500 solid;
}

/* line 132, ../../../sass/common/screen/list_elements.scss */
.le_elements th:hover {
  background-color: #B0B0B0;
}

/* line 136, ../../../sass/common/screen/list_elements.scss */
.le_elements th:first-child {
  border-left: 0px;
}

/* line 140, ../../../sass/common/screen/list_elements.scss */
.le_elements th.sortDesc:after {
  content: '\2191\A0';
}

/* line 144, ../../../sass/common/screen/list_elements.scss */
.le_elements th.sortAsc:after {
  content: '\2193\A0';
}

/* line 148, ../../../sass/common/screen/list_elements.scss */
.le_elements tr td {
  border-top: 1px #AAAAAA solid;
  overflow: hidden;
}
/* line 151, ../../../sass/common/screen/list_elements.scss */
.le_elements tr td.image img {
  height: 8rem;
  vertical-align: middle;
}
/* line 152, ../../../sass/common/screen/list_elements.scss */
.le_elements tr td.float {
  text-align: center;
}
/* line 153, ../../../sass/common/screen/list_elements.scss */
.le_elements tr td.bool, .le_elements tr td.state {
  text-align: center;
}

/* line 156, ../../../sass/common/screen/list_elements.scss */
.le_elements .alt_background {
  background-color: #DDDDDD;
}

/* line 160, ../../../sass/common/screen/list_elements.scss */
.le_elements .selected {
  background-color: #FFFAC3;
}

/* line 164, ../../../sass/common/screen/list_elements.scss */
th#etat_sysetat_id {
  width: 25px;
}

/* line 168, ../../../sass/common/screen/list_elements.scss */
th#code_barre {
  width: 150px;
}

/* LE_ACTIONS : liste des actions */
/* line 176, ../../../sass/common/screen/list_elements.scss */
.le_main .le_actions {
  background-color: #EEEEEE;
  border: 1px #CCCCCC solid;
}

/* line 181, ../../../sass/common/screen/list_elements.scss */
.le_actions .le_actions_body {
  margin-top: 6px;
  height: 27px;
  overflow: initial;
}

/* line 187, ../../../sass/common/screen/list_elements.scss */
.le_actions .le_action {
  margin: 3px;
  display: inline;
  height: 20px;
  font-size: 13px;
  font-variant: small-caps;
  cursor: pointer;
  padding: 4px;
  border: 1px #A0A0A0 dotted;
  background-color: #E5E5E5;
}

/* line 198, ../../../sass/common/screen/list_elements.scss */
.le_action:hover {
  border: 1px black solid;
  background-color: #FFFFFF;
}

/* line 204, ../../../sass/common/screen/list_elements.scss */
.le_action * {
  display: inline;
}

/* ACTIONS */
/* line 210, ../../../sass/common/screen/list_elements.scss */
.le_actions .print {
  padding-left: 18px;
  font-size: 15px;
  margin-right: 2px;
  display: inline;
  background: url("/custom/weyrich/var/themes/weyrich/images/lists/img_action_print.png") no-repeat;
}

/* line 218, ../../../sass/common/screen/list_elements.scss */
.le_actions .print_over {
  padding-left: 18px;
  font-size: 15px;
  margin-right: 2px;
  display: inline;
  background: url("/custom/weyrich/var/themes/weyrich/images/lists/img_action_print_over.png") no-repeat;
}

/* line 226, ../../../sass/common/screen/list_elements.scss */
.le_actions .add {
  padding-left: 18px;
  font-size: 15px;
  margin-right: 2px;
  display: inline;
  background: url("/custom/weyrich/var/themes/weyrich/images/lists/img_action_add.png") no-repeat;
}

/* line 234, ../../../sass/common/screen/list_elements.scss */
.le_actions .add_over {
  padding-left: 18px;
  font-size: 15px;
  margin-right: 2px;
  display: inline;
  background: url("/custom/weyrich/var/themes/weyrich/images/lists/img_action_add_over.png") no-repeat;
}

/* line 242, ../../../sass/common/screen/list_elements.scss */
.le_actions .modify {
  padding-left: 18px;
  font-size: 15px;
  margin-right: 2px;
  display: inline;
  background: url("/custom/weyrich/var/themes/weyrich/images/lists/img_action_modify.png") no-repeat;
}

/* line 250, ../../../sass/common/screen/list_elements.scss */
.le_actions .modify_over {
  padding-left: 18px;
  font-size: 15px;
  margin-right: 2px;
  display: inline;
  background: url("/custom/weyrich/var/themes/weyrich/images/lists/img_action_modify_over.png") no-repeat;
}

/* line 257, ../../../sass/common/screen/list_elements.scss */
.le_actions .delete {
  padding-left: 18px;
  font-size: 15px;
  margin-right: 2px;
  display: inline;
  background: url("/custom/weyrich/var/themes/weyrich/images/lists/img_action_delete.png") no-repeat;
}

/* line 265, ../../../sass/common/screen/list_elements.scss */
.le_actions .delete_over {
  padding-left: 18px;
  font-size: 15px;
  margin-right: 2px;
  display: inline;
  background: url("/custom/weyrich/var/themes/weyrich/images/lists/img_action_delete_over.png") no-repeat;
}

/* line 272, ../../../sass/common/screen/list_elements.scss */
.le_actions .detail {
  padding-left: 18px;
  font-size: 15px;
  margin-right: 2px;
  display: inline;
  background: url("/custom/weyrich/var/themes/weyrich/images/lists/img_action_detail.png") no-repeat;
}

/* line 280, ../../../sass/common/screen/list_elements.scss */
.le_actions .detail_over {
  padding-left: 18px;
  font-size: 15px;
  margin-right: 2px;
  display: inline;
  background: url("/custom/weyrich/var/themes/weyrich/images/lists/img_action_detail_over.png") no-repeat;
}

/* line 288, ../../../sass/common/screen/list_elements.scss */
.le_actions .printlist {
  padding-left: 18px;
  font-size: 15px;
  margin-right: 2px;
  display: inline;
  background: url("/custom/weyrich/var/themes/weyrich/images/lists/img_action_print.png") no-repeat;
}

/* line 296, ../../../sass/common/screen/list_elements.scss */
.le_actions .printlist_over {
  padding-left: 18px;
  font-size: 15px;
  margin-right: 2px;
  display: inline;
  background: url("/custom/weyrich/var/themes/weyrich/images/lists/img_action_print_over.png") no-repeat;
}

/* line 304, ../../../sass/common/screen/list_elements.scss */
.le_actions .exportCSV {
  padding-left: 18px;
  font-size: 15px;
  margin-right: 2px;
  display: inline;
  background: url("/custom/weyrich/var/themes/weyrich/images/global/img_export_csv.png") no-repeat;
}

/* line 312, ../../../sass/common/screen/list_elements.scss */
.le_actions .exportCSV_over {
  padding-left: 18px;
  font-size: 15px;
  margin-right: 2px;
  display: inline;
  background: url("/custom/weyrich/var/themes/weyrich/images/global/img_export_csv.png") no-repeat;
}

/* line 321, ../../../sass/common/screen/list_elements.scss */
.le_actions .refresh {
  padding-left: 18px;
  font-size: 15px;
  margin-right: 2px;
  display: inline;
  background: url("/custom/weyrich/var/themes/weyrich/images/lists/img_action_refresh.png") no-repeat;
}

/* line 329, ../../../sass/common/screen/list_elements.scss */
.le_actions .refresh_over {
  padding-left: 18px;
  font-size: 15px;
  margin-right: 2px;
  display: inline;
  background: url("/custom/weyrich/var/themes/weyrich/images/lists/img_action_refresh_over.png") no-repeat;
}

/* LE_NAVI : navigation */
/* line 338, ../../../sass/common/screen/list_elements.scss */
.le_main .le_navi {
  margin-top: 5px;
  border-bottom: 1px black dotted;
  border-top: 1px black dotted;
  background-color: #FFFFEE;
}

/* line 345, ../../../sass/common/screen/list_elements.scss */
.le_navi div {
  display: inline;
  margin: 4px;
  cursor: pointer;
  background-color: #FFFFFF;
  padding-left: 8px;
  padding-right: 8px;
  border-left: 1px gray solid;
  border-right: 1px gray solid;
}

/* line 355, ../../../sass/common/screen/list_elements.scss */
.le_navi div:hover {
  background-color: #FFFFAA;
}

/* line 359, ../../../sass/common/screen/list_elements.scss */
.le_navi .selected {
  cursor: default;
  background-color: #FFFF77;
}

/* line 364, ../../../sass/common/screen/list_elements.scss */
.le_navi .selected:hover {
  background-color: #FFFF77;
}

/* line 368, ../../../sass/common/screen/list_elements.scss */
.le_navi .count_results {
  cursor: default;
  float: right;
  background-color: #FFFFAA;
  border: 1px gray solid;
  line-height: 20px;
}

/* line 376, ../../../sass/common/screen/list_elements.scss */
.le_navi .nb_per_page {
  cursor: default;
  float: right;
  line-height: 20px;
  background-color: #FFFFAA;
  border: 1px gray solid;
}

/* line 383, ../../../sass/common/screen/list_elements.scss */
.le_navi .nb_per_page input {
  font-size: 11px;
  padding: 1px;
  border: 1px gray solid;
  margin: 1px;
  width: 18px;
  background-color: #FFC;
}

/* line 393, ../../../sass/common/screen/list_elements.scss */
.print_list_criterii {
  margin-bottom: 15px;
  padding: 5px;
  border: 1px gray dashed;
}

/* line 399, ../../../sass/common/screen/list_elements.scss */
.print_list_criterii div {
  display: inline;
  background-color: #DEDEEE;
  margin-left: 10px;
}

/* line 405, ../../../sass/common/screen/list_elements.scss */
table.print_list_elements {
  border: 1px gray solid;
  border-spacing: 0px;
  background-color: #DDDDDD;
}

/* line 411, ../../../sass/common/screen/list_elements.scss */
table.print_list_elements tr th {
  background-color: #c0c0c0;
  text-align: left;
  border-bottom: 1px #335500 solid;
  cursor: pointer;
  border-left: 1px #335500 solid;
}

/* line 420, ../../../sass/common/screen/list_elements.scss */
table.print_list_elements tr.alt_background {
  background-color: #EEEEEE;
}

/* line 424, ../../../sass/common/screen/list_elements.scss */
div.print_notice {
  background-color: #EEDDDD;
  margin-top: 15px;
  border: 1px #FF5555 solid;
  width: 550px;
}

/* Totaux */
/* line 432, ../../../sass/common/screen/list_elements.scss */
tr.le_totals {
  background-color: #D0CCCC;
}

/* line 1, ../../../sass/common/screen/login.scss */
.login-page {
  background: none;
}

/* line 5, ../../../sass/common/screen/login.scss */
.login_error_message {
  color: #E05555;
  text-align: center;
  background: url("../images/ico_thunder.png") no-repeat center 20px;
}

/* line 11, ../../../sass/common/screen/login.scss */
.login_logo {
  background: url(/var/themes/demo/images/login_logo.png) no-repeat center;
  padding: 5rem;
}

/* line 16, ../../../sass/common/screen/login.scss */
.login_sublogo:before {
  content: "Démonstration";
}

/* line 20, ../../../sass/common/screen/login.scss */
.login_sublogo {
  position: relative;
  width: 200px;
  margin: auto;
  font-size: 2rem;
  font-variant: all-petite-caps;
  color: grey;
}

/* line 29, ../../../sass/common/screen/login.scss */
.login_panel {
  border: 2px gray solid;
  width: 500px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

/* line 37, ../../../sass/common/screen/login.scss */
.login_panel h1 {
  text-align: left;
  font-size: 2em;
  font-weight: normal;
  margin: 0px;
  line-height: 2em;
  background: url("../images/login_logo.png") no-repeat right white;
  text-transform: uppercase;
  display: block;
  padding-left: 10px;
  color: #808080;
  border-bottom: 2px #5558f4 solid;
}

/* line 51, ../../../sass/common/screen/login.scss */
.login_panel h1:first-letter {
  font-size: 1.3em;
  color: #5558f4;
}

/* line 56, ../../../sass/common/screen/login.scss */
.login_panel form {
  background-color: #E6E6E6;
  padding: 15px 10px;
}

/* line 61, ../../../sass/common/screen/login.scss */
.login_panel label {
  width: 140px;
  color: #6C6D6F;
  font-size: 1.3em;
  display: inline-block;
  line-height: 2em;
}

/* line 69, ../../../sass/common/screen/login.scss */
.login_panel input {
  border: 2px #6c6d6f solid;
  font-size: 0.9em;
  padding: 2px;
}

/* line 75, ../../../sass/common/screen/login.scss */
.login_panel input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}

/* line 79, ../../../sass/common/screen/login.scss */
.login_panel .login_submit {
  display: inline-block;
  margin-left: 2em;
  padding: 3px 10px 3px 10px;
  line-height: 1em;
  box-shadow: 3px 3px 12px #555555;
  border: 1px solid #666666;
  background-color: #5E5E5E;
  color: #FFF;
  text-decoration: none;
}

/* line 91, ../../../sass/common/screen/login.scss */
.login_panel .login_submit:hover {
  background-color: #006699;
  cursor: hand;
  cursor: pointer;
}

/* line 97, ../../../sass/common/screen/login.scss */
.login_panel .login_submit:first-letter {
  font-size: 1.3em;
  color: #9697f4;
}

@media screen and (max-width: 500px) {
  /* line 103, ../../../sass/common/screen/login.scss */
  .login_logo {
    width: auto;
    background-size: contain !important;
  }

  /* line 108, ../../../sass/common/screen/login.scss */
  .login_panel {
    width: auto;
  }

  /* line 112, ../../../sass/common/screen/login.scss */
  .login_panel h1 {
    font-size: 1.2em;
  }

  /* line 116, ../../../sass/common/screen/login.scss */
  .login_submit {
    margin-top: 10px;
  }
}
/* line 121, ../../../sass/common/screen/login.scss */
.info {
  margin: 2rem auto;
  width: 490px;
  max-width: 100%;
  border: 1px black dashed;
  border-radius: 15px;
  background: #FAFAFA;
  padding: 1rem;
}

/* line 131, ../../../sass/common/screen/login.scss */
.info a {
  text-decoration: none;
  color: darkblue;
  font-weight: bold;
}

/* line 137, ../../../sass/common/screen/login.scss */
.profile {
  list-style-type: square;
}

/* line 141, ../../../sass/common/screen/login.scss */
.profile li:hover {
  color: darkblue;
  font-weight: bold;
  cursor: hand;
  cursor: pointer;
}

/* line 1, ../../../sass/common/screen/menu.scss */
.menuContainer {
  float: left;
  width: 200px;
  margin-top: 5px;
  margin-right: 5px;
  background-color: #F5F5F5;
  border: 2px gray groove;
}

/* line 10, ../../../sass/common/screen/menu.scss */
.menuHeader {
  background: linear-gradient(to bottom right, #fff8fd, #dde2ff);
  font-size: 12px;
  height: 25px;
  line-height: 22px;
  user-select: none;
  margin: 0px;
  padding-left: 20px;
  cursor: pointer;
  border-bottom: 1px #AAF solid;
}
/* line 20, ../../../sass/common/screen/menu.scss */
.menuHeader:hover {
  transition: .5s;
  background: #dddef5;
}
/* line 24, ../../../sass/common/screen/menu.scss */
.menuHeader.clients {
  font-family: 'Font Awesome 5 Free';
}
/* line 26, ../../../sass/common/screen/menu.scss */
.menuHeader.clients:before {
  content: '\f0c0';
  color: #1b1098;
  margin-right: 5px;
}
/* line 28, ../../../sass/common/screen/menu.scss */
.menuHeader.dépôts-vente {
  font-family: 'Font Awesome 5 Free';
}
/* line 30, ../../../sass/common/screen/menu.scss */
.menuHeader.dépôts-vente:before {
  content: '\f66f';
  color: #411998;
  margin-right: 8px;
}
/* line 32, ../../../sass/common/screen/menu.scss */
.menuHeader.ventes {
  font-family: 'Font Awesome 5 Free';
}
/* line 34, ../../../sass/common/screen/menu.scss */
.menuHeader.ventes:before {
  content: '\f153';
  color: #601c98;
  margin-right: 13px;
}
/* line 36, ../../../sass/common/screen/menu.scss */
.menuHeader.abonnements {
  font-family: 'Font Awesome 5 Free';
}
/* line 38, ../../../sass/common/screen/menu.scss */
.menuHeader.abonnements:before {
  content: '\f1ea';
  color: #981a6b;
  margin-right: 8px;
}
/* line 40, ../../../sass/common/screen/menu.scss */
.menuHeader.règlements {
  font-family: 'Font Awesome 5 Free';
}
/* line 42, ../../../sass/common/screen/menu.scss */
.menuHeader.règlements:before {
  content: '\f09d';
  color: #98251b;
  margin-right: 8px;
}
/* line 44, ../../../sass/common/screen/menu.scss */
.menuHeader.articles {
  font-family: 'Font Awesome 5 Free';
}
/* line 46, ../../../sass/common/screen/menu.scss */
.menuHeader.articles:before {
  content: '\f02d';
  color: #98581f;
  margin-right: 12px;
}
/* line 48, ../../../sass/common/screen/menu.scss */
.menuHeader.auteurs {
  font-family: 'Font Awesome 5 Free';
}
/* line 50, ../../../sass/common/screen/menu.scss */
.menuHeader.auteurs:before {
  content: '\f249';
  color: #709831;
  margin-right: 12px;
}
/* line 52, ../../../sass/common/screen/menu.scss */
.menuHeader.stocks {
  font-family: 'Font Awesome 5 Free';
}
/* line 54, ../../../sass/common/screen/menu.scss */
.menuHeader.stocks:before {
  content: '\f0db';
  color: #3f9858;
  margin-right: 12px;
}
/* line 56, ../../../sass/common/screen/menu.scss */
.menuHeader.etats-comptables {
  font-family: 'Font Awesome 5 Free';
}
/* line 58, ../../../sass/common/screen/menu.scss */
.menuHeader.etats-comptables:before {
  content: '\f080';
  color: #408998;
  margin-right: 12px;
}
/* line 60, ../../../sass/common/screen/menu.scss */
.menuHeader.administration {
  font-family: 'Font Awesome 5 Free';
}
/* line 62, ../../../sass/common/screen/menu.scss */
.menuHeader.administration:before {
  content: '\f0e8';
  color: #000000;
  margin-right: 12px;
}

/* line 66, ../../../sass/common/screen/menu.scss */
.menuContent {
  padding: 0px;
  text-align: left;
}

/* line 71, ../../../sass/common/screen/menu.scss */
.menuContent ul {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

/* line 77, ../../../sass/common/screen/menu.scss */
.menuContent ul li {
  font-size: 13px;
  line-height: 1.2rem;
  padding: 0 .5rem 0 1rem;
  user-select: none;
}
/* line 83, ../../../sass/common/screen/menu.scss */
.menuContent ul li:hover {
  background-color: #d4d1e0;
}
/* line 86, ../../../sass/common/screen/menu.scss */
.menuContent ul li a:hover {
  color: #15008a;
}

/* line 88, ../../../sass/common/screen/menu.scss */
.menuContent ul li.adm {
  font-size: 12px;
  background-color: #DAE6FD;
}
/* line 91, ../../../sass/common/screen/menu.scss */
.menuContent ul li.adm:hover {
  background-color: #c8d6ff;
}

/* line 95, ../../../sass/common/screen/menu.scss */
.menuContent ul li.ges {
  font-size: 12px;
  background-color: #E8EBFD;
}
/* line 98, ../../../sass/common/screen/menu.scss */
.menuContent ul li.ges:hover {
  background-color: #dde0fd;
}

/* line 104, ../../../sass/common/screen/menu.scss */
.logout_div {
  text-align: left;
  display: block;
}

/* line 109, ../../../sass/common/screen/menu.scss */
.logout_div a {
  padding-left: 20px;
  line-height: 20px;
  font-size: 13px;
  text-decoration: underline;
  background: url("/custom/weyrich/var/themes/weyrich/images/global/img_logout.png") no-repeat;
}

/* line 1, ../../../sass/common/screen/misc.scss */
.miniSearchMain {
  padding-top: 5px;
  float: left;
  width: 203px;
}

/* line 7, ../../../sass/common/screen/misc.scss */
.miniSearchContent {
  float: left;
  width: 203px;
  margin: 5px 0 0 0;
}

/* line 13, ../../../sass/common/screen/misc.scss */
.miniSearchLegend {
  border: 1px #5588FF solid;
  background-color: #D3ECF2B3;
  color: black;
  padding: 0 1rem;
}

/* line 20, ../../../sass/common/screen/misc.scss */
.miniSearchFieldset {
  background-color: #E3E3E3;
}

/* line 24, ../../../sass/common/screen/misc.scss */
.miniSearchFieldset a {
  padding: 4px;
  background-color: #FFF;
}

/* line 1, ../../../sass/common/screen/modal.scss */
.modalWindow {
  position: absolute;
  overflow: hidden;
  background-color: #EEEEEE;
  border: 2px black solid;
  width: 500px;
  left: 100px;
}

/* line 10, ../../../sass/common/screen/modal.scss */
.modalWindow DIV.closeButton {
  background: transparent url("/custom/weyrich/var/themes/weyrich/images/global/img_close_button_modal.png") no-repeat;
  border: 2px transparent solid;
  position: absolute;
  right: 0px;
  width: 14px;
  height: 14px;
  vertical-align: sub;
}

/* line 20, ../../../sass/common/screen/modal.scss */
.modalWindow DIV.closeButton:hover {
  background: transparent url("/custom/weyrich/var/themes/weyrich/images/global/img_close_button_modal_over.png") no-repeat;
  border: 2px transparent dotted;
  position: absolute;
  right: 0px;
  width: 14px;
  height: 14px;
  vertical-align: sub;
}

/* line 30, ../../../sass/common/screen/modal.scss */
DIV.closeButton:hover {
  border: 2px transparent solid;
}

/* line 34, ../../../sass/common/screen/modal.scss */
.modalWindow .modalDivContent {
  overflow: auto;
  position: absolute;
}

/* line 39, ../../../sass/common/screen/modal.scss */
.modalDivContent .modalScroll {
  position: absolute;
  top: 0px;
  left: 95%;
  height: 34px;
  width: 16px;
}

/* line 47, ../../../sass/common/screen/modal.scss */
.modalScroll .modalScrollDown {
  background: transparent url("/custom/weyrich/var/themes/weyrich/images/global/img_modal_scroll_down.png") no-repeat;
  width: 16px;
  height: 16px;
  margin-bottom: 2px;
}

/* line 54, ../../../sass/common/screen/modal.scss */
.modalScroll .modalScrollUp {
  background: transparent url("/custom/weyrich/var/themes/weyrich/images/global/img_modal_scroll_up.png") no-repeat;
  width: 16px;
  height: 16px;
}

/* line 60, ../../../sass/common/screen/modal.scss */
.modalDivContent .modalSearchItem {
  margin: 3px;
  cursor: pointer;
  border: 1px transparent solid;
  overflow: hidden;
}

/* line 67, ../../../sass/common/screen/modal.scss */
.modalDivContent .modalSearchItem_selected {
  margin: 3px;
  cursor: pointer;
  border: 1px transparent solid;
  background-color: #FFF47F;
  overflow: hidden;
}

/* line 75, ../../../sass/common/screen/modal.scss */
.modalWindow .modalWindowHeader {
  float: right;
  border-bottom: 1pt solid black;
  overflow: hidden;
  width: 100%;
  height: 16px;
  background: white url("/custom/weyrich/var/themes/weyrich/images/menu/img_menuHeader_background.gif") repeat;
}

/* line 84, ../../../sass/common/screen/modal.scss */
.modalOkFooter {
  display: block;
  text-align: center;
  position: absolute;
  bottom: 5px;
}

/* line 91, ../../../sass/common/screen/modal.scss */
.modalOkFooter INPUT {
  cursor: pointer;
}

/* line 95, ../../../sass/common/screen/modal.scss */
.modalOkCancelFooter {
  display: block;
  text-align: center;
  position: absolute;
  bottom: 5px;
}

/* line 102, ../../../sass/common/screen/modal.scss */
.modalOkCancelFooter INPUT {
  margin: 5px;
  cursor: pointer;
}

/* line 106, ../../../sass/common/screen/modal.scss */
.modalWindowHeader text {
  float: left;
  padding-left: 3px;
  font-weight: bold;
}

/* line 111, ../../../sass/common/screen/modal.scss */
.modalWindowHeader img {
  float: right;
}

/* line 115, ../../../sass/common/screen/modal.scss */
.modalWindow .modalConfirmCancel {
  height: 30px;
  background-color: #E5E5E5;
  border-top: 1px gray dotted;
  position: absolute;
  float: right;
  text-align: right;
}

/* line 125, ../../../sass/common/screen/modal.scss */
.modalCalendar table {
  margin: 5%;
  position: absolute;
  top: 10%;
  height: 60%;
  width: 90%;
  border: 1px gray solid;
  border-spacing: 0px;
}

/* line 135, ../../../sass/common/screen/modal.scss */
.modalCalendar table th {
  border-bottom: 1px gray solid;
  background-color: #CCCCD0;
}

/* line 140, ../../../sass/common/screen/modal.scss */
.modalCalendar table td {
  background-color: #EEEEF0;
  text-align: center;
}

/* line 145, ../../../sass/common/screen/modal.scss */
.modalCalendar .modalCalendarDayCurrent {
  background-color: #CCCCD0;
}

/* line 149, ../../../sass/common/screen/modal.scss */
.modalCalendar .modalCalendarDayToday {
  background-color: #DDDDEF;
}

/* line 153, ../../../sass/common/screen/modal.scss */
.modalCalendar option.selected {
  background-color: #DDDDE0;
}

/* line 158, ../../../sass/common/screen/modal.scss */
.modalWindow input[type="button"] {
  margin-top: .2rem;
  padding: .2rem .5rem;
  border: 1px #CCC solid;
  cursor: pointer;
  font-size: .9rem;
  background-color: #E5E9F0;
  border-radius: 30px;
}
/* line 162, ../../../sass/common/screen/modal.scss */
.modalWindow input[type="button"]:hover {
  background-color: #f3f8ff;
}

/* line 45, ../../../sass/common/screen/notice.scss */
.notice-box {
  position: absolute;
  width: 30%;
  margin-left: 35%;
  top: 20px;
  z-index: 10;
  cursor: pointer;
  font-weight: 400;
  outline: 1px solid #4fade3;
  margin-bottom: 20px;
  padding: 10px 16.66667px;
  background: #d3ebf8;
  border: 1px solid #d3ebf8;
}
/* line 38, ../../../sass/common/screen/notice.scss */
.notice-box p {
  color: #1c7ab0;
  text-shadow: none;
}
/* line 48, ../../../sass/common/screen/notice.scss */
.notice-box.plain {
  position: absolute;
  width: 30%;
  margin-left: 35%;
  top: 20px;
  z-index: 10;
  cursor: pointer;
  font-weight: 200;
  outline: 1px solid #d3ebf8;
  margin-bottom: 20px;
  padding: 10px 16.66667px;
  background: #4fade3;
  border: 1px solid #d3ebf8;
}
/* line 38, ../../../sass/common/screen/notice.scss */
.notice-box.plain p {
  color: white;
  text-shadow: none;
}
/* line 52, ../../../sass/common/screen/notice.scss */
.notice-box.error {
  position: absolute;
  width: 30%;
  margin-left: 35%;
  top: 20px;
  z-index: 10;
  cursor: pointer;
  font-weight: 400;
  outline: 1px solid #d63632;
  margin-bottom: 20px;
  padding: 10px 16.66667px;
  background: #f0b3b2;
  border: 1px solid #f0b3b2;
}
/* line 38, ../../../sass/common/screen/notice.scss */
.notice-box.error p {
  color: #871e1b;
  text-shadow: none;
}
/* line 54, ../../../sass/common/screen/notice.scss */
.notice-box.error.plain {
  position: absolute;
  width: 30%;
  margin-left: 35%;
  top: 20px;
  z-index: 10;
  cursor: pointer;
  font-weight: 200;
  outline: 1px solid #f0b3b2;
  margin-bottom: 20px;
  padding: 10px 16.66667px;
  background: #d63632;
  border: 1px solid #f0b3b2;
}
/* line 38, ../../../sass/common/screen/notice.scss */
.notice-box.error.plain p {
  color: white;
  text-shadow: none;
}
/* line 59, ../../../sass/common/screen/notice.scss */
.notice-box.success {
  position: absolute;
  width: 30%;
  margin-left: 35%;
  top: 20px;
  z-index: 10;
  cursor: pointer;
  font-weight: 400;
  outline: 1px solid #5da423;
  margin-bottom: 20px;
  padding: 10px 16.66667px;
  background: #abe37d;
  border: 1px solid #abe37d;
}
/* line 38, ../../../sass/common/screen/notice.scss */
.notice-box.success p {
  color: #2d5011;
  text-shadow: none;
}
/* line 61, ../../../sass/common/screen/notice.scss */
.notice-box.success.plain {
  position: absolute;
  width: 30%;
  margin-left: 35%;
  top: 20px;
  z-index: 10;
  cursor: pointer;
  font-weight: 200;
  outline: 1px solid #abe37d;
  margin-bottom: 20px;
  padding: 10px 16.66667px;
  background: #5da423;
  border: 1px solid #abe37d;
}
/* line 38, ../../../sass/common/screen/notice.scss */
.notice-box.success.plain p {
  color: white;
  text-shadow: none;
}
/* line 66, ../../../sass/common/screen/notice.scss */
.notice-box.warning {
  position: absolute;
  width: 30%;
  margin-left: 35%;
  top: 20px;
  z-index: 10;
  cursor: pointer;
  font-weight: 400;
  outline: 1px solid #f77f00;
  margin-bottom: 20px;
  padding: 10px 16.66667px;
  background: #ffca91;
  border: 1px solid #ffca91;
}
/* line 38, ../../../sass/common/screen/notice.scss */
.notice-box.warning p {
  color: #914b00;
  text-shadow: none;
}
/* line 68, ../../../sass/common/screen/notice.scss */
.notice-box.warning.plain {
  position: absolute;
  width: 30%;
  margin-left: 35%;
  top: 20px;
  z-index: 10;
  cursor: pointer;
  font-weight: 200;
  outline: 1px solid #ffca91;
  margin-bottom: 20px;
  padding: 10px 16.66667px;
  background: #f77f00;
  border: 1px solid #ffca91;
}
/* line 38, ../../../sass/common/screen/notice.scss */
.notice-box.warning.plain p {
  color: white;
  text-shadow: none;
}

/* CSS NOTES */
/* line 3, ../../../sass/common/screen/notes.scss */
.note-actions-options {
  background: url("/custom/weyrich/var/themes/weyrich/images/forms/img_form_notes.png") no-repeat 0px 1px;
  width: 16px;
  height: 18px;
  margin-left: 3px;
  display: inline-block;
  cursor: pointer;
}

/* line 12, ../../../sass/common/screen/notes.scss */
.note-options {
  display: block;
  border: 1px #AAA solid;
  margin: 2px;
  padding: 2px;
}

/* line 19, ../../../sass/common/screen/notes.scss */
.note-options .help {
  background: url("/custom/weyrich/var/themes/weyrich/images/global/img_comments.png") no-repeat 0px 1px;
  width: 16px;
  height: 18px;
  display: inline-block;
}

/* line 26, ../../../sass/common/screen/notes.scss */
.note-options input {
  width: 100%;
}

/* line 30, ../../../sass/common/screen/notes.scss */
.note-options a.action {
  border: 3px solid #BBB;
  margin: 0px 5px 1px 20px;
  padding: 0px;
  background-color: #E5E9F0;
  display: inline-block;
}

/*	CSS RELANCES */
/* line 3, ../../../sass/common/screen/relance.scss */
select.relance_headerSelector {
  margin-right: 10px;
}

/* line 7, ../../../sass/common/screen/relance.scss */
img#relance_logo_print {
  float: left;
}

/* PARTIE DETAIL */
/* line 12, ../../../sass/common/screen/relance.scss */
.relance_print_entete {
  position: relative;
  margin: 0pt 0;
  float: right;
  width: 50%;
}

/*----- parties paragrahpes (g�n�rales) -----*/
/* line 20, ../../../sass/common/screen/relance.scss */
label.relance_paragraphe_detail, p.relance_paragraphe_detail {
  clear: both;
  margin: 10px 0;
}

/* PARTIE PRINT */
/*----- partie titre + logo Coprur -----*/
/* line 27, ../../../sass/common/screen/relance.scss */
img#relance_logo_print {
  margin-bottom: 5px;
}

/* line 31, ../../../sass/common/screen/relance.scss */
#relance_titre_print {
  text-align: center;
  font-size: 2em;
  background: none;
}

/* line 37, ../../../sass/common/screen/relance.scss */
#relance_libelle_print {
  text-align: center;
  font-size: 1.5em;
  background: none;
}

/*----- partie infos & adresse -----*/
/* line 44, ../../../sass/common/screen/relance.scss */
table.relance_adresses_print {
  float: right;
  width: 230px;
  margin: 10px 0;
  padding-bottom: 5px;
  border: 1px solid #ccc;
}

/* line 52, ../../../sass/common/screen/relance.scss */
table.relance_adresses_print th {
  background-color: #ccc;
  height: 10px;
  padding-left: 2px;
  border: 1px solid #ccc;
}

/* line 59, ../../../sass/common/screen/relance.scss */
table.relance_adresses_print td {
  font-size: 12px;
  padding-left: 2px;
}

/* line 64, ../../../sass/common/screen/relance.scss */
table#relance_infos_print {
  width: 50%;
  margin: 10px 0;
  border: 1px solid #ccc;
}

/* line 70, ../../../sass/common/screen/relance.scss */
table#relance_infos_print tr th {
  background-color: #ccc;
  height: 10px;
  padding-left: 5px;
  border: 1px solid #ccc;
}

/* line 77, ../../../sass/common/screen/relance.scss */
table#relance_infos_print label {
  float: left;
  display: block;
  width: 125px;
  margin-left: 5px;
}

/*----- partie liste des articles -----*/
/* line 85, ../../../sass/common/screen/relance.scss */
table#relance_detail_liste_articles_print {
  margin: 10px 2%;
  border: 1px solid black;
}

/* line 90, ../../../sass/common/screen/relance.scss */
table#relance_detail_liste_articles_print tr th {
  text-align: left;
  font-size: 10px;
}

/*----- parties paragrahpes (g�n�rales) -----*/
/* line 96, ../../../sass/common/screen/relance.scss */
p.relance_paragraphe_print {
  clear: both;
  margin: 10px 0;
}

/* line 101, ../../../sass/common/screen/relance.scss */
p.relance_date_relance {
  clear: both;
  float: right;
  margin: 10px 0;
  font-size: 1.3em;
}

/* line 108, ../../../sass/common/screen/relance.scss */
p.relance_paragraphe_signature_print {
  clear: both;
  font-size: 1.3em;
  margin: 20pt 20pt 0 0;
  float: right;
  text-align: center;
}

/*----- parties bas de page (date & signature) -----*/
/* line 117, ../../../sass/common/screen/relance.scss */
p.footer {
  margin-left: 50%;
}

/* line 2, ../../../sass/common/screen/search.scss */
div.search_main {
  width: 50%;
  position: relative;
  padding: 3pt;
  border: 1pt #AAAACC solid;
  text-align: center;
  background-color: #F5F5FF;
  margin: 3pt;
}

/* line 12, ../../../sass/common/screen/search.scss */
div.search_div {
  margin: 2pt;
  float: left;
}

/* line 17, ../../../sass/common/screen/search.scss */
legend {
  font-size: 12pt;
  color: #5C5C9C;
}

/* line 22, ../../../sass/common/screen/search.scss */
input.search_submit {
  background-color: #ECECFE;
}

/* line 26, ../../../sass/common/screen/search.scss */
select {
  font-size: 11px;
}

/* line 30, ../../../sass/common/screen/search.scss */
.error_message {
  color: #CC3333;
  text-align: center;
}

/* CSS / EXCEL STOCKBON */
/* line 3, ../../../sass/common/screen/stockbon.scss */
.form-stockbon .import-actions {
  border: 1px black dotted;
  max-width: 400px;
  margin: 3px;
  padding: 2px;
  background-color: #EEE;
  font-weight: bold;
}

/* line 12, ../../../sass/common/screen/stockbon.scss */
.form-stockbon .import-actions div {
  margin: 5px 0px 5px 10px;
  font-weight: normal;
}

/* line 17, ../../../sass/common/screen/stockbon.scss */
.form-stockbon .import-actions .button {
  line-height: 25px;
  padding-left: 19px;
}

/* line 22, ../../../sass/common/screen/stockbon.scss */
.form-stockbon .import-actions .button.excel {
  background: url("/custom/weyrich/var/themes/weyrich/images/global/icon-excel.png") no-repeat left transparent;
  background-size: contain;
}

/* line 27, ../../../sass/common/screen/stockbon.scss */
.form-stockbon .import-actions .button.csv {
  background: url("/custom/weyrich/var/themes/weyrich/images/global/icon-csv.gif") no-repeat left transparent;
  background-size: contain;
}

/* line 1, ../../../sass/common/screen/subtotals.scss */
table.subtotals_groups {
  border: 1px gray solid;
  border-spacing: 0px;
  border-collapse: collapse;
  width: 100%;
}

/* line 8, ../../../sass/common/screen/subtotals.scss */
table.subtotals_groups tbody tr.group, tr.subgroup {
  border-bottom: 1px black solid;
  cursor: pointer;
}

/* line 13, ../../../sass/common/screen/subtotals.scss */
table.subtotals_groups td.group {
  background-color: #DDE;
  font-weight: bold;
}

/* line 18, ../../../sass/common/screen/subtotals.scss */
table.subtotals_groups td.subgroup {
  background-color: #EEF;
  font-style: italic;
}

/* line 26, ../../../sass/common/screen/subtotals.scss */
table.subtotals_groups tfoot {
  font-weight: bold;
  background-color: #abc;
}

/* line 32, ../../../sass/common/screen/subtotals.scss */
.subtotals_div .subtotals_header {
  padding: 1rem 0;
}

/* line 36, ../../../sass/common/screen/subtotals.scss */
.subtotals_div .subtotals_header .filter-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1rem;
}

/* line 40, ../../../sass/common/screen/subtotals.scss */
.subtotals_div .subtotals_header .filter-list .filter input[type=submit] {
  background-image: url("/var/images/global/magnifier.png");
  background-position: center right 0.5rem;
  background-repeat: no-repeat;
  background-size: 10px;
  padding: 0 1.5rem 0 1rem;
  background-position-y: center;
  background-color: #E0E0E0;
}

/* line 50, ../../../sass/common/screen/subtotals.scss */
.subtotals_div .subtotals_header .filter-list .filter input[type=submit]:hover {
  background-color: #CCC;
}

/* line 54, ../../../sass/common/screen/subtotals.scss */
.subtotals_div .subtotals_header .filter-list .filter label {
  width: auto;
  line-height: 2rem;
  margin-right: .5rem;
  font-size: .9rem;
}

/* line 61, ../../../sass/common/screen/subtotals.scss */
.subtotals_div .subtotals_header .filter-list .filter label:after {
  content: ' : ';
}

/* line 65, ../../../sass/common/screen/subtotals.scss */
.subtotals_div .subtotals_header .filter-list .filter.options label {
  display: none;
}

/* line 69, ../../../sass/common/screen/subtotals.scss */
.subtotals_div .subtotals_header .filter-list .filter.text label {
  display: none;
}

/* line 73, ../../../sass/common/screen/subtotals.scss */
.subtotals_div .subtotals_header .filter-list .filter input, .subtotals_div .subtotals_header .filter-list .filter select {
  height: 2rem;
  background-color: #F5F5F5;
  padding-left: .2rem;
}

/* line 192, ../../../sass/common/screen/tabviews.scss */
#tab-home {
  padding-top: 3px;
}

/* line 195, ../../../sass/common/screen/tabviews.scss */
#tab-home .title {
  font-weight: bold;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

/* line 202, ../../../sass/common/screen/tabviews.scss */
#tab-home .content {
  padding: 1rem;
  background-color: #E8E8E8;
  display: flex;
  border: 1px #CCCCCC solid;
  min-height: 650px;
  margin: auto;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  /* line 215, ../../../sass/common/screen/tabviews.scss */
  #tab-home .content {
    flex-direction: column;
  }
}
/* line 220, ../../../sass/common/screen/tabviews.scss */
#tab-home .content > div {
  flex: 1 1 50%;
  padding: 1rem;
  margin: 0.5rem;
  line-height: 1.3em;
  vertical-align: top;
  flex-flow: row wrap;
}

/* line 230, ../../../sass/common/screen/tabviews.scss */
#tab-home .content .list-orders {
  background-color: rgba(252, 251, 244, 0.41);
  border: 2px solid #DDCCBB;
}

/* line 235, ../../../sass/common/screen/tabviews.scss */
.list-orders span.title {
  margin: 4px;
  background-color: #FFEEDD;
  font-weight: bold;
  border: 1px black solid;
  padding: 6px;
}

/* line 243, ../../../sass/common/screen/tabviews.scss */
.list-orders a {
  font-size: 0.9em;
}

/* line 247, ../../../sass/common/screen/tabviews.scss */
.list-clients {
  background-color: rgba(243, 243, 243, 0.69);
  border: 2px solid #BBCCDD;
}

/* line 252, ../../../sass/common/screen/tabviews.scss */
.list-clients span.title {
  margin: 4px;
  background-color: #DDEEFF;
  font-weight: bold;
  border: 1px black solid;
  padding: 6px;
}

/* line 260, ../../../sass/common/screen/tabviews.scss */
#tab-home .action-refresh {
  text-align: right;
  left: auto;
  padding: 1rem;
}

/* line 266, ../../../sass/common/screen/tabviews.scss */
#tab-home .no-result {
  padding: 2rem 0rem;
  display: block;
}

/* Tabs related styles */
/* line 307, ../../../sass/common/screen/tabviews.scss */
#tabsMain {
  width: 100%;
  height: 100%;
}
/* line 311, ../../../sass/common/screen/tabviews.scss */
#tabsMain .tv_header {
  height: 30px;
  border-bottom: 2px solid #667788;
  z-index: 1;
}
/* line 316, ../../../sass/common/screen/tabviews.scss */
#tabsMain .tv_header .tv_headDiv {
  display: inline-block;
  white-space: nowrap;
  vertical-align: top;
  background-color: #E0E4E4;
  border-top: 2px solid #667788;
  border-left: 2px solid #667788;
  border-right: 2px solid #667788;
  height: 18px;
  margin-right: 3px;
  padding: 7px 10px 3px 10px;
  cursor: pointer;
  font-size: 0.8em;
  border-bottom: 2px #667788 solid;
}
/* line 322, ../../../sass/common/screen/tabviews.scss */
#tabsMain .tv_header .tv_headDiv:first-child {
  background-color: #CCC;
  color: black;
}
/* line 325, ../../../sass/common/screen/tabviews.scss */
#tabsMain .tv_header .tv_headDiv:first-child.active {
  background-color: #F5F6F6;
  color: black;
}
/* line 346, ../../../sass/common/screen/tabviews.scss */
#tabsMain .tv_header .tv_headDiv:hover {
  background-color: #B0B0B0;
  border-top-bottom: 0px;
}
/* line 353, ../../../sass/common/screen/tabviews.scss */
#tabsMain .tv_header .tv_headDiv.active {
  height: 17px;
  border-bottom: 3px transparent dotted;
  box-shadow: none;
  opacity: 1;
  background-image: none !important;
  background-color: #F5F5F5;
}
/* line 362, ../../../sass/common/screen/tabviews.scss */
#tabsMain .tv_header .tv_headDiv.blink {
  background-color: #cd0a0a !important;
  background-color: #F5F5F5;
}
/* line 368, ../../../sass/common/screen/tabviews.scss */
#tabsMain .tv_header .tv_headTitle {
  vertical-align: top;
  display: inline-block;
  overflow: hidden;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
/* line 376, ../../../sass/common/screen/tabviews.scss */
#tabsMain .tv_header .tv_closeImg {
  border: 0px none;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-left: 5px;
  background: url("/custom/weyrich/var/themes/weyrich/images/tabs/img_close_button.png") no-repeat 0 0;
  background-size: cover;
  vertical-align: top;
}
/* line 382, ../../../sass/common/screen/tabviews.scss */
#tabsMain .tv_header .tv_closeImg_hover {
  border: 0px none;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-left: 5px;
  background: url("/custom/weyrich/var/themes/weyrich/images/tabs/img_close_button_hover.png") no-repeat 0 0;
  background-size: cover;
}
/* line 387, ../../../sass/common/screen/tabviews.scss */
#tabsMain .tv_header .tv_debugImg {
  border: 0px none;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-left: 5px;
  width: 25px;
  background-color: red;
  background: url("/custom/weyrich/var/themes/weyrich/images/tabs/img_debug.png") no-repeat 0 0;
}
/* line 395, ../../../sass/common/screen/tabviews.scss */
#tabsMain .tv_toolTip {
  background-color: #EEE;
  border-left: 1px solid #667788;
  border-right: 1px solid #667788;
  border-bottom: 2px solid #667788;
  display: inline;
  position: absolute;
  left: 250px;
  padding: 10px;
  z-index: 50;
  min-width: 250px;
}
/* line 407, ../../../sass/common/screen/tabviews.scss */
#tabsMain .tv_toolTip h3 {
  font-weight: bold;
  color: #555;
  display: inline;
}
/* line 411, ../../../sass/common/screen/tabviews.scss */
#tabsMain .tv_body .tv_bodyDiv {
  min-height: 800px;
  background-color: #F5F5F5;
  height: 100%;
  padding: 3px;
  border-left: 2px #667788 solid;
  border-bottom: 2px #667788 groove;
  border-right: 2px #667788 groove;
  display: none;
  padding-bottom: 15px;
}
/* line 422, ../../../sass/common/screen/tabviews.scss */
#tabsMain .tv_body .active {
  display: block;
}

/* line 431, ../../../sass/common/screen/tabviews.scss */
.tv_detail .first-word {
  color: #5736C4;
}
/* line 434, ../../../sass/common/screen/tabviews.scss */
.tv_detail:hover {
  background-color: #e7e7ff !important;
  border-top-bottom: 0px !important;
}

/* line 441, ../../../sass/common/screen/tabviews.scss */
.tv_form .first-word {
  color: #C43643;
}
/* line 445, ../../../sass/common/screen/tabviews.scss */
.tv_form:hover {
  background-color: #EECCCC !important;
  border-top-bottom: 0px !important;
}

/* line 452, ../../../sass/common/screen/tabviews.scss */
.tv_search .first-word {
  color: #C4A936;
}
/* line 456, ../../../sass/common/screen/tabviews.scss */
.tv_search:hover {
  background-color: #ffe7e0 !important;
  border-top-bottom: 0px !important;
}

/* line 463, ../../../sass/common/screen/tabviews.scss */
.tv_list .first-word {
  color: #12B44F;
}
/* line 467, ../../../sass/common/screen/tabviews.scss */
.tv_list:hover {
  background-color: #edffdf !important;
  border-top-bottom: 0px !important;
}

/* generic / inline action reload */
/* line 475, ../../../sass/common/screen/tabviews.scss */
.action-reload {
  width: 20px;
  height: 20px;
  background-image: url("/custom/weyrich/var/themes/weyrich/images/global/img_reload.png");
  display: inline-block;
}

/* line 1, ../../../sass/common/screen/print.scss */
.print {
  background: none;
}

/* line 1, ../../../sass/weyrich/sass/screen/_default.scss */
body {
  background: url("/custom/weyrich/var/themes/weyrich/images/sativa.png") repeat;
  font-size: 13px;
}

/* line 6, ../../../sass/weyrich/sass/screen/_default.scss */
.hidden {
  display: none;
}

/* line 8, ../../../sass/weyrich/sass/screen/_default.scss */
.debug {
  border: 1rem #ffcc57 dashed;
}

/* line 3, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck fieldset {
  padding: .5rem;
  background: linear-gradient(to left, #d9d9e0, #e5e5e5);
}
/* line 4, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck fieldset legend {
  background: linear-gradient(to bottom, #eeeeff, #ffffff, #eeeeff);
  padding: .5rem 1rem;
  font-weight: bold;
  font-variant: small-caps;
}
/* line 5, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck .fas {
  color: #0088cc;
}
/* line 7, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck a {
  cursor: pointer;
}
/* line 9, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck input:focus {
  font-weight: bold;
  background-color: #f3f8ff;
}
/* line 10, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck input[type=text] {
  padding-left: .2rem;
}
/* line 11, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck input.button {
  padding: .3rem .5rem;
  border: 1px grey solid;
  background-color: #E5E9F0;
  border-radius: 15px;
}
/* line 13, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck input.button:hover {
  background-color: #f3f8ff;
}
/* line 17, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck .assist {
  list-style: none;
  padding: 0 1rem;
}
/* line 19, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck .assist li::before {
  content: "\2192";
  font-weight: bold;
  color: #999999;
}

/* line 24, ../../../sass/weyrich/sass/screen/_forms.scss */
.multiple-input input {
  width: 100%;
}

/* line 33, ../../../sass/weyrich/sass/screen/_forms.scss */
.inner-client [name="observation"] {
  width: 260px;
}

/* line 38, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.client .innerLink.innerAbonnement_groupeAbonnement_groupe_client {
  margin-top: 1rem;
}

/* line 45, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.docfacture .import-actions .button.multiple {
  background: url("/custom/weyrich/var/themes/weyrich/images/global/add-multiple-lines.png") no-repeat left transparent;
  background-size: contain;
}
/* line 51, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.docfacture .comments.comment {
  width: 100%;
  height: 3rem;
}
/* line 54, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.docfacture .comments.options {
  border: 1px gray solid;
  padding: 1rem;
  margin: 1rem;
  display: inline-block;
  float: right;
}
/* line 57, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.docfacture .comments.options h4 {
  background-color: transparent;
}
/* line 58, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.docfacture .comments.options ol {
  margin: 1rem;
  padding: 0;
}
/* line 59, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.docfacture .comments.options li {
  cursor: copy;
}
/* line 60, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.docfacture .comments.options li:hover {
  text-decoration: underline;
}
/* line 62, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.docfacture .comments.options li > .content {
  display: none !important;
}

/* line 70, ../../../sass/weyrich/sass/screen/_forms.scss */
.autocomplete-suggestions .number {
  font-weight: bold;
}
/* line 71, ../../../sass/weyrich/sass/screen/_forms.scss */
.autocomplete-suggestions .neg {
  font-weight: bold;
  color: darkred;
  text-decoration: underline;
  text-decoration-color: darkred;
}
/* line 72, ../../../sass/weyrich/sass/screen/_forms.scss */
.autocomplete-suggestions .neg .number {
  background-color: transparent;
}

/* line 77, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.article .items {
  margin-bottom: 2rem;
  border: 1px gray solid;
  padding: .5rem;
}
/* line 80, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.article .items legend.article-lot {
  background: linear-gradient(to bottom, #ffcccc, #ffffff);
}
/* line 81, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.article .items .item, .formCheck.article .items .header {
  display: flex;
}
/* line 82, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.article .items .item > * {
  flex: 0 30%;
  padding-top: .5rem;
}
/* line 83, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.article .items .header > * {
  flex: 0 30%;
  font-weight: bold;
  border-bottom: 1px gray dashed;
}
/* line 84, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.article .items .designation, .formCheck.article .items .titre {
  flex: 0 100%;
}
/* line 85, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.article .items .totals {
  margin-top: 1rem;
}
/* line 87, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.article .items .totals > div {
  display: flex;
  line-height: 1.3rem;
}
/* line 89, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.article .items .totals > div .name {
  flex: 1;
  text-align: right;
  padding-right: .5rem;
  font-weight: bold;
}
/* line 90, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.article .items .totals > div .name::after {
  content: ' : ';
}
/* line 91, ../../../sass/weyrich/sass/screen/_forms.scss */
.formCheck.article .items .totals > div .value {
  flex: 0 70px;
}

/* line 2, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div .add {
  background-color: #E2FBFF99;
}

/* line 6, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.client .action-new-type {
  margin-bottom: .5rem;
}
/* line 7, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.client .action-new-type .select-doctype {
  background-color: #E2FBFF99;
}
/* line 8, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.client .action-new-type .submit-type {
  background-color: #E2FBFF99;
  font-weight: bold;
}
/* line 10, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.client .action-view-type {
  margin-bottom: .5rem;
  margin-top: 1rem;
}

/* line 14, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.abonnement_groupe .import-csv {
  border: 1px gray dashed;
  padding: .5rem;
  margin-top: 1rem;
}

/* line 20, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .results, .import-csv .results, .order-summary .results, .coda-import-area .results, .order-import-area .results {
  cursor: default;
  padding: .5rem;
  margin: .5rem 0;
}
/* line 23, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .results h3, .import-csv .results h3, .order-summary .results h3, .coda-import-area .results h3, .order-import-area .results h3 {
  margin: 0 0 0.5rem 0;
  text-decoration: underline;
}
/* line 24, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .results a, .import-csv .results a, .order-summary .results a, .coda-import-area .results a, .order-import-area .results a {
  font-weight: bold;
  cursor: pointer;
}
/* line 25, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .results.error, .import-csv .results.error, .order-summary .results.error, .coda-import-area .results.error, .order-import-area .results.error {
  border: 1px darkred dotted;
  background-color: #FFCCCC;
}
/* line 27, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .results.error h3, .import-csv .results.error h3, .order-summary .results.error h3, .coda-import-area .results.error h3, .order-import-area .results.error h3 {
  color: darkred;
}
/* line 29, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .results.warning, .import-csv .results.warning, .order-summary .results.warning, .coda-import-area .results.warning, .order-import-area .results.warning {
  border: 1px darkorange dotted;
  background-color: #ffefdb;
}
/* line 31, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .results.warning h3, .import-csv .results.warning h3, .order-summary .results.warning h3, .coda-import-area .results.warning h3, .order-import-area .results.warning h3 {
  color: darkorange;
}
/* line 33, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .results.success, .import-csv .results.success, .order-summary .results.success, .coda-import-area .results.success, .order-import-area .results.success {
  border: 1px darkgreen dotted;
  background-color: #f1ffea;
}
/* line 35, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .results.success h3, .import-csv .results.success h3, .order-summary .results.success h3, .coda-import-area .results.success h3, .order-import-area .results.success h3 {
  color: darkgreen;
}
/* line 39, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .actions, .import-csv .actions, .order-summary .actions, .coda-import-area .actions, .order-import-area .actions {
  margin-top: 1rem;
}
/* line 41, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .actions > *:first-of-type, .import-csv .actions > *:first-of-type, .order-summary .actions > *:first-of-type, .coda-import-area .actions > *:first-of-type, .order-import-area .actions > *:first-of-type {
  margin-right: 1rem;
}
/* line 43, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .action, .import-csv .action, .order-summary .action, .coda-import-area .action, .order-import-area .action {
  padding: 2px 1rem;
}
/* line 45, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .action i, .import-csv .action i, .order-summary .action i, .coda-import-area .action i, .order-import-area .action i {
  font-weight: bold;
  font-size: .8rem;
  margin-right: 5px;
}
/* line 46, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .action.confirm, .import-csv .action.confirm, .order-summary .action.confirm, .coda-import-area .action.confirm, .order-import-area .action.confirm {
  background-color: #9ad59a;
}
/* line 47, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .action.confirm:hover, .import-csv .action.confirm:hover, .order-summary .action.confirm:hover, .coda-import-area .action.confirm:hover, .order-import-area .action.confirm:hover {
  background-color: #2ee244;
}
/* line 48, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .action.confirm i, .import-csv .action.confirm i, .order-summary .action.confirm i, .coda-import-area .action.confirm i, .order-import-area .action.confirm i {
  color: darkgreen;
}
/* line 50, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .action.cancel, .import-csv .action.cancel, .order-summary .action.cancel, .coda-import-area .action.cancel, .order-import-area .action.cancel {
  background-color: #ffbfa7;
}
/* line 51, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .action.cancel:hover, .import-csv .action.cancel:hover, .order-summary .action.cancel:hover, .coda-import-area .action.cancel:hover, .order-import-area .action.cancel:hover {
  background-color: #ff9988;
}
/* line 52, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .action.cancel i, .import-csv .action.cancel i, .order-summary .action.cancel i, .coda-import-area .action.cancel i, .order-import-area .action.cancel i {
  color: darkred;
}
/* line 55, ../../../sass/weyrich/sass/screen/_details.scss */
.confirmation .action.disabled, .import-csv .action.disabled, .order-summary .action.disabled, .coda-import-area .action.disabled, .order-import-area .action.disabled {
  cursor: not-allowed;
  opacity: .5;
}

/* line 62, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.docfacture .order-summary-area {
  margin-bottom: 1rem;
}
/* line 66, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.docfacture .batch-line td:nth-of-type(3) {
  visibility: hidden;
}
/* line 67, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.docfacture .batch-line td:nth-of-type(4) {
  text-decoration: underline;
}
/* line 68, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.docfacture .batch-line td:nth-of-type(5) {
  visibility: hidden;
}
/* line 69, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.docfacture .batch-line td:nth-of-type(6) {
  visibility: hidden;
}
/* line 70, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.docfacture .batch-line td:nth-of-type(7) {
  visibility: hidden;
}
/* line 71, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.docfacture .batch-line td:nth-of-type(8) {
  visibility: hidden;
}
/* line 76, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.docfacture .item-line td:nth-of-type(2) {
  border-left: 1px #CCC solid;
  padding-left: 1rem;
}
/* line 77, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.docfacture .item-line td:nth-of-type(2):before {
  content: ' > ';
}

/* line 82, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture {
  margin: auto;
  max-width: 1200px;
}
/* line 84, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .header {
  display: flex;
  position: relative;
}
/* line 87, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .header .order-info {
  flex: 1;
}
/* line 87, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .header .order-info * {
  font-size: 1rem;
}
/* line 88, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .header ul {
  list-style-type: none;
  padding: 0;
}
/* line 89, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .header li label {
  width: 150px;
  display: inline-block;
  font-weight: bold;
}
/* line 90, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .header li label:after {
  content: ':';
}
/* line 92, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .header .order-ref {
  flex-basis: 270px;
}
/* line 94, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .header .order-ref > div {
  border: 1px #666 solid;
  padding: .5rem;
  border-bottom: 0px;
}
/* line 95, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .header .order-ref > div:last-child {
  border-bottom: 1px #666 solid;
}
/* line 97, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .header .order-ref .date {
  float: right;
  font-size: 1.2rem;
}
/* line 98, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .header .order-ref .order-no {
  font-size: 1.3rem;
  font-weight: bold;
}
/* line 99, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .header .order-ref .client {
  font-size: 1.2rem;
}
/* line 101, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .header .address {
  position: absolute;
  right: 0;
  top: 3.5cm;
  width: 8cm;
  font-weight: bold;
  display: grid;
  grid-template-rows: 1fr;
  height: 5cm;
}
/* line 106, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .header .tva-intracomm {
  font-weight: bold;
  margin-top: 1rem;
}
/* line 110, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .order-logo {
  display: block !important;
  margin-bottom: 1rem;
}
/* line 115, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .order_summary > div {
  display: inline-block;
  padding: 0.5rem 1rem 0.5rem 0;
  font-weight: bold;
}
/* line 118, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .order_summary > div label {
  padding-right: .5rem;
  padding-left: 2rem;
  display: inline-block;
  color: #222;
  font-weight: normal;
}
/* line 120, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .order_summary > div label:first-of-type {
  padding-left: 0;
}
/* line 124, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .footer {
  display: flex;
  page-break-inside: avoid;
}
/* line 127, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .footer .legales {
  flex: 1;
  font-size: 1rem;
  margin-right: 2rem;
}
/* line 128, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .footer .totals {
  flex-basis: 350px;
}
/* line 130, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .footer .totals table {
  width: 100%;
  border: 1px #222 solid;
  border-collapse: collapse;
}
/* line 132, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .footer .totals table th, .print.docfacture .footer .totals table td {
  border: 1px #222 solid;
  padding: 0.5rem;
}
/* line 133, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .footer .totals table td {
  text-align: right;
}
/* line 134, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .footer .totals table .grand-total {
  font-weight: bolder;
  font-size: 1.2rem;
}
/* line 139, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .ref_payment {
  font-weight: bold;
  white-space: nowrap;
  padding: .5rem 0;
  text-align: right;
}
/* line 142, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture .ref_payment label {
  font-weight: normal;
}
/* line 146, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture #docfacture_detail_liste_articles_print {
  border: 1px gray solid;
  display: block;
  width: 100%;
  min-height: 40vh;
}
/* line 150, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture #docfacture_detail_liste_articles_print th, .print.docfacture #docfacture_detail_liste_articles_print td {
  font-size: 1rem;
}
/* line 152, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture #docfacture_detail_liste_articles_print .docfacture_observation {
  white-space: pre-wrap !important;
}
/* line 154, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture #docfacture_detail_liste_articles_print thead {
  border-bottom: 1px gray solid;
}
/* line 155, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture #docfacture_detail_liste_articles_print tr {
  line-height: 2rem;
}
/* line 156, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture #docfacture_detail_liste_articles_print th {
  padding: 1rem;
  border-bottom: 1px gray solid;
}
/* line 159, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture #docfacture_detail_liste_articles_print tbody tr:first-of-type td {
  padding-top: 1rem;
}
/* line 160, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture #docfacture_detail_liste_articles_print tbody tr:last-of-type td {
  padding-bottom: 1rem;
}
/* line 161, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture #docfacture_detail_liste_articles_print tbody td {
  vertical-align: top;
}
/* line 162, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture #docfacture_detail_liste_articles_print tbody td:nth-of-type(2) {
  width: 100%;
}
/* line 163, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture #docfacture_detail_liste_articles_print tbody tr td:first-of-type {
  padding-left: .5rem;
  padding-right: .5rem;
  white-space: nowrap;
}
/* line 164, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture #docfacture_detail_liste_articles_print tbody tr td:last-of-type {
  padding-right: .5rem;
}
/* line 166, ../../../sass/weyrich/sass/screen/_details.scss */
.print.docfacture #docfacture_detail_liste_articles_print tfoot td {
  padding: 1rem 0.5rem;
}

/* line 171, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.depotvente .article_id {
  padding-left: .3rem;
}

/* line 176, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.article .innerTarifArticleprix th:nth-of-type(4), .detail_div.article .innerTarifArticleprix th:nth-of-type(5), .detail_div.article .innerTarifArticleprix th:nth-of-type(6) {
  text-align: right;
}

/* line 180, ../../../sass/weyrich/sass/screen/_details.scss */
.client-summary {
  padding: 1rem;
  background-color: white;
}
/* line 183, ../../../sass/weyrich/sass/screen/_details.scss */
.client-summary textarea {
  width: 50vw;
  height: 100px;
  padding: .5rem;
}
/* line 184, ../../../sass/weyrich/sass/screen/_details.scss */
.client-summary input[type=submit] {
  display: block;
}

/* line 188, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.article .items {
  margin-bottom: 2rem;
  border: 1px gray solid;
  padding: .5rem;
}
/* line 190, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.article .items .item, .detail_div.article .items .header {
  display: flex;
}
/* line 191, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.article .items .item > * {
  flex: 0 30%;
  padding-top: .5rem;
}
/* line 192, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.article .items .header > * {
  flex: 0 30%;
  font-weight: bold;
  border-bottom: 1px gray dashed;
}
/* line 193, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.article .items .designation, .detail_div.article .items .titre {
  flex: 0 100%;
}
/* line 195, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.article .items .totals {
  margin-top: 1rem;
}
/* line 197, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.article .items .totals > div {
  display: flex;
  line-height: 1.3rem;
}
/* line 199, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.article .items .totals > div .name {
  flex: 1;
  text-align: right;
  padding-right: .5rem;
  font-weight: bold;
}
/* line 200, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.article .items .totals > div .name::after {
  content: ' : ';
}
/* line 201, ../../../sass/weyrich/sass/screen/_details.scss */
.detail_div.article .items .totals > div .value {
  flex: 0 70px;
}

/* line 1, ../../../sass/weyrich/sass/screen/_delivery.scss */
.order-summary {
  background-color: white;
  padding: 1rem;
}
/* line 5, ../../../sass/weyrich/sass/screen/_delivery.scss */
.order-summary table {
  width: auto;
  border: 1px gray solid;
  margin: .5rem 0;
  border-spacing: 0;
}
/* line 8, ../../../sass/weyrich/sass/screen/_delivery.scss */
.order-summary table tr {
  opacity: .5;
}
/* line 10, ../../../sass/weyrich/sass/screen/_delivery.scss */
.order-summary table tr.is_enabled {
  opacity: 1;
}
/* line 12, ../../../sass/weyrich/sass/screen/_delivery.scss */
.order-summary table td {
  text-align: center;
  border: 1px #CCC solid;
}
/* line 15, ../../../sass/weyrich/sass/screen/_delivery.scss */
.order-summary table td:nth-of-type(1) {
  width: 100px;
}
/* line 16, ../../../sass/weyrich/sass/screen/_delivery.scss */
.order-summary table td:nth-of-type(2) {
  width: 300px;
}
/* line 17, ../../../sass/weyrich/sass/screen/_delivery.scss */
.order-summary table td:nth-of-type(3) {
  width: 200px;
}
/* line 18, ../../../sass/weyrich/sass/screen/_delivery.scss */
.order-summary table td:nth-of-type(4) {
  width: 100px;
}
/* line 19, ../../../sass/weyrich/sass/screen/_delivery.scss */
.order-summary table td:nth-of-type(5) {
  width: 100px;
}
/* line 23, ../../../sass/weyrich/sass/screen/_delivery.scss */
.order-summary .web-import-area {
  min-height: 3rem;
}

/* line 3, ../../../sass/weyrich/sass/screen/_lists.scss */
.list.abonnement .no_debut, .list.abonnement .no_fin, .list.abonnement .no_servi {
  text-align: center;
}
/* line 6, ../../../sass/weyrich/sass/screen/_lists.scss */
.list th#client_id {
  width: auto;
}

/* line 11, ../../../sass/weyrich/sass/screen/_lists.scss */
.list .le_filters_body input, .list .le_filters_body select {
  border: 1px #AAA solid;
}
/* line 14, ../../../sass/weyrich/sass/screen/_lists.scss */
.list .le_elements .int {
  text-align: right;
  padding-right: 2px;
}
/* line 15, ../../../sass/weyrich/sass/screen/_lists.scss */
.list .le_elements .float {
  text-align: right;
}
/* line 16, ../../../sass/weyrich/sass/screen/_lists.scss */
.list .le_elements .state {
  vertical-align: top;
  text-align: right;
  width: 10px;
  height: 10px;
}
/* line 17, ../../../sass/weyrich/sass/screen/_lists.scss */
.list .le_elements .bool {
  text-align: center;
}
/* line 18, ../../../sass/weyrich/sass/screen/_lists.scss */
.list .le_elements .bool img {
  height: 12px;
}
/* line 20, ../../../sass/weyrich/sass/screen/_lists.scss */
.list .le_elements .image img {
  width: 100px;
  max-width: 100%;
}

/** *************
    LOGIN PAGE
 */
/* line 4, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page {
  margin: 0;
}
/* line 7, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page .login_logo {
  background-color: white;
}
/* line 8, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page .login_sublogo {
  margin: 2rem auto;
  width: 400px;
  text-align: center;
}
/* line 9, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page .login_sublogo::before {
  content: 'Editions Weyrich';
}
/* line 14, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page .login-div .login {
  position: relative;
  width: 400px;
  display: table;
  margin: 0 auto;
  background: #fff;
  border-radius: 0px;
  padding: 0;
  border: 1px #CCC solid;
}
/* line 24, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page .login-div fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
/* line 25, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page .login-div .legend {
  position: relative;
  display: block;
  width: calc(100% - 30px);
  background: #529EFF;
  padding: 15px;
  color: #fff;
  font-size: 20px;
}
/* line 34, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page .login-div .legend:after {
  content: "";
  background-image: url("/custom/weyrich/var/themes/weyrich/images/multy-user.png");
  background-size: 100px 100px;
  background-repeat: no-repeat;
  background-position: 202px -16px;
  opacity: 0.06;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
}
/* line 49, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page .login-div .input {
  position: relative;
  width: 90%;
  margin: 15px auto;
  display: flex;
}
/* line 55, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page .login-div .input span {
  position: absolute;
  display: block;
  color: #bababa;
  left: 10px;
  top: 4px;
  font-size: 20px;
}
/* line 64, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page .login-div .input input {
  width: 100%;
  padding: 10px 5px 10px 40px;
  display: block;
  border: 1px solid #EDEDED;
  border-radius: 4px;
  transition: 0.2s ease-out;
}
/* line 72, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page .login-div .input input::placeholder {
  color: #a1a1a1;
}
/* line 74, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page .login-div .input input:focus {
  padding: 10px 5px 10px 30px;
  outline: 0;
  border-color: #529EFF;
}
/* line 82, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page .login-div .submit {
  width: 45px;
  height: 45px;
  display: block;
  margin: 0 auto -15px auto;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #529EFF;
  color: #529EFF;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0px 0px 0px 7px #fff;
  transition: 0.2s ease-out;
}
/* line 95, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page .login-div .submit:hover, .login-page .login-div .submit:focus {
  background: #529EFF;
  color: #fff;
  outline: 0;
}
/* line 102, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page .login-div .feedback {
  position: absolute;
  bottom: -70px;
  width: 100%;
  text-align: center;
  color: #fff;
  background: #2ecc71;
  padding: 10px 0;
  font-size: 12px;
  display: none;
  opacity: 0;
}
/* line 114, ../../../sass/weyrich/sass/screen/_login.scss */
.login-page .login-div .feedback:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(46, 204, 113, 0);
  border-bottom-color: #2ecc71;
  border-width: 10px;
  margin-left: -10px;
}

/* line 1, ../../../sass/weyrich/sass/screen/_menu.scss */
.menuContainer {
  background-color: #FFF;
}

/* line 6, ../../../sass/weyrich/sass/screen/_menu.scss */
.miniSearchContent select {
  width: 172px;
  height: 34px;
  padding: 5px 35px 5px 5px;
  font-size: 15px;
  border: 1px solid #ccc;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(/custom/weyrich/var/themes/weyrich/images/global/magnifier.png) 96%/15% no-repeat #eee;
  margin-bottom: .35rem;
}
/* line 14, ../../../sass/weyrich/sass/screen/_menu.scss */
.miniSearchContent select:hover, .miniSearchContent select:active, .miniSearchContent select:focus {
  cursor: pointer;
  background-color: #DDD;
  border: 1px black solid;
}

/* line 2, ../../../sass/weyrich/sass/screen/_print.scss */
.print.delivery .delivery-info {
  vertical-align: top;
  border: 1px solid #ccc;
}
/* line 4, ../../../sass/weyrich/sass/screen/_print.scss */
.print.delivery .delivery-info th {
  background-color: #ccc;
  text-align: center;
}
/* line 6, ../../../sass/weyrich/sass/screen/_print.scss */
.print.delivery .bank-info {
  padding: 1px;
}
/* line 8, ../../../sass/weyrich/sass/screen/_print.scss */
.print.delivery .bank-info h3 {
  margin: 0;
  background-color: #ccc;
  text-align: center;
}
/* line 9, ../../../sass/weyrich/sass/screen/_print.scss */
.print.delivery .bank-info p {
  margin: 0;
}

/* line 16, ../../../sass/weyrich/sass/screen/_print.scss */
.print.docfacture .batch-line td:nth-of-type(3) {
  visibility: hidden;
}
/* line 17, ../../../sass/weyrich/sass/screen/_print.scss */
.print.docfacture .batch-line td:nth-of-type(4) {
  text-decoration: underline;
}
/* line 18, ../../../sass/weyrich/sass/screen/_print.scss */
.print.docfacture .batch-line td:nth-of-type(5) {
  visibility: hidden;
}
/* line 19, ../../../sass/weyrich/sass/screen/_print.scss */
.print.docfacture .batch-line td:nth-of-type(6) {
  visibility: hidden;
}
/* line 20, ../../../sass/weyrich/sass/screen/_print.scss */
.print.docfacture .batch-line td:nth-of-type(7) {
  visibility: hidden;
}
/* line 21, ../../../sass/weyrich/sass/screen/_print.scss */
.print.docfacture .batch-line td:nth-of-type(8) {
  visibility: hidden;
}
/* line 26, ../../../sass/weyrich/sass/screen/_print.scss */
.print.docfacture .item-line td:nth-of-type(2) {
  border-left: 1px #CCC solid;
  padding-left: 1rem;
}
/* line 27, ../../../sass/weyrich/sass/screen/_print.scss */
.print.docfacture .item-line td:nth-of-type(2):before {
  content: ' > ';
}

/* line 1, ../../../sass/weyrich/sass/screen/_tabviews.scss */
#tabsMain .tv_body .tv_bodyDiv {
  min-height: 1000px;
}

/* line 6, ../../../sass/weyrich/sass/screen/_tabviews.scss */
#tabsMain #tab-home .entete_validation {
  display: inline-block;
  width: 110px;
  margin-bottom: 2px;
}
/* line 8, ../../../sass/weyrich/sass/screen/_tabviews.scss */
#tabsMain .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 2fr 1fr;
  background-color: #F0F0F0;
}
/* line 14, ../../../sass/weyrich/sass/screen/_tabviews.scss */
#tabsMain .content > div {
  box-shadow: 4px 5px 4px #CCC;
}
/* line 15, ../../../sass/weyrich/sass/screen/_tabviews.scss */
#tabsMain .content > div .title {
  box-shadow: 1px 1px 1px;
}
/* line 19, ../../../sass/weyrich/sass/screen/_tabviews.scss */
#tabsMain .content .list-orders {
  grid-column: 1;
  grid-row: 1/3;
}
/* line 23, ../../../sass/weyrich/sass/screen/_tabviews.scss */
#tabsMain .content .list-clients {
  grid-column: 2;
  grid-row: 1/2;
}
/* line 27, ../../../sass/weyrich/sass/screen/_tabviews.scss */
#tabsMain .content .quick-actions {
  grid-column: 2;
  grid-row: 2/2;
  border: 2px #76a772 solid;
  background-color: rgba(234, 255, 243, 0.16);
}
/* line 32, ../../../sass/weyrich/sass/screen/_tabviews.scss */
#tabsMain .content .quick-actions .title {
  background-color: #EFD;
  margin: 4px;
  font-weight: bold;
  border: 1px black solid;
  padding: 6px;
  flex: 0 0 20px;
}
/* line 41, ../../../sass/weyrich/sass/screen/_tabviews.scss */
#tabsMain .content .quick-actions .actions {
  display: flex;
  flex-direction: row;
}
/* line 45, ../../../sass/weyrich/sass/screen/_tabviews.scss */
#tabsMain .content .quick-actions .action {
  padding: 1rem;
  border: 1px grey solid;
  margin: 1rem 4px;
}
/* line 47, ../../../sass/weyrich/sass/screen/_tabviews.scss */
#tabsMain .content .quick-actions .action button {
  background-color: #e6f7cb;
}
/* line 48, ../../../sass/weyrich/sass/screen/_tabviews.scss */
#tabsMain .content .quick-actions .action .action-title {
  padding-bottom: .5rem;
  display: block;
  font-weight: bold;
  color: #466344;
}
/* line 49, ../../../sass/weyrich/sass/screen/_tabviews.scss */
#tabsMain .content .quick-actions .action .current-value {
  font-weight: bold;
}

#abt_title {
	font-size:35pt;
}

#abt_title strong {
	font-size:40pt;
}

#abt_resubscribe {
	font-size:20pt;
	text-align:center;
	font-weight:bold;}

#abt_subscription_ended{
	font-weight:bold;
	font-size:1.1em;
}

#abt_separator{
	border-bottom: 1px dashed #000000
}

#abt_subscribe_header{
	font-size:16pt;
	text-align:center;
}

#abt_footer{
	font-size:9pt;
	text-align:center;	
}


/* format A4 */
div.abt_page {
    font-size:0.8em;
    width:20cm;
    margin-left: auto;
    margin-right: auto;
    padding:5px;
    border-left:1px gray solid;
    border-right:1px gray solid;
}

/*  mailing */

#abt_address {
    font-weight: normal;
    font-size:0.9em;
    margin-left:11cm;
}

#abt_date {
    font-weight: normal;
    font-size:0.9em;
    margin-left:11cm;
}

.abt_contenu{
}

#abt_signature{
    font-weight: normal;
    margin-left:11cm;
}

#abt_titre_reabonnement{
    text-align:center
}

.abt_box {
    width : 0.5em;
    height :0.5em;
    /*-moz-transform: scale(0.7); *//* FF */
    padding: 1px;
    margin: 2px;
}
#abt_address_modif1 {
    width:3cm;
    font-size:11px;
    display:inline-block;
    vertical-align: top
}
#abt_address_modif2 {
    width:15cm;
    font-size:11px;
    display:inline-block;
}
