html {
  --search-panel-background-color: rgba(243, 243, 244, 1);
}

#search-panel {
  position: absolute;
  top: 0;
  z-index: 1000;
  width: 100%;
  transition: 0.4s;
}
#search-panel .search-block {
  max-width: 100%;
  height: 85px;
  padding: 20px 0;
  position: relative;
}
#search-panel .clear-search-btn {
  position: absolute;
  right: 20px;
  top: calc(50% - 10px);
  width: 20px;
  cursor: pointer;
  user-select: none;
}
#search-panel #search-box {
  background-color: var(--search-panel-background-color);
}
#search-panel #q:focus {
  box-shadow: none;
}
#search-panel input, #search-panel .input-group-text {
  font-size: 20px;
}
#search-panel .blur {
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 0;
}
@media (max-width: 767px) {
  #search-panel .input-group {
    height: 80px;
  }
  #search-panel input, #search-panel .input-group-text {
    font-size: 18px;
  }
}

#employees-list {
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
}
#employees-list .inner {
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  scrollbar-width: thin;
}
#employees-list .search-employee-card {
  padding: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  transition: background-color 0.2s;
}
#employees-list .search-employee-card:hover {
  background-color: rgb(239, 239, 239);
}
#employees-list .search-employee-card img {
  --size: 40px;
  border-radius: 50%;
  height: var(--size);
  width: var(--size);
  min-width: var(--size);
  object-fit: cover;
}
#employees-list .search-employee-card .name {
  font-size: 16px;
  font-weight: 300;
  line-height: 130%;
}
#employees-list .search-employee-card .position {
  font-size: 16px;
  line-height: 130%;
}
#employees-list .nothing-found {
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  padding: 30px 0;
}

/*# sourceMappingURL=style.css.map */