.dl__textItem {
  position: relative;

  a {
    color: $color-link;
    //position: relative;
    text-decoration: none;
  }

  &-item {
    display: flex;
    min-height: 35px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    align-items: center;
    padding: 6px 0px 6px 8px;

    > span {
      word-break: break-all;
    }

    &--copy {
      position: relative;
      z-index: 2;
      display: inline-block;
      width: 21px;
      height: 12px;

      &:after {
        content: $fa-var-copy;
        font-family: FontAwesome;
        font-size: 12px;
        color: $color-icon;
      }

      &:hover {
        cursor: pointer;
        opacity: 0.7;
      }
    }

    &.check {
      justify-content: center;
      padding: 0;
    }

    .fallback-image {
      cursor: text;
    }

  }

  &Image {
    max-height: 24px;
    // padding-left: 3px;

    //&:after {
    //  content: "\f1c5" " " attr(alt);
    //  font-size: 14px;
    //  font-family: FontAwesome;
    //  color: $color-icon;
    //
    //  display: flex;
    //  align-items: center;
    //  position: absolute;
    //  z-index: 2;
    //  top: 0;
    //  bottom: 0;
    //  height: 100%;
    //  width: 100%;
    //  background-color: #fff;
    //}
  }

}