.realisee-color,
.cloturee-color {
  color: #14d3a0;
}
.potentielle-color,
.encours-color {
  color: #1cacc0;
}
.abandonnee-color,
.refusee-color {
  color: #d1d1d1;
}
.no-padding {
  padding: 0 !important;
  margin: 0 !important;
}
.login.nav.nav-pills {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex: 1 1 auto;
}
.login.nav.nav-pills > li > a {
  height: 100%;
}
/* Sensé éviter bug IE11 */

svg use {
  pointer-events: none;
}
footer.fixed-bottom {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
}
.ajax-loader {
  background-image: url(../images/ajax-loader.gif);
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -16px;
  margin-top: 18px;
}
a:hover,
a:active,
a:focus {
  text-decoration: none !important;
}
html,
body {
  position: relative;
  min-height: 100%;
  height: 100%;
}
body {
  font-size: .85em;
  font-family: "Gotham Book", "Segoe UI", Verdana, Helvetica, Sans-Serif;
  color: #4d4d4d;
  background-color: #ededed;
  padding-right: 0 !important;
  /** patch for modal window */
  height: 100%;
}
span.color {
  color: #1cacc0;
}
.txt-bleu {
  color: #1cacc0;
}
*:focus {
  outline: none;
}
.gradient-background {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,cce1d7+84,ffffff+100&0.3+0,0.3+100 */
  /*background: -moz-linear-gradient(top, rgba(255,255,255,0.3) 0%, rgba(204,225,215,0.3) 20%, rgba(204,225,215,0.3) 90%, rgba(255,255,255,0.3) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,0.3) 0%, rgba(204,225,215,0.3) 20%,rgba(204,225,215,0.3) 90%,rgba(255,255,255,0.3) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0.3) 0%, rgba(204,225,215,0.3) 20%,rgba(204,225,215,0.3) 90%,rgba(255,255,255,0.3) 100%); */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(204, 225, 215, 0.3) 20%, rgba(204, 225, 215, 0.3) 90%, rgba(255, 255, 255, 0.3) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(204, 225, 215, 0.3) 20%, rgba(204, 225, 215, 0.3) 90%, rgba(255, 255, 255, 0.3) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(204, 225, 215, 0.3) 20%, rgba(204, 225, 215, 0.3) 90%, rgba(255, 255, 255, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4dffffff', endColorstr='#4dffffff', GradientType=0);
  /* IE6-9 */

}
.fade.slow {
  opacity: 0;
  -webkit-transition: opacity 0.35s linear;
  -moz-transition: opacity 0.35s linear;
  -ms-transition: opacity 0.35s linear;
  -o-transition: opacity 0.35s linear;
  transition: opacity 0.35s linear;
}
@keyframes grow {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    opacity: 0;
  }
}
.subnav {
  position: fixed;
  z-index: 900;
  top: 50px;
  left: 0;
  right: 0;
  background-color: #ededed;
  border-bottom: 1px solid #b1b1b1;
  line-height: 60px;
  /*position:relative;*/
  -webkit-box-shadow: 0px 10px 23px -9px rgba(195, 195, 195, 0.75);
  -moz-box-shadow: 0px 10px 23px -9px rgba(195, 195, 195, 0.75);
  box-shadow: 0px 10px 23px -9px rgba(195, 195, 195, 0.75);
  color: #4d4d4d !important;
  font-size: 18px;
}
.subnav span {
  custor: pointer;
}
.subnav a {
  display: block;
  /*max-width: 970px;*/
  padding-left: 12px;
  margin: 0 auto;
  color: #4d4d4d !important;
}
.subnav .fa {
  display: inline-block;
  margin-right: 8px;
}
div.page-loader {
  display: none;
  position: fixed;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
  margin: auto;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in;
}
div.page-loader .loader-bar {
  opacity: 1;
  content: 'Chargement';
  width: 20%;
  height: 100px;
  line-height: 100px;
  display: inline-block;
  border: 0px solid red;
  color: white;
  padding-left: 100px;
  font-size: 32px;
  background-color: black;
  margin-top: 30%;
  margin-bottom: -100px;
  margin-left: 40%;
  margin-right: 40%;
  position: absolute;
}
div.page-loader .loader-bar:before {
  width: 20px;
  height: 100px;
  content: ' ';
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: white;
  -webkit-animation: grow 1.5s linear infinite;
  animation: grow 1.5s linear infinite;
}
div.page-loader .loader-bar:after {
  width: 20px;
  height: 100px;
  content: ' ';
  position: absolute;
  left: 30px;
  top: 0px;
  background-color: white;
  -webkit-animation: grow 1.5s linear -0.5s infinite;
  animation: grow 1.5s linear -0.5s infinite;
}
div.page-loader .loader-bar span {
  width: 20px;
  height: 100px;
  content: ' ';
  position: absolute;
  left: 60px;
  top: 0px;
  background-color: white;
  -webkit-animation: grow 1.5s linear -1s infinite;
  animation: grow 1.5s linear -1s infinite;
}
h1.home {
  position: absolute;
  color: #1cacc0;
  text-align: center;
  display: block;
  width: 100%;
  height: 114px;
  line-height: 114px;
  z-index: 100;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url('../images/title-background.png');
}
.bxslider {
  box-sizing: border-box;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.bxslider li {
  margin: 0;
  padding: 0;
}
.bxslider .slide {
  margin: 0;
  padding: 0;
  padding-top: 15px;
  min-height: 560px;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.bxslider .slide .title {
  display: block;
  vertical-align: middle;
  background-image: url('../images/title-background.png');
  background-position: center center;
  background-repeat: repeat-y;
  color: #1cacc0;
}
.bxslider .slide .title.blue {
  background-image: url('../images/title-background-blue.png');
  color: white;
}
.bxslider .slide .title > h1 {
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: none;
  font-size: 38px;
  margin: 0px;
  vertical-align: middle;
}
.bxslider .slide .content {
  color: #9d9d9d;
  height: 420px;
}
.bxslider .slide .content .columeLeft {
  padding-left: 120px;
  padding-top: 100px;
  height: 100%;
}
.bxslider .slide .content .columeRight {
  padding-left: 120px;
  padding-top: 100px;
  height: 100%;
}
.bxslider .slide .content ul li {
  list-style: square;
  list-style-image: url('../images/puce.png');
  font-size: 22px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.bxslider.mini .slide {
  min-height: 134px !important;
}
.bx-wrapper {
  margin: 0;
  padding: 0;
}
.bx-wrapper .bx-viewport {
  -moz-box-shadow: nonoe;
  -webkit-box-shadow: 0;
  box-shadow: none;
  border: 0;
  left: 0;
  background: transparent;
}
.bx-wrapper .bx-pager {
  bottom: 35px;
}
.bx-wrapper .bx-pager a {
  background-color: white !important;
  width: 24px !important;
  height: 24px !important;
  -moz-border-radius: 12px !important;
  -webkit-border-radius: 12px !important;
  border-radius: 12px !important;
  border: 2px solid #1cacc0 !important;
}
.bx-wrapper .bx-pager a.active {
  background-color: #1cacc0 !important;
}
.bx-viewport {
  box-sizing: border-box !important;
}
.login-box {
  max-width: 500px;
  margin: 0 auto;
  margin-top: 10%;
}
#loginPopup {
  display: none;
  position: fixed;
  z-index: 99991;
  opacity: 1;
  top: 100px;
  left: 50%;
  margin-top: 0 !important;
  margin-left: -165px !important;
}
#loginPopup:before {
  z-index: -1;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  opacity: 0.8;
}
a,
.bootstrap a,
a:hover,
.bootstrap a:hover {
  cursor: pointer;
  color: #484848;
}
a.button {
  text-decoration: none !important;
}
a.ico-delete,
a.ico-delete:hover {
  width: 33px;
  height: 33px;
  background-image: url('../images/ico-delete.png');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: inline-block;
  z-index: 11;
}
a.ico-edit,
a.ico-edit:hover {
  width: 33px;
  height: 33px;
  /*background-image:url('../images/ico-edit.png'); */
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: inline-block;
  z-index: 11;
}
.eventcontainer > .description {
  padding-right: 46px;
}
.event-children .eventcontainer > .description {
  padding-right: 0;
}
.event-children .event .ico-edit,
.event-children .event .ico-add {
  margin-top: -8px;
}
.label-decison-accepted {
  color: #14d3a0;
}
.label-decison-refused {
  color: #ff4040;
}
a.ico-add,
a.ico-add:hover {
  width: 33px;
  height: 33px;
  background-image: url('../images/picto-add-event.png');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: inline-block;
  z-index: 100;
}
a.add-event,
a.add-event:hover,
a.add-message,
a.add-message:hover {
  color: #4d4d4d;
  padding: 7px 0px;
  display: inline-block;
  padding-right: 38px;
  background-image: url('../images/picto-add-event.png');
  background-repeat: no-repeat;
  background-position: 100% 0px;
  text-decoration: none;
}
a.add-event:hover,
a.add-event:hover:hover,
a.add-message:hover,
a.add-message:hover:hover {
  color: #1cacc0;
}
.event-children a.ico-edit,
.event-children a.ico-add {
  zoom: 0.8;
}
a.action,
a.action:hover {
  display: inline !important;
  color: #1cacc0;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-left: 20px;
  display: block;
}
a.action.small,
a.action:hover.small {
  font-size: 12px;
  font-weight: normal;
}
a.action.light,
a.action:hover.light {
  font-weight: normal;
}
a.action:before,
a.action:hover:before {
  content: " ";
  position: absolute;
  left: 6px;
  top: 3px;
  border: solid transparent;
  height: 0;
  width: 0;
  pointer-events: none;
  border-color: rgba(31, 193, 216, 0);
  border-left-color: #1cacc0;
  border-width: 6px;
}
header > nav.navbar.navbar-inverse {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1001;
  background-color: #848484;
  border-radius: 0px;
  border: 0px;
  margin-bottom: 0px;
  /*height:50px;*/

  /*&.active {                            
            overflow-y : visible;
         }*/

}
header > nav.navbar.navbar-inverse:before {
  right: 40px;
  left: 50px;
  position: fixed;
  content: " ";
  background-image: none;
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: 200px;
  display: block;
  /*width: 362px;*/
  height: 50px;
  z-index: 1;
}
header > nav.navbar.navbar-inverse:after {
  right: 10px;
  top: 0;
  position: fixed;
  content: " ";
  /*background-image: url(../images/AUCHAN-NoBaseline.png);*/
  background-repeat: no-repeat;
  background-position: 100% 50%;
  display: block;
  width: 35px;
  height: 50px;
  z-index: 1;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav {
  float: left;
  height: auto;
  margin: 0;
  padding: 0;
  color: white;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown {
  background-color: #848484;
  margin-left: 0;
  max-width: 300px;
  /*width : 100%;*/

  /*&.open*/

}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown > a.dropdown-toggle,
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown/*&.open*/ > a.dropdown-toggle:hover,
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown/*&.open*/ > a.dropdown-toggle:focus {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 20px;
  background-color: #585858 !important;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown > a.dropdown-toggle > span,
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown/*&.open*/ > a.dropdown-toggle:hover > span,
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown/*&.open*/ > a.dropdown-toggle:focus > span {
  margin-top: 13px;
  margin-left: 13px;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown > a {
  color: white;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown > a.dropdown-toggle {
  display: inline-block;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown > a:hover {
  background-color: #585858;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown > a:focus {
  background-color: #717171;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown > ul.dropdown-menu {
  width: auto;
  background-color: #717171;
  border-left: 0px;
  border-radius: 0px;
  padding-top: 0;
  padding-bottom: 0;
  border-top: 0;
  margin-top: 29px;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown > ul.dropdown-menu > li {
  width: 100%;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown > ul.dropdown-menu > li > a {
  color: white;
  padding: 8px 10px;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown > ul.dropdown-menu > li > a > span.glyphicon {
  margin-right: 10px;
  color: white;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown > ul.dropdown-menu > li > a > span.fa {
  margin-right: 10px;
  color: white;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown > ul.dropdown-menu > li > a:hover {
  background-color: #585858;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown > ul.dropdown-menu > li > a:focus {
  background-color: #717171;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li {
  height: 21px;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li > a {
  background-color: #848484;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li > a:hover {
  background-color: #585858 !important;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li > a:focus {
  background-color: #717171;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li > a > span.glyphicon {
  padding-right: 10px;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav-old {
  /*overflow: hidden;*/
  list-style-type: none;
  /*height:100%;*/

  /*width : 250px;*/

}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav-old > li {
  border-right: 1px solid #888888;
  margin: 0px;
  /*float: left;*/

  /*width:100%;
                height:40px;*/

  /*&:not(:first-child) {
                       display: none;

                        &.active {                            
                            display: block;
                        }
                   }*/

}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav-old > li > a {
  background-color: #717171;
  padding-left: 20px;
  padding-right: 20px;
  color: white;
  display: inline-block;
  text-align: left;
  text-decoration: none;
}
header > nav.navbar.navbar-inverse ul.nav.navbar-nav-old > li > a > span.glyphicon {
  margin-right: 10px;
}
header nav {
  background-color: #717171;
}
header nav a.icon {
  height: 50px;
}
header nav .iconbar > li a {
  display: block;
  width: 41px;
  height: 42px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
header nav .iconbar > li a.ico-email {
  background-image: url('../images/mail.png');
}
header nav .iconbar > li a.ico-cv {
  background-image: url('../images/cv.png');
}
header nav .iconbar > li a.ico-favoris {
  background-image: url('../images/favoris.png');
}
header nav .iconbar > li a.ico-link {
  background-image: url('../images/links.png');
}
header nav .iconbar > li a.ico-world {
  background-image: url('../images/world.png');
}
header nav .iconbar > li a.active {
  background-color: #1cacc0;
}
header nav > ul {
  display: inline-block;
  float: right;
  padding: 0;
  margin: 0;
  line-height: 40px;
  margin-right: 16px;
}
header nav > ul > li {
  vertical-align: middle;
  display: inline-block;
  height: 40px;
  margin: 0px 12px;
}
header nav > ul > li.menu > div {
  position: absolute;
  left: 2px;
  top: 12px;
  width: 50px;
  height: 50px;
  background-image: url('../images/menu-off.png');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  cursor: pointer;
  z-index: 999999;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
}
header nav > ul > li.menu.active div {
  background-image: url('../images/menu-on.png');
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
header nav > ul > li.username {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  font-size: 17px;
  color: #1cacc0;
}
.btn.favoris,
.btn.pdf {
  display: block;
  min-width: 42px;
  min-height: 42px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url('../images/favoris.png');
  background-color: #1cacc0;
}
.btn.favoris:focus,
.btn.pdf:focus,
.btn.favoris:target,
.btn.pdf:target {
  outline: 0 !important;
}
.btn.favoris {
  background-image: url('../images/favoris.png');
}
.btn.favoris.active {
  background-image: url('../images/favoris-on.png');
}
.btn.pdf {
  background-image: url('../images/pdf.png');
}
a.pdf:before {
  padding-left: 2px;
}
a.favoris:before {
  padding-left: 1px;
}
a.pdf,
a.favoris {
  font-size: 25px;
  color: #1cacc0;
  padding-right: 5px;
  background-color: white;
  border-radius: 4px;
  padding: 5px;
  /*border: 1px solid #1cacc0;*/
  width: 38px;
  /*&.active{
                background-color: #f3f3f3;
	    color : white;
	}*/

}
a.pdf:hover,
a.favoris:hover {
  color: #1cacc0;
  text-decoration: none;
}
.modal-favoris {
  position: fixed;
  display: none;
  z-index: 30;
  top: 17%;
  left: 0;
  right: 0;
  padding: 0px;
  min-width: 360px;
  max-height: 1000px;
  min-height: 210px;
  height: 40%;
  margin-left: 10%;
  margin-right: 10%;
  background-color: white;
  box-shadow: 4px 4px 20px #aaaaaa;
}
.modal-favoris:before {
  position: fixed;
  background-color: black;
  opacity: 0.8;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: " ";
}
.modal-favoris .title {
  position: relative;
  background-color: #1cacc0;
  color: white;
  padding: 10px;
  font-weight: bold;
}
.modal-favoris .title > span.fa.fa-window-close {
  position: absolute;
  right: 5px;
  font-size: 25px;
  top: 20%;
  cursor: pointer;
}
.modal-favoris .sub-title {
  color: #1cacc0;
  padding: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 0px;
  font-size: 12px;
  font-weight: 600;
  font-family: "gothambook", Verdana, Helvetica, sans-serif;
  text-transform: uppercase;
  margin-top: 5px;
}
.modal-favoris .body {
  height: 100%;
  overflow-y: auto;
  background-color: white;
}
.modal-favoris .body ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  margin-bottom: 20px;
}
.modal-favoris .body ul > li {
  margin: 0px;
  padding-left: 22px;
  padding-bottom: 3px;
  vertical-align: -webkit-baseline-middle;
  color: #ededed;
  font-size: 16px;
  font-family: "gothambook", "Segoe UI", Verdana, Helvetica, Sans-Serif;
}
.modal-favoris .body ul > li a {
  vertical-align: -webkit-baseline-middle;
  color: #484848;
}
.modal-favoris .body ul > li a:focus {
  text-decoration: none;
}
.modal-favoris .body ul > li a.btn-deleted {
  color: #95989a;
  font-size: 26px;
  margin-left: -6px;
}
.modal-favoris .body ul > li .display-filter span.favori-label {
  font-size: 13px;
  font-weight: bold;
  color: #95989a;
}
.modal-favoris .body ul > li .display-filter span.favori-values {
  font-size: 13px;
  color: #95989a;
}
.quick-menu {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 99999;
  width: 470px;
  margin-left: -470px;
}
.quick-menu:before {
  content: " ";
  position: absolute;
  z-index: -1;
  background-color: #333333;
  opacity: 0.70;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 470px;
}
.quick-menu > ul {
  list-style: none;
  padding: 0px;
  margin: 20px;
  margin-top: 100px;
}
.quick-menu > ul > li {
  padding: 0px;
  margin: 0px;
}
.quick-menu > ul > li.separator {
  margin-left: 35px;
  margin-right: 35px;
  border-top: 1px solid white;
  display: block;
  width: 340px;
}
.quick-menu > ul > li > a,
.quick-menu > ul > li > a:hover {
  display: block;
  text-transform: uppercase;
  color: white;
  font-size: 20px;
  font-weight: normal;
  padding-top: 24px;
  padding-bottom: 24px;
  text-decoration: none;
}
.quick-menu > ul > li > a:hover {
  color: #1cacc0;
}
header,
footer,
nav,
section {
  display: block;
}
footer {
  height: 38px;
  line-height: 38px;
  background-color: #686666;
}
footer .container {
  margin: 0 auto;
  width: 90%;
}
footer ul {
  float: right;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
footer ul li {
  padding: 0;
  margin: 0;
  float: left;
  color: white;
}
footer ul li a,
footer ul li a:hover {
  color: white !important;
}
.arrow-link .arrow-link__default {
  display: inline-block;
}
.arrow-link .arrow-link__hover {
  display: none;
}
.arrow-link a,
.arrow-link span,
.arrow-link i {
  font-size: 32px !important;
}
.arrow-link:hover .arrow-link__default {
  display: none;
}
.arrow-link:hover .arrow-link__hover {
  display: inline-block;
}
.swiper-button-prev,
.swiper-button-next {
  background-image: none;
  top: 20px;
}
section {
  max-width: 970px;
  margin-top: 50px;
  /*margin-bottom:42px;*/
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  /*padding: 36px 95px !important;*/
  padding: 36px 45px !important;
  padding-bottom: 100px !important;
  box-sizing: border-box;
}
section.with-subnav {
  margin-top: 100px;
}
section h1 {
  margin-bottom: 50px !important;
  color: #898989 !important;
  position: relative;
  padding-left: 60px;
  font-size: 36px !important;
}
section h1 > img {
  position: absolute;
  left: 4px;
}
section h1 .icon,
section h1 .fa {
  position: absolute;
  left: 0;
  font-size: 36px !important;
}
section h1 .icon {
  width: 50px;
  height: 50px;
  background-size: 50px 50px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
section h1 .fa {
  color: #1cacc0 !important;
  margin-right: 20px;
}
section.image-background {
  /*background-image:url(../images/fond-web2.png);*/
  background-image: url(../images/Background_2.jpg);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  min-height: 100%;
  max-width: none;
}
section.image-background h1 {
  padding-left: 0;
  color: #1cacc0 !important;
}
.offres-associees {
  margin-top: 60px;
  border-top: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
  padding: 20px 0;
}
.offres-associees a {
  font-size: 18px;
}
.offres-associees a i {
  margin-right: 20px;
}
.offre .title {
  margin-top: 30px;
  color: #1cacc0;
  font-size: 16px;
  font-weight: bold;
}
section.nomargin {
  max-width: 100%;
  margin: 0;
  padding: 0 !important;
  padding-top: 50px !important;
  /* 50px (navbar) */

}
section.nomarginnopadding {
  max-width: 100%;
  margin: 0;
  padding: 0 !important;
  padding-top: 0 !important;
  /* 50px (navbar) */

}
section.authentication h1 {
  /*max-width: 480px;*/
  color: #1cacc0;
}
section.authentication label {
  margin-bottom: 4px !important;
  font-weight: bold;
}
section.authentication .nav-pills li {
  width: 49%;
  text-align: center;
}
section.authentication .nav-pills li.active > a {
  color: white !important;
  background-color: #9a9a9a !important;
}
section.authentication .nav-pills a {
  border: 1px solid #9a9a9a;
  color: #9a9a9a;
  font-weight: bold;
}
.modal-body .shadow {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.bootbox-confirm .btn-default {
  background-color: white !important;
  color: #1cacc0 !important;
}
.bootbox-confirm .btn-default:hover {
  background-color: #1cacc0 !important;
  color: white !important;
}
.btn-default.btn-inverse {
  background-color: white !important;
  color: #1cacc0 !important;
}
.btn-default.btn-inverse:hover {
  background-color: #e6e6e6 !important;
  color: #333333 !important;
}
.login.nav.nav-pills a {
  background-color: white;
}
.white-box {
  max-width: 416px;
  margin: auto;
  padding: 15px 20px;
  position: relative;
  z-index: 1;
}
.white-box:before {
  content: " ";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
  background-color: white;
  opacity: 0.92;
}
.white-box.nopadding {
  padding: 0;
}
.white-box.shadow {
  -webkit-box-shadow: 0px 0px 55px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 55px -4px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 55px -4px rgba(0, 0, 0, 0.75);
}
.white-box.transparent {
  background-color: transparent;
}
.white-box .glyphicon {
  color: #1cacc0;
}
.white-box .white-box-title {
  font-weight: bold;
  margin-bottom: 8px;
}
.white-box .white-box-title.large {
  font-size: 18px;
}
.white-box .white-box-subtitle {
  font-weight: bold;
  color: #1cacc0;
  font-size: 20px;
  margin-bottom: 8px;
}
.white-box .white-box-text {
  margin-bottom: 12px;
}
.white-box .white-box-subtext {
  margin-top: 12px;
}
.white-box .white-box-button {
  font-weight: bold;
  color: #1cacc0;
  font-size: 16px;
  padding: 10px;
  border: 1px solid black;
  text-align: center;
  margin: auto;
  width: 235px;
}
.white-box .white-box-button > span > a {
  color: #1cacc0;
}
/* Cas particulier pour l'ecran de relogin */

.popin .white-box.shadow {
  box-shadow: none;
}
.monmetier.white-box {
  margin-bottom: 20px;
}
.malangue.white-box {
  margin-bottom: 20px;
}
.monpassword.white-box {
  margin-bottom: 20px;
  min-height: 255px;
}
.mesfavoris.white-box {
  margin-bottom: 20px;
  max-width: 971px;
}
.mesfavoris.white-box .white-box-title {
  margin-bottom: 17px;
}
.mesfavoris.white-box .white-box-subtitle {
  margin-bottom: 17px;
}
.mesfavoris.white-box > ul.job-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.mesfavoris.white-box > ul.job-list > li {
  margin: 0px;
  padding: 0px;
  vertical-align: -webkit-baseline-middle;
  min-height: 50px;
  float: none;
  vertical-align: middle;
}
.mesfavoris.white-box > ul.job-list > li > div {
  margin-left: -2px;
  margin-right: -2px;
  float: none;
  padding-left: 0;
  display: inline-block;
  vertical-align: middle;
}
.mesfavoris.white-box > ul.job-list > li a {
  vertical-align: super;
  color: #4d4d4d;
  font-weight: bold;
  font-size: 13px;
}
.mesfavoris.white-box > ul.job-list > li a.fa-trash {
  color: #898989;
}
.mesfavoris.white-box > ul.job-list > li a:focus {
  text-decoration: none;
}
.mesfavoris.white-box > ul.job-list > li a.btn-deleted {
  font-size: 24px;
}
@media (max-width: 767px) {
  .mesfavoris.white-box {
    max-width: 416px;
  }
}
section.contact .white-box {
  min-width: 330px;
  padding-bottom: 10px;
}
section.contact .white-box .white-box-title {
  margin-bottom: 20px;
}
section.contact .white-box a.button > button {
  padding: 6px 15px;
  width: 100%;
  text-align: left;
  margin-bottom: 12px;
  font-size: 15px;
  background-color: #f2f2f2;
  border: 1px solid #c8c9ca;
}
section.contact .white-box a.button > button > .fa {
  font-weight: bold;
}
section.contact .fa {
  color: #1cacc0;
}
section.profil .white-box .white-box-text {
  font-weight: bold;
  font-size: 13px;
}
section.profil .white-box .white-box-dropdown {
  margin-top: 13px;
  margin-bottom: 13px;
}
section.profil .white-box .white-box-dropdown .bootstrap-select.btn-group .dropdown-toggle {
  background-color: white;
}
section.profil .white-box .white-box-dropdown .bootstrap-select.btn-group .dropdown-toggle:hover {
  background-color: #e6e6e6;
  color: white;
  border: 2px solid #c8c9ca;
}
section.profil .white-box .white-box-dropdown .bootstrap-select.btn-group .dropdown-toggle .filter-option {
  color: #b4b6b7;
}
section.profil .white-box .white-box-dropdown .bootstrap-select.btn-group .dropdown-toggle .caret {
  border-top: 12px dashed !important;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 0;
  margin-top: -5px;
  color: #898989;
}
section.profil .white-box button {
  background-color: #f2f2f2;
  border: 1px solid #c8c9ca;
}
section.profil .white-box button:hover {
  border: 1px solid #c8c9ca;
}
section.profil .white-box input {
  border-color: #cacaca !important;
  background-color: white !important;
}
section.profil .fa {
  color: #1cacc0;
}
section.log-out .white-box-title {
  max-width: 416px;
  margin: auto;
  padding: 15px 20px;
  background-color: white;
  font-weight: bold;
  font-size: 22px;
  color: black;
  text-align: center;
}
section.log-out .white-box-title.nopadding {
  padding: 0;
}
section.log-out .white-box-title.shadow {
  -webkit-box-shadow: 0px 0px 55px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 55px -4px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 55px -4px rgba(0, 0, 0, 0.75);
}
section.log-out .white-box-title.transparent {
  background-color: transparent;
}
section.log-out .white-box-title .glyphicon {
  color: #1cacc0;
}
section.log-out .white-box-title > span.fa {
  color: #1cacc0;
  float: left;
}
section.log-out .white-box-button {
  max-width: 416px;
  margin: auto;
  padding: 15px 20px;
  background-color: white;
  border: none;
  font-weight: bold;
  font-size: 22px;
  color: black;
  text-align: center;
}
section.log-out .white-box .white-box-subtitle {
  font-weight: bold;
  font-size: 16px;
  color: black;
}
section.log-out .white-box .white-box-subtitle > span.fa {
  color: #888888;
  margin-right: 10px;
}
section.log-out .white-box input {
  border-color: #cacaca !important;
  background-color: white !important;
}
.title-skill-required-or-not {
  background-color: #efefef;
  padding: 6px 8px;
}
section.skills {
  position: relative;
}
section.skills .family-name {
  color: #484848;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 18px;
}
section.skills #list-skills {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  margin-top: 70px;
  max-width: 880px;
  border: 0px solid purple;
}
section.skills #list-skills .skill-list .col-centered {
  min-height: 350px;
  width: 430px;
}
section.skills #list-skills .skill-list .container {
  /*width: 250px;*/
  width: auto;
  margin: 0 auto;
}
section.skills #list-skills .skill-list .container .competence.input {
  max-width: 320px;
  display: inline-block;
  height: 140px;
  overflow: hidden;
}
section.skills #list-skills .skill-list .container .competence.checkbox {
  margin: 10px 0;
  width: 98%;
  display: inline-block;
}
section.skills #list-skills .skill-list .container .competence.checkbox label {
  font-size: 13px;
  border: 0;
  padding-left: 0;
}
section.skills #list-skills .skill-list .container .title {
  font-weight: bold;
  font-size: 1.25em;
}
section.skills #list-skills .skill-list .container .short-description {
  color: #797979;
}
section.skills #list-skills .skill-list .container .no-value {
  margin-top: 20px;
  margin-bottom: -22px;
  font-style: italic;
  color: #95989a;
}
.competence {
  margin: 0;
}
.competence .block-details {
  display: none;
}
.competence .title {
  color: #484848;
  display: block;
  vertical-align: middle;
}
.competence .level {
  display: block;
  vertical-align: middle;
  padding-top: 3px;
  /*
		&:hover .legend {
			visibility:visible;
			opacity: 1;
		}*/

}
.competence .level input[type=radio] {
  position: absolute;
  left: -9999px;
}
.competence .level input[type=radio]:checked + label {
  background-color: #999999;
}
.competence .level label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 14px;
  border: 1px solid #999999;
  background-color: white;
}
.competence .level.checked input[type=radio]:checked + label {
  background-color: #1cacc0;
}
.competence .level.checked label {
  border: 1px solid #1cacc0;
}
/**
 *
 * Masque de recherche
 *
 */

.filter-columns .competence input[type=radio]:checked + label {
  background-color: #1cacc0;
}
.filter-columns .competence label {
  border: 1px solid #1cacc0;
}
section.header {
  background-color: grey;
}
.job-bridges {
  height: 330px;
  width: 620px;
}
.job-bridges .round {
  position: absolute;
  width: 38px;
  height: 37px;
  bottom: 16px;
  left: -19px;
  background-image: url('../images/step2-round.png');
  background-repeat: no-repeat;
  z-index: 10;
}
.job-bridges .branch {
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
  bottom: 34px;
  left: 0px;
  z-index: 4;
}
.job-bridges .branch.branch1 {
  width: 257px;
  height: 257px;
  background-image: url('../images/step2-branch-1.png');
}
.job-bridges .branch.branch2 {
  width: 273px;
  height: 197px;
  background-image: url('../images/step2-branch-2.png');
}
.job-bridges .branch.branch3 {
  width: 274px;
  height: 128px;
  background-image: url('../images/step2-branch-3.png');
}
.job-bridges .branch.branch4 {
  width: 297px;
  height: 76px;
  background-image: url('../images/step2-branch-4.png');
  bottom: 38px;
}
.job-bridges .branch.branch5 {
  width: 290px;
  height: 26px;
  background-image: url('../images/step2-branch-5.png');
}
.job-bridges.small {
  border: 0px solid red;
  position: absolute;
  /*
        height:220px;
        width:230px;
		top : 130px;
        right:15px;*/
  height: 100px;
  width: 230px;
  top: 88px;
  right: 218px;
}
.job-bridges.small .round {
  bottom: 10px;
}
.job-bridges.small .branch {
  bottom: 24px;
}
.job-bridges.small .branch.branch1 {
  width: 64.25px;
  height: 64.25px;
}
.job-bridges.small .branch.branch2 {
  width: 68.25px;
  height: 49.25px;
}
.job-bridges.small .branch.branch3 {
  width: 68.5px;
  height: 32px;
}
.job-bridges.small .branch.branch4 {
  width: 74.25px;
  height: 19px;
  bottom: 28px;
}
.job-bridges.small .branch.branch5 {
  width: 72.5px;
  height: 6.5px;
}
.job-bridges.small a.link {
  position: absolute;
  bottom: 0px;
  width: 300px;
  right: 10px;
  font-size: 14px;
}
.job-bridges .bridge-job,
.job-bridges .bridge-job:hover {
  position: absolute;
  z-index: 20;
  box-sizing: border-box;
  width: 350px;
  padding: 5px;
  min-height: 50px;
  text-decoration: none;
  cursor: pointer;
  display: table;
  top: 0px;
  right: 0px;
}
.job-bridges .bridge-job .wrapper,
.job-bridges .bridge-job:hover .wrapper {
  display: table-cell;
  vertical-align: middle;
}
.job-bridges .bridge-job .job,
.job-bridges .bridge-job:hover .job {
  display: block;
  font-size: 16px;
}
.job-bridges .bridge-job .organizationalStructure,
.job-bridges .bridge-job:hover .organizationalStructure {
  display: block;
  color: #949494;
  font-size: 14px;
}
.job-bridges .bridge-job.position-1 .job,
.job-bridges .bridge-job:hover.position-1 .job {
  color: #66a487;
}
.job-bridges .bridge-job.position-2,
.job-bridges .bridge-job:hover.position-2 {
  top: 62px;
  right: -16px;
}
.job-bridges .bridge-job.position-2 .job,
.job-bridges .bridge-job:hover.position-2 .job {
  color: #33865f;
}
.job-bridges .bridge-job.position-3,
.job-bridges .bridge-job:hover.position-3 {
  top: 130px;
  right: -26px;
}
.job-bridges .bridge-job.position-3 .job,
.job-bridges .bridge-job:hover.position-3 .job {
  color: #006837;
}
.job-bridges .bridge-job.position-4,
.job-bridges .bridge-job:hover.position-4 {
  top: 180px;
  right: -34px;
}
.job-bridges .bridge-job.position-4 .job,
.job-bridges .bridge-job:hover.position-4 .job {
  color: #006837;
}
.job-bridges .bridge-job.position-5,
.job-bridges .bridge-job:hover.position-5 {
  top: 230px;
  right: -38px;
}
.job-bridges .bridge-job.position-5 .job,
.job-bridges .bridge-job:hover.position-5 .job {
  color: #006837;
}
.situation-step.step2 {
  width: 820px;
  margin: 0 auto;
  margin-top: 150px;
  position: relative;
}
.situation-step.step2 h4 {
  position: absolute;
  top: -123px;
  right: -60px;
  color: #cfded9;
  font-size: 33px;
}
.situation-step.step2 .job-win {
  margin-left: 12px;
  min-height: 278px;
  width: 260px;
  box-sizing: border-box;
  bottom: 0;
  border: 1px solid #1cacc0;
  position: relative;
  background-color: white;
}
.situation-step.step2 .job-win .job-bridges {
  position: absolute;
  left: 258px;
  top: -55px;
}
.situation-step.step2 .job-win.Awith-bridge:after {
  content: " ";
  position: absolute;
  z-index: 1;
  background-image: url('../images/identification-poste-fr.png');
  background-repeat: no-repeat;
  width: 237px;
  height: 316px;
  bottom: 30px;
  left: 200px;
}
.situation-step.step2 .job-win .action-profil {
  position: absolute;
  z-index: 2;
  top: 318px;
  left: 334px;
  white-space: nowrap;
}
.situation-step.step2 .job-win .title {
  padding: 15px 15px;
  background-color: #1cacc0;
  color: white;
  text-align: center;
}
.situation-step.step2 .job-win .title .organizational-label {
  /*font-style:italic;*/
  color: #d2eef2;
}
.situation-step.step2 .job-win a.edit-job {
  font-size: 12px;
  position: absolute;
  bottom: 4px;
  left: 15px;
  right: 15px;
}
.situation-step.step2 .job-win .content {
  position: absolute;
  top: 90px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  background-color: white;
}
.situation-step.step2 .job-win .content .details {
  margin-top: 18px;
}
.indicateur.decroissance {
  color: red;
}
.indicateur.croissance {
  color: green;
}
.indicateur.emergent {
  color: green;
}
.indicateur.sensible {
  color: orange;
}
.indicateur.stable {
  color: blue;
}
.indicateur.tension {
  color: red;
}
section.home-section,
.profil section {
  padding: 30px 0;
  border: 0 solid #dadada;
}
section.home-section h2,
.profil section h2 {
  font-family: "gothambook", Verdana, Helvetica, Sans-Serif;
  color: #717171;
  font-size: 3.4em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}
section.home-section h3,
.profil section h3 {
  color: #949494;
  margin-top: 0;
  text-align: center;
  font-size: 1.3em;
}
section.home-section.actualite,
.profil section.actualite {
  padding: 0;
}
.profil {
  padding: 30px;
  min-height: 100%;
  margin-top: 0;
  background-color: #eeeeee;
}
.profil section {
  margin-top: 0px;
  background-color: white;
  border: 0;
}
#profil-tabs {
  background-color: white;
  margin-top: 40px;
}
#profil-tabs .nav.nav-tabs {
  width: 100%;
}
#profil-tabs .nav.nav-tabs > li {
  width: 50%;
  text-align: center;
}
#profil-tabs .nav.nav-tabs > li > a {
  text-align: center;
  border-radius: 0px;
  background-color: whitesmoke;
  border: 0px;
  border-top: 2px solid #1fc1d8;
  margin-right: 1px;
  box-sizing: border-box;
  color: #4d4d4d;
}
#profil-tabs .nav.nav-tabs > li.active > a {
  background-color: white;
  color: #1fc1d8;
}
#profil-tabs .nav-contents {
  border: 0px;
  /*border-top:3px solid @bluelight;*/

}
.tel {
  line-height: 28px;
  background-repeat: no-repeat;
  padding-left: 28px;
  background-position: 2px 7px;
  background-image: url('../images/pico-tel.png');
}
.email {
  line-height: 28px;
  background-repeat: no-repeat;
  padding-left: 28px;
  background-position: 2px 1px;
  background-image: url('../images/picto-mailto.png');
}
.city {
  line-height: 28px;
  background-repeat: no-repeat;
  padding-left: 28px;
  background-position: 2px 2px;
  background-image: url('../images/picto-city.png');
}
.profil-header {
  min-height: 436px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url('../images/background.jpg');
  background-size: cover;
  overflow: hidden;
  position: relative;
  padding: 24px;
}
.profil-header .box {
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.profil-header .box:before {
  content: " ";
  position: absolute;
  z-index: -1;
  background-color: white;
  opacity: 0.95;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.profil-header .box .title {
  line-height: 60px;
  background-color: white;
  font-size: 21px;
  text-align: center;
}
.profil-header .box .container {
  padding: 20px;
}
.profil-header .box .conseiller-nom {
  color: #1cacc0;
  font-size: 21px;
  font-weight: bold;
}
.profil-header .info-container {
  float: left;
}
.profil-header .box-messagerie {
  border: 0px solid red;
  position: absolute;
  overflow-y: auto;
  top: 25px;
  bottom: 25px;
  right: 25px;
  left: 400px;
}
.profil-header .box-conseiller {
  width: 345px;
  height: 200px;
}
.profil-header.empty-message .info-container {
  float: none;
}
.profil-header.empty-message .box-messagerie {
  bottom: auto;
  height: 200px;
}
.profil-header.empty-message .box-emploi.profil {
  width: 100%;
}
.messagerie-container {
  position: relative;
  margin: 30px 40px;
  overflow-y: auto;
}
.messagerie-container .message {
  display: block;
  padding-bottom: 26px;
  clear: both;
}
.messagerie-container .message.attachment:before {
  position: absolute;
  right: 0;
  top: 3px;
  width: 40px;
  height: 40px;
  content: " ";
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-image: url('../images/picto-email.png');
}
.messagerie-container .message .message__date {
  font-weight: bold;
  border-bottom: 1px solid #1cacc0;
  line-height: 25px;
}
.messagerie-container .message .message__object,
.messagerie-container .message .message__attachments {
  font-size: 13px;
  margin-top: 4px;
  margin-bottom: 20px;
  padding: 0px;
}
.messagerie-container .message .message__object strong,
.messagerie-container .message .message__attachments strong {
  color: #333333;
}
.box-event-mobility {
  margin-top: 12px;
  color: #652d90;
  font-weight: bold;
}
.box-event-prev {
  margin-top: 12px;
  color: #949494;
  font-weight: bold;
}
.box-event-profil-not-started {
  margin-top: 12px;
  color: #949494;
  font-weight: bold;
}
.box-event-profil-in-progress {
  margin-top: 12px;
  color: #652d90;
  font-weight: bold;
}
.box-event-profil-completed {
  margin-top: 12px;
  color: #1cacc0;
  font-weight: bold;
}
.box-jalon {
  color: #1cacc0;
  font-weight: bold;
}
.box-emploi {
  box-sizing: border-box;
}
.box-emploi .emploi-title {
  font-size: 17px;
  margin-bottom: 5px;
}
.box-emploi .emploi-item {
  margin-bottom: 20px;
}
.box-emploi .emploi-item .emploi-item__title {
  border-bottom: 1px solid #1cacc0;
  padding-bottom: 2px;
}
.box-emploi .emploi-item .emploi-item__description {
  margin-top: 2px;
  font-size: 12px;
}
.box-emploi.profil {
  width: 345px;
  margin-top: 25px;
  padding: 52px 28px;
  min-height: 334px;
}
.box-emploi.conseiller {
  display: inline-block;
}
.box-emploi.conseiller .emploi-item {
  clear: right;
  padding-left: 170px;
}
.box-emploi.conseiller .emploi-item__title {
  font-weight: bold;
  white-space: nowrap;
}
.box-emploi.conseiller .emploi-title {
  float: left;
}
.bootstrap .tooltip-inner {
  background-color: #1cacc0;
}
.bootstrap .tooltip.top .tooltip-arrow {
  border-top-color: #1cacc0;
}
.bootstrap .tooltip.bottom  .tooltip-arrow {
  border-bottom-color: #1cacc0;
}
.bootstrap .tooltip.left .tooltip-arrow {
  border-left-color: #1cacc0;
}
.bootstrap .tooltip.right .tooltip-arrow {
  border-right-color: #1cacc0;
}
.bootstrap .btn-action.btn-primary,
.bootstrap .btn-action.btn-primary:hover,
.bootstrap .btn-action.btn-primary:active,
.bootstrap .btn-action.btn-primary:focus,
.bootstrap .btn-action.btn-default,
.bootstrap .btn-action.btn-default:hover,
.bootstrap .btn-action.btn-default:active,
.bootstrap .btn-action.btn-default:focus {
  background-color: #1cacc0;
  color: white;
  font-weight: bold;
  border: 0;
  /*1px solid #94979a;*/
  font-size: 15px;
  padding: 10px 28px;
  border-radius: 5px !important;
}
.bootstrap .btn-action.btn-primary:hover,
.bootstrap .btn-action.btn-primary:hover:hover,
.bootstrap .btn-action.btn-primary:active:hover,
.bootstrap .btn-action.btn-primary:focus:hover,
.bootstrap .btn-action.btn-default:hover,
.bootstrap .btn-action.btn-default:hover:hover,
.bootstrap .btn-action.btn-default:active:hover,
.bootstrap .btn-action.btn-default:focus:hover {
  background-color: #1fc1d8;
  border: 0;
  /*1px solid @blue;*/
  color: white;
}
.bootstrap .btn-action.btn-primary[disabled],
.bootstrap .btn-action.btn-primary:hover[disabled],
.bootstrap .btn-action.btn-primary:active[disabled],
.bootstrap .btn-action.btn-primary:focus[disabled],
.bootstrap .btn-action.btn-default[disabled],
.bootstrap .btn-action.btn-default:hover[disabled],
.bootstrap .btn-action.btn-default:active[disabled],
.bootstrap .btn-action.btn-default:focus[disabled] {
  background-color: #949494;
}
.bootstrap .btn-action.btn-primary[disabled]:hover,
.bootstrap .btn-action.btn-primary:hover[disabled]:hover,
.bootstrap .btn-action.btn-primary:active[disabled]:hover,
.bootstrap .btn-action.btn-primary:focus[disabled]:hover,
.bootstrap .btn-action.btn-default[disabled]:hover,
.bootstrap .btn-action.btn-default:hover[disabled]:hover,
.bootstrap .btn-action.btn-default:active[disabled]:hover,
.bootstrap .btn-action.btn-default:focus[disabled]:hover {
  background-color: #949494;
}
.bootstrap .btn-action.btn-primary.purple,
.bootstrap .btn-action.btn-primary:hover.purple,
.bootstrap .btn-action.btn-primary:active.purple,
.bootstrap .btn-action.btn-primary:focus.purple,
.bootstrap .btn-action.btn-default.purple,
.bootstrap .btn-action.btn-default:hover.purple,
.bootstrap .btn-action.btn-default:active.purple,
.bootstrap .btn-action.btn-default:focus.purple {
  background-color: #652d90;
}
.bootstrap .btn-action.btn-primary.purple:hover,
.bootstrap .btn-action.btn-primary:hover.purple:hover,
.bootstrap .btn-action.btn-primary:active.purple:hover,
.bootstrap .btn-action.btn-primary:focus.purple:hover,
.bootstrap .btn-action.btn-default.purple:hover,
.bootstrap .btn-action.btn-default:hover.purple:hover,
.bootstrap .btn-action.btn-default:active.purple:hover,
.bootstrap .btn-action.btn-default:focus.purple:hover {
  background-color: #925cbb;
}
.bootbox-confirm .btn-default,
.bootbox-confirm .btn-default:hover {
  font-size: 14px;
}
.bootbox-confirm .btn-default {
  background-color: #a5babd;
}
/* centered columns styles */

.row-centered {
  text-align: center;
}
.col-centered {
  display: inline-block;
  vertical-align: top !important;
  float: none !important;
  /* reset the text-align */
  text-align: left;
  /* inline-block space fix */
  margin-right: -4px;
}
section.situation {
  padding-bottom: 90px;
}
.offer-counter .color {
  font-size: 16px;
  font-weight: bold;
}
.fiche-metier {
  color: #717171;
  font-size: 20px;
}
.fiche-metier .modal-header {
  background-color: #1cacc0;
}
.fiche-metier .close {
  color: white;
  opacity: 1;
  font-weight: bold;
}
.fiche-metier h2 {
  text-align: center;
  color: #717171;
  font-size: 50px;
}
.fiche-metier .content {
  font-size: 16px;
}
.fiche-metier .content .zone {
  border: 1px solid #1cacc0;
  padding: 12px 22px;
  line-height: 1.4em;
}
.fiche-metier .content .zone > ul > li {
  padding: 3px 0px;
}
.fiche-metier .content h3 {
  font-size: 20px;
  margin: 0;
  padding: 12px 48px;
  background-repeat: no-repeat;
  background-position: 3px 7px;
}
.fiche-metier .content h3.livre {
  background-image: url('../images/picto-livre.png');
}
.fiche-metier .content h3.cible {
  background-image: url('../images/picto-cible.png');
}
.fiche-metier .content h3.aires {
  background-image: url('../images/picto-aires.png');
}
.fiche-metier .content h3.key {
  background-image: url('../images/picto-key.png');
}
.fiche-metier .coeur-de-metier {
  list-style-type: none;
}
.fiche-metier .coeur-de-metier > li {
  padding-bottom: 20px;
}
.fiche-metier .coeur-de-metier .family {
  margin-bottom: 7px;
  color: #4d4d4d;
}
.fiche-metier .coeur-de-metier .family li {
  color: #949494;
  font-size: 15px;
}
.fiche-metier #skill-details {
  border: 1px solid #d6d6d6;
  background-color: white;
  margin-top: 70px;
  padding: 14px 20px;
}
.fiche-metier #skill-details .ADApp-list-input > .item {
  padding: 0px;
  margin: 0px;
}
.modal-dialog.passerelles-detail {
  width: 80% !important;
  height: 80% !important;
  min-height: 600px;
  min-width: 940px;
  padding: 0;
  margin: auto !important;
  transform: translate(2%, 10%) !important;
}
.modal-dialog.passerelles-detail .situation-step.step2 {
  margin: 0px;
  margin-top: 150px;
}
.modal-dialog.passerelles-detail .modal-content {
  height: 100%;
  width: 100%;
}
.modal-dialog.passerelles-detail .modal-body {
  position: absolute !important;
  top: 56px;
  bottom: 65px;
  left: 0;
  right: 0;
  border-radius: 0;
  overflow-x: hidden;
  overflow-y: hidden;
}
.modal-dialog.passerelles-detail .modal-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.offers-listing {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: white;
}
.offers-listing.opened {
  -webkit-box-shadow: 0px 7px 30px 0px rgba(50, 50, 50, 0.7);
  -moz-box-shadow: 0px 7px 30px 0px rgba(50, 50, 50, 0.7);
  box-shadow: 0px 7px 30px 0px rgba(50, 50, 50, 0.7);
}
.offers-listing .counter {
  cursor: pointer;
  border: 1px solid #1cacc0;
  background-color: #d9f1f5;
  padding: 20px;
  text-align: right;
}
.offers-listing .titlebar {
  background-color: #1cacc0;
  color: white;
  text-align: right;
  padding-right: 20px;
}
.offers-listing .titlebar a {
  color: white;
  line-height: 40px;
}
.offers-listing .content {
  padding: 20px 30px;
  border: 1px solid #1cacc0;
}
.offers-listing .content .subtitle {
  color: #1cacc0;
  font-size: 26px;
}
.offers-listing .content ul {
  list-style-type: none;
  margin-bottom: 20px;
}
.offers-listing .content ul li {
  padding-top: 16px;
}
.offers-listing .content ul li .offer-show-more {
  text-align: right;
}
.offers-listing .content ul li .offer-name {
  color: #949494;
  font-size: 22px;
  border-bottom: 1px solid #1cacc0;
  display: block;
  margin-top: 16px;
  margin-bottom: 6px;
  padding-bottom: 6px;
}
section.metiers-emplois {
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('../images/background-recrutement.png');
  min-height: 640px;
  position: relative;
}
section.metiers-emplois .browse-jobs {
  margin: 0 auto;
  overflow: hidden;
  margin-top: 80px;
  max-width: 945px;
}
section.metiers-emplois h2,
section.metiers-emplois h3 {
  color: white;
}
section.metiers-emplois .row {
  margin-top: 60px;
}
section.metiers-emplois .recrutement-win {
  /*margin-left:12px;*/
  margin: 0 auto;
  max-width: 240px;
  min-height: 278px;
  box-sizing: border-box;
  bottom: 0;
  border: 1px solid #1cacc0;
  position: relative;
  background-color: white;
}
section.metiers-emplois .recrutement-win a {
  position: absolute;
  bottom: 6px;
  right: 8px;
}
section.metiers-emplois .recrutement-win .action-profil {
  position: absolute;
  z-index: 2;
  top: 318px;
  left: 334px;
  white-space: nowrap;
}
section.metiers-emplois .recrutement-win .title {
  padding: 15px 15px;
  background-color: #1cacc0;
  color: white;
  text-align: center;
  min-height: 66px;
}
section.metiers-emplois .recrutement-win .title .organizational-label {
  /*font-style:italic;*/
  color: #d2eef2;
}
section.metiers-emplois .recrutement-win .content {
  position: absolute;
  top: 90px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  font-size: 11px;
  font-weight: bold;
  background-color: white;
}
section.metiers-emplois .recrutement-win .content .color {
  font-weight: normal;
  font-size: 14px;
}
section.metiers-emplois .recrutement-win .content .details {
  font-weight: normal;
  margin-top: 18px;
  line-height: 26px;
}
section.metiers-emplois .recrutement-win__offres {
  font-weight: bold;
}
section.events .list-events {
  margin: 0 auto;
  margin-top: 54px;
  max-width: 945px;
  padding-bottom: 80px;
}
section.events .event {
  margin-top: 42px;
}
section.responsablerh .requests .title {
  font-size: 20px;
  color: #1cacc0;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: left;
}
section.responsablerh .search-result,
section.responsablerh .search-result.profil-header {
  margin: 0 auto;
  width: 1000px;
}
section.responsablerh .search-result > ul,
section.responsablerh .search-result.profil-header > ul {
  margin: 0 auto;
  width: 90%;
  list-style-type: none;
  padding: 0;
}
section.responsablerh .search-result > ul > li,
section.responsablerh .search-result.profil-header > ul > li {
  position: relative;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}
section.responsablerh .search-result > ul > li .name,
section.responsablerh .search-result.profil-header > ul > li .name {
  margin: 0;
  padding: 0;
  color: #1cacc0;
  font-size: 26px;
  font-weight: bold;
}
section.responsablerh .search-result > ul > li .box,
section.responsablerh .search-result.profil-header > ul > li .box {
  position: relative;
  box-sizing: border-box;
  min-height: 200px;
  padding: 23px;
}
section.responsablerh .search-result > ul > li .box:before,
section.responsablerh .search-result.profil-header > ul > li .box:before {
  background-color: white;
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
}
section.responsablerh .search-result > ul > li .box.box-messagerie,
section.responsablerh .search-result.profil-header > ul > li .box.box-messagerie {
  box-sizing: border-box;
  background-color: white;
  min-height: 250px;
  padding: 23px;
  position: static;
}
section.responsablerh .search-result > ul > li .box.box-messagerie .title,
section.responsablerh .search-result.profil-header > ul > li .box.box-messagerie .title {
  line-height: 60px;
  background-color: white;
  font-size: 21px;
  text-align: center;
}
section.responsablerh .search-result > ul > li .box.box-messagerie .messagerie-container,
section.responsablerh .search-result.profil-header > ul > li .box.box-messagerie .messagerie-container {
  margin: 0px;
}
section.responsablerh .search-result > ul > li .box.box-messagerie .input-group,
section.responsablerh .search-result.profil-header > ul > li .box.box-messagerie .input-group {
  width: 100%;
}
section.responsablerh .search-result > ul > li .box.box-messagerie .input-group input,
section.responsablerh .search-result.profil-header > ul > li .box.box-messagerie .input-group input,
section.responsablerh .search-result > ul > li .box.box-messagerie .input-group textarea,
section.responsablerh .search-result.profil-header > ul > li .box.box-messagerie .input-group textarea {
  width: 100%;
}
section.responsablerh .search-result > ul > li .box.box-messagerie .message-form,
section.responsablerh .search-result.profil-header > ul > li .box.box-messagerie .message-form {
  display: none;
  text-align: left;
  border: 1px solid #1cacc0;
  padding: 20px;
  margin-top: 12px;
}
section.responsablerh .search-result > ul > li .event,
section.responsablerh .search-result.profil-header > ul > li .event {
  /*position:relative;*/
  display: inline-block;
  /*
					top: 24px;
					right: 24px;
                        */
  z-index: 10;
  margin-top: 0px;
}
section.responsablerh .search-result.profil-header {
  width: 100%;
}
section.responsablerh .search-result.profil-header > ul > li {
  cursor: auto;
}
section.responsablerh .tab-content > .tab-pane > .nodata {
  max-width: none;
  height: 150px;
  text-align: center;
  font-size: 26px;
  position: relative;
}
section.responsablerh .tab-content > .tab-pane > .nodata > span.nodatatext {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#statistique-search-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -48px;
  min-width: 920px;
  /*margin: 0 auto;            
    width: 90%;*/
  border: 1px solid #1cacc0;
  border-top: 0;
  /*margin-bottom : 40px;*/
  padding: 5px;
  background-color: #1cacc0;
}
#statistique-search-row.active {
  display: block;
}
#statistique-search-row .statistique {
  display: inline-block;
  padding-left: 10px;
  padding-right: 35px;
}
#statistique-search-row .statistique > span.value-stat {
  color: white;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}
