.card-lizenz-logo {
	width: auto !important;
	height: auto !important;
	max-width: none !important;
	margin-top: 15px !important;
}

.lizenz-logo {
	float: right;
	margin-right: 15px;
	width: 250px;
}

.td_lizenz_logo {
	min-width: 120px;
}

.td_lizenz_logo img {
	max-height: 60px;
}

.td_lizenz_button {
	min-width: 70px;
}

.link-grey {
	text-decoration: none;
	color: rgba(80, 80, 80, 1);
}

.link-grey:hover {
	text-decoration: none;
	color: rgba(80, 80, 80, 1);
}

.ctalizenz {
	width: 120px;
	margin: 0px 2% 5px 2%;
	line-height: 26px;
	display: inline-block;
	background-color: #C30F17;
	border-radius: 20px;
	opacity: 1;
	text-align: center;
	color: white;
	text-decoration: none;
	padding: 4px 10px;
}

.keine-spiele-aus {
	font-size: 24px;
	line-height: 36px;
	font-weight: bold;
	text-align: center;
	color: #da6161;
	border: 3px solid #8c3553;
	margin: 30px;
	padding: 10px;
	background-color: #f7e6e6;
}

.keine-spiele-aus-shop {
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #da6161;
	border: 1px solid #8c3553;
	margin: 10px;
	padding: 10px;
	background-color: #f7e6e6;
}

.icon-cards {
	position: relative;
	width: 60vw;
	height: 500px;
	max-width: 380px;
	max-height: 700px;
	margin: 0;
	color: white;
	perspective: 1000px;
	transform-origin: center;
	margin: auto;
}

.icon-cards__content {
	position: absolute;
	width: 100%;
	height: 100%;
	transform-origin: center;
	transform-style: preserve-3d;
	transform: translateZ(-30vw) rotateY(0);
	-webkit-animation: carousel 10s infinite cubic-bezier(0.77, 0, 0.175, 1) forwards;
	animation: carousel 10s infinite cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.icon-cards__content.step-animation {
	-webkit-animation: carousel 8s infinite steps(1) forwards;
	animation: carousel 8s infinite steps(1) forwards;
}

.icon-cards__item {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 60vw;
	height: 500px;
	max-width: 380px;
	max-height: 500px;
	/*box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);*/
	border-radius: 6px;
	transform-origin: center;
}

.icon-cards__item:nth-child(1) {
	transform: rotateY(0) translateZ(35vw);
}

.icon-cards__item:nth-child(2) {
	transform: rotateY(120deg) translateZ(35vw);
}

.icon-cards__item:nth-child(3) {
	transform: rotateY(240deg) translateZ(35vw);
}



@-webkit-keyframes carousel {

	0%,
	17.5% {
		transform: translateZ(-35vw) rotateY(0);
	}

	27.5%,
	45% {
		transform: translateZ(-35vw) rotateY(-120deg);
	}

	55%,
	72.5% {
		transform: translateZ(-35vw) rotateY(-240deg);
	}

	82.5%,
	100% {
		transform: translateZ(-35vw) rotateY(-360deg);
	}
}

@keyframes carousel {

	0%,
	17.5% {
		transform: translateZ(-35vw) rotateY(0);
	}

	27.5%,
	45% {
		transform: translateZ(-35vw) rotateY(-120deg);
	}

	55%,
	72.5% {
		transform: translateZ(-35vw) rotateY(-240deg);
	}

	82.5%,
	100% {
		transform: translateZ(-35vw) rotateY(-360deg);
	}
}

.checkbox {
	position: relative;
	margin-top: 2rem;
	font-size: 0.9rem;
	font-weight: bold;
	text-transform: uppercase;
	color: #f47956;
	transition: color 0.3s ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.checkbox:hover {
	color: #f7a95a;
}

.checkbox__checkbox {
	position: relative;
	top: 0;
	width: 1.0625rem;
	height: 1.0625rem;
	background: white;
	border: 1px solid currentColor;
	border-radius: 4px;
	vertical-align: middle;
	transition: background 0.1s ease;
	cursor: pointer;
}

.checkbox__checkbox::after {
	content: "";
	position: absolute;
	top: 1px;
	left: 5px;
	width: 5px;
	height: 11px;
	opacity: 0;
	transform: rotate(45deg) scale(0);
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transition: all 0.3s ease;
	transition-delay: 0.15s;
}

.checkbox__label {
	margin-left: 5px;
	vertical-align: middle;
	cursor: pointer;
}

.checkbox>input:checked~.checkbox__checkbox {
	border-color: transparent;
	background: #f47956;
	-webkit-animation: jelly 0.6s ease;
	animation: jelly 0.6s ease;
}

.checkbox>input:checked~.checkbox__checkbox:after {
	opacity: 1;
	transform: rotate(45deg) scale(1);
}

@-webkit-keyframes jelly {
	from {
		transform: scale(1, 1);
	}

	30% {
		transform: scale(1.25, 0.75);
	}

	40% {
		transform: scale(0.75, 1.25);
	}

	50% {
		transform: scale(1.15, 0.85);
	}

	65% {
		transform: scale(0.95, 1.05);
	}

	75% {
		transform: scale(1.05, 0.95);
	}

	to {
		transform: scale(1, 1);
	}
}

@keyframes jelly {
	from {
		transform: scale(1, 1);
	}

	30% {
		transform: scale(1.25, 0.75);
	}

	40% {
		transform: scale(0.75, 1.25);
	}

	50% {
		transform: scale(1.15, 0.85);
	}

	65% {
		transform: scale(0.95, 1.05);
	}

	75% {
		transform: scale(1.05, 0.95);
	}

	to {
		transform: scale(1, 1);
	}
}




/* open-sans-regular - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: url('/css/fonts/open-sans-v34-latin-regular.eot');
	/* IE9 Compat Modes */
	src: local(''),
		url('/css/fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'),
		/* IE6-IE8 */
		url('/css/fonts/open-sans-v34-latin-regular.woff2') format('woff2'),
		/* Super Modern Browsers */
		url('/css/fonts/open-sans-v34-latin-regular.woff') format('woff'),
		/* Modern Browsers */
		url('/css/fonts/open-sans-v34-latin-regular.ttf') format('truetype'),
		/* Safari, Android, iOS */
		url('/css/fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
	/* Legacy iOS */
}

/* open-sans-600 - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	src: url('/css/fonts/open-sans-v34-latin-600.eot');
	/* IE9 Compat Modes */
	src: local(''),
		url('/css/fonts/open-sans-v34-latin-600.eot?#iefix') format('embedded-opentype'),
		/* IE6-IE8 */
		url('/css/fonts/open-sans-v34-latin-600.woff2') format('woff2'),
		/* Super Modern Browsers */
		url('/css/fonts/open-sans-v34-latin-600.woff') format('woff'),
		/* Modern Browsers */
		url('/css/fonts/open-sans-v34-latin-600.ttf') format('truetype'),
		/* Safari, Android, iOS */
		url('/css/fonts/open-sans-v34-latin-600.svg#OpenSans') format('svg');
	/* Legacy iOS */
}

/* oswald-regular - latin */
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 400;
	src: url('/css/fonts/oswald-v49-latin-regular.eot');
	/* IE9 Compat Modes */
	src: local(''),
		url('/css/fonts/oswald-v49-latin-regular.eot?#iefix') format('embedded-opentype'),
		/* IE6-IE8 */
		url('/css/fonts/oswald-v49-latin-regular.woff2') format('woff2'),
		/* Super Modern Browsers */
		url('/css/fonts/oswald-v49-latin-regular.woff') format('woff'),
		/* Modern Browsers */
		url('/css/fonts/oswald-v49-latin-regular.ttf') format('truetype'),
		/* Safari, Android, iOS */
		url('/css/fonts/oswald-v49-latin-regular.svg#Oswald') format('svg');
	/* Legacy iOS */
}

/* oswald-600 - latin */
@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 600;
	src: url('/css/fonts/oswald-v49-latin-600.eot');
	/* IE9 Compat Modes */
	src: local(''),
		url('/css/fonts/oswald-v49-latin-600.eot?#iefix') format('embedded-opentype'),
		/* IE6-IE8 */
		url('/css/fonts/oswald-v49-latin-600.woff2') format('woff2'),
		/* Super Modern Browsers */
		url('/css/fonts/oswald-v49-latin-600.woff') format('woff'),
		/* Modern Browsers */
		url('/css/fonts/oswald-v49-latin-600.ttf') format('truetype'),
		/* Safari, Android, iOS */
		url('/css/fonts/oswald-v49-latin-600.svg#Oswald') format('svg');
	/* Legacy iOS */
}

body {
	font-size: 17px;
	line-height: 1.4705882353;
	font-weight: 400;
	letter-spacing: -0.022em;
	font-family: 'Open Sans', sans-serif;
	background-color: #fff;
	color: #1d1d1f;
	font-style: normal;
	height: 100vh;
	margin: 0;
	padding: 0;
}

html {
	margin: 0;
	padding: 0;
}

main {
	margin: 0;
	padding: 0;
	overflow: hidden;
}


hr {
	margin-top: 2rem;
}

iframe {
	max-width: 100%;
}

.justify-content-center {
	margin: auto;
}

/************ Casino Page *****************/
main.casinopage h1 {
	font-size: 32px;
	line-height: 38px;
	font-weight: 600;
}

main.casinopage .bg-gruen h2,
main.casinopage .bg-weiss h2,
main.casinopage .bg-gruen h3,
main.casinopage .bg-weiss h3 {
	font-size: 22px;
	line-height: 28px;
	font-weight: 600;
}

.steckbrief ul {
	padding-top: 10px;
}

.casino-logo-div {
	text-align: center;
}

.geraetkompatibel {
	max-width: 300px;
}

.casino-sterne-div {
	width: 200px;
	margin: 10px auto 10px auto;
}

.csterne {
	text-align: center;
	padding: 0 20px;
}

/*
.steckbrief .cta {
	font-size: 22px;
	line-height: 26px;
	font-weight: bold;
	display: inline-block;
	background: transparent linear-gradient(180deg, #E00812 0%, #C30F17 100%) 0% 0% no-repeat padding-box;
	border-radius: 20px;
	opacity: 1;
	text-align: center;
	color: white;
	text-decoration: none;
	padding: 14px 20px;
	-webkit-animation: glowing-light 1500ms infinite;
	-moz-animation: glowing-light 1500ms infinite;
	-o-animation: glowing-light 1500ms infinite;
	animation: glowing-light 1500ms infinite;
	z-index: 16;
	white-space: normal;
	width: 200px;
	text-align: center;
	line-height: 25px;
	letter-spacing: 0px;
	visibility: visible;
	margin: 5px auto;
	left: 5%;
	display: block;
}*/
.steckbrief-table {
	width: 380px;
	margin: 24px auto 0 auto;
}

.steckbrief-table td {
	padding: 2px 8px;
}

.content-div-light h2 {
	color: #FFFFFF;
}

.content-div-light .casino_cta {
	width: 270px;
	font-size: 22px;
	line-height: 26px;
	font-weight: bold;
	display: inline-block;
	/*background: transparent linear-gradient(180deg, #E00812 0%, #C30F17 100%) 0% 0% no-repeat padding-box;*/
	background-color: #C30F17;
	border-radius: 20px;
	opacity: 1;
	text-align: center;
	color: white;
	text-decoration: none;
	padding: 14px 20px;
	-webkit-animation: glowing-light 2000ms infinite;
	-moz-animation: glowing-light 2000ms infinite;
	-o-animation: glowing-light 2000ms infinite;
	animation: glowing-light 2000ms infinite;
}

