/***
====================================================================
	Copyright by Null1 media
	Moritz Locher
	mail [at] null1 [dot] media
====================================================================
***/

/***
====================================================================
	Allgemein
====================================================================
***/
:root {
  --primary-color: #c32229;
  --primary-color-rgba: 195, 34, 41;
}

html, body {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-size: 1.1rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.5;
  background: #2b292a;
}

body.offcanvas-open,
body:has(.offcanvas.show) {
  overflow: hidden;
  padding-right: 0 !important;
}

ul { margin-bottom: 0; }

a {
  color: var(--primary-color);
  text-decoration: none !important;
  outline: medium none !important;  
  transition: all .3s ease-in-out;
}

a:focus,
a:hover {
  color: var(--primary-color);
  text-decoration: none !important;
}

input {
  color: var(--primary-color);
  outline: medium none !important;  
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Handball-Open Hero", sans-serif;
  font-weight: normal;
  color: #fff;
  margin-top: 0px;
  margin-bottom: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a { color: inherit; }

label { font-weight: normal; }

h1 {
  font-size: 92px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
}

h2 {
  font-size: 48px;
  font-weight: 500;
}

h3 {
  font-size: 34px;
  font-weight: 500;
}

h4 {
  font-size: 28px;
  font-weight: 500;
}

h5 {
  font-size: 24px;
  font-weight: 500;
}

h6 {
  font-size: 22px;
  font-weight: 500;
}

p {
  color: #fff;
  line-height: 1.5;
}

*::-moz-selection {
  color: #fff;
  text-shadow: none;
  background: var(--primary-color);
}

::-moz-selection {  
  color: #fff;
  text-shadow: none;
  background: var(--primary-color);
}

::selection {  
  color: #fff;
  text-shadow: none;
  background: var(--primary-color);
}

.border { border: 1px solid rgba(255, 255, 255, .2) !important; }

.border-radius { border-radius: 6px; }

.border-radius-sm { border-radius: 4px; }

.border-radius-md { border-radius: 10px; }

.border-radius-lg { border-radius: 50%; }

.box-shadow { box-shadow: 0 1px 30px 0 rgba(255, 255, 255, .09); }

.box-shadow-sm { box-shadow: 0 2px 5px 0 rgba(255, 255, 255, .1); }

.box-shadow-lg { box-shadow: 0 1rem 3rem rgba(255, 255, 255, .175); }

.font-primary { font-family: "Rubik", sans-serif !important; }

.font-secondary { font-family: "Handball-Open", sans-serif !important; }

.text-primary { color: var(--primary-color) !important; }

.text-white { color: #fff; }

.text-dark { color: #221f21 !important; }

.text-light { color: #929598 !important; }

.bg-primary { background: var(--primary-color) !important; }

.bg-dark { background: #2b292a !important; }

.bg-light { background: #363537 !important; }

.section { padding: 100px 0; }

.section-title.border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.section-title-table {
  text-align: center;
  padding: 15px;
}

.is-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 130px;
}

.list ul li { margin-bottom: 8px; }

.list ul li i { color: var(--primary-color); }

.list ul li:last-child { margin-bottom: 0; }

ul.list li { margin-bottom: 8px; }

ul.list li i {
  font-size: 14px;
  color: var(--primary-color);      
  margin-right: 8px;
}

ul.list li:last-child { margin-bottom: 0; }

@media (max-width: 1200px) {
  .section { padding: 80px 0; }
}

@media (max-width: 991px) {
  .section { padding: 60px 0; }
}

@media (max-width: 767px) {
  .section { padding: 50px 0; }
}

@media (max-width: 575px) {
  .section { padding: 40px 0; }
 }

.form-control,
.form-select {
  height: 60px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border: 1px solid #ededed;
  border-radius: 0px;
  background-color: rgba(255, 255, 255, .1) !important;
  background-clip: inherit !important;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 10px 20px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.form-control:focus { color: #fff; }

.form-control::placeholder { color: #7e7c7c; }

textarea.form-control { height: auto; }

.input-group-prepend .input-group-text,
.input-group-append .input-group-text {
  width: 50px;
  justify-content: center;
  background: transparent;
  border-color: #ededed;
  box-shadow: none;
}

.input-group.file-upload { height: 50px; }

.input-group.file-upload .form-control {
  position: relative;
  width: 100%;
  height: 50px;
  z-index: 2;
  color: #8d8c8c;
  border-color: #ededed;
  border-radius: 3px;
  margin: 0;
  opacity: 0;
 }
 
 .input-group.file-upload .input-group-text {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  z-index: 1;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #8d8c8c;
  line-height: 1.5;
  background-color: #fff;
  border-color: #ededed;
  border-radius: 3px;
  margin-left: 0;
  padding: 15px 90px 15px 20px;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-group.file-upload .input-group-text::after {
  content: "Browse";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  z-index: 3;
  display: block;
  color: #fff;
  line-height: 1.5;
  background-color: #35343c;
  border-left: inherit;
  border-radius: 0 3px 3px 0;
  padding: 14px 25px;
}

.select2-container .select2-selection--single {
  height: auto;
  outline: none;
}

.select2-container .select2-selection--single .select2-selection__rendered { padding-left: 0px; }

.select2-container--default .select2-selection--single {
  border: none;
  border-radius: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: normal;
  color: #35343c;
  text-transform: capitalize;
}

.select2-results__options { padding: 8px 2px; }

.select2-container--default .select2-results__option--highlighted {
  border-radius: 0;
  transition: all .2s ease-in-out;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] { transition: all .3s ease-in-out; }

input[type="radio"]:radio { background-color: var(--primary-color); }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 20px;
  right: 10px;
  width: 14px;
  height: 21px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b { border: none; }

.select2-container--default .select2-selection--single .select2-selection__arrow::before {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  color: #8d8c8c;
}

.select2-container--default .select2-search--dropdown { padding: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field { border: 1px solid #ededed; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #35343c;
  transition: all 0.3s ease-in-out;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  color: var(--primary-color);
  background: rgba(var(--primary-color), .1);  
  transition: all .3s ease-in-out;
}

.select2-dropdown {
  z-index: 9;
  border: none;
  border-radius: 0;
}

.select-border .select2-container--default .select2-selection--single {
  height: 60px;
  line-height: 20px;
  background-color: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 0; 
  padding: 15px 20px;
}

.select-border .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 20px;
  right: 20px;
}

.select2-results__option[aria-selected] {
  font-size: 14px;
  transition: all .3s ease-in-out;
}

.select2-container--default .select2-results > .select2-results__options { border: none; }

.select2-container--default .select2-selection--single .select2-selection__rendered { color: #fff; }

.select2-container--open .select2-dropdown {
  background: #fff;
  border: 1px solid rgba(61, 209, 213, .1);  
  box-shadow: 0 2px 5px 0 rgba(255, 255, 255, .1);
  padding: 7px;  
}

.select2-search--dropdown .select2-search__field {
  border: 1px solid #ededed;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .04);
}

.select2-container--default .select2-selection--single { padding: 17px 20px; }

.custom-control-input:radio { background-color: var(--primary-color); }

.form-check .form-check-input {
  border-radius: 0;
  box-shadow: inherit;
}

.form-check.form-switch .form-check-input { border-radius: 2em; }

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: inherit;
}

.form-check-input:focus { border-color: 1px solid #dee2e6; }

.table { background-color: rgba(53, 52, 60, .3); }

.table > :not(caption) > * > * {
  color: #fff;
  background-color: transparent;
  border-color: rgba(255, 255, 255, .1);
}

.table tbody tr th,
.table tbody tr td {
  padding: 16px 20px 12px;
  font-size: 18px;
  color: #fff;
  border-color: rgba(255, 255, 255, .1);
}

.content-box { border: 1px solid rgba(255, 255, 255, .2); }

.overlay-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg,rgb(43, 41, 42) 0%, rgba(0, 0, 0, 0) 50%, rgb(43, 41, 42) 85%);
}

.overlay-section.light::before { background: linear-gradient(180deg,rgb(54, 53, 55) 0%, rgba(0, 0, 0, .5) 50%, rgb(54, 53, 55) 85%); }

.overlay-section > .container,
.overlay-section > .container-fluid {
  position: relative;
  z-index: 1;
}

.back-to-top a {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 40px;
  bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  font-size: 18px;
  color: #fff;
  background: var(--primary-color);  
  margin: 0; 
  transition: all .3s ease-in-out;
}

.tab { position: relative; }

.tab .nav .nav-item { margin: 0 16px; }

.tab .nav .nav-item .nav-link {
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;      
  color: #fff;
  padding: 0;
}

.tab .nav .nav-item .nav-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
  background-color: inherit;
}

.tab .nav .nav-item .nav-link.active {
  color: var(--primary-color);
  text-decoration: underline;
  background-color: inherit;
}

.social-icon ul {
  display: inline-flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
}

.social-icon ul li {
    float: left;
    display: inline-flex;
    list-style-type: none;
}

.social-icon ul li:last-child a { margin-right: 0; }

.social-icon ul li a {
  display: flex;
  font-size: 18px;
  color: #f5f5f5;
  margin-right: 25px;
  transition: all .5s ease;
}

.social-icon ul li a:hover { color: var(--primary-color); }

@media (max-width: 1400px) {
  h1 { font-size: 90px; }
}

@media (max-width: 1199px) {
  h1 { font-size: 80px; }
}

@media (max-width: 991px) {
  h1 {
    font-size: 65px;
    line-height: 1;
  }
}

@media (max-width: 767px) {
  h1 { font-size: 60px; }
  h2 { font-size: 40px; }
  h3 { font-size: 26px; }
  h4 { font-size: 24px; }
}

@media (max-width: 575px) {
  h1 { font-size: 50px; }
  h2 { font-size: 35px; }
}

@media all and (display-mode: standalone) {
  .hide-in-app { display: none; }
}

/***
====================================================================
	Buttons
====================================================================
***/
.btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  border-radius: 0;  
  padding: 15px 40px;  
  transition: all .3s ease-in-out;
}

.btn:active,
.btn:focus {
  box-shadow: none;
  outline: none;
}

.btn.btn-link { padding: 0 !important; }

.btn.btn-primary {
  color: #fff !important; 
  background: var(--primary-color) !important;
}

.btn.btn-primary:hover {
  color: #000 !important;
  background: #fff !important;
  transform: translateY(-2px);
}

.btn.btn-primary:active,
.btn.btn-primary:focus { box-shadow: none; }

.btn-primary.working i {
  animation: 2s linear infinite fa-spin;
  transform-origin: 50% 55.95%;
}

.btn-primary.working i::before { content: "\f1ce"; }

.btn-white {
  color: #000 !important;
  background: #fff !important;
}

.btn-white:hover {
  color: #fff !important;
  background: var(--primary-color) !important;
  transform: translateY(-2px);
}

.btn-white:focus { color: #000 !important; }

.btn-secondary {
  color: #fff !important;
  background: #fff !important;
}

.btn-secondary:hover {
  background: var(--primary-color) !important;
  transform: translateY(-2px);
}

.bg-dark .btn-primary:hover {
  color: var(--primary-color) !important;
  background: #fff !important;
}

.btn.text-secondary:hover { color: var(--primary-color) !important; }

.btn.text-white:hover { color: var(--primary-color) !important; }

.btn.text-primary:hover { color: #fff !important; }

.btn-list .btn-white:hover {
  color: #fff;
  background: var(--primary-color) !important;
}

.btn.btn-lg {
  font-size: 20px;
  padding: 20px 40px;
}

.btn.btn-md {
  font-size: 14px;
  padding: 15px 30px;
}

.btn.btn-sm {
  font-size: 14px;
  padding: 12px 20px;
}

@media (max-width: 767px) {
  .btn {
    font-size: 14px;
    padding: 12px 20px;
  }
  .btn.btn-lg {
    font-size: 15px;
    padding: 15px 30px;
  }
}

/***
====================================================================
  Cookie-Zustimmung
====================================================================
***/
#cm.bar #c-inr { max-width: 35em; }

#cc_div #cm {
	font-family: "Rubik", sans-serif !important;
	color: #fff;
  background-color: #000;
}

#cc_div #cm #c-ttl, #s-ttl {
	font-family: "Rubik", sans-serif;
	font-size: 20px !important;
	font-weight: 500 !important;
  color: #fff;
}

#cc_div #cm #c-txt {
  font-size: 1rem;
  font-weight: 300;
}

.cc_div .cc-link {
	font-weight: normal !important;
	color: var(--primary-color) !important;
	border: 0 !important;
}

.cc_div .c-bn:not(#s-c-bn) {
  position: relative;
  top: 0;
  font-size: 13px !important;
	font-weight: 500 !important;
  color: #fff !important;
  text-transform: uppercase;
	background: var(--primary-color) !important;
	border-radius: 0 !important;
	padding: 12px 17px !important;
	transition: all .3s !important;
}

.cc_div .c-bn:not(#s-c-bn):hover {
  color: #000 !important;
  background: #fff !important;
  transform: translateY(-2px);
}

.cc_div .c-bn:not(#s-c-bn).c_link {
	color: var(--primary-color) !important;
	border: 1px solid var(--primary-color) !important;
	background-color: transparent !important;
}

.cc_div .c-bn:not(#s-c-bn).c_link:hover {
	color: #fff !important;
	background: var(--primary-color) !important;
}

.cc_div .c-bn > span { text-transform: uppercase; }

#c-s-in { font-family: "Rubik", sans-serif !important;	}

#s-inr,
#s-hdr,
#s-bns { background-color: #000 !important; }

#s-hdr,
#s-bns,
#s-bl .c-bl { border-color: rgba(255, 255, 255, .2); }

#s-c-bnc #s-c-bn,
#s-bl .c-bl:hover { background-color: transparent; }

#s-c-bn::after,
#s-c-bn::before { background-color: #fff; }

.cc_div,
#s-cnt .p { color: #fff; }

#s-bl .c-bl.b-ex { background-color: #2b292a; }

#s-cnt .b-bn .b-tl:active,
#s-cnt .b-bn .b-tl:hover,
#s-bl tbody tr:hover { background-color: var(--primary-color); }

.cc_div .act .b-bn .exp::before,
.cc_div .b-bn .exp::before { border-color: #fff; }

#cm,
#s-inr,
.cc_div .c-bl,
.cc_div .b-tl,
#s-bl .act .b-acc,
#s-c-bn { border-radius: 0 !important; }

/***
====================================================================
	Header
====================================================================
***/
header.header {
	position: absolute;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid var(--dark-divider-color);
}

header.header .header-sticky {
	position: relative;
	top: -1px;
	z-index: 100;
  transition: all .4s ease-in-out;
}

header.header .header-sticky.hide { transform: translateY(-100%); }

header.header .header-sticky.active { transform: translateY(0); }

header.header .header-sticky.active,
header.header .header-sticky.hide {
  position: fixed;
  top: -1px;
  right: 0;
  left: 0;
  background: #000;
}

header.header .header-sticky.active .navbar-brand img,
header.header .header-sticky.hide .navbar-brand img { height: 60px; }

.header .navbar .off-canvas-toggle {
  display: flex;
  align-items: center;
  font-size: 28px;
}

.header .navbar .off-canvas-toggle:hover { cursor: pointer; }

.header .navbar .off-canvas-toggle a { color: #fff; }

.header .navbar .off-canvas-toggle .side-menu { padding: 10px 0 10px 40px; }

.header .navbar .navbar-brand img { height: 100px; }

.header .navbar .navbar-brand span {
  font-family: "Handball-Open Hero", sans-serif;
  font-size: 3rem;
  color: #fff;
}

.header .navbar .navbar-brand .sticky-logo { display: none; }

.header .navbar .navbar-collapse.collapse {
  flex-grow: inherit;
  margin-left: auto;
}

.header .navbar .navbar-nav { position: relative; }

.header .navbar .navbar-nav .nav-item { margin-right: 30px; }

.header .navbar .navbar-nav .nav-item:last-child { margin-right: 0; }

.header .navbar .navbar-nav .nav-item .nav-link {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  padding: 30px 5px;
  transition: all .3s ease-in-out;
}

.header .navbar .navbar-nav .nav-item .nav-link i {
  display: flex;
  align-items: baseline;
  margin-left: 8px;
}

.header .navbar .navbar-nav .nav-item .nav-link:hover { color: var(--primary-color); }

.header .navbar .navbar-nav li.active > .nav-link { color: var(--primary-color); }

header.header.header-sticky.is-sticky {
  position: fixed;
  top: -160px;
  width: 100%;
  z-index: 11;
  background: #fff;
  box-shadow: 0 1px 30px 0 rgba(255, 255, 255, .09);
  transition: all .5s ease-in-out;
  padding: 0 40px;
}

header.header.header-sticky.is-sticky.sticky-show { top: 0; }

header.header.header-sticky.is-sticky .navbar .navbar-nav .nav-item .nav-link {
  color: #12111a;
  padding: 20px 5px;
}

header.header.header-sticky.is-sticky .navbar .navbar-nav .nav-item.active .nav-link { color: var(--primary-color); }

header.header.header-sticky.is-sticky .navbar .navbar-brand .logo { display: none; }

header.header.header-sticky.is-sticky .navbar .navbar-brand .sticky-logo { display: flex; }

.header.header-sticky.is-sticky .navbar .navbar-toggler {
  color: #000;
  border: inherit;
}

.header .topbar { padding: 15px 0; }

.header .topbar a { color: #fff; }

.header .topbar a:hover { color: var(--primary-color); }

.header .navbar { padding: 0; }

.header .navbar .main-header {
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, .3);
  padding: 20px;
}

.header .navbar .main-header .navbar-collapse.collapse { margin-left: initial; }

.header .navbar .navbar-nav { align-items: center; }

.header .navbar .navbar-nav .nav-item { margin-right: 30px; }

.header .navbar .navbar-nav .navbar-brand {
  position: relative;
  display: block;
  border: none;
  margin: 0 20px;
}

.header.header-sticky.is-sticky { padding: 0; }

.header.header-sticky.is-sticky .topbar { padding: 15px 0px; }

.header.header-sticky.is-sticky .topbar a { color: #000; }

.header.header-sticky.is-sticky .topbar a:hover { color: var(--primary-color); }

.header.header-sticky.is-sticky .navbar .main-header {
  border-top: 1px solid rgba(18, 17, 26, .1);
  padding-top: 15px;
}

.header.header-sticky.is-sticky .navbar .main-header .navbar-nav .nav-item .nav-link { padding: 20px 5px; }

.offcanvas.offcanvas-end.offcanvas-sidebar-menu {
  right: 0;
  left: inherit;
  width: 500px;
  background: rgba(18, 17, 26, .8) !important;
  backdrop-filter: blur(13px) !important;
  transform: translateX(100%);
}

.offcanvas.offcanvas-end.offcanvas-sidebar-menu .offcanvas-header .btn-close {
  width: auto;
  height: auto;
  background: none;
  margin: 0;
  padding: 0;
  opacity: 1;
}

.offcanvas.offcanvas-end.offcanvas-sidebar-menu .offcanvas-header .btn-close i {
  font-size: 28px;
  color: #fff;
}

.offcanvas.offcanvas-end.offcanvas-sidebar-menu .offcanvas-header .btn-close:hover i { color: var(--primary-color); }

.offcanvas.offcanvas-end.offcanvas-sidebar-menu .offcanvas-header .btn-close:focus { box-shadow: none; }

.offcanvas.offcanvas-end.offcanvas-sidebar-menu .sidebar-menu .sidebar-logo a img { height: 30px; }

.offcanvas.offcanvas-end.offcanvas-sidebar-menu .sidebar-menu .nav-link { color: #fff; }

.offcanvas.offcanvas-end.offcanvas-sidebar-menu .sidebar-menu .nav-link.active { color: var(--primary-color); }

.offcanvas.offcanvas-sidebar-menu.show { transform: none; }

.header .navbar .dropdown > .dropdown-menu li.active a { color: var(--primary-color); }

@media (max-width: 1500px) {
  .header .navbar .navbar-brand {
    margin-right: 20px;
    padding-right: 30px;
  }
  .header .navbar .navbar-nav .nav-item { margin-right: 15px; }
  .header.header .navbar .navbar-brand { padding-right: 0px; }
}

@media (max-width: 1366px) {
  .header .navbar .navbar-nav .nav-item { margin-right: 8px; }
}

@media (max-width: 1300px) {
  .header { padding: 15px 20px; }
  header.header.header-sticky.is-sticky { padding: 0px 20px; }  
}

@media (min-width: 1200px) {  
  .header .navbar .dropdown-menu {
    left: 0;
    min-width: 200px;
    display: block !important;
    visibility: hidden;
    font-size: 16px;
    border-color: transparent;
    border-radius: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    margin: 0;    
    padding: 20px;    
    transform: translate3d(-10px, 15px, 0);
    transform-origin: top center;
    transition: all .3s ease-in-out;
    transition-property: opacity, visibility, transform;   
    opacity: 0;
  }  
  .header .navbar .dropdown-menu .dropdown-submenu .dropdown-menu {
    left: 100%;
    right: auto;
    transform: translate3d(0, 10px, 0);
  }
  .header .navbar .dropdown-menu .dropdown-submenu .dropdown-menu.left-side {
    left: auto;
    right: 100%;
    transform: translate3d(-15px, 10px, 0);
  }
  .header .navbar .dropdown-menu.megamenu {
    left: 0;
    width: 100%;
  }
  .header .navbar .dropdown-menu.megamenu .nav-title {
    font-size: 18px;
    font-weight: 700;
  }
  .header .navbar .dropdown > .dropdown-menu {
    top: 100%;
    margin-top: 0;
  }
  .header .navbar .dropdown > .dropdown-menu.megamenu { top: 100%; }
  .header .navbar .dropdown:hover > .dropdown-menu {
    visibility: visible;
    transform: translate3d(-10px, 0, 0);    
    opacity: 1;
  }
  .navbar-nav .dropdown-menu.dropdown-menu-lg { min-width: 630px; }
  .navbar-nav .dropdown-menu.dropdown-menu-md { min-width: 450px; }
  .navbar-nav .mega-menu { position: static; }
  .navbar-nav li:hover > ul.dropdown-menu {
    visibility: visible;
    opacity: 1;
  }
  .dropdown-submenu {
    position: relative;
    display: block;
    color: #12111a;
    font-weight: 400;
    padding: 7px 0 7px 0;
  }
  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
  }
  .dropdown-menu > li > a:hover::after {
    text-decoration: underline;
    transform: rotate(-90deg);
  }
  .dropdown-menu .dropdown-item {
    color: #12111a;
    background: none;
    padding: 7px 0 7px 0;
  }
  .dropdown-menu .dropdown-item:hover {
    color: var(--primary-color);
  }
  .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
  }
}

@media (max-width: 1199px) {
  .header .navbar .main-header{ border-top: 0; }
  .header .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 350px;
    z-index: 999;
    overflow: auto;
    background: #12111a;    
    border-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: -1px;
    margin-left: 0;
  }
  .header .navbar .navbar-brand .logo { height: 30px; }
  .header .navbar .navbar-nav { align-items: initial; }
  .header .navbar .navbar-nav .nav-item { margin-right: 0; }  
  .header .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    color: #fff;
    padding: 10px 20px;
  }
  .header .navbar .navbar-nav .nav-item .nav-link i {
    position: absolute;
    right: 20px;
  }
  .header .navbar .navbar-nav .dropdown.mega-menu .megamenu {
    width: 95%;
    margin: 0 auto;
  }
  .header .navbar .dropdown-menu {
    font-size: 16px;
    background: #35343c;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0 15px;   
    padding: 15px;
  }
  .header .navbar .dropdown-menu .dropdown-item {
    color: #fff;
    padding: 10px 0;
  }
  .header .navbar .dropdown-menu .dropdown-item:hover {
    color: var(--primary-color);
    background-color: inherit;
  }
  .header .navbar .dropdown-menu .dropdown-item:active,
  .header .navbar .dropdown-menu .dropdown-item:focus { background-color: inherit; }
  .header .navbar .dropdown-menu .dropdown-item.active {
    color: var(--primary-color);
    background-color: inherit;
  }
  .header .navbar .nav-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-top: 20px;    
  }
  .header .navbar .navbar-toggler {
    position: absolute;
    right: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: none;
    box-shadow: none;
    padding: 0;
    transition: .5s ease-in-out;
  }
  header.header.header-sticky.is-sticky .navbar .navbar-brand .sticky-logo { height: 25px; }
  header.header.header-sticky.is-sticky .navbar .navbar-nav .nav-item .nav-link {
    color: #fff;
    padding: 10px 20px;
  }
  header.header.header-sticky.is-sticky .navbar .navbar-nav .nav-item .nav-link:hover { color: var(--primary-color); }
  .header .topbar { display: none !important; }
  .header .navbar .navbar-nav { align-items: initial; }
  .header .navbar .navbar-nav .nav-item { margin-right: 0; }
  .header .navbar .navbar-nav .dropdown-menu .dropdown-item {
    font-size: 16px;
    color: #fff;
  }
  .header .navbar .navbar-nav .dropdown-menu .dropdown-item:hover,
  .header .navbar .navbar-nav .dropdown-menu .dropdown-item:focus { background-color: inherit; }
  .header .navbar .navbar-nav .dropdown-menu li.active .dropdown-item { color: var(--primary-color); }
  .header .navbar .navbar-nav .navbar-brand { display: none; }
  .header .navbar .main-header {
    justify-content: flex-start;
    padding: 25px;
  }
  .header .navbar .main-header .navbar-toggler {
    top: 35px;
    right: 28px;
  }
  .header .navbar .main-header img { height: 90px; }
  .header.header-sticky.is-sticky .navbar .main-header { padding-top: 25px; }
  .header.header-sticky.is-sticky .navbar .main-header .navbar-nav .nav-item .nav-link { padding: 10px 20px; }  
  .dropdown-submenu {
    display: block;
    color: #fff;
    padding: 10px 0;
  }
}

@media (max-width: 991px) {
  .header .navbar .navbar-brand { padding-right: 20px; }
}

@media (max-width: 767px) {
  .header .topbar {
    display: flex;
    justify-content: center !important;
    flex-wrap: wrap;
    text-align: center;
    padding: 15px 0;
  }
  .header .topbar .topbar-right { margin-top: 10px; }
}

@media (max-width: 575px) {
  .header { padding: 0 10px; }
  .header .navbar .main-header { padding: 12px; }
  .header .navbar .main-header img { height: 70px; }
  .header .navbar .navbar-brand span { font-size: 2rem; }
  header.header.header-sticky.is-sticky { padding: 0 10px; }
}

@media (max-width: 479px) {
  .header { padding: 0 10px; }
  .header .navbar .navbar-brand { flex: 0 0 120px; }
  .header .topbar .topbar-left { display: none !important; }
}

/***
====================================================================
	Footer
====================================================================
***/
.footer { background-color: #000; }

.footer .footer-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.footer .footer-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer .footer-menu ul li { margin-bottom: 8px; }

.footer .footer-menu ul li a {
  display: block;
  color: #fff;
}

.footer .footer-menu ul li a:hover { color: var(--primary-color); }

.footer .footer-menu ul li:last-child { margin-bottom: 0; }

.footer .footer-social {
  display: flex;
  align-items: center;
}

.footer .footer-social span {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
}

.footer .footer-social ul {
  margin-bottom: 0;
  padding-left: 15px;
}

.footer .footer-social ul li {
  display: inline-block;
  font-size: 35px;
  list-style-type: none;
  margin-right: 20px;
}

.footer .footer-social ul li a { color: #fff; }

.footer .footer-social ul li a:hover { color: var(--primary-color); }

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1); 
  padding: 20px 0;
}

.footer-bottom .footer-logo img { height: 20px; }

.footer .footer-bottom .copyright { color: #fff; }

.footer .footer-bottom .copyright a { color: #fff; }

.footer .footer-bottom .copyright a:hover { color: var(--primary-color); }

#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(--primary-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; }

@media (max-width: 991px) {
  .footer {
    margin-bottom: calc(62px + constant(safe-area-inset-bottom) * 1.1);
    margin-bottom: calc(62px + env(safe-area-inset-bottom) * 1.1);
  }
  .footer .footer-logo img { height: 35px; }
  .footer .footer-bottom { padding: 30px 0; }
}

@media (max-width: 767px) {
  .footer .footer-menu ul li { margin-bottom: 15px; }
  .footer .footer-social span { font-size: 18px; }
  .footer .footer-social ul li { font-size: 25px; }
}

/***
====================================================================
	Start
====================================================================
***/
.banner { margin: 0; }

.banner .video {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.banner .video .container {
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%) translateY(-50%);
}

.banner .video::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgb(43, 41, 42) 100%);
}

.banner .video video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device {
  position: absolute;
  right: 10%;
  bottom: -30%;
  width: 300px;
  height: 540px;
  background-color: #7e7c7c;
  border-radius: 21px;
  transform: rotate(30deg);
  opacity: .4;
}

.device::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 10px;
  bottom: 10%;
  left: 10px;
  background-image: url("/img/app.jpg");
  background-size: cover;
  border-radius: 5px;
}

.collapse-arrow::before {
  content: "\f106";
  position: relative;
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: all .3s;
}

.weather-warning h5.collapsed .collapse-arrow::before { transform: rotate(180deg); }

.weather-warning h5:hover { cursor: pointer; }

.countdown-section {
  background-image: url("/img/bg1.jpg");
  background-repeat: no-repeat;
  padding-top: 240px;
  padding-bottom: 240px;  
}

.countdown-main {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-main .countdown {
  position: relative;
  width: inherit;
  height: inherit;    
  display: flex;
  justify-content: center;
  align-items: center;  
  flex-direction: column;
  font-family: "Handball-Open Hero", sans-serif;
  border: none;
  margin: 0;
  padding: 50px;
}

.countdown-main .countdown:last-child::before,
.countdown-main .countdown:last-child span::before { display: none; }

.countdown-main .countdown span {
  color: #fff;
  font-size: 100px;
  font-weight: bold;
  line-height: 100px;      
}

.countdown-main .countdown span::before {
  content: ":";
  position: absolute;
  top: 35%;
  right: -8px;
  font-size: 100px;
  font-weight: bold; 
  color: #fff;
  transform: translateY(-50%);
}

.countdown-main .countdown p {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 40px;    
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .countdown-main .countdown { padding: 30px; }
  .countdown-main .countdown span {
    font-size: 60px;
    line-height: 60px;
  }
  .countdown-main .countdown span::before { font-size: 60px; }
  .countdown-main .countdown p {
    font-size: 30px;
    line-height: 30px;
  }
}

@media (max-width: 991px) {
  .countdown-main .countdown { padding: 20px; }
  .countdown-main .countdown span {
    font-size: 48px;
    line-height: 48px;
  }
  .countdown-main .countdown span::before { font-size: 48px; }
  .countdown-main .countdown p {
    font-size: 24px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  .countdown-main .countdown {
    width: 90px;
    height: 90px;   
    margin: 5px;
  }
  .countdown-main .countdown span { font-size: 22px; }
  .countdown-main .countdown { padding: 15px; }
  .countdown-main .countdown span {
    font-size: 30px;
    line-height: 30px;
  }
  .countdown-main .countdown span::before { font-size: 30px; }
  .countdown-main .countdown p {
    font-size: 18px;
    line-height: 18px;
  }
}

@media (max-width: 575px) {
  .countdown-main .countdown { width: 50%; }
  .countdown-main .countdown span::before { content: inherit; }
}

#mapCanvas {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

#floorplan table tr:hover td,
#floorplan table tr.highlighted td {
	color: #fff;
	background: var(--primary-color);
  cursor: pointer;
}

.text-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 310px;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
}

.text-area .text-vertical {
  top: 50%;
  left: 50%;
  font-family: "Handball-Open Hero", sans-serif;
  font-size: 8rem;
  color: #2b292a;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%) translateY(-50%) rotate(-90deg);
}

@media (max-width: 991px) {
  .text-area { display: none; }
}

.accordion .accordion-item {
  background-color: inherit;
  border: 0;  
  margin-bottom: 20px;
}

.accordion .accordion-item .accordion-header {
  font-family: "Rubik", sans-serif;
  border-bottom: none;
  margin-bottom: 0;
  padding: 0;
}

.accordion .accordion-item .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #2b292a;
  border-radius: 0 !important;
  padding: 15px 20px;
}

.accordion .accordion-item .accordion-header .accordion-button::after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  color: #fff;
  background-image: inherit;  
  margin-right: 0;
}

.accordion .accordion-item .accordion-header .accordion-button:hover { color: var(--primary-color); }

.accordion .accordion-item .accordion-header .accordion-button:hover::after { color: var(--primary-color); }

.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--primary-color);
  box-shadow: inherit;
  outline: inherit;
}