#statistique-search-row .statistique > span.label-stat {
  color: white;
  display: inline-block;
  text-align: center;
  font-size: 13px;
}
.profil-messagerie {
  box-sizing: border-box;
}
.profil-messagerie .title {
  line-height: 60px;
  background-color: white;
  font-size: 21px;
  text-align: center;
}
.profil-messagerie .messagerie-container {
  margin: 0px;
}
.profil-messagerie .input-group {
  width: 100%;
}
.profil-messagerie .input-group input,
.profil-messagerie .input-group textarea {
  width: 100%;
}
.profil-messagerie .message-form {
  display: none;
  text-align: left;
  border: 1px solid #1cacc0;
  padding: 20px;
  margin-top: 12px;
}
.profil-attachments {
  box-sizing: border-box;
}
.profil-attachments .attachment-container {
  margin: 0px;
  padding: 20px;
}
.profil-attachments .input-group {
  width: 100%;
}
.profil-attachments .input-group input,
.profil-attachments .input-group textarea {
  width: 100%;
}
.profil-attachments .attachment-form {
  display: none;
  text-align: left;
  border: 1px solid #1cacc0;
  padding: 20px;
  margin-top: 12px;
}
.profil-attachments .attachment-row {
  margin-bottom: 10px;
}
.profil-attachments .attachement-description {
  font-size: 11px;
  color: #949494;
}
.checkbox-item {
  position: relative;
  display: table;
  width: 100%;
  overflow: hidden;
}
.checkbox-item input[type=checkbox] {
  position: absolute !important;
  left: -9999 !important;
  /** -9999 */
  margin: 0 !important;
}
.checkbox-item label {
  margin: 0;
  padding: 0;
  padding: 0 15px;
  padding-right: 70px;
  line-height: 14px;
  display: table-cell;
  height: 50px;
  width: 100%;
  /*display:inline-block;*/
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  background-color: white;
  border-bottom: 1px solid #ebebeb;
  font-weight: normal;
}
.checkbox-item label:hover {
  color: #1cacc0;
}
.checkbox-item label:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 51px;
  height: 51px;
  background-image: url('../Images/filter-checkbox-off.png');
  background-repeat: no-repeat;
}
.checkbox-item input:checked + label:after {
  background-image: url('../Images/filter-checkbox-on.png');
}
.calltoaction-skills {
  display: block;
  border: 1px solid #bfbfbf;
  height: 100px;
  width: 330px;
  box-sizing: border-box;
  padding: 11px 15px;
  position: absolute;
  top: 16px;
  right: 0;
}
.calltoaction-skills:hover {
  text-decoration: none !important;
}
.calltoaction-skills .title {
  font-size: 20px;
  color: #2eadbf;
}
.calltoaction-skills .icon {
  float: left;
  margin-top: 4px;
}
.calltoaction-skills .content {
  margin-top: 2px;
  padding-left: 50px;
  font-size: 13px;
  color: #949494;
  width: 262px;
}
.calltoaction-skills .clickhere {
  position: absolute;
  right: 36px;
  bottom: 10px;
  color: #1cacc0;
  font-size: 13px;
}
.calltoaction-skills .clickhere:before {
  content: "\3e";
  position: absolute;
  color: #1cacc0;
  margin-left: -14px;
}
section.job-catalog #fixed-title {
  z-index: 20;
  /* width: 100%; */
  /*position: fixed;*/
  background-color: white;
}
section.job-catalog #fixed-title > h1 {
  padding-left: 80px;
  background-color: white;
  margin: 0;
}
section.job-catalog #fixed-title.fixed {
  /*position: fixed;*/
  /*top: 0px;*/
  visibility: hidden;
}
section.job-catalog #fixed-count-header {
  z-index: 19;
}
section.job-catalog #fixed-count-header.fixed {
  position: fixed;
  top: 110px;
  border-top: 30px solid white;
}
section.job-catalog #fixed-count-header > .header {
  line-height: 35px;
  color: #1cacc0;
  padding: 0 25px;
  background-color: #f3f3f3 !important;
  position: relative;
  /*margin-right: -20px;*/
  border-bottom: 1px solid white;
}
section.job-catalog #fixed-count-header > .header a {
  position: absolute;
  color: white;
}
section.job-catalog #fixed-count-header > .header a.save {
  right: 240px;
}
section.job-catalog #fixed-count-header > .header a.new {
  right: 25px;
}
section.job-catalog #fixed-count-header > .header > span.count {
  font-size: 16px;
  /*font-weight : bold;*/

}
section.job-catalog #fixed-count-header > .header > span#filters-opener {
  display: none;
}
section.job-catalog .filter-base-width {
  min-height: 135px;
}
section.job-catalog .filters {
  padding: 0;
  max-height: 220px;
  /*z-index : 10;*/
  border-top: 30px solid white;
  position: relative;
}
section.job-catalog .filters.active {
  z-index: 20;
}
section.job-catalog .filters.fixed {
  top: 110px;
  position: fixed;
}
section.job-catalog .filters.fixed .filter-sub-menu {
  position: initial;
}
section.job-catalog .filters .filter-button {
  display: block;
  border: 1px solid #95989a;
  text-align: center;
  border-radius: 2px;
  margin-top: 20px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 15px;
}
section.job-catalog .filters .filter-button a {
  text-decoration: none;
  font-size: 16px;
  color: #1cacc0 !important;
  /*font-weight: bold;*/

}
section.job-catalog .filters .filter-box {
  /*border : 1px solid #C3C4C5;
            border-bottom : 1px solid #95989A;*/
  display: inline-block;
  background-color: white;
  float: left;
  max-height: 330px;
  padding: 0;
}
section.job-catalog .filters .filter-box .header {
  border-left: 1px solid #ebebeb;
  line-height: 35px;
  color: white;
  background-color: #898989;
  position: relative;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid white;
  min-height: 35px;
  padding-left: 20px;
  z-index: 25px;
}
section.job-catalog .filters .filter-box .header > span.count {
  float: left;
  font-size: 16px;
  /*font-weight : bold;*/

}
section.job-catalog .filters .filter-box .header > a#icon-ico-favoris {
  float: left;
  padding-left: 20px;
}
section.job-catalog .filters .filter-box .header > a#icon-ico-favoris > #searchFavoriCount {
  font-family: "gothambook", "Segoe UI", Verdana, Helvetica, Sans-Serif;
  font-size: 12px;
  vertical-align: top;
}
section.job-catalog .filters .filter-box .header > a.fa {
  padding-top: 8px;
  float: right;
  font-size: 16px;
  color: white;
  padding-right: 10px;
}
section.job-catalog .filters .filter-box .header > a.fa.save.inactive,
section.job-catalog .filters .filter-box .header > a.fa.new.inactive {
  color: #ababab;
  /*font-style : italic;*/
  pointer-events: none;
}
section.job-catalog .filters .filter-box .filter-menu {
  font-size: 15px;
  padding: 0;
  /*font-weight: bold;*/
  width: 100%;
  /*border-top: 1px solid #95989A;*/
  cursor: pointer;
}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  line-height: 30px;
  border-bottom: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item.inactive {
  color: #898989;
  font-style: italic;
  pointer-events: none;
}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item.inactive span {
  display: none!important;
}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item.active {
  color: white;
  background-color: #1cacc0;
  border-left: 1px solid #1cacc0;
}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item.active:after {
  z-index: 25;
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(31, 193, 216, 0);
  border-left-color: #1cacc0;
  border-width: 12px;
  margin-top: -12px;
}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item.active > .filter-menu-item-desktop > span.filter-reset {
  color: white !important;
  background-color: #1cacc0 !important;
}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item .filter-menu-item-mobile {
  display: none;
}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item .filter-reset {
  color: #1cacc0 !important;
}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item .filter-reset,
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item .filter-expand {
  display: none;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-top: 5px !important;
}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item .filter-reset.active,
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item .filter-expand.active {
  display: inline-block;
}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item a {
  color: white;
  font-size: 16px;
  /*font-weight: bold;*/

}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item a:hover {
  color: black;
}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item .fa {
  color: #4d4d4d;
}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item-separator {
  background-color: #1cacc0;
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  line-height: 10px;
  border-bottom: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
  cursor: default;
}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item-separator > .filter-menu-item-desktop {
  color: white;
}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item-action {
  display: block;
  /*padding-left: 20px;
                    padding-right: 20px;*/
  /*padding-top: 10px;
                    padding-bottom: 40px;*/
  position: relative;
  line-height: 16px;
  /*border-bottom: 1px solid #ebebeb;
                    border-left: 1px solid #ebebeb;*/
  cursor: default;
}
section.job-catalog .filters .filter-box .filter-menu .filter-menu-item-action > a {
  padding-top: 5px;
  padding-bottom: 5px;
  width: 49%;
  text-align: center;
  color: white;
  background-color: #1cacc0;
  display: inline-block;
}
section.job-catalog .filters .filter-sub-menu {
  border-left: 1px solid #1cacc0;
  display: inline-block;
  background-color: white;
  float: left;
  height: 325px;
  z-index: 20;
  overflow-y: auto;
  padding: 0;
  min-height: 0px;
  box-shadow: 3px 3px 13px rgba(0, 0, 0, 0.5);
  position: absolute;
}
section.job-catalog .filters .filter-sub-menu .filter-submenu-item-header {
  height: 20px;
  padding-right: 30px;
  position: relative;
  right: 0;
}
section.job-catalog .filters .filter-sub-menu .filter-submenu-item-header > span.sub-menu-close {
  position: fixed;
  font-size: 30px;
  color: #1cacc0;
}
section.job-catalog .filters .filter-sub-menu .filter-submenu-item {
  padding: 0;
  display: none;
  z-index: 25;
  /*border : 1px solid #C3C4C5;
                border-bottom : 1px solid #95989A;*/
  /*display : none;*/
  margin-right: 25px;
  position: relative;
}
section.job-catalog .filters .filter-sub-menu .filter-submenu-item .mobile-button {
  display: none;
  text-align: center;
  padding: 10px 20px;
}
section.job-catalog .filters .filter-sub-menu .filter-submenu-item.active {
  display: block;
}
section.job-catalog .filters .filter-sub-menu .filter-submenu-item ul {
  padding: 0;
  margin: 0;
  list-style: none !important;
  font-size: 15px;
  /*font-weight: bold;*/
  width: 100%;
  cursor: pointer;
  /*height :100%;*/
  min-height: 270px;
}
section.job-catalog .filters .filter-sub-menu .filter-submenu-item ul > li {
  width: 100%;
  padding-left: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}
