@define-mixin circular-shape $size, $backgroundColor: transparent {
position: relative;
width: $(size);
height: $(size);
overflow: hidden;
display: inline-flex;
justify-content: center;
align-items: center;
background-color: $backgroundColor;
border-radius: 50%;
}