.radio-plus, .checkbox-plus {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	border-radius: .4em;
	-webkit-transition: background-color 300ms, color 300ms;
	transition: background-color 300ms, color 300ms;
}
.radio-plus:hover, .checkbox-plus:hover {
	background-color: rgba(148, 28, 28, .2);
}
.radio-plus > .radio-outer,
.checkbox-plus > .checkbox-outer {
	display: inline-block;
	position: relative;
	min-width: 1.7em;
	width: 1.7em;
	max-width: 1.7em;
	min-height: 1.7em;
	height: 1.7em;
	max-height: 1.7em;
	line-height: 1.7em;
	vertical-align: middle;
	border: .1em solid #777777;
	background: #e5e5e5;
	margin: .2em;
	padding: 0;
	box-shadow: inset 0 0.05em 0.2em white, inset 0 -0.05em 0.2em #777777, 0 0.1em 0.2em rgba(0,0,0,.3);
	overflow: hidden;
	box-sizing: content-box;
}
.radio-plus > .radio-outer {
	border-radius: 50%;
}
.checkbox-plus > .checkbox-outer {
	border-radius: .2em;
}
.radio-plus > .radio-outer > .radio-inner,
.checkbox-plus > .checkbox-outer > .checkbox-inner {
	position: absolute;
	margin: auto;
	box-sizing: content-box;
}
.radio-plus > .radio-outer > .radio-inner {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: #941c1c;
	-webkit-transition: width 200ms, height 200ms;
	transition: width 200ms, height 200ms;
}
.checkbox-plus > .checkbox-outer > .checkbox-inner {
	width: .4em;
	height: .8em;
	top: .3em;
	bottom: .5em;
	left: .3em;
	right: .3em;
	border-bottom: 0 #941c1c solid;
	border-right: 0 #941c1c solid;
	border-top: none;
	border-left: none;
	opacity: 0;
	background: none;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	color: transparent;
	line-height: 1.2em;
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
	-webkit-transition: border-width 200ms, opacity 200ms;
	transition: border-width 200ms, opacity 200ms;
}
.radio-plus > .radio-text, .checkbox-plus > .checkbox-text {
	margin: 0 .6em 0 .2em;
	vertical-align: middle;
}
.radio-plus > .radio-text > .radio-subtext, .checkbox-plus > .checkbox-text > .checkbox-subtext {
	font-size: .75em;
	line-height: 1.1em;
	margin-top: .1em;
}
.radio-plus > input[type='radio']:checked ~ .radio-outer > .radio-inner {
	width: .9em;
	height: .9em;
}
.checkbox-plus > input[type='checkbox']:checked ~ .checkbox-outer > .checkbox-inner {
	border-width: .3em;
	opacity: 1;
}
.radio-plus input, .checkbox-plus input {
	display: none !important;
}
.radio-plus > input[disabled] ~ .radio-outer,
.checkbox-plus > input[disabled] ~ .checkbox-outer {
	opacity: .5;
}
.radio-plus > input[disabled] ~ .radio-outer:after,
.checkbox-plus > input[disabled] ~ .checkbox-outer:after {
	visibility: hidden;
}
