:root {
  --main-bg-color: #f8f9fa;
}

.navbar-erudit {
  background: rgba(255, 255, 255, 0);
  z-index: 999999999999;
}

.navbar-scroll-erudit {
  background: #fff;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  /* position: sticky; */
  top: 0px;
  width: 100%;
  display: block;
  z-index: 999999999999;
  box-shadow: 0 7px 27px 0 rgb(16 66 97 / 7%);
  animation-duration: 0.5s;
  animation-name: slid-down;
}

.container-erudit-100 {
  max-width: 100%;
}

@keyframes slid-down {
  from {
    box-shadow: 0 7px 27px 0 rgb(16 66 97 / 0%);
    background: rgba(255, 255, 255, 0);
  }

  to {
    box-shadow: 0 7px 27px 0 rgb(16 66 97 / 7%);
    background: rgb(255, 255, 255);
  }
}

.navbar-no-scroll-erudit {
  animation: slid-up 0.5s;
}

@keyframes slid-up {
  from {
    box-shadow: 0 7px 27px 0 rgb(16 66 97 / 7%);
    background: rgb(255, 255, 255);
  }

  to {
    box-shadow: 0 7px 27px 0 rgb(16 66 97 / 0%);
    background: rgba(255, 255, 255, 0);
  }
}

.nav-item {
  text-transform: uppercase;
  font-weight: bold;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
  color: #d64915;
}

.nav-link2 {
  text-decoration: none;
  color: #6c757d;
}

.navbar-light .navbar-nav .nav-link:hover, .list-unstyled .nav-link2:hover {
  color: #d64915;
}


/*** *** ***
toast
** *** **/
#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

#navbar .nav-link {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 500;
  letter-spacing: -.3px;
}

.vendez-votre-bien:hover {
  color: rgb(255, 255, 255) !important;
  background-color: rgb(255, 176, 57);
  cursor: pointer;
}

.vendez-votre-bien {
  background-color: rgb(255, 142, 13);
  border: 1px solid rgb(252, 214, 144);
  color: rgb(255, 255, 255) !important;
}