@charset 'UTF-8';
/*
* Profil & Talent specific SCSS
* Use Gulp to compile this file to CSS
* See gulpfile.js in root folder
* command line : $ gulp
*/
/* _variables.scss : ALL variables for HHS CSS Theming must be declared here 
 *
 * Prefix all your variables with "hhs-" to prevent compatibility with other imported scss files from libraries
 *
 * Use !default flag for all variables. They can be override in sass/sitename/_sitename-variables.scss
 */
/*
 * Common 
 */
/* pt/_variables.scss : Specific variables for HHS Theming must be declared here 
 *
 * Prefix all your variables with "hhs-hhs-" to prevent compatibility with other imported scss files from libraries
 *
 */
.multiselect {
  white-space: normal;
}

.dropdown-menu {
  overflow-y: auto;
  min-width: 220px;
  max-height: 300px;
}

.dropdown-menu li a {
  white-space: normal;
}

.dropdown-menu > .active > a {
  background-color: #34b4bc;
}

.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  background-color: #34b4bc;
}

@media screen and (max-width: 991px) {
  .dropdown-menu {
    max-width: 100%;
  }
}

#loading-scroll {
  display: none;
}

#menu-body-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#navigation {
  min-width: 84px;
  height: auto;
  min-height: 100%;
  background: #263544;
}

#navigation a {
  line-height: inherit;
  display: block;
  height: inherit;
  text-align: center;
  text-decoration: none;
}

#navigation a:hover {
  color: #34b4bc;
}

#navigation a.icon {
  position: relative;
  overflow: hidden;
  padding: 56px 10px 10px;
}

#navigation a.icon:before {
  font-size: 3.5rem;
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-indent: 0;
}

#navigation a.active {
  color: #34b4bc;
  background: inherit;
}

#navigation li.active {
  color: #34b4bc;
}

#navigation .list-group-item {
  color: #fff;
  border: none;
  background: transparent;
}

#navigation .list-group-item:first-child {
  border-radius: 0;
}

#navigation .menugroupe a {
  font-weight: bold;
  color: #adadad;
}

#navigation .elementmenuvide {
  color: #adadad;
}

#navigation .collapsible-body {
  display: none;
}

#navigation .logo-wrapper {
  display: table;
  width: 100%;
  background: #34b4bc;
}

#navigation .logo-wrapper img {
  padding: 10px 10px;
}

#navigation.side-nav .elementmenu {
  line-height: inherit;
  display: block;
  height: auto;
  min-height: 55px;
  padding: 20px;
}

#navigation.admin-side-nav svg {
  display: table-cell;
  width: 50px;
  margin: 10px;
  padding: 5px;
  vertical-align: middle;
  border: 2px solid #fff;
  fill: #fff;
}

#navigation.admin-side-nav p {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 0 80px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  word-break: break-all;
}

#navigation.admin-side-nav .user {
  display: table-cell;
  width: 75%;
  padding-left: 15px;
  vertical-align: middle;
}

#navigation.admin-side-nav .user-name {
  font-size: 1.4rem;
}

#navigation.admin-side-nav .user-email {
  font-size: 1.2rem;
}

@media screen and (min-width: 991px) {
  #navigation {
    position: relative;
    width: 100% !important;
  }
}

@media screen and (max-width: 991px) {
  #navigation-menu a {
    font-size: 1.4rem;
    text-align: left;
  }

  #navigation-menu a.icon {
    padding: 20px 12px;
  }

  #navigation-menu a.icon:before {
    font-size: 2rem;
    position: relative;
    top: inherit;
    left: inherit;
    padding: 0 10px;
    -webkit-transform: none;
            transform: none;
    vertical-align: middle;
  }
}

.stepper > li > a {
  font-size: 1.4rem;
  padding: 24px;
  text-align: center;
  text-decoration: none;
}

.stepper > li > a .circle {
  line-height: 24px;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  background: rgba(0, 0, 0, .38);
}

.stepper > li > a .label {
  font-size: 1.6rem;
  font-weight: 400;
  display: inline-block;
  color: rgba(0, 0, 0, .38);
}

.stepper > li.active > a .circle,
.stepper > li.active.completed > a .circle {
  background: #34b4bc;
}

.stepper > li.active > a .label,
.stepper > li.active.completed > a .label {
  font-weight: 400;
  color: #34b4bc;
}

.stepper > li.completed > a .circle {
  background: #00d255;
}

.stepper > li.completed > a .label {
  color: #00d255;
}

.stepper > li.warning > a .circle {
  background: #d9534f;
}

.stepper-horizontal {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.stepper-horizontal > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.stepper-horizontal > li a .label {
  margin-top: 10px;
}

.stepper-horizontal > li:not(:last-child):after {
  position: relative;
  height: 1px;
  margin: 8px 0 0 0;
  content: '';
  background-color: rgba(0, 0, 0, .1);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.stepper-horizontal > li:not(:first-child):before {
  position: relative;
  height: 1px;
  margin: 8px 0 0 0;
  content: '';
  background-color: rgba(0, 0, 0, .1);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.stepper-horizontal > li:hover {
  background: #ddd;
}

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

.stepper-vertical > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.stepper-vertical > li > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.stepper-vertical > li > a .circle {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.stepper-vertical > li > a .label {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.stepper-vertical > li.completed > a .label {
  font-weight: 400;
}

.stepper-vertical > li .step-content {
  display: none;
  width: 95%;
  margin-top: 0;
  margin-left: 50px;
  padding: 15px;
}

.stepper-vertical > li .step-content p {
  font-size: .875rem;
}

.stepper-vertical > li:not(:last-child):after {
  position: absolute;
  top: 57px;
  left: 35px;
  width: 1px;
  height: calc(100% - 40px);
  content: ' ';
  background-color: rgba(0, 0, 0, .1);
}

@media screen and (max-width: 991px) {
  .stepper-vertical > li > a {
    padding: 24px 0;
  }

  .stepper-vertical > li .step-content {
    margin-left: 0;
    padding: 0;
  }

  .stepper-vertical > li:not(:last-child):after {
    left: 12px;
  }
}

body.gestioncabinet div.containeurtable {
  overflow: auto;
  height: 340px;
  min-height: 340px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-width: 1px;
  border-style: solid;
}

body.gestioncabinet [alt='loader'] {
  width: 20px;
  height: 20px;
  margin: 6px 0;
}

body.gestioncabinet .suspendu {
  background-color: #ddd;
}

body.gestioncabinet .supprime {
  font-style: italic;
  background-color: silver;
}

body.gestioncabinet .actif.expire {
  background-color: #ffc9c9;
}

body.gestioncabinet .actif.fin_proche {
  background-color: #ffde9b;
}

body.gestioncabinet .legende {
  width: 250px;
  height: 30px;
  margin-bottom: 10px;
  padding: 5px;
  text-align: center;
}

body.gestioncabinet .legende h4 {
  margin-top: 0;
}

body.gestioncabinet th.triSelectionne {
  background-color: darkgrey;
}

body.gestioncabinet button[type='commerciauxEnCharge'][commerciaux=''],
body.gestioncabinet #legendeSansCommercial {
  background-color: orange;
}

body.gestioncabinet h2 {
  margin-bottom: 20px;
}

body.gestioncabinet .filtreSansCommerciauxSelectionne {
  border-width: 2px;
  border-style: solid;
  border-color: black;
}

#listeDesCabinets th {
  font-size: 1.2rem;
}

#listeDesCabinets th .critereTri:hover {
  cursor: pointer;
  background-color: #52c9d0;
}

body.index #sidenav-btn {
  display: none;
}

body.index #home-intro {
  padding-top: 20px;
}

.loader {
  position: fixed;
  z-index: 1100;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .1);
}

.loader img {
  position: fixed;
  z-index: 1101;
  top: 50%;
  left: 50%;
}

body.blog main {
  padding: 30px 0 50px;
  background: #f2f2f2;
}

body.blog article {
  padding: 30px;
  background: #fff;
}

body.blog article h1 {
  font-size: 5rem;
  font-weight: 600;
}

body.blog article h2 {
  font-size: 5rem;
  font-weight: 600;
}

body.blog article p {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 4rem;
  color: #777;
}

