.fieldset_info{
	color: #cccccc;
	margin-bottom: 30px;
	font-family: 'Caveat', cursive;
}
a.button{
	cursor: pointer;
}
a.button:hover{
	text-decoration: none;
}
input[type="radio"].selcolor::-ms-check{
	display: none;
}
input[type="radio"].selcolor {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: grey;
  transition: transform 0.3s, border-color 0.2s;
  margin: 3px 3px;
}
input[type="radio"].selcolor:checked{
	border: solid 2px white;
	transform: scale(1.3);
}
input[type="radio"].selcolor::after{
	color:transparent;
	transition: color 1s ease;
}
input[type="radio"].selcolor:checked::before{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: '\2713';
	color: white;
}

input[type="checkbox"].agb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: dark-grey;
  transition: transform 0.3s, border-color 0.2s;
  margin: 3px 3px;
}
input[type="checkbox"].agb:hover{
	border: 1px solid #ffffff;
}
input[type="checkbox"].agb:focus{
	border: 1px solid #cccccc;
}
input[type="checkbox"].agb:checked{
	border: solid 3px #BC0A5A;
	transform: scale(1.3);
}
input[type="checkbox"].agb:after{
	color:transparent;
	transition: color 1s ease;
}
input[type="checkbox"].agb:checked::before{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: '\2713';
	color: white;
}

/* Form Validate*/
.error{
	border: 2px red solid;
}

.selcolor.schwarz{
	background-color: black !important;
}
.selcolor.navy{
	background-color: #092949 !important;
}
.selcolor.burgund{
	background-color: #9f1d35 !important;
}
.selcolor.hellgrau{
	background-color: #cfcfcf !important;
}
.selcolor.rosa{
	background-color: #f8c4cb !important;
}
.selcolor.agb{
	background-color: black !important;
	border: 3px solid #BC0A5A;
}