.anchor-text {
  position: relative;
  cursor: pointer;
}
.anchor-text:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "dedic-icons" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e92d";
  transition: opacity 0.1s;
  font-size: 28px;
  width: 28px;
  height: 28px;
  color: rgb(187, 189, 191);
  position: absolute;
  left: -36px;
  top: 1px;
}
@media only screen and (width < 1024px) {
  .anchor-text:before {
    position: relative;
    left: 0;
    top: 0;
  }
}

.anchor-text:hover:before {
  color: #1B2329;
}

/*# sourceMappingURL=anchor-text.css.map */
