#top-header{
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgb(46, 163, 242);
  color: white;
  height: 31px;
  padding: 6.5px;
  padding-left: 50px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1000;
}
#top-header #telephone{
  margin-left: 10%;
}
#top-header p{
  display: inline;
  float: left;
  margin-right: 10px;
  color: white;
}
#top-header a{
  color: white;
}
#top-header #plaquette{
  margin-left: 45%;
}

#mail a:hover, #plaquette a:hover, #conditions a:hover{
  color: rgba(255, 255, 255, 0.6);
}

#header{
  position: fixed;
  width: 100%;
  top: 31px;
  height: 50px;
  padding: 5px;
  border-bottom: 1px solid lightgrey;
  z-index: 1000;
  background-color: white;
}
#header img{
  height: 100%;
  margin-left: 50px;
}
#header #title{
  font-size: 25px;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
  color: rgb(102, 102, 102);
  display: inline;
  margin-left: 30px;
}

.glyphicon{
  position: static;
  vertical-align: middle;
}

/*==SCROLLBAR==*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}


/* Animations de chargement */
/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.fifth {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.fadeIn.sixth {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.seventh {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.fadeIn.eightth {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

#top-header .glyphicon{
  margin-right: 5px;
}

.menu{
  float: right;
  z-index: 2000;
}

.dropdown-menu li h5{
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
  font-weight: bold;
  text-align: center;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: rgb(46, 163, 242);
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}


/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

::selection {
  background: rgb(46, 163, 242); /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: rgb(46, 163, 242); /* Gecko Browsers */
}

