#dbv_erg {
	font-family: Arial, sans-serif;
	display: inline-block;
	overflow: auto;
	box-sizing: border-box;
}

#dbv_erg * {
	box-sizing: border-box;
}

#dbv_erg>a {
	text-decoration: none !important;
	color: black !important;
	font-weight: normal !important;
}

.loader {
	animation: spin 1s linear infinite;
	margin: 0 !important;
}

.bigloader {
	display: inline-block;
	overflow: hidden;
	width: 50px;
	height: 50px;
}

.bigloader>.loader {
	border: 10px solid #f3f3f3;
	border-top: 10px solid #FF9900;
	border-radius: 50%;
	height: 100%;
	width: 100%;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.turfail {
	background-color: darkgray;
}

.formdiv {
	border: thin solid gray;
	border-radius: 2px;
	margin: 0.5em;
}

#dbv_erg> :nth-child(2n+1):not(.bigloader):not(.turfail) {
	background-color: #F4F4F4;
}

#dbv_erg> :nth-child(2n) {
	background-color: white;
}

.emptyturitem,
.turfail,
a.turitem {
	display: block;
	padding: 0.7em !important;
	padding-right: 3rem !important;
	line-height: 1.2em;
}

#dbv_erg>a.turitem:hover {
	cursor: pointer;
	font-weight: normal;
	background-color: rgb(255, 153, 0) !important;
	background-image: none !important;
	color: white !important;
}

#dbv_erg>a.turitem.turactive {
	animation: livetur 2s ease infinite;
	animation-timing-function: linear;
	background-image: linear-gradient(to right, #FFC670, white, #FFC670, white, #FFC670);
	background-size: 200% auto;
}

@keyframes livetur {
	0% {
		background-position: 100%;
	}

	100% {
		background-position: 0%;
	}
}

#dbv_erg>a.turitem.turpaused:nth-child(2n) {
	background-image: linear-gradient(to right, #FFC670, white, #FFC670);
}

#dbv_erg>a.turitem.turpaused:nth-child(2n+1) {
	background-image: linear-gradient(to right, #F4F4F4, #FFC670, #F4F4F4);
}

#dbv_erg>a.turitem.turlock::before {
	background: url("//ergebnisse.bridge-verband.de/icons/locked.png") no-repeat bottom left;
	background-size: contain;
	padding: 0.2rem 0.1rem 0 0.1rem;
	width: 1.5rem;
	height: 1.1rem;
	display: inline-block;
	content: "";
}

.formhead {
	font-weight: bold;
	padding-bottom: 0.5em;
}