.toast-title {
  font-size: 18px;
  line-height: 1.22222222;
}

.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  font-size: 15px;
}

.toast-message a {
  color: #304b50;
  text-decoration: none;
}

.toast-message a:hover {
  color: #304b50;
  text-decoration: none;
}

.toast-message p,.toast-message ol,.toast-message ul,.toast-message blockquote {
  padding: 0;
  margin: 0;
}

.toast-message a,.toast-message label {
  color: #304b50;
}

.toast-message a:hover {
  color: #304b50;
}

.toast-close-button {
  position: relative;
  right: -0.2em;
  top: -0.2em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.toast-close-button:hover,.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  filter: alpha(opacity=40);
}/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-right {
  right: 0;
  bottom: 0;
}

.toast-bottom-left {
  bottom: 0;
  left: 0;
}

#toast-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
 /*overrides*/;
}

#toast-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#toast-container > div {
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
}

#toast-container > div:hover {
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.3s linear;
  transition: -webkit-box-shadow 0.3s linear;
  -o-transition: box-shadow 0.3s linear;
  transition: box-shadow 0.3s linear;
  transition: box-shadow 0.3s linear, -webkit-box-shadow 0.3s linear;
}

#toast-container.toast-top-center > div,#toast-container.toast-bottom-center > div {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

#toast-container.toast-top-full-width > div,#toast-container.toast-bottom-full-width > div {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.toast {
  background-color: #B6C3C8;
  color: #6d8083;
}

.toast-success {
  background-color: #D5EDAD;
  color: #6d8083;
}

.toast-success a {
  color: #6d8083;
}

.toast-error {
  background-color: #c30;
  color: #FFFFFF;
}

.toast-error a {
  color: #FFFFFF;
}

.toast-info {
  background-color: #CDE6F6;
  color: #6d8083;
}

.toast-warning {
  background-color: #FCE7C4;
  color: #6d8083;
}

.toast-warning a {
  color: #6d8083;
}

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}/* -----------------------------------
 * 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;
  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-active ~ #sb-site .borvo__content-overlay {
  display: block;
}

.sb-left.sb-active ~ #sb-site .masthead--fixed {
  left: 300px;
  right: auto;
  -webkit-transition: left 400ms ease;
  -o-transition: left 400ms ease;
  transition: left 400ms ease;
}

.sb-left.sb-active ~ #sb-site .borvo,.sb-left.sb-active ~ #sb-site .borvo-mediabox {
  position: absolute;
}

.sb-right.sb-active ~ #sb-site .masthead--fixed {
  right: 300px;
  left: auto;
  -webkit-transition: right 400ms ease;
  -o-transition: right 400ms ease;
  transition: right 400ms ease;
}

.sb-right.sb-active ~ #sb-site .borvo,.sb-right.sb-active ~ #sb-site .borvo-mediabox {
  position: absolute;
}

#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
 */[off-canvas] {color: #6d8083;background-color: #FFFFFF;}.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: #FFFFFF; /* Default Slidebars background colour, overwrite this with your own css. */-webkit-box-shadow: none;box-shadow: none;}.sb-slidebar ul,.sb-slidebar li {margin: 0;padding: 0;list-style: none;}.sb-slidebar,.sb-slidebar * {-webkit-transform: translateZ(0px); /* Fixes issues with translated and z-indexed elements on iOS 7. */}.sb-slidebar a:not(.btn) {color: #304b50;}.sb-left {left: 0; /* Set Slidebar to the left. */background-color: #FFFFFF;color: #304b50;}.sb-right {right: 0; /* Set Slidebar to the right. */background-color: #FFFFFF;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%;
}/* ---------------
 * 004 - Animation
 */.sb-slide,#sb-site,.sb-site-container,.sb-slidebar {
  -webkit-transition: -webkit-transform 400ms ease;
  -o-transition: -o-transform 400ms ease;
  transition: -webkit-transform 400ms ease;
  -o-transition: transform 400ms ease;
  transition: transform 400ms ease;
  transition: transform 400ms ease, -webkit-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;
}

body.cfInterfaceEnabled .masthead:not(.masthead--fixed) {
  width: calc(100% - 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;
}

.masthead,#pageMobileLogin,#pageMobileNav,#pageMobileProfil {
  font-family: 'PFDIN', "Trebuchet MS", Tahoma, Arial, Helvetica, Tahoma, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.03em;
  font-size: 15px;
  line-height: 1.5;
  color: #6d8083;
  position: relative;
}

.masthead *,#pageMobileLogin *,#pageMobileNav *,#pageMobileProfil *,.masthead *:before,#pageMobileLogin *:before,#pageMobileNav *:before,#pageMobileProfil *:before,.masthead *:after,#pageMobileLogin *:after,#pageMobileNav *:after,#pageMobileProfil *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

.masthead {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
  height: 70px;
  width: 100%;
  position: fixed;
  z-index: 999;
  -webkit-transition: background-color 0.3s ease-out, opacity 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out, opacity 0.3s ease-out;
  transition: background-color 0.3s ease-out, opacity 0.3s ease-out;
}

html.sb-active .masthead {
  position: absolute;
}

.masthead--opaque {
  background-color: rgba(12, 39, 55, 0.5);
  -webkit-transition: background-color 0.3s ease-out 0.3s, opacity 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out 0.3s, opacity 0.3s ease-out;
  transition: background-color 0.3s ease-out 0.3s, opacity 0.3s ease-out;
}

.masthead--fixed {
  position: fixed !important;
  left: 0;
  right: 0;
  z-index: 1030;
  top: 0;
  opacity: 1;
}

.masthead--slide-down {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}

.masthead--slide-up {
  opacity: 0;
  pointer-events: none;
}

