:host {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  width: 22px;
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 50%;
  background: #bbb;
  color: #333;
  cursor: pointer;

  &:hover {
    background: darken(#bbb, 5%);
  }

  > svg {
    height: 10px;
    width: 10px;

    > line {
      stroke-width: 2px;
      stroke: #fff;
    }
  }
}
