input.new_checkbox,
input.new_radio {
	display:none;
}

label.new_checkbox:before {
	border-radius:2px;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
}

label.new_radio:before {
	border-radius:10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
}

label.new_checkbox,
label.new_radio {
	display:inline-block;
	cursor:pointer;
	position:relative;
	padding-left:25px;
	margin-right:15px;
}

label.new_checkbox span,
label.new_radio span {
	padding-top:2px;
	display:block;
}       

label.new_checkbox:before {
	width:17px;
	height:17px;
	content:'';
	display:inline-block;
	margin-right:10px;
	position:absolute;
	left:0;
	background-color:#d6d6d6;
	border:1px solid #aeaeae;
}

label.new_radio:before {
	width:17px;
	height:17px;
	content:'';
	display:inline-block;
	margin-right:10px;
	position:relative;
	left:0;
	background-color:#d6d6d6;
	border:1px solid #aeaeae;
	vertical-align:middle;
}  

input.new_checkbox:checked + label:before {
	content:"\2714";
	font-size:16px;
	color:#5e5e5e;
	text-align:center;
	line-height:17px;
}

input.new_radio:checked + label:before {
	/*content:"\2022";
	font-size:32px;
	color:#5e5e5e;
	text-align:center;
	line-height:18px;*/
	background-color:#757575;
}

input.new_checkbox:disabled + label,
input.new_radio:disabled + label {
	color: #cdcdcd;
}


/* animated checkmarks */ 

svg.checkmark {
	width: 100px;
  	display: block;
  	margin: 40px auto 0;
}

.checkmark {
  	stroke-dasharray: 1000;
  	stroke-dashoffset: 0;
}
.checkmark.circle {
   -webkit-animation: dash .9s ease-in-out;
   animation: dash .9s ease-in-out;
  }
.checkmark.line {
   stroke-dashoffset: 1000;
   -webkit-animation: dash .9s .35s ease-in-out forwards;
   animation: dash .9s .35s ease-in-out forwards;
}
.checkmark.check {
   stroke-dashoffset: -100;
   -webkit-animation: dash-check .9s .35s ease-in-out forwards;
   animation: dash-check .9s .35s ease-in-out forwards;
}

p.checkmark {
  	text-align: center;
  	margin: 20px 0 60px;
  	font-size: 1.25em;
} 

P.checkmark.success {
   color: #73AF55;
}
P.checkmark.error {
	color: #D06079;
}


@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}

@keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