.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f068";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  background-image: inherit;  
  transform: inherit;
}

.accordion .accordion-item .accordion-button:focus {
  border-color: inherit;
  box-shadow: inherit;
}

.accordion .accordion-item .accordion-collapse {
  border: 1px solid rgba(255, 255, 255, .2);
  border-top: 0;
}

.accordion .accordion-item .accordion-collapse .accordion-body {
  color: #8d8c8c;
  padding: 20px;
}

.accordion-item:last-of-type > .accordion-collapse { border-radius: 0 !important; }

.accordion .accordion-item:last-child .accordion-header { margin-bottom: 0; }

@media (max-width: 767px) {
  .accordion .accordion-item h3.accordion-header {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  .accordion .accordion-item h3.accordion-header .accordion-button::after { margin-right: 0; }
}

.lido-section {
  background-image: url("/img/freibad.jpg");
  background-repeat: no-repeat;
  padding-top: 240px;
  padding-bottom: 240px;  
}

.slider-thumbnail {
  position: relative;
  overflow: hidden;
}

.slider-thumbnail img {
  transform: scale(1);
  transition: all .5s ease;
}

.slider-thumbnail .slider-action {
  position: absolute;
  right: 0;
  bottom: -60px;
  left: 0;    
  text-align: center;
  transition: all .5s ease-in-out;
}

.swiper-slide:hover .slider-thumbnail img { transform: scale(1.05); }

.swiper-slide:hover .slider-thumbnail .slider-action {
  position: absolute;
  bottom: 10px;
}

.instagram-item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;  
}

