.config-item {
  display: flex;
  align-items: center;

  &__cursor-effect {
    cursor: pointer;
  }

  &__content {
    display: flex;
    align-items: center;
    width: 100%;
  }

  &__image-container {
    width: 54px;
    height: 54px;
    aspect-ratio: 1;
    margin-right: 16px;
    border-radius: 50%;
  }

  &__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  &__info {
    display: flex;
    flex-direction: column;
  }

  &__name {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    color: #000;
  }

  &__description {
    font-size: 0.8rem;
    color: #5b5b5b !important;
    text-decoration: none;
    margin: 4px 0 0;
    &:hover {
      text-decoration: underline;
    }
  }

  a.config-item__description {
    display: flex;
    align-items: center;
    gap: 4px;
    & > svg {
      fill: inherit;
      width: 12px;
    }
  }
  &.config-item-disabled {
    cursor: auto;
    h3.config-item__name,
    .config-item__description {
      color: #878787 !important;
      svg {
        opacity: 0.6;
      }
    }
    .config-item__image-container img {
      opacity: 0.6;
    }
  }
}
