.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.clearfix:after {
  clear: both;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.visually {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* -----------------------------------
 * Slidebars
 * Version 0.10.3
 * http://plugins.adchsm.me/slidebars/
 *
 * Written by Adam Smith
 * http://www.adchsm.me/
 *
 * Released under MIT License
 * http://plugins.adchsm.me/slidebars/license.txt
 *
 * -------------------
 * Slidebars CSS Index
 *
 * 001 - Box Model, Html & Body
 * 002 - Site
 * 003 - Slidebars
 * 004 - Animation
 * 005 - Helper Classes
 *
 * ----------------------------
 * 001 - Box Model, Html & Body
 */
html,
body,
#sb-site,
.sb-site-container,
.sb-slidebar {
  /* Set box model to prevent any user added margins or paddings from altering the widths or heights. */
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
  /* Stops horizontal scrolling. */
}
html {
  height: 100%;
  /* Site is as tall as device. */
}
body {
  min-height: 100%;
  height: auto;
  position: relative;
  /* Required for static Slidebars to function properly. */
}
/* Site scroll locking - prevent site from scrolling when a Slidebar is open, except when static Slidebars are only available. */
html.sb-scroll-lock.sb-active:not(.sb-static) {
  overflow: hidden;
}
/* ----------
 * 002 - Site
 */
#sb-site {
  background-color: #e6e6e0;
}
#sb-site,
.sb-site-container {
  /* You may now use class .sb-site-container instead of #sb-site and use your own id. However please make sure you don't set any of the following styles any differently on your id. */
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  /* Site sits above Slidebars */
  /* Default background colour, overwrite this with your own css. I suggest moving your html or body background styling here. Making this transparent will allow the Slidebars beneath to be visible. */
}
/* Micro clearfix by Nicolas Gallagher, ensures the site container hits the top and bottom of the screen. */
#sb-site:before,
#sb-site:after,
.sb-site-container:before,
.sb-site-container:after {
  content: ' ';
  display: table;
}
#sb-site:before,
#sb-site:after,
.sb-site-container:before,
.sb-site-container:after {
  clear: both;
}
/* ---------------
 * 003 - Slidebars
 */
.sb-slidebar {
  height: 100%;
  overflow-y: auto;
  /* Enable vertical scrolling on Slidebars when needed. */
  position: fixed;
  top: 0;
  z-index: 0;
  /* Slidebars sit behind sb-site. */
  display: none;
  /* Initially hide the Slidebars. Changed from visibility to display to allow -webkit-overflow-scrolling. */
  background-color: #f3f4f5;
  /* Default Slidebars background colour, overwrite this with your own css. */
}
.sb-slidebar,
.sb-slidebar * {
  -webkit-transform: translateZ(0px);
  /* Fixes issues with translated and z-indexed elements on iOS 7. */
}
.sb-left {
  left: 0;
  /* Set Slidebar to the left. */
  background-color: #304b50;
  color: #FFFFFF;
}
.sb-right {
  right: 0;
  /* Set Slidebar to the right. */
}
.sb-right.loggedin {
  background-color: #304b50;
}
html.sb-static .sb-slidebar,
.sb-slidebar.sb-static {
  position: absolute;
  /* Makes Slidebars scroll naturally with the site, and unfixes them for Android Browser < 3 and iOS < 5. */
}
.sb-slidebar.sb-active {
  display: block;
  /* Makes Slidebars visibile when open. Changed from visibility to display to allow -webkit-overflow-scrolling. */
}
.sb-style-overlay {
  z-index: 9999;
  /* Set z-index high to ensure it overlays any other site elements. */
}
.sb-momentum-scrolling {
  -webkit-overflow-scrolling: touch;
  /* Adds native momentum scrolling for iOS & Android devices. */
}
/* Slidebar widths for browsers/devices that don't support media queries. */
.sb-slidebar {
  width: 30%;
}
.sb-width-thin {
  width: 15%;
}
.sb-width-wide {
  width: 45%;
}
@media (max-width: 480px) {
  /* Slidebar widths on extra small screens. */
  .sb-slidebar {
    width: 80%;
  }
  .sb-width-thin {
    width: 55%;
  }
  .sb-width-wide {
    width: 85%;
  }
}
@media (min-width: 481px) {
  /* Slidebar widths on small screens. */
  .sb-slidebar {
    width: 55%;
  }
  .sb-width-thin {
    width: 40%;
  }
  .sb-width-wide {
    width: 70%;
  }
}
@media (min-width: 768px) {
  /* Slidebar widths on medium screens. */
  .sb-slidebar {
    width: 40%;
  }
  .sb-width-thin {
    width: 25%;
  }
  .sb-width-wide {
    width: 55%;
  }
}
@media (min-width: 992px) {
  /* Slidebar widths on large screens. */
  .sb-slidebar {
    width: 30%;
  }
  .sb-width-thin {
    width: 15%;
  }
  .sb-width-wide {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  /* Slidebar widths on extra large screens. */
  .sb-slidebar {
    width: 20%;
  }
  .sb-width-thin {
    width: 5%;
  }
  .sb-width-wide {
    width: 35%;
  }
}
/* ---------------
 * 004 - Animation
 */
.sb-slide,
#sb-site,
.sb-site-container,
.sb-slidebar {
  -webkit-transition: -webkit-transform 400ms ease;
  -moz-transition: -moz-transform 400ms ease;
  -o-transition: -o-transform 400ms ease;
  transition: transform 400ms ease;
  -webkit-transition-property: -webkit-transform, left, right;
  /* Add left/right for Android < 4.4. */
  -webkit-backface-visibility: hidden;
  /* Prevents flickering. This is non essential, and you may remove it if your having problems with fixed background images in Chrome. */
}
/* --------------------
 * 005 - Helper Classes
 */
.sb-hide {
  display: none;
  /* Optionally applied to control classes when Slidebars is disabled over a certain width. */
}
/* 
*	Header LESS
* 
*	1. Standard Styles 		| Reset, Header Wrapper, Navigation, Search (Desktop + Mobil)
*	2. Left Area 			| Navigation (Desktop)
*	3. Center Area 			| Logo (Desktop + Mobil)
*	4. Right Area 			| Search, Language, Login, Profil (Desktop)
*	5. Mobile Left Sidebar 	| Button, Search, Navigation, Language (Mobil)
*	6. Mobile Right Sidebar | Login, Profil (Mobil)
*/
body.cfInterfaceEnabled {
  margin: 0 !important;
}
body.cfInterfaceEnabled .sb-left {
  left: 80px;
}
.head-bar-user-info,
.head-bar-info {
  min-width: 320px !important;
  height: auto !important;
  padding: 10px;
}
.head-bar-user-info p,
.head-bar-info p,
.head-bar-user-info .text,
.head-bar-info .text {
  line-height: 1.4 !important;
  height: auto !important;
}
.head-bar-user-info p .tyCloseBtn,
.head-bar-info p .tyCloseBtn,
.head-bar-user-info .text .tyCloseBtn,
.head-bar-info .text .tyCloseBtn {
  line-height: 1 !important;
  height: auto !important;
}
#appPageSiteHeader,
#pageMobileLogin,
#pageMobileNav,
#pageMobileProfil {
  font-family: 'DIN Next W01', "Trebuchet MS", Tahoma, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #6d8083;
  font-weight: 400;
  position: relative;
}
#appPageSiteHeader *,
#pageMobileLogin *,
#pageMobileNav *,
#pageMobileProfil *,
#appPageSiteHeader *:before,
#pageMobileLogin *:before,
#pageMobileNav *:before,
#pageMobileProfil *:before,
#appPageSiteHeader *:after,
#pageMobileLogin *:after,
#pageMobileNav *:after,
#pageMobileProfil *:after {
  box-sizing: border-box;
  outline: none;
}
#appPageSiteHeader {
  background: #304b50;
  height: 70px;
  width: 100%;
  position: relative;
  z-index: 999;
}
.pageHeadNavigation {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pageHeadNavigation li {
  background-color: #304b50;
  padding: 0;
}
.pageHeadNavigation li a {
  font-size: 15px;
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 10px 4px;
  border-bottom: 1px solid #4e666b;
}
.pageHeadNavigation li a.active {
  color: #c0c9ca;
  border-color: #c0c9ca;
}
.pageHeadNavigation li:hover,
.pageHeadNavigation li:active,
.pageHeadNavigation li.active {
  background-color: #87c00f;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.pageHeadNavigation li:hover a,
.pageHeadNavigation li:active a,
.pageHeadNavigation li.active a {
  border-bottom-color: transparent;
}
#pageHeadRight .pageHeadSearch .input-group,
#pageMobileNav .pageMobileSearch .input-group {
  position: relative;
  display: table;
  border-collapse: collapse;
  float: right;
}
#pageHeadRight .pageHeadSearch .input-group input[type="text"],
#pageMobileNav .pageMobileSearch .input-group input[type="text"] {
  width: 165px;
  float: left;
  border: 1px solid #304b50;
  border-right: none;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
  color: #FFFFFF;
  font-size: 12px;
  height: 40px;
  padding: 8px 12px;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
#pageHeadRight .pageHeadSearch .input-group input[type="text"]:-moz-placeholder,
#pageMobileNav .pageMobileSearch .input-group input[type="text"]:-moz-placeholder {
  color: #FFFFFF;
}
#pageHeadRight .pageHeadSearch .input-group input[type="text"]::-moz-placeholder,
#pageMobileNav .pageMobileSearch .input-group input[type="text"]::-moz-placeholder {
  color: #FFFFFF;
}
#pageHeadRight .pageHeadSearch .input-group input[type="text"]:-ms-input-placeholder,
#pageMobileNav .pageMobileSearch .input-group input[type="text"]:-ms-input-placeholder {
  color: #FFFFFF;
}
#pageHeadRight .pageHeadSearch .input-group input[type="text"]::-webkit-input-placeholder,
#pageMobileNav .pageMobileSearch .input-group input[type="text"]::-webkit-input-placeholder {
  color: #FFFFFF;
}
#pageHeadRight .pageHeadSearch .input-group input[type="text"]:focus,
#pageMobileNav .pageMobileSearch .input-group input[type="text"]:focus {
  background-color: #FFFFFF;
  color: #6d8083;
}
#pageHeadRight .pageHeadSearch .input-group input[type="text"]:focus:-moz-placeholder,
#pageMobileNav .pageMobileSearch .input-group input[type="text"]:focus:-moz-placeholder {
  color: #666666;
}
#pageHeadRight .pageHeadSearch .input-group input[type="text"]:focus::-moz-placeholder,
#pageMobileNav .pageMobileSearch .input-group input[type="text"]:focus::-moz-placeholder {
  color: #666666;
}
#pageHeadRight .pageHeadSearch .input-group input[type="text"]:focus:-ms-input-placeholder,
#pageMobileNav .pageMobileSearch .input-group input[type="text"]:focus:-ms-input-placeholder {
  color: #666666;
}
#pageHeadRight .pageHeadSearch .input-group input[type="text"]:focus::-webkit-input-placeholder,
#pageMobileNav .pageMobileSearch .input-group input[type="text"]:focus::-webkit-input-placeholder {
  color: #666666;
}
#pageHeadRight .pageHeadSearch .input-group input[type="text"]:focus + .input-group-btn button.btn-search,
#pageMobileNav .pageMobileSearch .input-group input[type="text"]:focus + .input-group-btn button.btn-search {
  background-color: #87c00f;
  cursor: pointer;
  color: #FFFFFF;
}
#pageHeadRight .pageHeadSearch .input-group input[type="text"]:focus + .input-group-btn button.btn-search:hover,
#pageMobileNav .pageMobileSearch .input-group input[type="text"]:focus + .input-group-btn button.btn-search:hover {
  background-color: #94D310;
}
#pageHeadRight .pageHeadSearch .input-group .input-group-btn,
#pageMobileNav .pageMobileSearch .input-group .input-group-btn {
  display: table-cell;
  width: 39px;
  vertical-align: top;
}
#pageHeadRight .pageHeadSearch .input-group .input-group-btn:not(:first-child):not(:last-child),
#pageMobileNav .pageMobileSearch .input-group .input-group-btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
#pageHeadRight .pageHeadSearch .input-group .input-group-btn button,
#pageMobileNav .pageMobileSearch .input-group .input-group-btn button {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  border: 1px solid #304b50;
  border-left: none;
  background-color: rgba(255, 255, 255, 0.2);
  height: 40px;
  padding: 8px 12px;
  color: #FFFFFF;
  cursor: default;
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#pageHeadLeft {
  float: left;
  position: relative;
  z-index: 2;
}
#pageHeadLeft .siteNavigation ul.list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#pageHeadLeft .siteNavigation ul.list li {
  float: left;
  position: relative;
}
#pageHeadLeft .siteNavigation ul.list li a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  padding: 0 15px;
  line-height: 70px;
  vertical-align: middle;
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
#pageHeadLeft .siteNavigation ul.list li a .caption {
  position: relative;
}
#pageHeadLeft .siteNavigation ul.list li a .caption:after {
  display: block;
  position: absolute;
  font-size: 0;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #FFFFFF;
  content: "";
  -webkit-transition-property: width;
  -moz-transition-property: width;
  -o-transition-property: width;
  transition-property: width;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#pageHeadLeft .siteNavigation ul.list li + li:before {
  display: block;
  width: 1px;
  overflow: hidden;
  height: 40px;
  line-height: 0;
  background-color: #FFFFFF;
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  margin-top: -20px;
  opacity: 0.2;
  filter: alpha(opacity=20);
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
#pageHeadLeft .siteNavigation ul.list li:hover a {
  background-color: #87c00f;
}
#pageHeadLeft .siteNavigation ul.list li:hover a .caption:after {
  width: 100%;
}
#pageHeadLeft .siteNavigation ul.list li:hover:before,
#pageHeadLeft .siteNavigation ul.list li:hover + li:before {
  opacity: 0;
  filter: alpha(opacity=0);
}
#pageHeadLeft .siteNavigation ul.list li.active a {
  color: #87c00f;
}
#pageHeadLeft .siteNavigation ul.list li.active a .caption:after {
  background-color: #87c00f;
  width: 100%;
}
#pageHeadLeft .siteNavigation ul.list li.active a:hover {
  background: none;
}
#pageHeadCenter {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 70px;
}
#pageHeadCenter .pageLogo {
  width: 150px;
  position: absolute;
  left: 50%;
  height: 70px;
  margin-left: -75px;
}
#pageHeadCenter .pageLogo a {
  display: block;
  padding: 15px 0 9px;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