.instagram-item img,
.instagram-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.instagram-item:hover img,
.instagram-item:hover video { transform: scale(1.05); }

.instagram-item .overlay {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;  
  background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, transparent 50%);
  padding: 15px;
  inset: 0;
}

.instagram-item:hover .overlay { opacity: 1; }

.instagram-item .overlay .username {
  font-size: 14px;
  font-weight: 700;
  color: #fff;  
  margin-bottom: 5px;
}

.instagram-item .overlay .caption {
  overflow: hidden;
  font-size: 12px;
  color: #fff;  
  line-height: 1.4;  
}

.instagram-item .media-type {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 16px;
  color: #fff;  
  text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}

.instagram-item .feed-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  background: var(--primary-color);
  border-radius: 3px;  
  padding: 3px 8px;  
}

/***
====================================================================
	Seiten
====================================================================
***/
.header.inner-page-header {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 99;
}

.inner-banner {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;  
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 45px;
}

.inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgb(43, 41, 42) 100%);
}

.inner-banner .inner-banner-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;    
  flex-wrap: wrap;
}

.inner-banner .inner-banner-title h2 {
  position: relative;
  font-size: 60px;
  color: #fff;  
  line-height: 70px;  
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .inner-banner .inner-banner-title h2 { font-size: 40px; }
}