body.blog article img {
  max-width: 100%;
  height: auto;
}

body.blog article iframe {
  width: 100%;
  max-width: 100%;
}

#choisir_langue .dropdown-menu {
  right: 0;
  left: auto;
  width: 100%;
  min-width: inherit;
  padding: 0;
}

#choisir_langue .dropdown-menu li {
  padding: 0;
  text-transform: uppercase;
}

#choisir_langue .dropdown-menu li a {
  padding: 10px;
}

#choisir_langue_dropdown {
  font-size: 1.6rem;
  line-height: 1.6rem;
  padding: 10px;
  text-transform: uppercase;
  color: #adadad;
  border: solid 1px #adadad;
  background-color: #fff;
}

.zoneInformationsModifiables .form-control-static {
  display: inline-block;
  padding: 8px 0;
}

.zoneInformationsModifiables .form-control-static:empty:before {
  content: '\200b';
}

.zoneInformationsModifiables .zoneValeurChamp {
    /* &:hover:not(.active){
            *[type="iconeModifiable"]{
                display: inline-block;
            }
        }*/
}

.zoneInformationsModifiables .zoneValeurChamp *[type='iconeModifiable'] {
  cursor: pointer;
  color: #34b4bc;
}

.zoneInformationsModifiables .zoneValeurChamp.active *[type='iconeModifiable'] {
  display: none;
}

body.gestion-compte .suggestion {
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #fe9800;
  -webkit-box-shadow: 1px 1px 2px 0 #747474;
          box-shadow: 1px 1px 2px 0 #747474;
}

body.gestion-compte .suggestion-container {
  position: relative;
  margin-bottom: 15px;
  padding: 10px 15px;
  background-color: #dbdbdb;
  -webkit-box-shadow: 1px 1px 2px 0 #747474;
          box-shadow: 1px 1px 2px 0 #747474;
}

body.gestion-compte .suggestion-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body.gestion-compte .suggestion-container .btn-close {
  position: absolute;
  top: 0;
  right: 15px;
  cursor: pointer;
}

#form_reset h2 {
  font-size: 1.5rem;
  font-weight: 400;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

body.page main {
  padding: 30px 0 50px;
  background: #f2f2f2;
}

body.page article {
  padding: 30px;
  background: #fff;
}

.nav-tabs > li.active > a {
  border-bottom: 1px solid #f2f2f2;
  background: #f2f2f2;
}

.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  border-bottom: 1px solid #f2f2f2;
  background: #f2f2f2;
}

.nav-tabs > li a {
  text-decoration: none;
}

.carousel-indicators li {
  width: 15px;
  height: 15px;
  margin: 0 3px;
  border: none;
  border-radius: 50%;
  background: #fff;
}

.carousel-indicators li.active {
  width: 15px;
  height: 15px;
  margin: 0 3px;
  background: #34b4bc;
}

.well {
  -webkit-box-shadow: none;
          box-shadow: none;
}

body.index-bo input[type=text] {
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}

body.index-bo input[readonly] {
  background-color: transparent;
}

body.index-bo #content > .container-fluid {
  width: 100%;
}

body.index-bo .column-style input[type=text] {
  background: transparent;
}

#dashboard-activity label {
  font-weight: 400;
}

#dashboard-activity-infos {
  text-align: center;
}

#dashboard-activity-infos .text {
  font-size: 1.4rem;
  font-weight: 400;
}

#dashboard-activity-infos .number {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 5rem;
  margin: 20px;
  color: #34b4bc;
}

#donutchart {
  height: 140px;
}

#areachart {
  height: 300px;
}

#cabinet-chart-stats {
  height: 300px;
}

.dashboard-list a {
  text-decoration: none;
  color: #000;
}

.dashboard-list a:hover,
.dashboard-list a:focus,
.dashboard-list a:active {
  text-decoration: none;
  color: #000;
}

.dashboard-list > ul > li {
  margin-bottom: 1px;
  padding: 20px 10px;
  background: #fff;
}

.dashboard-list > ul > li:hover {
  background: #c2daed;
}

.dashboard-list > ul > li.row {
  padding: 20px 0;
}

.dashboard-list > ul > li > a {
  display: block;
  padding: 15px;
}

.dashboard-list .dashboard-list-thead {
  font-size: 1.4rem;
  font-weight: 400;
  padding: 15px;
  color: #fff;
  background: #34b4bc;
}

.dashboard-list .index {
  width: 3%;
}

.dashboard-list .icon-grip {
  width: 3%;
  color: #777;
}

.dashboard-list .img-circle {
  border: 1px solid #c2c2c2;
}

.dashboard-list .title {
  font-weight: 800;
  margin-bottom: 5px;
  color: #34b4bc;
}

.dashboard-list .excerpt {
  font-size: 1.3rem;
  line-height: 1.5rem;
}

.dashboard-list .avatar-svg {
  width: 40px;
  padding: 5px;
  border: 1px solid #34b4bc;
  border-radius: 50%;
  fill: #34b4bc;
}

.dashboard-block {
  margin: 20px 0 30px;
}

.dashboard-block h2.icon:before {
  margin-right: 10px;
  vertical-align: middle;
  color: #34b4bc;
}

.dashboard-block-white {
  padding: 20px;
  background: #fff;
}

.dashboard-block-white h2 {
  margin-top: 10px;
}

.dashboard-table table {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  background: #fff;
}

.dashboard-table table th {
  font-size: 1.6rem;
  font-weight: 300;
  min-height: 54px;
  padding: 15px 10px !important;
  vertical-align: top !important;
  color: #fff;
  border-color: #f2f2f2;
  border-right: 1px solid #f2f2f2;
  border-bottom: 0 !important;
  background: #34b4bc;
  -webkit-box-shadow: inset -1px 0 0 0 #ff8330;
          box-shadow: inset -1px 0 0 0 #ff8330;
}

.dashboard-table table tr:hover {
  background: #c2daed;
}

.dashboard-table table tr[data-href] {
  cursor: pointer;
}

.dashboard-table table td {
  border: 1px solid #f2f2f2;
}

.dashboard-table table a {
  text-decoration: none;
  color: inherit;
}

.dashboard-table table button {
  color: #000;
  border: none;
  background: none;
}

.dashboard-table table p {
  margin-bottom: 3px;
}

.dashboard-table table strong {
  font-size: 1.2rem;
  color: #000;
}

.dashboard-table table .btn {
  margin-bottom: 0;
}

.dashboard-table table .table-icons-sorter {
  display: inline-block;
  float: right;
  width: 36px;
  text-align: right;
}

.dashboard-table table .table-icons-sorter .icon:before {
  font-size: 1rem;
  margin: 1px;
  padding: 2px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.dashboard-table table .headerSortDown .icon-arrow-down {
  display: none;
}

.dashboard-table table .headerSortUp .icon-arrow-up {
  display: none;
}

.dashboard-table .icon-close {
  font-size: 1rem;
}

#dashboard-messages > ul {
  height: 290px;
}

#dashboard-messages > ul > li,
#dashboard-messages-pt > ul > li {
  padding: 0;
}

#dashboard-messages > ul > li > a,
#dashboard-messages-pt > ul > li > a {
  display: block;
  padding: 20px;
}

#dashboard-comments > ul {
  height: 290px;
}

#dashboard-comments > ul > li {
  padding: 20px;
}

#dashboard-missions {
  font-size: 1.2rem;
  line-height: 1.6rem;
}

#dashboard-missions .icon-rocket {
  margin-bottom: 14px;
}

#dashboard-missions .icon-rocket:before {
  font-size: 3rem;
}

#dashboard-missions > ul {
  overflow-y: auto;
  max-height: 920px;
}

#dashboard-missions > ul > li {
  margin-bottom: 1px;
  padding: 25px 15px;
  background: #fff;
}

#dashboard-missions .header {
  margin-bottom: 25px;
}

#dashboard-missions .title {
  font-size: 1.9rem;
  line-height: 2.1rem;
}

#dashboard-carousel {
  line-height: 1.2;
}

#dashboard-carousel .item {
  height: 353px;
  background-position: 50% 50%;
}

#dashboard-carousel img {
  display: none;
}