#pageHeadCenter .pageLogo a img {
  border: none;
}
#pageHeadCenter .pageLogo a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#pageHeadRight {
  float: right;
  position: relative;
  z-index: 2;
  padding-top: 15px;
}
#pageHeadRight .pageHeadSearch {
  float: left;
  margin-right: 3px;
}
#pageHeadRight .pageHeadLogin {
  float: left;
  margin-right: 15px;
}
#pageHeadRight .pageHeadLogin .loggedout a.btn {
  margin-top: 1px;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.2);
  display: block;
  float: left;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 12px;
  border: 1px solid #304b50;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#pageHeadRight .pageHeadLogin .loggedout a.btn.btn-cta {
  background-color: #87c00f;
}
#pageHeadRight .pageHeadLogin .loggedout a.btn.btn-cta:hover {
  background-color: #94D310;
}
#pageHeadRight .pageHeadLogin .loggedout a.btn + .btn {
  margin-left: 5px;
}
#pageHeadRight .pageHeadLogin .loggedout a.btn:hover {
  background-color: #6F8B90;
}
#pageHeadRight .pageHeadLogin .loggedin {
  height: 40px;
  position: relative;
}
#pageHeadRight .pageHeadLogin .loggedin .inner {
  position: relative;
}
#pageHeadRight .pageHeadLogin .loggedin .inner .picto {
  position: relative;
  top: 1px;
}
#pageHeadRight .pageHeadLogin .loggedin .inner .pageProfilNavigation {
  display: none;
}
#pageHeadRight .pageHeadLogin .loggedin .pageHeadUser {
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  color: #FFFFFF;
}
#pageHeadRight .pageHeadLogin .loggedin .pageHeadUser span {
  float: left;
  display: block;
}
#pageHeadRight .pageHeadLogin .loggedin .pageHeadUser span.userAvatar {
  overflow: hidden;
  height: 40px;
}
#pageHeadRight .pageHeadLogin .loggedin .pageHeadUser span.userAvatar img {
  border: none;
}
#pageHeadRight .pageHeadLogin .loggedin .pageHeadUser span.userAvatar:hover + .userButton {
  background-color: rgba(255, 255, 255, 0.3);
}
#pageHeadRight .pageHeadLogin .loggedin .pageHeadUser span.userButton {
  padding: 10px 55px 10px 15px;
  background-color: rgba(255, 255, 255, 0.2);
  display: block;
  float: left;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 12px;
  width: 160px;
  position: relative;
  height: 40px;
  border-radius: 0 4px 0 0;
  overflow: hidden;
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#pageHeadRight .pageHeadLogin .loggedin .pageHeadUser span.userButton:after {
  content: '';
  display: block;
  width: 1px;
  height: 1px;
  border: 5px solid;
  border-color: #FFFFFF transparent transparent transparent;
  position: absolute;
  right: 10px;
  top: 16px;
  z-index: 1;
}
#pageHeadRight .pageHeadLogin .loggedin .pageHeadUser span.userButton .caption {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
#pageHeadRight .pageHeadLogin .loggedin .pageHeadUser span.userButton:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}
#pageHeadRight .pageHeadLogin .loggedin .pageProfilNavigation {
  z-index: 10;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  background-color: rgba(40, 40, 40, 0.95);
  margin: 0;
  padding: 5px 15px;
  list-style: none;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
