﻿.spacer {
	margin-bottom: 20px;
	margin-top: 40px;
}

.selector.selected {
	/*background-color: #94D058;*/
	position: relative;
}

.selector:after {
	color: #94D058;
	content: '✔';
	opacity: 0;
	position: absolute;
	right: 10px;
	top: 8px;
	transition: opacity .2s;
}

.selector.selected:after {
	opacity: 1;
}

.btn-green {
	background-color: #94D058;
}

.btn-green:disabled {
	background-color: #ddd;
}