#dashboard-carousel .icon:before {
  margin-right: 7px;
  vertical-align: middle;
  color: #fff;
}

#dashboard-carousel .carousel-caption {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  margin-bottom: 3em;
  padding: 30px 60% 30px 30px;
  text-align: left;
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .8)), color-stop(31%, rgba(0, 0, 0, .8)), to(transparent));
  background: linear-gradient(to right, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .8) 31%, transparent 100%);
  text-shadow: none;
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc000000', endColorstr='#00000000',GradientType=1 );
    /* IE6-9 */
}

#dashboard-carousel .title {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 40px;
}

#dashboard-carousel .info {
  margin-bottom: 20px;
}

#dashboard-carousel .category {
  font-weight: 500;
  text-transform: uppercase;
  color: #34b4bc;
}

#dashboard-carousel .sub-title {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 20px;
}

#dashboard-carousel .excerpt {
  font-size: 1.3rem;
}

#dashboard-abonnement {
  font-size: 1.2rem;
  line-height: 1.6rem;
  margin-top: 20px;
  padding: 20px;
  background: #fff;
}

#dashboard-abonnement h2 {
  margin-top: 0;
}

#dashboard-abonnement .contact-content {
  border-right: 1px solid #c2c2c2;
}

#dashboard-abonnement .name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #34b4bc;
}

#dashboard-abonnement .title {
  font-size: 1.9rem;
  line-height: 2.1rem;
  margin-bottom: 10px;
}

#dashboard-abonnement .contact {
  margin-top: 10px;
}

@media screen and (max-width: 991px) {
  #dashboard-carousel .carousel-caption {
    padding: 20px;
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.8+31,0.4+100 */
        /* FF3.6-15 */
        /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .8)), color-stop(31%, rgba(0, 0, 0, .8)), to(rgba(0, 0, 0, .4)));
    background: linear-gradient(to right, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .8) 31%, rgba(0, 0, 0, .4) 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc000000', endColorstr='#66000000',GradientType=1 );
        /* IE6-9 */
  }

  #dashboard-carousel .sub-title {
    font-size: 1.6rem;
  }

  #dashboard-carousel .excerpt {
    display: none;
  }

  #dashboard-carousel .item {
    height: 260px;
  }

  #dashboard-abonnement {
    text-align: center;
  }

  #dashboard-abonnement .title {
    margin: 20px;
  }

  #dashboard-abonnement .contact-content {
    border: none;
  }

  #dashboard-abonnement .photo-content {
    margin: 20px;
  }

  #dashboard-abonnement .info-content {
    margin-top: 20px;
    border-top: 1px solid #e9e9e9;
  }
}

#header {
  height: 66px;
  padding: 10px 0;
  color: #adadad;
}

#header a {
  text-decoration: none;
  color: #adadad;
}

#header .navbar {
  margin-bottom: 0;
}

#header .navbar > li {
  display: inline-block;
  float: none;
  vertical-align: middle;
}

#header .navbar > li > a {
  padding: 0;
  text-decoration: none;
  color: #adadad;
}

#header .navbar > li > a img {
  max-width: 100%;
}

#header .nav-hhs {
  float: left;
  margin: 0 15px 0 0;
}

#header .navbar-lang {
  float: right;
  text-align: right;
}

#header .navbar-compte {
  float: right;
}

#header .navbar-compte li {
  display: inline-block;
}

#header .nav-compte div {
  display: inline-block;
}

#header .nav-compte-texte {
  font-weight: 400;
  display: inline-block;
  margin-right: 10px;
  color: #555;
}

#header .nav-compte-image {
  font-size: 20px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  margin: 5px 0;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
  border-radius: 50%;
  background: #34b4bc;
}

body.header-big #header {
  height: 100px;
  padding: 25px 0;
}

#header.connected .navbar-lang {
  float: left;
}

#logo-header {
  max-height: 60px;
}

@media screen and (max-width: 991px) {
  #header {
    z-index: 100;
    overflow: hidden;
    width: 100%;
    height: 56px;
    padding: 3px 0;
    color: #fff;
    background: #34b4bc;
  }

  body.header-big #header {
    overflow: hidden;
    height: 66px;
    padding: 10px 0;
  }

  #header h1 {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 5.2rem;
    margin: 0;
    color: #fff;
  }

  #header a {
    color: #fff;
  }

  #logo-header {
    max-width: 200px;
    padding: 7px 0;
  }
}

body.liste-resultats h2 strong {
  color: #34b4bc;
}

body.liste-resultats #loading {
  position: relative;
  top: inherit;
  left: inherit;
  -webkit-transform: none;
          transform: none;
}

body.liste-resultats #btn-new-search {
  margin-bottom: 30px;
  padding: 20px;
}

body.liste-resultats button[name=ouvre-modal] {
  margin-bottom: 30px;
}

#liste-contacts {
  font-weight: 400;
}

#liste-contacts a {
  text-decoration: none;
  color: inherit;
}

#liste-contacts > thead > tr > th {
  font-weight: 400;
  padding: 20px 14px;
  border-color: #f2f2f2;
  border-right: 1px solid #f2f2f2;
  border-bottom: 0 !important;
  -webkit-box-shadow: inset -1px 0 0 0 #ff8330;
          box-shadow: inset -1px 0 0 0 #ff8330;
}

#liste-contacts > tbody {
  font-size: 1.2rem;
}

#liste-contacts > tbody > tr > td {
  line-height: 1.2;
  border: 1px solid #f2f2f2;
}

#liste-contacts td {
  color: #000;
}

#liste-contacts td > div {
  margin-bottom: 5px;
}

#liste-contacts .td-contact {
  font-size: 1.1rem;
  width: 22.9%;
}

#liste-contacts .td-societe {
  width: 14.09%;
}

#liste-contacts .td-fonction {
  width: 14.52%;
}

#liste-contacts .td-formation {
  width: 21.4%;
}

#liste-contacts .td-statut {
  width: 15.27%;
}

#liste-contacts .td-actions {
  width: 6.45%;
}

#liste-contacts .td-actions a {
  font-size: 2rem;
  display: block;
}

#liste-contacts .strong {
  font-weight: 400;
  color: #000;
}

#liste-contacts .info {
  color: #838383;
}

#liste-contacts .nom {
  font-size: 1.3rem;
  font-weight: 500;
  color: #34b4bc;
}

#liste-contacts .reseaux-sociaux .icon {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 13px;
  height: 13px;
  text-align: center;
  text-indent: -999px;
}

#liste-contacts .reseaux-sociaux .icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-indent: 0;
}

#liste-contacts .reseaux-sociaux .icon-google-plus {
  color: #dd4b39;
}

#liste-contacts .reseaux-sociaux .icon-linkedin {
  color: #007bb6;
}

#liste-contacts .reseaux-sociaux .icon-facebook {
  color: #3b5998;
}

#liste-contacts .reseaux-sociaux .icon-twitter {
  color: #00aced;
}

#liste-contacts .icon-star {
  color: #34b4bc;
}

#btn-more-results {
  font-weight: 600;
  margin-bottom: 30px;
  padding: 20px;
  color: #aeb2bb;
  border: 1px solid #aeb2bb;
}

#recherche-favorite {
  padding-bottom: 20px;
}

#recherche-title {
  display: inline-block;
}

#recherche-title .btn:hover,
#recherche-title .btn:focus,
#recherche-title .btn.focus {
  opacity: 1;
  color: inherit;
}

#left-column #recherche-favorite {
  margin-top: 20px;
}

#left-column #recherche-favorite h2 {
  width: calc( 100% - 26px);
  margin: 0;
}

#left-column #recherche-favorite h2 textarea {
  font-size: 1.8rem;
  overflow: hidden;
  width: 100%;
  margin-bottom: 10px;
  resize: none;
  color: #34b4bc;
  border: 0;
  background: transparent;
}

#left-column #recherche-favorite h2 textarea:redaonly {
  pointer-events: none;
}

#left-column #recherche-favorite h2 textarea:focus-within {
  color: #fff;
}

#left-column #recherche-favorite h2 textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
  color: #34b4bc;
}