.content-div-dark .casino_cta,
.visitenkarte .casino_cta {
	font-size: 22px;
	line-height: 26px;
	font-weight: bold;
	display: inline-block;
	/*background: transparent linear-gradient(180deg, #E00812 0%, #C30F17 100%) 0% 0% no-repeat padding-box;*/
	background-color: #C30F17;
	border-radius: 20px;
	opacity: 1;
	text-align: center;
	color: white;
	text-decoration: none;
	padding: 14px 20px;
	-webkit-animation: glowing-dark 1500ms infinite;
	-moz-animation: glowing-dark 1500ms infinite;
	-o-animation: glowing-dark 1500ms infinite;
	animation: glowing-dark 1500ms infinite;

}

.casino_cta_div {
	margin-top: 30px;
	text-align: center;
}

.casino_cta_div_pb {
	margin-top: 0px;
	text-align: center;
	margin-bottom: 30px;
}

.casino_cta_div_nopadding {
	margin-top: 0px;
	text-align: center;
}

.kalenderblatt_en {
	background-image: url('/images/Kalender_EN.png');
	width: 250px;
	height: 217px;
	margin: 30px auto;
}

.kalenderblatt_de {
	background-image: url('/images/Kalender_DE.png');
	width: 250px;
	height: 217px;
	margin: 30px auto;
}

.kalenderblatt_en div,
.kalenderblatt_de div {
	transform: rotate(1deg);
	font-size: 17px;
	font-weight: bold;
	position: relative;
	top: 65px;
	left: 75px;
}

.verfall {
	background-image: url('/images/Kalender_Stoppuhr.svg');
	background-repeat: no-repeat;
	width: 138px;
	height: 138px;
	margin: 30px auto;
	color: #000000;
}

.verfall div.af {
	font-size: 53px;
	line-height: 53px;
	font-weight: bold;
	position: relative;
	top: 31px;
	left: 30px;
}

.verfall div.tage {
	font-size: 22px;
	position: relative;
	top: 21px;
	left: 39px;
}

.fam {
	text-align: center;

}

.fam .ab {
	font-size: 17px;
}

.fam .ab_fs {
	font-size: 32px;
	font-weight: bold;
	color: #E00812;
}

.fam .ab_fuer {
	font-size: 22px;
	font-weight: bold;
}

.fam .slot_image {
	padding-top: 0px;
	background-image: url('/images/Handy_Hand.png');
	background-position: center;
	width: 438px;
	height: 499px;
	padding-bottom: 0px;
	margin: 10px auto 0 auto;
}

.fam .slot_image img {
	position: relative;
	top: 26px;
}

.fair_bonus {
	background-image: url(/images/Fair_Bonus_Kriterien.png);
	width: 361px;
	height: 586px;
	margin: 10px auto;
}

.fair_bonus ul {
	list-style: none;
	margin: 90px 20px;
	display: inline-block;
	width: 300px;
	padding-left: 80px;
}

.fair_bonus ul li {
	min-height: 40px;
	line-height: 24px;
	margin: 10px 0;
}

.fair_bonus ul li::before {
	content: '';
	background-image: url('/images/Hakerl_Liste.png');
	margin: 0 8px 0 -53px;
	background-size: cover;
	display: inline-block;
	height: 40px;
	width: 45px;
	position: absolute;
}

.fair_bonus ul li.nicht_erfuellt::before {
	content: '';
	background-image: url('/images/Hakerl_Liste_X.png') !important;
	margin: 0 8px 0 -53px;
	background-size: cover;
	display: inline-block;
	height: 40px;
	width: 45px;
	position: absolute;
}

.tipp {
	padding-top: 15px;
	width: 357px;
	max-width: 90%;
	margin: 180px auto 30px auto;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 20px #0000006f;
	border-radius: 20px;
	text-align: center;
	display: block;
	position: relative;
}

.tipp:before {
	content: "";
	background-image: url(../images/Guru_daumen_hoch.png);
	background-position: top right;
	background-repeat: no-repeat;
	width: 185px;
	height: 162px;
	position: absolute;
	margin-top: -158px;
	right: 0;
}

.tipp span {
	position: absolute;
	left: 40px;
	top: 0;
	margin-top: -70px;
	font-size: 35px;
}

.tipp2 {
	padding-top: 15px;
	width: 357px;
	max-width: 90%;
	margin: 180px auto 30px auto;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 20px #0000006f;
	border-radius: 20px;
	text-align: center;
	display: block;
	position: relative;
}

.tipp2:before {
	content: "";
	background-image: url('../images/Guru_schaut_nach_unten_schatten.png');
	transform: scaleX(-1);
	background-position: top left;
	background-repeat: no-repeat;
	width: 185px;
	height: 162px;
	position: absolute;
	margin-top: -158px;
	left: 0;
}

.tipp2 span {
	position: absolute;
	left: 50px;
	top: 0;
	margin-top: -70px;
	font-size: 35px;
}

.tipp3 {
	padding-top: 15px;
	width: 357px;
	max-width: 90%;
	margin: 180px auto 30px auto;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 20px #0000006f;
	border-radius: 20px;
	text-align: center;
	display: block;
	position: relative;
}

.tipp3:before {
	content: "";
	background-image: url('../images/Guru_schaut_nach_unten_schatten.png');
	background-position: top right;
	background-repeat: no-repeat;
	width: 185px;
	height: 162px;
	position: absolute;
	margin-top: -158px;
	right: 0;
}

.tipp3 span {
	position: absolute;
	left: 50px;
	top: 0;
	margin-top: -70px;
	font-size: 35px;
}

.tipp .tipp_content {
	color: #000000;
	text-align: left;
	padding: 10px 20px 20px 20px;
	font-weight: normal;
}

.tipp3 .tipp_content,
.tipp2 .tipp_content {
	color: #000000;
	text-align: center;
	padding: 10px 20px 20px 20px;
	font-weight: bold;
}

.ausprobieren {
	padding: 20px 0;
	text-align: center;
}

.ausprobieren h3 {
	font-size: 17px;
	line-height: 25px;
	font-weight: bold;
}

.ausprobieren img {
	width: 100%;
}

.visitenkarte_bg {
	background-color: #33ABC6;
	display: inline-block;
	width: 100%;
}

.visitenkarte {
	padding-top: 15px;
	width: 357px;
	max-width: 90%;
	margin: 30px auto 30px auto;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 20px #0000006f;
	border-radius: 20px;
	text-align: center;
	display: block;
	position: relative;
}

.visitenkarte_content {
	color: #000;
	text-align: left;
	padding: 10px 20px 20px 20px;
}

.visitenkarte_content a {
	color: #009DFF;
}

.h87 {
	align-self: center !important;
	align-items: center !important;
	display: flex;
	flex-direction: column;
}

.h87 p {
	text-align: center;
	font-size: 14px;
	line-height: 16px;
	margin-top: 5px;
}

.plus {
	margin: auto;
}

.moneydiv_small {
	width: 80px;
	height: 80px;
	position: relative;
}

.moneydiv_small img {
	position: absolute;
	left: 0;
}

.moneydiv_large {
	width: 130px;
	height: 143px;
}

.moneydiv_large img {
	position: absolute;
	left: 0;
}

.minibeispiel {
	max-width: 400px;
	margin: auto;
}

.maxibeispiel {
	max-width: 400px;
	margin: auto;
}

.mini_ergebnis {
	position: relative;
	width: 320px;
	height: 150px;
	margin: 20px auto;
}

.mini_ergebnis .istgleich {
	top: 10px;
	left: 30px;
	width: 50px;
	position: absolute;
}

.mini_ergebnis .betrag {
	top: 0px;
	left: 0px;
	font-size: 45px;
	line-height: 45px;
	position: absolute;
	font-weight: bold;
}

.mini_ergebnis .guthaben {
	top: 45px;
	left: 0px;
	position: absolute;
	font-size: 25px;
	font-weight: bold;
}

.mini_ergebnis .mini_ergebnis_geld {
	top: 0px;
	left: 220px;
	position: absolute;
}

.textwhite {
	color: white;
}

.istgleich {
	color: black;
}

.istgleich_weiss {
	color: white;
	font-size: 45px;
	line-height: 45px;
}

/**************** Packerln **********************/


.h_packerl {
	height: 34px;
}

.h_packerl span {
	position: relative;
	min-width: 4px;
	top: 20px;
	display: inline-block;
	animation: bounce 3s ease infinite alternate;
	font-weight: bold;
	font-size: 30px;
	color: #01ACC4;
	text-shadow: 0 1px 0 #CCC,
		0 2px 0 #CCC,
		0 3px 0 #CCC,
		0 4px 0 #CCC,
		0 5px 0 #CCC,
		0 6px 0 transparent,
		0 7px 0 transparent,
		0 8px 0 transparent,
		0 9px 0 transparent,
		0 10px 10px rgba(0, 0, 0, .4);
}

.h_packerl span:nth-child(2) {
	animation-delay: .1s;
}

.h_packerl span:nth-child(3) {
	animation-delay: .2s;
}

.h_packerl span:nth-child(4) {
	animation-delay: .3s;
}

.h_packerl span:nth-child(5) {
	animation-delay: .4s;
}

.h_packerl span:nth-child(6) {
	animation-delay: .5s;
}

.h_packerl span:nth-child(7) {
	animation-delay: .6s;
}

.h_packerl span:nth-child(8) {
	animation-delay: .7s;
}

.h_packerl span:nth-child(9) {
	animation-delay: .8s;
}

.h_packerl span:nth-child(10) {
	animation-delay: .9s;
}

.h_packerl span:nth-child(11) {
	animation-delay: .10s;
}

.h_packerl span:nth-child(12) {
	animation-delay: .11s;
}

.h_packerl span:nth-child(13) {
	animation-delay: .12s;
}

.h_packerl span:nth-child(14) {
	animation-delay: .13s;
}

.h_packerl span:nth-child(15) {
	animation-delay: .14s;
}

.h_packerl span:nth-child(16) {
	animation-delay: .15s;
}

.h_packerl span:nth-child(17) {
	animation-delay: .16s;
}

.h_packerl span:nth-child(18) {
	animation-delay: .17s;
}

.h_packerl_2 {
	height: 34px;
}

.h_packerl_2 span {
	position: relative;
	min-width: 4px;
	top: 20px;
	display: inline-block;
	animation: bounce 3s ease infinite alternate;
	font-weight: bold;
	font-size: 30px;
	color: #01ACC4;
	text-shadow: 0 1px 0 #CCC,
		0 2px 0 #CCC,
		0 3px 0 #CCC,
		0 4px 0 #CCC,
		0 5px 0 #CCC,
		0 6px 0 transparent,
		0 7px 0 transparent,
		0 8px 0 transparent,
		0 9px 0 transparent,
		0 10px 10px rgba(0, 0, 0, .4);
}

.h_packerl_2 span:nth-child(2) {
	animation-delay: .1s;
}

.h_packerl_2 span:nth-child(3) {
	animation-delay: .2s;
}

.h_packerl_2 span:nth-child(4) {
	animation-delay: .3s;
}

.h_packerl_2 span:nth-child(5) {
	animation-delay: .4s;
}

.h_packerl_2 span:nth-child(6) {
	animation-delay: .5s;
}

.h_packerl_2 span:nth-child(7) {
	animation-delay: .6s;
}

.h_packerl_2 span:nth-child(8) {
	animation-delay: .7s;
}

.h_packerl_2 span:nth-child(9) {
	animation-delay: .8s;
}

.h_packerl_2 span:nth-child(10) {
	animation-delay: .9s;
}

.h_packerl_2 span:nth-child(11) {
	animation-delay: 1s;
}

.h_packerl_2 span:nth-child(12) {
	animation-delay: 1.1s;
}