#pageHeadRight .pageHeadLogin .loggedin .pageProfilNavigation a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 12px;
  margin: 15px 0;
  display: block;
  -webkit-transition-property: color;
  -moz-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#pageHeadRight .pageHeadLogin .loggedin .pageProfilNavigation a span.picto {
  margin: 0 8px 0 0;
  font-size: 14px;
}
#pageHeadRight .pageHeadLogin .loggedin .pageProfilNavigation a:hover {
  color: #87c00f;
}
#pageHeadRight .pageHeadLogin .headbar-icon-notice {
  text-decoration: none;
  width: 26px;
  height: 25px;
  padding-top: 4px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 10;
  font-size: 12px;
  background: #87c00f;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #FFFFFF;
}
#pageHeadRight .pageHeadLogin .headbar-icon-notice:hover {
  text-decoration: underline;
  color: #FFFFFF;
}
#pageHeadRight .pageHeadLogin .apiNotifications a.msgBtn {
  border-radius: 0 4px 4px 0;
  position: absolute;
  z-index: 10;
  height: 40px;
  right: 0;
  top: 0;
  padding-right: 28px;
  padding-left: 12px;
  width: auto;
  color: #FFFFFF;
}
#pageHeadRight .pageHeadLogin .apiNotifications a.msgBtn.active {
  background: #87c00f;
}
#pageHeadRight .pageHeadLogin .apiNotifications a.msgBtn .caption {
  display: none;
}
#pageHeadRight .pageHeadLogin .apiNotifications a.msgBtn .picto {
  color: #6d8083;
  position: absolute;
  right: 10px;
  top: 12px;
  color: #FFFFFF;
}
#pageHeadRight .pageHeadLogin .apiNotifications a.msgBtn .headbar-icon-notice {
  background: transparent;
  position: relative;
  padding: 9px 0 0;
  max-width: none;
  width: auto;
  text-decoration: none;
}
#pageHeadRight .pageHeadLogin .apiNotifications a.msgBtn:hover {
  background-color: #94D310;
  text-decoration: none;
}
#pageHeadRight .pageHeadLogin .apiNotifications ul {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  width: 100%;
  font-size: 12px;
  background: rgba(31, 52, 56, 0.9);
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 4px;
}
#pageHeadRight .pageHeadLogin .apiNotifications ul li a {
  display: block;
  padding: 10px;
  border-bottom: 1px solid #bfc9ca;
  color: #FFFFFF;
}
#pageHeadRight .pageHeadLogin .apiNotifications ul li a:hover {
  text-decoration: none;
  color: #87c00f;
}
#pageHeadRight .pageHeadLogin .apiNotifications ul li.additionalEntry a {
  border-bottom: none;
  background: #1f3438;
  border-radius: 0 0 4px 4px;
  position: relative;
  font-weight: 600;
  -webkit-transition-property: color;
  -moz-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#pageHeadRight .pageHeadLogin .apiNotifications ul li.additionalEntry a .picto {
  margin-right: 10px;
}
#pageHeadRight .pageHeadLogin .apiNotifications ul li.additionalEntry a .count {
  text-decoration: none;
  width: 21px;
  height: 21px;
  padding-top: 2px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  position: absolute;
  top: 8px;
  right: 6px;
  z-index: 1;
  font-size: 12px;
  background: #87c00f;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #FFFFFF;
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#pageHeadRight .pageHeadLogin .apiNotifications ul li.additionalEntry a .count:hover {
  text-decoration: none;
  color: #FFFFFF;
  background-color: #94D310;
}
#pageHeadRight .pageHeadLogin .apiNotifications ul li.additionalEntry a:hover {
  text-decoration: none;
  color: #87c00f;
}
#pageHeadRight .pageHeadLogin .apiNotifications .open ul {
  display: block;
}
#pageHeadRight .pageHeadLogin.open .inner .pageHeadUser {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
#pageHeadRight .pageHeadLogin.open .inner .pageHeadUser span.userButton {
  background-color: rgba(255, 255, 255, 0.3);
}
#pageHeadRight .pageHeadLogin.open .inner .pageHeadUser span.userButton:after {
  border-color: transparent transparent #FFFFFF transparent;
  top: 12px;
}
#pageHeadRight .pageHeadLogin.open .inner .pageProfilNavigation {
  display: block;
}
#pageHeadRight .pageHeadLanguage {
  float: left;
  margin-right: 5px;
}
#pageHeadRight .pageHeadLanguage .dropdown {
  position: relative;
  line-height: 1;
  color: #FFFFFF;
  height: 40px;
  overflow: visible;
}
#pageHeadRight .pageHeadLanguage .dropdown .caption {
  display: block;
  width: 55px;
  height: 39px;
  position: relative;
  padding: 14px 20px 14px 15px;
  font-size: 12px;
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-property: color;
  -moz-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#pageHeadRight .pageHeadLanguage .dropdown .lang_active {
  display: block;
  width: 100%;
  position: relative;
}
#pageHeadRight .pageHeadLanguage .dropdown .lang_active .caption {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  cursor: default;
}
#pageHeadRight .pageHeadLanguage .dropdown .lang_active .caption:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #FFFFFF transparent transparent transparent;
  position: absolute;
  right: 12px;
  top: 17px;
}
#pageHeadRight .pageHeadLanguage .dropdown .lang_inactive {
  position: absolute;
  top: 39px;
  display: none;
  opacity: 0;
  filter: alpha(opacity=0);
}
#pageHeadRight .pageHeadLanguage .dropdown .lang_inactive .caption {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
#pageHeadRight .pageHeadLanguage .dropdown .lang_inactive a {
  color: #FFFFFF;
  text-decoration: none;
}
#pageHeadRight .pageHeadLanguage .dropdown:hover .lang_active .caption {
  background-color: rgba(255, 255, 255, 0.2);
}
#pageHeadRight .pageHeadLanguage .dropdown:hover .lang_inactive {
  display: block;
  opacity: 1;
  filter: alpha(opacity=100);
}
#pageHeadRight .pageHeadLanguage .dropdown:hover .lang_inactive .caption {
  background-color: rgba(40, 40, 40, 0.95);
}
#pageHeadRight .pageHeadLanguage .dropdown:hover .lang_inactive:hover .caption {
  color: #87c00f;
}
#pageMobileMenuBtn {
  float: left;
  position: relative;
  z-index: 2;
}
#pageMobileMenuBtn a {
  text-decoration: none;
}
#pageMobileMenuBtn a .picto {
  color: #FFFFFF;
}
#pageMobileMenuBtn a .picto.picto-menu {
  font-size: 28px;
  display: block;
  padding: 20px 20px 22px;
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#pageMobileNav {
  position: relative;
}
#pageMobileNav .pageMobileSearch {
  padding: 14px 20px 10px 20px;
  display: inline-block;
  width: 100%;
  margin: 0;
  background: #304b50;
}
#pageMobileNav .pageMobileSearch .input-group {
  width: 100%;
}
#pageMobileNav .pageMobileSearch .input-group input[type="text"] {
  width: 100%;
  border-color: #304b50;
  border-right: 0 none;
}
#pageMobileNav .pageMobileNavigation {
  margin: 0 0 30px;
  padding: 0;
  border-top: 1px solid #4e666b;
}
#pageMobileNav .pageMobileNavigation ul,
#pageMobileNav .pageMobileNavigation li {
  margin: 0;
  padding: 0;
}
#pageMobileNav .pageMobileNavigation a {
  color: #FFFFFF;
}
#pageMobileNav .pageMobileNavigation .pageHeadNavigation {
  margin-bottom: 30px;
}
#pageMobileNav .pageMobileNavigation .pageHeadNavigation li {
  padding: 0 20px;
}
#pageMobileNav .pageMobileNavigation .pageHeadNavigation li a {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
#pageMobileNav .pageMobileNavigation .pageHeadNavigation li .caption {
  display: block;
  padding-right: 30px;
  position: relative;
}
#pageMobileNav .pageMobileNavigation .pageHeadNavigation li .caption:after {
  display: block;
  color: #FFFFFF;
  content: '\e609';
  font-family: icomoon;
  font-size: 13px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  text-align: center;
}
#pageMobileNav .pageMobileNavigation .filter-category .h3,
#pageMobileNav .pageMobileNavigation .filter-category .filter-value {
  display: block;
  padding: 0 20px;
  font-size: 13px;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
  color: #FFFFFF;
}
#pageMobileNav .pageMobileNavigation .filter-category .h3 .caption,
#pageMobileNav .pageMobileNavigation .filter-category .filter-value .caption {
  display: block;
  padding: 10px 30px 10px 4px;
  position: relative;
  border-bottom: 1px solid #4e666b;
}
#pageMobileNav .pageMobileNavigation .filter-category .h3 .caption:after,
#pageMobileNav .pageMobileNavigation .filter-category .filter-value .caption:after {
  display: block;
  color: #FFFFFF;
  content: '\e609';
  font-family: icomoon;
  font-size: 11px;
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  text-align: center;
}
#pageMobileNav .pageMobileNavigation .filter-category .h3:hover,
#pageMobileNav .pageMobileNavigation .filter-category .filter-value:hover,
#pageMobileNav .pageMobileNavigation .filter-category .h3:active,
#pageMobileNav .pageMobileNavigation .filter-category .filter-value:active,
#pageMobileNav .pageMobileNavigation .filter-category .h3:focus,
#pageMobileNav .pageMobileNavigation .filter-category .filter-value:focus {
  color: #87c00f;
  text-decoration: none;
}
#pageMobileNav .pageMobileNavigation .filter-category .h3:hover .caption,
#pageMobileNav .pageMobileNavigation .filter-category .filter-value:hover .caption,
#pageMobileNav .pageMobileNavigation .filter-category .h3:active .caption,
#pageMobileNav .pageMobileNavigation .filter-category .filter-value:active .caption,
#pageMobileNav .pageMobileNavigation .filter-category .h3:focus .caption,
#pageMobileNav .pageMobileNavigation .filter-category .filter-value:focus .caption {
  border-bottom-color: #87c00f;
}
#pageMobileNav .pageMobileNavigation .filter-category .h3:hover .caption:after,
#pageMobileNav .pageMobileNavigation .filter-category .filter-value:hover .caption:after,
#pageMobileNav .pageMobileNavigation .filter-category .h3:active .caption:after,
#pageMobileNav .pageMobileNavigation .filter-category .filter-value:active .caption:after,
#pageMobileNav .pageMobileNavigation .filter-category .h3:focus .caption:after,
#pageMobileNav .pageMobileNavigation .filter-category .filter-value:focus .caption:after {
  color: #87c00f;
}
#pageMobileNav .pageMobileNavigation .filter-category .filter-value .caption {
  padding: 10px 30px 10px 16px;
}
#pageMobileNav .pageMobileNavigation .filter-category .filter-value .caption:after {
  display: none;
}
#pageMobileNav .pageMobileNavigation .filter-category .filter-value:hover a {
  text-decoration: none;
  color: #87c00f;
  border-bottom-color: #87c00f;
}
#pageMobileNav .pageMobileNavigation .filter-content {
  height: auto;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