#left-column #recherche-favorite h2 textarea::-moz-placeholder {
    /* Firefox 19+ */
  color: #34b4bc;
}

#left-column #recherche-favorite h2 textarea:-ms-input-placeholder {
    /* IE 10+ */
  color: #34b4bc;
}

#left-column #recherche-favorite h2 textarea:-moz-placeholder {
    /* Firefox 18- */
  color: #34b4bc;
}

#left-column #recherche-favorite h2 textarea:focus::-webkit-input-placeholder {
  -webkit-transition: opacity .5s .5s ease;
  transition: opacity .5s .5s ease;
  opacity: 0;
}

#recherche-favorite-button {
  font-size: 1.6rem;
  width: 21px;
  padding: 3px 0;
  vertical-align: top;
}

#recherche-favorite-button:hover {
  color: inherit;
}

#editer-recherche .btn {
  margin: 0;
}

#editer-recherche input:disabled {
  opacity: .8;
}

.groupe {
  margin-left: 10px;
  padding-top: 10px;
  padding-left: 25px;
  border-left: 3px solid #ddd;
}

.groupe .row {
  margin-top: 20px;
  margin-bottom: 20px;
}

.groupe label {
  width: 100px;
}

.groupe .operateurgroupe {
  font-size: small;
  margin-left: -25px;
  padding: 6px;
  border-color: #ddd;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #ddd;
}

.groupe .ajoutCritere {
  font-size: small;
    /* margin-top: 10px; */
  margin-left: -25px;
  padding: 6px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.groupe input[data-typesaisie='text'] {
  width: 200px;
}

.groupe ul.multiselect-container {
  width: 400px;
}

div.tab-content {
  padding-top: 10px;
}

div[name=operateurGroupe] {
  margin-bottom: 10px;
  padding-left: 15px;
}

div.categoriegroupe {
  position: relative;
  padding-top: 10px;
  text-align: center;
}

div.categoriegroupe:after,
div.categoriegroupe:before {
  position: absolute;
  top: 19px;
  width: 40%;
  height: 1px;
  content: '';
  background-color: #777;
}

div.categoriegroupe:after {
  right: 0;
  background-image: -webkit-gradient(linear, right top, left top, from(#777), to(#fff));
  background-image: linear-gradient(to left, #777, #fff);
}

div.categoriegroupe:before {
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#777), to(#fff));
  background-image: linear-gradient(to right, #777, #fff);
}

#recherche-avancee label {
  font-weight: 400;
}

#recherche-avancee .panel {
  border-width: 0 0 1px 0;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#recherche-avancee .panel-heading {
  font-size: 1.6rem;
  padding: 0;
  color: #34b4bc;
  border: 0;
  background-color: #ebebeb;
}

#recherche-avancee .panel-heading .panel-title > * {
  display: none;
  padding: 15px;
}

#recherche-avancee .panel-body {
  border: 0;
}

#recherche-avancee .panel-group .panel + .panel {
  margin-top: -1px;
}

#recherche-avancee .form-inline .btn {
  margin-left: 5px;
}

#recherche-avancee-tab .nav-tabs > li.active > a {
  background: #f2f2f2;
}

#recherche-avancee-tab .nav-tabs > li.active > a:hover,
#recherche-avancee-tab .nav-tabs > li.active > a:focus {
  background: #f2f2f2;
}

#recherche-avancee-tab .tab-pane {
  background: #f2f2f2;
}

#recherche-avancee-tab .input-daterange > .input-group-addon:first-child {
  border-left-width: 1px;
}

#recherche-avancee-extra-tabs {
  margin: 20px auto;
}

#recherche-avancee-extra-tabs .nav-tabs {
  width: 100%;
}

#recherche-avancee-extra-tabs .nav-tabs > li {
  float: none;
  padding: 0;
  vertical-align: middle;
  border-top: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  border-bottom: 1px solid #c2c2c2;
  border-left: 1px solid #ebebeb;
  background: #ebebeb;
}

#recherche-avancee-extra-tabs .nav-tabs > li.active {
    /*border-top: 1px solid $hhs-color-grey-hover;
                border-right: 1px solid $hhs-color-grey-hover;
                border-left: 1px solid $hhs-color-grey-hover;
                border-bottom: 1px solid $hhs-color-grey-hover;*/
  border: 1px solid #fff;
  border-bottom: 1px solid #f4f4f4;
  background: #fff;
}

#recherche-avancee-extra-tabs .nav-tabs > li a {
  font-weight: 400;
  display: block;
  padding: 16px;
  text-decoration: none;
  color: #000;
  border: none !important;
  background: transparent;
}

#recherche-avancee-extra-tabs .nav-tabs > li .icon:before {
  font-size: 2.4rem;
  margin-right: 5px;
  vertical-align: middle;
}

#recherche-avancee-extra-tabs .tab-content {
  overflow: auto;
  height: 350px;
    /*border-left: 1px solid $hhs-color-grey-hover;
        border-right: 1px solid $hhs-color-grey-hover;
        border-bottom: 1px solid $hhs-color-grey-hover;*/
  margin-bottom: 30px;
  padding: 0;
}

#recherche-avancee-extra-tabs .glyphicon-star {
  font-size: 3rem;
  line-height: 5rem;
  color: #34b4bc;
}

#recherche-avancee-extra-tabs .date {
  font-size: 1.3rem;
  color: #777;
}

#recherche-avancee-extra-tabs .description {
  margin-bottom: 0;
}

#recherche-avancee-extra-tabs .tooltip {
  text-align: left;
}

#recherche-avancee-extra-tabs .dashboard-list {
  color: #777;
}

#recherche-avancee-extra-tabs .dashboard-list > ul {
  margin-bottom: 0;
}

#recherche-avancee-extra-tabs .dashboard-list > ul > li {
  font-size: 1.3rem;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
}

#recherche-avancee-extra-tabs .dashboard-list > ul > li.row {
  padding: 0;
}

#recherche-avancee-extra-tabs .dashboard-list > ul > li:nth-child(odd) {
  background: #fafafa;
}

#recherche-avancee-extra-tabs .dashboard-list > ul > li:nth-child(even) {
  background: #fff;
}

#recherche-avancee-extra-tabs .dashboard-list > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0;
  -ms-flex-line-pack: center;
      align-content: center;
}

#recherche-avancee-extra-tabs .dashboard-list .primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: middle;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

#recherche-avancee-extra-tabs .dashboard-list .primary a {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

#recherche-avancee-extra-tabs .dashboard-list .primary .avatar {
  padding-left: 16px;
  -ms-flex-item-align: center;
      align-self: center;
}

#recherche-avancee-extra-tabs .dashboard-list .primary .avatar svg {
  display: inline-block;
  width: 32px;
  height: 32px;
  padding: 2px;
}

#recherche-avancee-extra-tabs .dashboard-list .primary .avatar .nav-compte-image {
  font-size: 20px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  margin: 5px 0;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
  border-radius: 50%;
  background: #a6a6a6;
}

#recherche-avancee-extra-tabs .dashboard-list .primary .text {
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  -ms-flex-item-align: center;
      align-self: center;
}

#recherche-avancee-extra-tabs .dashboard-list .primary .text ul.criteres {
  overflow: hidden;
  height: 17px;
}

#recherche-avancee-extra-tabs .dashboard-list .primary .icon,
#recherche-avancee-extra-tabs .dashboard-list .primary .glyphicon {
  font-size: 2.6rem;
  color: #34b4bc;
}

#recherche-avancee-extra-tabs .dashboard-list .secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-left: 1px solid #f4f4f4;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#recherche-avancee-extra-tabs .dashboard-list .secondary a {
  font-size: 1.5rem;
  line-height: 2rem;
}

#recherche-avancee-extra-tabs .dashboard-list .secondary a .icon-closeb {
  font-size: 1.3rem;
}

#recherche-avancee-extra-tabs .dashboard-list .secondary .icon {
  font-size: 1.6rem;
  line-height: 48px;
  display: block;
  width: 48px;
  height: 48px;
  text-align: center;
  opacity: .4;
}

#recherche-avancee-extra-tabs .dashboard-list .secondary .icon:hover {
  opacity: .8;
}

