
/* Choiselist
--------------*/

	.app-ui-choiselist {
		list-style-type: none;
		margin: 20px 0 0 0;
	}

/* Eintrag
-----------*/

	.app-ui-choiselist--item {
		padding: 0;
		background-color: #f2f2f2;
		margin-top: 10px;
		border-radius: 5px;
		cursor: pointer;
	}

	.app-ui-choiselist--item:hover {
		background-color: #e2e2e2;
	}

	.app-ui-choiselist--item:after {
		content: '';
		clear: both;
		display: table;
	}

/* Radioboxen
--------------*/

	.app-ui-choiselist--input {
		float: left;
		width: 40px;
		height: 40px;

	}

	.app-ui-choiselist--input:after {
		content: '';
		clear: both;
		display: table;
	}

	.app-ui-choiselist--input input[type="radio"] {
		position: relative;
		top: 11px;
		left: 12px;
	}

/* Labels
----------*/

	.app-ui-choiselist--label {
		display: block;
		float: right;
		width: calc(100% - 40px);
	}

	.app-ui-choiselist--label label {
		display: block;
		padding: 10px 20px 10px 0;
		cursor: pointer;
	}

/* Zusatzinhalt
----------------*/

	.app-ui-choiselist--content {
		display: none;
		padding: 10px 20px 20px 40px;
	}

	.view-customer-portal .app-ui-choiselist--content {
		display: none !important;
	}