@charset "utf-8";
/* CSS Document */

body {
	background-color:#2d333d;
	}

.feedback-survey {
	/*min-height:90vh;*/
	}
.custom-checkbox, .custom-radio {
	display: none;
}
.custom-checkbox-label {
	position: relative;
	padding:5px 20px 5px 35px;
	cursor: pointer;
	width: auto;
	border:1px solid #fff;
	border-radius:4px;
	-webkit-border-radius:4px;
}
.custom-checkbox-label:before {
	display: block;
	position: absolute;
	content: '';
	width: 14px;
	height: 14px;
	border: 2px solid #ccc;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	left: 0;
	top: 2px;
}
.custom-checkbox-label:hover:before {
	border-color: #11a0f8;
}
.custom-checkbox-label:after {
	display: none;
	position: absolute;
	content: '';
	width: 6px;
	height: 8px;
	border: 2px solid #fff;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	border-left: 0px;
	border-top: none;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	left: 4px;
	top: 4px;
}
.custom-checkbox:checked + label:before {
	border-color: #11a0f8;
	background-color: #11a0f8;
}
.custom-checkbox:checked + label:after {
	display: block;
}
.custom-radio + .custom-checkbox-label:before {
	border-radius: 50px;
	-webkit-border-radius: 50px;
    width: 18px;
    height: 18px;
    left: 8px;
    top: 8px;
}
.custom-radio + .custom-checkbox-label:after {
	display: none;
	position: absolute;
	content: '';
	width: 10px;
	height: 16px;
	border: 4px solid #fff;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	border-left: 0px;
	border-top: none;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	left: 13px;
    top: 8px;
}
.custom-radio:checked + label:before {
	display:none;
}
.custom-radio:checked + label {
	background-color: #11a0f8;
	border-color:#11a0f8;
	}
.custom-radio:checked + label:after {
	display: block;
}
footer {
    text-align: center;
    padding: 20px 0;
	color:rgba(255,255,255,0.7);
	font-size:12px
}