#recherche-avancee-extra-tabs .dashboard-list .secondary .icon:hover:focus {
  opacity: 1;
}

#recherche-avancee-extra-tabs .dashboard-list .title {
  font-weight: 500;
  margin: 0;
  color: #000;
}

#containeur-groupe-standard button {
  background: #fff;
}

#recherches-favoris .tooltip,
#recherches-historiques .tooltip {
  text-align: left;
}

#recherches-favoris .tooltip .tooltip-inner,
#recherches-historiques .tooltip .tooltip-inner {
  max-width: 350px;
  text-align: left;
  color: #fff;
    /* If max-width does not work, try using width instead */
}

#recherches-favoris .tooltip .tooltip-inner .description,
#recherches-historiques .tooltip .tooltip-inner .description {
  color: #fff;
}

#blockStandardEnregistrerRecherche {
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  #recherche-avancee-extra-tabs .secondary,
    #recherche-avancee-extra-tabs .extra {
    margin-top: 20px;
    text-align: left;
  }

  #recherche-avancee-extra-tabs .secondary a,
    #recherche-avancee-extra-tabs .extra a {
    padding: 5px;
    vertical-align: middle;
  }
}

#recherche-rapide {
  position: relative;
  width: 0;
  -webkit-transition: .2s cubic-bezier(.4, 0, .2, 1);
  transition: .2s cubic-bezier(.4, 0, .2, 1);
}

#recherche-rapide input {
  width: 0;
  padding: 8px 0;
  color: #000;
  border: 0;
  background: transparent;
}

#recherche-rapide input:focus {
  outline: 0;
}

#recherche-rapide input:disabled {
  opacity: .5;
}

#recherche-rapide .recherche-rapide-fermer {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: -7px;
  display: none;
  cursor: pointer;
  -webkit-transition: .2s cubic-bezier(.4, 0, .2, 1);
  transition: .2s cubic-bezier(.4, 0, .2, 1);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}

#recherche-rapide .recherche-rapide-envoyer {
  font-size: 2.3rem;
  position: absolute;
  top: 50%;
  right: -18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #34b4bc;
  border: 0;
  background: transparent;
}

#recherche-rapide .recherche-rapide-envoyer:focus {
  outline: 0;
}

#recherche-rapide .recherche-rapide-envoyer:before {
  vertical-align: text-top;
}

#recherche-rapide .recherche-rapide-envoyer:disabled {
  opacity: .2;
  color: #000;
}

#recherche-rapide.active {
  width: 250px;
  margin-right: 20px;
}

#recherche-rapide.active input {
  width: 100%;
  border-bottom: 1px solid #adadad;
}

#recherche-rapide.active .recherche-rapide-fermer {
  display: block;
  opacity: 1;
}

#form-recherche-rapide button {
  position: relative;
  overflow: hidden;
  width: 48px;
  text-indent: -999px;
}

#form-recherche-rapide button:before {
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-indent: 0;
}

body.resultat dl {
  margin: 20px 0;
}

body.resultat #left-column-wrapper {
  max-width: 222px;
}

#photo-profil-column {
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
}

#photo-profil-column:before {
  display: block;
  padding-top: 100%;
  content: '';
}

#photo-profil-column .socials {
  position: relative;
  bottom: 0;
}

#info-profil-column {
  margin-top: 20px;
}

#resultat-information-contact {
  padding: 20px 15px 20px;
}

#profil-extra-boutons {
  padding: 15px;
}

#profil-extra-boutons .btn-icon {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-left: 7px;
  text-align: center;
  text-indent: -999px;
}

#profil-extra-boutons .btn-icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-indent: 0;
}

#profil-extra-boutons .lien-back {
  line-height: 3;
}

#profil-extra-boutons .lien-back .glyphicon-triangle-left:before {
  font-size: 1rem;
}

#resultat-commentaires {
  background: #fff;
}

#resultat-commentaires h2 {
  font-size: 1.7rem;
  font-weight: 400;
  color: #34b4bc;
}

#resultat-commentaires h2:before {
  display: none;
}

#resultat-commentaires svg {
  width: 40px;
  padding: 5px;
  border: 1px solid #b8b8b8;
  border-radius: 50%;
  fill: #b8b8b8;
}

#resultat-commentaires .dashboard-list .text {
  word-break: break-word;
}

#resultat-commentaires .dashboard-list .title {
  font-weight: 400;
}

#resultat-commentaires .dashboard-list .icon {
  color: #b8b8b8;
  border: none;
  background: none;
}

#resultat-commentaires .dashboard-list .img {
  text-align: center;
}

#resultat-commentaires .dashboard-list .date {
  font-size: 1rem;
}

#resultat-commentaires-form label {
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  body.resultat #left-column-wrapper {
    max-width: 100%;
  }
}

#liste-contacts thead {
  color: #fff;
  background: #34b4bc;
}

/*
* HeadHunterSourcing and Profil & Talent Main common SCSS
* Use Gulp to compile this file to CSS
* See gulpfile.js in root folder
* command line : $ gulp
*	! Important !
*	Mettre toutes les tailles de polices + line-height en rem. 
*	Grâce à l'astuce html{font-size: 62.5%;}, la conversion est très simple : ex: 12px = 1.2rem
*
*/
.svg-businessman-5,
.svg-businessman-highlighted,
.svg-group,
.svg-group-2,
.svg-networking,
.svg-strategy-2,
.svg-target
{
    background: url('../../images/svgsprite/sprite.svg') no-repeat;
}

.svg-businessman-5
{
    background-position: 0 0;
}

.svg-businessman-5-dims
{
    width: 32px;
    height: 32px;
}

.svg-businessman-highlighted
{
    background-position: 50% 0;
}

.svg-businessman-highlighted-dims
{
    width: 32px;
    height: 32px;
}

.svg-group
{
    background-position: 0 50%;
}

.svg-group-dims
{
    width: 32px;
    height: 32px;
}

.svg-group-2
{
    background-position: 50% 50%;
}

.svg-group-2-dims
{
    width: 32px;
    height: 32px;
}

.svg-networking
{
    background-position: 100% 0;
}

.svg-networking-dims
{
    width: 32px;
    height: 32px;
}

.svg-strategy-2
{
    background-position: 100% 50%;
}

.svg-strategy-2-dims
{
    width: 32px;
    height: 32px;
}

.svg-target
{
    background-position: 0 100%;
}

.svg-target-dims
{
    width: 32px;
    height: 32px;
}

html,
body
{
    height: 100%;
}

html
{
    font-size: 62.5%;
}

body
{
    font-size: 1.4em;
    font-weight: 300;
    line-height: 1.4;
}

a
{
    text-decoration: underline;

    color: #fc9803;
}

a:hover
{
    text-decoration: underline;

    color: #52c9d0;
}

a:focus
{
    outline: none;
}

h2
{
    font-size: 2.2rem;
    font-weight: 400;
}

h3
{
    font-size: 1.9rem;
    font-weight: 400;
}

/* Fix Chrome autocomplete yellow background */
input:-webkit-autofill
{
    color: inherit !important;
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
}

input:placeholder
{
    opacity: .9;
    color: inherit;
}

label
{
    font-weight: 300;
}

input[type='radio']
{
    vertical-align: middle;
}

.radio label,
.checkbox label,
[type=radio] + label,
[type=checkbox] + label
{
    color: #000;
}

.btn
{
    text-transform: uppercase;
}

.btn.text-default
{
    color: #263544;
}

.btn.text-primary
{
    color: #34b4bc;
}

.btn.text-success
{
    color: #00d255;
}

.btn.text-info
{
    color: #5bc0de;
}

.btn.text-warning
{
    color: #f0ad4e;
}

.btn.text-danger
{
    color: #d9534f;
}

.btn:hover
{
    opacity: .8;
}

.btn:hover.text-default
{
    color: #263544;
}

.btn:hover.text-primary
{
    color: #34b4bc;
}

.btn:hover.text-success
{
    color: #00d255;
}

.btn:hover.text-info
{
    color: #5bc0de;
}

.btn:hover.text-warning
{
    color: #f0ad4e;
}

.btn:hover.text-danger
{
    color: #d9534f;
}

a.btn,
.btn a,
.dropdown-menu a
{
    text-decoration: none;
}

