ol {
  list-style: none;
  counter-reset: item;
  padding: 0;
  margin: 0;
}

ol li {
  counter-increment: item;
  margin-bottom: 10px;
}

ol li:before {
  content: counter(item);
  font-weight: bold;
  border: 1px solid #ccc;
  border-radius: 50%;
  padding: 1px 5px;
  display: inline-block;
  text-align: center;
  margin-bottom: 12px;
  line-height: 30px;
}
.text-container {
  position: relative;
}

.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* .show-more {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
  color: #337ab7;
  cursor: pointer;
} */

.expanded {
  height: auto;
  overflow: visible;
  white-space: normal;
}

.fancy {
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 8px;
  border: 2px solid transparent;
  background: linear-gradient(90deg, #f6f6f4, #f6f6f4),
    linear-gradient(90deg, #bb3030, #f8bf00, #358aee);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
}
.fancy > p {
  margin: 0;
}