section.job-catalog .filters .filter-sub-menu .filter-submenu-item ul > li > span.fa {
  padding-right: 5px;
  display: none;
}
section.job-catalog .filters .filter-sub-menu .filter-submenu-item ul > li > span.fa.active {
  display: inline-block;
}
section.job-catalog .search {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: relative;
  border: 1px solid #ebebeb;
  border-left: 0;
  border-right: 0;
}
section.job-catalog .search h1 {
  color: #949494;
  position: static;
  text-align: left;
  padding-right: 320px;
  margin-top: 10px;
}
section.job-catalog .search .content .filters-families {
  width: 310px;
  color: red;
  float: left;
  padding: 0;
  margin: 0;
  list-style-type: none;
  border-right: 1px solid #1cacc0;
}
section.job-catalog .search .content .filters-families li {
  position: relative;
  padding: 15px 30px;
  color: #717171;
  cursor: pointer;
  border-bottom: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
  font-size: 15px;
}
section.job-catalog .search .content .filters-families li.active {
  color: white;
  background-color: #1cacc0;
  border-left: 1px solid #1cacc0;
}
section.job-catalog .search .content .filters-families li.active:after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(31, 193, 216, 0);
  border-left-color: #1cacc0;
  border-width: 12px;
  margin-top: -12px;
}
section.job-catalog .search .content .filters-families li:last-child {
  border-bottom-width: 0 !important;
}
section.job-catalog .search .content .filters {
  margin-left: 328px;
  display: block;
  vertical-align: middle;
  padding-top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  height: 245px;
  box-sizing: border-box;
}
section.job-catalog .search .content .filters .filter-columns {
  display: table;
  width: 97%;
  margin: 0;
}
section.job-catalog .search .content .filters .filter-columns > div {
  margin: 0;
  display: table-cell;
  width: 50%;
}
section.job-catalog .search .content .filters .filter-columns .col-right {
  padding-left: 16px;
}
section.job-catalog .search .content #filters-offres .row {
  margin-bottom: 5px;
}
section.job-catalog .search-result-header {
  margin-top: 40px;
  line-height: 70px;
  background-color: #1cacc0;
  color: white;
}
section.job-catalog .search-result-header #jobOrderBy {
  color: #444444;
}
section.job-catalog .search-result-header .container {
  margin: 0 auto;
  width: 90%;
}
section.job-catalog .search-result-header .container .count {
  font-size: 32px;
}
section.job-catalog .search-result-header .container .order {
  float: right;
  font-size: 16px;
}
section.job-catalog .search-result-header .container .order select {
  width: 240px;
}
section.job-catalog .search-result {
  background-color: white;
  /*padding-bottom: 70px;*/

  /*.row.first {
			margin-bottom:15px !important;
		}*/

}
section.job-catalog .search-result .radar-subtitle {
  text-align: center;
  margin: 0;
  padding: 0;
  color: #949494;
  font-size: 18px;
  color: #4d4d4d;
}
section.job-catalog .search-result .row {
  position: relative;
}
section.job-catalog .search-result .radar.small.box {
  position: absolute !important;
  width: 378px;
  bottom: 0;
  top: 0;
  right: 0;
}
section.job-catalog .search-result > ul {
  margin: 0 auto;
  width: 100%;
  list-style-type: none;
  padding: 0;
}
section.job-catalog .search-result > ul > li {
  padding: 0;
  margin: 0;
  width: 100%;
  border-bottom: 1px solid #1cacc0;
}
section.job-catalog .search-result > ul > li h3 {
  margin: 0;
  padding: 0;
}
section.job-catalog .search-result > ul > li .box {
  box-sizing: border-box;
  background-color: #f3f3f3;
  /*min-height:250px;*/
  padding: 12px 16px;
  /*min-width : 350px;*/

}
section.job-catalog .search-result > ul > li .box span.open-metier {
  display: block;
  float: right;
  font-size: 30px;
  color: #1cacc0;
  cursor: pointer;
  transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  margin-left: 10px;
  margin-bottom: 5px;
  margin-right: 20px;
}
section.job-catalog .search-result > ul > li .box > h2 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  display: block;
  bottom: 5px;
  padding-left: 26px;
}
section.job-catalog .search-result > ul > li .box > h2 > span.glyphicon {
  color: #1cacc0;
  position: absolute;
  margin-left: -26px;
}
section.job-catalog .search-result > ul > li .box > h2 .proximity-label {
  font-weight: normal;
  font-size: 14px;
  display: block;
  padding-top: 5px;
}
section.job-catalog .search-result > ul > li .box > h2 .proximity-label > span.proximity-value {
  font-weight: bold;
  color: #1cacc0;
}
section.job-catalog .search-result > ul > li .box > h2 i {
  font-weight: normal;
  font-style: italic;
  font-size: 14px;
  display: block;
}
section.job-catalog .search-result > ul > li .job {
  width: 100%;
  padding-right: 0;
  /*padding-right: 270px;*/

}
section.job-catalog .search-result > ul > li .job .job-content {
  line-height: 1.4em;
}
section.job-catalog .search-result > ul > li .job .job-content h2 {
  font-size: 22px;
  color: #1cacc0;
}
section.job-catalog .search-result > ul > li .job .job-content h2 .family {
  font-size: 20px;
  color: #4d4d4d;
}
section.job-catalog .search-result #bottom {
  text-align: center;
}
section.job-catalog .search-result #bottom > .more-button {
  padding-top: 20px;
}
section.job-catalog .search-result #bottom > .more-button > button {
  background-color: #1cacc0;
  color: white;
  width: 100%;
  text-align: left;
}
section.job-catalog .search-result #bottom > .more-button > button:hover {
  background-color: white;
  color: #1cacc0;
}
/* Patch pour que le radar conserve le bon ratio sous IE */

