.font-16 { font-size: 16px !important; }
.font-18 { font-size: 18px !important; }

/*TIPPSPIEL BACKGROUND START*/
  .tippspiel-background {
    background: var(--blue1860Light);
    background-image: url(/design/images/paywall/TSV_1860_Muenchen_Loewe.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    font-size: 16px;
    padding: 50px 30px 30px 30px;
    min-height: 692px;
    position: relative;
    display: flex;
    flex-direction: column; 
    overflow: hidden; 
  }
  
  .tippspiel-background h1 {
    font-size: 30px; 
    margin: auto; 
    text-align: center;
  }
  
  .tippspiel-background h2 {
    font-size: 28px; 
  }
  
@media screen and (max-width: 767px) {
  .tippspiel-background {
    padding: 25px 25px 25px 25px;
  }
}
/*TIPPSPIEL BACKGROUND ENDE*/

/*TIPPSPIEL STARTSEITE START*/
.tippspiel-home-content {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  align-content: center;
}

.tippspiel-home-content p {
  font-size: 22px;
  font-weight: 500;
}

.tippspiel-home-content span {
  font-family: 'Roboto Slab';
  font-weight: 700;
}
/*TIPPSPIEL STARTSEITE ENDE*/

/*TIPPSPIEL REGELN START*/  
  .tippspiel-regeln table {
    background: var(--blue1860);
    color: white;
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
  
  .tippspiel-regeln thead {
    font-size: 18px; 
    font-family: 'Roboto Slab';
    font-weight: 700;
  }
  
  .tippspiel-regeln td, .tippspiel-regeln th   {
    border: 2px solid white; 
    padding: 3px;
  }
/*TIPPSPIEL REGELN ENDE*/

/*TIPPSPIEL NAVIGATION START*/
.tippspiel-nav-wrapper {
  margin: 24px auto;
  max-width: 100%;
  position: relative;
  z-index: 1000;
}

.tippspiel-nav-wrapper button {
  background: transparent !important;
  width: 120px;
  color: var(--ink);
}

.burger-menu.open #burger-label {
  color: var(--blue1860);
  transition: all 0.3s ease-in-out;
}

.burger-menu.open .burger-lines div {
  background: white;
  transition: all 0.3s ease-in-out;
}

.tippspiel-nav-desktop {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  grid-gap: 0;
}

.tippspiel-nav-desktop a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--blue1860);
  height: 50px;
  width: 180px;
  color: white;
  font-size: 21px;
  font-family: "Roboto Slab";
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

.tippspiel-nav-desktop a:hover {
  opacity: 0.8;
}

/* Burger Button */
.burger-menu {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  gap: 12px;
  z-index: 1001;
  width: 100px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.burger-menu span {
  font-size: 18px;
  font-weight: bold;
  font-family: "Roboto Slab";
}

.burger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: transform 0.3s ease-in-out;
}

.burger-lines div {
  width: 25px;
  height: 3px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

.burger-menu.open .burger-lines div:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-menu.open .burger-lines div:nth-child(2) {
  opacity: 0;
}

.burger-menu.open .burger-lines div:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Fullscreen Nav */
.tippspiel-nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--blue1860);
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  z-index: 1000;
  align-items: center;
}

.tippspiel-nav-mobile.show {
  transform: translateY(0);
}

.tippspiel-nav-mobile a,
.tippspiel-nav-mobile div {
  color: white;
  padding: 20px;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  font-family: "Roboto Slab";
  border-bottom: 2px solid white;
  text-align: center;
  width: fit-content;
}

.tippspiel-nav-mobile div {
  border-bottom: none;
  cursor: pointer;
}

.tippspiel-nav-mobile a span {
  font-size: 10px;
}

@media screen and (max-width: 1023px) {
  .tippspiel-nav-desktop {
    display: none;
  }

  .burger-menu {
    display: flex;
  }
}
/*TIPPSPIEL NAVIGATION ENDE*/

/*FOOTER AUSBLENDEN*/
.content-container-box.sociallinks {
  display: none; 
}

/*JETZT TIPPEN BUTTON*/
  .btn.tip-now {
    width: 200px;
    margin: 0 auto 200px auto;
    background: var(--blue1860);
    border-radius: 2px;
  }
  
  .btn.tip-now:hover {
    opacity: 0.8;
  }
  
/*TIPPSPIEL LOGIN*/
.tippspiel_login {
  display: flex; 
  flex-direction: column; 
  text-align: center; 
  font-weight: 500;
  padding: 25px;
  width: auto;
  margin: 10px auto;
}

.blue-tsv {
  color: var(--blue1860);
}
.paywall_pricebox {
  margin: 24px auto;
  text-align: center;
  padding: 20px 50px;
  display: grid; 
  grid-gap: 30px;
  grid-template-columns: 70px 1fr 1fr 70px;
  justify-items: center; 
}

.box1, .box2 {
  background: white;
  padding: 15px;
  width: 220px;
}

.box1 {
  grid-column: 2; 
}

.box2 {
  grid-column: 3;
  border: 2px solid var(--blue1860);
  position: relative;
}

.box2 .recommendation {
    background: var(--blue1860);
    border-radius: 20px;
    width: 179px;
    color: white;
    position: absolute;
    top: -15px;
    font-size: 16px;
    font-weight: 500;
    align-content: center;
    right: -60px;
    padding: 2px;
}

.box-footer {
  font-size: 12px;
  margin-top: 15px;
  color: var(--grey40);
  display: flex;
  flex-direction: column;
}

.paywall_priceheader {
  font-weight: 700;
}

.paywall_priceheader p {
  margin-top: 0; 
}

@media screen and (max-width:767px) {
  .paywall_pricebox {
    grid-template-columns: 1fr; 
  }
  
  .box1, .box2 {
    grid-column: 1;
  }
  .box2 .recommendation { position: relative; margin-top: -30px; right: -4px; top: 0; margin-bottom: 10px; }
}

.blue-tsv { color: var(--blue1860); }
.blue-tsv-background { background-color: var(--blue1860); color: white; }

.tippspiel_login {
	display: flex;
	flex-direction: column;
	text-align: center;
	font-weight: 500;
	padding: 25px;
	width: auto;
	margin: auto;
}

.tippspiel-background .abo-header {
	margin: 24px; 
    text-align: center;
}

.paywall_pricebox {
	margin: 24px auto;
	text-align: center;
	padding: 20px 50px;
	display: grid;
	grid-gap: 30px;
	grid-template-columns: 70px 1fr 1fr 70px;
}

.box1,
.box2 {
	background: white;
	padding: 15px;
	width: 220px;
}

.box1 {
	grid-column: 2;
}

.box2 {
	grid-column: 3;
	border: 2px solid var(--blue1860);
	position: relative;
}

.box2 .recommendation {
	background: var(--blue1860);
	border-radius: 20px;
	width: 179px;
	color: white;
	position: absolute;
	top: -15px;
	font-size: 16px;
	font-weight: 500;
	align-content: center;
	right: -60px;
	padding: 2px;
}

.box-footer {
	font-size: 12px;
	margin-top: 15px;
	color: var(--grey40);
	display: flex;
	flex-direction: column;
}

.paywall_priceheader p {
	margin-top: 0;
}


@media screen and (max-width:767px) {
	.paywall_pricebox {
		grid-template-columns: 1fr;
	}

	.box1,
	.box2 {
		grid-column: 1;
	}

	.box2 .recommendation {
		position: relative;
		margin-top: -30px;
		right: -4px;
		top: 0;
	}
}