.masthead--slided-out {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.opacity-hidden {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

.masthead__search {
  float: left;
  margin-right: 3px;
}

.masthead__search .input-group {
  position: relative;
  display: table;
  border-collapse: collapse;
  float: right;
}

.masthead__search .input-search {
  width: 100px;
  float: left;
  border: 2px solid transparent;
  border-right: none;
  background-color: transparent;
  border-radius: 0;
  color: #FFFFFF;
  font-family: 'PFDIN', "Trebuchet MS", Tahoma, Arial, Helvetica, Tahoma, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.03em;
  font-size: 16px;
  height: 36px;
  padding: 8px 12px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.masthead__search .input-search::-moz-placeholder {
  color: #FFFFFF;
  opacity: 1;
}

.masthead__search .input-search:-ms-input-placeholder {
  color: #FFFFFF;
}

.masthead__search .input-search::-webkit-input-placeholder {
  color: #FFFFFF;
}

.masthead__search .input-group-btn {
  display: table-cell;
  width: 39px;
  vertical-align: top;
}

.masthead__search .input-group-btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.masthead__search .btn--search {
  border-radius: 0;
  border: 1px solid transparent;
  border-left: none;
  background-color: transparent;
  height: 36px;
  padding: 8px 12px;
  color: #FFFFFF;
  cursor: default;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.masthead__search .input-group__focused {
  display: block;
  width: 100%;
  height: 2px;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #FFFFFF;
  opacity: 0.3;
}

.masthead__search .input-group__focused:after {
  display: inline;
  content: " ";
  color: transparent;
}

.masthead__search .input-search:focus::-moz-placeholder {
  color: transparent;
  opacity: 1;
}

.masthead__search .input-search:focus:-ms-input-placeholder {
  color: transparent;
}

.masthead__search .input-search:focus::-webkit-input-placeholder {
  color: transparent;
}

.masthead__search .input-search:focus + .input-group-btn .btn--search {
  cursor: pointer;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn30;
  animation-name: fadeIn30;
}

.masthead__search .input-search:focus ~ .input-group__focused {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn30;
  animation-name: fadeIn30;
}

.masthead__left {
  float: left;
  position: relative;
  z-index: 2;
}

.masthead__mainnav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.masthead__mainnav-item {
  float: left;
  position: relative;
}

.masthead__mainnav-item a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 15px;
  padding: 0 15px;
  line-height: 70px;
  font-family: 'PFDIN', "Trebuchet MS", Tahoma, Arial, Helvetica, Tahoma, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.03em;
  vertical-align: middle;
}

.masthead__mainnav-item a .caption {
  position: relative;
}

.masthead__mainnav-item a .caption:after {
  display: block;
  position: absolute;
  font-size: 0;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  content: "";
  opacity: 0;
}

.masthead__mainnav-item:hover a .caption:after {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.masthead__mainnav-item.active a {
  color: #FFFFFF;
}

.masthead__mainnav-item.active a .caption:after {
  opacity: 1;
}

.masthead__mainnav-item.active a:hover {
  background: none;
}

.masthead__mainnav--toggler a {
  font-size: 28px;
  color: #FFFFFF;
  text-decoration: none;
}

.masthead__mainnav--toggler a:after {
  display: none;
}

.masthead__centre {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 70px;
}

.pageLogo {
  width: 150px;
  position: absolute;
  left: 50%;
  height: 70px;
  margin-left: -75px;
  text-align: center;
}

.pageLogo__link {
  display: block;
  line-height: 70px;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.pageLogo__link:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.pageLogo__img {
  border: none;
  display: inline-block;
  padding: 0;
  margin: 0;
}

.flexbox .pageLogo__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  height: 65px;
}

.masthead__right {
  float: right;
  position: relative;
  z-index: 2;
  padding-top: 15px;
}

.masthead__profile {
  float: left;
  margin-right: 15px;
  margin-left: 15px;
}

.masthead__profile .btn--link {
  padding: 8px 15px;
  background-color: transparent;
  display: block;
  float: left;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 15px;
  border: 1px solid transparent;
  border-radius: 0;
}

.masthead__profile .btn--link .caption {
  position: relative;
}

.masthead__profile .btn--link .caption:after {
  display: block;
  position: absolute;
  font-size: 0;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  content: "";
  opacity: 0;
}

.masthead__profile .btn--link + .btn {
  margin-left: 5px;
}

.masthead__profile .btn--link:hover .caption:after {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.masthead__profile .headbar-icon-notice {
  text-decoration: none;
  width: auto;
  height: auto;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: block;
  font-size: 12px;
  border-radius: 4px;
}

.masthead__profile .headbar-icon-notice:hover {
  text-decoration: underline;
}

.masthead__profile .api-notifications {
  position: absolute;
  z-index: 10;
  right: 10px;
  bottom: -3px;
  padding: 0 3px;
  width: auto;
  color: #304b50;
}

.masthead__profile .api-notifications > span {
  display: none;
}

.masthead__profile .api-notifications > .active {
  background: #e6e6e0;
  display: inline-block;
  padding: 0 3px;
  text-align: center;
  border-radius: 4px;
  font-size: 12px;
  min-width: 16px;
}

.sbnav {
  margin: 0 0 30px;
  padding: 15px 0 0 0;
}

.sbnav__bar {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}

.sb-slidebar .sbnav__bar-item {
  padding: 0 20px;
}

.sbnav__bar-item {
  background-color: #FFFFFF;
  padding: 0 20px;
  font-size: 15px;
}

.sbnav__bar-item a {
  color: #304b50;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 16px 4px 14px 4px;
  border-bottom: 2px solid #e6e6e0;
}

.sbnav__bar-item a:hover,.sbnav__bar-item a.active {
  color: #304b50;
  border-bottom-color: #304b50;
  text-decoration: none;
}

.sbnav__bar-item .caption {
  display: block;
  padding-right: 30px;
  position: relative;
  line-height: 1;
  vertical-align: middle;
}

.sbnav__bar-item .caption:after {
  display: block;
  color: #304b50;
  content: '\e609';
  font-family: icomoon;
  font-size: 13px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  text-align: center;
}

.sbnav__bar-title {
  display: block;
  padding: 0 24px 0 20px;
  font-size: 13px;
  cursor: pointer;
  margin: 0;
  font-family: 'PFDIN', "Trebuchet MS", Tahoma, Arial, Helvetica, Tahoma, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.03em;
  color: #304b50;
  text-decoration: none;
}

.sbnav__bar-title .caption {
  display: block;
  padding: 16px 30px 14px 4px;
  position: relative;
  border-bottom: 2px solid #e6e6e0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sbnav__bar-title .caption:after {
  display: block;
  color: #304b50;
  content: '\e609';
  font-family: icomoon;
  font-size: 11px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  text-align: center;
}

.sbnav__bar-title:hover,.sbnav__bar-title.active {
  color: #304b50;
  text-decoration: none;
}

.sbnav__bar-title:hover .caption,.sbnav__bar-title.active .caption {
  color: #304b50;
  border-bottom-color: #304b50;
}

.sbnav__bar--toggle {
  height: auto;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.sbnav__bar--toggle .sbnav__bar-item {
  font-size: 13px;
}

.sbnav__bar--toggle .sbnav__bar-item a {
  padding: 10px 4px 10px 20px;
}

.sbnav__bar--toggle .sbnav__bar-item:first-child a {
  padding-top: 15px;
}

.sbnav__bar--toggle .sbnav__bar-item:last-child a {
  margin-bottom: 15px;
}

.sbnav__bar--toggle .sbnav__bar-item .caption:after {
  display: none;
}

.sbnav--toggled {
  margin: 0;
  padding: 0;
}

.sbnav--inline {
  padding: 0 24px;
}

.sbnav--inline a {
  margin: 0 10px 0 0;
  font-size: 12px;
  padding: 10px 0;
  display: inline-block;
  position: relative;
}

.sbnav--inline a:after {
  background-color: #304b50;
  bottom: 6px;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
  opacity: 0;
}

.sbnav--inline a:hover {
  cursor: pointer;
  text-decoration: none;
}

.sbnav--inline a:hover:after {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.sbnav--picto .sbnav__bar-title {
  font-size: 18px;
  line-height: 1.22222222;
  color: #304b50;
  padding: 15px 0;
  margin: -10px 20px 5px 20px;
  border-bottom: 1px solid #e6e6e0;
}

.sbnav--picto .picto {
  font-size: inherit;
  line-height: 1em;
  width: 30px;
  text-align: left;
  display: inline-block;
}

.sbnav--picto .caption {
  display: inline-block;
  padding-right: 0;
}

.sbnav--picto .caption:after {
  display: none !important;
  padding-right: 15px;
}

.sbnav--picto .headbar-icon-notice {
  padding-left: 5px;
}

.sbnav--picto .apiNotifications ul li {
  padding-left: 30px;
  font-size: 11px;
  border-bottom: 0;
}

.sbnav.active .sbnav__bar--toggle {
  max-height: 1000px;
  -webkit-transition-property: max-height;
  -o-transition-property: max-height;
  transition-property: max-height;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  opacity: 1;
}

.langswitch {
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
  height: 40px;
  margin: 30px 0;
}

.langswitch .dropdown {
  position: absolute;
  left: 20px;
  top: 0;
  line-height: 1;
  color: #304b50;
  padding-top: 40px;
  max-height: 40px;
  overflow: hidden;
  border: 2px solid #304b50;
  background-color: #FFFFFF;
  width: 70px;
  border-radius: 4px;
  -webkit-transition: max-height linear 0.3s;
  -o-transition: max-height linear 0.3s;
  transition: max-height linear 0.3s;
}

.langswitch .dropdown:hover {
  max-height: 5000px;
  height: auto;
  overflow: visible;
}

.langswitch .langswitch__item {
  display: block;
  width: 100%;
  height: 40px;
  padding: 14px 20px 14px 15px;
  line-height: 1em;
}

.langswitch .langswitch__item--active {
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}

.langswitch .langswitch__item--active:after {
  color: #304b50;
  content: '\e613';
  font-family: icomoon;
  font-size: 11px;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 14px;
  height: 14px;
  text-align: center;
}

#pageMobileNav {
  position: relative;
}

.sb-foot-disclaimer {
  padding: 20px 24px;
  font-size: 12px;
  line-height: 1.2;
  color: #6f8185;
  color: rgba(255, 255, 255, 0.3);
}

.userAvatar__initials {
  display: block;
  width: 39px;
  height: 39px;
  background: #c0c9ca;
  border: 1px solid #c0c9ca;
  border-radius: 50%;
  line-height: 40px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.9px;
  font-weight: 600;
}

#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;
  background: #FFFFFF;
}

.sb-slidebar .appBox + .vendor-registration {
  margin-top: 0;
}

.sb-slidebar .modal-dialog-nav {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sb-slidebar .appModalDialog .appBox {
  background-color: transparent;
  max-width: none;
}

.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: 'PFDIN', "Trebuchet MS", Tahoma, Arial, Helvetica, Tahoma, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.03em;
  font-size: 15px;
  line-height: 1.5;
}

.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: #FFFFFF;
  color: #304b50;
}

.sb-slidebar .appModalDialog .mytyFormFieldsetDescription {
  width: 100%;
  overflow: hidden;
  font-size: 0.83333333em;
}

.sb-slidebar .appModalDialog .mytyFormFieldsetDescription * {
  font-size: 1em;
}

.sb-slidebar .appModalDialog .headingSocialLoginButtons span {
  background-color: #FFFFFF;
}

.sb-slidebar .appMobileUserLoggedOut {
  padding: 0 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-family: 'PFDIN', "Trebuchet MS", Tahoma, Arial, Helvetica, Tahoma, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.03em;
  min-width: initial;
}

.sb-slidebar .appMobileUserLoggedOut .snPortalLoginButtons button {
  font-size: 15px;
}

.sb-slidebar .appMobileUserLoggedOut .snPortalLoginButtons a.snPortalResetBtn {
  font-size: 15px;
  padding: 5px 0;
}

.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;
}

#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;
}

.masthead .visuallyhidden,.sb-slidebar .visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.cfInterfaceEnabled .pageLogo {
  margin-left: -115px;
}

.cfInterfaceEnabled .masthead--fixed .pageLogo {
  margin-left: -75px;
}

.cfInterfaceEnabled .masthead--fixed .masthead__left {
  margin-left: 80px;
}

.table-content {
  display: table;
  width: 100%;
  height: 100%;
  z-index: 10;
  text-align: center;
  padding: 0;
  margin: 0 auto;
}

.table-content__row {
  display: table-row;
}

.table-content__item,.table-content__item-flex {
  width: 100%;
  height: 100%;
  padding-top: 70px;
  padding-bottom: 70px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.table-content--fixed {
  max-width: 100%;
}

.table-content--fixed .table-content__item,.table-content--fixed .table-content__item-flex {
  padding-left: 20px;
  padding-right: 20px;
}

.richtext--inverse {
  color: #FFFFFF;
}

.richtext--inverse ul,.richtext--inverse ol,.richtext--inverse li,.richtext--inverse blockquote,.richtext--inverse p,.richtext--inverse a {
  color: #FFFFFF;
}

.richtext--inverse h1,.richtext--inverse h2,.richtext--inverse h3,.richtext--inverse h4,.richtext--inverse h5,.richtext--inverse h6,.richtext--inverse .h1,.richtext--inverse .h2,.richtext--inverse .h3,.richtext--inverse .h4,.richtext--inverse .h5,.richtext--inverse .h6 {
  color: #FFFFFF;
}

.richtext--inverse h1 small,.richtext--inverse h2 small,.richtext--inverse h3 small,.richtext--inverse h4 small,.richtext--inverse h5 small,.richtext--inverse h6 small,.richtext--inverse .h1 small,.richtext--inverse .h2 small,.richtext--inverse .h3 small,.richtext--inverse .h4 small,.richtext--inverse .h5 small,.richtext--inverse .h6 small,.richtext--inverse h1 .small,.richtext--inverse h2 .small,.richtext--inverse h3 .small,.richtext--inverse h4 .small,.richtext--inverse h5 .small,.richtext--inverse h6 .small,.richtext--inverse .h1 .small,.richtext--inverse .h2 .small,.richtext--inverse .h3 .small,.richtext--inverse .h4 .small,.richtext--inverse .h5 .small,.richtext--inverse .h6 .small {
  color: #FFFFFF;
}

.richtext--inverse h1,.richtext--inverse h2,.richtext--inverse h3,.richtext--inverse .h1,.richtext--inverse .h2,.richtext--inverse .h3 {
  margin-bottom: 20px;
}

.richtext--inverse h1:last-child,.richtext--inverse h2:last-child,.richtext--inverse h3:last-child,.richtext--inverse .h1:last-child,.richtext--inverse .h2:last-child,.richtext--inverse .h3:last-child {
  margin-bottom: 0;
}

.borvo-mediabox {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.borvo-mediabox--hide-mobile {
  display: none;
}

.borvo-mediabox__overlay {
  background-color: rgba(12, 39, 55, 0.5);
 /*
	&:after {
		&:extend(.d-block);
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		opacity: 0.3;
		background: -moz-linear-gradient(top,  rgba(78,98,100,1) 0%, rgba(78,98,100,0) 50%);
		background: -webkit-linear-gradient(top,  rgba(78,98,100,1) 0%,rgba(78,98,100,0) 50%);
		background: linear-gradient(to bottom,  rgba(78,98,100,1) 0%,rgba(78,98,100,0) 50%);
	}
	*/;
}

.borvo-mediabox__bg {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.borvo-mediabox__bg .image {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
}

.borvo-mediabox__img {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
  background: #879c9e;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.borvo-mediabox__img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  overflow-x: hidden;
}

.flex-active-slide .borvo-mediabox__img picture {
  -webkit-transition: opacity 1s linear;
  -o-transition: opacity 1s linear;
  transition: opacity 1s linear;
  opacity: 0;
}

.flex-active-slide .borvo-mediabox__img picture.loaded {
  opacity: 1;
}

.borvo-mediabox--bgimg .borvo-mediabox__img {
  display: none !important;
}

.borvo-mediabox--gradient {
  background: rgba(255, 255, 255, 0);
}

.borvo-mediabox--gradient .borvo-mediabox__bg {
  background: #aab7b4;
}

.borvo-mediabox--gradient .borvo-mediabox__overlay {
  opacity: 0.3;
 /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4e6264+0,4e6264+50&1+0,0+50 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#4e6264), color-stop(50%, rgba(78, 98, 100, 0)));
  background: -o-linear-gradient(top, #4e6264 0%, rgba(78, 98, 100, 0) 50%);
  background: linear-gradient(to bottom, #4e6264 0%, rgba(78, 98, 100, 0) 50%);
 /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */;
}

.borvo-mediabox--gradient .borvo-mediabox__overlay:after {
  background: transparent;
}

.borvo {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.borvo--flex {
  position: relative;
  left: auto;
  top: auto;
  min-height: 1px;
}

.borvo--flex .table-content__item {
  padding-top: 105px;
}

.borvo-offset--flex-cs {
  height: 600px;
}

.borvo-mediabox__overlay,.borvo__content {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.borvo--flex .borvo__content {
  position: relative;
  left: auto;
  top: auto;
}

.borvo--flex .borvo__content .richtext p {
  display: block;
}

.borvo-mediabox--small {
  height: 70px;
  opacity: 1;
  background-color: rgba(12, 39, 55, 0.7);
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.borvo-mediabox__overlay--rollup {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

.borvo__content {
  z-index: 10;
  text-align: center;
}

.borvo__buttons-lg a,.borvo__buttons a {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  font-family: 'PFDIN', "Trebuchet MS", Tahoma, Arial, Helvetica, Tahoma, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.03em;
  padding: 0.5em 1em;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #FFFFFF;
  background-color: #87c00f;
  border-color: #87c00f;
  display: block;
  width: 90%;
  margin: 0 auto;
}

.borvo__buttons-lg a span,.borvo__buttons a span,.borvo__buttons-lg a .caption,.borvo__buttons a .caption {
  line-height: 1;
  vertical-align: middle;
}

.borvo__buttons-lg a .picto,.borvo__buttons a .picto,.borvo__buttons-lg a [class^="picto-"],.borvo__buttons a [class^="picto-"],.borvo__buttons-lg a [class*=" picto-"],.borvo__buttons a [class*=" picto-"] {
  vertical-align: text-top;
}

.borvo__buttons-lg a:focus,.borvo__buttons a:focus,.borvo__buttons-lg a:active:focus,.borvo__buttons a:active:focus,.borvo__buttons-lg a.active:focus,.borvo__buttons a.active:focus,.borvo__buttons-lg a.focus,.borvo__buttons a.focus,.borvo__buttons-lg a:active.focus,.borvo__buttons a:active.focus,.borvo__buttons-lg a.active.focus,.borvo__buttons a.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.borvo__buttons-lg a:hover,.borvo__buttons a:hover,.borvo__buttons-lg a:focus,.borvo__buttons a:focus,.borvo__buttons-lg a.focus,.borvo__buttons a.focus {
  text-decoration: none;
}

.borvo__buttons-lg a:active,.borvo__buttons a:active,.borvo__buttons-lg a.active,.borvo__buttons a.active {
  outline: 0;
  background-image: none;
}

.borvo__buttons-lg a.disabled,.borvo__buttons a.disabled,.borvo__buttons-lg a[disabled],.borvo__buttons a[disabled],fieldset[disabled] .borvo__buttons-lg a,fieldset[disabled] .borvo__buttons a {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.borvo__buttons-lg a:hover,.borvo__buttons a:hover,.borvo__buttons-lg a:focus,.borvo__buttons a:focus,.borvo__buttons-lg a.focus,.borvo__buttons a.focus,.borvo__buttons-lg a:active,.borvo__buttons a:active,.borvo__buttons-lg a.active,.borvo__buttons a.active {
  color: #FFFFFF;
  background-color: #A3CB4D;
  border-color: #A3CB4D;
}

.borvo__buttons-lg a:active,.borvo__buttons a:active,.borvo__buttons-lg a.active,.borvo__buttons a.active {
  background-image: none;
}

.borvo__buttons-lg a.disabled,.borvo__buttons a.disabled,.borvo__buttons-lg a[disabled],.borvo__buttons a[disabled],fieldset[disabled] .borvo__buttons-lg a,fieldset[disabled] .borvo__buttons a,.borvo__buttons-lg a.disabled:hover,.borvo__buttons a.disabled:hover,.borvo__buttons-lg a[disabled]:hover,.borvo__buttons a[disabled]:hover,fieldset[disabled] .borvo__buttons-lg a:hover,fieldset[disabled] .borvo__buttons a:hover,.borvo__buttons-lg a.disabled:focus,.borvo__buttons a.disabled:focus,.borvo__buttons-lg a[disabled]:focus,.borvo__buttons a[disabled]:focus,fieldset[disabled] .borvo__buttons-lg a:focus,fieldset[disabled] .borvo__buttons a:focus,.borvo__buttons-lg a.disabled.focus,.borvo__buttons a.disabled.focus,.borvo__buttons-lg a[disabled].focus,.borvo__buttons a[disabled].focus,fieldset[disabled] .borvo__buttons-lg a.focus,fieldset[disabled] .borvo__buttons a.focus,.borvo__buttons-lg a.disabled:active,.borvo__buttons a.disabled:active,.borvo__buttons-lg a[disabled]:active,.borvo__buttons a[disabled]:active,fieldset[disabled] .borvo__buttons-lg a:active,fieldset[disabled] .borvo__buttons a:active,.borvo__buttons-lg a.disabled.active,.borvo__buttons a.disabled.active,.borvo__buttons-lg a[disabled].active,.borvo__buttons a[disabled].active,fieldset[disabled] .borvo__buttons-lg a.active,fieldset[disabled] .borvo__buttons a.active {
  background-color: #7ca12e;
  border-color: #7ca12e;
}

.borvo__buttons-lg a:hover,.borvo__buttons a:hover,.borvo__buttons-lg a:focus,.borvo__buttons a:focus,.borvo__buttons-lg a.focus,.borvo__buttons a.focus,.borvo__buttons-lg a:active,.borvo__buttons a:active,.borvo__buttons-lg a.active,.borvo__buttons a.active {
  color: #FFFFFF;
  background-color: #A3CB4D;
  border-color: #A3CB4D;
}

.borvo__buttons-lg a:active,.borvo__buttons a:active,.borvo__buttons-lg a.active,.borvo__buttons a.active {
  background-image: none;
}

.borvo__buttons-lg a.disabled,.borvo__buttons a.disabled,.borvo__buttons-lg a[disabled],.borvo__buttons a[disabled],fieldset[disabled] .borvo__buttons-lg a,fieldset[disabled] .borvo__buttons a,.borvo__buttons-lg a.disabled:hover,.borvo__buttons a.disabled:hover,.borvo__buttons-lg a[disabled]:hover,.borvo__buttons a[disabled]:hover,fieldset[disabled] .borvo__buttons-lg a:hover,fieldset[disabled] .borvo__buttons a:hover,.borvo__buttons-lg a.disabled:focus,.borvo__buttons a.disabled:focus,.borvo__buttons-lg a[disabled]:focus,.borvo__buttons a[disabled]:focus,fieldset[disabled] .borvo__buttons-lg a:focus,fieldset[disabled] .borvo__buttons a:focus,.borvo__buttons-lg a.disabled.focus,.borvo__buttons a.disabled.focus,.borvo__buttons-lg a[disabled].focus,.borvo__buttons a[disabled].focus,fieldset[disabled] .borvo__buttons-lg a.focus,fieldset[disabled] .borvo__buttons a.focus,.borvo__buttons-lg a.disabled:active,.borvo__buttons a.disabled:active,.borvo__buttons-lg a[disabled]:active,.borvo__buttons a[disabled]:active,fieldset[disabled] .borvo__buttons-lg a:active,fieldset[disabled] .borvo__buttons a:active,.borvo__buttons-lg a.disabled.active,.borvo__buttons a.disabled.active,.borvo__buttons-lg a[disabled].active,.borvo__buttons a[disabled].active,fieldset[disabled] .borvo__buttons-lg a.active,fieldset[disabled] .borvo__buttons a.active {
  background-color: #7ca12e;
  border-color: #7ca12e;
}

.borvo-mediabox--gradient .borvo__buttons-lg a,.borvo-mediabox--gradient .borvo__buttons a {
  border-color: #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
  border-width: 2px;
}

.borvo-mediabox--gradient .borvo__buttons-lg a:hover,.borvo-mediabox--gradient .borvo__buttons a:hover {
  border-color: inherit;
  background-color: inherit;
  color: inherit;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.borvo__buttons-lg a ~ a,.borvo__buttons a ~ a,.borvo__buttons-lg a.btn-2nd,.borvo__buttons a.btn-2nd {
  border-color: #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
  border-width: 2px;
}

.borvo__buttons-lg a ~ a:hover,.borvo__buttons a ~ a:hover,.borvo__buttons-lg a.btn-2nd:hover,.borvo__buttons a.btn-2nd:hover {
  border-color: inherit;
  background-color: inherit;
  color: inherit;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.borvo__buttons-lg a + a,.borvo__buttons a + a {
  margin-top: 10px;
}

.borvo__buttons-lg .btn--hide-mobile,.borvo__buttons .btn--hide-mobile {
  display: none;
}

.borvo__buttons-lg a {
  padding: 15px 50px;
  font-size: 26px;
  line-height: 32px;
  border-radius: 8px;
}

.borvo__pager {
  position: absolute;
  z-index: 20;
  width: 100%;
  height: 40px;
  bottom: 0;
  left: 0;
  text-align: center;
  background-color: transparent;
}

.borvo__control {
  position: absolute;
  z-index: 20;
  width: 40px;
  height: 100%;
  top: 0;
  left: auto;
  right: auto;
  text-align: center;
  background-color: transparent;
  cursor: pointer;
}

.borvo__control .picto {
  position: absolute;
  top: 50%;
  margin-top: -40px;
  color: #fff;
  font-size: 80px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.borvo__control--left {
  left: 0;
}

.borvo__control--left .picto {
  left: 0;
}

.opacity-hidden ~ .borvo__control--left .picto {
  left: -65px;
}

.borvo__control--right {
  right: 0;
}

.borvo__control--right .picto {
  right: 0;
}

.opacity-hidden ~ .borvo__control--right .picto {
  right: -65px;
}

.borvo__content-overlay {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 30;
  background-color: rgba(12, 39, 55, 0.5);
  opacity: 0.75;
}

.masthead ~ .pageContentWrap {
  position: relative;
  z-index: 10;
  background-color: #e6e6e0;
  padding-top: 80px;
}

.masthead ~ .noScroll {
  padding-top: 0;
}

.masthead ~ #appPageFooter {
  position: relative;
  z-index: 9;
}

.translate_top {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

[data-height="borvo-full"] {
  height: 30vh;
  min-height: 400px;
}

.borvo-offset[data-height="borvo-full"] {
  height: 30vh;
  min-height: 400px;
}

[data-height="borvo-major"] {
  height: 30vh;
  min-height: 400px;
}

.borvo-offset[data-height="borvo-major"] {
  height: 30vh;
  min-height: 400px;
}

[data-height="borvo-referral"] {
  height: 30vh;
  min-height: 800px;
}

.borvo-offset[data-height="borvo-referral"] {
  height: 30vh;
  min-height: 800px;
}

[data-height="borvo-three-fourths"] {
  height: 30vh;
  min-height: 400px;
}

.borvo-offset[data-height="borvo-three-fourths"] {
  height: 30vh;
  min-height: 400px;
}

[data-height="borvo-two-thirds"] {
  height: 30vh;
  min-height: 400px;
}

.borvo-offset[data-height="borvo-two-thirds"] {
  height: 30vh;
  min-height: 400px;
}

[data-height="borvo-balanced"] {
  height: 30vh;
  min-height: 400px;
}

.borvo-offset[data-height="borvo-balanced"] {
  height: 30vh;
  min-height: 400px;
}

[data-height="borvo-small"] {
  height: 30vh;
  min-height: 300px;
}

.borvo-offset[data-height="borvo-small"] {
  height: 30vh;
  min-height: 300px;
}

.d-block,.borvo__buttons,.borvo__buttons-lg {
  display: block;
}

.d-inline-block {
  display: block;
}

.bg-transparent {
  background: transparent;
}

.bg-transparent:after {
  opacity: 1;
}

.fullwidth-content.flexslider {
  border: none;
  margin: 0;
  background: #879c9e;
}

.fullwidth-content.flexslider .slides li {
  display: block;
}

.fullwidth-content.flexslider .slides img {
  width: auto;
}

.fullwidth-content .flex-control-nav {
  z-index: 3;
  bottom: 25px;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  opacity: 1;
}

.fullwidth-content .flex-control-nav li a,.fullwidth-content .flex-control-nav li a:hover {
  width: 20px;
  height: 20px;
  border: 5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.fullwidth-content .flex-control-nav li a.flex-active,.fullwidth-content .flex-control-nav li a:hover.flex-active {
  background: rgba(255, 255, 255, 0.8);
  border-color: transparent;
}

.fullwidth-content.edit-header {
  min-height: 400px;
}

.masthead--fixed ~ .fullwidth-content .flex-control-nav {
  opacity: 0;
}

.borvo--flex-cs,.borvo--height-adjust {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.borvo--flex-cs:not(.slide) {
  position: fixed;
  left: auto;
  top: auto;
  height: auto;
  min-height: 1px;
}

.borvo--height-adjust:not(.borvo--flex-co__gradient):after,.borvo--flex-cs:not(.borvo--flex-co__gradient):after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #0c2737;
  opacity: 0.5;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  display: block;
  content: '';
}

html:not(.sb-active) .cfInterfaceEnabled .borvo--flex-cs {
  width: calc(100% - 80px);
}

.borvo--flex-cs__gradient {
 /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(48, 75, 80, 0.4)), to(rgba(48, 75, 80, 0.1)));
  background: -o-linear-gradient(top, rgba(48, 75, 80, 0.4) 0%, rgba(48, 75, 80, 0.1) 100%);
  background: linear-gradient(to bottom, rgba(48, 75, 80, 0.4) 0%, rgba(48, 75, 80, 0.1) 100%);
 /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */;
}

.borvo--flex-co__gradient {
  background: #aab7b4;
}

.borvo--flex-co__gradient:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.3;
 /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#4e6264), color-stop(50%, rgba(78, 98, 100, 0)));
  background: -o-linear-gradient(top, #4e6264 0%, rgba(78, 98, 100, 0) 50%);
  background: linear-gradient(to bottom, #4e6264 0%, rgba(78, 98, 100, 0) 50%);
 /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */;
}

.borvo--flex__content {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  position: relative;
  left: auto;
  height: auto;
}

.table-content__item-flex {
  padding-top: 140px;
  padding-bottom: 140px;
}

.borvo--recommended .table-content__item-flex {
  padding-top: 90px;
  padding-bottom: 90px;
}

.bgafter-hidden .borvo__content {
  opacity: 0;
}

.bgafter-hidden:after {
  opacity: 0 !important;
}/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/.flex-container a:hover,.flex-slider a:hover {
  outline: none;
}

.slides,.slides > li,.flex-control-nav,.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-pauseplay span {
  text-transform: capitalize;
}/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

.flexslider .slides img {
  width: 100%;
  display: block;
}

.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .flexslider .slides {
  display: block;
}

* html .flexslider .slides {
  height: 1%;
}

.no-js .flexslider .slides > li:first-child {
  display: block;
}/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  zoom: 1;
  border-radius: 4px;
}

.flexslider .slides {
  zoom: 1;
}

.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.carousel li {
  margin-right: 5px;
}

.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: '\f001';
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.flex-direction-nav a.flex-next:before {
  content: '\f002';
}

.flex-direction-nav .flex-prev {
  left: -50px;
}

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}

.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}

.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}

.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}

.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}

.flex-pauseplay a:hover {
  opacity: 1;
}

.flex-pauseplay a.flex-play:before {
  content: '\f003';
}

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  border-radius: 20px;
}

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/#appPageFooter {
  font-family: 'PFDIN', "Trebuchet MS", Tahoma, Arial, Helvetica, Tahoma, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.03em;
  font-size: 14px;
  line-height: 1.5;
  color: #6d8083;
  position: relative;
  z-index: 1;
  background: #DBDDD8;
}

#appPageFooter *,#appPageFooter *:before,#appPageFooter *:after {
  -webkit-box-sizing: border-box;
  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;
}

#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;
  font-size: 15px;
  color: #304b50;
}

#appPageFooter .appPageFooterInfo .contains p {
  margin: 0 0 20px 0;
}

#appPageFooter .appPageFooterInfo .contains p:last-child {
  margin-bottom: 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;
  -o-transition-property: none;
  transition-property: none;
  display: block;
}

#appPageFooter .appPageFooterInfo .appFooterStats {
  font-family: 'PFDIN', "Trebuchet MS", Tahoma, Arial, Helvetica, Tahoma, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.03em;
  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-family: 'PFDIN', "Trebuchet MS", Tahoma, Arial, Helvetica, Tahoma, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.03em;
}

#appPageFooter .appPageFooterNav {
  padding: 0 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: 15px;
  color: #304b50;
  font-family: 'PFDIN', "Trebuchet MS", Tahoma, Arial, Helvetica, Tahoma, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.03em;
}

#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;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  -o-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;
}