.radar-ratio {
  width: 100%;
  /*padding-bottom: 56.25%;*/
  /* 16:9 */
  padding-bottom: 77.25%;
  /* cas particulier */
  position: relative;
}
.radar-ratio div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 24px;
  text-align: center;
}
.situation-step.step1 {
  margin-left: 50px;
  margin-right: 50px;
}
.situation-step.step1 .railroad {
  position: relative;
  list-style-type: none;
  height: 40px;
  line-height: 40px;
  background-color: white;
  border-bottom: 1px solid #949494;
  padding: 0;
  margin: 0 20px;
  padding-left: 14px;
  font-size: 15px !important;
}
.situation-step.step1 .railroad li {
  display: inline-block;
  vertical-align: middle;
}
.situation-step.step1 .railroad li a {
  display: block;
  text-decoration: none;
  color: #949494;
}
.situation-step.step1 .railroad li a.home {
  height: 40px;
  width: 23px;
  height: 23px;
  background-image: url('../Images/home-picto.png');
  background-repeat: no-repeat;
  background-position: center center;
}
.situation-step.step1 .railroad li a.path {
  margin-left: 40px;
  position: relative;
}
.situation-step.step1 .railroad li a.path:before {
  cursor: text;
  color: #949494;
  position: absolute;
  content: "/";
  margin-left: -20px;
}
#event-container-tabs {
  border: 0;
  display: inline-block;
  position: relative;
  margin-bottom: -5px !important;
}
#event-container-tabs .tab a {
  line-height: 58px;
  width: 240px;
  text-align: center;
  padding: 0;
  margin: 0;
  border-radius: 0;
}
.skill-type-level-bloc > .skill-type-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 25px;
  font-family: "Gotham Light", "Gotham Book";
}
.skill-type-collaborateur-statistics {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.skill-type-collaborateur-statistics .collaborateur-statistics-bloc {
  font-size: 13px;
  text-align: center;
  font-weight: bold;
}
.skill-type-collaborateur-statistics .collaborateur-statistics-bloc span.statistic-label {
  color: #585858;
  font-size: 13px;
  font-family: "Gotham Light";
}
.skill-type-collaborateur-statistics .collaborateur-statistics-bloc span.statistic-value {
  color: #1cacc0;
  font-weight: bold;
  font-size: 14px;
}
.skill-type-level-statistics > ul {
  list-style-type: none;
  padding: 0;
}
.skill-type-level-statistics > ul > li.level-bloc {
  padding-bottom: 10px;
}
.skill-type-level-statistics > ul > li.level-bloc > .level-label {
  font-size: 13px;
  text-align: right;
  float: left;
  padding: 0;
  color: dimgray;
}
.skill-type-level-statistics > ul > li.level-bloc > .level-statistic-bloc {
  float: left;
}
.skill-type-level-statistics > ul > li.level-bloc > .level-statistic-bloc > span.horizontal-histogram {
  padding: 0;
  height: 17px;
  width: 100%;
  float: left;
}
.skill-type-level-statistics > ul > li.level-bloc > .level-statistic-bloc > span.level-values {
  padding-left: 5px;
  font-size: 13px;
  font-weight: bold;
  min-width: 115px;
  vertical-align: text-top;
  /*font-family: "Gotham Light", "gothambook";*/

}
.skill-type-level-statistics > ul > li.level-bloc > .level-statistic-bloc > span.level-values > span.indice {
  font-size: 10px;
}
.responsablerh-interface .white-box {
  max-width: none;
  margin: 10px;
  padding: 0;
  font-size: 14px;
  overflow: hidden;
}
.responsablerh-interface .white-box .btn.btn-default {
  font-size: 12px;
  width: 124px;
  height: 41px;
}
.responsablerh-interface .white-box > .white-box-title {
  font-size: 22px;
  padding: 15px;
  text-align: center;
  color: #353535;
  background-color: white;
  /*font-weight : normal;*/
  font-family: "Gotham Light", "gothambook";
}
.responsablerh-interface .white-box .white-box-text {
  font-family: "Gotham Light", "Gotham Book";
  font-weight: bold;
  font-size: 13px;
  line-height: 20px;
}
.responsablerh-interface .white-box > .white-box-content {
  padding: 8px 40px;
}
.responsablerh-interface .white-box > .white-box-content .skill-type-level-bloc li.level-bloc {
  padding-bottom: 8px;
}
.responsablerh-interface .white-box .acquired-skill-label > ul {
  list-style: none;
}
.responsablerh-interface .white-box .acquired-skill-label > ul > li {
  /*width:100px;*/
  line-height: 25px;
  margin-bottom: 5px;
}
.responsablerh-interface .white-box .acquired-skill-label > ul > li span.gap {
  display: inline-block;
  height: 25px;
  width: 25px;
  text-align: center;
}
.responsablerh-interface .white-box .acquired-skill-label > ul > li span.indice {
  font-size: 9px;
}
.responsablerh-interface .white-box .acquired-skill-label#acquired-skill-left-label span.gap-percent {
  padding-left: 10px;
}
.responsablerh-interface .white-box .acquired-skill-label#acquired-skill-right-label li {
  text-align: right;
  padding-right: 30px;
}
.responsablerh-interface .white-box .acquired-skill-label#acquired-skill-right-label span.gap {
  margin-left: 10px;
}
.level-1-color {
  background-color: #f3bf60;
  border-color: #f3bf60 !important;
}
.level-2-color {
  background-color: #bce5a3;
  border-color: #bce5a3 !important;
}
.level-3-color {
  background-color: #96d6e3;
  border-color: #96d6e3 !important;
}
.level-4-color {
  background-color: #55c4c7;
  border-color: #55c4c7 !important;
}
.level-5-color {
  background-color: #68b0de;
  border-color: #68b0de !important;
}
.synthese-section {
  padding: 30px 0;
  border: 0 solid #dadada;
}
.synthese-section h2 {
  font-family: "gothambook", Verdana, Helvetica, Sans-Serif;
  color: #717171;
  font-size: 3.4em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}
