.aanhef.radio-content, .aanhef.radio-content.first, .website{
	display: none;
}
.captcha{
	border-radius: 4px;
}
#captcha{
	display: none;
}
.play-btn{
	box-sizing: border-box;
    width: 180px;
	border: 1px solid #777;
    background-color: #fff;
	border-radius: 4px;
	font-size: 15px;
}
.captcha{
    width: 180px;
}
form{
	position: relative;
	color: #fff;
	background-color: #4A4A66;
	display: block;
	margin: 65px auto 0;
	box-sizing: border-box;
	padding: 20px;
	border-radius: 8px;
}
form.register{
	width: 500px;
}
form.login{
	width: 400px;
}
form img.form-logo{
	position: absolute;
	width: 35px;
}
form h3{
	text-align: center;
	margin-top: 20px;
}
.formgroup{
	margin: 12px 0 ;
}
.formgroup-xl{
	margin: 30px 0 12px;
}
input{
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 5px;
	border-radius: 6px;
	border: 1px solid #777;
	line-height: 30px;
}
.center{
	text-align: center;
}
.formlink{
	color: #fff;
	text-decoration: none;
	transition: ease all .2s;
	font-weight: normal;
}
.formlink.reg{
	display: block;
	border: 1px solid #fff;
	border-radius: 50px;
	padding: 8px 20px;
	margin-top: 5px;
}
.formlink:hover{
	text-decoration: underline;
}
.agree{
	color: #fff;
	text-decoration: underline;
	transition: ease all .2s;
	font-weight: normal;
}
input[type=checkbox]{
	width: 18px;
	height: 18px;
	margin: 6px 6px 0 0;
}
input[type=radio]{
	width: 10px;
}
input[type=submit]{
	cursor: pointer;
	line-height: 30px;
    background-color: #ff6b6b;
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
	font-size: 16px;
	border: none;
    transition: ease all 0.2s;
	display: block;
	margin: 25px auto 0;
	text-align: center;
}
input[type=submit]:hover {
  background-color: #fff;
  color: #ff6b6b;
}
#captcha-btn, #play-btn{
	cursor: pointer;
	line-height: 30px;
    background-color: #fff;
    color: #ff6b6b;
	display: inline-block;
    padding: 4px 8px;
    border-radius: 5px;
    text-decoration: none;
	margin-top: 8px;
	border: none;
    transition: background-color 0.2s;
}
#captcha-btn:hover, #play-btn:hover {
  color: #fff;
  background-color: #e85a5a;
}
.msg{
	padding: 1px 5px;
	border-radius: 4px;
	box-sizing: border-box;
	line-height: 1;
}
.red{
	color: red;
	background-color: #fff;
}
.gr{
	color: #000;
	background-color: #D6F2CD;
}

/* RADIO BUTTON */
/* The container */
.radio-content{
	float: left;
	display: block;
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.first{
	margin-right: 15px;
}

/* Hide the browser's default radio button */
.radio-content input{
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */
.checkmark{
	position: absolute;
	top: 3px;
	left: 0;
	height: 18px;
	width: 18px;
	background-color: #eee;
	border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-content:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-content input:checked ~ .checkmark {
	background-color: #ff6b6b;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-content input:checked ~ .checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.radio-content .checkmark:after {
 	top: 5px;
	left: 5px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

/* TOOLTIP */
.tooltip{
	position: relative;
	display: inline-block;
	width: 15px;
}

.tooltip .tooltiptext{
	visibility: hidden;
	width: 290px;
	background-color: #ff6b6b;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 10px ;
	position: absolute;
	box-sizing: border-box;
	z-index: 1;
	bottom: 45px;
	left: -85px;
	line-height: 1.2;
	margin-left: -60px;
}

.tooltip .tooltiptext::after{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -8px;
	border-width: 16px;
	border-style: solid;
	border-color: #ff6b6b transparent transparent transparent;
}

.tooltip:hover .tooltiptext{
	visibility: visible;
}