.user-favorites {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  height: 35px;
  width: 100%;
  overflow: hidden;
}

.user-favorites .user-favorite {
  display: flex;
  gap: 5px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: calc(20% - 14px);
  max-width: calc(20% - 14px);
  height: 100%;
  border-radius: 5px;
  border: 1px solid grey;
  text-overflow: ellipsis;
  min-width: 120px;
  background-color: #f4f5f7;
/*  background-color: #c3c4c4;*/
}

.user-favorites .user-favorite:nth-of-type(1) {
  background-color: #E2EB98;
}

.user-favorites .user-favorite:nth-of-type(2) {
  background-color: #93A392;
}

.user-favorites .user-favorite:nth-of-type(3) {
  background-color: #ADBF97;
}

.user-favorites .user-favorite:nth-of-type(4) {
  background-color: #BAD9A2;
}

.user-favorites .user-favorite:nth-of-type(5) {
  background-color: #9DC4B5;
}

.user-favorites .user-favorite:hover {
  cursor: pointer;
}

.user-favorites .user-favorite p {
  font-size: 14px;
  text-align: left;
  width: calc(100% - 34px);
  max-height: calc(100% - 10px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-favorites.in-drawer .user-favorite {
  border-radius: 100%;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: none;
  box-shadow: 0px 0px 5px rgba(9, 30, 66, 0.23);
}

.user-favorites.in-drawer .user-favorite i {
  color: black;
  font-size: 16px !important;
}