.speech-bubble {
  width: 45px !important;
  height: 45px;
  display: flex;
  color: $black !important;
  border-radius: 50%;
  position: relative;
  margin-right: 30px;
  align-items: center;
  justify-content: center;

  &:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 0;
    border: 21px solid transparent;
    border-right: 0;
    border-bottom: 0;
    margin-top: -3.5px;
    margin-right: -11px;
  }

  &.blue {
    background: $blue;
    &:after {
      border-left-color: $blue;
    }
  }

  &.red {
    background: $red;
    &:after {
      border-left-color: $red;
    }
  }

  &.orange {
    background: $orange;
    &:after {
      border-left-color: $orange;
    }
  }

  &.yellow {
    background: $yellow;
    &:after {
      border-left-color: $yellow;
    }
  }

}