.synthese-section h3 {
  color: #949494;
  margin-top: 0;
  text-align: center;
  font-size: 1.3em;
}
.synthese-section .bloc-perimetre {
  background-color: white;
  position: relative;
  /*margin-right: 30px;
        margin-left: 30px;*/
  padding-bottom: 10px;
  margin: 0 auto;
  width: 1000px;
  padding-top: 5px;
}
.synthese-section .bloc-perimetre .drowpdown-perimetre-bar {
  background-color: #848484;
  margin: 5px 10px 5px 0px;
  height: 45px;
  border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border: 1px solid #848484;
  font-size: 15px;
  color: white;
  line-height: 42px;
  cursor: pointer;
}
.synthese-section .bloc-perimetre .drowpdown-perimetre-bar.inactive {
  font-style: italic;
  color: #b7b6b6;
  cursor: default;
}
.synthese-section .bloc-perimetre .drowpdown-perimetre-bar > .drowpdown-value {
  position: relative;
  padding: 0;
  font-weight: bold;
  height: 100%;
}
.synthese-section .bloc-perimetre .drowpdown-perimetre-bar > .drowpdown-value > div.valign-middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.synthese-section .bloc-perimetre .drowpdown-perimetre-bar > .drowpdown-value > div.valign-middle > span {
  font-weight: bold;
}
.synthese-section .bloc-perimetre .quota-header {
  height: 40px;
  font-size: 18px;
  padding: 8px 10px 40px 0px;
  position: relative;
}
.synthese-section .bloc-perimetre .quota-header > .title > .value {
  font-weight: bold;
  color: #1cacc0;
}
.synthese-section .bloc-perimetre .quota-header .export-container {
  position: absolute;
  top: 5px;
  right: 0;
}
.synthese-section .bloc-perimetre .quota-header .export-container > .export-icon {
  font-size: 30px;
  color: #1cacc0;
  padding-right: 10px;
}
.synthese-section .bloc-perimetre .stats-header {
  margin: 0 !important;
  padding: 0 !important;
}
.synthese-section .bloc-perimetre .stats-header .stats-collaborateur {
  line-height: 21px;
  padding-top: 5px;
}
.synthese-section .bloc-perimetre .stats-header .stats-collaborateur .stat-value {
  font-weight: bold;
  color: #1cacc0;
}
.synthese-section .bloc-perimetre .stats-header .horizontal-histogram-container {
  margin: 0 !important;
  margin-left: 15px !important;
  padding: 0 !important;
}
.synthese-section .bloc-perimetre .stats-header .horizontal-histogram-container > ul {
  list-style-type: none;
  padding: 0;
}
.synthese-section .bloc-perimetre .stats-header .horizontal-histogram-container > ul > li.line-bloc {
  padding-bottom: 10px;
}
.synthese-section .bloc-perimetre .stats-header .horizontal-histogram-container > ul > li.line-bloc > .label {
  font-size: 12px;
  text-align: right;
  float: left;
  padding: 0;
  color: dimgray;
  padding-top: 2px;
}
.synthese-section .bloc-perimetre .stats-header .horizontal-histogram-container > ul > li.line-bloc > .level-bloc {
  float: left;
  padding-right: 0;
}
.synthese-section .bloc-perimetre .stats-header .horizontal-histogram-container > ul > li.line-bloc > .level-bloc > span.horizontal-histogram {
  padding: 0;
  height: 17px;
  width: 70%;
  float: left;
  max-width: 150px;
}
.synthese-section .bloc-perimetre .stats-header .horizontal-histogram-container > ul > li.line-bloc > .level-bloc > span.values {
  padding-left: 5px;
  font-size: 13px;
  font-weight: bold;
  min-width: 115px;
  vertical-align: text-top;
  /*font-family: "Gotham Light", "gothambook";*/

}
.synthese-section .bloc-perimetre .stats-header .horizontal-histogram-container > ul > li.line-bloc > .level-bloc > span.values > span.indice {
  font-size: 10px;
}
.synthese-section > .search-result {
  background-color: rgba(255, 255, 255, 0.75);
  margin: 0 auto;
  width: 1000px;
  padding: 15px;
}
.synthese-section > .search-result .graph-typologie {
  background-color: white;
  margin: 0;
  padding: 15px 15px 0px 15px;
}
.synthese-section > .search-result .graph-typologie > .title {
  font-size: 26px;
  color: #666666;
  vertical-align: middle;
  text-align: center;
}
.synthese-section > .search-result .graph-typologie .values {
  color: #1cacc1;
  font-weight: bold;
}
.synthese-section > .search-result .graph-typologie .vertical-histogram-container {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 30px;
  height: 185px;
}
.synthese-section > .search-result .graph-typologie .vertical-histogram-container > .vertical-bar-element {
  width: 4.00%;
  margin-right: 3.6%;
  display: block;
  height: 175px;
  float: left;
  position: relative;
}
.synthese-section > .search-result .graph-typologie .vertical-histogram-container > .vertical-bar-element > .vertical-bar-value {
  text-align: center;
  color: white;
  font-weight: bold;
  line-height: 30px;
  position: absolute;
  bottom: 20px;
  min-height: 2px;
  max-height: 150px;
  width: 100%;
}
.synthese-section > .search-result .graph-typologie .vertical-histogram-container > .vertical-bar-element > .vertical-bar-value > span.target {
  position: absolute;
  color: #1cacc0;
  font-size: 11px;
  bottom: 3px;
  left: 0;
  right: 0;
  margin: 0 auto;
  line-height: 12px;
  width: 55px;
  border-radius: 8px 8px 8px 8px;
  -moz-border-radius: 8px 8px 8px 8px;
  -webkit-border-radius: 8px 8px 8px 8px;
  background-color: #eeeeee;
}
.synthese-section > .search-result .graph-typologie .vertical-histogram-container > .vertical-bar-element > .vertical-bar-top-label {
  width: 100%;
  height: 20px;
  font-size: 12px;
  font-weight: bold;
  vertical-align: text-top;
  text-align: center;
  position: absolute;
  font-family: "Gotham Light";
}
.synthese-section > .search-result .graph-typologie .vertical-histogram-container > .vertical-bar-element > .vertical-bar-top-label > span.indice {
  font-size: 10px;
}
.synthese-section > .search-result .graph-typologie .vertical-histogram-container > .vertical-bar-element > .vertical-bar-bottom-label {
  position: absolute;
  width: 200%;
  height: 20px;
  font-size: 11px;
  font-weight: bold;
  vertical-align: text-top;
  text-align: center;
  bottom: -2px;
  border-top: 3px solid #95989a;
  left: -5px;
  color: #95989a;
}
.synthese-section > .search-result .resume-societe {
  background-color: white;
  margin: 0;
  padding: 15px 15px 5px 15px;
}
.synthese-section > .search-result .resume-societe > .title {
  font-size: 26px;
  color: #666666;
  vertical-align: middle;
  text-align: center;
}
.synthese-section > .search-result .resume-societe .values {
  color: #1cacc1;
  font-weight: bold;
}
.synthese-section > .search-result .link-synthese-projet {
  color: #1cacc1;
  font-size: 14px;
  position: absolute;
  right: 15px;
  bottom: 10px;
  font-weight: bold;
}
.synthese-section > .search-result .link-synthese-projet::before {
  content: ' ';
  height: 0;
  position: absolute;
  width: 0;
  border: 5px solid transparent;
  left: -12px;
  top: 4px;
  border-left-color: #1caac0;
}
.synthese-section > .search-result > ul#competencesTabs {
  width: 100%;
  background-color: white;
  border: 0;
}
.synthese-section > .search-result > ul#competencesTabs > li {
  display: table-cell !important;
  width: 1%;
  border-bottom: 4px solid white;
  font-size: 17px;
  text-align: center;
  font-family: "Gotham Light", "Gotham Book", "Segoe UI", Verdana, Helvetica, Sans-Serif;
  font-weight: bold;
}
.synthese-section > .search-result > ul#competencesTabs > li.active {
  border-bottom-color: #1cacc0;
}
.synthese-section > .search-result > ul#competencesTabs > li.active > a {
  background-color: white;
  color: #4d4d4d;
  padding: 15px 15px;
}
.synthese-section > .search-result .search-result-list {
  list-style-type: none;
  padding: 0;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic:last-child {
  padding-bottom: 40px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic {
  background-color: white;
  margin-bottom: 0px;
  padding: 30px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc {
  background-color: white;
  padding-left: 50px;
  padding-top: 10px;
  font-family: "Gotham Light";
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc > .grade-skill-bloc-title {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 25px;
  text-align: center;
  font-family: "Gotham Light";
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc > ul.grade-skill-list {
  list-style: none;
  padding: 0;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc > ul.grade-skill-list > li.grade-skill-item {
  padding: 5px;
  font-weight: bold;
  color: #585858;
  font-size: 13px;
  position: relative;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc > ul.grade-skill-list > li.grade-skill-item::before {
  content: "°";
  color: #1cacc0;
  padding-right: 10px;
  font-weight: normal;
  left: -10px;
  position: absolute;
  top: 7px;
  font-size: 15px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc > ul.grade-skill-list > li.grade-skill-item > span.grade-skill-value {
  padding-right: 2px;
  padding-top: 2px;
  height: 20px;
  width: 50px;
  float: right;
  color: #4d4d4d;
  text-align: right;
  border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc > ul.grade-skill-list > li.grade-skill-item > span.grade-skill-value > span.indice {
  font-size: 11px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc-bottom {
  padding-top: 50px;
  text-align: center;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc-bottom > span.grade-skill-label {
  color: #95989a;
  font-size: 14px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc-bottom > a.order-by-asc,
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc-bottom a.order-by-desc {
  padding-left: 30px;
  font-size: 15px;
  font-weight: bold;
  color: #4d4d4d;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc-bottom > a.order-by-asc.active,
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc-bottom a.order-by-desc.active {
  color: #1cacc0;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .skill-labels {
  padding-top: 0px;
  padding-bottom: 20px;
  min-height: 110px;
  font-family: "Gotham Light";
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .skill-labels > .skill-title {
  font-size: 18px;
  font-weight: bold;
  color: #585858;
  padding-bottom: 5px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .skill-labels > .skill-short-description {
  font-size: 13px;
  font-weight: bold;
  color: #585858;
  padding-bottom: 5px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .skill-labels > .skill-long-description {
  color: #95989a;
  font-size: 13px;
  font-family: "Gotham Book";
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .skill-labels > .skill-top-bloc {
  width: 90px;
  height: 70px;
  margin: 5px;
  position: relative;
  border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border: 1px solid;
  font-family: "Gotham Book";
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .skill-labels > .skill-top-bloc > .skill-top-value {
  font-size: 26px;
  color: black;
  text-align: center;
  margin-top: 12px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .skill-labels > .skill-top-bloc > .skill-top-value > span.indice {
  font-size: 12px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .skill-labels > .skill-top-bloc > .skill-top-label {
  text-align: center;
  color: white;
  font-size: 13px;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc {
  font-size: 14px;
  text-align: center;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc span.statistic-label {
  color: #585858;
  font-weight: bold;
  font-family: "Gotham Light";
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc span.statistic-value {
  color: #1cacc0;
  font-weight: bold;
  font-size: 13px;
  white-space: nowrap;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc-job {
  font-size: 14px;
  text-align: left;
  line-height: 20px;
  margin-bottom: -25px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc-job span.statistic-label {
  color: #585858;
  font-weight: bold;
  font-family: "Gotham Light";
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc-job span.statistic-value {
  font-weight: bold;
  color: #1cacc0;
  font-size: 13px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc-job > .skill-top-bloc-job {
  width: 90px;
  height: 70px;
  margin: 5px;
  margin-right: 30px;
  position: relative;
  border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  font-family: "Gotham Book";
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc-job > .skill-top-bloc-job > .skill-top-value {
  font-size: 30px;
  color: black;
  text-align: center;
  margin-top: 15px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc-job > .skill-top-bloc-job > .skill-top-value > span.indice {
  font-size: 20px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc-job > .skill-top-bloc-job > .skill-top-label {
  text-align: center;
  color: white;
  font-size: 13px;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .bottom-ntile > .bottom-ntile-bloc {
  font-size: 14px;
  text-align: center;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .bottom-ntile > .bottom-ntile-bloc > span.ntile-label {
  font-family: "Gotham Light";
  color: #585858;
  font-weight: bold;
  font-size: 13px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .bottom-ntile > .bottom-ntile-bloc > span.ntile-value {
  color: #1cacc0;
  font-weight: bold;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .bottom-statistic > .bottom-statistic-bloc {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  color: #1cacc0;
  /*> span.statistic-label{
                            color : #585858;
                        }
                        > span.statistic-value{
                            color : #1CACC0;
                        }*/

}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .horizontal-bar {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 30px;
  height: 50px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .horizontal-bar > .horizontal-bar-element {
  height: 50px;
  display: block;
  float: left;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .horizontal-bar > .horizontal-bar-element > span.horizontal-bar-element-value {
  width: 100%;
  height: 30px;
  display: inline-block;
  text-align: center;
  color: white;
  font-weight: bold;
  line-height: 30px;
  border-right: 1px solid white !important;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .horizontal-bar > .horizontal-bar-element > span.horizontal-bar-element-value > span.indice {
  font-size: 11px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .horizontal-bar > .horizontal-bar-element > span.horizontal-bar-element-label {
  width: 100%;
  height: 20px;
  font-size: 11px;
  font-weight: bold;
  display: inline-block;
  vertical-align: text-top;
  text-align: center;
  margin-top: -1px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .vertical-bar {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 30px;
  height: 200px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .vertical-bar > .vertical-bar-element {
  width: 8.09%;
  margin-right: 1%;
  display: block;
  height: 175px;
  float: left;
  position: relative;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .vertical-bar > .vertical-bar-element > .vertical-bar-value {
  text-align: center;
  color: white;
  font-weight: bold;
  line-height: 30px;
  position: absolute;
  bottom: 20px;
  min-height: 2px;
  max-height: 150px;
  width: 100%;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .vertical-bar > .vertical-bar-element > .vertical-bar-value > span.target {
  position: absolute;
  color: #1cacc0;
  font-size: 11px;
  bottom: 3px;
  left: 0;
  right: 0;
  margin: 0 auto;
  line-height: 12px;
  width: 55px;
  border-radius: 8px 8px 8px 8px;
  -moz-border-radius: 8px 8px 8px 8px;
  -webkit-border-radius: 8px 8px 8px 8px;
  background-color: #eeeeee;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .vertical-bar > .vertical-bar-element > .vertical-bar-top-label {
  width: 100%;
  height: 20px;
  font-size: 12px;
  font-weight: bold;
  vertical-align: text-top;
  text-align: center;
  position: absolute;
  font-family: "Gotham Light";
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .vertical-bar > .vertical-bar-element > .vertical-bar-top-label > span.indice {
  font-size: 10px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .vertical-bar > .vertical-bar-element > .vertical-bar-bottom-label {
  position: absolute;
  width: 98%;
  height: 20px;
  font-size: 11px;
  font-weight: bold;
  vertical-align: text-top;
  text-align: center;
  bottom: -2px;
  border-top: 3px solid #95989a;
  left: 1%;
  color: #95989a;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .acquired-skill-label > ul {
  list-style: none;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .acquired-skill-label > ul > li {
  /*width:100px;*/
  line-height: 25px;
  margin-bottom: 5px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .acquired-skill-label > ul > li span.gap {
  display: inline-block;
  height: 25px;
  width: 25px;
  text-align: center;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .acquired-skill-label > ul > li span.indice {
  font-size: 9px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .acquired-skill-label#acquired-skill-left-label span.gap-percent {
  padding-left: 10px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .acquired-skill-label#acquired-skill-right-label li {
  text-align: right;
  padding-right: 30px;
}
.synthese-section > .search-result .search-result-list > li.result-skill-statistic .acquired-skill-label#acquired-skill-right-label span.gap {
  margin-left: 10px;
}
.skill-statistic-section {
  padding: 30px 0;
  border: 0 solid #dadada;
}
.skill-statistic-section h2 {
  font-family: "gothambook", Verdana, Helvetica, Sans-Serif;
  color: #717171;
  font-size: 3.4em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}
.skill-statistic-section h3 {
  color: #949494;
  margin-top: 0;
  text-align: center;
  font-size: 1.3em;
}
.skill-statistic-section .item-selection-bloc {
  background-color: white;
  position: relative;
  /*margin-right: 30px;
        margin-left: 30px;*/
  padding-bottom: 10px;
  margin: 0 auto;
  width: 1000px;
}
.skill-statistic-section .item-selection-bloc > .title {
  font-size: 24px;
  padding: 25px;
}
.skill-statistic-section .item-selection-bloc .selected-bar {
  margin-left: 25px !important;
  border-bottom: 0 !important;
  padding: 0px 10px !important;
  font-family: "Gotham Light", "Gotham Book", "Segoe UI", Verdana, Helvetica, Sans-Serif;
  height: 50px;
}
.skill-statistic-section .item-selection-bloc .selected-bar > .mastered-skill-value,
.skill-statistic-section .item-selection-bloc .selected-bar > .acquired-skill-value,
.skill-statistic-section .item-selection-bloc .selected-bar > .skill-select {
  position: relative;
  padding: 0;
  height: 100%;
  /*padding-top : 14px !important;*/
  padding-left: 15px !important;
}
.skill-statistic-section .item-selection-bloc .selected-bar > .skill-label {
  position: relative;
  padding: 0;
  font-weight: bold;
  height: 100%;
  padding-left: 40px !important;
}
.skill-statistic-section .item-selection-bloc .selected-bar > .skill-label > div.valign-middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.skill-statistic-section .item-selection-bloc .selected-bar > .skill-label > div.valign-middle input.skill-value {
  background-color: #676767;
  color: white;
  padding-left: 10px;
  margin-left: -10px;
  border: none;
  height: 35px;
  width: 90%;
  border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border: 1px solid #676767;
  font-family: "Gotham Light", "Gotham Book", "Segoe UI", Verdana, Helvetica, Sans-Serif;
}
.skill-statistic-section .item-selection-bloc .selected-bar > .skill-label > div.valign-middle span.skill-reset {
  color: white;
  position: absolute;
  right: 55px;
  font-size: 20px;
  top: 25%;
}
.skill-statistic-section .item-selection-bloc .selected-bar > .skill-type {
  height: 100%;
  position: relative;
  padding: 0;
  font-weight: bold;
  vertical-align: middle;
}
.skill-statistic-section .item-selection-bloc .selected-bar > .skill-type > div.valign-middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  background-color: #676767;
  border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border: 1px solid #676767;
}
.skill-statistic-section .item-selection-bloc .selected-bar > .skill-type > div.valign-middle:after {
  content: "\f0d7";
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: white;
  font-family: FontAwesome;
  position: absolute;
  z-index: 1;
}
.skill-statistic-section .item-selection-bloc .selected-bar > .skill-type > div.valign-middle > #SkillsType {
  background-color: #676767;
  font-weight: bold;
  vertical-align: middle;
  border: 1px solid #676767;
  line-height: 19px;
  padding-left: 10px;
  /*margin-top: 6px;
                        padding-bottom: 10px;*/
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  /*border : none;*/
  width: 100%;
  position: relative;
  z-index: 2;
  height: 35px;
}
.skill-statistic-section .item-selection-bloc .selected-bar > .skill-type > div.valign-middle > #SkillsType > option {
  background-color: #676767;
  font-size: 16px;
  font-weight: bold;
}
.skill-statistic-section .item-selection-bloc .selected-bar > .skill-select > span {
  font-size: 50px;
  cursor: pointer;
}
.skill-statistic-section .item-selection-bloc > .selection-bar-menu {
  width: 99%;
}
.skill-statistic-section .item-selection-bloc > .selection-bar-menu ul {
  left: 0;
  top: 0;
  right: 0;
  list-style-type: none;
  height: auto;
  padding-top: 4px;
  padding-left: 20px;
  background-color: #848484;
  padding-right: 20px;
  border-bottom: 1px solid white;
  font-family: "Gotham Light", "Gotham Book", "Segoe UI", Verdana, Helvetica, Sans-Serif;
  max-height: 300px;
  overflow-y: auto;
  width: 100%;
  /*>li.selection-bar-item:not([style*='display: none']){
                        background-color:yellow !important;
                }*/

  /*>li.selection-bar-item:not([style*='display: none']):last-child{
                        background-color:red !important;
                }*/

}
.skill-statistic-section .item-selection-bloc > .selection-bar-menu ul > li.selection-bar-item:first-child {
  border-radius: 5px 5px 0px 0px;
  -moz-border-radius: 5px 5px 0px 0px;
  -webkit-border-radius: 5px 5px 0px 0px;
}
.skill-statistic-section .item-selection-bloc > .selection-bar-menu ul > li.selection-bar-item:last-child {
  border-radius: 0px 0px 5px 5px;
  -moz-border-radius: 0px 0px 5px 5px;
  -webkit-border-radius: 0px 0px 5px 5px;
}
.skill-statistic-section .item-selection-bloc > .selection-bar-menu ul > li.selection-bar-item {
  border-bottom: 1px solid white;
  border-radius: 0px;
}
.skill-statistic-section .item-selection-bloc .selection-bar-item {
  background-color: #848484;
  padding: 0px 10px;
  margin-left: 0px;
  margin-right: 25px;
  height: 50px;
  border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border: 1px solid #848484;
  /*-webkit-box-shadow: 3px 3px 20px 0px rgba(0, 5, 0, 0.5);
            -moz-box-shadow:    3px 3px 20px 0px rgba(0, 5, 0, 0.5);
            box-shadow: 3px 3px 20px 0px rgba(0, 5, 0, 0.5);*/
  font-size: 18px;
  color: white;
  line-height: 18px;
  cursor: pointer;
}
.skill-statistic-section .item-selection-bloc .selection-bar-item.inactive {
  font-style: italic;
  color: #b7b6b6;
  cursor: default;
}
.skill-statistic-section .item-selection-bloc .selection-bar-item > .skill-label {
  position: relative;
  padding: 0;
  font-weight: bold;
  height: 100%;
}
.skill-statistic-section .item-selection-bloc .selection-bar-item > .skill-label > div.valign-middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.skill-statistic-section .item-selection-bloc .selection-bar-item > .skill-label > div.valign-middle > span {
  font-weight: bold;
}
.skill-statistic-section .item-selection-bloc .selection-bar-item > .mastered-skill-value {
  position: relative;
  height: 100%;
  padding: 0;
}
.skill-statistic-section .item-selection-bloc .selection-bar-item > .mastered-skill-value > div.valign-middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.skill-statistic-section .item-selection-bloc .selection-bar-item > .mastered-skill-value > div.valign-middle > span {
  font-weight: bold;
}
.skill-statistic-section .item-selection-bloc .selection-bar-item > .acquired-skill-value {
  position: relative;
  height: 100%;
  padding: 0;
}
.skill-statistic-section .item-selection-bloc .selection-bar-item > .acquired-skill-value > div.valign-middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.skill-statistic-section .item-selection-bloc .selection-bar-item > .acquired-skill-value > div.valign-middle > span {
  font-weight: bold;
}
.skill-statistic-section .item-selection-bloc .selection-bar-item > .skill-select {
  position: relative;
  height: 100%;
}
.skill-statistic-section .item-selection-bloc .selection-bar-item > .skill-select > div.valign-middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.skill-statistic-section .item-selection-bloc .selection-bar-item > .skill-select > div.valign-middle > span {
  font-size: 50px;
}
.skill-statistic-section > .search-result {
  background-color: rgba(255, 255, 255, 0.75);
  margin: 0 auto;
  width: 1000px;
}
.skill-statistic-section > .search-result > ul#competencesTabs {
  width: 100%;
  background-color: white;
  border: 0;
}
.skill-statistic-section > .search-result > ul#competencesTabs > li {
  display: table-cell !important;
  width: 1%;
  border-bottom: 4px solid white;
  font-size: 17px;
  text-align: center;
  font-family: "Gotham Light", "Gotham Book", "Segoe UI", Verdana, Helvetica, Sans-Serif;
  font-weight: bold;
}
.skill-statistic-section > .search-result > ul#competencesTabs > li.active {
  border-bottom-color: #1cacc0;
}
.skill-statistic-section > .search-result > ul#competencesTabs > li.active > a {
  background-color: white;
  color: #4d4d4d;
  padding: 15px 15px;
}
.skill-statistic-section > .search-result .search-result-list {
  list-style-type: none;
  padding: 0;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic:last-child {
  padding-bottom: 40px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic {
  background-color: white;
  margin-bottom: 0px;
  padding: 30px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc {
  background-color: white;
  padding-left: 50px;
  padding-top: 10px;
  font-family: "Gotham Light";
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc > .grade-skill-bloc-title {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 25px;
  text-align: center;
  font-family: "Gotham Light";
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc > ul.grade-skill-list {
  list-style: none;
  padding: 0;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc > ul.grade-skill-list > li.grade-skill-item {
  padding: 5px;
  font-weight: bold;
  color: #585858;
  font-size: 13px;
  position: relative;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc > ul.grade-skill-list > li.grade-skill-item::before {
  content: "°";
  color: #1cacc0;
  padding-right: 10px;
  font-weight: normal;
  left: -10px;
  position: absolute;
  top: 7px;
  font-size: 15px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc > ul.grade-skill-list > li.grade-skill-item > span.grade-skill-value {
  padding-right: 2px;
  padding-top: 2px;
  height: 20px;
  width: 50px;
  float: right;
  color: #4d4d4d;
  text-align: right;
  border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc > ul.grade-skill-list > li.grade-skill-item > span.grade-skill-value > span.indice {
  font-size: 11px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc-bottom {
  padding-top: 50px;
  text-align: center;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc-bottom > span.grade-skill-label {
  color: #95989a;
  font-size: 14px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc-bottom > a.order-by-asc,
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc-bottom a.order-by-desc {
  padding-left: 30px;
  font-size: 15px;
  font-weight: bold;
  color: #4d4d4d;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc-bottom > a.order-by-asc.active,
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .grade-skill-bloc-bottom a.order-by-desc.active {
  color: #1cacc0;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .skill-labels {
  padding-top: 0px;
  padding-bottom: 20px;
  min-height: 110px;
  font-family: "Gotham Light";
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .skill-labels > .skill-title {
  font-size: 18px;
  font-weight: bold;
  color: #585858;
  padding-bottom: 5px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .skill-labels > .skill-short-description {
  font-size: 13px;
  font-weight: bold;
  color: #585858;
  padding-bottom: 5px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .skill-labels > .skill-long-description {
  color: #95989a;
  font-size: 13px;
  font-family: "Gotham Book";
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .skill-labels > .skill-top-bloc {
  width: 90px;
  height: 70px;
  margin: 5px;
  position: relative;
  border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border: 1px solid;
  font-family: "Gotham Book";
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .skill-labels > .skill-top-bloc > .skill-top-value {
  font-size: 26px;
  color: black;
  text-align: center;
  margin-top: 12px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .skill-labels > .skill-top-bloc > .skill-top-value > span.indice {
  font-size: 12px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .skill-labels > .skill-top-bloc > .skill-top-label {
  text-align: center;
  color: white;
  font-size: 13px;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc {
  font-size: 14px;
  text-align: center;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc span.statistic-label {
  color: #585858;
  font-weight: bold;
  font-family: "Gotham Light";
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc span.statistic-value {
  color: #1cacc0;
  font-weight: bold;
  font-size: 13px;
  white-space: nowrap;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc-job {
  font-size: 14px;
  text-align: left;
  line-height: 20px;
  margin-bottom: -25px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc-job span.statistic-label {
  color: #585858;
  font-weight: bold;
  font-family: "Gotham Light";
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc-job span.statistic-value {
  font-weight: bold;
  color: #1cacc0;
  font-size: 13px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc-job > .skill-top-bloc-job {
  width: 90px;
  height: 70px;
  margin: 5px;
  margin-right: 30px;
  position: relative;
  border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  font-family: "Gotham Book";
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc-job > .skill-top-bloc-job > .skill-top-value {
  font-size: 30px;
  color: black;
  text-align: center;
  margin-top: 15px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc-job > .skill-top-bloc-job > .skill-top-value > span.indice {
  font-size: 20px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .up-statistic > .up-statistic-bloc-job > .skill-top-bloc-job > .skill-top-label {
  text-align: center;
  color: white;
  font-size: 13px;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .bottom-ntile > .bottom-ntile-bloc {
  font-size: 14px;
  text-align: center;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .bottom-ntile > .bottom-ntile-bloc > span.ntile-label {
  font-family: "Gotham Light";
  color: #585858;
  font-weight: bold;
  font-size: 13px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .bottom-ntile > .bottom-ntile-bloc > span.ntile-value {
  color: #1cacc0;
  font-weight: bold;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .bottom-statistic > .bottom-statistic-bloc {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  color: #1cacc0;
  /*> span.statistic-label{
                            color : #585858;
                        }
                        > span.statistic-value{
                            color : #1CACC0;
                        }*/

}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .horizontal-bar {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 30px;
  height: 50px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .horizontal-bar > .horizontal-bar-element {
  height: 50px;
  display: block;
  float: left;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .horizontal-bar > .horizontal-bar-element > span.horizontal-bar-element-value {
  width: 100%;
  height: 30px;
  display: inline-block;
  text-align: center;
  color: white;
  font-weight: bold;
  line-height: 30px;
  border-right: 1px solid white !important;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .horizontal-bar > .horizontal-bar-element > span.horizontal-bar-element-value > span.indice {
  font-size: 11px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .horizontal-bar > .horizontal-bar-element > span.horizontal-bar-element-label {
  width: 100%;
  height: 20px;
  font-size: 11px;
  font-weight: bold;
  display: inline-block;
  vertical-align: text-top;
  text-align: center;
  margin-top: -1px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .vertical-bar {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 30px;
  height: 200px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .vertical-bar > .vertical-bar-element {
  width: 8.09%;
  margin-right: 1%;
  display: block;
  height: 175px;
  float: left;
  position: relative;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .vertical-bar > .vertical-bar-element > .vertical-bar-value {
  text-align: center;
  color: white;
  font-weight: bold;
  line-height: 30px;
  position: absolute;
  bottom: 20px;
  min-height: 2px;
  max-height: 150px;
  width: 100%;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .vertical-bar > .vertical-bar-element > .vertical-bar-value > span.target {
  position: absolute;
  color: #1cacc0;
  font-size: 11px;
  bottom: 3px;
  left: 0;
  right: 0;
  margin: 0 auto;
  line-height: 12px;
  width: 55px;
  border-radius: 8px 8px 8px 8px;
  -moz-border-radius: 8px 8px 8px 8px;
  -webkit-border-radius: 8px 8px 8px 8px;
  background-color: #eeeeee;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .vertical-bar > .vertical-bar-element > .vertical-bar-top-label {
  width: 100%;
  height: 20px;
  font-size: 12px;
  font-weight: bold;
  vertical-align: text-top;
  text-align: center;
  position: absolute;
  font-family: "Gotham Light";
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .vertical-bar > .vertical-bar-element > .vertical-bar-top-label > span.indice {
  font-size: 10px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .vertical-bar > .vertical-bar-element > .vertical-bar-bottom-label {
  position: absolute;
  width: 98%;
  height: 20px;
  font-size: 11px;
  font-weight: bold;
  vertical-align: text-top;
  text-align: center;
  bottom: -2px;
  border-top: 3px solid #95989a;
  left: 1%;
  color: #95989a;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .acquired-skill-label > ul {
  list-style: none;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .acquired-skill-label > ul > li {
  /*width:100px;*/
  line-height: 25px;
  margin-bottom: 5px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .acquired-skill-label > ul > li span.gap {
  display: inline-block;
  height: 25px;
  width: 25px;
  text-align: center;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .acquired-skill-label > ul > li span.indice {
  font-size: 9px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .acquired-skill-label#acquired-skill-left-label span.gap-percent {
  padding-left: 10px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .acquired-skill-label#acquired-skill-right-label li {
  text-align: right;
  padding-right: 30px;
}
.skill-statistic-section > .search-result .search-result-list > li.result-skill-statistic .acquired-skill-label#acquired-skill-right-label span.gap {
  margin-left: 10px;
}
.home-section.infos-collaborateur {
  overflow: hidden;
  position: relative;
  background-color: #e6e6e6;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
}
.home-section.infos-collaborateur > .ADApp-tabs {
  margin-top: 0px;
}
.home-section.infos-collaborateur > .ADApp-tabs > .nav-contents {
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
}
.home-section.infos-collaborateur > .ADApp-tabs > .nav-contents > li {
  padding-left: 50px;
}
.home-section.infos-collaborateur > .ADApp-tabs .nav.nav-tabs > li.tab.active > a {
  background-color: white;
  color: #1fc1d8;
}
.home-section.infos-collaborateur > .ADApp-tabs > .tab-content {
  padding-top: 10px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  background-color: white;
  margin: 0px;
}
.home-section.infos-collaborateur > .ADApp-tabs > .tab-content #proximity-job-box {
  width: 340px;
  box-sizing: border-box;
  padding: 11px 15px;
  position: absolute;
  border: 1px solid #1cacc0;
  display: block;
  right: 0;
}
.home-section.infos-collaborateur > .ADApp-tabs > .tab-content #proximity-job-box:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  background-color: white;
  z-index: -1;
}
.home-section.infos-collaborateur > .ADApp-tabs > .tab-content #proximity-job-box > a > .picto {
  /*min-height:34px;*/
  display: inline-block;
}
.home-section.infos-collaborateur > .ADApp-tabs > .tab-content #proximity-job-box > a > span.job-proximity-button-text {
  display: inline-block;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
}
.home-section.infos-collaborateur > .ADApp-tabs > .tab-content #proximity-job-box #proximity-job-modal .modal-icon {
  position: absolute;
  top: 33px;
  display: inline-block;
  font-size: 30px;
  color: #1cacc0;
}
.home-section.infos-collaborateur > .ADApp-tabs > .tab-content #proximity-job-box #proximity-job-modal .modal-header {
  border: 0;
  min-height: 0;
  font-size: 16px;
}
.home-section.infos-collaborateur > .ADApp-tabs > .tab-content #proximity-job-box #proximity-job-modal .content {
  display: inline-block;
  padding-left: 30px;
  font-size: 11px;
}
.home-section.infos-collaborateur .info-container {
  float: left;
}
.home-section.infos-collaborateur .box-disabled {
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.home-section.infos-collaborateur .box-disabled .title {
  padding-top: 40px;
  line-height: 60px;
  background-color: white;
  font-size: 25px;
  text-align: center;
}
.home-section.infos-collaborateur .box-disabled .subtitle {
  font-size: 23px;
  color: #949494;
  border-bottom: 1px solid #1cacc0;
  padding-bottom: 4px;
  margin-bottom: 16px;
}
.home-section.infos-collaborateur .box-disabled .container {
  padding: 20px;
  width: 100%;
}
.home-section.infos-collaborateur .box-disabled ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.home-section.infos-collaborateur .box-disabled ul li {
  margin-bottom: 18px;
}
.home-section.infos-collaborateur .box-event h2 {
  margin-bottom: 50px;
}
.home-section.infos-collaborateur .box-cv {
  margin-left: 25px;
  width: 345px;
  min-height: 200px;
  border: 0px solid green;
  background-color: white;
}
.home-section.infos-collaborateur .box-skill {
  margin-left: 25px;
  margin-top: 25px;
  width: 345px;
  min-height: 200px;
  background-color: white;
}
.home-section.infos-collaborateur .box-skill .item {
  padding: 0px;
}
.home-section.infos-collaborateur .box-skill .item label.title {
  font-size: 17px;
  padding-top: 0;
  line-height: 25px;
  text-align: left;
}
.home-section.infos-collaborateur .box-skill .item label.input {
  width: 50px;
  height: 18px;
}
.home-section.infos-collaborateur .box-skill ul.skill-metier li {
  background-image: url('../images/puce.png');
  background-repeat: no-repeat;
  background-position: 0px 3px;
  padding-left: 20px;
}
.event-creation-list {
  text-align: left;
  border: 1px solid #1cacc0;
  margin-top: 12px;
  padding: 20px;
}
.event.editing > .eventcontainer {
  text-align: left;
  border: 1px solid #1cacc0;
  margin-top: 12px;
  padding: 14px 40px;
  margin-left: 94px;
}
.event.editing > .eventcontainer.event-add-form {
  padding-left: 20px;
  margin-left: 0;
}
.event-children .event.editing > .eventcontainer {
  border: 0;
  margin-left: 0;
  padding: 0;
}
.event.editing .btn-close-event,
.event-creation-list .btn-close-event {
  margin-left: 10px;
  background-color: #652d90;
  color: white;
}
.event.editing .btn-close-event:hover,
.event-creation-list .btn-close-event:hover {
  background-color: #925cbb !important;
}
.event.save-animation {
  -webkit-transition: background-color 0.6s linear, padding 0.1s linear;
  -moz-transition: background-color 0.6s linear, padding 0.1s linear;
  -o-transition: background-color 0.6s linear, padding 0.1s linear;
  -ms-transition: background-color 0.6s linear, padding 0.1s linear;
  transition: background-color 0.6s linear, padding 0.1s linear;
}
.event .childschedule {
  font-size: 18px;
  border-bottom: 1px solid #95989a;
  padding-bottom: 4px;
  margin-bottom: 18px;
}
.event-children .event.editing {
  position: relative;
  margin-bottom: 20px;
}
.event-children .event.editing:before {
  border: 1px solid #1cacc0;
  position: absolute;
  content: " ";
  left: -18px;
  right: -18px;
  top: -18px;
  bottom: -18px;
}
.event-editor-buttons {
  display: none;
}
.event.editing > .eventcontainer > .description > .event-description .event-editor-buttons {
  display: block;
}
.event.editing .ico-edit,
.event.editing .ico-delete {
  visibility: hidden;
}
.event-form form,
.event-form .form {
  width: 100%;
  margin: 0 auto;
}
.event-form form .input-group,
.event-form .form .input-group,
.event-form form input[type=text],
.event-form .form input[type=text],
.event-form form select,
.event-form .form select,
.event-form form textarea,
.event-form .form textarea {
  width: 100%;
}
.event-form form .input-group,
.event-form .form .input-group {
  margin-bottom: 20px;
}
.event-form form #eventDateStart,
.event-form .form #eventDateStart,
.event-form form #eventDateEnd,
.event-form .form #eventDateEnd {
  width: 180px;
}
.event-form form .datatype-datetime input,
.event-form .form .datatype-datetime input,
.event-form form .datefield input,
.event-form .form .datefield input {
  max-width: 250px;
}
.home-section.actualite .bxslider .slide .title > h1 {
  margin: 0!important;
  padding: 0!important;
  font-size: 38px!important;
  color: #1cacc0 !important;
}
.no-children-event-container {
  min-height: 200px;
}
.children-event-container.collapsed > .event-contents .schedule:before {
  content: "\e258";
}
.children-event-container > .event-contents .schedule {
  cursor: pointer;
  padding-left: 26px;
  position: relative;
}
.children-event-container > .event-contents .schedule:before {
  left: 0;
  top: 17px;
  position: absolute;
  font-family: 'Glyphicons Halflings';
  content: "\e259";
  font-size: 16px;
}
.children-event-container > .periode-container .datecontainer,
.children-event-container > .periode-container .datelink {
  background-color: #652d90 !important;
  color: white !important;
}
.children-event-container > .periode-container .datecontainer .date,
.children-event-container > .periode-container .datelink .date {
  color: white !important;
}
.children-event-container > .event-children {
  /*min-height:200px; */
  padding-left: 55px;
  padding-bottom: 140px;
  clear: both;
}
.children-event-container > .event-children .event-contents {
  padding-left: 75px;
}
.children-event-container > .event-children .periode-container,
.children-event-container > .event-children .single-date-container {
  left: 0;
}
.children-event-container > .event-children .periode-container .datelink,
.children-event-container > .event-children .single-date-container .datelink {
  left: 50%;
  margin-left: -2px;
  /* position left finale: 50% - (width/2) */

}
.children-event-container > .event-children .periode-container .datecontainer,
.children-event-container > .event-children .single-date-container .datecontainer {
  width: 65px;
  height: 55px;
}
.children-event-container > .event-children .periode-container .datecontainer .day,
.children-event-container > .event-children .single-date-container .datecontainer .day {
  display: none;
}
.children-event-container > .event-children .periode-container .datecontainer .date,
.children-event-container > .event-children .single-date-container .datecontainer .date {
  font-size: 25px;
  line-height: 47px;
}
.children-event-container > .event-children .periode-container .datecontainer .no-date,
.children-event-container > .event-children .single-date-container .datecontainer .no-date {
  font-size: 14px;
  line-height: 15px;
  padding-top: 10px;
}
.children-event-container.single-date > .event-children {
  padding-bottom: 25px;
}
.event > .event-form {
  margin-left: 93px !important;
}
.event > .event-children .event-form {
  margin-left: 73px !important;
}
.event-description .item .event-label {
  font-weight: bold;
}
.event-description .event-property-label {
  test-align: left;
  line-height: 18px;
}
.event-description .data-type-multilinetext .event-property-label,
.event-description .data-type-multilinetext .event-property-value {
  display: block;
  text-align: left;
}
.event-description .data-type-multilinetext .event-property-value {
  background-color: #efefef;
  padding: 16px 10px;
  color: #4d4d4d;
  font-weight: normal;
}
.event-description .data-type-multilinetext .event-property-value:before {
  display: none;
}
.home-section.appreciation-demande > .contents {
  max-width: 80%;
  margin: 0 auto;
  margin-top: 64px;
  margin-bottom: 30px;
}
.home-section.appreciation-demande .input-group {
  width: 100%;
}
.home-section.appreciation-demande textarea {
  width: 100%;
  height: 132px;
  border: 1px solid #1cacc0;
}
.home-section.appreciation-demande input[type=text] {
  width: 100%;
  border: 1px solid #1cacc0;
}
.home-section.appreciation-demande label,
.home-section.appreciation-demande .title {
  font-size: 19px;
  font-weight: normal;
  color: #717171;
}
.home-section.appreciation-demande .competence input[type=radio]:checked + label {
  background-color: #1cacc0;
}
.home-section.appreciation-demande .competence label {
  width: 52px;
  height: 20px;
  color: #1cacc0;
  border: 1px solid #1cacc0;
}
.home-section.situation .nav-tabs,
section.skills .nav-tabs {
  margin-top: 70px;
  text-align: left;
}
.home-section.situation .nav-tabs > li,
section.skills .nav-tabs > li {
  float: none;
  display: inline-block;
  position: relative;
}
.home-section.situation .nav-tabs > li > a,
section.skills .nav-tabs > li > a,
.home-section.situation .nav-tabs > li > a:hover,
section.skills .nav-tabs > li > a:hover {
  border-radius: 0;
  background-color: #8a8a8a;
  padding: 4px 20px;
  color: white;
  font-size: 18px;
  border: 0 !important;
}
.home-section.situation .nav-tabs > li.hidden,
section.skills .nav-tabs > li.hidden {
  display: none;
}
.home-section.situation .nav-tabs > li.metier,
section.skills .nav-tabs > li.metier {
  float: right;
  white-space: nowrap;
  line-height: 32px;
  color: #949494;
  font-size: 18px;
}
.home-section.situation .nav-tabs > li.active > a,
section.skills .nav-tabs > li.active > a {
  background-color: #949494;
  color: white;
}
.home-section.situation .tab-pane,
section.skills .tab-pane {
  border: 1px solid #949494;
}
.home-section.situation .tab-pane .widget,
section.skills .tab-pane .widget {
  /*
			width: 20px !important;
			color:#8a8a8a;
			font-size:20px;
			line-height:20px;
			*/
  display: none;
}
section.job-detail > h1 {
  font-weight: bold;
  margin-bottom: 8px !important;
  text-align: center;
  color: #1cacc0 !important;
}
section.job-detail > h1.large {
  font-size: 18px;
}
section.job-detail > h1 > span.fa {
  color: #1cacc0;
}
section.job-detail > .box > h2 {
  height: 30px;
  font-weight: bold;
  font-size: 20px;
  color: #717171;
  vertical-align: bottom;
}
section.job-detail > .box > h2 > span {
  width: 30px;
  height: 30px;
  background-size: 30px 30px;
  margin-right: 10px;
  position: relative;
  margin-top: -5px;
}
section.job-detail > .box > h2 > span.book {
  background-image: url('../../css/images/picto-livre.png');
}
section.job-detail > .box > h2 > span.target {
  background-image: url('../../css/images/metiers.png');
}
section.job-detail > .box > h2 > span.key {
  background-image: url('../../css/images/modifier.png');
}
.column-list-container {
  background-color: white;
}
.column-list-container .containerobj {
  height: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
  background-color: white;
  border: 0;
  /** The arrow ! */

}
.column-list-container .containerobj > div {
  padding-left: 20px;
}
.column-list-container .containerobj .feature {
  display: none !important;
}
.column-list-container .containerobj a {
  color: #8a8a8a;
  line-height: 26px;
  text-decoration: none;
  display: block;
  padding: 5px 25px 5px 10px;
  position: relative;
}
.column-list-container .containerobj a:hover span {
  color: #1cacc0;
}
.column-list-container .containerobj a:before,
.column-list-container .containerobj a:after {
  border-right: 2px solid;
  content: '';
  display: block;
  height: 8px;
  margin-top: -6px;
  position: absolute;
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  left: 5px;
  top: 50%;
  width: 0;
}
.column-list-container .containerobj a:after {
  margin-top: -1px;
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.column-list-container .containerobj a:hover,
.column-list-container .containerobj a:focus,
.column-list-container .containerobj a:hover:before,
.column-list-container .containerobj a:hover:after,
.column-list-container .containerobj a:focus:before,
.column-list-container .containerobj a:focus:after {
  color: #1cacc0;
}
.column-list-container.noarrow .containerobj a:before {
  display: none;
}
.column-list-container.noarrow .containerobj a:after {
  display: none;
}
.column-list-container .containerobj .active,
.column-list-container .containerobj .inpath {
  background-color: transparent;
}
.column-list-container .containerobj .active .label,
.column-list-container .containerobj .inpath .label,
.column-list-container .containerobj .active .widget,
.column-list-container .containerobj .inpath .widget {
  color: #1cacc0;
  text-decoration: none;
  border: 0;
}
.column-list-container .label {
  color: #717171;
  font-size: 13px;
  font-weight: normal;
}
.event {
  clear: both;
  margin-top: 40px;
  position: relative;
  /*Event en Abandon*/

  /*Event en Validé */

}
.event .datecontainer {
  background-color: #1cacc0;
  display: inline-block;
  width: 94px;
  height: 94px;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  float: left;
}
.event .datecontainer .no-date {
  display: block;
  padding-top: 20px;
  color: white;
  font-size: 20px;
  line-height: 22px;
}
.event .datecontainer .date {
  color: #393939;
  font-size: 50px;
  line-height: 94px;
}
.event .datecontainer .day,
.event .datecontainer .month {
  position: absolute;
  color: white;
}
.event .datecontainer .day {
  top: 2px;
  left: 0;
  right: 0;
  text-align: center;
}
.event .datecontainer .month {
  bottom: 3px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
}
.event .periode-container {
  position: absolute;
  top: 0;
  bottom: 0;
  min-height: 210px;
}
.event .periode-container .datelink {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #1cacc0;
  z-index: 1;
  left: 0;
}
.event .periode-container .datecontainer {
  float: none;
  display: block;
  z-index: 2;
}
.event .periode-container .datecontainer:last-child {
  position: absolute;
  bottom: 0;
}
.event.closed .datecontainer {
  background-color: #949494;
}
.event.closed .datecontainer .date {
  color: #4d4d4d !important;
}
.event.closed .periode-container .date {
  color: white !important;
}
.event.closed .periode-container .datelink {
  background-color: #949494;
}
.event.older .datecontainer {
  background-color: #949494 !important;
}
.event.older .datecontainer .date {
  color: #4d4d4d !important;
}
.event.older .periode-container .datelink {
  background-color: #949494 !important;
}
.event .ico-delete {
  position: absolute;
  /*display:none;*/
  opacity: 1;
  right: 20px;
  margin-top: 10px;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.event .ico-edit {
  position: absolute;
  /*display:none;*/
  opacity: 1;
  right: 0;
  margin-top: 0;
  background-color: #1cacc0;
  border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.event .ico-edit::before {
  content: '\f040';
  font-family: FontAwesome;
  color: white;
  padding-left: 5px;
  position: absolute;
  top: 2px;
  /*padding-right: 10px;

        font-weight: normal;
        left: -10px;
        position: absolute;
        top: 7px;*/
  font-size: 28px;
}
.event .ico-add {
  position: absolute;
  /*display:none;*/
  opacity: 1;
  right: 40px;
  margin-top: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.event .event-editor-buttons {
  margin-bottom: 30px;
  margin-top: 38px;
  /*margin-right: 88px !important;*/

}
.event .event-editor-contents {
  margin-right: 90px;
  margin-bottom: 30px;
}
.event .schedule {
  min-height: 40px;
  overflow-y: hidden;
  color: #4d4d4d;
  font-size: 26px;
  border-bottom: 1px solid #a2a2a2;
  margin-bottom: 10px;
  padding-bottom: 4px;
}
.event .eventcontainer,
.event .event-contents {
  padding-left: 130px;
  width: auto;
}
.event .eventcontainer .description,
.event .event-contents .description {
  color: #393939;
  min-height: 30px;
}
.event.inverse .datecontainer {
  float: right;
}
.event.inverse .eventcontainer {
  padding-left: 0;
  padding-right: 120px;
  text-align: center;
}
.event.aborted > .periode-container .datecontainer,
.event.aborted > .periode-container .datelink,
.event.aborted > .single-date-container .datecontainer {
  background-color: #949494 !important;
}
.event.aborted > .periode-container .datecontainer .date,
.event.aborted > .periode-container .datelink .date,
.event.aborted > .single-date-container .datecontainer .date {
  color: #4d4d4d !important;
}
.event.validated > .periode-container .datecontainer,
.event.validated > .periode-container .datelink,
.event.validated > .single-date-container .datecontainer {
  background-color: #3ab54b !important;
}
.event-children .eventcontainer {
  padding-left: 0;
}
/** Pour la liste des collaborateur en vue conseiller */

.profil-header .event .schedule,
.result-collaborateur .event .schedule {
  padding-top: 19px;
  font-size: 15px;
  color: #949494;
  /**white-space: nowrap;*/

}
.event-creation-editor-contents .schedule {
  padding-top: 10px;
  min-height: 48px;
  overflow-y: hidden;
  color: #4d4d4d;
  font-size: 22px;
  border-bottom: 1px solid #a2a2a2;
  margin-bottom: 10px;
  padding-bottom: 4px;
}
.event-children .event-child {
  position: relative;
  display: block;
  margin-bottom: 0px;
  margin-top: 30px;
  padding-bottom: 10px;
}
.event-children .event-child .schedule {
  margin-bottom: 0px;
  border-color: #949494;
  font-size: 18px;
  margin-left: 10px;
}
.event-children .event-child h4 {
  font-size: 13px;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  color: #4d4d4d;
  padding-bottom: 5px;
  padding-left: 0px;
}
.event-children .event-child .content {
  box-sizing: border-box;
  display: table;
  background-color: #dddddd;
  padding: 0px;
  margin: 0px;
  margin-left: 0px;
  width: 100%;
}
.event-children .event-child .content .ADApp-tabs ul.nav.nav-tabs {
  top: -30px;
}
.event-children .event-child .content .ADApp-tabs ul.nav.nav-tabs > li > a {
  padding: 5px 15px;
}
.event-children .event-child .content .col-left,
.event-children .event-child .content .col-full {
  display: table-cell;
  margin: 0px;
  padding: 10px;
  height: 100%;
  width: 70%;
  box-sizing: border-box;
  vertical-align: top;
}
.event-children .event-child .content .col-left.detail,
.event-children .event-child .content .col-full.detail {
  background-color: white;
  box-sizing: border-box;
  height: 100%;
  font-size: 13px;
}
.event-children .event-child .content .col-left.detail .row,
.event-children .event-child .content .col-full.detail .row {
  padding: 0px;
  padding-bottom: 3px;
  padding-top: 3px;
  margin: 0px;
}
.event-children .event-child .content .col-left.detail .row > .field,
.event-children .event-child .content .col-full.detail .row > .field {
  padding: 0px;
  color: #4d4d4d;
  font-weight: normal;
}
.event-children .event-child .content .col-left.detail .row > .field:after,
.event-children .event-child .content .col-full.detail .row > .field:after {
  content: ' : ';
}
.event-children .event-child .content .col-left.detail .row > .value,
.event-children .event-child .content .col-full.detail .row > .value {
  padding: 0px;
  padding-left: 10px;
  font-weight: bold;
}
.event-children .event-child .content .col-left.detail .row > .value.amount:after,
.event-children .event-child .content .col-full.detail .row > .value.amount:after {
  content: ' €';
}
.event-children .event-child .content .col-left.detail .row > .value.comment,
.event-children .event-child .content .col-full.detail .row > .value.comment {
  font-weight: normal;
  color: #4d4d4d;
}
.event-children .event-child .content .col-left.formulaire,
.event-children .event-child .content .col-full.formulaire {
  background-color: white;
}
.event-children .event-child .content .col-full {
  width: 100%;
  padding-right: 0px;
}
.event-children .event-child .content .col-right {
  display: table-cell;
  margin: 0px;
  padding: 10px;
  margin-bottom: 20px;
  height: 100%;
  width: 30%;
  box-sizing: border-box;
  vertical-align: top;
}
.event-children .event-child .content .col-right.description {
  background-color: #dddddd;
  font-size: 12px;
  height: 100%;
  padding: 15px;
}
.event-children .event-child a.ico-edit {
  display: block;
  opacity: 1;
  margin-top: 0px;
}
.event-children .event-child a.ico-add {
  display: block;
  opacity: 1;
  margin-top: 0px;
}
.event-children .event-child a.ico-delete {
  display: block;
  opacity: 1;
  margin-top: 0px;
}
.event-children .event-child.active .schedule {
  color: #1cacc0;
  font-weight: normal;
}
.event-children .event-child.edition {
  border-left: 1px solid #1cacc0;
  border-bottom: 1px solid #1cacc0;
  margin-bottom: 70px;
}
.event-children .event-child.edition .schedule {
  color: #1cacc0;
  font-weight: bold !important;
}
.event-children .event-child.edition a.ico-edit {
  display: none;
}
.event-children .event-child.edition a.ico-delete {
  display: none;
}
.event-children .event-child.closed .schedule {
  color: #3ab54b;
}
.event-children .event-child .footer {
  display: none;
  height: 40px;
  position: absolute;
  bottom: -50px;
  width: 100%;
  padding: 0px;
}
.event-children.formations .event-child .content {
  background-color: white;
}
.event-children.formations .event-child .formulaire {
  padding-right: 0px;
}
.event-children.formations .event-child .formulaire .formulaire-body {
  padding-right: 0px;
}
.form-box {
  border: 2px solid #1cacc0;
  border-top: 0px;
  border-right: 0px;
  padding: 20px;
  padding-right: 0px;
  margin-top: 0px;
  box-sizing: border-box;
  width: 100%;
  background-color: white;
}
.formulaire {
  box-sizing: border-box;
}
.formulaire > .formulaire-body {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  margin-top: 0px;
}
.formulaire br {
  clear: both;
}
.formulaire .form-group {
  margin-left: 0px !important;
  margin-right: 0px !important;
  margin-bottom: 5px !important;
  margin-top: 5px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  /*
        .col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11, .col-md-12 {
            padding-left:0px !important;
            padding-right:0px !important;
        }*/

}
.formulaire label {
  padding-left: 0px !important;
  font-weight: normal;
  text-align: left !important;
}
.formulaire input[type='text'],
.formulaire input[type='datetime'],
.formulaire input[type='numeric'],
.formulaire input[type='number'],
.formulaire input[type='password'],
.formulaire select,
.formulaire textarea {
  background-color: whitesmoke !important;
  border-radius: 0px !important;
  border: 1px solid #dfdfdf !important;
  margin: 0px !important;
  padding: 5px !important;
  box-sizing: border-box !important;
  height: 30px !important;
  box-shadow: none;
}
.formulaire input[type='text']:focus,
.formulaire input[type='datetime']:focus,
.formulaire input[type='numeric']:focus,
.formulaire input[type='number']:focus,
.formulaire input[type='password']:focus,
.formulaire select:focus,
.formulaire textarea:focus {
  background-color: white !important;
}
.formulaire textarea {
  min-height: 120px;
  height: 120px;
}
.formulaire .datefield:before,
.formulaire .datatype-datetime:before {
  font-family: 'Glyphicons Halflings';
  content: '\e109';
  position: absolute;
  top: 0px;
  left: 15px;
  height: 100%;
  max-height: 30px;
  padding: 7px;
  display: inline-block;
  border: 1px solid #d0d0d0;
  background-color: white;
}
.formulaire input[type='datetime'] {
  width: 125px;
  padding-left: 35px !important;
}
/* Styles for basic forms
-----------------------------------------------------------*/

fieldset {
  border: 1px solid #dddddd;
  padding: 0 1.4em 1.4em 1.4em;
  margin: 0 0 1.5em 0;
}
legend {
  font-size: 1.2em;
  font-weight: bold;
}
textarea {
  min-height: 75px;
}
.editor-label {
  margin: 1em 0 0 0;
}
.editor-field {
  margin: 0.5em 0 0 0;
}
/* Styles for validation helpers
-----------------------------------------------------------*/

.field-validation-error {
  color: red;
}
.field-validation-valid {
  display: none;
}
.field-invalid-input .field-validation-valid {
  display: block;
}
.formulaire .field-invalid-input input,
.formulaire .field-invalid-input select,
.formulaire .field-invalid-input textarea {
  border: 1px solid #a94442 !important;
}
.formulaire .field-invalid-input .datatype-datetime:before {
  border-top: 1px solid #a94442 !important;
  border-left: 1px solid #a94442 !important;
  border-bottom: 1px solid #a94442 !important;
}
.input-validation-error {
  border: 1px solid red;
  background-color: #ffeeee;
}
.validation-summary-errors {
  font-weight: bold;
  color: red;
}
.validation-summary-valid {
  display: none;
}
/**
 *
 * RADA CHART
 *
 */

.radar-chart .area {
  fill-opacity: 0.7;
}
.radar-chart.focus .area {
  fill-opacity: 0.3;
}
.radar-chart.focus .area.focused {
  fill-opacity: 0.9;
}
.animated {
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.radar-chart .axis .legend {
  fill: #969696;
  font-family: Arial, sans-serif;
  font-size: 13px !important;
}
/*.radar-chart .axis .legend:hover {
	font-size: 14px !important;
}

.radar-chart .axis .legend.selected {
	font-weight:bold;
	font-size: 14px !important;
}*/

.radar-chart .axis .legend:before {
  content: " ";
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid red;
}
.radar.small .radar-chart .axis .legend {
  font-size: 11px !important;
}
.radar-column {
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.skill-type-1 {
  color: #764c8c !important;
}
.skill-type-2 {
  color: #479647 !important;
}
.skill-type-3 {
  color: #437ca9 !important;
}
.skill-type-4 {
  color: #4d4d4d !important;
}
.legend.skill-type-1 {
  fill: #764c8c !important;
}
.legend.skill-type-2 {
  fill: #479647 !important;
}
.legend.skill-type-3 {
  fill: #437ca9 !important;
}
.legend.skill-type-4 {
  fill: #4d4d4d !important;
}
/*zone cible*/

/*
.area.cible{
  fill: #B1EAF3;
  stroke: none;
}
*/

/*zone résultat du collaborateur*/

/*
.area.resultat{
  fill: transparent;
  stroke: #76CEF7;
  stroke-width : 1px;
}*/

/*tooltip*/

.radar-chart .tooltip {
  fill: #111111;
}
#competence-principales,
.competence-principales {
  border: 0px solid red;
}
.form-2 {
  /* Size and position */
  width: 340px;
  margin: 60px auto 30px;
  padding: 15px;
  position: relative;
  /* Styles */
  background: whitesmoke;
  border-radius: 4px;
  color: #7e7975;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 1px 5px rgba(0, 0, 0, 0.2), 0 0 0 12px rgba(255, 255, 255, 0.4);
}
.form-2 h1 {
  font-size: 15px;
  font-weight: bold;
  color: #bdb5aa;
  padding-bottom: 8px;
  border-bottom: 1px solid #ebe6e2;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
.form-2 h1 .log-in,
.form-2 h1 .sign-up {
  display: inline-block;
  text-transform: uppercase;
}
.form-2 h1 .log-in {
  color: #6c6763;
  padding-right: 2px;
}
.form-2 h1 .sign-up {
  color: #ffb347;
  padding-left: 2px;
}
.form-2 .float {
  width: 50%;
  float: left;
  padding-top: 15px;
  border-top: 1px solid white;
}
.form-2 .float:first-of-type {
  padding-right: 5px;
}
.form-2 .float:last-of-type {
  padding-left: 5px;
}
.form-2 label {
  display: block;
  padding: 0 0 5px 2px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 400;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: 11px;
}
.form-2 label i {
  margin-right: 5px;
  /* Gap between icon and text */
  display: inline-block;
  width: 10px;
}
.form-2 input[type=text],
.form-2 input[type=password] {
  font-family: "gothambook", "Segoe UI", Verdana, Helvetica, Sans-Serif;
  font-size: 13px;
  font-weight: 400;
  display: block;
  width: 100%;
  padding: 5px;
  margin-bottom: 5px;
  border: 3px solid #ebe6e2;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.form-2 input[type=text]:hover,
.form-2 input[type=password]:hover {
  border-color: #cccccc;
}
.form-2 label:hover ~ input {
  border-color: #cccccc;
}
.form-2 input[type=text]:focus,
.form-2 input[type=password]:focus {
  border-color: #bbbbbb;
  outline: none;
  /* Remove Chrome's outline */

}
.form-2 input[type=submit],
.form-2 .log-twitter {
  /* Size and position */
  width: 49%;
  height: 38px;
  float: left;
  position: relative;
  /* Styles */
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  cursor: pointer;
  /* Font styles */
  font-family: "gothambook", "Segoe UI", Verdana, Helvetica, Sans-Serif;
  font-size: 14px;
  line-height: 38px;
  /* Same as height */
  text-align: center;
  font-weight: bold;
}
.form-2 input[type=submit] {
  margin-left: 1%;
  background: #fbd568;
  /* Fallback */
  background: -moz-linear-gradient(#fbd568, #ffb347);
  background: -ms-linear-gradient(#fbd568, #ffb347);
  background: -o-linear-gradient(#fbd568, #ffb347);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(#fbd568), to(#ffb347));
  background: -webkit-linear-gradient(#fbd568, #ffb347);
  background: linear-gradient(#fbd568, #ffb347);
  border: 1px solid #f4ab4c;
  color: #996319;
  text-shadow: 0 1px rgba(255, 255, 255, 0.3);
}
.form-2 .log-twitter {
  margin-right: 1%;
  background: #34a5cf;
  /* Fallback */
  background: -moz-linear-gradient(#34a5cf, #2a8ac4);
  background: -ms-linear-gradient(#34a5cf, #2a8ac4);
  background: -o-linear-gradient(#34a5cf, #2a8ac4);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(#34a5cf), to(#2a8ac4));
  background: -webkit-linear-gradient(#34a5cf, #2a8ac4);
  background: linear-gradient(#34a5cf, #2a8ac4);
  border: 1px solid #2b8bc7;
  color: white;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
.form-2 input[type=submit]:hover,
.form-2 .log-twitter:hover {
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), inset 0 20px 40px rgba(255, 255, 255, 0.15);
}
.form-2 input[type=submit]:active,
.form-2 .log-twitter:active {
  top: 1px;
}
/* Fallback fro broswers that don't support box shadows */

.no-boxshadow .form-2 input[type=submit]:hover {
  background: #ffb347;
}
.no-boxshadow .form-2 .log-twitter:hover {
  background: #2a8ac4;
}
.form-2 p:last-of-type {
  clear: both;
}
.form-2 .opt {
  text-align: right;
  margin-right: 3px;
}
.form-2 label[for=showPassword] {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 400;
  text-transform: capitalize;
}
.form-2 input[type=checkbox] {
  vertical-align: middle;
  margin: -1px 5px 0 1px;
}
.legend {
  z-index: 10000;
  left: 30px;
  right: 0px;
  min-height: 120px;
  margin-top: 20px;
  position: absolute;
  max-width: 900px;
  font-size: 11px !important;
  padding: 12px;
  /*visibility:hidden;*/
  display: none;
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  background-color: white;
  /*opacity: 0;*/
  /*
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
	*/
  -webkit-box-shadow: 4px 4px 30px 0px rgba(0, 7, 0, 0.75);
  -moz-box-shadow: 4px 4px 30px 0px rgba(0, 7, 0, 0.75);
  box-shadow: 4px 4px 30px 0px rgba(0, 7, 0, 0.75);
}
.legend table td {
  width: 20%;
}
.legend table td strong {
  display: block;
  margin-bottom: 20px;
}
.legend table td:not(:first-child) {
  padding-left: 16px;
}
.radar-chart .legend {
  display: block;
}
.typeahead,
.tt-query,
.tt-hint {
  height: 30px;
  padding: 8px 12px;
  font-size: 24px;
  line-height: 30px;
  border: 2px solid #cccccc;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  outline: none;
}
.typeahead {
  background-color: white;
}
.twitter-typeahead {
  display: table-cell !important;
  width: 100%;
}
.twitter-typeahead pre {
  right: 0;
  left: 0;
}
.typeahead:focus {
  border: 2px solid #0097cf;
}
.tt-query {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.tt-hint {
  color: #999999;
}
.tt-menu {
  width: 422px;
  margin: 12px 0;
  padding: 8px 0;
  background-color: white;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.tt-suggestion {
  padding: 3px 20px;
  font-size: 18px;
  line-height: 24px;
}
.tt-suggestion:hover {
  cursor: pointer;
  color: white;
  background-color: #0097cf;
}
.tt-suggestion.tt-cursor {
  color: white;
  background-color: #0097cf;
}
.tt-suggestion p {
  margin: 0;
}
ul.list-files {
  display: block;
  margin: 0px;
  padding: 0px;
  list-style: none;
  width: 100%;
  margin-top: 10px;
  border: 1px solid #dddddd;
  background-color: whitesmoke;
  padding: 5px;
  min-height: 135px;
}
ul.list-files > li input[type="file"] {
  display: none;
}
ul.list-files > li div.alert {
  padding: 5px;
  margin: 0px;
  margin-bottom: 5px;
}
.ADApp-list-input {
  text-align: left;
}
.ADApp-list-input .item {
  margin-top: 7px;
  margin-bottom: 7px;
  padding-left: 15px;
  border-bottom: 0px solid #ebebeb;
}
.ADApp-list-input .item > label.title,
.ADApp-list-input .item > div > label.title {
  display: block;
  padding-top: 4px;
  padding-bottom: 4px;
  font-weight: normal;
}
.ADApp-list-input .item > input,
.ADApp-list-input .item > div > input {
  position: absolute;
  left: -9999px;
}
.ADApp-list-input .item > input:checked + label,
.ADApp-list-input .item > div > input:checked + label {
  background-color: #1cacc0;
}
.ADApp-list-input .item > input:checked + label.disabled,
.ADApp-list-input .item > div > input:checked + label.disabled {
  background-color: #b3b3b3;
}
.ADApp-list-input .item > label.input,
.ADApp-list-input .item > div > label.input {
  border: 1px solid #1cacc0;
  display: inline-block;
  position: relative;
  cursor: pointer;
  /*width: 40px;*/
  height: 22px;
  background-color: white;
  margin-left: 10px;
  max-width: 45px;
  max-height: 14px;
}
.ADApp-list-input .item > label.input.disabled,
.ADApp-list-input .item > div > label.input.disabled {
  border: 1px solid #b3b3b3;
  cursor: default !important;
}
.ADApp-list-input .item > label.input.preview,
.ADApp-list-input .item > div > label.input.preview {
  height: 14px;
  margin-left: 5px;
}
.ADApp-list-input .item .description {
  /*height : 70px;*/
  padding-top: 10px;
  padding-bottom: 10px;
  color: #888888;
  /*font-size:12px !important;*/

}
.ADApp-list-input .item.checkbox {
  min-height: 48px;
  /*height:48px;*/
  margin: 0px;
  border-bottom: 1px solid #ebebeb;
  cursor: pointer;
  padding-left: 15px;
  padding-right: 65px;
}
.ADApp-list-input .item.checkbox > label.title {
  margin: 0px;
  line-height: 14px;
  display: table-cell;
  min-height: 48px;
  height: 48px;
  width: 100%;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  font-weight: normal;
}
.ADApp-list-input .item.checkbox:hover > span {
  color: #1cacc0;
}
.ADApp-list-input .item.checkbox > label.input {
  position: absolute;
  top: 0px;
  right: 10px;
  width: 51px;
  height: 51px;
  background-image: url("../images/filter-checkbox-off.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 45px 45px;
  border: 0px;
  background-color: white;
}
.ADApp-list-input .item.checkbox > input:checked + label {
  background-image: url("../images/filter-checkbox-on.png");
  border: 0px;
  background-color: white;
}
.ADApp-list-input .item.checkbox .description {
  height: auto;
  padding-left: 20px;
  padding-right: 65px;
  padding-right: 5px;
  padding-top: 0px;
  padding-bottom: 10px;
  font-size: 13px;
}
.ADApp-list-input .item:last-child {
  border: none;
}
#filters-competences-techniques .ADApp-list-input > .item {
  border-bottom: 1px solid #ebebeb;
}
.ADApp-checkbox {
  height: 51px;
  width: 100%;
}
.ADApp-checkbox > input {
  display: none;
}
.ADApp-checkbox > input:checked + label {
  background-image: url("../images/filter-checkbox-on.png");
}
.ADApp-checkbox > label {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 51px;
  padding-left: 55px;
  background-image: url("../images/filter-checkbox-off.png");
  background-repeat: no-repeat;
  background-position: left top;
  cursor: pointer;
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ADApp-checkbox.medium {
  height: 30px;
}
.ADApp-checkbox.medium > label {
  padding-left: 35px;
  height: 30px;
  background-size: 30px 30px;
}
.ADApp-checkbox.small {
  height: 20px;
}
.ADApp-checkbox.small > label {
  padding-left: 25px !important;
  height: 20px;
  background-size: 20px 20px;
}
.form-group.row input[type="checkbox"] {
  margin-left: 0 !important;
}
.ADApp-tabs {
  position: relative;
  margin-top: 40px;
}
.ADApp-tabs > ul.nav-tabs {
  position: absolute;
  top: -40px;
  padding: 0px;
  border: 0px;
  height: 30px;
  display: block;
}
.ADApp-tabs > ul.nav-tabs > li {
  margin-bottom: 0px !important;
}
.ADApp-tabs > ul.nav-tabs > li.active {
  border-bottom: 1px solid white;
}
.ADApp-tabs > ul.nav-contents {
  margin-top: 20px;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  background-color: white;
  padding: 0px;
  margin: 0px;
}
.ADApp-tabs > ul.nav-contents > li {
  display: none;
  padding: 20px !important;
}
.ADApp-tabs > ul.nav-contents > li.active {
  display: block;
}
.ADApp-list-editor > ul.items {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.ADApp-list-editor > ul.items > li.item {
  width: 100%;
  clear: both;
}
#organisationColumnList-columnview-container > div {
  padding-left: 0;
}
#organisationColumnList-columnview-container a {
  padding-left: 10px;
}
#organisationColumnList-columnview-container span.label {
  padding-left: 8px;
  position: relative;
}
#organisationColumnList-columnview-container label {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
}
.situation-step.step1 .containerobj > div {
  padding-left: 20px !important;
}
.profil .ADApp-list-input > .item.checkbox {
  border: 0px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.profil .ADApp-list-input > .item.checkbox > label.title {
  font-weight: normal !important;
}
.ADApp-CollectionTreeItem {
  display: table;
}
.ADApp-CollectionTreeItem > .treeColumn {
  display: table-cell;
}
.ADApp-CollectionTreeItem > .treeColumn > .treeItems {
  display: block;
  padding-right: 5px;
  padding-left: 5px;
  width: 300px;
  min-width: 300px;
  min-height: 245px;
  max-height: 245px;
  height: 250px;
  overflow-y: auto;
}
.ADApp-CollectionTreeItem > .treeColumn > .treeItems > .treeItem {
  padding-top: 10px;
  padding-bottom: 10px;
  border: 0px solid red;
}
.ADApp-CollectionTreeItem > .treeColumn > .treeItems > .treeItem > .navigation {
  float: right;
  position: relative;
  cursor: pointer;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 0 22px 15px;
  border-color: transparent transparent transparent gainsboro;
}
.ADApp-CollectionTreeItem > .treeColumn > .treeItems[data-parent-id] {
  border-left: 1px solid #efefef;
}
.event-description .event-property-label {
  background-color: transparent;
  color: #333333;
  font-size: 13px;
  padding: 0;
  font-weight: normal;
  display: inline-block;
}
.event-description .event-property-value {
  display: inline-block;
  white-space: normal;
  padding-left: 10px;
  font-weight: bold;
  color: #1fc1d8;
}
.event-description .event-property-value:before {
  position: absolute;
  font-weight: normal;
  margin-left: -10px;
  margin-top: 3px;
  content: ":";
}
label.required {
  position: relative;
}
label.required:after {
  content: "*";
  position: absolute;
  color: red;
  margin-left: 4px;
  margin-top: -1px;
}
.form-group.row textarea {
  width: 100%;
}
.form-group.row input.data-code {
  max-width: 100px;
}
.form-group.row .enddate-label {
  text-align: right !important;
}
div.modal {
  display: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  transition: all 0.1s ease-in;
}
div.modal:before {
  content: ' ';
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.9;
  top: 0;
  left: 0;
}
div.modal div.popin {
  display: block;
  position: absolute;
  width: 60%;
  height: auto;
  background-color: white;
  z-index: 100;
  top: 50%;
  left: 50%;
  margin-left: -30%;
  margin-top: -330px;
}
div.modal div.popin > header {
  display: block;
  height: 40px;
  line-height: 40px;
  background-color: #1cacc0;
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding-left: 20px;
}
div.modal div.popin > header a.button-close {
  float: right;
  display: block;
  height: 30px;
  width: 30px;
  color: white;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}
div.modal div.popin > section.body {
  padding: 30px;
  overflow-y: auto;
  height: 600px;
}
div.modal div.popin > section.body .form-group {
  display: block;
}
div.modal div.popin > section.body .form-group > label {
  font-weight: normal;
  font-size: 14px;
  padding: 5px;
}
div.modal div.popin > footer {
  border-top: 0px solid #dddddd;
  display: block;
  background-color: white;
  height: 50px;
}
div.modal div.popin > footer > button,
div.modal div.popin > footer button:hover,
div.modal div.popin > footer button:focus {
  margin-right: 10px;
  margin-left: 10px;
  margin-top: 5px;
  width: 140px;
  transition: all 0.1s ease-in;
  padding: 0px;
  height: 35px !important;
  line-height: 35px !important;
}
div.modal div.popin.delete {
  width: 50%;
  height: auto;
  background-color: white;
  z-index: 100;
  top: 50%;
  left: 50%;
  margin-left: -25%;
  margin-top: -125px;
}
div.modal div.popin.delete > section.body {
  height: 200px;
}
div.modal div.popin.delete > header {
  background-color: #1cacc0;
}
div.modal div.popin.delete > footer > button,
div.modal div.popin.delete > footer button:hover,
div.modal div.popin.delete > footer button:focus {
  background-color: #1cacc0;
}
.events-readonly .ico-edit {
  display: none !important;
}
.events-readonly .schedule {
  cursor: default !important;
}
#panel-search-disabled {
  height: 60px;
  opacity: 1.00;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  z-index: 900;
  /** pour forcer typeahead */

  /*.panel-search-shadow {
        display: inline-block;
		position: absolute;
		height: 80px;
		width: 100%;
        background: rgb(0, 0, 0);
        background: rgba(0, 0, 0, 0.65);
		z-index: 1;
	}
	.panel-search-input {
		background-color: #4d4d4d;
		left:40px;
		right:40px;
		top: 20px;
		position: absolute;
		z-index: 2;
		height: 40px;
		border-radius: 5px !important;
        width : 95%;
	}
	#search-input {
		background-color: #4d4d4d;
		color: #eee;
		font-size:20px;
		height:37px;
		border: 0;
	}*/

}
#panel-search-disabled :focus {
  outline: 0px !important;
  -webkit-appearance: none !important;
  -webkit-box-shadow: none!important;
  box-shadow: none!important;
}
#panel-search-disabled .btn-default {
  background-color: #4d4d4d;
}
#panel-search-disabled .btn-default:hover {
  background-color: white;
}
#panel-search-disabled .glyphicon {
  color: #9d9d9d;
}
#fiche-avis .event-contents {
  padding-left: 0;
}
#fiche-avis .event-form.event-editor {
  margin-left: 0 !important;
}
#fiche-avis .ico-add,
#fiche-avis .ico-edit {
  opacity: 100 !important;
}
/* Pour les enfants d'enfants */

.event-children .event-children {
  padding-left: 0;
}
.children-event-container {
  position: relative;
}
.candidature.event-item:after,
.bilanexterne.event-item:after,
.entretienpresentationaccompagnement.event-item:after,
.event-add-form.event-item:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 115px;
  right: -15px;
  bottom: -15px;
  /* border: 1px solid red; */
  background-color: #f7f7f7;
  z-index: -1;
}
.candidature .event-item .schedule,
.bilanexterne .event-item .schedule,
.entretienpresentationaccompagnement .event-item .schedule,
.event-add-form .event-item .schedule,
.candidature .event-description .schedule,
.bilanexterne .event-description .schedule,
.entretienpresentationaccompagnement .event-description .schedule,
.event-add-form .event-description .schedule {
  font-size: 18px !important;
  border-bottom: 1px solid #cccccc !important;
  line-height: 40px !important;
  height: 48px !important;
}
.candidature > .event-form,
.bilanexterne > .event-form,
.entretienpresentationaccompagnement > .event-form,
.event-add-form > .event-form {
  margin-left: 130px !important;
}
.event-children .candidature.event-item:after,
.event-children .bilanexterne.event-item:after,
.event-children .entretienpresentationaccompagnement.event-item:after {
  left: 66px;
}
.dropdown-menu {
  z-index: 900000;
}
.event .comment-container .wrapper {
  background-color: #eeeeee;
  padding: 6px;
}
.event .comment-container .comment-showmore {
  padding-left: 7px;
}
.event .comment-container .comment {
  padding: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid #dfdfdf;
}
.event .comment-container .comment .comment-date {
  float: left;
  width: 110px;
  font-size: 10px;
  line-height: 22px;
  color: #1cacc0;
}
.event .comment-container .comment .comment-username {
  display: inline;
  font-weight: bold;
  color: #1cacc0;
  font-size: 12px;
}
.event .comment-container .comment .comment-content {
  display: block;
}
.radar-all-legends {
  display: block;
  margin-left: 40px;
}
@media (max-width: 767px) {
  .bootstrap .navbar-nav .open .dropdown-menu {
    position: absolute!important;
  }
  header > nav.navbar.navbar-inverse ul.nav.navbar-nav > li.dropdown > a {
    line-height: 30px;
  }
  div.modal.relogin div.popin.delete {
    width: auto;
    margin: 0 !important;
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
  }
  div.modal.relogin div.popin.delete h1 {
    margin: 0 !important;
    padding: 0;
    font-size: 22px !important;
  }
  section {
    padding: 18px !important;
    padding-bottom: 70px !important;
  }
  .nav-title {
    padding: 0 40px;
    font-size: 14px;
  }
  .skill-details-panel {
    display: none !important;
  }
  section.job-catalog {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0!important;
    padding-right: 0!important;
  }
  section.job-catalog #fixed-count-header {
    /*display : none;*/
    width: 100%;
    margin: 0;
    right: 0;
    left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
  section.job-catalog #fixed-count-header > .header {
    margin: 0;
  }
  section.job-catalog #fixed-count-header > .header > span#filters-opener {
    display: block;
    cursor: pointer;
  }
  section.job-catalog #fixed-count-header.fixed {
    padding-right: 0;
    padding-left: 0;
  }
  section.job-catalog #fixed-title {
    /*display : none;*/
    padding-bottom: 70px;
  }
  section.job-catalog #fixed-title > h1 {
    margin-bottom: 0 !important;
  }
  section.job-catalog #fixed-title.active {
    padding-bottom: 50px !important;
  }
  section.job-catalog .row {
    position: relative;
  }
  section.job-catalog .row .filters {
    display: none;
    padding: 0;
    margin-top: 35px;
    border-top: 0;
    position: absolute;
    z-index: 10;
    background-color: white;
    width: 100%;
    max-height: none !important;
    /*padding-right: 15px;*/
  
  }
  section.job-catalog .row .filters.active {
    z-index: 25;
  }
  section.job-catalog .row .filters.fixed .filter-box {
    position: fixed;
    top: 175px;
    width: 103%;
  }
  section.job-catalog .row .filters .filter-submenu-item {
    z-index: 20;
    background-color: white;
    height: 100%;
    position: relative;
  }
  section.job-catalog .row .filters .filter-submenu-item .mobile-button {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  section.job-catalog .row .filters .filter-submenu-item ul {
    overflow-y: auto;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    bottom: 60px;
    min-height: 0;
  }
  section.job-catalog .row .filters .filter-sub-menu {
    position: fixed;
    top: 130px;
    left: 20px;
    right: 30px;
    bottom: 50px;
    max-height: none !important;
  }
  section.job-catalog .row .filters .filter-sub-menu:before {
    position: fixed;
    background-color: black;
    opacity: 0.8;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: " ";
  }
  section.job-catalog .row .filters .filter-sub-menu .filter-submenu-item-header {
    padding-right: 57px;
    z-index: 25;
    right: 0;
  }
  section.job-catalog .row .filters .filter-sub-menu .filter-submenu-item-header > span.sub-menu-close {
    z-index: 25;
  }
  section.job-catalog .row .filters .filter-box .header {
    color: #4d4d4d;
    background-color: #f2f2f2;
    text-align: left;
    /*width : 100%;*/
    padding-left: 20px;
  }
  section.job-catalog .row .filters .filter-box .header > a.fa {
    color: #1cacc0 !important;
  }
  section.job-catalog .row .filters .filter-box .filter-button {
    display: none;
  }
  section.job-catalog .row .filters .filter-box .filter-menu .filter-menu-item.active:after {
    display: none;
  }
  section.job-catalog .row .filters .filter-box .filter-menu .filter-menu-item .filter-menu-item-mobile {
    display: block;
  }
  .ADApp-list-input > .item > div > label.input {
    height: 19px;
    margin-left: 10px;
  }
  .ADApp-list-input > .item > div > label.input.preview {
    height: 16px;
    margin-left: 10px;
  }
  .favori-switch .switch-text {
    padding-left: 0;
    padding-right: 10px;
  }
  /*.skill-statistic-section {
          > .search-result >.search-result-list > li.result-skill-statistic > .box {
              .skill-type-level-bloc {                                           
                  > .skill-type-level-statistics{
                      > ul{                        
                          > li.level-bloc{                       
                              > .level-label{                            
                                  text-align: center;                                   
                              }
                          }
                      }
                  }
              }
          }
      }*/
}
@media (max-width: 550px) {
  section.job-catalog #fixed-title {
    /*display : none;*/
    padding-bottom: 100px;
  }
  section.job-catalog #fixed-title > h1 {
    margin-bottom: 0 !important;
  }
  .modal-favoris {
    margin: auto;
  }
  .page-loader > div {
    font-size: 13px !important;
  }
  .authentication h1,
  .authentication h1 span {
    font-size: 22px !important;
  }
  .rememberme-link a {
    font-size: 12px !important;
  }
}
@media (max-width: 400px) {
  .radar-all-legends {
    display: block;
    margin-left: 40px;
  }
  section.job-detail h2 {
    font-size: 16px !important;
  }
  .radar-all-legends {
    margin-left: 10px;
  }
  .radar-all-legends .skill-type-1,
  .radar-all-legends .skill-type-2,
  .radar-all-legends .skill-type-3,
  .radar-all-legends .skill-type-4,
  .radar-all-legends .skill-type-5 {
    font-size: 12px !important;
  }
  .subnav {
    font-size: 14px;
    line-height: 40px;
  }
  section {
    padding: 8px !important;
    padding-bottom: 70px !important;
    width: 100%;
  }
  section h1 {
    font-size: 18px !important;
  }
  section.authentication .nav-pills li {
    min-height: 50px !important;
  }
  section.authentication .nav-pills a {
    font-size: 11px !important;
    vertical-align: middle;
    display: block;
    min-height: 50px;
  }
  section.authentication .nav-pills a span {
    vertical-align: middle;
    display: inline-block;
  }
  section.job-catalog {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0!important;
    padding-right: 0!important;
  }
  section.job-catalog .filters.fixed .filter-box {
    top: 145px !important;
  }
  section.job-catalog #fixed-count-header.fixed {
    top: 80px;
  }
  .ADApp-list-input > .item > div > label.input {
    height: 16px;
    margin-left: 8px;
  }
  .ADApp-list-input > .item > div > label.input.preview {
    height: 16px;
    margin-left: 6px;
  }
  section.skills .family-name {
    font-size: 14px;
    margin-bottom: 14px;
  }
  section.skills #list-skills .skill-list .container .competence.checkbox label {
    font-size: 11px;
  }
  section.skills #list-skills .skill-list .container .title {
    font-size: 12px;
  }
}
.skill-box {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  margin-top: 30px;
  border-top: 1px solid #1cacc0;
}
.skill-box > .skill-box-title {
  background-color: #f2f2f2;
  font-size: 20px;
  text-align: center;
  vertical-align: middle;
  padding: 10px;
}
.skill-box > .row {
  padding-left: 20px;
}
.skill-box .title {
  font-size: 1.25em;
  font-weight: bold !important;
}
.skill-box .short-description {
  margin-bottom: 10px;
}
.skill-box .description {
  display: none;
  padding-top: 0 !important;
}
.skill-box hr {
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}
.skill-box .displayDescriptionIcon {
  float: right;
}
.skill-box .competence_legend {
  padding-top: 8px !important;
}
.skill-box .competence_legend .competence_legend_item {
  display: none;
}
.skill-box .competence_legend .competence_legend_item.active {
  display: block;
}
.skill-required {
  position: relative;
  overflow: visible;
}
.skill-required:before {
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  text-align: center;
  font-size: 10px;
  border: 2px solid #1cacc0;
  color: #1cacc0;
  line-height: 15px;
  content: "cible";
}
.skill-required.selected:before {
  color: white;
}
section.readonly-skill-input .ADApp-list-input label {
  cursor: default !important;
}
.bootstrap .btn-default[disabled],
.bootstrap .btn-default[disabled]:hover {
  background-color: #eceaea !important;
  color: #9c9c9c !important;
  border-color: #cccccc;
}
#panel-search {
  position: absolute;
  margin: 0;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 999;
  height: 60px;
  opacity: 1.00;
  min-width: 1000px;
}
#panel-search .panel-search-shadow {
  position: absolute;
  height: 60px;
  width: 100%;
  background-color: black;
  opacity: 0.65;
}
#panel-search .panel-search-input {
  position: absolute;
  z-index: 2;
  /*width:			95%;*/
  left: 0;
  right: 150px;
  height: 40px;
  margin-top: 12px;
  /*margin-right:	20px;
		margin-left:	20px;*/

}
#panel-search .panel-advanced-search {
  position: absolute;
  z-index: 2;
  width: 135px;
  right: 0;
  height: 40px;
  margin-top: 12px;
  margin-right: 20px;
  margin-left: 20px;
}
#panel-search .panel-advanced-search a {
  color: #e0e0e0;
  line-height: 34px;
}
#panel-search .btn {
  /*border: 0;*/
  font-size: 14px !important;
  padding: 6px 12px !important;
  color: #333333;
}
#panel-search .btn:hover {
  background-color: #e6e6e6;
  border-color: #adadad;
}
#panel-search #search-input,
#panel-search #search-input-job {
  background-color: #777777;
  color: white;
  border: 1px solid #777777;
}
#manager-search-filters {
  position: absolute;
  top: 110px;
  right: 0;
  left: 0;
  z-index: 10;
  min-width: 1000px;
}
#manager-search-filters .wrapper {
  overflow: hidden;
  position: relative;
  height: 196px;
}
#manager-search-filters .label {
  color: #333333;
}
#manager-search-filters .railroad {
  list-style-type: none;
  height: 46px;
  line-height: 40px;
  background-color: white;
  padding: 0;
  margin: 0;
  padding-left: 14px;
  font-size: 15px !important;
}
#manager-search-filters .railroad li {
  display: inline-block;
  vertical-align: middle;
  margin-top: 5px;
}
#manager-search-filters .railroad li a {
  display: block;
  text-decoration: none;
  color: #4d4d4d;
}
#manager-search-filters .railroad li a.home {
  height: 40px;
  width: 23px;
  height: 23px;
  background-image: url('../images/home.png');
  background-repeat: no-repeat;
  background-position: center center;
}
#manager-search-filters .railroad li a.path {
  margin-left: 40px;
  position: relative;
}
#manager-search-filters .railroad li a.path:before {
  cursor: text;
  color: #4d4d4d;
  position: absolute;
  content: "/";
  margin-left: -20px;
}
#manager-search-filters .railroad li a.path.manager {
  background-image: url('../images/manager.png');
  background-repeat: no-repeat;
  background-position: 0 center;
  padding-left: 28px;
}
#manager-search-filters .railroad li a.path.manager:before {
  margin-left: -48px;
}
#hierarchicalMenu-columnview-container span.label {
  color: black;
}
#hierarchicalMenu-columnview-container .feature {
  display: none;
}
#hierarchicalMenu-columnview-container .name {
  font-size: 14px;
  font-weight: normal;
}
#hierarchicalMenu-columnview-container .icon-arrow-right {
  position: absolute;
  right: 5px;
  top: 4px;
  font-size: 18px;
  color: #aca6a6;
}
#hierarchicalMenu-columnview-container .stats {
  position: absolute;
  right: 18px;
  /*vertical-align: middle;*/
  color: #ed6467;
  margin-top: 1px;
  font-size: 11px;
  font-weight: normal;
  width: 85px;
}
#hierarchicalMenu-columnview-container .name {
  font-size: 14px;
  font-weight: normal;
}
#hierarchicalMenu-columnview-container {
  padding: 4px;
}
#hierarchicalMenu-columnview-container a {
  position: relative;
  border: 1px solid #e8e4e5;
  padding: 7px;
  padding-bottom: 2px;
  background-color: white;
  margin-bottom: 3px;
  font-size: 13px;
  color: #333333;
  /*background-image: url(../images/menu-arrow.png);
    background-repeat: no-repeat;
    background-position: 100% 50%;*/
  padding-right: 150px;
}
#hierarchicalMenu-columnview-container a.inpath .name,
#hierarchicalMenu-columnview-container a.active .name {
  color: #27acc0 !important;
  font-weight: bold;
}
#menu-columnview-container-back {
  width: 100%;
  opacity: 0.9;
  background-color: white;
  height: 196px;
}
a#navrailroad-close:before {
  content: "\f0c0";
  top: -5px;
  right: 25px;
  font-size: 32px;
  color: #484848;
  font-family: FontAwesome;
  position: absolute;
  z-index: 2;
}
#navrailroad-close {
  position: absolute;
  right: 5px;
  margin-top: 12px;
  z-index: 2;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-position: center center;
}
#navrailroad-close > span.fa:before {
  color: #3385d9;
  font-family: FontAwesome;
  position: absolute;
  right: 20px;
  bottom: -5px;
  font-size: 30px;
  z-index: 2;
}
#navrailroad-close.opened > span.fa:before {
  content: "\f0d8";
  text-shadow: -1px 0px 1px white;
  /*background-image: url('../images/arrows-opened.png');*/

}
#navrailroad-close.closed > span.fa:before {
  content: "\f0d7";
  text-shadow: -2px -1px 1px white;
  /*background-image: url('../images/arrows-closed.png');*/

}
.panel-advanced-search-contents-container {
  position: relative;
  margin: 0 auto;
  color: white !important;
}
.panel-advanced-search-contents-container:before {
  content: " ";
  background-color: black;
  opacity: 0.65;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid #bebcbc;
}
#search-input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #eeeeee;
}
#search-input::-moz-placeholder {
  /* Firefox 19+ */
  color: #eeeeee;
}
#search-input:-ms-input-placeholder {
  /* IE 10+ */
  color: #eeeeee;
}
#search-input:-moz-placeholder {
  /* Firefox 18- */
  color: #eeeeee;
}
#search-input-name {
  background-color: #777777;
  border-color: #777777;
  color: white;
}
#search-input-name::-webkit-input-placeholder {
  color: white;
}
#search-input-name::-moz-placeholder {
  color: white;
}
#search-input-name:-ms-input-placeholder {
  color: white;
}
#search-input-name:-moz-placeholder {
  color: white;
}
#search-input-job::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #eeeeee;
}
#search-input-job::-moz-placeholder {
  /* Firefox 19+ */
  color: #eeeeee;
}
#search-input-job:-ms-input-placeholder {
  /* IE 10+ */
  color: #eeeeee;
}
#search-input-job:-moz-placeholder {
  /* Firefox 18- */
  color: #eeeeee;
}
.selectize-control.single {
  top: 1px;
}
.selectize-input.items {
  border: 0;
  border-radius: 0;
  background-color: #777777 !important;
}
.selectize-input.items .item {
  color: white !important;
  margin-top: 2px;
}
.selectize-input.items input {
  color: white !important;
  top: 2px !important;
}
.selectize-input.items input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #eeeeee;
}
.selectize-input.items input::-moz-placeholder {
  /* Firefox 19+ */
  color: #eeeeee;
}
.selectize-input.items input:-ms-input-placeholder {
  /* IE 10+ */
  color: #eeeeee;
}
.selectize-input.items input:-moz-placeholder {
  /* Firefox 18- */
  color: #eeeeee;
}
.selectize-input {
  max-height: 34px;
}
.selectize-input .item {
  overflow: hidden;
  height: 20px;
}
.favori-switch {
  position: relative;
  display: inline-block;
}
.switch-text-first,
.switch-text-second {
  display: inline-block;
}
/* Hide default HTML checkbox */

.favori-switch .switch-text {
  min-height: 26px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 5px;
  padding-right: 5px;
  background-color: #cccccc;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border-radius: 4px;
  font-size: 14px;
}
/* The slider */

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: .4s;
  transition: .4s;
}
.switch-slider:before {
  position: absolute;
  content: "";
  height: 80%;
  width: 45%;
  left: 5%;
  top: 10%;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.switch-text.active {
  color: white;
  background-color: #1cacc0;
}
/*.switch-text:focus {
      box-shadow: 0 0 1px #1cacc0;
    }*/

.switch-text.active + .switch-slider:before {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
/* Rounded sliders */

.switch-slider.round {
  border-radius: 34px;
}
.switch-slider.round:before {
  border-radius: 50%;
}
footer ul {
  margin: 0 !important;
}
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 11;
}
body > section,
body > section.nomargin {
  padding-bottom: 100px !important;
}
div.reporting #CollaborateurIframe {
  border: none !important;
  border-radius: 0px 0px 3px 3px;
  -webkit-border-radius: 0px 0px 3px 3px;
  -moz-border-radius: 0px 0px 3px 3px;
}
div.reporting #CollaborateurIframeBar {
  background: #717171;
  height: 35px;
  border-radius: 3px 3px 0px 0px;
  -webkit-border-radius: 3px 3px 0px 0px;
  -moz-border-radius: 3px 3px 0px 0px;
}
div.reporting #CollaborateurIframeContainer {
  visibility: hidden;
  position: fixed;
  margin-top: -74px;
  margin-left: 279px;
  z-index: 1000;
  /*border: solid #1cacc0;
        border-width: 1px 1px 1px 1px;*/
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.5);
}
div.reporting #CollaborateurIframeCloser {
  position: absolute;
  margin-top: 7px;
  margin-right: 10px;
  z-index: 101;
  font-size: 20px;
  color: white;
  right: 0;
}
div.reporting #CollaborateurIframeContainer.active {
  visibility: visible;
}
div.reporting .slider-header {
  font-weight: bold;
  font-size: 14px;
  color: #1cacc0;
}
div.reporting .option-close {
  display: inline-block;
  cursor: pointer;
  float: right;
  margin-top: -20px;
  margin-right: -18px;
  /*padding: 11px 3px;*/

}
div.reporting .option-slider {
  /* Fallback for web browsers that don't support RGBa */
  background-color: #dddddd;
  /* RGBa with 0.6 opacity */
  background-color: rgba(221, 221, 221, 0.85);
  /*background-color: #ddd;*/
  /*opacity: 0.85;*/
  border: solid 1px #aaaaaa;
  font-weight: normal;
  font-size: 14px;
  display: none;
  z-index: 99;
  position: absolute;
  padding: 20px;
  margin-top: 10px;
  margin-left: -8px;
  -webkit-box-shadow: 5px 7px 22px -5px #757475;
  -moz-box-shadow: 5px 7px 22px -5px #757475;
  box-shadow: 5px 7px 22px -5px #757475;
}
div.reporting .option-slider .contents {
  font-size: 12px;
  padding-bottom: 10px;
  opacity: 1;
}
div.reporting .option-slider .contents .choose-list {
  overflow-y: auto;
  max-height: 100px;
  min-width: 175px;
  background-color: white;
  padding: 5px;
}
div.reporting .chooseFilterValue {
  width: 100%;
}
div.reporting .option-slider .contents .choose-list .choose-list-item.hidden {
  display: none;
}
div.reporting .option-slider .actions {
  text-align: right;
  position: relative;
  padding-bottom: 15px;
  opacity: 1;
}
div.reporting .option-slider .actions .filter-validate {
  padding: 5px 10px;
  font-size: 13px;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
}
div.reporting .option-slider .actions .option-close {
  padding: 5px 10px;
  font-size: 13px;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
}
div.reporting #FiltersConfiguration {
  background-color: white;
  /*max-height: 190px;*/
  height: 70px;
  /*border: 1px solid #1cacc0;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;*/
  width: 100%;
  /*padding: 10px 0px 20px 0px;*/
  margin-top: 30px;
  display: table;
  overflow: auto;
}
div.reporting #EventDateSelection {
  left: 0;
  position: absolute;
  bottom: 0;
  margin-bottom: 2px;
}
div.reporting #ExportDiv {
  right: 15px;
  position: absolute;
  margin-bottom: 2px;
}
div.reporting #ExportMenu {
  width: 24px;
  height: 24px;
  background-color: white;
  background-image: url('../images/export-excel-picto.png');
  border: none;
}
div.reporting #ReportingProfilIconContainer {
  height: 25px;
  padding-left: 5px;
  padding-right: 5px;
}
div.reporting #AddReportingProfilExpend {
  visibility: hidden;
  font-size: 20px;
}
div.reporting #AddReportingProfilExpend.active {
  visibility: visible;
}
div.reporting #DeleteReportingProfil {
  font-size: 20px;
}
div.reporting #ReloadReportingProfil {
  font-size: 20px;
}
div.reporting #EventDateInputs {
  display: inline;
  visibility: hidden;
}
div.reporting #EventDateInputs.active {
  visibility: visible;
}
div.reporting #ActivatedFilters,
div.reporting #FiltersProfil {
  padding-left: 10px;
  display: inline-block;
  position: relative;
  min-width: 300px;
  width: 100%;
  vertical-align: middle;
  z-index: 2;
}
div.reporting #ActivatedFilters {
  background-color: #f4f4f4;
  max-height: 85px;
  overflow-y: auto;
}
div.reporting #ActivatedFilters p {
  margin: 5px;
}
div.reporting #ReportingFilterSaved > option {
  background-color: #676767;
  /*font-size: 16px;*/
  font-weight: bold;
}
div.reporting #ReportingFilterControl > div {
  position: relative;
}
div.reporting #ReportingFilterControl .picto-select-bottom {
  content: "x";
  cursor: pointer;
  top: 2px;
  right: 15px;
  font-size: 30px;
  color: white;
  font-family: FontAwesome;
  z-index: 1;
  position: absolute;
  width: 20px;
  height: 20px;
}
div.reporting #AddReportingProfilName::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: white;
}
div.reporting #AddReportingProfilName::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
}
div.reporting #AddReportingProfilName:-ms-input-placeholder {
  /* IE 10+ */
  color: white;
}
div.reporting #AddReportingProfilName:-moz-placeholder {
  /* Firefox 18- */
  color: white;
}
div.reporting #ReportingFilterSaved,
div.reporting #AddReportingProfilName {
  /*width: 200px;*/
  line-height: 19px;
  /*background-color : #848484;*/
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  vertical-align: super;
  padding-left: 10px;
  /*margin-left: -10px;*/
  height: 35px;
  width: 100%;
  /*border-radius: 5px 5px 5px 5px;
                        -moz-border-radius: 5px 5px 5px 5px;
                        -webkit-border-radius: 5px 5px 5px 5px;
                        border: 1px solid #676767;*/
  border: none;
  font-family: "Gotham Light", "Gotham Book", "Segoe UI", Verdana, Helvetica, Sans-Serif;
}
div.reporting #ReportingFilterControl,
div.reporting #AddReportingFilter {
  display: none;
  margin-top: 2px;
  font-weight: bold;
  background-color: #848484;
  color: white;
  position: relative;
  /*padding-left: 10px;
        padding-right: 10px;*/
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #848484;
  height: 35px;
}
div.reporting #ReportingFilterControl > valign-middle,
div.reporting #AddReportingFilter > valign-middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
div.reporting #ReportingFilterControl.active,
div.reporting #AddReportingFilter.active {
  display: block;
}
div.reporting .OptionsBlock {
  position: relative;
  height: 150px;
  overflow: visible;
  padding-left: 10px;
  padding-top: 20px;
  background-color: white;
  margin: 0 !important;
}
div.reporting #ProfilControlIcons {
  display: inline;
  visibility: hidden;
}
div.reporting #ProfilControlIcons.active {
  visibility: visible;
}
div.reporting #ReportingTitle {
  font-size: 22px;
  color: #1cacc0;
  font-weight: bold;
}
div.reporting #AddReportingProfilButton {
  padding: 5px 10px;
  font-size: 13px;
  position: absolute;
  right: 2px;
  top: 2px;
}
div.reporting #date-validate {
  padding: 5px 10px !important;
  font-size: 13px;
}
div.reporting #EmptyResults {
  font-size: 30px;
  margin-top: 100px;
  margin-left: 20%;
  margin-bottom: 100px;
}
div.reporting .nodata {
  margin-top: 50px;
  max-width: none;
  height: 150px;
  text-align: center;
  font-size: 26px;
  position: relative;
}
div.reporting .nodata > span.nodatatext {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
div.reporting #ReportSection {
  max-width: none;
  font-size: 0.85em;
  min-width: 1000px;
  padding: 0 !important;
  background-color: transparent;
  margin-left: 25px;
  margin-right: 25px;
}
div.reporting .MainHeader TD {
  font-size: 1.1em;
  color: white;
  background-color: #1cacc0 !important;
}
div.reporting .GridviewScrollHeader TH,
div.reporting .GridviewScrollHeader TD {
  padding: 5px;
  font-weight: bold;
  white-space: nowrap;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  background-color: #dddddd;
  text-align: left;
  vertical-align: bottom;
  cursor: default;
  font-size: 13px;
  height: 26px;
}
div.reporting .GridviewScrollItem {
  height: 31px;
}
div.reporting .GridviewScrollItem TD {
  padding: 5px;
  white-space: nowrap;
  border-right: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  background-color: white;
}
div.reporting .GridviewScrollItem TD:first-child {
  background-color: #dddddd;
  text-align: center;
  font-weight: bold;
}
div.reporting th .th-label {
  color: #555555;
  display: inline-block;
  margin-right: 10px;
  font-weight: bold;
  /*font-size: 14px;*/

}
div.reporting th.ASC .sort-icon-up {
  color: #1cacc0;
}
div.reporting th.DESC .sort-icon-down {
  color: #1cacc0;
}
div.reporting th .delete-filter-icon {
  visibility: hidden;
}
div.reporting th.filtered .delete-filter-icon {
  visibility: visible;
}
div.reporting th.filtered .option-icon {
  color: #1cacc0;
}
div.reporting th .fa {
  color: #555555;
  cursor: pointer;
}
div.reporting th .option-icon {
  cursor: pointer;
}
div.reporting .VerticalBar {
  margin-left: 5px;
  margin-right: 5px;
  display: inline-block;
  width: 1px;
  border-left: outset;
  height: 100%;
  background-color: #dddddd;
}
div.reporting .collabLink {
  color: #4d4d4d !important;
}
div.reporting .collabLink:hover {
  color: #1cacc0 !important;
}
div.reporting #EmptyResults {
  font-size: 30px;
  margin-top: 100px;
  margin-left: 20%;
  margin-bottom: 100px;
}
div.reporting #main-report-container {
  font-family: 'Gotham Light', "Gothom Book";
  padding-top: 80px;
}
div.reporting #ReportingTableVerticalBar {
  height: 10% !important;
  border: 7px solid #aaaaaa;
  border-radius: 7px;
  background: #aaaaaa !important;
}
div.reporting #ReportingTableHorizontalBar {
  border: 7px solid #aaaaaa;
  border-radius: 7px;
  background: #aaaaaa !important;
}
div.reporting .twitter-typeahead {
  /*display:inline !important;*/
  background-color: white;
}
div.reporting .typeahead,
div.reporting .tt-query {
  height: auto;
  padding: 0;
  border: 0;
}
div.reporting .tt-input,
div.reporting .tt-hint {
  height: auto;
  padding: 3px;
  border: 0;
}
div.reporting .tt-menu.tt-open {
  width: auto;
  max-width: 400px;
  margin: 0;
}
.multiselect {
  width: 100%;
  /*bug sous firefox*/

  /*.caret {
    float: right;
    margin-top: 8px;
    }*/

}
.multiselect-container .checkbox {
  left: 10px;
}
.btn-create {
  background-color: #1cacc0;
  width: 100%;
  height: 40px;
  line-height: 40px !important;
  border: 0px;
  color: white !important;
}
/**


    SPECIAL AUCHAN


**/