.inner-banner .inner-banner-title .breadcrumb { margin-bottom: 15px; }

.inner-banner .inner-banner-title .breadcrumb .breadcrumb-item { color: #fff; }

.inner-banner .inner-banner-title .breadcrumb .breadcrumb-item::before { color: #fff; }

.inner-banner .inner-banner-title .breadcrumb .breadcrumb-item a { color: #fff; }

.inner-banner .inner-banner-title .breadcrumb .breadcrumb-item a:hover { color: var(--primary-color); }

.inner-banner .inner-banner-title .breadcrumb .breadcrumb-item.active { color: var(--primary-color); }

.video-section {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 170px;
  padding-bottom: 170px;
}

.video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
}  

.video-section .video-wrapper {
  position: relative;
  text-align: center;
}

.video-section .video-wrapper .btn-play {
  width: 90px;
  height: 90px;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 90px;
  color: var(--primary-color);
  background-color: #fff;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 40px;  
  transition: all .3s ease-in-out;
}

.video-section .video-wrapper .btn-play i { font-size: 30px; }

.video-section .video-wrapper .btn-play:hover {
  color: #fff;
  background-color: var(--primary-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;
}

.wrong .fa-check,
.good .fa-times,
#password-alert { display: none; }

.nav-fill .nav-item .nav-link {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-color); 
  border-radius: 0;
  padding: 15px;
}

.nav-pills .nav-link.active {
  color: #fff;
  background-color: var(--primary-color);
}

@media (max-width: 991px) {
  .nav-fill .nav-item {
    width: 100%;
    display: block;
  }
}

.null1-media img {
  width: 35%;
  padding-top: 20px;
}

.message-bubble { margin-bottom: 15px; }

.message-bubble.admin,
.message-bubble.admin .meta { text-align: right; }

.message-bubble.admin .bubble {
  color: #000;
  background: #e9ecef;
  border-radius: 15px 15px 0 15px;
  margin-left: auto;
}

.message-bubble.user .bubble {
  background: var(--primary-color);
  color: #fff;
  border-radius: 15px 15px 15px 0;
}

.message-bubble .bubble {
  max-width: 80%;
  display: inline-block;
  padding: 10px 15px;  
}

.message-bubble .meta {
  font-size: 0.75rem;
  margin-bottom: 3px;
}

/***
====================================================================
	Kontakt
====================================================================
***/
.contact-info { padding: 40px 30px; }

.contact-item {
  display: flex;
  margin-bottom: 30px;  
}

.contact-item .contact-icon {
  min-width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  margin-right: 30px;
  padding-bottom: 0;  
}

.contact-item .contact-icon i {
  font-size: 40px;
  color: var(--primary-color);
}

.contact-us-form { padding-left: 60px; }

.google-map {
  position: relative;
  height: 500px;
  display: block;
  overflow: hidden;  
}

.google-map img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 575px) {
  .contact-item .contact-icon {
    min-width: 65px;
    height: 65px;
  }
  .contact-item .contact-icon i { font-size: 30px; }
}

/***
====================================================================
	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(--primary-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;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center; }
  .pagination .page-item {
    margin: 0 6px;
    display: flex; }
    .pagination .page-item .page-link {
      color: var(--primary-color);
      padding: 10px 18px;
      border-radius: 0;
      font-weight: 500;
      border: none;
      background: #f5f5f5;
      border-color: #f5f5f5; }
      .pagination .page-item .page-link:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #ffffff; }
      .pagination .page-item .page-link:focus {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #ffffff;
        box-shadow: none; }
  .pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff; }

/***
====================================================================
	alert.js
====================================================================
***/
div:where(.swal2-container) div:where(.swal2-popup),
.swal2-toast {
  color: #fff;
  background: #2b292a;
}

div:where(.swal2-container) div:where(.swal2-timer-progress-bar) { background: var(--primary-color); }

div:where(.swal2-container) h2:where(.swal2-title) { color: #fff !important; }

.swal2-toast h2:where(.swal2-title) { font-size: 1.2em; }

/***
====================================================================
	popup.js
====================================================================
***/
.mfp-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  overflow: hidden;
  background: #000;
}

.mfp-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  outline: none !important;
  backface-visibility: hidden;
}