.h_packerl_2 span:nth-child(13) {
	animation-delay: 1.2s;
}

.h_packerl_2 span:nth-child(14) {
	animation-delay: 1.3s;
}

.h_packerl_2 span:nth-child(15) {
	animation-delay: 1.4s;
}

.h_packerl_2 span:nth-child(16) {
	animation-delay: 1.5s;
}

.h_packerl_2 span:nth-child(17) {
	animation-delay: 1.6s;
}

.h_packerl_2 span:nth-child(18) {
	animation-delay: 1.7s;
}

@keyframes bounce {
	100% {
		top: -2px;
		text-shadow: 0 1px 0 #CCC,
			0 2px 0 #CCC,
			0 3px 0 #CCC,
			0 4px 0 #CCC,
			0 5px 0 #CCC,
			0 6px 0 #CCC,
			0 7px 0 #CCC,
			0 8px 0 #CCC,
			0 9px 0 #CCC,
			0 50px 25px rgba(0, 0, 0, .2);
	}
}

.packerl-content {
	margin: auto;
	padding: 20px;
	width: 576px;
}

.slick-slide img {
	width: 100%;
}

.slick-prev:before,
.slick-next:before {
	color: black;
}


.slick-slide {
	transition: all ease-in-out .3s;
	opacity: .2;
}

.slick-active {
	opacity: .5;
}

.slick-current {
	opacity: 1;
}

.deckelhoch {
	top: 20px;
}

.packerldiv {
	height: 680px;
	position: relative;
	display: inherit;
	width: auto;
}

.bonustext {
	width: 100%;
	opacity: 0;
	position: absolute;
	top: 180px;
	text-align: center;
	color: #01ACC4;
	font-family: arial;
	font-size: 30px;
	line-height: 35px;
	text-shadow: 0 1px 0 #efefef,
		0 2px 0 #efefef,
		0 3px 0 #efefef,
		0 4px 0 #efefef,
		0 30px 5px rgba(0, 0, 0, .1);
}

.deckel {
	position: absolute;
	top: 160px;
	z-index: 4;
}

.shakedeckel {
	animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
	transform: translate3d(0, 0, 0);
}

.packerl-casino-logo {
	top: 420px;
	position: absolute;
	text-align: center;
	margin-left: -95px;
	left: 50%;
}

.packerl-casino-sterne-div {
	top: 520px;
	position: absolute;
	text-align: center;
	margin-left: -89px;
	left: 50%;
}

.packerl-cta-div {
	top: 550px;
	position: absolute;
	text-align: center;
	margin-left: -135px;
	left: 50%;
}

@keyframes float {
	from {
		transform: rotate(5deg);
	}

	to {
		transform: rotate(-5deg);
	}
}

@keyframes shake {

	10%,
	90% {
		transform: translate3d(-1px, 0, 0);
	}

	20%,
	80% {
		transform: translate3d(2px, 0, 0);
	}

	30%,
	50%,
	70% {
		transform: translate3d(-4px, 0, 0);
	}

	40%,
	60% {
		transform: translate3d(4px, 0, 0);
	}
}

@media only screen and (max-width: 600px) {
	.packerl-content {
		margin: auto;
		padding: 20px 0px;
		width: 100%;
	}
}

@media only screen and (max-width: 320px) {
	.bonustext {
		font-size: 20px;
		line-height: 24px;
	}
}

/******************************************/
h2.h2-small {
	font-size: 22px;
	line-height: 28px;
}

.slot-image {
	text-align: center;
	max-width: 400px;
	margin: 40px auto 10px auto;
}

.slot-image img {
	width: 100%;
}

.automaten-ul {
	margin: 0 0 30px 0;
	padding: 0;
}

.automaten-ul li {
	list-style-type: none;
}

.tagesangebot_de:before {
	content: "Tagesangebot";
	background-image: url(../images/Tagesangebot.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100%;
	width: 100%;
	height: 120px;
	position: absolute;
	margin-top: -54px;
	top: 0;
	left: 0;
	color: #FFFFFF;
	font-size: 26px;
	font-weight: bold;
	line-height: 90px;
}

.tagesangebot_en:before {
	content: "Offer of the day";
	background-image: url(../images/Tagesangebot.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100%;
	width: 100%;
	height: 120px;
	position: absolute;
	margin-top: -54px;
	top: 0;
	left: 0;
	color: #FFFFFF;
	font-size: 26px;
	font-weight: bold;
	line-height: 90px;
}

.tagesangebot_de,
.tagesangebot_en {
	padding-top: 15px;
	padding-bottom: 15px;
	width: 357px;
	max-width: 90%;
	margin: 60px auto 30px auto;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 20px #0000006F;
	border-radius: 20px;
	text-align: center;
	display: block;
	position: relative;
}

.tagesangebot_de .logo_black,
.tagesangebot_en .logo_black {
	margin-top: 40px;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-box {
	margin-bottom: 30px;
}

.l_countryselect {
	font-size: 13px;
	font-weight: bold;
}

.x-icon-div {
	text-align: right;
	width: 100%;
}

.x-icon-div img {
	cursor: pointer;
}

#languagediv {
	text-align: right;
	position: absolute;
	right: 0px;
}

#sprachbutton {
	width: 100%;
	background-color: #C30F17;
	color: #FFF;
	border-color: #FFF;
}

.bg-gruen .slide h3 {
	font-size: 18px !important;
}

.bg-gruen .content-div-light a {
	color: #0BDAEB;
}

.bg-gruen .content-div-light a.casino_cta {
	color: #FFF !important;
}

.country-toggler {
	margin-right: 10px;
	margin-top: 10px;
}

.country-collapse {
	padding: 10px 24px 24px 24px;
	width: 330px;
	background-color: #e9f5e5;
	position: absolute;
	right: 10px;
	top: 40px;
	display: block;
	border: 1px solid black;
	text-align: left;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-align: center;
	align-items: center;
}

.country-collapse select {
	width: 100%;
}

.container {
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
}


h4 a {
	text-decoration: none;
	color: #000000;
	font-style: italic;
	font-size: 23px;
	font-weight: 25px;
	font-weight: 600;
}

h4 a:hover {
	color: #000000;
	text-decoration: none;
}

.h-empfehlungen {
	font-size: 24px;
	line-height: 31px;
	color: #0D5351;
}

.emfehlungen {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

a.fill-div {
	display: block;
	height: 100%;
	width: 100%;
	text-decoration: none;
}

a.fill-div:hover {
	text-decoration: none;
}

.emfehlungen img {
	float: left;
	margin-right: 10px;
}

.emfehlungen div span {
	font-size: 20px;
	line-height: 25px;
	font-weight: bold;
	letter-spacing: 0px;
	color: #0D5351;
}

.emfehlungen div {
	height: 73px;
	background: transparent linear-gradient(180deg, #FFF798 0%, #FCD038 100%) 0% 0% no-repeat padding-box;
	border: 1px solid #FF7600;
	border-radius: 5px;
	width: 32%;
	padding: 8px;
}

.image-block {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
}

.image-block-inner {
	-webkit-box-shadow: 0px 3px 10px 1px rgba(204, 204, 204 0, 1);
	-moz-box-shadow: 0px 3px 10px 1px rgba(204, 204, 204 0, 1);
	box-shadow: 0px 3px 10px 1px rgba(204, 204, 204, 1);
}

.image-block li>.image-block-inner {
	padding-bottom: 30px;
	background-color: #fff;
	height: 100%;
}

.image-block li>.image-block-inner>a {
	display: block;
	overflow: hidden;
}

.image-block li>.image-block-inner>a img {
	border: 1px solid #e1e1df;
}

.image-block li>.image-block-inner:hover {
	background-color: #eee;
}

.hp-posts-cat {
	margin-bottom: 8px;
	margin-top: 10px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0.1rem;
	display: inline-block;
}

.news .image-block li>.image-block-inner h4,
.hp-posts-cat,
.news .image-block li>.image-block-inner p,
.read-more {
	padding: 0 28px;
}

.read-more {
	display: block;
	text-decoration: underline;
	margin-top: 30px;
	font-weight: 600;
}

.zurueck {
	display: none;
	margin-bottom: 30px;
}

ul.gewinnlinien {
	display: table;
	margin-left: 0;
	padding-left: 0;
	margin-top: 20px;
	margin-bottom: 20px;
}

ul.gewinnlinien li {
	float: left;
	list-style-type: none;
	margin-right: 30px;
}

ul.gewinnlinien li img {
	max-width: 150px;
}

.bg-guru-green {
	background-color: #127374;
}

.article-meta__primary span {
	margin: 0 5px;
}

.lowVarianceSlots {
	border-collapse: collapse;
	width: 100%;
}

.lowVarianceSlots td,
.lowVarianceSlots th {
	border: 1px solid #ddd;
	padding: 8px;
}

.lowVarianceSlots tr:nth-child(even) {
	background-color: #f2f2f2;
}

.lowVarianceSlots th {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
	background-color: #127374;
	color: white;
}

.ueber-uns-box {
	width: 400px;
	margin: 20px auto;
	padding: 20px 0;
	border-bottom: 1px solid #c7c6c6;
}

.trustlogos img {
	padding: 4px;
}

.author-box {
	max-width: 420px;
}

.author-box .social-icons {
	font-size: 2em;
}

.bonus-guru-author {
	max-width: 100%;
	height: auto;
	transform: scaleX(-1);
}

.fw-bold {
	font-weight: bold;
}

.team-author {
	max-width: 100%;
	height: auto;
}

[data-toggle="collapse"].collapsed .if-not-collapsed {
	display: none;
}

[data-toggle="collapse"]:not(.collapsed) .if-collapsed {
	display: none;
}

a.mehr-ueber {
	cursor: pointer;
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0px;
	color: #003BFF !important;
}

.skills h3 {
	font-size: 23px;
	line-height: 25px;
	font-style: italic;
	color: #000000;
}

.skills ul {
	margin: 10px 0 20px 0;
	padding: 0;
}

.skills ul li {
	border: 1px solid #bebdbd;
	color: #555555;
	border-radius: 15px;
	display: inline;
	list-style-type: none;
	padding: 2px 8px 4px 8px;
	line-height: 34px;
}

#overlay-garantie {
	display: none;
	position: fixed;
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 550000;
}

#best-bonus-garantie-text {
	/*, .arrow:after */
	display: none;
	/*position: absolute;*/
	position: fixed;
	top: 10px;
	left: 50%;
	bottom: 10px;
	width: 300px;
	margin-left: -150px;
	background: #0d5351;
	border: 2px solid white;
	padding: 10px 20px;
	color: white;
	border-radius: 20px;
	box-shadow: 0 0 7px black;
	overflow-y: scroll;
	z-index: 600000;
}

#best-bonus-garantie-text a {
	color: #0BDAEB;
}

.garantie-headline {
	margin-top: 35px;
	text-align: center;

}

.garantie-satz {
	font-size: 24px;
	text-align: center;
	font-weight: bold;
}

.btn-x {
	text-align: right;
}

.inhalt {
	background-color: #e7f2f7;
	padding: 15px;
}

.bg-gruen h2,
.bg-gruen h3,
.bg-gruen h4 {
	color: #FFF;
}

.inhalt h2 {
	font-size: 20px;
	margin: 15px 0 0px;
	color: rgba(80, 80, 80, 1);
}

.lesezeit {
	font-size: 14px;
}

.toc {
	text-align: right;
	font-size: 0.7em;
}

.toc a {
	color: #95b4d6;
}

.smalltext {
	font-size: 14px;
}

.beispieldiv img {
	max-width: 100%;
}

.geldwert {
	width: 100%;
	font-weight: bold;
	font-size: 1.1em;
	text-align: center;
}