#pageMobileNav .pageMobileNavigation .filter-category.active .h3 {
  color: #87c00f;
}
#pageMobileNav .pageMobileNavigation .filter-category.active .h3 .caption {
  border-bottom-color: #87c00f;
}
#pageMobileNav .pageMobileNavigation .filter-category.active .h3 .caption:after {
  color: #87c00f;
  content: "\e613";
}
#pageMobileNav .pageMobileNavigation .filter-category.active .filter-content {
  max-height: 1000px;
  -webkit-transition-property: max-height;
  -moz-transition-property: max-height;
  -o-transition-property: max-height;
  transition-property: max-height;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  opacity: 1;
}
#pageMobileNav .pageMobileLanguage {
  margin-bottom: 30px;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}
#pageMobileNav .pageMobileLanguage .select-language {
  position: relative;
  border-radius: 4px;
  width: 84px;
}
#pageMobileNav .pageMobileLanguage .select-language:before,
#pageMobileNav .pageMobileLanguage .select-language:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
#pageMobileNav .pageMobileLanguage .select-language:after {
  clear: both;
}
#pageMobileNav .pageMobileLanguage .select-language:before,
#pageMobileNav .pageMobileLanguage .select-language:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
#pageMobileNav .pageMobileLanguage .select-language:after {
  clear: both;
}
#pageMobileNav .pageMobileLanguage .select-language > div {
  background-color: #4f666a;
}
#pageMobileNav .pageMobileLanguage .select-language .active,
#pageMobileNav .pageMobileLanguage .select-language .opener {
  width: 42px;
  height: 38px;
  text-align: center;
  float: left;
  position: relative;
  z-index: 3;
  color: #FFFFFF;
}
#pageMobileNav .pageMobileLanguage .select-language .opener {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
#pageMobileNav .pageMobileLanguage .select-language .opener:after {
  display: block;
  color: #FFFFFF;
  content: '\e613';
  font-family: icomoon;
  font-size: 11px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -7px;
  margin-left: -7px;
  width: 14px;
  height: 14px;
  text-align: center;
}
#pageMobileNav .pageMobileLanguage .select-language .active {
  border-right: 1px solid #4e666b;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  line-height: 38px;
}
#pageMobileNav .pageMobileLanguage .select-language .list {
  position: absolute;
  top: 8px;
  z-index: 2;
  float: none;
  max-height: 0;
  overflow: hidden;
  width: 84px;
  background-color: transparent;
  background-color: #4f666a;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
