/***
====================================================================
	Copyright by Null1 media
	Moritz Locher
	mail [at] null1 [dot] media
====================================================================
***/

/***
====================================================================
	Variablen
====================================================================
***/
:root {
	--primary-color: #031521;
	--secondary-color: #ffffff1a;
	--text-color: #999;
	--accent-color: #c42221;
	--white-color: #fff;
	--divider-color: #0315211a;
	--dark-divider-color: #ffffff1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Manrope", sans-serif;
	--accent-font: "League Gothic", sans-serif;
}

/***
====================================================================
	Allgemein
====================================================================
***/
html,
body {
  width: 100%;
	overflow-x: clip;
}

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
  color: var(--text-color);
	line-height: 1em;
	background-color: var(--white-color);
}

::-webkit-scrollbar-track {
	background-color: var(--white-color);
	border-left: 1px solid var(--white-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--white-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

::selection {
	color: var(--white-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p {
	line-height: 1.7em;
	margin-bottom: 1.25em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--accent-font);
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.1em;
	margin : 0;
}

figure { margin: 0; }

img {	max-width: 100%; }

a { text-decoration: none; }

a:hover,
a:focus {
  text-decoration: none;
	outline: 0;
}

.container {	max-width: 1300px; }

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-left: 15px;
  padding-right: 15px;
}

.image-animated {
	position: relative;
	overflow: hidden;
}

.image-animated::after {
	content: "";
	position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0%;
  z-index: 1;
  background-color: rgba(255, 255, 255, .1);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.image-animated:hover::after {
  height: 250%;
  background-color: transparent;
  transition: all .6s linear;
}

.reveal {
	position: relative;
  display: inline-flex;
  overflow: hidden;
  visibility: hidden;
}

.reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: left;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row > * {
  padding-left: 15px;
	padding-right: 15px;
}

.row.no-gutters {
  margin-left: 0;
  margin-right: 0;
}

.row.no-gutters > * {
  padding-left: 0;
  padding-right: 0;
}

.btn-default {
	position: relative;
  z-index: 1;
  overflow: hidden;
	display: inline-block;
  font-family: var(--default-font);
	font-size: 15px;
	font-weight: bold;
  color: var(--white-color);
	line-height: 1em;
	background-color: var(--primary-color);
	border: none;
	border-radius: 100px;
	padding: 17px 30px;
	transition: all .4s ease-in-out;
}

.btn-default:hover { color: var(--white-color); }

.btn-default.btn-sm { padding: 9px 19px; }

.btn-default::after {
	content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background-color: var(--accent-color);
  transition: all .4s ease-in-out;
}

.btn-default:hover::after{
	right: auto;
	left: 0;
  width: 100%;
}

.btn-default.btn-highlighted {
  color: var(--primary-color);
  background-color: var(--white-color);
  padding: 17px;
}

.btn-default.btn-highlighted:hover {
  color: var(--white-color);
  background-color: transparent;
}

.btn-default.btn-highlighted::before{	display: none; }

.btn-default.btn-transparent {
  color: var(--white-color);
  background-color: var(--secondary-color);
}

.form-control {
	font-size: 16px;
	font-weight: 400;
  color: var(--white-color) !important;
	line-height: 1.5em;
	background-color: var(--secondary-color) !important;
	border: 1px solid var(--dark-divider-color) !important;
  border-radius: 10px;
  box-shadow: none !important;
  outline: none;
	backdrop-filter: blur(14px) !important;
	padding: 17px 20px;
}

.form-control::placeholder { color: #9d9d9d; }

.form-check-input:focus {
  border-color: initial;
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.form-switch .form-check-input {
  width: 2.2em;
  height: 1.2em;
}

.input-group .btn-default {
  height: 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 0;
}

.btn-default.disabled,
.btn-default.disabled:hover {
  color: #fff !important;
  background-color: #0000004d !important;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-default.disabled::after { display: none; }

.btn-default.working i {
  animation: 2s linear infinite fa-spin;
  transform-origin: 50% 55.95%;
}

.btn-default.working i::before { content: "\f1ce"; }

.btn-readmore {
  font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 400;
  text-transform: uppercase;
	line-height: normal;
}

.btn-readmore a {
  color: var(--accent-color);
  transition: all .4s ease-in-out;
}

.btn-readmore a:hover {	color: var(--white-color); }

.btn-readmore.dark a:hover{ color: var(--primary-color); }

.section { padding: 100px 0; }

.section-row { margin-bottom: 80px; }

.section-row .section-title { margin-bottom: 0; }

.section-title.section-title-center {
	width: 100%;
	max-width: 640px;
	text-align: center;
	margin: 0 auto;
}

.section-title {
  position: relative;
  margin-bottom: 40px;
  padding-top: 30px;
}

.section-bg-title {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

.section-bg-title span {
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 60px;
  font-weight: 700;
  color: var(--white-color);
  text-transform: uppercase;
	line-height: 1.1em;
	background: linear-gradient(360deg, rgba(34, 34, 34, 0) 15.5%, rgba(34, 34, 34, .2) 100%);
	-webkit-background-clip: text;
	-webkit-text-stroke: 2px transparent;
}

.section-title h3 {
	position: relative;
	display: inline-block;
	font-size: 18px;
  color: var(--primary-color);
  text-transform: uppercase;
	line-height: 1.5em;
	letter-spacing: .1em;
  background: url("/img/favicon-32x32.png") no-repeat;
  background-position: left top 2px;
  background-size: 20px auto;
  margin-bottom: 10px;
	padding-left: 30px;
}

.section-title h1 {
	font-size: 74px;
  text-transform: uppercase;
	margin-bottom: 0;
}

.section-title h2 {
  font-size: 54px;
  text-transform: uppercase;
	margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span { color: var(--accent-color); }

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.section-title-content p { margin: 0; }

.section-btn { text-align: right; }

.section-content-btn .section-btn {
	text-align: left;
	margin-top: 30px;
}

.section-dark { background-color: var(--primary-color); }

.section-dark .section-bg-title span {
  color: var(--primary-color);
  background: linear-gradient(360deg, rgba(255, 255, 255, 0) 29.01%, rgba(255, 255, 255, .2) 100%);
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px transparent;
}

.text-animated { opacity: 0; }

.text-highlighted { color: var(--accent-color); }

.login-boxes { position: relative; }

.login-boxes .heading-section h1 { font-size: 35px; }

.login-boxes.animate .login-box { left: -100%; }

.login-boxes.animate .reset-box {
  left: -12%;
  visibility: visible;
}

.login-box {
  position: relative;
  left: 0%;
  transition: all .4s;
}

.reset-box {
  position: absolute;
  left: 100%;
  visibility: hidden;
  transform: translateX(100%);
  transition: all .4s;
}

.box-gradient {
  position: relative;
  background: linear-gradient(315deg, var(--accent-color) -3%, #153752 58.57%, var(--primary-color) 91.58%);
  border-radius: 20px;
  padding: 40px;
}

.box-gradient .section-title {
  position: relative;
  margin-bottom: 40px;
}

.box-gradient .section-title h2 { color: var(--white-color); }

.wrong .fa-check,
.good .fa-times { display: none; }

.alert {
  color: var(--white-color);
  background-color: var(--secondary-color) !important;
  border: 1px solid var(--dark-divider-color) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

.swal2-popup.swal2-toast .swal2-title {
  font-size: 22px !important;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
  margin: .5em .8em !important;
}

div:where(.swal2-container) h2:where(.swal2-title) {
  font-weight: normal !important;
  color: #000 !important;
  text-transform: uppercase !important;
}

div:where(.swal2-container) div:where(.swal2-timer-progress-bar) { background: var(--accent-color) !important; }

.page-pagination {
  text-align: center;
  margin-top: 30px;
}

.page-pagination ul {
  justify-content: center;
  margin: 0;
  padding: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  line-height: 1em;
  background-color: var(--divider-color);
  border-radius: 10px;
  margin: 0 5px;
  transition: all .4s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}

.ptr--ptr.ptr--refresh { min-height: 60px !important; }

.ptr--ptr .ptr--box { padding: 0; }

/***
====================================================================
	Header
====================================================================
***/
header.main-header {
	position: absolute;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid var(--dark-divider-color);
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
  transition: all .4s ease-in-out;
}

header.main-header .header-sticky.hide { transform: translateY(-100%); }

header.main-header .header-sticky.active { transform: translateY(0); }

header.main-header .header-sticky.active,
header.main-header .header-sticky.hide {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: linear-gradient(315deg, var(--accent-color) -3%, #153752 58.57%, var(--primary-color) 91.58%);
}

.navbar { align-items: center; }

.navbar-brand {
  font-family: var(--accent-font);
  font-size: 28px;
  color: var(--white-color);
  text-transform: uppercase;
  margin: 0;
	padding: 0;
}

.navbar-brand:hover,
.navbar-brand:focus { color: var(--white-color); }

.navbar-brand img {
  width: 100%;
  max-width: 70px;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul {
  display: inline-flex;
	align-items: center;
}

.main-menu ul li {
  position: relative;
	margin: 0 6px;
}

.main-menu ul li.nav-item a {
  font-family: var(--default-font);
	font-size: 15px;
	font-weight: bold;
  color: var(--white-color);
	text-transform: uppercase;
	line-height: normal;
	transition: all .4s ease-in-out;
}

.main-menu ul li.nav-item.active > a { color: var(--accent-color); }

.main-menu ul li.submenu > a::after{
	content: "\f107";
	font-family: "Font Awesome 6 Free";
  font-size: 14px;
	font-weight: 900;
	margin-top: 3px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus { color: var(--accent-color); }

.main-menu ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 235px;
	visibility: hidden;
  text-align: left;
  list-style: none;
  background-color: #9b97973d;
	border-radius: 20px;
  margin: 0;
  padding: 0;
	opacity: 0;
	transform: scale(1, .8);
	transform-origin: top;
  backdrop-filter: blur(40px);
	transition: all .4s ease-in-out;
}

.main-menu ul li.submenu:first-child ul { width: 235px; }

.main-menu ul ul ul {
  top: 0;
	left: 100%;
	text-align: left;
}

.main-menu ul li:hover > ul {
	visibility: visible;
  padding: 5px 0;
	opacity: 1;
	transform: scale(1, 1);
}

.main-menu ul li.submenu ul li.submenu > a::after {
  content: "\f105";
  float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li.nav-item a {
	color: var(--white-color);
	padding: 6px 20px !important;
	transition: all .4s ease-in-out;
}

.main-menu ul li:hover > ul {
	visibility: visible;
  padding: 5px 0;
	opacity: 1;
	transform: scaleY(1);
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--accent-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu,
.responsive-menu,
.navbar-toggle { display: none; }

.responsive-menu {
  position: relative;
	top: 0;
}

.slicknav_btn {
  width: 38px;
	height: 38px;
  display: flex;
  justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
  border-radius: 8px;
  margin: 0;
	padding: 0;
  transition: all .4s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar {
  width: 22px;
  height: 3px;
	display: block;
	background-color: var(--white-color);
	border-radius: 8px;
	margin: 4px auto !important;
	transition: all .1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {	margin-top: 0 !important; }

.slicknav_icon .slicknav_icon-bar:last-child { margin-bottom: 0 !important; }

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 5px); }

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) { opacity: 0; }

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -5px); }

.slicknav_menu {
  position: absolute;
  width: 100%;
	background-color: var(--primary-color);
  padding: 0;
}

.slicknav_menu ul {
  max-height: calc(100vh - 105px);
  overflow: auto;
  margin: 5px 0;
}

.slicknav_menu ul ul { margin: 0; }

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
  font-family: var(--accent-font);
	font-size: 24px;
	font-weight: 400;
  color: var(--white-color);
	text-transform: uppercase;
  line-height: normal;
  border-radius: 0 !important;
  margin: 0;
	padding: 8px 20px;
	transition: all .4s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  color: var(--accent-color);
	background-color: transparent;
}

.slicknav_nav li.active a.slicknav_item.slicknav_row > a { color: var(--accent-color); }

.slicknav_menu ul ul li a { padding: 8px 20px 8px 30px; }

.slicknav_arrow { font-size: 0 !important; }

.slicknav_arrow::after {
	content: "\f107";
  position: absolute;
  top: 50%;
  right: 15px;
	font-family: "Font Awesome 6 Free";
  font-size: 12px;
	font-weight: 900;
	color: var(--white-color);
	margin-left: 8px;
	transform: translateY(-50%);
	transition: all .4s ease-out;
}

.slicknav_open > a .slicknav_arrow::after {
  color: var(--accent-color);
	transform: translateY(-50%) rotate(-180deg);
}

/***
====================================================================
	Hero
====================================================================
***/
.hero {
	position: relative;
	background: url("/img/bg.jpg") no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 245px 0 140px;
}

.hero::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
	background-color: var(--primary-color);
  opacity: 80%;
}

.hero::after{	display: none; }

.hero-content {
	position: relative;
	width: 100%;
	max-width: 840px;
  z-index: 2;
  text-align: center;
	margin: 0 auto;
}

.hero-content .section-title h1,
.hero-content .section-title h3 { color: var(--white-color); }

.hero-content-body {
  width: 100%;
  max-width: 80%;
  margin: 40px auto 0;
}

.hero-content-body p {
	color: var(--white-color);
  margin-bottom: 0;
}

.hero-btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.hero-content .section-title { padding-top: 0; }

/***
====================================================================
	Ticker
====================================================================
***/
.ticker {
  background-color: var(--accent-color);
	padding: 24px 0;
}

.ticker-wrapper {
	position: relative;
	display: flex;
  align-items: center;
	overflow: hidden;
	gap: 30px;
  user-select: none;
}

.scrolling-content {
  min-width: 100%;
  display: flex;
	flex-shrink: 0;
	gap: 30px;
	animation: scroll 50s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
	to { transform: translateX(calc(-100% - 30px)); }
}

.scrolling-content span {
  font-family: var(--accent-font);
  font-size: 34px;
  font-weight: 400;
  color: var(--white-color);
  text-transform: uppercase;
  line-height: 1em;
}

.scrolling-content span img {
	width: 100%;
	max-width: 40px;
	margin-right: 30px;
}

/***
====================================================================
	Ergebnisse
====================================================================
***/
.match-schedule-item {
  position: relative;
	display: flex;
  justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
	gap: 30px;
	background-color: var(--primary-color);
	border-radius: 10px;
	padding: 40px;
	margin-bottom: 30px;
}

.match-schedule-item:last-child {	margin-bottom: 0; }

.match-schedule-item-content { width: 100%; }

.match-content-info {
	display: flex;
  justify-content: center;
	align-items: center;
	gap: 20px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.match-content-info p {
	font-size: 20px;
	font-weight: 700;
  color: var(--white-color);
	line-height: normal;
	margin-bottom: 0;
}

.match-content-info img {
	width: 100%;
	max-width: 20px;
}

.match-content-result {
  font-family: var(--accent-font);
  font-size: 40px;
  color: var(--accent-color);
  text-align: center;
  line-height: 1;
}

.match-content-location {
	display: flex;
	align-items: center;
	justify-content: center;
}

.match-content-location i { color: var(--accent-color); }

.match-content-location h3 {
	font-size: 22px;
	color: var(--white-color);
  text-transform: uppercase;
}

.match-schedule-item .icon-box {
  position: absolute;
  top: 15px;
}

.match-schedule-item .icon-box img {
  max-width: 60px;
	height: 100%;
	max-height: 60px;
}

.match-schedule-item .icon-box-left { left: 15px; }

.match-schedule-item .icon-box-right { right: 15px; }

.match-schedule-item .report-box {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.referee-icon {
  width: 20px;
  fill: var(--accent-color);
}

/***
====================================================================
	Letzte Berichte (Startseite)
====================================================================
***/
.article-item-blurred {
	position: relative;
  overflow: hidden;
}

.article-item-blurred .article-image a,
.article-item-blurred .article-image a figure {	display: block; }

.article-item-blurred .article-image img {
	width: 100%;
	height: 600px;
	object-fit: cover;
	transition: all .4s ease-in-out;
}

.article-item-blurred.active .article-item-blurred .article-image img,
.article-item-blurred:hover .article-item-blurred .article-image img {
	transform: scale(1.1);
	filter: brightness(70%);
}

.article-item-blurred .article-wrapper {
	position: absolute;
  right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
  background-color: var(--secondary-color);
  backdrop-filter: blur(20px);
	padding: 2.083vw;
	transform: translateY(62%);
	transition: all .4s ease-in-out;
}

.article-item-blurred.active .article-wrapper,
.article-item-blurred:hover .article-item-blurred .article-wrapper {	transform: translateY(0); }

.article-item-blurred .article-title h3 {
	font-size: 24px;
	color: var(--white-color);
}

.article-item-blurred .article-title h3 a {
	color: inherit;
  text-transform: uppercase;
}

.article-item-blurred .article-content-wrapper {
	visibility: hidden;
  opacity: 0;
	transition: all .4s ease-in-out;
}

.article-item-blurred.active .article-content-wrapper,
.article-item-blurred:hover .article-content-wrapper {
	visibility: visible;
  margin-top: 15px;
  opacity: 1;
}

.article-item-blurred .article-content { margin-bottom: 40px; }

.article-item-blurred .article-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.btn-readmore a i {
	color: var(--accent-color);
  transform: rotate(-45deg);
	transition: all .4s ease-in-out;
}

.btn-readmore a:hover i {
	filter: brightness(0) invert(1);
	transform: rotate(0deg);
}

.btn-readmore.dark a:hover i {
	color: var(--primary-color);
  filter: none;
}

/***
====================================================================
	Vereinsnachricht (Startseite)
====================================================================
***/
.news-content {
  position: relative;
	max-height: 550px;
  overflow: hidden;
  color: var(--white-color);
  line-height: 1.7;
  -webkit-mask-image: linear-gradient(180deg, #000 70%, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(180deg, #000 70%, rgba(0, 0, 0, 0));
	margin-left: 20px;
  transition: all .4s ease-in-out;
}

.news-content.expanded {
  max-height: none;
  -webkit-mask-image: none;
  mask-image: none;
}

/***
====================================================================
	Livestreams
====================================================================
***/
.livestream-slider .swiper { overflow-y: visible; }

.livestream-item-image {
  overflow: hidden;
	border-radius: 10px;
	margin-bottom: 20px;
}

.livestream-item-image figure {	display: block; }

.livestream-item-image img {
	width: 100%;
	object-fit: cover;
	transition: all .4s ease-in-out;
}

.livestream-item:hover .livestream-item-image img {	transform: scale(1.1); }

.livestream-item-content { margin-bottom: 20px; }

.livestream-item-content h3 {
	font-size: 22px;
  color: #000;
  text-transform: uppercase;
	line-height: 1.3em;
}

.livestream-item-content h3 a { color: #000; }

.btn-livestream {
	display: flex;
	align-items: center;
}

.btn-livestream a {
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--text-color);
	border: 1px solid var(--text-color);
	border-radius: 50%;
	margin-right: 10px;
}

.btn-livestream a i {
	font-size: 12px;
	margin-left: 2px;
}

.btn-livestream p {
	font-weight: 500;
	margin-bottom: 0;
}

.hsg-livestream {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.hsg-livestream > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/***
====================================================================
	Sponsoren (Startseite)
====================================================================
***/
.sponsors-slider {
	border-top: 1px solid var(--divider-color);
	margin-top: 80px;
	padding-top: 80px;
}

.sponsors-slider-title,
.sponsor-logo {	text-align: center; }

.sponsors-slider-title { margin-bottom: 40px; }

.sponsors-slider-title h3 {
	font-size: 22px;
  text-transform: uppercase;
}

.sponsors-slider .sponsor-logo img { width: 100%; }

/***
====================================================================
	Footer
====================================================================
***/
.main-footer .section { padding-bottom: 0; }

.footer-logo img {
	width: 100%;
	max-width: 155px;
}

.footer-links h3,
.footer-social-links h3 {
	font-size: 24px;
  color: var(--white-color);
	text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-social-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li {
	background: url("/img/favicon-32x32.png") no-repeat;
	background-position: left center;
	background-size: 14px auto;
  color: var(--white-color);
	line-height: normal;
	margin-bottom: 20px;
	padding-left: 24px;
}

.footer-links ul li:last-child { margin-bottom: 0; }

.footer-links ul li a {
	color: inherit;
	transition: all .4s ease-in-out;
}

.footer-links ul li a:hover {	color: var(--accent-color); }

.footer-social-links ul li {
	display: inline-block;
	margin-right: 12px;
}

.footer-social-links ul li:last-child {	margin-right: 0; }

.footer-social-links ul li a {
	width: 40px;
	height: 40px;
  display: flex;
  justify-content: center;
	align-items: center;
	color: var(--white-color);
  border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	transition: all .4s ease-in-out;
}

.footer-social-links ul li a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}

.footer-social-links #SDTV_CorporateIdentity_2022 { transition: all .4s ease-in-out; }

.footer-social-links ul li a:hover #SDTV_CorporateIdentity_2022 { fill: var(--accent-color); }

.footer-social-links ul li a i {
	font-size: 18px;
	color: inherit;
}

.footer-copyright {
	border-top: 1px solid var(--dark-divider-color);
  margin-top: 60px;
	padding: 40px 0;
}

.footer-copyright-text p { color: var(--white-color); }

.null1-media-logo-small {
  width: 100%;
  max-width: 100px;
}

#footer-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 98;
  height: calc(62px + constant(safe-area-inset-bottom) * 1.1);
  height: calc(62px + env(safe-area-inset-bottom) * 1.1);
  min-height: 60px;
  display: flex;
  text-align: center;
  background-color: var(--accent-color);
  box-shadow: 0 -5px 10px 0 rgba(0, 0, 0, .06);
}

#footer-bar a {
  position: relative;
  flex: 1 1 auto;
  color: #000;
  padding-top: 12px;
}

#footer-bar a span {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 12px;
  font-weight: 500;
}

#footer-bar a i {
  position: relative;
  z-index: 2;
  font-size: 20px;
}

#footer-bar .active-nav { color: #fff !important; }

/***
====================================================================
	Seitenheader
====================================================================
***/
.page-header {
  position: relative;
  overflow: hidden;
  background: url("/img/bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
	padding: 210px 0 105px;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  background-color: var(--primary-color);
  opacity: 80%;
}

.page-header-wrapper {
  position: relative;
  z-index: 2;
	text-align: center;
}

.page-header-wrapper h1 {
	display: inline-block;
	font-size: 74px;
	color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.page-header-wrapper h1 span { color: var(--accent-color); }

.page-header-wrapper ol {
  justify-content: center;
	margin: 0;
	padding: 0;
}

.page-header-wrapper ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 500;
  color: var(--white-color);
	line-height: 1.5em;
}

.page-header-wrapper ol li.breadcrumb-item a { color: inherit; }

.page-header-wrapper ol li.breadcrumb-item.active { color: var(--white-color); }

.page-header-wrapper ol .breadcrumb-item + .breadcrumb-item::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--white-color);
}

/***
====================================================================
	Spielplan
====================================================================
***/
.schedule-list .result {
  min-width: 4.5rem;
  color: var(--white-color);
  background-color: var(--accent-color);
}

.schedule-list .btn-default.collapsed .fa-angle-down {
  transform: rotate(0deg);
  transition: all .4s ease-in-out;
}

.schedule-list .btn-default .fa-angle-down {
  transform: rotate(-180deg);
  transition: all .4s ease-in-out;
}

.match-table table {
  background: linear-gradient(315deg, var(--accent-color) -3%, #153752 58.57%, var(--primary-color) 91.58%);;
}

.match-table img,
.match-table-sm img { min-width: 16px; }

/***
====================================================================
	Tabellen
====================================================================
***/
.match-table thead th {
  color: var(--white-color);
  background-color: transparent;
  padding: 15px;
}

.match-table-sm th,
.match-table-sm td {
  color: var(--white-color);
  background-color: transparent !important;
  border-color: var(--dark-divider-color);
}

.match-table .highlighted,
.match-table-sm .highlighted { font-weight: bold; }

.match-table .highlighted td { background-color: #d7d7d7; }

.match-table-sm .highlighted td { background-color: #8080804f !important; }

/***
====================================================================
	Berichte
====================================================================
***/
.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image { margin-bottom: 20px; }

.post-featured-image a {
  display: block;
  overflow: hidden;
	border-radius: 10px;
}

.post-featured-image figure { display: block; }

.post-featured-image img {
  width: 100%;
  aspect-ratio: 1/0.65;
  object-fit: cover;
  transition: all .4s ease-in-out;
}

.post-item:hover .post-featured-image img {	transform: scale(1.1); }

.post-item-content { margin-bottom: 25px; }

.post-item-content h2 {
  font-size: 22px;
  text-transform: uppercase;
	line-height: 1.4em;
}

.post-item-content h2 a {
	display: inline-block;
  color: inherit;
}

/***
====================================================================
	Berichtsansicht
====================================================================
***/
.post-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-meta ol li:last-child { margin-right: 0; }

.post-meta ol li i {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
  overflow: hidden;
	border-radius: 20px;
}

.post-image img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
  line-height: 1.7;
	border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
	padding-bottom: 30px;
}

.post-entry a { color: var(--accent-color); }

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 400;
	line-height: 1.1em;
	margin: 0 0 .371em;
}

.post-entry h1 { font-size: 74px; }

.post-entry h2 { font-size: 54px; }

.post-entry h3 { font-size: 40px; }

.post-entry h4 { font-size: 30px; }

.post-entry h5 { font-size: 24px; }

.post-entry h6 { font-size: 20px; }

.post-entry p { margin-bottom: 20px; }

.post-entry p:last-child { margin-bottom: 0; }

.post-entry p strong {
  font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
}

.post-entry ol { margin: 0 0 30px; }

.post-entry ul {
  margin: 20px 0 20px;
	padding: 0;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
  position: relative;
	font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.5em;
  margin-bottom: 15px;
}

.post-entry ul li:last-child { margin-bottom: 0; }

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child { margin-bottom: 0; }

/***
====================================================================
	Kommentare
====================================================================
***/
.comment-item { border-bottom: 1px solid var(--divider-color); }

.comment-item img {
  width: 50px;
  border: 1px solid var(--divider-color);
  border-radius: 100%;
}

.comment-editor {
  color: #000 !important;
  border-color: var(--divider-color) !important;
}

/***
====================================================================
	Teamansicht
====================================================================
***/
.page-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 20px;
}

.page-sidebar h3 {
	font-size: 30px;
	color: var(--white-color);
  text-transform: uppercase;
	border-bottom: 1px solid var(--dark-divider-color);
	padding: 30px;
}

.team-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.team-image {
	position: relative;
	margin-bottom: 20px;
}

.team-image a,
.team-image figure {
  overflow: hidden;
	display: block;
	border-radius: 20px;
}

.team-image img {
  width: 100%;
  object-fit: cover;
	transition: all .4s ease-in-out;
}

.team-item:hover .team-image img { transform: scale(1.1); }

.team-social-icon {
	position: absolute;
	right: 30px;
	bottom: 0;
	left: 30px;
  z-index: 1;
  visibility: hidden;
	opacity: 0;
	transition: all .4s ease-in-out;
}

.team-item:hover .team-social-icon {
	bottom: 30px;
  visibility: visible;
	opacity: 1;
}

.team-social-icon ul {
  display: flex;
  justify-content: center;
  align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-social-icon ul li a {
	width: 40px;
	height: 40px;
  display: flex;
  justify-content: center;
	align-items: center;
	color: var(--white-color);
	background-color: var(--accent-color);
	border-radius: 50%;
	cursor: pointer;
	transition: all .4s ease-in-out;
}

.team-social-icon ul li a:hover { background-color: var(--primary-color); }

.team-social-icon ul li a i {
	font-size: 18px;
	color: inherit;
}

.team-content { text-align: center; }

.team-content h3 {
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.team-content h3 a { color: inherit; }

.team-content p {	margin: 0; }

.skills-progress-bar { width: 100%; }

.skills-progress-bar .skill-data {
  display: flex;
  justify-content: space-between;
	gap: 10px;
	margin-bottom: 20px;
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 16px;
  overflow: hidden;
	background-color: var(--divider-color);
	border-radius: 100px;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
  position: absolute;
	top: 0;
  bottom: 0;
	left: 0;
	background-color: var(--accent-color);
  border-radius: 100px;
}

/***
====================================================================
	Benutzerkonto
====================================================================
***/
#push-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.sidebar-navigation {
	background-color: var(--primary-color);
  border-radius: 12px;
}

.sidebar-navigation ul {
    list-style: none;
    margin: 0;
    padding: 30px;
}

.sidebar-navigation ul li { margin-bottom: 20px; }

.sidebar-navigation ul li:last-child { margin: 0; }

.sidebar-navigation ul li a {
	position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
  color: var(--white-color) !important;
	line-height: 1.5em;
	border: 1px solid var(--dark-divider-color);
	border-radius: 10px;
	padding: 17px 50px 17px 20px;
  transition: all .4s ease-in-out;
}

.sidebar-navigation ul li:hover a,
.sidebar-navigation ul li a.active { color: var(--primary-color) !important; }

.sidebar-navigation ul li a::after {
	content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  background-color: var(--white-color);
  transition: all .4s ease-in-out;
}

.sidebar-navigation ul li:hover a::after,
.sidebar-navigation ul li a.active::after {
	top: 0;
	height: 100%;
}

.list-group-item a { color: var(--accent-color); }

.list-group-item .badge { background-color: var(--accent-color); }

#avatarModal .form-control {
  color: #000 !important;
  border: 1px solid var(--divider-color) !important;
}

.bottom-divider { border-bottom: 1px solid var(--dark-divider-color); }

/***
====================================================================
	Hauptvereine
====================================================================
***/
.club-image-wrapper {
	position: relative;
	margin-left: 15px;
}

.club-image figure {
	display: block;
	border-radius: 20px;
}

.club-image img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

/***
====================================================================
	Spielstätten
====================================================================
***/
.hall-image { margin-right: 15px; }

.hall-image figure {
	display: block;
	border-radius: 20px;
}

.hall-image img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.hall-info-item {
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.hall-info-item:last-child {
  border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.hall-info-item .icon-box {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
  color: var(--white-color);
	background-color: var(--accent-color);
	border-radius: 50%;
	margin-right: 15px;
}

.hall-info-content {	width: calc(100% - 55px); }

.hall-info-content h3 {
	font-size: 22px;
  text-transform: uppercase;
	margin-bottom: 10px;
}

.hall-info-content p {
	position: relative;
	display: inline-block;
	margin: 0 0 0 10px;
	padding: 0 0 0 20px;
}

.hall-info-content p:nth-of-type(1) {
  margin: 0;
	padding: 0;
}

.hall-info-content p a {
	color: inherit;
	transition: all .4s ease-in-out;
}

.hall-info-content p a:hover { color: var(--accent-color); }

.hall-info-content input {
  color: #000 !important;
  border: 1px solid var(--divider-color) !important;
}

/***
====================================================================
	Sponsoren
====================================================================
***/
.sponsor-image figure {
  display: block;
  border-radius: 20px;
}

/***
====================================================================
	404-Seite
====================================================================
***/
.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 45%;
}

.error-page-content{ text-align: center; }

.error-page-content .section-title { padding: 0; }

.error-page-content .section-title,
.error-page-content-body p { margin-bottom: 20px; }

/***
====================================================================
	Offline-Seite
====================================================================
***/
@keyframes offline-logo {
  0% {
    transform: perspective(250px) rotate3D(1, 0, 0, 0deg);
    transform-origin: bottom;
    filter: drop-shadow(0 0 0 #222);
  }
  30% {
    transform: perspective(250px) rotate3D(1, 0, 0, 0deg);
    transform-origin: bottom;
    filter: drop-shadow(0 0 0 #222);
  }
  80% {
    transform: perspective(250px) rotate3D(1, 0, 0, 70deg);
    transform-origin: bottom;
  }
  90% {
    transform: perspective(250px) rotate3D(1, 0, 0, 68deg);
    transform-origin: bottom;
  }
  100% {
    transform: perspective(250px) rotate3D(1, 0, 0, 70deg);
    transform-origin: bottom;
    filter: drop-shadow(0 50px 35px #222);
  }
}

@keyframes zz {
  0% {
    transform: scale3d(.2, .2, .2) rotate(-20deg);
    opacity: 0;
  }
  50% { opacity: 1; }
  80% {
    transform: translateY(-30px) translateX(20px) rotate(10deg);
    opacity: 0;
  }
  100% { opacity: 0; }
}

#offline-image {
  position: relative;
  max-width: 250px;
  animation: offline-logo 1.5s ease-in forwards;
}

.sleep {
  position: absolute;
  top: 125px;
  left: 50%;
  font-size: 55px;
  color: var(--accent-color);
}

.sleep span {
  position: absolute;
  width: 15px;
  height: 15px;
  display: block;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  animation: zz 3s linear infinite;
  animation-delay: 1s;
}

.sleep .s1 {
  top: -20px;
  left: 40px;
}

.sleep .s2 {
  top: -45px;
  left: 70px;
}

.sleep .s3 {
  top: -70px;
  left: 100px;
}

/***
====================================================================
  Cookie-Zustimmung
====================================================================
***/
#cc_div #cm {
	font-family: "Manrope", sans-serif !important;
	color: #fff;
  background-color: var(--accent-color);
}

#cc_div #cm #c-ttl { color: var(--white-color); }

#cc_div #cm #c-ttl, #s-ttl {
	font-family: "League Gothic", sans-serif;
	font-size: 22px !important;
	font-weight: 400 !important;
  text-transform: uppercase;
}

#cc_div #cm #c-txt {
  font-size: 16px;
  font-weight: 400;
}

.cc_div .cc-link {
	font-weight: bold !important;
	color: var(--white-color) !important;
  line-height: 1.3;
	border: 0 !important;
}

.cc_div .p .cc-link { color: #000 !important; }

.cc_div .c-bn:not(#s-c-bn),
.cc_div .c-bn:not(#s-c-bn).c_link {
  position: relative;
  top: 0;
  font-size: 15px !important;
	font-weight: bold !important;
  color: var(--white-color) !important;
  line-height: 1em;
	background-color: transparent !important;
  border: 1px solid var(--white-color);
	border-radius: 100px !important;
	padding: 10px !important;
	transition: all .4s ease-in-out !important;
}

.cc_div .c-bn:not(#s-c-bn)::after,
.cc_div .c-bn:not(#s-c-bn).c_link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background-color: var(--white-color);
  transition: all .4s ease-in-out !important;
}

.cc_div .c-bn:not(#s-c-bn):hover,
.cc_div .c-bn:not(#s-c-bn).c_link:hover { color: #000 !important ; }

.cc_div .c-bn:not(#s-c-bn):hover::after,
.cc_div .c-bn:not(#s-c-bn).c_link:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.cc_div #s-bns .c-bn,
.cc_div #s-bns .c-bn.c_link {
  position: relative;
  top: 0;
  z-index: 1;
  font-size: 15px !important;
	font-weight: bold !important;
  color: var(--white-color) !important;
  line-height: 1em;
	background-color: var(--primary-color) !important;
  border: 1px solid var(--primary-color);
	border-radius: 100px !important;
	padding: 10px !important;
	transition: all .4s ease-in-out !important;
}

.cc_div #s-bns .c-bn::after,
.cc_div #s-bns .c-bn.c_link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background-color: var(--accent-color);
  transition: all .4s ease-in-out !important;
}

.cc_div #s-bns .c-bn:hover,
.cc_div #s-bns .c-bn.c_link:hover { color: var(--white-color) !important ; }

#c-s-in {
  font-family: "Manrope", sans-serif !important;
  color: #000 !important;
}

.cc_div .b-tg .c-tgl:checked:not([disabled]) ~ .c-tg { background: var(--accent-color) !important; }

/***
====================================================================
	popup.js
====================================================================
***/
.mfp-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  background: #0b0b0b;
  opacity: .8;
}

.mfp-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  box-sizing: border-box;
  text-align: center;
  padding: 0 8px;
}

.mfp-container::before {
  content: "";
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}

.mfp-align-top .mfp-container::before { display: none; }

.mfp-content {
  position: relative;
  z-index: 1045;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  margin: 0 auto;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur { cursor: progress; }

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close { cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content { cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter { user-select: none; }

.mfp-loading.mfp-figure { display: none; }

.mfp-hide { display: none !important; }

.mfp-preloader {
  position: absolute;
  top: 50%;
  right: 8px;
  left: 8px;
  width: auto;
  z-index: 1044;
  color: #ccc;
  text-align: center;
  margin-top: -.8em;
}

.mfp-preloader a { color: #ccc; }

.mfp-preloader a:hover { color: #fff; }

.mfp-s-ready .mfp-preloader { display: none; }

.mfp-s-error .mfp-content { display: none; }

button.mfp-close,
button.mfp-arrow {
  z-index: 1046;
  display: block;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-appearance: none;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.mfp-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  font-family: Arial, Baskerville, monospace;
  font-size: 28px;
  font-style: normal;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 44px;
  padding: 0 0 18px 10px;
  opacity: .65;
}

.mfp-close:hover,
.mfp-close:focus { opacity: 1; }

.mfp-close:active { top: 1px; }

.mfp-close-btn-in .mfp-close { color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  right: -6px;
  width: 100%;
  color: #fff;
  text-align: right;
  padding-right: 6px;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  color: #ccc;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  top: 50%;
  width: 90px;
  height: 110px;
  margin: 0;
  margin-top: -55px;
  padding: 0;
  opacity: .65;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active { margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus { opacity: 1; }

.mfp-arrow::before,
.mfp-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  display: block;
  border: medium inset transparent;
  margin-top: 35px;
  margin-left: 35px;
}

.mfp-arrow::before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: .7;
}

.mfp-arrow::after {
  top: 8px;
  border-top-width: 13px;
  border-bottom-width: 13px;
}

.mfp-arrow-left { left: 0; }

.mfp-arrow-left:before {
  border-right: 27px solid #3f3f3f;
  margin-left: 25px;
}

.mfp-arrow-left::after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}

.mfp-arrow-right { right: 0; }

.mfp-arrow-right::before { border-left: 27px solid #3f3f3f; }

.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
   width: 100%;
  max-width: 900px;
  line-height: 0;
}

.mfp-iframe-holder .mfp-close { top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
}

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
  line-height: 0;
  margin: 0 auto;
  padding: 40px 0 40px;
}

.mfp-figure { line-height: 0; }

.mfp-figure::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 0;
  bottom: 40px;
  left: 0;
  width: auto;
  height: auto;
  z-index: -1;
  display: block;
  background: #444;
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
}

.mfp-figure small {
  display: block;
  font-size: 12px;
  color: #bdbdbd;
  line-height: 14px;
}

.mfp-figure figure { margin: 0; }

.mfp-bottom-bar {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: -36px;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  color: #f3f3f3;
  line-height: 18px;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content { max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure { cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img { padding: 0; }
  .mfp-img-mobile .mfp-figure::after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    position: fixed;
    top: auto;
    bottom: 0;
    box-sizing: border-box;
    background: rgba(0, 0, 0, .6);
    margin: 0;
    padding: 3px 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty { padding: 0; }
  .mfp-img-mobile .mfp-counter {
    top: 3px;
    right: 5px;
  }
  .mfp-img-mobile .mfp-close {
    position: fixed;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    background: rgba(0, 0, 0, .6);
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow { transform: scale(.75); }
  .mfp-arrow-left { transform-origin: 0; }
  .mfp-arrow-right { transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/***
====================================================================
	croppie.js
====================================================================
***/
.croppie-container {
  width: 100%;
  height: 100%;
}

.croppie-container .cr-image {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  max-height: none;
  z-index: -1;
  transform-origin: 0 0;
}

.croppie-container .cr-boundary {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  margin: 0 auto;
}

.croppie-container .cr-viewport,
.croppie-container .cr-resizer {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 0;
  border: 2px solid #fff;
  box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, .5);
  margin: auto;
}

.croppie-container .cr-resizer {
  z-index: 2;
  box-shadow: none;
  pointer-events: none;
}

.croppie-container .cr-resizer-vertical,
.croppie-container .cr-resizer-horisontal {
  position: absolute;
  pointer-events: all;
}

.croppie-container .cr-resizer-vertical::after,
.croppie-container .cr-resizer-horisontal::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  display: block;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #000;
}

.croppie-container .cr-resizer-vertical {
  bottom: -5px;
  width: 100%;
  height: 10px;
  cursor: row-resize;
}

.croppie-container .cr-resizer-vertical::after {
  left: 50%;
  margin-left: -5px;
}

.croppie-container .cr-resizer-horisontal {
  right: -5px;
  width: 10px;
  height: 100%;
  cursor: col-resize;
}

.croppie-container .cr-resizer-horisontal::after {
  top: 50%;
  margin-top: -5px;
}

.croppie-container .cr-original-image { display: none; }

.croppie-container .cr-vp-circle { border-radius: 50%; }

.croppie-container .cr-overlay {
  position: absolute;
  z-index: 1;
  cursor: move;
  touch-action: none;
}

.croppie-container .cr-slider-wrap {
  width: 75%;
  text-align: center;
  margin: 15px auto;
}

.croppie-result {
  position: relative;
  overflow: hidden;
}

.croppie-result img { position: absolute; }

.croppie-container .cr-image,
.croppie-container .cr-overlay,
.croppie-container .cr-viewport { transform: translateZ(0); }

.cr-slider {
  width: 300px;
  max-width: 100%;
  background-color: transparent;
  padding-top: 8px;
  padding-bottom: 8px;
  -webkit-appearance: none;
}

.cr-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  background-color: rgba(0, 0, 0, .5);
  border: 0;
  border-radius: 3px;
}

.cr-slider::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  background-color: #ddd;
  border: none;
  border-radius: 50%;
  margin-top: -6px;
  -webkit-appearance: none;
}

.cr-slider:focus { outline: none; }

.cr-slider::-moz-range-track {
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, .5);
  border: 0;
  border-radius: 3px;
}

.cr-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background-color: #ddd;
  border: none;
  border-radius: 50%;
  margin-top: -6px;
}

.cr-slider:-moz-focusring {
  outline: 1px solid #fff;
  outline-offset: -1px;
}

.cr-slider::-ms-track {
  width: 100%;
  height: 5px;
  color: transparent;
  background-color: transparent;
  border-width: 6px 0;
	border-color: transparent;
}

.cr-slider::-ms-fill-lower {
	background-color: rgba(0, 0, 0, .5);
	border-radius: 10px;
}

.cr-slider::-ms-fill-upper {
	background-color: rgba(0, 0, 0, .5);
	border-radius: 10px;
}

.cr-slider::-ms-thumb {
  width: 16px;
  height: 16px;
  background-color: #ddd;
	border: none;
	border-radius: 50%;
	margin-top: 1px;
}

.cr-slider:focus::-ms-fill-lower { background-color: rgba(0, 0, 0, .5); }

.cr-slider:focus::-ms-fill-upper { background-color: rgba(0, 0, 0, .5); }

.cr-rotate-controls {
	position: absolute;
	bottom: 5px;
	left: 5px;
	z-index: 1;
}

.cr-rotate-controls button {
  background: none;
	border: 0;
}

.cr-rotate-controls i::before {
	display: inline-block;
  font-size: 22px;
	font-style: normal;
	font-weight: 900;
}

.cr-rotate-l i::before { content: "↺"; }

.cr-rotate-r i::before { content: "↻"; }

/***
====================================================================
	Media Querys
====================================================================
***/
@media only screen and (max-width: 991px) {
	.btn-default {
		font-size: 16px;
		padding: 14px 20px;
	}
	.btn-default::before {
		width: 30px;
		height: 30px;
		background-size: 10px auto;
	}
	.navbar {	padding: 15px 0; }
	.navbar-brand img {	max-height: 180px; }
	.main-menu ul li.highlighted-menu {	display: block;	}
	.slicknav_nav li,
	.slicknav_nav ul { display: block; }
	.responsive-menu,
  .navbar-toggle { display: block; }
	.btn-header {	display: none; }
  .login-boxes.animate .reset-box { left: -24%; }
	.section-row { margin-bottom: 40px;	}
	.section-title {
    margin-bottom: 30px;
    padding-top: 25px;
	}
  .section-bg-title span { font-size: 50px; }
	.section-title h3 {
    font-size: 16px;
    background-size: 18px auto;
    padding-left: 25px;
	}
	.section-title h1 { font-size: 52px; }
	.section-title h2 { font-size: 40px; }
	.section-title p { margin-top: 10px; }
	.section-title-content { margin-top: 10px; }
	.section-btn {
		text-align: left;
		margin-top: 15px;
	}
	.hero { padding: 175px 0 70px }
	.hero .hero-content .hero-content-body { margin: 30px auto 0;	}
	.hero-content { margin-bottom: 30px; }
	.hero-content-body,
	.hero-btn {	margin-top: 30px;	}
	.ticker { padding: 15px 0; }
	.ticker-wrapper { gap: 20px; }
	.scrolling-content span { font-size: 30px; }
	.scrolling-content span img {
    max-width: 30px;
    margin-right: 20px;
	}
	.article-item-blurred .article-image img { height: 450px; }
	.article-item-blurred .article-wrapper {
    padding: 20px;
		transform: translateY(70%);
	}
	.article-item-blurred .article-title h3 { font-size: 22px; }
	.article-item-blurred .article-content { margin-bottom: 20px;	}
	.article-item-blurred .article-content p { font-size: 14px;	}
	.match-schedule-item { padding: 30px;	}
	.match-schedule-item .icon-box img {
    max-width: 50px;
		max-height: 50px;
	}
	.match-content-info {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	.match-content-info p { font-size: 22px; }
	.match-content-location h3 { font-size: 20px; }
	.livestream-item-image,
	.livestream-item-content { margin-bottom: 15px;	}
	.livestream-item-content h3 { font-size: 20px; }
	.news-content {	margin: 0; }
	.sponsors-slider {
    margin-top: 40px;
    padding-top: 40px;
	}
	.sponsors-slider-title { margin-bottom: 30px; }
	.sponsors-slider-title h3 { font-size: 20px; }
  .page-pagination { margin-top: 10px; }
	.post-featured-image,
	.post-item-content { margin-bottom: 15px; }
	.post-item-content h2 { font-size: 20px; }
	.section { padding: 50px 0; }
  .main-footer .section {
    padding-bottom: calc(62px + constant(safe-area-inset-bottom) * 1.1);
    padding-bottom: calc(62px + env(safe-area-inset-bottom) * 1.1);
  }
	.footer-social-links h3 { font-size: 22px; }
	.footer-links { margin-left: 0;	}
	.footer-links h3 { font-size: 22px; }
	.footer-links ul li { margin-bottom: 15px; }
	.footer-copyright{
    font-size: 14px;
    margin-top: 30px;
		padding: 30px 0;
	}
	.page-header { padding: 150px 0 70px; }
	.page-header-wrapper h1 { font-size: 52px; }
	.team-image { margin-bottom: 15px; }
	.page-sidebar {
		position: initial;
		margin: 0 0 30px;
	}
	.sidebar-navigation {
    margin-bottom: 30px;
		padding: 20px;
	}
	.sidebar-navigation h3 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.sidebar-navigation ul li a { padding: 12px 40px 12px 15px;	}
	.sidebar-navigation ul li a::before {
		right: 15px;
		width: 12px;
		height: 12px;
	}
  .post-image { margin-bottom: 20px; }
  .post-entry h1,
  .post-entry h2,
  .post-entry h3,
  .post-entry h4,
  .post-entry h5,
  .post-entry h6 { margin: 0 0 0.375em; }
  .post-entry h2 { font-size: 40px; }
  .post-entry p { margin-bottom: 15px; }
  .post-entry ol li,
  .post-entry ul li { margin-bottom: 10px; }
	.page-sidebar h3 {
		font-size: 20px;
		padding: 20px;
	}
	.page-sidebar ul { padding: 20px;	}
	.page-sidebar ul li {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.hall-image {	margin: 0 0 30px; }
	.hall-info-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	.hall-info-content h3 {	font-size: 20px; }
	.error-page-image {	margin-bottom: 20px; }
	.error-page-image img {	max-width: 80%;	}
	.error-page-content .section-title,
	.error-page-content-body p { margin-bottom: 15px;	}
}

@media only screen and (max-width: 767px) {
  .login-boxes.animate .login-box { left: -150%; }
  .login-boxes.animate .reset-box { left: -100%; }
  .box-gradient { padding: 25px; }
  .section-title { padding-top: 20px; }
  .section-bg-title span { font-size: 40px; }
	.section-title h1 { font-size: 30px; }
	.section-title h2 { font-size: 28px; }
	.hero-content-body {
		max-width: 100%;
		margin-top: 20px;
	}
	.ticker-wrapper { gap: 15px; }
	.scrolling-content span { font-size: 26px; }
	.scrolling-content span img {
		max-width: 26px;
		margin-right: 15px;
	}
	.article-item-blurred .article-image img { height: 400px; }
	.article-item-blurred .article-title h3 { font-size: 20px; }
	.article-item-blurred.active .article-item-blurred .article-content-wrapper,
	.article-item-blurred:hover .article-item-blurred .article-content-wrapper { margin-top: 10px; }
	.article-item-blurred .article-content { margin-bottom: 20px; }
	.match-schedule-item {
    gap: 20px;
    padding: 20px;
  }
  .match-schedule-item-content { width: 100%; }
	.match-content-info {	gap: 10px; }
	.match-schedule-item .icon-box img {
    max-width: 40px;
    max-height: 40px;
  }
	.match-content-info p { font-size: 16px; }
	.match-content-info img {	max-width: 16px; }
	.sponsors-slider {
    margin-top: 30px;
    padding-top: 30px;
  }
  .sponsors-slider-title { margin-bottom: 20px; }
	.footer-links { margin-bottom: 30px; }
	.footer-links h3,
	.footer-social-links h3 {	font-size: 20px; }
	.footer-links ul li { margin-bottom: 12px; }
	.footer-copyright {
    margin-top: 0px;
    padding: 15px 0;
  }
	.footer-copyright-text { text-align: center; }
	.page-header-wrapper h1 { font-size: 30px; }
	.page-header-wrapper ol li.breadcrumb-item { font-size: 14px; }
	.post-meta { margin-top: 5px; }
	.post-meta ol li { font-size: 16px; }
  .post-meta ol li i { font-size: 16px; }
  .post-image img { aspect-ratio: 1 / 0.7; }
  .post-entry h2 { font-size: 28px; }
  .skills-progress-bar { width: 100%; }
	.skills-progress-bar .skill-data { margin-bottom: 15px;	}
	.hall-info-content h3 {	margin-bottom: 5px; }
	.hall-info-content p {
		display: block;
    margin: 0;
		padding: 0;
	}
}

@media only screen and (max-width: 495px) {
  .match-schedule-item.upcoming .match-content-location {
    max-width: calc(100% - 110px);
    margin: 0 auto;
  }
}

/***
====================================================================
	Schriftarten
====================================================================
***/
@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200;
  src: url("/fonts/manrope-v20-latin-200.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300;
  src: url("/fonts/manrope-v20-latin-300.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/manrope-v20-latin-regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/manrope-v20-latin-500.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/manrope-v20-latin-600.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/manrope-v20-latin-700.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  src: url("/fonts/manrope-v20-latin-800.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "League Gothic";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/league-gothic-v13-latin-regular.woff2") format("woff2");
}