.geldwert-beschriftung {
	width: 100%;
	text-align: center;
}

img.achzehnplus {
	float: left;
	margin-right: 15px;
}

ol.breadcrumbs {
	padding: 10px 16px;
	list-style: none;
}

ol.breadcrumbs li {
	display: inline;
	font-size: 18px;
}

ol.breadcrumbs li+li:before {
	padding: 0px;
	color: black;
	content: "/\00a0";
	font-size: 0.8em;
}

ol.breadcrumbs li a {
	color: #5c7991;
	text-decoration: none;
	font-size: 0.8em;
}

ol.breadcrumbs li a:hover {
	text-decoration: underline;
}

.top3casinos {
	width: 400px;
	margin: 20px auto 0 auto;
}

.top3casinos h2 {
	text-align: center;
}

table.top3table {
	border-collapse: collapse;
	margin: 20px auto 0 auto;
	max-width: 400px;
	line-height: 22px;
}

table.top3table th {
	text-align: center;
	border-bottom: 1px solid #FFFFFF;
	line-height: 20px;
	text-align: left;
	background-color: #FFFFFF;
	font-size: 1.2em;
	background-color: #127374;
	color: white;
	padding: 10px;
}

table.top3table td {
	padding: 2px 10px;
	border-bottom: 1px solid #FFFFFF;
	line-height: 20px;
	text-align: left;
}

table.top3table tr:nth-child(odd) {
	background-color: #e8e8e8;
}

table.top3table td.bonuscodecell {
	text-align: center;
}

.alignright {
	float: right;
	margin-left: 5px;
}

.alignleft {
	float: left;
	margin-right: 5px;
}

.aligncenter {
	width: 300px;
	margin: auto;
}

.maxwith {
	max-width: 100%;
}

.bonus-guru-tipp {
	padding: 10px;
	background-color: #dcf0df;
	color: #000;
	margin: 8px 0;
	border: 1px dashed #127374;
}

.bonus-guru-tipp p {
	margin: 0;
}

.guru-dark {
	background-color: #0A5453;
}

.guru-light {
	background-color: #127374;
}

.bg-weiss {
	background-color: #FFFFFF;
	color: rgba(80, 80, 80, 1);
}

.bg-gruen {
	background-color: #127374;
	color: #FFFFFF;
}

.bg-dunkel-gruen {
	background-color: #0A5453;
}

nav.navbar {
	background-color: rgba(13, 83, 81, 1);
	padding: 10px 0 10px 0;
}

.suche {
	float: right;
}

.navbar-brand {
	transform: translateX(-50%);
	left: 50%;
	position: absolute;
	top: 4px;
}

.brand-wrap,
.navbar-brand {
	opacity: 1 !important;
}

.link,
a {
	color: #06c;
	letter-spacing: inherit;
}

h2 {
	font-size: 32px;
	line-height: 1.125;
	font-weight: 600;
	letter-spacing: .004em;
}

h3 {
	font-size: 19px;
	line-height: 1.21053;
	font-weight: 400;
	letter-spacing: .012em;
	margin-top: 2rem !important;
	margin-bottom: 0.75rem !important;
}

.ctadiv {
	display: block;
	cursor: pointer;
}

.headline-dark {
	line-height: 42px;
	margin-top: 20px;
	text-align: center;
	font-style: normal;
	font-weight: normal;
	font-size: 32px;
	color: rgba(80, 80, 80, 1);
	max-width: 350px;
	margin-left: auto;
	margin-right: auto;
}

.bg-headline-kreis {
	width: 100%;
	background: linear-gradient(180deg, #127374 50%, #FFFFFF 50%);
}

.headline-kreis {
	line-height: 30px;
	margin-top: 0;
	text-align: center;
	font-style: normal;
	font-weight: normal;
	font-size: 26px;
	color: rgb(255 255 255);
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
	background-image: url('../images/Kreis_rot.svg');
	background-size: 100%;
	background-position: center;
	height: 300px;
	padding: 90px 40px 0 40px;
}

.headline-kreis lottie-player {
	margin-top: 10px !important;
}

.headline-red {
	line-height: 42px;
	margin-top: 25px;
	text-align: center;
	font-style: normal;
	font-weight: bold;
	font-size: 32px;
	color: #FF0000;
}

.headline-light {
	line-height: 42px;
	margin-top: -5px;
	text-align: center;
	font-style: normal;
	font-weight: normal;
	font-size: 32px;
	color: rgba(255, 255, 255, 1);
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}

.text-after-headline-dark h2,
.headline-dark h2,
.bg-weiss h2,
.text-after-headline-dark h3,
.headline-dark h3,
.bg-weiss h3 {
	color: rgba(80, 80, 80, 1);
}

.text-after-headline-dark {
	line-height: 22px;
	text-align: center;
	font-style: normal;
	font-weight: normal;
	font-size: 17px;
	color: rgba(80, 80, 80, 1);
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}

.text-after-headline-light {
	line-height: 22px;
	text-align: center;
	font-style: normal;
	font-weight: normal;
	font-size: 17px;
	color: rgba(255, 255, 255, 1);
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}

.game-video {
	margin-top: 28px;
	width: 140px;
	height: 302px;
	display: inline-block;
}

.video_box {
	position: relative;
}

.bg-handy {
	position: absolute;
	width: 320px;
	height: 449px;
	z-index: 30;
	left: 50%;
	margin-left: -160px;


}

/*.bg-handy {
	box-sizing: border-box;
    background: url(../images/Handy_Hand_V2.png) center center no-repeat;
    background-size: contain;
    width: 360px;
	height: 505px;
	margin: 0 auto;
}*/
.nurnoch {
	line-height: 20px;
	padding-top: 10px;
	padding-bottom: 0px;
	text-align: center;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	color: #FF0000;
}

.casino-logo {
	text-align: center;
}

.casino-name {
	color: grey;
}

.price {
	font-size: 0.9em;
}

.shoplayout .content-div-dark,
.content-div-dark-slot {
	max-width: 1006px;
	margin: 30px auto;
	color: rgba(80, 80, 80, 1);
}

.content-div-dark,
.content-div-dark-slot {
	width: 900px;
	margin: 30px auto;
	color: rgba(80, 80, 80, 1);
}

.content-div-light {
	width: 900px;
	margin: 30px auto;
	color: rgba(255, 255, 255, 1);
}

.content-div-dark img,
.content-div-light img {
	max-width: 100%;
}

.alphabet {
	font-size: 23px;
	line-height: 35px;
	font-weight: 600;
	letter-spacing: 6px;
}

.alphabet a {
	color: white;
}

.begriff {
	font-style: italic;
	font-size: 17px;
	line-height: 24px;
	color: #0BDAEB;
}

.begriff a {
	font-style: italic;
	font-size: 17px;
	line-height: 24px;
	color: #0BDAEB;
}

.glossar a {
	text-decoration: none !important;
	color: #0BDAEB !important;
}

.glossar a:hover {
	text-decoration: none !important;
	color: #0BDAEB !important;
}

.glossar-box {
	display: none;
}

#my-canvas {
	display: none;
	position: absolute;
	top: 50px;
	left: 50%;
	width: 300px;
	height: 300px;
	margin-left: -150px;
}

#Mit_Garantie_der_beste_Bonus__ {
	height: 58px;
	line-height: 25px;
	margin-top: -4px;
	text-align: center;

	font-style: normal;
	font-weight: normal;
	font-size: 17px;
	color: rgba(80, 80, 80, 1);
}

#Mach_dein_Spiel_mit_einem_Bonu {
	height: 60px;
	line-height: 22px;
	margin-top: 2px;
	text-align: center;

	font-style: normal;
	font-weight: normal;
	font-size: 17px;
	color: rgba(255, 255, 255, 1);
}


#nur_noch_1543_Minuten {
	height: 25px;
	line-height: 25px;
	margin-top: -4px;
	text-align: center;

	font-style: normal;
	font-weight: normal;
	font-size: 17px;
	color: rgba(255, 0, 0, 1);
}

#nur_noch_1543_Minuten div {
	margin-top: 55px;
}

#n_00__Freispiele_Im_Wildz_Casi {
	padding-top: 50px;
	height: 280px;
	text-align: center;
	font-style: normal;
	font-weight: bold;
	font-size: 40px;
	line-height: 42px;
	color: rgba(255, 255, 255, 1);
	background-image: url(../images/Handy_Cover.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	max-width: 100%;
	width: 600px;
	margin: 0 auto;
}

#n_00__Freispiele_Im_Wildz_Casi div {
	width: 100%;
}

#im_casino {
	font-style: normal;
	font-weight: normal;
	font-size: 25px;
	line-height: 28px;
	margin-top: 10px;
}

.cta-div-light,
.cta-div-dark {
	line-height: 25px;
	margin-top: 10px;
	text-align: center;

	font-style: normal;
	font-weight: normal;
	font-size: 17px;
	color: rgba(255, 255, 255, 1);
}


#mehr_lesen_ {
	height: 19px;
	line-height: 25px;
	margin-top: -4px;
	text-align: center;
	font-style: normal;
	font-weight: normal;
	font-size: 17px;

}

.mehr_lesen {
	line-height: 25px;
	text-align: center;
	font-style: normal;
	font-weight: normal;
	font-size: 17px;
}

.mehr {
	color: rgba(41, 151, 255, 1);
	text-decoration: none;
	background-image: url(../images/pfeil.png);
	background-position: right 8px;
	background-repeat: no-repeat;
	padding-right: 13px;
	cursor: pointer;
}

.cta-flex {
	/*background: transparent linear-gradient(180deg, #E00812 0%, #C30F17 100%) 0% 0% no-repeat padding-box;*/
	background-color: #C30F17;
	border-radius: 20px;
	opacity: 1;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	color: white;
	text-decoration: none;
	padding: 8px 20px;
	-webkit-animation: glowing-dark 2000ms infinite;
	-moz-animation: glowing-dark 2000ms infinite;
	-o-animation: glowing-dark 2000ms infinite;
	animation: glowing-dark 2000ms infinite;
}

.bonuscode-div {
	margin-left: 20px;
	margin-right: 20px;
	text-align: left;
}

.copy-code {
	box-shadow: 0px 0px 20px var(--unnamed-color-ffffff);
	background: #E8E8E8 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 20px #FFFFFF;
	border: 1px solid #707070;
	border-radius: 20px;
	text-align: center;
	font-size: 22px;
	line-height: 26px;
	font-weight: bold;
	letter-spacing: 0px;
	color: #3C3C3C;
	opacity: 1;
	display: block;
	padding: 8px 20px;
	text-decoration: none;
	margin: 7px auto 0 auto;
	width: 270px;
}

.copy-code:hover {
	text-decoration: none;
	color: #3C3C3C;
}

.copy-code:after {
	content: "";
	background-image: url(../images/Bonusguru_Copy_Icon.svg);
	background-position: right center;
	margin-top: -2px;
	margin-left: 0px;
	width: 25px;
	height: 32px;
	float: right;
	font-size: 40px;
	line-height: 20px;
}

.copy-code-text {
	text-align: left;
	font-size: 22px;
	line-height: 24px;
	font-weight: bold;
	display: inline-block;
	letter-spacing: 0px;
	color: #FF0000;
	opacity: 1;
}

#filter-anwenden {
	width: 270px;
	font-size: 20px;
	line-height: 26px;
	display: inline-block;
	opacity: 1;
	text-align: center;
	color: white;
	text-decoration: none;
	padding: 4px 10px;
	background: transparent linear-gradient(180deg, #E00812 0%, #C30F17 100%) 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 20px #FFFFFF;
	border-radius: 20px;
	margin-top: 30px;
}