.newsletter .alert {
  border: none;
}

.newsletter--footer {
  margin: 0 10px 45px;
}

.newsletter__box {
  padding: 25px 20px;
  background: #c8cdc9;
  color: #4E666B;
}

.newsletter__box .h3 {
  display: block;
}

.newsletter__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.newsletter__form {
  width: 100%;
  margin-top: 20px;
}

.myty-area {
  left: auto !important;
  right: 0 !important;
  z-index: 1000 !important;
  display: block !important;
}

.static-header {
  background: #aab7b4;
  padding: 90px 15px 50px;
  min-height: 33vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 11;
}

.static-header__content {
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 2;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  max-width: 620px;
}

.static-header__content.is-hidden:not(.is-active) {
  opacity: 0;
}

.static-header__gradient {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
 /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#4e6264), color-stop(50%, rgba(78, 98, 100, 0)));
  background: -o-linear-gradient(top, #4e6264 0%, rgba(78, 98, 100, 0) 50%);
  background: linear-gradient(to bottom, #4e6264 0%, rgba(78, 98, 100, 0) 50%);
 /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */;
}

.static-header--bgimg {
  background-size: cover;
}

.static-header--bgimg:after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #0c2737;
  opacity: 0.5;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  display: block;
  content: '';
}

.static-header--bgimg.is-faded-out:after {
  opacity: 0;
}

.static-header--bgimg .static-header__gradient {
  display: none;
}/*
*	Responsive LESS
*
* 	1. Desktop		- till 1300
*  	2. Desktop	 	- from 981
*  	3. Tablet LC 	- till 980
* 	4. Phone 		- till 600
*/@font-face {
  font-family:'PFDIN';src:url('/templates/fonts/PFDIN/light/PFDin.eot');undefined:undefined;src:url('/templates/fonts/PFDIN/light/PFDin.eot?#iefix') format('embedded-opentype'),  url('/templates/fonts/PFDIN/light/PFDin.woff') format('woff'),  url('/templates/fonts/PFDIN/light/PFDin.svg#PFDinTextUniversal-Regular') format('svg');undefined:undefined;font-style:normal;font-weight:300;
}

@font-face {
  font-family:'PFDIN';src:url('/templates/fonts/PFDIN/regular/PFDin.eot');undefined:undefined;src:url('/templates/fonts/PFDIN/regular/PFDin.eot?#iefix') format('embedded-opentype'),  url('/templates/fonts/PFDIN/regular/PFDin.woff') format('woff'),  url('/templates/fonts/PFDIN/regular/PFDin.svg#PFDinTextUniversal-Regular') format('svg');undefined:undefined;font-style:normal;font-weight:400;
}

@font-face {
  font-family:'PFDIN';src:url('/templates/fonts/PFDIN/medium/PFDin.eot');undefined:undefined;src:url('/templates/fonts/PFDIN/medium/PFDin.eot?#iefix') format('embedded-opentype'),  url('/templates/fonts/PFDIN/medium/PFDin.woff') format('woff'),  url('/templates/fonts/PFDIN/medium/PFDin.svg#PFDinTextUniversal-Medium') format('svg');undefined:undefined;font-style:normal;font-weight:600;
}

@font-face {
  font-family:'PFDIN';src:url('/templates/fonts/PFDIN/bold/PFDin.eot');undefined:undefined;src:url('/templates/fonts/PFDIN/bold/PFDin.eot?#iefix') format('embedded-opentype'),  url('/templates/fonts/PFDIN/bold/PFDin.woff') format('woff'),  url('/templates/fonts/PFDIN/bold/PFDin.svg#PFDinTextUniversal-Medium') format('svg');undefined:undefined;font-style:normal;font-weight:700;
}

@media (min-width: 480px) {
/* Slidebar widths on small screens. */  .sb-slidebar {
    width: 300px;
  }

  .newsletter__box {
    padding: 50px 30px;
  }

  .newsletter__box .h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }
}

