// Utility styles
// -------------------------------------------

// Spacer
.ppl__item_spacer {
	margin-right: 3px;
}

// Delimiters
.ppl__item_delimiter {
	// white-space: nowrap;
	&:after {
		content: ' , ';
		display: inline-block;
	}
	&:last-of-type:after {
		content: '';
	}
}

.ppl__item_pipe {
	// white-space: nowrap;
	&:after {
		content: ' | ';
		display: inline-block;
		color: silver;
	}
	&:last-of-type:after {
		content: '';
	}
}

// Text styles
.ppl_text_captitalize {
	text-transform: capitalize;
}


// Make a WP admin button
@mixin wordpressbutton() {
	color: #0071a1;
    border-color: #0071a1;
    background: #f3f5f6;
	vertical-align: top;

	display: inline-block;
    text-decoration: none;
    font-size: 13px;
    line-height: 2.15384615;
    min-height: 30px;
    margin: 0;
    padding: 0 10px;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    -webkit-appearance: none;
    border-radius: 3px;
    white-space: nowrap;
    box-sizing: border-box;
}