.form-control[readonly]
{
    font-size: 1em;

    border: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.input-group-btn > .btn
{
    margin: 0;
}

.table-striped > tbody > tr:hover
{
    background-color: #c2daed;
}

.table-striped > tbody > tr:nth-of-type(odd)
{
    background-color: #e9e9e9;
}

.table-striped > tbody > tr:nth-of-type(odd).bg-success
{
    background-color: #dff0d8;
}

.table-striped > tbody > tr:nth-of-type(odd).bg-info
{
    background-color: #d9edf7;
}

.table-striped > tbody > tr:nth-of-type(odd).bg-warning
{
    background-color: #fcf8e3;
}

.table-striped > tbody > tr:nth-of-type(odd).bg-danger
{
    background-color: #f2dede;
}

.table-striped > tbody > tr:nth-of-type(odd):hover
{
    background-color: #c2daed;
}

.modal-footer .btn
{
    margin-bottom: 5px;
}

.modal-footer .btn + .btn
{
    margin-bottom: 5px;
}

.badge
{
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.2;

    min-width: 7px;
    padding: 1px 4px;

    background-color: #d9534f;
}

.nav-tabs
{
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.stylish-side-nav li
{
    background: transparent;
}

.admin-side-nav.stylish-side-nav li
{
    border-bottom: 0;
    background: inherit;
}

.sticky
{
    position: fixed;
    top: 0;
}

.sticky-relative
{
    position: relative;
    top: 0;
}

@-webkit-keyframes spinner
{
    to
    {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spinner
{
    to
    {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

#loader
{
    position: fixed;
    z-index: 1100;

    width: 100%;
    height: 100%;

    background-color: rgba(254, 254, 254, .3);
}

#loading
{
    position: absolute;
    top: 50%;
    left: 50%;

    width: 80px;
    height: 80px;
    margin: 20px auto;

    -webkit-transform: translate(-50%, -50%);

            transform: translate(-50%, -50%);
}

#loading:after
{
    position: absolute;

    -webkit-box-sizing: border-box;

            box-sizing: border-box;
    width: 80px;
    height: 80px;

    content: '';
    -webkit-animation: spinner .6s linear infinite;
            animation: spinner .6s linear infinite;

    border: 5px solid transparent;
    border-top-color: #aeb2bb;
    border-left-color: #aeb2bb;
    border-radius: 50%;
}

#loading span
{
    font-size: .9rem;
    font-weight: 800;

    position: absolute;
    top: 50%;
    left: 50%;

    -webkit-transform: translate(-50%, -50%);

            transform: translate(-50%, -50%);
    text-transform: uppercase;

    color: #aeb2bb;
}

.babillard
{
    margin-bottom: 20px;
}

.babillard span
{
    font-size: 3.5rem;

    display: inline-block;

    margin-left: 2px;
    padding: 15px 6px;

    color: #fff;
    border-radius: 2px;
    background-color: #191919;
    -webkit-box-shadow: 0 1px rgba(255, 255, 255, .05), inset 0 1px 4px rgba(0, 0, 0, .85);
            box-shadow: 0 1px rgba(255, 255, 255, .05), inset 0 1px 4px rgba(0, 0, 0, .85);
}

.hr:after
{
    display: block;

    width: 100%;
    height: 2px;

    content: '';

    border-top: 1px solid #c2c2c2;
    border-bottom: 1px solid #fff;
}

.scroll-down
{
    position: absolute;
    bottom: 20px;
    left: 50%;

    margin: auto;

    -webkit-transform: translate(-50%, 0);

            transform: translate(-50%, 0);
    text-align: center;

    color: #fff;
}

.scroll-down a
{
    color: #fff;
}

.scroll-down span
{
    display: block;
}

.scroll-down .icon-mouse
{
    font-size: 5rem;
}

.scroll-down .icon-arrow-down
{
    font-size: 2.3rem;
}

.message,
.form-notification
{
    margin-bottom: 10px;
    padding: 15px;
}

.nopadding
{
    min-height: 0;
    margin: 0 !important;
    padding: 0 !important;
}

.flex
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.chart
{
    width: 100%;
}

.plus
{
    position: relative;

    float: right;

    width: 14px;
    height: 14px;
    /* Vertical line */
    /* horizontal line */
}

.plus:before,
.plus:after
{
    position: absolute;

    content: '';
    -webkit-transition: -webkit-transform .25s ease-out;
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out, -webkit-transform .25s ease-out;

    background-color: #34b4bc;
}

.plus:before
{
    top: 0;
    left: 50%;

    width: 2px;
    height: 100%;
    margin-left: -1px;
}

.plus:after
{
    top: 50%;
    left: 0;

    width: 100%;
    height: 2px;
    margin-top: -1px;
}

*[aria-expanded='true'] .plus
{
    cursor: pointer;
}

*[aria-expanded='true'] .plus:before
{
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}

*[aria-expanded='true'] .plus:after
{
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.column-style
{
    background: #282828;
}

.column-style h2
{
    font-size: 1.6rem;
    font-weight: 400;

    color: #34b4bc;
}

.column-style label
{
    font-size: 1.3rem;
    font-weight: 300;

    color: #fff;
}

.column-style input
{
    color: #fff;
    border-color: #fff;
    background: transparent;
}

.column-style .btn
{
    white-space: normal;
}

.btn-primary
{
    border-color: #34b4bc;
    background: #34b4bc;
}

.btn-primary:hover
{
    border-color: #52c9d0;
    background: #52c9d0;
}

.btn-default
{
    color: #fff;
    border-color: #263544;
    background: #263544;
}

.btn-default:hover
{
    color: #fff;
    border-color: #263544;
    background: #263544;
}

.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary:active.focus,
.btn-primary.active:hover,
.btn-primary.active:focus,
.btn-primary.active.focus,
.open > .btn-primary.dropdown-toggle:hover,
.open > .btn-primary.dropdown-toggle:focus,
.open > .btn-primary.dropdown-toggle.focus
{
    border-color: #52c9d0;
    background: #52c9d0;
}

.btn-icon
{
    width: 45px;
    height: 45px;

    border: 1px solid #b8b8b8;
    border-radius: 4px;
    background: #fff;
}

.nav-tabs > li a
{
    text-decoration: none;
}

.carousel .carousel-indicators
{
    border-color: #34b4bc;
}

.carousel .carousel-indicators .active
{
    background: #34b4bc;
}

.dl-horizontal dt
{
    font-weight: 300;

    white-space: normal;

    color: #777;
}

.dl-horizontal dd
{
    font-weight: 400;

    margin-bottom: 15px;
}

.datepicker
{
    border-radius: 0;
}

.md-icon-small
{
    font-size: 1.6rem;
    line-height: 48px;

    width: 48px;
    height: 48px;

    text-align: center;
}

.owl-prev
{
    position: absolute;
    top: 50%;
    left: 0;

    -webkit-transform: translateY(-50%);

            transform: translateY(-50%);
}

.owl-next
{
    position: absolute;
    top: 50%;
    right: 0;

    -webkit-transform: translateY(-50%);

            transform: translateY(-50%);
}

#sidenav-btn
{
    font-size: 2rem;

    padding: 15px 20px 15px 0;
}

#footer .links
{
    padding: 15px;
}

#footer .links a
{
    text-decoration: underline;

    color: #000;
}

#footer .socials
{
    padding: 15px;
}

#footer .socials .icon
{
    font-size: 2.6rem;

    position: relative;

    display: inline-block;
    overflow: hidden;

    width: 46px;
    height: 46px;
    margin-left: 7px;

    text-align: center;
    text-indent: -999px;

    color: #000;
    border: 4px solid #000;
    border-radius: 50%;
}

#footer .socials .icon:before
{
    position: absolute;
    top: 50%;
    left: 50%;

    -webkit-transform: translate(-50%, -50%);

            transform: translate(-50%, -50%);
    text-indent: 0;
}

#content
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 100%;

    background: #f2f2f2;
}

#left-column
{
    height: 100%;
    padding: 0 15px;

    color: #fff;
    background: #282828;
}

#left-column h2
{
    font-size: 1.7rem;

    margin: 20px 0 25px;

    color: #34b4bc;
}

#left-column h3
{
    font-size: 1.6rem;

    color: #34b4bc;
}

#left-column label
{
    font-size: 1.3rem;
}

#left-column input
{
    font-size: 1.2rem;

    color: #fff;
    border-color: #a6a6a6;
    background: transparent;
}

#left-column .btn
{
    white-space: normal;
}

#left-column .radio label,
#left-column .checkbox label,
#left-column [type=radio] + label,
#left-column [type=checkbox] + label
{
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 2rem;

    color: #fff;
}

#left-column .block
{
    margin-bottom: 10px;

    border-bottom: 1px solid #3d3d3d;
    -webkit-box-shadow: inset 0 -1px 0 0 #1e1c1c;
            box-shadow: inset 0 -1px 0 0 #1e1c1c;
}

#left-column .socials
{
    padding: 15px 0;

    text-align: center;
}

#left-column .socials .icon
{
    font-size: 1.6rem;

    position: relative;

    display: inline-block;
    overflow: hidden;

    width: 32px;
    height: 32px;
    margin-left: 2px;

    text-align: center;
    text-indent: -999px;

    color: #fff;
    border-radius: 50%;
}

#left-column .socials .icon:before
{
    position: absolute;
    top: 50%;
    left: 50%;

    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-indent: 0;
}

#left-column .socials .icon-google-plus
{
    background: #dd4b39;
}

#left-column .socials .icon-facebook
{
    background: #3b5998;
}

#left-column .socials .icon-twitter
{
    background: #00aced;
}

#left-column .socials .icon-linkedin
{
    background: #007bb6;
}

#left-column .form-control-static
{
    min-height: auto;
    padding: 0;

    color: #34b4bc;
}

#left-column .dl-horizontal dt
{
    width: 40%;
}

#left-column .dl-horizontal dd
{
    margin-left: 45%;
}

@media screen and (min-width: 992px)
{
    #conteneur
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        width: 100%;
        min-height: calc(100% - 66px);
        padding: 0;

        -webkit-box-align: stretch;

            -ms-flex-align: stretch;

                align-items: stretch;
    }
    #conteneur > .row
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        width: 100%;
        min-height: 100%;
        margin: 0;

        -webkit-box-flex: 1;

            -ms-flex: 1;

                flex: 1;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
    }
    #footer
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        min-height: 100px;

        -webkit-box-align: center;

            -ms-flex-align: center;

                align-items: center;
    }
    #footer .socials
    {
        float: right;

        text-align: right;
    }
}

@media screen and (max-width: 991px)
{
    #navbar-header
    {
        display: inline-block;
        float: none;

        width: 150px;

        vertical-align: middle;
    }
    #footer
    {
        text-align: center;
    }
    #content
    {
        display: block;
    }
}

#form-connexion
{
    margin-bottom: 64px;
}

#form-connexion a
{
    display: inline-block;

    padding: 5px;
}

body.fiche-profil #left-column .form-group
{
    margin-bottom: 20px;
}

body.fiche-profil #left-column #profil-score-img
{
    max-width: 140px;
    max-height: 140px;
    margin: 20px auto 10px;
}

body.fiche-profil #profil-donut-chart
{
    width: 140px;
    max-width: 100%;
    height: 140px;
}

body.fiche-profil #profil-score-img
{
    min-height: inherit;
}

body.fiche-profil .cadreConseil
{
    margin-bottom: 20px;
    padding: 4px;

    border-top: 1px solid #666;
    border-right: 0;
    border-bottom: 0;
    border-left: 1px solid #666;
}

body.fiche-profil h2
{
    font-size: large;

    color: #666;
}

body.fiche-profil .titreTlVertical
{
    display: inline;
}

body.fiche-profil .tlHorizontal
{
    margin-bottom: 10px;
}

body.fiche-profil .elementtlh
{
    display: inline-block;

    width: 60px;
    margin-right: 10px;
    margin-left: 10px;

    text-align: center;
    vertical-align: text-top;
}

body.fiche-profil .numerotl
{
    width: 40px;
    height: 40px;
    padding: 8px;

    text-align: center;

    color: #666;
    border: 2px solid #666;
    border-radius: 50%;
    background: #fff;
    /* font: 32px Arial, sans-serif; */
}

body.fiche-profil .numerotl.focus
{
    color: #fff;
    border: 2px solid #666;
    background: #666;
}

body.fiche-profil .tlVertical
{
    overflow-x: hidden;
    overflow-y: auto;
    /*height: 650px;*/
}

body.fiche-profil .numerotlv
{
    display: inline-block;

    margin-left: -41px;
}

body.fiche-profil .titretlh
{
    font-size: 10px;

    margin-top: 10px;
}

body.fiche-profil div.message-enregistrement-reussi,
body.fiche-profil div.message-enregistrement-echec
{
    position: fixed;
    z-index: 1000;
    right: 20px;
    bottom: 20px;

    display: none;

    width: 200px;
    /*border: 3px solid #73AD21;*/
}

body.fiche-profil .fermeDrive
{
    float: right;
}

body.fiche-profil .groupe-composants-multiple
{
    margin-bottom: 4px;
    padding: 20px;

    background-color: #eee;
}

body.fiche-profil .groupe-composants
{
    margin-bottom: 38px;
}

body.fiche-profil .composant
{
    margin-bottom: 4px;
}

body.fiche-profil div.champ[data-type=conteneur_liste_texte],
body.fiche-profil .groupe-champ
{
    margin-bottom: 4px;
}

body.fiche-profil span.twitter-typeahead input[type='text']
{
    margin-bottom: 0;
}

body.fiche-profil .border-green,
body.fiche-profil .border-green:focus
{
    border-color: rgba(0, 168, 0, .8);
    outline: 0;
    outline: thin dotted \9;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 168, 0, .6);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 168, 0, .6);
}

body.fiche-profil .border-orange,
body.fiche-profil .border-orange:focus
{
    border-color: rgba(255, 127, 0, .8);
    outline: 0;
    outline: thin dotted \9;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(255, 127, 0, .6);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(255, 127, 0, .6);
}

body.fiche-profil .border-red,
body.fiche-profil .border-red:focus
{
    border-color: rgba(0, 168, 0, .8);
    outline: 0;
    outline: thin dotted \9;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 168, 0, .6);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 168, 0, .6);
}

