.fast-links {
  max-width: 300px;
  margin: 10px 24px 22px 0;
  padding: 16px;

  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;

  background: rgba(13, 29, 49, 0.45);
  backdrop-filter: blur(10px);

  overflow: hidden;
}

.fast-links--left {
  float: left;
  margin-right: 28px;
}

.fast-links--right {
  float: right;
  margin-left: 28px;
  margin-right: 0;
}

.clear {
  clear: both;
}

.fast-links__title {
  margin: 0 0 12px;
  padding-bottom: 10px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.fast-links__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fast-links__item {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 7px 2px;

  color: var(--muted);

  overflow: hidden;
}

.fast-links__item::before {
  content: '';

  width: 5px;
  height: 5px;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--accent);

  /* transition: all 0.22s ease; */
}

.fast-links__number {
  display: none;
}

.fast-links__text {
  display: block;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.fast-links__item:hover .fast-links__text {
  color: var(--accent);
}

@media (max-width: 768px) {
  .fast-links {
    float: none;

    max-width: 100%;

    margin: 20px 0;
  }

  .fast-links__text {
    white-space: normal;
  }
}