.shop .card .cta-rot {
	width: 96%;
	margin: 0px 2% 5px 2%;
	line-height: 26px;
	display: inline-block;
	background-color: #C30F17;
	border-radius: 20px;
	opacity: 1;
	text-align: center;
	color: white;
	text-decoration: none;
	padding: 8px 10px;
}

.bg-gruen .content-div-light a.cta {
	color: white;
}

.slider .game {
	width: 100%;
	height: 140px;
}

.slider .game img {
	width: 100%;
	height: 140px;
	object-fit: cover;
}

.slide .cta {
	width: 200px;
	margin: 10px auto;
	font-size: 22px;
	line-height: 26px;
	font-weight: bold;
	display: inline-block;
	background-color: #C30F17;
	border-radius: 20px;
	opacity: 1;
	text-align: center;
	color: white;
	text-decoration: none;
	padding: 14px 20px;
}

.cta-div-light .cta {
	width: 270px;
	font-size: 22px;
	line-height: 26px;
	font-weight: bold;
	display: inline-block;
	/*background: transparent linear-gradient(180deg, #E00812 0%, #C30F17 100%) 0% 0% no-repeat padding-box;*/
	background-color: #C30F17;
	border-radius: 20px;
	opacity: 1;
	text-align: center;
	color: white;
	text-decoration: none;
	padding: 14px 20px;
	-webkit-animation: glowing-light 2000ms infinite;
	-moz-animation: glowing-light 2000ms infinite;
	-o-animation: glowing-light 2000ms infinite;
	animation: glowing-light 2000ms infinite;
}

.cta-div-light-small {
	left: 50%;
	position: absolute;
	margin-left: -115px;
}

.cta-div-light-small .cta {
	width: 230px;
	font-size: 22px;
	line-height: 26px;
	font-weight: bold;
	display: inline-block;
	/*background: transparent linear-gradient(180deg, #E00812 0%, #C30F17 100%) 0% 0% no-repeat padding-box;*/
	background-color: #C30F17;
	border-radius: 20px;
	opacity: 1;
	text-align: center;
	color: white;
	text-decoration: none;
	padding: 14px 20px;
	-webkit-animation: glowing-light 2000ms infinite;
	-moz-animation: glowing-light 2000ms infinite;
	-o-animation: glowing-light 2000ms infinite;
	animation: glowing-light 2000ms infinite;
}

.cta-div-dark .cta {
	font-size: 22px;
	line-height: 26px;
	font-weight: bold;
	display: inline-block;
	/*background: transparent linear-gradient(180deg, #E00812 0%, #C30F17 100%) 0% 0% no-repeat padding-box;*/
	background-color: #C30F17;
	border-radius: 20px;
	opacity: 1;
	text-align: center;
	color: white;
	text-decoration: none;
	padding: 14px 20px;
	-webkit-animation: glowing-dark 1500ms infinite;
	-moz-animation: glowing-dark 1500ms infinite;
	-o-animation: glowing-dark 1500ms infinite;
	animation: glowing-dark 1500ms infinite;
}

.cta:hover,
.cta-flex:hover {
	color: #a4ccf8;
	text-decoration: none;

}

#error_search {
	padding: 20px;
	background-color: #f6ced7;
	border: 1px solid red;
	margin: 30px 0;
}

#bonuscode1 {
	margin-top: 5px !important;
}

#bonuscode1::before {
	content: "Guru \A Tipp";
	white-space: pre-wrap;
	margin-top: -15px;
	background-image: url(../images/GuruTipp.png);
	background-repeat: no-repeat;
	height: 113px;
	width: 92px;
	position: absolute;
	z-index: 3;
	text-align: center;
	font: normal normal bold 19px/20px 'Open Sans';
	letter-spacing: 0px;
	color: #FFFFFF;
	right: 0;
	padding-top: 30px;
}

.hide-before::before {
	background-image: none !important;
	content: "" !important;
}

.markierung-ohne-einzahlung::before {
	content: "Ohne Einzahlung";
	white-space: pre-wrap;
	margin-top: 15px;
	background-image: url(../images/balken_blau.png);
	background-repeat: no-repeat;
	height: 34px;
	width: 162px;
	position: absolute;
	z-index: 3;
	text-align: left;
	font: normal normal bold 15px/34px 'Open Sans';
	letter-spacing: 0px;
	color: #FFFFFF;
	left: 0;
	padding-left: 6px;
}

.markierung-no-deposit::before {
	content: "No Deposit";
	white-space: pre-wrap;
	margin-top: 15px;
	background-image: url(../images/balken_blau.png);
	background-repeat: no-repeat;
	height: 34px;
	width: 162px;
	position: absolute;
	z-index: 3;
	text-align: left;
	font: normal normal bold 16px/34px 'Open Sans';
	letter-spacing: 0px;
	color: #FFFFFF;
	left: 0;
	padding-left: 6px;
}

.markierung-ohne-einzahlung-titel {
	display: none;
	white-space: pre-wrap;
	margin-top: 5px;
	background-image: url(../images/balken_blau.png);
	background-repeat: no-repeat;
	height: 24px;
	width: 162px;
	z-index: 3;
	text-align: left;
	font: normal normal bold 15px/24px 'Open Sans';
	letter-spacing: 0px;
	color: #FFFFFF;
	padding-left: 7px;
}

.daumen {
	margin-top: 30px;
}

.card-product-list .cta-div-rot {
	width: 240px;
	font-size: 20px;
	line-height: 30px;
	display: block;
	background-color: #D8D8D8;
	border: 2px solid #C30F17;
	border-radius: 20px;
	opacity: 1;
	text-align: center;
	color: white;
	text-decoration: none;
	padding: 8px 10px;
	position: relative;
	height: 52px;
	margin: 0 auto;
	box-shadow: 2px 3px 7px 0px #c0bebe
}

.cta-div-rot {
	width: 270px;
	font-size: 20px;
	line-height: 30px;
	display: block;
	background-color: #D8D8D8;
	border: 2px solid #C30F17;
	border-radius: 20px;
	opacity: 1;
	text-align: center;
	color: white;
	text-decoration: none;
	padding: 8px 10px;
	position: relative;
	height: 52px;
	margin: 0 auto;
	box-shadow: 2px 3px 7px 0px #c0bebe
}

.cta-div-rot:before {
	position: absolute;
	height: 52px;
	top: -2px;
	left: 60px;
	right: 0;
	bottom: 0;
	content: "";
	z-index: 1;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	background-color: #C30F17;
}

.cta-div-rot .hidden-code {
	text-align: left;
	/*margin-left: -90px;*/
	padding-left: 5px;
	font-size: 22px;
	line-height: 30px;
	font-weight: bold;
	overflow: hidden;
	letter-spacing: 0px;
	color: #3C3C3C;
	left: 6px;
	position: absolute;
}

#filter {
	text-align: center;
	color: white;
	border: 2px solid white;
	border-radius: 20px;
	padding: 5px 5px;
	height: 40px;
	width: 200px;
	margin: 10px auto;
	font-size: 17px;
	line-height: 24px;
	cursor: pointer;
}

#filter-div {
	display: none;
	background: #D9D9D9 0% 0% no-repeat padding-box;
	box-shadow: 0px 6px 6px #00000029;
	border: 1px solid #707070;
	padding: 5px 7px 20px 20px;
	font-size: 17px;
	line-height: 26px;
	position: absolute;
	z-index: 20;
	width: 96%;
	max-width: 354px;
	top: 107px;
	margin: 7px 0 30px 0;
}

.filter-content-hl {
	font-size: 17px;
	line-height: 26px;
	font-weight: bold;
	margin-top: 15px;
	display: inline-block;
}

#filter-div input[type=checkbox] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	position: relative;
	background-color: #fff;
	color: #000;
	top: 6px;
	height: 16px;
	width: 16px;
	cursor: pointer;
	margin-right: 5px;
	margin-bottom: 3px;
	outline: none;
	border: 1px solid #000;
}

.filter-content input[type=checkbox]:checked::before {
	content: '';
	background-color: #000;
	height: 12px;
	width: 12px;
	display: inline-block;
	position: absolute;
	left: 1px;
	top: 1px;
	border: 0;
	cursor: pointer;
	text-align: center;
	outline: none;
}

#filter-div input[type=radio] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	position: relative;
	background-color: #fff;
	color: #000;
	top: 7px;
	height: 16px;
	width: 16px;
	border: 0;
	cursor: pointer;
	margin-right: 2px;
	margin-bottom: 3px;
	outline: none;
	border-radius: 40px;
	border: 1px solid #000;
}

#filter-div input[type=radio]:checked:before {
	background-color: #000;
}

#filter-div input[type=radio]:before {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	content: "";
	display: inline-block;
	background-color: #fff;
	border-radius: 40px;
	border: 1px solid #fff;
	height: 14px;
	width: 14px;
	position: absolute;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
}

#filter-div select {
	display: inline-block;
	width: auto;
	border-radius: 2.5rem;
	border-color: #333;
	color: #333;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-repeat: no-repeat;
	background-size: 0.6em auto;
	background-position: right 2rem center;
	padding: 0 3rem 0 2rem;
	background-image: url('data:image/svg+xml;charset=utf-8, \ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><path d="M119.5 326.9L3.5 209.1c-4.7-4.7-4.7-12.3 0-17l7.1-7.1c4.7-4.7 12.3-4.7 17 0L128 287.3l100.4-102.2c4.7-4.7 12.3-4.7 17 0l7.1 7.1c4.7 4.7 4.7 12.3 0 17L136.5 327c-4.7 4.6-12.3 4.6-17-.1z"/></svg>');
}

.cta-div-rot .text {
	position: absolute;
	z-index: 2;
	right: 8px;
	white-space: nowrap;
}

.cta-div-rot .overlay {
	background: url("../images/Button_Ecke.png");
	width: 87px;
	height: 77px;
	position: absolute;
	z-index: 3;
	top: -6px;
	left: 35px;
}

.cta-div-rot .overlay-zupf {
	background: url("../images/Button_Ecke.png");
	width: 87px;
	height: 77px;
	position: absolute;
	z-index: 3;
	top: -6px;
	left: 35px;
	animation-delay: 3s;
	-webkit-animation: zupf 3000ms infinite;
	-moz-animation: zupf 3000ms infinite;
	-o-animation: zupf 3000ms infinite;
	animation: zupf 3000ms infinite;
}

.prozentringcol {
	width: 100px;
	margin-left: 5px;
}

.card-product-list .rating_bar_subcat {
	width: 110px;
	height: 22px;
	background: url("../images/Sternebewertung.png");
	background-repeat: repeat-x;
	background-position: 0 0;
	float: left;
	margin-left: 6px;
}

.rating_bar_subcat {
	width: 110px;
	height: 22px;
	background: url("../images/Sternebewertung.png");
	background-repeat: repeat-x;
	background-position: 0 0;
	float: left;
	margin-left: 17px;
}

.rating_subcat {
	height: 22px;
	background: url("../images/Sternebewertung.png");
	background-position: 0 -22px;
	background-repeat: repeat-x;
}

.card-product-list .sterne {
	text-align: left;
	padding: 0;
	width: 220px;
	margin-left: 70px;
}

.sterne {
	text-align: center;
	padding: 0 30px 0 75px;
}

.bonus-titelbild {
	position: absolute;
	bottom: 0;
	left: 0;
	margin-right: 5px;
}

.card-product-list .vorteile ul {
	text-align: left;
	font-size: 14px;
	margin-top: 10px;
	padding-left: 15px;
}

.oneboxinshop {
	min-height: 320px;
}

.card-product-list .hakerl1 {
	padding-left: 3px;
}

.card-product-list .produkt-mehrerfahren a {
	text-align: left;
}

