.user-favorites {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  height: auto;
  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: 2px solid #becc47;
  text-overflow: ellipsis;
  min-width: 120px;
  background-color: #f4f5f7;
  background-color: #c6d548;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .32);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .32);
/*  background-color: #c3c4c4;*/
}

.user-favorites .user-favorite {
  background-color: #E2EB98;
}

.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;
}