@media (min-width: 640px) {
  .table-content--fixed {
    max-width: 620px;
  }

  .borvo__content .richtext p {
    display: block;
    font-size: 18px;
    line-height: 1.22222222;
    margin-bottom: 1.55555556em;
  }

  .borvo__content .richtext > p:empty,.borvo__content .richtext > br:first-child {
    display: none;
  }

  .borvo__buttons-lg a,.borvo__buttons a {
    display: inline-block;
    width: auto;
    margin: 0;
  }

  .borvo-mediabox--gradient .borvo__buttons-lg a,.borvo-mediabox--gradient .borvo__buttons a {
    color: #FFFFFF;
    background-color: #304b50;
    border-color: #304b50;
  }

  .borvo-mediabox--gradient .borvo__buttons-lg a:hover,.borvo-mediabox--gradient .borvo__buttons a:hover,.borvo-mediabox--gradient .borvo__buttons-lg a:focus,.borvo-mediabox--gradient .borvo__buttons a:focus,.borvo-mediabox--gradient .borvo__buttons-lg a.focus,.borvo-mediabox--gradient .borvo__buttons a.focus,.borvo-mediabox--gradient .borvo__buttons-lg a:active,.borvo-mediabox--gradient .borvo__buttons a:active,.borvo-mediabox--gradient .borvo__buttons-lg a.active,.borvo-mediabox--gradient .borvo__buttons a.active {
    color: #FFFFFF;
    background-color: #6E8184;
    border-color: #6E8184;
  }

  .borvo-mediabox--gradient .borvo__buttons-lg a:active,.borvo-mediabox--gradient .borvo__buttons a:active,.borvo-mediabox--gradient .borvo__buttons-lg a.active,.borvo-mediabox--gradient .borvo__buttons a.active {
    background-image: none;
  }

  .borvo-mediabox--gradient .borvo__buttons-lg a.disabled,.borvo-mediabox--gradient .borvo__buttons a.disabled,.borvo-mediabox--gradient .borvo__buttons-lg a[disabled],.borvo-mediabox--gradient .borvo__buttons a[disabled],fieldset[disabled] .borvo-mediabox--gradient .borvo__buttons-lg a,fieldset[disabled] .borvo-mediabox--gradient .borvo__buttons a,.borvo-mediabox--gradient .borvo__buttons-lg a.disabled:hover,.borvo-mediabox--gradient .borvo__buttons a.disabled:hover,.borvo-mediabox--gradient .borvo__buttons-lg a[disabled]:hover,.borvo-mediabox--gradient .borvo__buttons a[disabled]:hover,fieldset[disabled] .borvo-mediabox--gradient .borvo__buttons-lg a:hover,fieldset[disabled] .borvo-mediabox--gradient .borvo__buttons a:hover,.borvo-mediabox--gradient .borvo__buttons-lg a.disabled:focus,.borvo-mediabox--gradient .borvo__buttons a.disabled:focus,.borvo-mediabox--gradient .borvo__buttons-lg a[disabled]:focus,.borvo-mediabox--gradient .borvo__buttons a[disabled]:focus,fieldset[disabled] .borvo-mediabox--gradient .borvo__buttons-lg a:focus,fieldset[disabled] .borvo-mediabox--gradient .borvo__buttons a:focus,.borvo-mediabox--gradient .borvo__buttons-lg a.disabled.focus,.borvo-mediabox--gradient .borvo__buttons a.disabled.focus,.borvo-mediabox--gradient .borvo__buttons-lg a[disabled].focus,.borvo-mediabox--gradient .borvo__buttons a[disabled].focus,fieldset[disabled] .borvo-mediabox--gradient .borvo__buttons-lg a.focus,fieldset[disabled] .borvo-mediabox--gradient .borvo__buttons a.focus,.borvo-mediabox--gradient .borvo__buttons-lg a.disabled:active,.borvo-mediabox--gradient .borvo__buttons a.disabled:active,.borvo-mediabox--gradient .borvo__buttons-lg a[disabled]:active,.borvo-mediabox--gradient .borvo__buttons a[disabled]:active,fieldset[disabled] .borvo-mediabox--gradient .borvo__buttons-lg a:active,fieldset[disabled] .borvo-mediabox--gradient .borvo__buttons a:active,.borvo-mediabox--gradient .borvo__buttons-lg a.disabled.active,.borvo-mediabox--gradient .borvo__buttons a.disabled.active,.borvo-mediabox--gradient .borvo__buttons-lg a[disabled].active,.borvo-mediabox--gradient .borvo__buttons a[disabled].active,fieldset[disabled] .borvo-mediabox--gradient .borvo__buttons-lg a.active,fieldset[disabled] .borvo-mediabox--gradient .borvo__buttons a.active {
    background-color: #404040;
    border-color: #404040;
  }

  .borvo__buttons-lg a + a,.borvo__buttons a + a {
    margin-top: 0;
    margin-left: 10px;
  }

  .borvo__buttons-lg a {
    padding: 15px 50px;
    font-size: 26px;
    line-height: 32px;
    border-radius: 8px;
  }

  .borvo__buttons-lg .btn--hide-mobile,.borvo__buttons .btn--hide-mobile {
    display: inline-block;
  }

  .borvo--flex__content .table-content__item-flex {
    padding-top: 170px;
    padding-bottom: 240px;
    min-height: 66.667vh;
  }

  .borvo--content-after .table-content__item-flex {
    padding-bottom: 100px;
    min-height: 1px;
  }

  .borvo--recommended-gradient .table-content__item-flex {
    padding-top: 90px;
    padding-bottom: 170px;
  }

  .borvo--flex-cs ~ .pageContentWrap .translate_top {
    -webkit-transform: translateY(-200px);
    -ms-transform: translateY(-200px);
    transform: translateY(-200px);
  }
}