.card-product-list .cta-div-rot .text {
	font-size: 0.8em;
	position: absolute;
	right: 14px;
}

.card-product-list .produkt-mehrerfahren {
	padding-left: 0px;
}

.vorteile ul {
	text-align: left;
	font-size: 0.8em;
}

.percent {
	display: inline-block;
	line-height: 90px;
	z-index: 2;
	font-size: 30px;
	font-weight: bold;
	color: #1CB508;
}

.chart1,
.chart2,
.chart3,
.chart4,
.chart5,
.chart6,
.chart7,
.chart8,
.chart9,
.chart10 {
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	position: relative;
	display: inline-block;
	width: 90px;
	height: 90px;
	margin-top: 5px;
	margin-bottom: 5px;
	text-align: center;
}

.chart1 canvas,
.chart2 canvas,
.chart3 canvas,
.chart4 canvas,
.chart5 canvas,
.chart6 canvas,
.chart7 canvas,
.chart8 canvas,
.chart9 canvas,
.chart10 canvas {
	position: absolute;
	top: 0;
	left: 0;
}

.sternezahlen {
	line-height: 38px;
	font-size: 12px;
	text-align: left;
}

.percent:after {
	content: '%';
	margin-left: 0em;
	font-size: 30px;
	font-weight: bold;
	color: #1CB508;
}

.uebereinstimmung {
	font: italic normal 600 23px/20px 'Open Sans';
	letter-spacing: 0px;
	color: #3B3B3B;
	margin-top: 30px;
}

.uebereinstimmung_text {
	font: normal normal normal 17px/17px 'Open Sans';
	letter-spacing: 0px;
	color: #000000;
	margin-top: 4px;
}

.dein-bonuscode-text {
	text-align: center;
	font: normal normal bold 22px/24px 'Open Sans';
	letter-spacing: 0px;
	color: #FF0000;
}

a.daumen-hoch {
	color: #717171;
}

.daumen-hoch {
	cursor: pointer;
	text-align: center;
	font: normal normal bold 23px/39px 'Open Sans';
	letter-spacing: 0px;
	color: #717171;
}

.daumen-hoch span {
	margin-left: 30px;
	line-height: 50px;
}

.daumen-hoch:before {
	content: '';
	background: url('../images/like.svg');
	background-position: 0 5px;
	background-repeat: no-repeat;
	width: 33px;
	height: 40px;
	display: block;
	position: absolute;
}

.daumen-hoch-gruen {
	color: rgb(28, 181, 8);
}

.daumen-hoch-gruen {
	text-align: center;
	font: normal normal bold 23px/39px 'Open Sans';
	letter-spacing: 0px;
	color: rgb(28, 181, 8);
}

.daumen-hoch-gruen span {
	margin-left: 30px;
	line-height: 50px;
}

.daumen-hoch-gruen:before {
	content: '';
	background: url('../images/like_active.svg');
	background-position: 0 5px;
	background-repeat: no-repeat;
	width: 33px;
	height: 40px;
	display: block;
	position: absolute;
}

a.daumen-runter {
	color: #717171;
}

.daumen-runter {
	cursor: pointer;
	text-align: center;
	font: normal normal bold 17px/29px 'Open Sans';
	letter-spacing: 0px;
	color: #717171;
	padding-top: 12px;
}

.daumen-runter span {
	margin-left: 25px;
	line-height: 32px;
}

.daumen-runter:before {
	content: '';
	background: url('../images/dislike.svg');
	background-repeat: no-repeat;
	background-position: 0 10px;
	width: 25px;
	height: 43px;
	display: block;
	position: absolute;
}

.mehrerfahren a {
	padding: 20px 0;
	display: block;
	text-align: center;
	text-decoration: underline;
	font: normal normal normal 15px/18px 'Open Sans';
	letter-spacing: 0px;
	color: #0089FF;
}

.produkt-mehrerfahren a {
	padding: 0 0 20px 0;
	display: block;
	text-align: center;
	text-decoration: underline;
	font: normal normal normal 15px/18px 'Open Sans';
	letter-spacing: 0px;
	color: #0089FF;
}

.bonusboxen {
	position: absolute;
	width: 100%;
	display: block;
}

.bonusbox_ohne_guru {
	padding-top: 15px;
	padding-bottom: 15px;
	width: 357px;
	max-width: 90%;
	margin: 30px auto 30px auto;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 20px #0000006F;
	border-radius: 20px;
	text-align: center;
	display: block;
	position: relative;
}

.bonusbox_ohne_guru .logo_black {
	margin-top: 40px;
}

.bonusbox_ohne_guru div {
	margin: 10px 30px;
}

.bonsubox_ohne_guru .lottidiv {
	height: 90px;
	padding-top: 20px;
	padding-bottom: 20px;
}

.redirect-text {
	font-size: 28px;
	line-height: 34px;
	color: #3C3C3C;
	text-align: center;
}

.redirect-text span {
	font-weight: bold;
	color: #FF0000;
}

.bonusbox-generator {
	padding-top: 0px;
	width: 357px;
	max-width: 100%;
	margin: 40px auto 30px auto;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 20px #0000006F;
	border-radius: 3px;
	text-align: center;
	display: block;
	position: relative;
}

.bonusbox-generator h2 {
	text-align: center;
	font: normal normal bold 25px/30px 'Open Sans' !important;
	letter-spacing: 0px;
	color: #000000;
	margin: 0 !important;
}

.bonuscodebox-logo {
	height: 70px;
	box-shadow: 0px 6px 6px #00000064;
	opacity: 1;
}

.farbbalken {
	height: 50px;
	box-shadow: 0px 6px 6px #00000064;
	opacity: 1;
	margin-bottom: 15px;
}

.farbbalken .sterne {
	color: #FFFFFF;
}

h2.balkenueberschrift {
	color: #FFFFFF;
	font-size: 20px;
	line-height: 51px;
	margin-left: 0px;
}

.produkt-logo {
	margin: 10px auto 0px auto;
	display: block;
}

.bonuscodebox-logo img {
	margin-top: 5px;
}

.bonusbox {
	padding-top: 15px;
	width: 357px;
	max-width: 90%;
	margin: 180px auto 30px auto;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 20px #0000006F;
	border-radius: 20px;
	text-align: center;
	display: block;
	position: relative;
}

.bonusbox:before {
	content: "";
	background-image: url('../images/Guru_schaut_nach_unten_schatten.png');
	background-position: top right;
	background-repeat: no-repeat;
	width: 185px;
	height: 162px;
	position: absolute;
	margin-top: -158px;
}

.biszu {
	font-weight: normal;
	font-size: 17px;
	line-height: 17px;
}

.fsheadline {
	margin-left: 24px;
}

.fs-bonus-text {
	font-size: 25px;
	line-height: 30px;
	font-weight: bold;
	/*text-align: center;*/
	letter-spacing: 0px;
	color: #3B3B3B;
	margin-top: 20px;
	margin-bottom: 10px;
}

.card-product-list .casino-bonus-text {
	font-size: 30px;
	line-height: 35px;
	font-weight: bold;
	letter-spacing: 0px;
	color: #3B3B3B;
	text-align: left;
}

.card-product-list .sternezahlen {
	font-size: 17px;
	line-height: 30px;
}

.casino-bonus-text {
	font-size: 25px;
	line-height: 30px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0px;
	color: #3B3B3B;
}

.bonusbox-generator ul li img {
	margin-left: 4px;
}

p.abc {
	font-weight: 700;
	display: flex;
	align-items: flex-end;
	background-image: url(../images/Muenze_75x75px.png);
	background-repeat: no-repeat;
	background-size: 75px;
	margin-top: 45px;
}

span.letter {
	text-align: center;
	font-size: 50px;
	display: inline-block;
	width: 75px;
	height: 75px;
	color: #815d00;
	line-height: 75px;
}

#bg-bonus-tabelle {
	background-color: #127374 !important;
	padding-bottom: 80px;
}

/*************** Bonus Code Generator ***********************/


div.hidden {
	display: none
}

kbd {
	font-size: 36px;
	background-color: #d99b29;
}

.ueberpruefe {
	font-size: 36px;
	line-height: 42px;
	text-align: center;
	width: 250px;
	margin: 30px auto;
}

#loading-div2 {
	display: none;
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
}

#loading-div1 {
	display: none;
	top: 300px;
	left: 50%;
	width: 200px;
	margin-left: -100px;
	position: relative;
}

#video {
	position: absolute;
	top: 0px;
	right: 0px;
	min-width: 100%;
	min-height: 100%;
	width: 100%;
	height: auto;
	z-index: -1000;
	overflow: hidden;
}

#video_pattern {
	background-image: url(./pattern.png);
	position: fixed;
	opacity: 0.5;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: -1;
}


div.table {
	display: table;
	border-collapse: collapse;
}

div.tr {
	display: table-row;
}

div.td {
	display: table-cell;
	border: thin solid red;
	padding: 5px;
}

#bonusgenerator-background {
	background: #EDEDED;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	margin: 0;
	padding: 0;
}

.bonusgenerator-div {
	width: 428px;
	margin: 0 auto;
	padding: 0 12px;
}

#bonusgenerator-header {
	background: var(--unnamed-color-127374) 0% 0% no-repeat padding-box;
	background: #127374 0% 0% no-repeat padding-box;
	border: 1px solid #707070;
	height: 75px;
}

.bonusgenerator-div h2 {
	font-size: 120%;
	line-height: 120%;
	margin: 0 0 8px;
	font-weight: normal;
}

.btn-bg2 {
	float: right;
}

.btn-bg {
	float: right;
	padding-top: 12px;
}

#bonuscodegeneratorheadline {
	font-size: 17px;
	line-height: 24px;
	float: left;
	padding-top: 15px;
	padding-bottom: 10px;
	color: #FFFFFF;

}

#fortschritt {
	width: 100%;
	margin: 10px auto 0 auto;
	margin: 14px auto;
	clear: both;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

#popup_1,
#popup_2,
#popup_3 {
	display: none;
	width: 80%;
	max-width: 300px;
	margin: 10% auto;
}

