/*
CSS DU MRV POUR PERSONNALISER BOOTSTRAP UNIQUEMENT
AUTEUR : WILLIAM LENOIR
*/

/***Navbar Background Color, Border Removed ,Border Radius Sqaure***/
.navbar.navbar-custom {
  background: #003478;
  border: none;
  border-radius: 0;
}
/***Link Color***/

.navbar.navbar-custom .navbar-nav > li > a {
  color: white;
}
/***Link Color Hover Statr***/

.navbar.navbar-custom .navbar-nav > li > a:hover {
  color: white;
  background: #CC0035;
}
/***Link Background and Color Active State***/

.navbar.navbar-custom .navbar-nav > .active,
.navbar.navbar-custom .navbar-nav > .active > a,
.navbar.navbar-custom .navbar-nav > .active > a:hover,
.navbar.navbar-custom .navbar-nav > .active > a:focus {
  background: #003478;
  color: white;
}

/* Empêche que la barre de navigation cache le contenu de la page */
body { padding-top: 70px; }

/* FORMULAIRE */
.form-horizontal{
  /* Pour le centrer dans la page */
  margin: 0 auto;
  /* Pour voir les limites du formulaire */
  padding: 1em;
  border: 1px solid #CCC;
  border-radius: 1em;
}


/* FOOTER */
.bg-4 {
    background-color: #2f2f2f;
    color: #ffffff;
}


.save-reports-btn{
  position: fixed;
  width: 200px;
  right: 20px;
  bottom: 20px;
}


.link_voyage{
  cursor: pointer;
}

.link_voyage--active{
  color: #CC0035;
  font-weight: bold;
  font-size: xx-large;
}


#go-back-btn{
  position: absolute;
  left: 10px;
  margin-top: 20px;
  text-transform: uppercase;
  color: black;
  font-weight: bold;
}

.modal-center{
  margin-top: 0;
  margin-bottom: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.d-flex{
  display: flex;
}