.page-home .header {
  display: none;
}

.header--home {
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;
  padding: 0 15px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px) saturate(180%);
  z-index: 100;
}

.employee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 0 15px;
}

.employee-card {
  position: relative;
  display: flex;
  flex-direction: column;

  color: black;
  background-color: rgb(18, 18, 18);

  overflow: visible;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 15px;
  border-top: 2px solid rgba(255, 255, 255, 0.212);
}

.employee-card::before {
  content: "";
  position: absolute;
  width: 92%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.5%;
  height: 80%;
  overflow: visible;
  background-color: rgb(116, 109, 69);
  border-radius: 15px;
  z-index: -1;
}

.employee-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.25) 25%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(
      -75deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.1) 40%,
      rgba(0, 0, 0, 0) 100%
    ),
    repeating-linear-gradient(
      145deg,
      rgba(128, 128, 128, 0.075) 0px,
      rgba(128, 128, 128, 0.075) 1px,
      transparent 1px,
      transparent 5px
    );
  opacity: 0.8;
}

.employee-card__top {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  padding: 4%;
  border-radius: 15px 15px 0 0;
  border-left: 2px solid rgba(255, 255, 255, 0.075);
  border-bottom: 3px solid rgba(255, 255, 255, 0.168);
}

.employee-card__logo {
  height: 100%;
}
.employee-card__bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  height: 70%;
  width: 100%;
  flex: 1;
  padding: 7%;
  background-color: rgb(221, 205, 118);
  border-left: 2px solid rgba(255, 255, 255, 0.563);
  border-radius: 0 0 15px 15px;
}

.employee-card__detail {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 5px;
}

.employee-card__row {
  color: rgb(30, 30, 30);
  display: flex;
  flex-direction: row;
  padding: 5px;
  flex-wrap: nowrap;
}

.employee-card__title,
.employee-card__content {
  font-size: 14px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  white-space: nowrap;
}

.employee-card__title {
  width: 90px;
}

.employee-card__image-wrapper {
  display: flex;
  height: 100%;
  aspect-ratio: 4/5;
}

.employee-card__image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.1);
  border: 0.5px solid rgba(0, 0, 0, 0.681);
  border-radius: 7.5px;
}

.employee-selector {
  font-size: 12px;
  width: 100%;
  height: fit-content;
}

.employee-selector__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 10px;
}

.employee-selector__item,
.employee-selector__item--add {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 15px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.158);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 10px 15px;
  overflow: hidden;
}

.employee-selector__selected-item {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  height: 50%;
  width: 3px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.286);
}

.employee-selector__image,
.employee-selector__image--add {
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 100px;
}

.employee-selector__image--add {
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
}

.employee-selector__name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
