﻿/* Capteur style sheet
 * @Author - Capteur Solutions
 * @Date - september 2015
 ******************************/
/* VARIABLES
 **********************/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
.list-unstyled {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.fade-in {
  animation: fadeIn 1.0s ease forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  font-size: 13px;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
body.nav-active #mobile-navigation {
  left: 0;
}
body.nav-active #page {
  left: 150px;
}
body.nav-active #page #header {
  left: 150px;
}
body.presentation-active #page .page-heading {
  display: none;
}
body.presentation-active.presentation-fullscreen #header {
  display: none;
}
body.presentation-active.presentation-fullscreen #body {
  top: 0 !important;
}
body *[class^="print-visible"] {
  display: none;
}
body.print #header,
body.print #mobile-navigation,
body.print #body #navigation,
body.print #body .page-heading {
  display: none;
}
body.print *[class^="print-"] {
  display: block;
}
body.print .print-hidden {
  display: none !important;
}
body.print #page {
  background-color: #fff;
  position: relative;
}
body.print #page #body {
  top: 0;
  overflow: visible;
}
body.print #page #body .page-content {
  padding: 0;
}
body.print div.a4 {
  width: 100%;
  margin: 0 !important;
  box-shadow: none !important;
  padding: 1cm !important;
}
body.print a {
  color: #000;
}
/* 
 *   #navigation                // Leftside navigation menu
 *   #content                   // Contentwrapper
 *       .header                // Topheader with application title
 *       .body                  // Body container

 *******************************/
#mobile-navigation {
  position: fixed;
  top: 0;
  left: -150px;
  bottom: 0;
  height: 100%;
  width: 150px;
  max-width: 150px;
  z-index: 99;
  background-color: #333;
  -o-transition: all 300ms;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
#mobile-navigation ul {
  width: 100%;
  margin-top: 50px;
}
#mobile-navigation ul li {
  text-align: center;
  border-left: 5px solid #333;
  margin: 10px 0;
}
#mobile-navigation ul li a {
  display: block;
  color: #f7f7f7;
  padding: 10px 10px;
}
#mobile-navigation ul li a i {
  width: 100%;
  display: inline-block;
  margin-bottom: 5px;
}
#mobile-navigation ul li.active {
  border-left: 5px solid #004C99;
}
#mobile-navigation ul li.active a {
  color: #fff;
}
#page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  min-height: 100%;
  background-color: #f7f7f7;
  -o-transition: all 300ms;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
#page #header {
  position: fixed;
  z-index: 15;
  left: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background-color: #004C99;
  -o-transition: all 300ms;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
#page #header a {
  color: #fff;
}
#page #header #nav-toggle {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 10px;
  font-size: 24px;
  text-decoration: none;
  outline: none;
}
#page #header h1 {
  color: #fff;
  float: left;
  line-height: 50px;
  margin-left: 65px;
  font-size: 20px;
}
#page #header h1 img {
  position: absolute;
  left: 10px;
  top: 2px;
  width: 45px;
}
@media (max-width: 767px) {
  #page #header h1 {
    position: absolute;
    top: 0;
    left: 50px;
  }
  #page #header h1 img {
    left: -60px;
  }
}
#page #header #page-title {
  position: absolute;
  top: 0;
  left: 50px;
  bottom: 0;
  padding: 0 10px;
  font-size: 24px;
  text-decoration: none;
  outline: none;
  line-height: 50px;
}
#page #header nav {
  position: absolute;
  right: 0;
}
#page #header nav > ul {
  margin: 0;
}
#page #header nav > ul > li {
  display: block;
  float: left;
}
#page #header nav > ul > li a {
  display: block;
  padding: 0 10px;
}
#page #header nav > ul > li a i {
  font-size: 22px;
  position: relative;
  top: 3px;
}
#page #header nav > ul > li:last-child {
  border-left: 2px solid #ececec;
}
#page #header nav > ul > li#user-nav a {
  text-decoration: none;
}
#page #header nav > ul > li#user-nav a i {
  display: inline-block;
}
#page #header nav > ul > li#user-nav a img {
  position: relative;
  bottom: 1px;
  border-radius: 50%;
}
#page #header nav > ul > li#user-nav a .username {
  padding: 0 8px;
  font-weight: bold;
}
#page #header .dropdown-menu li a {
  color: #666;
  padding: 5px 20px;
}
#page #body {
  position: absolute;
  top: 50px;
  width: 100%;
  left: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  min-width: 291px;
}
#page #body nav #primary-navigation {
  margin: 0;
  padding: 15px 15px 0;
  list-style: none;
  background-color: #f7f7f7;
}
#page #body nav #primary-navigation > li {
  border-bottom: 1px solid #ececec;
  display: inline-block;
  font-size: 16px;
  padding: 0;
  width: 175px;
  line-height: 50px;
  text-align: center;
}
#page #body nav #primary-navigation > li a {
  display: block;
  color: #808080;
  -moz-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
#page #body nav #primary-navigation > li a i {
  display: none;
}
#page #body nav #primary-navigation > li a:hover {
  color: #004C99;
}
#page #body nav #primary-navigation > li.active {
  background-color: #fff;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #ececec;
  border-left: 1px solid #ececec;
  border-right: 1px solid #ececec;
}
#page #body nav #primary-navigation > li.active a {
  color: #004C99;
}
@media (min-width: 768px) {
  #page #body nav #primary-navigation #config-nav {
    float: right;
  }
}
#page #body .page-heading {
  background-color: #fff;
  border-bottom: 2px solid #ececec;
  padding: 0 20px;
  position: relative;
}
#page #body .page-heading h1 {
  line-height: 79px;
  padding: 0 15px;
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
}
#page #body .page-heading .breadcrumb {
  background: none;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 10px;
}
@media (max-width: 767px) {
  #page #body .page-heading .breadcrumb {
    display: none;
  }
}
#page #body .page-heading nav {
  display: inline-block;
}
#page #body .page-heading nav ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: inline-block;
  vertical-align: middle;
}
#page #body .page-heading nav ul li {
  text-align: center;
  font-size: 15px;
  padding: 10px 0;
  margin-right: 20px;
  display: inline-block;
}
#page #body .page-heading nav ul li a {
  display: block;
  width: 100px;
  color: #AAA;
  padding: 8px 0;
  line-height: 16px;
}
#page #body .page-heading nav ul li a i {
  padding: 2px 0 5px;
  font-size: 20px;
}
#page #body .page-heading nav ul li a:hover {
  color: #333;
}
#page #body .page-heading nav ul li:last-child {
  margin-right: 0;
}
#page #body .page-heading nav ul li.active a {
  color: #333;
}
#page #body .page-content {
  padding: 20px;
}
@media (max-width: 767px) {
  /*#navigation {
        left: -@navigation-width;
    }*/
  .container {
    padding: 0;
  }
  #page #header nav ul > li > a {
    padding: 0 5px;
  }
  #page #header nav ul > li > a i {
    font-size: 20px;
  }
  #page #body {
    left: 0;
  }
  #page #body nav #primary-navigation {
    display: none;
  }
  #page #body .page-content {
    padding: 10px;
  }
  #page #body .page-heading h1 {
    display: none;
  }
  #page #body .page-heading nav #primary-navigation {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  #page #body .page-heading nav #primary-navigation li {
    margin: 0;
    display: block;
    width: 100%;
  }
}

.test-env #header{
    border-top: 5px solid red !important;
}

.test-env span.color-highlight {
    color: #ff9b9b;
    font-weight: bold;
    font-size: 16px;
}