#pageMobileNav .pageMobileLanguage .select-language .list .inactive {
  display: block;
  width: 84px;
  padding-right: 42px;
  height: 38px;
  line-height: 38px;
  text-align: center;
}
#pageMobileNav .pageMobileLanguage .select-language .list .inactive:hover {
  color: #87c00f;
  text-decoration: none;
}
#pageMobileNav .pageMobileLanguage .select-language:hover .list,
#pageMobileNav .pageMobileLanguage .select-language:focus .list,
#pageMobileNav .pageMobileLanguage .select-language.uncover .list {
  padding-top: 30px;
  max-height: 500px;
  overflow: visible;
}
#pageMobileNav .sb-foot-contact {
  padding: 0 24px;
}
#pageMobileNav .sb-foot-contact a {
  margin: 0 10px 0 0;
  font-size: 12px;
  padding: 10px 0;
  display: inline-block;
  position: relative;
}
#pageMobileNav .sb-foot-contact a:after {
  background-color: transparent;
  bottom: 6px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transition: width 0.2s ease 0s;
  width: 0;
}
#pageMobileNav .sb-foot-contact a:hover {
  cursor: pointer;
  color: #87c00f;
  text-decoration: none;
}
#pageMobileNav .sb-foot-contact a:hover:after {
  background-color: #87c00f;
  width: 100%;
}
#pageMobileNav .sb-foot-disclaimer {
  padding: 20px 24px;
  font-size: 12px;
  line-height: 1.2;
  color: #6f8185;
  color: rgba(255, 255, 255, 0.3);
}
#pageMobileProfilBtn {
  float: right;
  position: relative;
  z-index: 2;
}
#pageMobileProfilBtn > a {
  text-decoration: none;
  position: relative;
  display: block;
}
#pageMobileProfilBtn > a .picto {
  color: #FFFFFF;
}
#pageMobileProfilBtn > a .picto.picto-user {
  font-size: 28px;
  display: block;
  padding: 21px 20px;
}
#pageMobileProfilBtn > a .userAvatar {
  height: 70px;
  width: 70px;
  padding: 15px;
  display: block;
  position: relative;
  z-index: 1;
}
#pageMobileProfilBtn > a .picto img,
#pageMobileProfilBtn > a .userAvatar img {
  border: none;
}
#pageMobileProfilBtn .apiNotificationInfo .active {
  position: absolute;
  top: 15px;
  left: 8px;
  z-index: 2;
  width: 7px;
  height: 40px;
  display: block;
  background: #87c00f;
}
#pageMobileProfilBtn .apiNotificationInfo .count {
  display: none;
}
.sb-slidebar {
  color: #FFFFFF;
}
.sb-slidebar .headline {
  font-size: 18px;
  padding: 21px 20px 22px;
  color: #304b50;
  margin: 0 0 15px;
  background: #c0c9ca;
}
.sb-slidebar .appBox + .vendor-registration {
  margin-top: 0;
}
.sb-slidebar .modal-dialog-nav {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.sb-slidebar .appModalDialog label label,
.sb-slidebar .appModalDialog [class*="-headline"] label,
.sb-slidebar .appModalDialog label input,
.sb-slidebar .appModalDialog [class*="-headline"] input,
.sb-slidebar .appModalDialog label button,
.sb-slidebar .appModalDialog [class*="-headline"] button {
  font-family: 'DIN Next W01', "Trebuchet MS", Tahoma, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
}
.sb-slidebar .appModalDialog label label,
.sb-slidebar .appModalDialog [class*="-headline"] label {
  color: #304b50;
}
.sb-slidebar .appModalDialog label .headingSocialLoginButtons span,
.sb-slidebar .appModalDialog [class*="-headline"] .headingSocialLoginButtons span {
  background: #f3f4f5;
  color: #304b50;
}
.sb-slidebar .appModalDialog .mytyFormFieldsetDescription {
  width: 100%;
  overflow: hidden;
  font-size: 0.83333333em;
}
.sb-slidebar .appModalDialog .mytyFormFieldsetDescription * {
  font-size: 1em;
}
.sb-slidebar .appMobileUserLoggedOut {
  padding: 15px 20px 0;
  width: 100%;
}
.sb-slidebar .appMobileUserLoggedOut .appModalDialog,
.sb-slidebar .appMobileUserLoggedOut .appUserLoggedOut.appBox,
.sb-slidebar .appMobileUserLoggedOut .appInner,
.sb-slidebar .appMobileUserLoggedOut .appBox.appBoxInfo {
  width: 100%;
  min-width: 1px;
  max-width: none;
  margin: 0;
  background-color: transparent;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  min-width: initial;
}
.sb-slidebar .appMobileUserLoggedOut .snPortalLoginButtons button {
  font-size: 15px;
}
.sb-slidebar .appMobileUserLoggedOut .snPortalLoginButtons a.snPortalResetBtn {
  font-size: 15px;
  padding: 5px 0;
  margin: 5px 0;
}
.sb-slidebar .appMobileUserLoggedOut .snFBLoginContainer button,
.sb-slidebar .appMobileUserLoggedOut .snGoogleLoginContainer button,
.sb-slidebar .appMobileUserLoggedOut .snFBLoginContainer a,
.sb-slidebar .appMobileUserLoggedOut .snGoogleLoginContainer a {
  font-size: 13px;
}
.sb-slidebar .appMobileUserLoggedOut .snGoogleLoginContainer {
  margin-bottom: 20px;
}
.sb-slidebar .appMobileUserLoggedOut .snBtnRegisterNow {
  display: block;
}
.sb-slidebar .alert-block {
  padding: 10px 15px;
  margin: 0 0 15px;
  font-size: 13px;
}
.sb-slidebar .alert-block p {
  margin: 0;
}
.sb-slidebar .alert-success {
  background-color: #f1f8e7;
  color: #6d8083;
}
.sb-slidebar .alert-error {
  background-color: #ffe5e5;
  color: #ff0000;
}
.sb-slidebar .alert-warning {
  background-color: #fefae5;
  color: #6d8083;
}
.sb-slidebar .alert-info {
  background-color: #333333;
  color: #FFFFFF;
}
#pageMobileProfil .headline {
  font-size: 18px;
  padding: 21px 24px 22px;
  color: #FFFFFF;
  margin: 0;
  background: #304b50;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#pageMobileProfil .pageMobileProfilNavigation {
  margin: 0 0 30px;
  padding: 0;
  border-top: 1px solid #4e666b;
}
#pageMobileProfil .pageMobileProfilNavigation ul,
#pageMobileProfil .pageMobileProfilNavigation li {
  margin: 0;
  padding: 0;
}
#pageMobileProfil .pageMobileProfilNavigation a {
  color: #FFFFFF;
}
#pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation {
  margin-bottom: 30px;
}
#pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation li {
  padding: 0 20px;
}
#pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation li a {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
  position: relative;
}
#pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation li .caption {
  display: inline-block;
  padding-right: 0;
  position: relative;
  vertical-align: middle;
}
#pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation li .caption:after {
  display: none;
}
#pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation li .picto {
  display: inline-block;
  vertical-align: middle;
  padding-right: 20px;
}
#appPageFooter {
  font-family: 'DIN Next W01', "Trebuchet MS", Tahoma, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #6d8083;
  font-weight: 400;
  position: relative;
  background: #DBDDD8;
}
#appPageFooter *,
#appPageFooter *:before,
#appPageFooter *:after {
  box-sizing: border-box;
  outline: none;
}
#appPageFooter ol,
#appPageFooter ul {
  margin: 0 0 20px 15px;
  padding: 0;
}
#appPageFooter .pageFooterContainer {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 10px;
}
#appPageFooter .pageFooterRow {
  width: 100%;
  margin: 0;
}
#appPageFooter .pageFooterRow:before,
#appPageFooter .pageFooterRow:after {
  content: " ";
  display: table;
}
#appPageFooter .pageFooterRow:after {
  clear: both;
}
#appPageFooter .pageFooterCol {
  width: 25%;
  float: left;
  padding: 0 10px;
}
#appPageFooter .pageFooterFullsize {
  width: 100%;
  padding: 0 10px;
}
#appPageFooter .appPageFooterInfo {
  padding: 45px 0 20px;
}
#appPageFooter .appPageFooterInfo h1,
#appPageFooter .appPageFooterInfo h2,
#appPageFooter .appPageFooterInfo h3,
#appPageFooter .appPageFooterInfo h4,
#appPageFooter .appPageFooterInfo h5,
#appPageFooter .appPageFooterInfo h6 {
  font-weight: 600;
  margin: 0 0 10px;
  color: #304b50;
  font-size: 14px;
}
#appPageFooter .appPageFooterInfo .contains p {
  margin: 0 0 20px 0;
}
#appPageFooter .appPageFooterInfo .contains .paymentImage {
  display: block;
  margin: 0 10px 10px 0;
  float: left;
}
#appPageFooter .appPageFooterInfo .contains .paymentImage:nth-child(2n) {
  margin-right: 0;
}
#appPageFooter .appPageFooterInfo .contains .paymentImage img {
  display: block;
}
#appPageFooter .appPageFooterInfo .contains .paymentImage a {
  -webkit-transition-property: none;
  -moz-transition-property: none;
  -o-transition-property: none;
  transition-property: none;
  display: block;
}
#appPageFooter .appPageFooterInfo .appFooterStats {
  font-weight: 600;
  color: #304b50;
  margin: 0 0 25px;
}
#appPageFooter .appPageFooterInfo .appFooterStats .value {
  font-size: 20px;
  display: block;
  line-height: 1.3;
}
#appPageFooter .appPageFooterInfo .appFooterStats .caption {
  display: block;
  font-weight: 500;
}
#appPageFooter .pageFooterSeparator {
  height: 4px;
  background-color: #C8CDC9;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}
