fieldset {
	border: none;
}

@media (max-width: 767px) {
	fieldset input {
		width: 100%
	}
}

.userprofile__top {
	padding-top: 10rem;
}

.genres .form-group {
	display: grid;
	gap: 1rem;
	margin-bottom: 1rem;
	grid-template-columns: 4fr 1fr;
}

.genres label[for] {
	margin-top: 0;
}

fieldset select,
fieldset input:not([type="checkbox"]),
fieldset input:not([type="radio"]) {
	padding: 0.5rem;
	font-size: 1rem;
	margin-top: 0.25rem;
}

fieldset h2 {
	margin-bottom: 1rem;
}

fieldset label {
	margin-top: 0.75rem;
	display: inline-block
}

.radiox,
.checkboxx {
    padding-left: 25px;
    cursor: pointer;
}
.radiox input,
.checkboxx input {
    display: none!important;
}

.radiox input + span,
.checkboxx input + span {
    border: 1px solid #000;
    background-color: #fff;
    border-radius: 2px;
    display: inline-block;
    width: 20px;
    height: 21px;
    position: absolute;
    margin-left: -25px;
}
.checkboxx input + span:before {
    content: '';
    display: block;
    padding-left: 3px;
    padding-top: 2px;
    line-height: 1;
}
.radiox input + span:before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    margin-top: 3px;
    margin-left: 3px;
    border-radius: 50%;
    background-color: #000;
    transform-origin: center center;
    transition: transform .15s;
    transform: scale(0);
}
.radiox input + span {
    border-radius: 50%;
}

.checkboxx input:checked + span:before {
    content: '';
    border-radius: 2px;  
    display: block;
    margin-top:2px;
    margin-left:2px;
    width: 15px;
    height: 14px;
    background-color: #000;
    transform-origin: center center;
    transition: transform .15s;
    transform: scale(0);  
}

.radiox input:checked + span:before {
    transform: scale(1);
}

.checkboxx input:checked + span:before {
    transform: scale(1);
}

.nl-text > p {
    margin: 1rem 0;
}

.form-group input[type="checkbox"] {
    margin: 0 1rem 2rem;
    height: 1rem;
    width: 1rem;
}

.form-wrapper-bottom {
    display: flex;
    align-items: center;
    flex-flow: column;
}

input.highlight {
    display: none;
}


input[name='up_passwort'] + ul > li:not([id]) {
    display: none;
}
input[name='up_passwort']:invalid + ul > li:not([id]) {
    display: block;
}