*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.az-custom {
	padding: 0 3em;
	max-width: 900px;
	margin: 0 auto;
}

.az-custom h2 {
	font-size: 3em;
	font-weight: 300;
	padding: 0 0 0.5em;
	margin: 0 0 30px;
}

.az-custom ul,
.az-custom ol {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 800px;
}

.az-custom li {
	margin: 0 auto;
	position: relative;
}

.az-custom label {
	display: inline-block;
	position: relative;
	font-size: 1.5em;
	padding-left: 50px;
	vertical-align: top;
	color: rgba(0,0,0,0.4);
	cursor: pointer;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.az-custom input[type="checkbox"],
.az-custom input[type="radio"],
.az-custom label::before {
	width: 25px;
	height: 25px;
	top: 55%;
	left: 0;
	margin-top: -25px;
	position: absolute;
	cursor: pointer;
}

.az-custom input[type="checkbox"],
.az-custom input[type="radio"] {
	opacity: 0;
	-webkit-appearance: none;
	display: inline-block;
	vertical-align: middle;
	z-index: 100;
}

.az-custom label::before {
	content: '';
	border: 3px solid #111111;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}


.az-custom input[type="checkbox"]:checked + label,
.az-custom input[type="radio"]:checked + label {
color: #111111;
} 

.az-custom input[type="checkbox"]:checked + label::before,
.az-custom input[type="radio"]:checked + label::before {
opacity: 0.8;
}

/* General SVG and path styles */

.az-custom svg {
	position: absolute;
	width: 22px;
	height: 22px;
	top: 53%;
	margin-top: -25px;
	left: 2px;
	pointer-events: none;
}

.az-custom svg path {
	stroke: #d99b2e;
	stroke-width: 13px;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

/* Specific input, SVG and path styles */

/* Box Fill */
.az-boxfill svg path {
	stroke-width: 8px;
} 

/* Swirl */
.az-swirl svg path {
	stroke-width: 8px;
}



.az-list label::before {
	display: none;
}

.az-list svg {
	width: 100%;
	height: 80px;
	left: 0;
	top: 1.2em;
	margin-top: 0px;
}

.az-list svg path {
	stroke-width: 4px;
}

/* Media Queries */
@media screen and (max-width: 50em) {
	section {
		font-size: 80%;
	}
}