.wrapper {
  transition: all 0.2s;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 6px;
  background: #adb5bd;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  margin-right: 15px;
  cursor: pointer;
  svg {
    path {
      stroke: #fff;
    }
  }

  &:hover {
    transform: scale(1.1);
  }
}
