.ai-model {
  position: absolute;
  display: inline-flex;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  border: 1px solid rgba(217, 217, 208, 0.5);
  background: #fcfcf9;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.1);
}
.ai-model .item {
  display: flex;
  width: 231px;
  padding: 6px 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.ai-model span {
  color: #13343b;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.325px;
}
.ai-model p {
  color: rgba(19, 52, 59, 0.72);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.ai-model .line {
  width: calc(100% - 16px);
  height: 1px;
  background-color: rgba(217, 217, 208, 0.5);
}
.best {
  top: 10%;
  right: 10%;
  transform: translateX(50%);
  transition: all 1s;
  animation: ai-best 2s ease-in-out;
}
.inference {
  bottom: 8%;
  right: 10%;
  transform: translateX(50%);
  transition: all 1s;
  animation: ai-inference 2s ease-in-out;
}

@keyframes ai-best {
  0% {
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    opacity: 0;
  }
  100% {
    top: 10%;
    right: 10%;
    transform: translateX(50%);
    opacity: 1;
  }
}
@keyframes ai-inference {
  0% {
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
    opacity: 0;
  }
  100% {
    bottom: 8%;
    right: 10%;
    transform: translateX(50%);
    opacity: 1;
  }
}
