.card {
  margin-bottom: 1rem;
}
#search-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid;
}
#searchInput {
  flex: 1;
  margin-right: 10px;
  margin-left: 10px;
}
body {
  padding-top: 5rem;
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}
.card-titlebox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 4rem;
  margin-bottom: 0.5rem;
}
.avatar {
  max-width: 100%;
  max-height: 50%;
}
.card-title {
  padding-left: 10px;
  font-size: 20px;
  margin-bottom: unset;
  margin-top: unset;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-bottom: 1px;
}
.card-name {
  max-width: 90%;
}
.card-subtitle {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 768px) {
  #search-bar {
    flex-direction: column;
    align-self: center;
  }
  #resultsnbr {
    margin-bottom: 0.5rem;
  }
  #logo {
    margin-bottom: 10px;
    display: block;
    align-self: center;
    width: 100px;
  }
  #searchInput {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .dropdown-toggle {
    margin-top: 0.5rem;
  }
}

@media (min-width: 769px) {
  #search-bar {
    flex-direction: row;
  }
  #logo {
    margin-right: 10px;
    width: 50px;
  }
}

.btn:disabled {
	pointer-events: all !important;
}

#memberZIP::-webkit-outer-spin-button,
#memberZIP::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#memberZIP {
    -moz-appearance: textfield;
}