body.fiche-profil .color-green
{
    color: rgba(0, 168, 0, .8);
}

body.fiche-profil .color-orange
{
    color: rgba(255, 127, 0, .8);
}

body.fiche-profil .color-red
{
    color: rgba(0, 168, 0, .8);
}

body.fiche-profil .col-lg-0
{
    display: none;
}

body.fiche-profil .groupe-composants-efface .btn
{
    font-size: 1.2rem;

    color: #adadad;
}

#fiche-profil-score-wrapper
{
    padding-bottom: 20px;
}

#fiche-profil-score-wrapper .score-area
{
    font-size: 1.7rem;

    text-align: center;

    color: #fff;
}

#fiche-profil-score-wrapper .score-area .score-resultat
{
    font-weight: 500;

    color: #34b4bc;
}

#blocCategorie_9
{
    min-height: 350px;
}

@media screen and (min-width: 767px) and (max-width: 992px)
{
    body.fiche-profil #left-column .form-group
    {
        display: inline-block;

        width: 45%;
        margin-bottom: 20px;

        vertical-align: top;
    }
}

body.index-pt input,
body.index-pt textarea
{
    font-weight: 300;

    color: #fff;
    border-radius: 0;
    background: transparent;
}

body.index-pt input,
body.index-pt button.btn
{
    display: inline-block;

    height: 55px;
}

body.index-pt input
{
    font-size: 1.5rem;

    padding: 10px;

    color: #fff;
    border-color: #fff;
}

body.index-pt button.btn
{
    font-size: 1.5rem;

    margin: 10px auto;

    border-radius: 0;
}

body.index-pt main
{
    font-size: 1.4rem;
    line-height: 1.7rem;
}

#home-block-1
{
    position: relative;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    min-height: 600px;

    background-image: url(../../images/pt/home_index_bg_1.jpg);
    background-position: 50% 50%;
    background-size: cover;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
}