#appPageFooter .appPageFooterNav {
  padding: 45px 0 40px;
}
#appPageFooter .appPageFooterNav .headline {
  color: #FFFFFF;
  font-style: normal;
  margin: 0 0 10px;
  padding: 0;
}
#appPageFooter .appPageFooterNav .headline a:hover {
  text-decoration: underline;
}
#appPageFooter .appPageFooterNav .headline.special {
  margin-top: 40px;
}
#appPageFooter .appPageFooterNav .headline .caption {
  display: block;
  font-size: 14px;
  color: #304b50;
  font-weight: 600;
}
#appPageFooter .appPageFooterNav .list {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}
#appPageFooter .appPageFooterNav .list li a {
  color: #4E666B;
  line-height: 1.8;
}
#appPageFooter .appPageFooterNav .list li a:hover {
  text-decoration: underline;
}
#appPageFooter .appPageFooterNav .list.social {
  display: inline-block;
}
#appPageFooter .appPageFooterNav .list.social a:hover {
  text-decoration: none;
}
#appPageFooter .appPageFooterNav .list.social a:hover .caption {
  text-decoration: underline;
}
#appPageFooter .appPageFooterNav .list.social .picto {
  color: #304b50;
  margin-right: 10px;
  -webkit-transition-property: color;
  -moz-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
