.overlay--more {
  opacity: 0;
  visibility: hidden;

  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 15px;
  gap: 15px;

  transform: translateY(20%);
  transition: all 0.2s ease;
}

.overlay--more.show {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.overlay__selected-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  border-radius: 15px;
  height: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
  gap: 15px;
  background-color: black;
  padding: 15px;
  margin-top: 79px;
}

.overlay__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  height: 50px;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 100px;
}

.overlay__icon {
  font-size: 20px;
}

.overlay__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.overlay__name {
  font-size: 16px;
  font-weight: 600;
}

.overlay__count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