.btn.add-event-btn,
.btn.add-event-btn:hover {
  padding-left: 10px !important;
  padding-right: 40px !important;
  position: relative;
}
.btn.add-event-btn:after,
.btn.add-event-btn:hover:after {
  content: "\f0fe";
  position: absolute;
  color: white;
  font-family: FontAwesome;
  right: 12px;
  top: 5px;
  font-size: 22px;
}
.infos-collaborateur .nav-tabs {
  width: 100%;
}
.infos-collaborateur .nav-tabs .tab {
  border-top: 5px solid #dedede;
  background-color: #f2f2f2;
}
.infos-collaborateur .nav-tabs .tab:first-of-type {
  border-right: 1px solid #aaad90;
}
.infos-collaborateur .nav-tabs .tab:last-of-type {
  border-left: 1px solid #aaad90;
}
.infos-collaborateur .nav-tabs .tab.step-validate {
  border-top-color: #14d3a0;
}
.infos-collaborateur .nav-tabs .tab.step-in-progress {
  border-top-color: #1cacc0;
}
.infos-collaborateur .nav-tabs .tab > a {
  width: auto !important;
}
.infos-collaborateur .event-edition-bar {
  margin-top: 22px;
  overflow: hidden;
  margin-bottom: 80px;
}
.infos-collaborateur .tab-content > li {
  padding-left: 50px;
  padding-top: 22px;
  min-height: 400px;
}
.quota-box {
  background-color: white;
  border: 1px solid #e1edf5;
  color: #b3b6b7;
  width: 398px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  padding: 8px 4px;
}
.quota-box .strong {
  font-weight: bold;
}
.quota-box .quota-line {
  margin: 0!important;
}
.quota-box .quota-item {
  position: relative;
  padding: 0px !important;
  line-height: 25px;
  padding-left: 5px !important;
  padding-right: 5px !important;
  margin-bottom: 4px;
}
.quota-box .quota-item::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 0;
  height: 1px;
  left: 0;
  right: 0;
  border-bottom: 1px solid;
}
.quota-box .quota-item-left:after {
  right: 8px;
}
.quota-box .quota-item-right:after {
  left: 8px;
}
.quota-box .quota-item-label {
  position: relative;
  top: 4px;
  font-size: 13px;
}
.quota-box .quota-item.abandonnee-color::after {
  border-color: #c7c5c5;
}
.quota-box .quota-item.abandonnee-color .quota-item-value {
  background-color: #c7c5c5;
}
.quota-box .quota-item.cloturee-color::after {
  border-color: #14d3a0;
}
.quota-box .quota-item.cloturee-color .quota-item-value {
  background-color: #14d3a0;
}
.quota-box .quota-item.encours-color::after {
  border-color: #1cacc0;
}
.quota-box .quota-item.encours-color .quota-item-value {
  background-color: #1cacc0;
}
.quota-box .quota-item.potentielle-color::after {
  border-color: #1cacc0;
}
.quota-box .quota-item.potentielle-color .quota-item-value {
  background-color: #1cacc0;
}
.quota-box .quota-item.realisee-color::after {
  border-color: #14d3a0;
}
.quota-box .quota-item.realisee-color .quota-item-value {
  background-color: #14d3a0;
}
.quota-box .quota-item.default-color::after {
  border-color: #dedede;
}
.quota-box .quota-item.default-color .quota-item-value {
  background-color: #dedede;
}
.quota-box .quota-item-value {
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  color: black;
  font-size: 16px;
}
.edition.event-form .event-property-numerooffreemploi input {
  width: 200px;
}
.eventBox-list .swiper-button-prev {
  left: 0;
  margin-top: -46px;
}
.eventBox-list .swiper-button-next {
  right: 0;
  margin-top: -46px;
}
.event.realisee-color > .eventcontainer > .schedule,
.event.cloturee-color > .eventcontainer > .schedule {
  color: #14d3a0;
}
.event.potentielle-color > .eventcontainer > .schedule,
.event.encours-color > .eventcontainer > .schedule {
  color: #1cacc0;
}
.event.abandonnee-color > .eventcontainer > .schedule,
.event.refusee-color > .eventcontainer > .schedule {
  color: #d1d1d1;
}
.event.realisee-color > .datecontainer,
.event.cloturee-color > .datecontainer,
.event.realisee-color > .periode-container > .datecontainer,
.event.cloturee-color > .periode-container > .datecontainer,
.event.realisee-color > .periode-container > .datelink,
.event.cloturee-color > .periode-container > .datelink {
  background-color: #14d3a0 !important;
}
.event.editing.realisee-color > .eventcontainer,
.event.editing.cloturee-color > .eventcontainer {
  border-color: #14d3a0 !important;
}
.event.potentielle-color > .datecontainer,
.event.encours-color > .datecontainer,
.event.potentielle-color > .periode-container > .datecontainer,
.event.encours-color > .periode-container > .datecontainer,
.event.potentielle-color > .periode-container > .datelink,
.event.encours-color > .periode-container > .datelink {
  color: #1cacc0 !important;
}
.event.editing.potentielle-color > .eventcontainer,
.event.editing.encours-color > .eventcontainer {
  border-color: #1cacc0 !important;
}
.event.abandonnee-color > .datecontainer,
.event.refusee-color > .datecontainer,
.event.abandonnee-color > .periode-container > .datecontainer,
.event.refusee-color > .periode-container > .datecontainer,
.event.abandonnee-color > .periode-container > .datelink,
.event.refusee-color > .periode-container > .datelink {
  background-color: #d1d1d1 !important;
}
.event.editing.abandonnee-color > .eventcontainer,
.event.editing.refusee-color > .eventcontainer {
  border-color: #d1d1d1 !important;
}
.property-readonly-value {
  padding-top: 7px;
  font-weight: bold;
}
.htCheckboxRendererLabel {
  font-size: 10px;
  margin: 0;
  line-height: 10px;
}