@media (min-width: 768px) {
  .borvo-mediabox--hide-mobile {
    display: block;
  }

  .borvo-content--top-space .table-content {
    margin-top: -300px;
    padding-top: 200px;
  }

  .table-content__item {
    padding-bottom: 0;
  }

  .borvo--flex {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    padding: 0;
  }

  .borvo--flex .table-content__item {
    padding-top: 70px;
  }

  .borvo--flex .borvo__content {
    position: absolute;
    left: 0;
    top: 0;
  }

  [data-height="borvo-full"] {
    height: 100vh;
    min-height: 400px;
  }

  .borvo-offset[data-height="borvo-full"] {
    height: 100vh;
    min-height: 400px;
  }

  [data-height="borvo-major"] {
    height: 85vh;
    min-height: 400px;
  }

  .borvo-offset[data-height="borvo-major"] {
    height: 85vh;
    min-height: 400px;
  }

  [data-height="borvo-referral"] {
    height: 85vh;
    min-height: 800px;
  }

  .borvo-offset[data-height="borvo-referral"] {
    height: 85vh;
    min-height: 800px;
  }

  [data-height="borvo-three-fourths"] {
    height: 75vh;
    min-height: 400px;
  }

  .borvo-offset[data-height="borvo-three-fourths"] {
    height: 75vh;
    min-height: 400px;
  }

  [data-height="borvo-two-thirds"] {
    height: 66.6667vh;
    min-height: 400px;
  }

  .borvo-offset[data-height="borvo-two-thirds"] {
    height: 66.6667vh;
    min-height: 400px;
  }

  [data-height="borvo-balanced"] {
    height: 50vh;
    min-height: 400px;
  }

  .borvo-offset[data-height="borvo-balanced"] {
    height: 50vh;
    min-height: 400px;
  }

  [data-height="borvo-small"] {
    height: 33vh;
    min-height: 300px;
  }

  .borvo-offset[data-height="borvo-small"] {
    height: 33vh;
    min-height: 300px;
  }

  .fullwidth-content .flex-control-nav {
    bottom: 20%;
  }

  .newsletter__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .newsletter__content .richtext {
    padding-right: 15px;
  }

  .newsletter__form {
    min-width: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    padding-left: 15px;
    margin-top: 0;
  }
}