#appPageFooter .appPageFooterCopyright {
  background-color: #314c50;
  padding: 45px 0 40px;
}
#appPageFooter .appPageFooterCopyright .headline {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
}
#appPageFooter .appPageFooterCopyright .headline p {
  margin: 0 0 45px;
}
#appPageFooter .appPageFooterCopyright .contains {
  color: #C0C9CA;
}
#appPageFooter .appPageFooterCopyright .contains .pull-left {
  margin: 0 20px 0 0;
}
#appPageFooter .appPageFooterCopyright .contains a {
  color: #C0C9CA;
}
#appPageFooter .appPageFooterCopyright .appFooterLogo {
  position: relative;
  bottom: 12px;
  float: right;
}
#appPageFooter .appPageFooterCopyright .appFooterCopyright {
  float: left;
}
.hide {
  display: none;
}
.hidden {
  display: none !important;
  visibility: hidden;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.invisible {
  visibility: hidden;
}
/* 
*	Responsive LESS
* 
* 	1. Desktop		- till 1300
*  	2. Desktop	 	- from 981
*  	3. Tablet LC 	- till 980 
* 	4. Phone 		- till 600
*/
@media all and (max-width: 1300px) {
  #pageHeadRight .pageHeadSearch .input-group input[type="text"] {
    width: 80px;
  }
}
@media all and (min-width: 981px) {
  .hideDesktop {
    display: none;
  }
  .hideMobile {
    display: block;
  }
}
@media all and (max-width: 980px) {
  .hideDesktop {
    display: block;
  }
  .hideMobile {
    display: none;
  }
  #appPageFooter .appPageFooterLogo img {
    margin: 10px 0;
  }
  #pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation li a,
  #pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation li a.active {
    border-bottom: 1px solid #4e666b;
  }
  #pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation li a:hover {
    background: transparent;
    color: #87c00f;
    border-color: #87c00f;
  }
  #pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation li:hover {
    background: transparent;
  }
  #pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation .apiNotifications ul {
    display: none;
    padding: 0 0 0 35px;
    border-bottom: 1px solid #4e666b;
  }
  #pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation .apiNotifications ul li {
    padding: 0;
  }
  #pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation .apiNotifications ul li:last-child a {
    border-bottom: none;
  }
  #pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation .apiNotifications .open ul {
    display: block;
  }
  .headbar-icon-notice {
    text-decoration: none;
    width: 26px;
    height: 25px;
    padding-top: 4px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    position: absolute;
    top: 9px;
    right: 0px;
    z-index: 10;
    font-size: 12px;
    background: #87c00f;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #FFFFFF;
  }
  .headbar-icon-notice:hover {
    text-decoration: underline;
    color: #FFFFFF;
  }
  #appPageFooter .appMobileWrapper {
    position: relative;
  }
  #appPageFooter .appPageFooterInfo {
    padding-top: 75px;
  }
  #appPageFooter .appPageFooterNav {
    padding: 0;
  }
  #appPageFooter .appPageFooterCopyright {
    text-align: center;
    padding: 20px 0 60px;
  }
  #appPageFooter .appPageFooterCopyright .appFooterLogo {
    float: none;
    clear: both;
    bottom: 0;
    margin-bottom: 20px;
  }
  #appPageFooter .appPageFooterCopyright .appFooterCopyright {
    float: none;
    clear: both;
  }
  #appPageFooter .pageFooterCol {
    width: 50%;
  }
  #appPageFooter .pageFooterCol .contains .paymentImage:nth-child(2n) {
    margin-right: 10px;
  }
  #appPageFooter .pageFooterCol.appFooterSocial {
    display: block;
    position: absolute;
    top: 30px;
    width: 100%;
    text-align: center;
  }
  #appPageFooter .pageFooterCol.appFooterSocial .list.social li {
    float: left;
    margin: 0 10px;
  }
  #appPageFooter .pageFooterCol.appFooterSocial .list.social li .caption {
    display: none;
  }
  #appPageFooter .pageFooterCol.appFooterSocial .list.social li .picto {
    font-size: 20px;
    margin: 0;
  }
}
@media all and (max-width: 600px) {
  #appPageFooter .pageFooterCol {
    width: 100%;
    clear: both;
  }
}
