.flex-1 {
  flex: 1;
}

.box-shadow-white {
  box-shadow: 0px 1px 6px 0px #0603360d;
}
.truncate-1-lines,
.truncate-3-lines,
.truncate-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.truncate-1-lines {
  -webkit-line-clamp: 1;
}
.truncate-3-lines {
  -webkit-line-clamp: 3;
}

.clickable {
  cursor: pointer;
}
.clickable-1 {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.clickable-1:hover {
  transform: translateY(-5px);
}
.clickable-2:hover {
  cursor: pointer;
  background-color: var(--primary-50);
}

.flex-center-center,
.flex-center-between,
.flex-center {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.flex-center-between {
  justify-content: space-between;
}

.flex-center-center {
  justify-content: center;
}
.no-bg {
  background-color: transparent;
}

.guarantee-badge {
  line-height: 100%;
  font-size: 12px;
  color: var(--cinnabar-600);
  border-radius: 100px;
  border: 1px solid var(--cinnabar-600);
  padding: 6px 12px;
  width: fit-content;
}
.not-found-content {
  padding: 100px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