@media (min-width: 768px) and (max-height: 768px) {
  [data-height="borvo-major"] {
    height: 100vh;
    min-height: 768px;
  }

  .borvo-offset[data-height="borvo-major"] {
    height: 100vh;
    min-height: 768px;
  }

  [data-height="borvo-referral"] {
    height: 100vh;
    min-height: 768px;
  }

  .borvo-offset[data-height="borvo-referral"] {
    height: 100vh;
    min-height: 768px;
  }

  [data-height="borvo-three-fourths"] {
    height: 100vh;
    min-height: 768px;
  }

  .borvo-offset[data-height="borvo-three-fourths"] {
    height: 100vh;
    min-height: 768px;
  }

  [data-height="borvo-two-thirds"] {
    height: 100vh;
    min-height: 768px;
  }

  .borvo-offset[data-height="borvo-two-thirds"] {
    height: 100vh;
    min-height: 768px;
  }
}

@media (max-height: 768px) and (min-width: 480px) {
  .borvo--recommended .table-content__item-flex {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .borvo--recommended.borvo--flex-cs ~ .pageContentWrap .translate_top {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

@media (min-width: 940px) {
  #toast-container {
    right: 12px;
    bottom: 12px;
  }

  #toast-container > div {
    margin: 0 0 6px;
    padding: 20px 15px;
    width: 300px;
  }

  #toast-container .toast-close-button {
    right: -0.3em;
    top: -0.3em;
  }

  .masthead__mainnav--toggler a {
    padding: 0 20px;
  }

  .table-content--fixed {
    max-width: 720px;
  }

  .borvo-mediabox {
    position: fixed;
  }

  .borvo {
    position: fixed;
  }

  .translate_top {
    -webkit-transform: translateY(-200px);
    -ms-transform: translateY(-200px);
    transform: translateY(-200px);
  }

  .borvo--content-pullup .table-content__item {
    padding-top: 70px;
    padding-bottom: 120px;
  }

  .fullwidth-content .flex-control-nav {
    display: none;
  }

  .hideDesktop {
    display: none !important;
  }

  .hideMobile {
    display: block !important;
  }

  .masthead__mainnav--toggler a {
    font-size: 25px;
  }

  .masthead__mainnav--toggler a .picto {
    vertical-align: middle;
  }
}

