hr {
  border: 0;
  height: 1px;
  width: 10%;
  position: relative;
  margin: 30px auto;
}

hr.center-ball {
  background: #00dbde;
}

hr.center-ball:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #00dbde;
  display: inline-block;
  border: 2px solid #00dbde;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: 50%;
  margin: 0 0 0 -3px;
}

.login100-form-btn:hover {
  color: #fff;
}

.hidden {
  display: none;
}

.has-error > input, .has-error > textarea {
  border-color: red !important;
}

/* Le Wrap doit commencer au plus haut possible */ 
.wrap-login100 {
  position: fixed;
  top: 120px;
  width: 80%;
  margin-bottom: auto;
  margin-top: auto;
  max-height: 80%;
  overflow-y: scroll;
  overflow-x: hidden;
}

.index {
  width: 900px;
}

/* Si l'écran est plus petit que 900px en hauteur mais plus grand que 1024px en largeur, alors le wrap doit prendre la taille de l'écran */
@media (max-height: 900px) and (min-width: 1024px) {
  
  .wrap-login100 {
    max-height: 600px;
  }

}

@media (max-width: 1024px) {
  
  .wrap-login100 {
    width: 95%;
  }

  .hidden-mobile {
    display: none;
  }

}

/* la barre de scroll doit etre fine */
::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(rgba(45,191,221,1) 0%, rgba(172,15,155,1) 70%, rgba(172,15,155,1) 100%);
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #a8bbbf;
}

.menu {
  display: inline-flex;
  width: 80%;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  top: 40px;
}

.menu-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 8px;
}

.menu-item-link > i {
  font-size: 1.2em;
  color: #fff;
}

.menu-item-text {
  font-size: 1.2em;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Menu burger en haut à droite de la page */
.menu-burger {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  cursor: pointer;
  color: #fff;
  font-size: 1.5em;
  z-index: 3;
}

/* Cacher le menu par défaut */
.menu-mobile {
  display: none;
  visibility: hidden;
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 1024px) {
  .menu {
    display: none;
  }
  .menu-burger {
    display: block;
  }

  .wrap-login100 {
    margin-top: 50px;
    position: inherit;
  }

}

/* Afficher le menu lorsqu'il est activé */
.menu-mobile.active {
  display: block;
  visibility: visible;
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: min-content;
  background: #f8f8f8;
  border-left: solid 1px #000;
  border-bottom: solid 1px #000;
  padding-top: 60px;
  transition: transform 0.3s ease-in-out;
  z-index: 2;
}

/* Animation pour le bouton hamburger */
.menu-burger.active {
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
  color: #000;
}

.menu-mobile-item {
  display: block;
    padding: 5px 10px;
    border-bottom: #f8f8f8 solid 0.3px;
    background: #fff;
}

.menu-mobile-item:first-child {
  border-top: #000 solid 0.3px;
}

.menu-mobile-item:last-child {
  border-top: none;
}

.menu-mobile-item-link {
  color: #000;
  text-decoration: none;
  font-size: 1.2em;
  /* Aligner les élements */ 
  display: flex;
  align-items: center;
}

.menu-mobile-item-link:hover {
  color: #000;
  text-decoration: none;
}

.menu-mobile-item-link > i {
  font-size: 1.2em;
  color: #000;
  margin-right: 10px;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #858796;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.35rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-circle {
  border-radius: 100%;
  height: 2.5rem;
  width: 2.5rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-circle.btn-sm {
  height: 1.8rem;
  width: 1.8rem;
  font-size: .75rem;
}

.btn-primary {
  color: #fff;
  background-color: #4e73df;
  border-color: #4e73df;
}

/* Gestion bouton Microsoft */

.btn-microsoft {
  color: #fff;
  background-color: #464deb;
  border-color: #fff;
}

.btn-microsoft:hover {
  color: #fff;
  background-color: #3c3cde;
  border-color: #e6e6e6;
}

.btn-microsoft:focus, .btn-microsoft.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-microsoft.disabled, .btn-microsoft:disabled {
  color: #fff;
  background-color: #464deb;
  border-color: #fff;
}

.btn-microsoft:not(:disabled):not(.disabled):active, .btn-microsoft:not(:disabled):not(.disabled).active,
.show > .btn-microsoft.dropdown-toggle {
  color: #fff;
  background-color: #3c3cde;
  border-color: #dfdfdf;
}

.btn-microsoft:not(:disabled):not(.disabled):active:focus, .btn-microsoft:not(:disabled):not(.disabled).active:focus,
.show > .btn-microsoft.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}