.wrapper-form #eventregistrierung input[type="checkbox"],
.wrapper-form #eventregistrierung input[type="radio"] {
	float: left;
	margin-right: 5px;
}

.wrapper-form #eventregistrierung .salutation .title {
	display: block;
	font-size: 1.25em;
}

.wrapper-form #eventregistrierung .salutation .option-1 {
	float: left;
	width: 100px;
}

.wrapper-form #eventregistrierung input[type=checkbox] {
	margin-top: 2px;
}

.wrapper-form #eventregistrierung label a {
	margin-left: 20px;
}

.wrapper-form #eventregistrierung .check_option {
	clear: left;
}

.wrapper-form #eventregistrierung .info {
	font-size: 0.938rem;
	margin-top: 20px;
}

.wrapper-form #eventregistrierung .title {
	font-size: 0.938rem;
	margin-bottom: 20px;
}

.wrapper-form .formhandler span.error, .wrapper-form .error.form-text {
	color: #DB1637;
	margin-bottom: 20px;
}

.wrapper-form input.error {
	border: 1px solid #DB1637;
}

.wrapper-form input.error, .wrapper-form input.f3-form-error {
	border: 1px solid #DB1637 !important;
	margin-bottom: 5px;
}

.wrapper-form .captchafield, .wrapper-form .captcha {
	margin-top: 30px;
}

.regatta-from {
	margin: 0 auto;
}

.regatta-from .vip input {
	vertical-align: middle;
}

/*.regatta-from .fieldwrap {*/
/*	display: flex;*/
/*	justify-content: space-between;*/
/*}*/

/*.regatta-from .fieldwrap .hint{*/
/*	font-size: 12px;*/
/*}*/

/*.regatta-from input[type=number] {*/
/*	border-bottom: 1px solid grey;*/
/*}*/

/*.regatta-from input[type=text] {*/
/*	width: 425px;*/
/*	background: none;*/
/*	border-bottom: 1px solid grey;*/
/*}*/

/*.regatta-from .text {*/
/*	flex-direction: column;*/
/*}*/

/*.regatta-from .text textarea {*/
/*	background: none;*/
/*	border: none;*/
/*	border-bottom: 1px solid grey;*/
/*	margin-bottom: 20px;*/
/*	max-width: 300px;*/
/*	min-height: 20px;*/
/*	padding: 10px 0 0 7px;*/
/*	width: 300px;*/
/*}*/

.event-service .check_option label, .event-service .form-check-label {
	padding-bottom: 0;
	padding-top: 0;
}

.event-service .captchafield input[type=text] {
	margin: 20px 0;
}

.event-service .salutation {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 20px;
}

.event-service input[type=checkbox], .event-service input[type=radio] {
	margin: 0;
	float: none !important;
	margin-right: 10px;
	padding: 0;
	background-color: #666666;
	width: 20px;
	height: 20px;
}

.event-service .radio_option, .event-service .check_option {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-right: 40px;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-right: 20px;
	width: max-content !important;
	float: none !important;
}

.event-service .radio_option:first-child {
	padding-right: 80px;
}

.event-service input[type=radio], .event-service input[type=checkbox] {
	display: none;
}

.event-service .radio_option label, .event-service .check_option label {
	position: relative;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	cursor: pointer;
	transition: 0.3s linear all;
}

.event-service .radio_option input[type=radio]:checked + label::before,
.event-service .radio_option input[type=radio]:checked + label::after,
.event-service .check_option input[type=checkbox]:checked + label::before,
.event-service .check_option input[type=checkbox]:checked + label::after {
	content: '';
	position: absolute;
	opacity: 0;
}

.event-service .radio_option input[type=radio]:checked + label::before,
.event-service .check_option input[type=checkbox]:checked + label::before {
	top: 0;
	left: 0;
	width: 25px;
	height: 25px;
	border: 2px solid transparent;
	border-radius: 50%;
	opacity: 0;
	animation: spin 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-webkit-animation: spin 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.event-service .radio_option input[type=radio]:checked + label::after,
.event-service .check_option input[type=checkbox]:checked + label::after {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: grow 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
	animation-delay: 0.3s;
	border-radius: 50%;
	opacity: 1;
}

.event-service .radio_option span,
.event-service .check_option span {
	position: absolute;
	left: 35px;
	width: max-content;
}

/* Animations */
@keyframes grow {
	0% {
		width: 1px;
		height: 1px;
	}
	100% {
		width: 15px;
		height: 15px;
		opacity: 1;
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: rotate(360deg);
		opacity: 0;
	}
}

@-webkit-keyframes spin {
	0% {
		transform: rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: rotate(360deg);
		opacity: 0;
	}
}

.event-service .radio_option label,
.event-service .check_option label {
	background-color: rgb(240, 240, 240);
	display: flex;
	align-items: center;
}

.event-service .radio_option label:hover,
.event-service .check_option label:hover {
	background-color: rgb(111, 111, 111);
}

.event-service .radio_option input[type=radio]:checked + label::before,
.event-service .check_option input[type=checkbox]:checked + label::before {
	border-top: 2px solid rgba(255, 255, 255, 0.55);
}

.event-service .radio_option input[type=radio]:checked + label::after,
.event-service .check_option input[type=checkbox]:checked + label::after {
	background-color: rgba(0, 0, 0, 0.55);
}

.event-service .check_option {
	display: flex;
	flex-direction: row;
}

.event-service .check_option label {
	border-radius: 0;
}

.event-service .check_option input[type=checkbox]:checked + label::after {
	border-radius: 0;
}

@media screen and (max-width: 450px) {
	.event-service .radio_option span, .event-service .check_option span {
		width: 285px;
	}
}

.frame-default .gewinnspiel-service p {
	font-size: 16px;
	line-height: 24px;
}

.gewinnspiel-service .privacy {
	margin: 50px 0;
}

.gewinnspiel-service input[type=text] {
	width: 100%;
}
