@import '../styles/_variables.scss';

$triangle-size: 6px;
$triangle-small: 3px;
$pos-bg: $clickable-item;
$pos-arrow: white;

.position-wrapper {
    position: relative;
    font-size: 14px;
    width: 48px;
    height: 48px;
}

.pos {
    color: #fff;
    background: $pos-bg;
    width: 14px;
    height: 14px;
    cursor: pointer;
    border-radius: $default-border-radius;
    border: 0;
    box-shadow: none;
    &.selected {
        background: $text-on-light;
        color: white;
        box-shadow: none;
    }
}