@media (min-width: 1140px) {
  .masthead__search .input-search {
    width: 165px;
  }
}

@media (max-width: 939px) {
  .hideDesktop {
    display: block !important;
  }

  .hideMobile {
    display: none !important;
  }

  #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 .cfApiNotifications ul {
    display: none;
    padding: 0 0 0 35px;
    border-bottom: 1px solid #4e666b;
  }

  #pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation .cfApiNotifications ul li {
    padding: 0;
  }

  #pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation .cfApiNotifications ul li:last-child a {
    border-bottom: none;
  }

  #pageMobileProfil .pageMobileProfilNavigation .pageHeadNavigation .cfApiNotifications .open ul {
    display: block;
  }

  #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 screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }

  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}

@media (max-width: 767px) {
  #appPageFooter .pageFooterCol {
    width: 100%;
    clear: both;
  }
}

@media (max-width: 479px) {
/* Slidebar widths on extra small screens. */  .sb-slidebar {
    width: 80%;
  }

  .sb-left.sb-active ~ #sb-site .masthead--fixed {
    left: 80%;
  }

  .sb-right.sb-active ~ #sb-site .masthead--fixed {
    right: 80%;
  }
}

@media (max-height: 700px) {
  .borvo--recommended .table-content__item-flex {
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .borvo-recommended {
    display: none;
  }
}

@media (max-height: 480px) {
  .borvo--recommended .table-content__item-flex {
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .borvo__buttons a {
    display: inline-block;
    width: auto;
  }

  .borvo__buttons a + a {
    margin-top: 0;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn30 {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn30 {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
    max-height: 100%;
  }

  to {
    opacity: 0;
    max-height: 70px;
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    max-height: 100%;
  }

  to {
    opacity: 0;
    max-height: 70px;
  }
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}