#home-intro
{
    color: #fff;
}

#home-intro h1
{
    font-size: 4.5rem;
    font-weight: 600;
}

#home-intro h2
{
    font-size: 2.2rem;
    font-weight: 200;
    line-height: 2.4rem;
}

#home-intro .contact-metric
{
    font-size: 1.8rem;
    line-height: 2rem;

    margin-bottom: 35px;
}

#home-intro .babillard,
#home-intro .babillard-text
{
    display: inline-block;
}

#home-intro .info
{
    font-size: 1.5rem;
    font-weight: 200;
    font-style: italic;
    line-height: 1.7rem;
}

#home-intro .btn
{
    color: #000;
    background: #fff;
}

#home-login
{
    font-size: 1.2rem;
    line-height: 1.4rem;

    padding: 50px;

    text-align: center;

    color: #fff;
    color: #fff;
}

#home-login h3
{
    margin-bottom: 30px;

    text-transform: uppercase;
}

#home-login h3:before
{
    font-size: 4rem;

    display: block;

    margin-bottom: 8px;

    text-align: center;
}

#home-login .nav-tabs
{
    margin-bottom: 20px;

    border-bottom: 0;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
}

#home-login .nav-tabs li
{
    font-size: 1.5rem;
    line-height: inherit;

    display: inline-block;
    float: none;

    text-transform: uppercase;
}

#home-login .nav-tabs li.active a
{
    border-top: 0;
    border-right: 0;
    border-bottom: 2px solid #34b4bc;
    border-left: 0;
    background: transparent;
}

#home-login .nav-tabs li.active a:hover
{
    border: 0 solid transparent;
    border-bottom: 2px solid #34b4bc;
}

#home-login .nav-tabs li a
{
    display: inline-block;

    margin: 20px 32px;
    padding: 1px;

    text-decoration: none;
}

#home-login .nav-tabs li a:hover
{
    border: 1px solid transparent;
    background: transparent;
}

#home-login form p
{
    text-align: center;
}

#home-login input
{
    margin: -1px 0 0;

    text-align: center;

    color: #fff;
}

#home-login input[type='password']
{
    margin-bottom: 10px;
}

#home-login button
{
    font-size: 1.5rem;

    display: block;

    margin: 0 auto 20px;

    border-radius: 0;
    background: #34b4bc;
}

#home-login button:hover,
#home-login button:focus,
#home-login button.focus
{
    color: inherit;
}

#home-login a
{
    color: #fff;
}

#home-login #form_reset_email
{
    margin-bottom: 10px;
}

#home-login ::-webkit-input-placeholder
{
    opacity: .8;
    /* Chrome */
    color: #fff;
}

#home-login :-ms-input-placeholder
{
    opacity: .8;
    /* IE 10+ */
    color: #fff;
}

#home-login ::-moz-placeholder
{
    opacity: .8;
    /* Firefox 19+ */
    color: #fff;
}

#home-login :-moz-placeholder
{
    opacity: .8;
    /* Firefox 4 - 18 */
    color: #fff;
}

#home-description
{
    padding: 60px 0 60px;

    background: #f4f4f4;
}

#home-description h3
{
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 3.8rem;

    margin-bottom: 20px;

    text-align: center;
}

#home-description .intro
{
    font-size: 1.8rem;
    line-height: 2rem;

    margin-bottom: 35px;

    text-align: center;
}

#home-description h4
{
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2rem;

    margin-bottom: 25px;

    color: #fc9803;
}

#home-description .icon
{
    width: 100px;
    height: 100px;
    margin: auto;

    background-size: 200px 200px;
}

#form_inscription a
{
    display: inline-block;

    padding: 5px;
}

#form_inscription .form-notification
{
    margin: 0 0 10px;
    padding: 15px;
}

@media screen and (max-width: 1199px)
{
    #home-login .nav-tabs li a
    {
        margin: 20px 10px;
    }
}

@media screen and (max-width: 991px)
{
    #home-login
    {
        padding: 20px;
    }
}

#reset-mdp-block-wrapper
{
    position: relative;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    min-height: 600px;

    background-image: url(../../images/pt/home_index_bg_1.jpg);
    background-position: 50% 50%;
    background-size: cover;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
}

body.reset-mot-de-passe > header + div
{
    background: #f2f2f2;
}

#reset-mdp-block-wrapper
{
    position: relative;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    min-height: 600px;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
}

#reset-mdp-block
{
    padding: 15px;

    background: #fff;
}

#reset-mdp-block input
{
    color: #000;
    border: 1px solid #adadad;
}

#form_reset_confirm_password
{
    position: relative;
    top: -1px;
}

.dashboard-list .title
{
    color: #34b4bc;
}

#dashboard-profil .title
{
    font-size: 1.7rem;
    font-weight: 500;

    color: #34b4bc;
}

#dashboard-profil .score
{
    font-size: 15px;
}

#profil-score-img
{
    position: relative;

    min-height: 200px;
}

#profil-score-img img
{
    position: absolute;
    top: 50%;
    left: 50%;

    margin-left: 3px;

    -webkit-transform: translate(-50%, -50%);

            transform: translate(-50%, -50%);
}

#profil-score-img .icon-avatar
{
    font-size: 9rem;
    line-height: .8;

    position: absolute;
    top: 50%;
    left: 50%;

    margin-left: 3px;

    -webkit-transform: translate(-50%, -50%);

            transform: translate(-50%, -50%);

    color: #34b4bc;
}

#profil-score-img #avatar-svg
{
    position: absolute;
    top: 50%;
    left: 50%;

    max-width: 50%;
    max-height: 50%;
    margin-left: 3px;

    -webkit-transform: translate(-50%, -50%);

            transform: translate(-50%, -50%);

    fill: #34b4bc;
}

#profil-chart label strong
{
    font-size: 2.1rem;
    font-weight: 500;

    color: #34b4bc;
}

#dashboard-messages-pt .dashboard-list > ul
{
    max-height: 585px;
}

#profil-area-chart
{
    height: 240px;
}

#profil-carousel-recruteur .text
{
    font-size: 1.4rem;
    font-weight: 400;
}

#profil-carousel-recruteur .img-circle
{
    max-width: 45px;
    margin: auto;

    border: 1px solid #c2c2c2;
}

#profil-carousel-recruteur .owl-carousel
{
    width: 80%;
    margin: auto;
}

#profil-carousel-recruteur .icon
{
    font-size: 3.5rem;
}

#profil-carousel-recruteur .owl-item
{
    padding: 20px;

    text-align: center;
}

#profil-carousel-recruteur .owl-item a
{
    text-decoration: none;

    color: inherit;
}

#profil-carousel-recruteur .owl-prev
{
    left: -30px;
}

#profil-carousel-recruteur .owl-next
{
    right: -30px;
}

@media screen and (max-width: 991px)
{
    #header
    {
        background: #34b4bc;
    }
}

.btn-primary
{
    color: #fff;
    border-color: #34b4bc;
    background: #34b4bc;
}

.btn-primary:active,
.btn-primary:hover,
.btn-primary:focus
{
    color: #fff;
    border-color: #52c9d0;
    background: #52c9d0;
}

.btn-default
{
    color: #fff;
    border-color: #263544;
    background: #263544;
}

.btn-default:active,
.btn-default:hover,
.btn-default:focus
{
    color: #fff;
    border-color: #263544;
    background: #263544;
}

a
{
    text-decoration: underline;

    color: #34b4bc;
}

.dashboard-table table thead
{
    background: #34b4bc;
}

#header .nav-compte-image
{
    background: #34b4bc;
}

#left-column h2
{
    color: #34b4bc;
}

.dashboard-block h2.icon:before
{
    color: #34b4bc;
}

#dashboard-messages .title,
#dashboard-comments .title
{
    color: #34b4bc;
}

#dashboard-activity-infos .number
{
    color: #34b4bc;
}

@media screen and (min-width: 992px)
{
    #home-block-1 > .container > .row
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        -webkit-box-align: center;

            -ms-flex-align: center;

                align-items: center;
    }
}

@media screen and (max-width: 991px)
{
    #home-block-1 .smooth-scroll
    {
        position: relative;
    }
}
