#progress {
  height: 20px;
  width: 100%;
  margin-top: 0.6em;
}
.password-strength {
  height: 3px !important;
}

#progress-bar {
  width: 0%;
  height: 100%;
  transition: width 500ms linear;
}

.progress-bar-danger {
  background: #d00;
}

.progress-bar-warning {
  background: #f50;
}
#password-mismatch {
  background: yellow;
  position: absolute;
  padding: 2px;
}
.userCircle {
  height: 130px;
  width: 130px;
  border-radius: 50%;
  margin: auto;
}
.userCircle img {
  width: 130px;
  height: 130px;
  object-position: center center;
  object-fit: cover;
  border-radius: 50%;
}
.message_container {
  position: absolute;
  right: 10px;
}

.user-circle {
  width: 150px;
  height: 150px;
  border: 2px solid hsl(195, 100%, 45%);
  border-radius: 50%;
  margin: auto;
}
.user-circle img {
  object-fit: cover;
  object-position: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  position: relative;
  top: 3px;
}
.nothing-found {
  margin-top: 10em;
}
.nothing-found .fa {
  font-size: 10em;
}
.message_container {
  position: fixed;
  top: 200;
  right: 10px;
  z-index: 50;
}
.autocomplete {
  position: relative;
  display: inline-block;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}