.bonuspopup {
	background: transparent linear-gradient(180deg, var(--unnamed-color-ffffff) 0%, #9DE3E5 100%) 0% 0% no-repeat padding-box;
	background: transparent linear-gradient(180deg, #FFFFFF 0%, #9DE3E5 100%) 0% 0% no-repeat padding-box;
	box-shadow: 10px 10px 30px #000000CE;
	border-radius: 20px;
	padding: 20px;
	text-align: center;
}

.popup_text {
	text-align: center;
	font-size: 32px;
	line-height: 40px;
}

.code_red {
	color: var(--unnamed-color-ff0000);
	font-weight: bold;
}

.frage-headline {
	width: 100%;
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
}

.frage-text {
	width: 100%;
	display: inline-block;
	font-size: 32px;
	line-height: 40px;
	margin-top: 5px;
	margin-bottom: 5px;
	color: #151515;
}

.frage-text-weiss {
	width: 100%;
	display: inline-block;
	font-size: 32px;
	line-height: 40px;
	margin-top: 5px;
	margin-bottom: 5px;
	color: #FFFFFF;
}


.btn-numbers {
	background-color: #B3B3B3;
	height: 8px;
	width: 22%;
}

.step-active {
	background-color: #FF0000;
}

.bg-frage {
	margin: 0px auto;
	text-align: left;
	line-height: 26px;
	font-size: 20px;
	padding: 10px 20px 20px 20px;
}

.bg-grid-100 {
	display: grid;
	grid-template-columns: 100%;
}

.bg-grid {
	display: grid;
	grid-template-columns: 48% 48%;
	grid-column-gap: 4%;
}

.bg-box {
	display: inline-block;
	text-align: center;
	width: 200px;
	cursor: pointer;
	margin: 10px auto 0px auto;
	box-shadow: 0px 0px 20px var(--unnamed-color-ffffff);
	background: transparent linear-gradient(180deg, #E00812 0%, #C30F17 100%) 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 20px #FFFFFF;
	border-radius: 20px;
	padding: 15px 25px;
	color: #FFFFFF;
	display: inline-block;
	font: normal bold 26px/1 "Open Sans", sans-serif;
	text-align: center;
	box-shadow: 2px 1px 5px 0px #000;
}

.bg-box-finden {
	display: inline-block;
	text-align: center;
	width: 240px;
	cursor: pointer;
	margin: 10px auto 0px auto;
	box-shadow: 0px 0px 20px var(--unnamed-color-ffffff);
	background: transparent linear-gradient(180deg, #E00812 0%, #C30F17 100%) 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 20px #FFFFFF;
	border-radius: 20px;
	padding: 15px 15px;
	color: #FFFFFF;
	display: inline-block;
	font: normal bold 26px/1 "Open Sans", sans-serif;
	text-align: center;
	box-shadow: 2px 1px 5px 0px #000;
}

.bg-box-large {
	display: inline-block;
	text-align: center;
	cursor: pointer;
	margin: 10px auto 0px auto;
	/*background: transparent linear-gradient(180deg, #E00812 0%, #C30F17 100%) 0% 0% no-repeat padding-box;*/
	background-color: #C30F17;
	border-radius: 20px;
	padding: 22px 25px;
	color: #ffffff;
	display: inline-block;
	font: normal bold 26px/1 "Open Sans", sans-serif;
	line-height: 34px;
	text-align: center;
	box-shadow: 2px 1px 5px 0px #000;
	-webkit-animation: glowing-dark 1500ms infinite;
	-moz-animation: glowing-dark 1500ms infinite;
	-o-animation: glowing-dark 1500ms infinite;
	animation: glowing-dark 1500ms infinite;
}

.bg-box:after,
.bg-box-large:after {
	content: "";
	background-image: url(../images/Arrow.svg);
	background-position: right center;
	margin-top: 4px;
	margin-left: 10px;
	width: 26px;
	height: 21px;
	float: right;
	font-size: 40px;
	line-height: 20px;
}

.bt_rahmen_filter {
	background: transparent linear-gradient(225deg, #E0DFDF 0%, #AAAAAA 100%) 0% 0% no-repeat padding-box;
	border-radius: 4px;
	margin-top: 2px;
	height: 24px;
}

.bt_rahmen_active_filter {
	background: transparent linear-gradient(0deg, #119F9F 0%, #34BEC1 100%) 0% 0% no-repeat padding-box;
	border-radius: 4px;
	margin-top: 2px;
	height: 24px;
}

.bg-box-multiple_filter {
	padding: 4px 2px 4px 2px;
}

.bg-box-single_filter {
	padding: 2px 2px 2px 2px;
}

.bt_rahmen {
	background: transparent linear-gradient(225deg, #E0DFDF 0%, #AAAAAA 100%) 0% 0% no-repeat padding-box;
	border-radius: 20px;
	margin-top: 10px;
	height: 120px;
}

.bt_rahmen_active {
	background: transparent linear-gradient(0deg, #119F9F 0%, #34BEC1 100%) 0% 0% no-repeat padding-box;
	border-radius: 20px;
	margin-top: 10px;
	height: 120px;
}

.bg-box-multiple {
	padding: 20px 10px 20px 10px;
}

.bg-box-single {
	padding: 10px 10px 10px 10px;
}

.bg-box-multiple,
.bg-box-single {
	background: transparent linear-gradient(180deg, var(--unnamed-color-ffffff) 0%, var(--unnamed-color-ffffff) 11%, var(--unnamed-color-ffffff) 66%, #EDE8E8 100%) 0% 0% no-repeat padding-box;
	background: transparent linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 11%, #FFFFFF 66%, #EDE8E8 100%) 0% 0% no-repeat padding-box;
	border: 3px solid transparent;
	border-radius: 20px;
	color: #3C3C3C;
	display: table;
	text-align: center;
	width: 100%;
	font-size: 25px;
	font-weight: 600;
	line-height: 28px;
	cursor: pointer;
	height: 100%;
}

.bg-box-multiple::after,
.bg-box-single::after {
	position: absolute;
	top: -4px;
	bottom: -4px;
	left: -4px;
	right: -4px;
	background: linear-gradient(225deg, #E0DFDF, #AAAAAA);
	content: '';
	z-index: -1;
	border-radius: 16px;
}

.bg-box-multiple p,
.bg-box-single p {
	display: table-cell;
	vertical-align: middle;
	color: #3C3C3C;
	font-size: 25px;
	line-height: 25px;
}

.iconactive {
	background: transparent linear-gradient(180deg, #119F9F 0%, #34BEC1 100%) 0% 0% no-repeat padding-box;

}

.iconactive p {
	color: #FFF;
}

.pdtop {
	margin-top: 20px;
}

.bg-box:hover {
	background-color: #258a69;
}

.guru-grafik {
	position: fixed;
	top: 420px;
	width: 30%;
	left: 0;
	display: none;
}

#geschafftbutton {
	margin-top: 40px;
	margin-right: auto;
	margin-left: auto;
	display: none;
	-webkit-animation: glowing-light 1500ms infinite;
	-moz-animation: glowing-light 1500ms infinite;
	-o-animation: glowing-light 1500ms infinite;
	animation: glowing-light 1500ms infinite;
}

#geschafftbutton:after {
	display: none;
}

.geschafft-headline {
	display: none;
	text-align: center;
	font-size: 50px;
	line-height: 40px;
	text-align: center;
	margin: 50px 0 20px 0;
}

.geschafft-text {
	display: none;
	font-size: 32px;
	line-height: 40px;
	text-align: center;
	max-width: 300px;
	margin: 30px auto 90px auto;
}

.such-grafik {
	width: 100%;
	margin: 0 auto;
}

.blink-code {
	-webkit-animation: blink 2s infinite;
	/* Safari 4+ */
	-moz-animation: blink 2s infinite;
	/* Fx 5+ */
	-o-animation: blink 2s infinite;
	/* Opera 12+ */
	animation: blink 2s infinite;
	/* IE 10+, Fx 29+ */
}

.such-grafik img {
	position: relative;
	-webkit-animation: searchanimation 5s infinite;
	/* Safari 4+ */
	-moz-animation: searchanimation 5s infinite;
	/* Fx 5+ */
	-o-animation: searchanimation 5s infinite;
	/* Opera 12+ */
	animation: searchanimation 5s infinite;
	/* IE 10+, Fx 29+ */
	width: 50px;
}

.multiple-info {
	position: absolute;
	top: 282px;
	left: 50%;
	margin-left: -25%;
	background-color: #fcee21;
	border-radius: 180px !important;
	height: 180px !important;
	width: 180px !important;
	padding: 40px !important;
	color: #3c3c3c;
	text-align: center;
	font-size: 20px !important;
	line-height: 22px !important;
	margin-top: 10px;
	font-weight: 500;
	box-shadow: 1px 2px 8px 0px #807575;
	display: none;
}

@keyframes searchanimation {
	0% {
		left: 0px;
		top: 0;
	}

	25% {
		left: 80%;
		top: 0;
	}

	50% {
		left: 80%;
		top: 150px;
	}

	75% {
		left: 0px;
		top: 150px;
	}

	100% {
		left: 0px;
		top: 0;
	}
}

@keyframes blink {
	0% {
		opacity: 0.5;
	}

	50% {
		opacity: 0.5;
	}

	51% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

.cta_code {
	color: #fff;
	font-size: 28px;
	line-height: 34px;
	background: linear-gradient(178deg, #e00812 0%, #c30f17 100%);
	border-radius: 23px;
	padding: 20px 25px;
	color: #fff;
	display: inline-block;
	padding-left: 100px;
	padding-right: 30px;
	margin-left: 150px;
	width: 600px;
	height: 245px;
	margin-top: 150px;
	box-shadow: 4px 4px 8px #00000050;
}

.cta_code:hover {
	color: #FFFFFF;
}

.cta_code:active {
	color: #FFFFFF;
}

.cta_code:visited {
	color: #FFFFFF;
}

.kopieren-text {
	font-size: 45px;
	line-height: 55px;
	padding-top: 40px;
	display: block;
	font-weight: bold;
}

.cta_code:before {
	content: url("images/guru_300.png");
	top: -100px;
	float: left;
	margin-left: -250px;
	display: block;
	margin-top: -120px;
	margin-right: 20px;
}

.cta_code:after {
	content: "\2192";
	float: right;
	font-size: 72px;
	position: relative;
	left: -40px;
	bottom: 70px;
}

.bonus-text {
	display: inline-block;
	margin: 20px 20px;
	text-align: center;
	color: #000000;
	font-size: 17px;
	line-height: 24px;
}

.casino-bonus-fliesstext p {
	display: inline-block;
	margin: 20px 20px;
	color: #000000;
	font-size: 17px;
	line-height: 24px;
}

.freispiele-bei p {
	font-weight: normal;
	display: inline-block;
	margin: 0px 0px;
	color: #000000;
	font-size: 17px;
	line-height: 24px;
}

.such-info {
	border: 1px solid #ff8000;
	background-color: #fff0e0;
	padding: 10px;
}

.bonuscode {
	border-bottom: 2px dotted white;
}

.card-product-list .bonusboxmitcode {
	padding-top: 22px;
}

.bonusboxmitcode {
	padding-top: 30px;
}

table.toepfe img {
	max-width: 100%;
}

table.toepfe td {
	text-align: center;
	font-weight: bold;
	width: 33%;
}

footer {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

footer a {
	color: white;
}

footer a:hover {
	color: white;
}

.social-leiste {
	margin: 0;
	padding: 0;
}

.social-leiste li {
	display: inline;
	list-style-type: none;
	margin-right: 5px;
}



.card-beliebteste {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 20px;
}

.card-beliebteste .card-pair {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.card-beliebteste .card {
	box-shadow: 0px 0px 20px #0000006F;
	margin: 10px;
	flex-basis: calc(50% - 20px);
	background-color: #fff;
	color: #000;
	height: 280px;
	position: relative;
	width: 180px;
	border-radius: 14px;
}

.card-beliebteste .card-content,
.card-beliebteste .card-footer {
	padding: 15px;
}

.card-beliebteste .bonus {
	font-size: 18px;
	line-height: 22px;
	font-weight: bold;
	padding: 5px;
	border: 2px dashed rgb(49, 49, 49);
	border-radius: 8px;
	background-color: #fdfd79;
	text-align: center;
	height: 120px;
	display: flex;
	flex-direction: column;
	/* Setzt die Flex-Richtung */
	justify-content: center;
	align-items: center;
	/* Zentriert den Inhalt vertikal */
	overflow-wrap: break-word;
	/* Erlaubt Wortumbrüche */
	width: 100%;
	/* Stelle eine spezifische Breite ein, falls nötig */
}



.card-beliebteste .card-content a {
	text-decoration: none;
	color: #333;
}

.card-beliebteste .cta-div-light {
	width: 70%;
	font-size: 16px;
	line-height: 20px;
	font-weight: normal;
	background-color: #C30F17;
	border-radius: 7px;
	opacity: 1;
	text-align: center;
	color: white;
	text-decoration: none;
	padding: 7px 0px;
	animation: none;
	box-shadow: 6px 3px 10px #baafaf;
	position: absolute;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
}

.anzahl_box {
	text-align: center;
	border: 1px solid white;
	border-radius: 14px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	/* Leichter Schatten */
	padding: 20px;
	background: #fff;
	max-width: 200px;
	margin: 10px auto 20px auto;
	transition: background-color 0.3s ease;
	text-decoration: none !important;
}

.zahl_gross {
	font-size: 3em;
	font-weight: bold;
	color: #333;
}

.casinoboni {
	font-size: 1.3em;
	margin-top: 8px;
	color: #666;
}

.zaehler {
	max-width: 700px;
	margin: auto !important;
}

.box-link {
	text-decoration: none !important;
	/* Entfernt die Unterstreichung */
	color: inherit;
	/* Erbt die Textfarbe von übergeordneten Elementen */
	display: block;
	/* Damit das <a>-Tag wie ein Block-Element funktioniert */
}

.box-link div {
	text-decoration: none !important;
}

.box-link:hover .anzahl_box {
	background-color: #dbfac6;
	text-decoration: none !important;
}

@media only screen and (max-width: 460px) {
	.card-beliebteste .card-pair {
		flex-direction: column;
		align-items: center;
		/* Zentriert die Karten im Container */
	}

	.card-beliebteste .card {
		/* Anpassung, um sicherzustellen, dass die Karten zentriert bleiben */
		margin: 10px auto;
		/* Zentriert die Karten horizontal */
		flex-basis: auto;
		/* Erlaubt den Karten, sich der Containerbreite anzupassen */
	}

	.card-beliebteste .card-link+.card-link {
		margin-left: 0;
	}
}



@media only screen and (max-width: 1200px) {

	.bg-frage {
		width: 96%;
	}

	#bonusgenerator-footer {
		height: 10%;
	}

	#bonusgenerator-footer {
		top: 90%;
	}

	.bg-grid {
		display: grid;
		grid-template-columns: 49% 49%;
		grid-column-gap: 2%;
	}

	#geschafftbutton {
		margin-top: 40px;
		display: none;
	}
}

@media only screen and (max-width: 990px) {
	.emfehlungen {
		display: block;
	}

	.emfehlungen div {
		margin-bottom: 5px;
		width: 100%;
	}

	.content-div-dark {
		width: 80%;
		margin: 30px 10%;
		color: rgba(80, 80, 80, 1);
	}

	.content-div-dark-slot {
		width: 100%;
		margin: 30px 0;
		color: rgba(80, 80, 80, 1);
	}

	.content-div-light {
		width: 80%;
		margin: 30px 10%;
		color: rgba(255, 255, 255, 1);
	}
}

@media only screen and (max-width: 850px) {

	.cta_code:before {
		content: url("images/guru_150.png");
		margin-left: -50px;
		margin-top: -30px;
	}

	.cta_code {
		margin-left: 20px;
		width: 100%;
		padding-left: 0;
		margin-top: 50px;
		font-size: 18px;
		line-height: 22px;
		height: 135px;
		padding: 10px 25px 10px 5px;
	}

	.kopieren-text {
		font-size: 24px;
		line-height: 30px;
		padding-top: 10px;
		font-weight: normal;
	}

	.cta_code:after {
		left: -10px;
		bottom: 30px;
	}

	.such-grafik {
		width: 96%;
		margin: 0 2%;
	}

	.such-grafik img {
		width: 100px;
	}
}

@media only screen and (max-width: 992px) {

	.bonusboxmitcode {
		padding-bottom: 40px;
		display: block;
	}

	.ctabonuscode {
		width: 270px;
		margin: auto;
		display: block;
	}

	.bonus-infos {
		max-width: 280px !important;
		margin: 0 auto;
	}
}

@media only screen and (max-width: 670px) {

	.card-product-list .vorteile {
		max-width: 300px;
		margin: 0 auto;
	}

	.bonus-titelbild,
	.markierung-ohne-einzahlung::before,
	.markierung-no-deposit::before {
		display: none;
	}

	.markierung-ohne-einzahlung-titel {
		display: block;
	}

	.bonus-infos {
		margin: 0;
	}

	ol.breadcrumbs:before {
		display: none;
	}

	ol.breadcrumbs {
		text-align: left;
	}
}

@media only screen and (max-width: 576px) {
	.bonus-infos {
		margin: 0 auto;
	}

	.lizenz-logo {
		float: none;
		display: inline-block;
		width: 100%;
		margin: auto;
	}

}

@media only screen and (max-width: 470px) {
	.cta_code:after {
		display: none;
	}

	.cta_code:before {
		margin-left: -80px;
		margin-right: 0;
	}

	.alignright {
		max-width: 100%;
		margin: 0 auto !important;
		text-align: center;
		float: none !important;
		display: block !important;
	}

	.alignleft {
		max-width: 100%;
		margin: 0 auto !important;
		text-align: center;
		float: none !important;
		display: block !important;
	}

	.content-div-dark {
		width: 90%;
		margin: 30px 5%;
		color: rgba(80, 80, 80, 1);
	}

	.content-div-light {
		width: 90%;
		margin: 30px 5%;
		color: rgba(255, 255, 255, 1);
	}

	.card-product-list .vorteile {
		max-width: 100%;
		margin: 0 auto;
	}

	.fam .slot_image {
		width: 100%;
	}

	.bonustext {
		margin-top: -10px;
	}
}

@media only screen and (max-width: 428px) {
	.top3casinos {
		width: 100%;
		margin: 15px 0 10px 0;
		font-size: 0.8em;
	}

	table.top3table td {
		padding: 2px 2px;
	}

	#bonuscodegeneratorheadline {
		padding-left: 5%;
	}

	.btn-bg {
		padding-right: 5%;
	}

	#fortschritt {
		width: 90%;
		margin: 14 5%;
	}

	.ueber-uns-box {
		width: 98%;
		margin: 20px 1%;
	}

	.bonusgenerator-div {
		width: 100%;
		margin: 0%;
		padding: 0;
	}

	.bg-frage {
		width: 100%;
	}

	.steckbrief-table {
		width: 100%;
	}

	.mini_ergebnis .betrag {
		font-size: 26px;
		left: 10px;
	}

	.mini_ergebnis .guthaben {
		font-size: 20px;
		left: 10px;
		top: 35px;
	}

	.mini_ergebnis .mini_ergebnis_geld {
		left: 130px;
	}

	.bonustext {
		margin-top: -20px;
	}
}

@media only screen and (max-width: 360px) {

	.bg-box-multiple p,
	.bg-box-single p {
		font-size: 22px;
	}

	.bg-box-multiple img {
		max-width: 100px;
	}

	.cta-div-light .cta,
	.cta-div-light-small .cta {
		margin: 0;
		width: 100%;
	}

	img {
		max-width: 100%;
	}

	.bonustext {
		margin-top: -40px;
	}
}


/************************************************************/

@-webkit-keyframes zupf {

	5%,
	45% {
		transform: translate3d(-1px, 0, 0);
	}

	10%,
	40% {
		transform: translate3d(2px, 0, 0);
	}

	15%,
	25%,
	35% {
		transform: translate3d(-4px, 0, 0);
	}

	20%,
	30% {
		transform: translate3d(4px, 0, 0);
	}

	50%,
	100% {
		transform: translate3d(-1px, 0, 0);
	}
}

@-moz-keyframes zupf {

	5%,
	45% {
		transform: translate3d(-1px, 0, 0);
	}

	10%,
	40% {
		transform: translate3d(2px, 0, 0);
	}

	15%,
	25%,
	35% {
		transform: translate3d(-4px, 0, 0);
	}

	20%,
	30% {
		transform: translate3d(4px, 0, 0);
	}

	50%,
	100% {
		transform: translate3d(-1px, 0, 0);
	}
}

@-o-keyframes zupf {

	5%,
	45% {
		transform: translate3d(-1px, 0, 0);
	}

	10%,
	40% {
		transform: translate3d(2px, 0, 0);
	}

	15%,
	25%,
	35% {
		transform: translate3d(-4px, 0, 0);
	}

	20%,
	30% {
		transform: translate3d(4px, 0, 0);
	}

	50%,
	100% {
		transform: translate3d(-1px, 0, 0);
	}
}

@keyframes zupf {

	5%,
	45% {
		transform: translate3d(-1px, 0, 0);
	}

	10%,
	40% {
		transform: translate3d(2px, 0, 0);
	}

	15%,
	25%,
	35% {
		transform: translate3d(-4px, 0, 0);
	}

	20%,
	30% {
		transform: translate3d(4px, 0, 0);
	}

	50%,
	100% {
		transform: translate3d(-1px, 0, 0);
	}
}

@-webkit-keyframes glowing-dark {
	0% {
		-webkit-box-shadow: 0px 0px 0px #ffffff;
		background-color: #C30F17;
	}

	50% {
		-webkit-box-shadow: 0px 0px 20px #ffffff;
		background-color: #ff0600;
	}

	100% {
		-webkit-box-shadow: 0px 0px 0px #ffffff;
		background-color: #C30F17;
	}
}

@-moz-keyframes glowing-dark {
	0% {
		-moz-box-shadow: 0px 0px 0px #ffffff;
		background-color: #C30F17;
	}

	50% {
		-moz-box-shadow: 0px 0px 20px #ffffff;
		background-color: #ff0600;
	}

	100% {
		-moz-box-shadow: 0px 0px 0px #ffffff;
		background-color: #C30F17;
	}
}

@-o-keyframes glowing-dark {
	0% {
		box-shadow: 0px 0px 0px #ffffff;
		background-color: #C30F17;
	}

	50% {
		box-shadow: 0px 0px 20px #ffffff;
		background-color: #ff0600;
	}

	100% {
		box-shadow: 0px 0px 0px #ffffff;
		background-color: #C30F17;
	}
}

@keyframes glowing-dark {
	0% {
		box-shadow: 0px 0px 0px #ffffff;
		background-color: #C30F17;
	}

	50% {
		box-shadow: 0px 0px 20px #ffffff;
		background-color: #ff0600;
	}

	100% {
		box-shadow: 0px 0px 0px #ffffff;
		background-color: #C30F17;
	}
}

/*
@keyframes glowing-light {
    0% { box-shadow: 0px 0px 20px #bd7478; background-position: 0% 50%}
    100% { box-shadow: 0px 0px 20px #ffffff; background-position: 100% 50%}
}*/


@-webkit-keyframes glowing-light {
	0% {
		-webkit-box-shadow: 0px 0px 20px #bd7478;
		background-color: #ff0600;
	}

	50% {
		-webkit-box-shadow: 0px 0px 20px #ffffff;
		background-color: #C30F17;
	}

	100% {
		-webkit-box-shadow: 0px 0px 20px #bd7478;
		background-color: #ff0600;
	}
}

@-moz-keyframes glowing-light {
	0% {
		-moz-box-shadow: 0px 0px 20px #bd7478;
		background-color: #ff0600;
	}

	50% {
		-moz-box-shadow: 0px 0px 20px #ffffff;
		background-color: #C30F17;
	}

	100% {
		-moz-box-shadow: 0px 0px 20px #bd7478;
		background-color: #ff0600;
	}
}

@-o-keyframes glowing-light {
	0% {
		box-shadow: 0px 0px 20px #bd7478;
		background-color: #ff0600;
	}

	50% {
		box-shadow: 0px 0px 20px #ffffff;
		background-color: #C30F17;
	}

	100% {
		box-shadow: 0px 0px 20px #bd7478;
		background-color: #ff0600;
	}
}

@keyframes glowing-light {
	0% {
		box-shadow: 0px 0px 20px #bd7478;
		background-color: #ff0600;
	}

	50% {
		box-shadow: 0px 0px 20px #ffffff;
		background-color: #C30F17;
	}

	100% {
		box-shadow: 0px 0px 20px #bd7478;
		background-color: #ff0600;
	}
}