.mfp-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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 {
  color: #ccc;
  position: absolute;
  top: 50%;
  right: 8px;
  left: 8px;
  width: auto;
  z-index: 1044;
  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;
  appearance: none;
  background: transparent;
  border: 0;background: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
  padding: 0;
  cursor: pointer; 
  touch-action: manipulation;
}

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;   
}

.mfp-close:hover,
.mfp-close:focus { opacity: 1; }

.mfp-close:active { top: 1px; }

.mfp-close-btn-in .mfp-close { color: #fff; }

.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;
  box-sizing: border-box;
  display: block;
  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 {
  color: #f3f3f3;
  text-align: left;
  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;
  }
}

.white-popup {
  position: relative;
  background: #fff;
  padding: 30px;
  width: auto;
  max-width: 600px;
  margin: 20px auto;
  border-radius: 8px;
  color: #333;
}

.white-popup h3 {
  color: #333;
  font-weight: 500;
}

.white-popup p {
  color: #666;
}

.white-popup .form-check-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.white-popup .form-check-label img {
  border-radius: 4px;
}

@media (max-width: 767.98px) {
  .white-popup {
    margin: 10px;
    padding: 20px;
  }
}

/***
====================================================================
	Schriftarten
====================================================================
***/
@font-face {
  font-display: swap;
  font-family: "Handball-Open";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/handball-open.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Handball-Open Hero";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/handball-open-hero.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 300;
  src: url("/fonts/rubik-v28-latin-300.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/rubik-v28-latin-regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/rubik-v28-latin-700.woff2") format("woff2");
}