/* Darkmode
#111c11   Background
#3a4f3a   Hervorheben
#e0e0e0   Text
#436d72   Akzent
*/

/* #e0e0e0mode
#e0e0e0   Background
#3a4f3a   Hervorheben
#111c11   Text
#436d72   Akzent
*/


* {
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 1vw;
}

@media screen and (max-width: 480px) {
  * {
    font-size: 1.5vw;
  }
}

*::selection {
  background-color: #3a4f3a;
  color: #e0e0e0;
}

img {
  max-width: 100%;
}

body {
  background-color: #111c11;
  color: #e0e0e0;
  box-sizing: border-box;
  border-color: rgba(211, 211, 211, 0.2);
  transition: .4s;
}

body,
body:before,
body:after {
  box-sizing: inherit;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.4rem
}

p,
a,
li {
  font-size: 1.3rem;
}

#mainus {
  text-align: center;
  font-weight: 700;
  margin-top: 8vw;
}


.column {
  float: left;
  width: 50%;
  text-align: center;
}

/* CookieBanner */
#cookie-banner {
  z-index: 99;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #e0e0e0;
  color: #111c11;
  padding: 10px;
  text-align: center;
  display: none;
  transition: background-color 0.3s ease 0s;
  font-size: 1.5rem;
}

#cookie-banner button {
  margin-left: 1vw;
  background-color: #111c11;
  color: #e0e0e0;
  padding: 5px 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
  font-size: 1.4vw;
}

#cookie-banner button:hover {
  margin-left: 1vw;
  background-color: #e0e0e0;
  color: #111c11;
  padding: 5px 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.darkmode #cookie-banner {
  background-color: #111c11;
  color: #e0e0e0;
}

.darkmode #cookie-banner button {
  background-color: #e0e0e0;
  color: #111c11;
}

.darkmode #cookie-banner button:hover {
  background-color: #111c11;
  color: #e0e0e0;
}

#cookiedaten {
  color: #111c11;
  font-size: 1.5rem;
}

.darkmode #cookiedaten {
  color: #e0e0e0;
}

/* CSS für den Schalter */
.theme-switch {
  --toggle-size: 1vw;
  /* the size is adjusted using font-size,
     this is not transform scale,
     so you can choose any size */
  --container-width: 5.625em;
  --container-height: 2.5em;
  --container-radius: 6.25em;
  --container-light-bg: #3D7EAE;
  --container-night-bg: #1D1F2C;
  --circle-container-diameter: 3.375em;
  --sun-moon-diameter: 2.125em;
  --sun-bg: #ECCA2F;
  --moon-bg: #C4C9D1;
  --spot-color: #959DB1;
  --circle-container-offset: calc((var(--circle-container-diameter) - var(--container-height)) / 2 * -1);
  --stars-color: #e0e0e0;
  --clouds-color: #F3FDFF;
  --back-clouds-color: #AACADF;
  --transition: .5s cubic-bezier(0, -0.02, 0.4, 1.25);
  --circle-transition: .3s cubic-bezier(0, -0.02, 0.35, 1.17);
}

.theme-switch,
.theme-switch *,
.theme-switch *::before,
.theme-switch *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: auto;
  padding: 0;
  font-size: var(--toggle-size);
}

.theme-switch__container {
  width: var(--container-width);
  height: var(--container-height);
  background-color: var(--container-light-bg);
  border-radius: var(--container-radius);
  overflow: hidden;
  cursor: pointer;
  -webkit-box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
  box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.theme-switch__container::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  -webkit-box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
  border-radius: var(--container-radius)
}

.theme-switch__checkbox {
  display: none;
}

.theme-switch__circle-container {
  width: var(--circle-container-diameter);
  height: var(--circle-container-diameter);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: var(--circle-container-offset);
  top: var(--circle-container-offset);
  border-radius: var(--container-radius);
  -webkit-box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: var(--circle-transition);
  -o-transition: var(--circle-transition);
  transition: var(--circle-transition);
  pointer-events: none;
}

.theme-switch__sun-moon-container {
  pointer-events: auto;
  position: relative;
  z-index: 2;
  width: var(--sun-moon-diameter);
  height: var(--sun-moon-diameter);
  margin: auto;
  border-radius: var(--container-radius);
  background-color: var(--sun-bg);
  -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
  box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
  -webkit-filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
  overflow: hidden;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.theme-switch__moon {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  background-color: var(--moon-bg);
  border-radius: inherit;
  -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
  box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.theme-switch__spot {
  position: absolute;
  top: 0.75em;
  left: 0.312em;
  width: 0.75em;
  height: 0.75em;
  border-radius: var(--container-radius);
  background-color: var(--spot-color);
  -webkit-box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
}

.theme-switch__spot:nth-of-type(2) {
  width: 0.375em;
  height: 0.375em;
  top: 0.937em;
  left: 1.375em;
}

.theme-switch__spot:nth-last-of-type(3) {
  width: 0.25em;
  height: 0.25em;
  top: 0.312em;
  left: 0.812em;
}

.theme-switch__clouds {
  width: 1.25em;
  height: 1.25em;
  background-color: var(--clouds-color);
  border-radius: var(--container-radius);
  position: absolute;
  bottom: -0.625em;
  left: 0.312em;
  -webkit-box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
  box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
  -webkit-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  -o-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
}

.theme-switch__stars-container {
  position: absolute;
  color: var(--stars-color);
  top: -100%;
  left: 0.312em;
  width: 2.75em;
  height: auto;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

/* actions */

.theme-switch__checkbox:checked+.theme-switch__container {
  background-color: var(--container-night-bg);
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__circle-container {
  left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter));
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__circle-container:hover {
  left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter) - 0.187em)
}

.theme-switch__circle-container:hover {
  left: calc(var(--circle-container-offset) + 0.187em);
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__moon {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__clouds {
  bottom: -4.062em;
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__stars-container {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}




@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
  }
}

.container::after,
.row::after {
  content: "";
  clear: both;
  display: table;
}

a:link {
  color: #e0e0e0;
}

a:visited {
  color: #e0e0e0;
}

::-webkit-scrollbar {
  width: 0.5vw;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 12px;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 12px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

nav {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#info {
  display: none;

  position: fixed;
  text-align: center;
  background-color: rgba(255, 0, 0, 0.3);
  width: 60%;
  bottom: 0;
  left: 20%;
  border-radius: 20px 20px 0 0;
}

#info a:link {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e0e0e0;
  text-decoration: none;
  transition: .4s;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 8%;
  box-shadow: 1px 1px 30px black;
  background-color: #111c11;
  border-radius: 0px 0px 12px 12px;
  z-index: 999;
  position: fixed;
  left: 0.75%;
  top: 0;
  width: 82.5%;
  transition: 0.4s;
}

.logo {
  cursor: pointer;
}

#logo {
  width: 4vw;
  height: auto;
  transition: 0.4s;
}

.nav__links a,
.cta,
.overlay__content a {
  font-weight: 700;
  text-decoration: none;
}

#cta {
  color: #111c11;
}

#cta:hover {
  color: #e0e0e0;
}

.nav__links {
  list-style: none;
  display: flex;
  font-size: 1.8rem;
}

.nav__links {
  margin-left: 9.5vw;
}

.nav__links li {
  padding: 0vw 2vw;
}

.nav__links li a {
  position: relative;
  text-align: center;
  margin-left: 1vw;
}

#menupoint,
#menupoint2,
#menupoint3 {
  font-size: 1.8rem;
  transition: .4s;
}

.nav__links li a:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 0.15vw;
  bottom: 0;
  left: 0;
  background-color: #e0e0e0;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.nav__links li a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.cta {
  padding: 0.5vw 1vw;
  background-color: #e0e0e0;
  color: black;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
  box-shadow: 5px 5px 50px black;
  font-weight: 700;
  font-size: 1.5vw;
  transition: 0.4s;
}

.cta:hover {
  background-color: #111c11;
  color: #e0e0e0;
  box-shadow: 5px 5px 50px black;
}

/* Mobile Nav */

.menu {
  display: none;
  font-size: 1vw;
  padding: 0.5vw 1vw;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  overflow-x: hidden;
  transition: width 0.5s ease 0s;
  background-color: #111c11;
}

.darkmode .overlay {
  background-color: #e0e0e0;
}


#handymenu a {
  background-color: #e0e0e0;
}

.overlay--active {
  width: 100%;
}

.overlay__content {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overlay a {
  position: relative;
  padding: 15px;
  font-size: 5rem;
  font-weight: 500;
}

.overlay a:after {

  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #e0e0e0;
  transform-origin: bottom right;
  transition: transform 0.25 ease-out;
}

.overlay a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.overlay .close {
  position: absolute;
  top: 10vw;
  right: 45px;
  font-size: 60px;
  color: #edf0f1;
}

.overlay .close:hover {
  color: red;
}

#discordm {
  background-color: #e0e0e0;
  padding: 1vw 2vw;
  color: black;
  border: none;
  border-radius: 12px;
  font-size: 5vw;
  font-weight: 700;
  top: 4vw;
  text-decoration: none;
  box-shadow: 5px 5px 50px black;
  transition: background-color 0.3s ease 0s;
  margin-bottom: 8vw;
}

#menul {
  background-color: transparent;
}

#idm {
  opacity: 0.4;
  background-color: transparent;
}

/* HANDY ANSICHT */

@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }

  .overlay .close {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

@media only screen and (max-width: 800px) {

  .nav__links,
  .cta {
    display: none;
  }

  footer {
    display: none;
  }

  .menu {
    display: initial;
  }

  .discordembeed {
    display: none;
  }

  #downdiv {
    display: none;
  }

  .HandyInfo {
    text-align: center;
    margin-top: 5vw;
    font-size: 1vw;
  }

  .socialbtncontainer.discord {
    display: none;
  }
}

@media only screen and (min-width: 801px) {

  .HandyInfo {
    display: none;
  }
}

* {

  margin: 0;
  padding: 0;
}

#footer {
  margin-left: 0.85%;
  width: 98%;
  padding: 0.1vw;
  margin-top: 10%;
  border: none;
  border-radius: 12px 12px 0px 0px;
  background-color: transparent;
}

#footer a {
  text-decoration: none;
  position: relative;
  font-size: 1vw;
  background-color: transparent;
}

#footer p {
  text-align: center;
  text-decoration: none;
  position: relative;
}

#footer a:hover {
  text-decoration: underline;
}

#impressum {
  float: right;
  color: #e0e0e0;
  right: 1.5vw;
  padding-bottom: 1vw;
}

#impressum a {
  padding-left: 2vw;
}

#copyright {

  float: left;
  padding-bottom: 0.5vw;
  font-size: 1vw;
  left: 3vw;
}

hr {

  width: 98%;
  margin-left: 1%;
  border: 1px solid #777;
  background-color: #777;
}

#hr {
  width: 92%;
  margin-left: 2vw;
  border: 1px solid #777;
  background-color: #777;
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0
  }

  to {
    bottom: 0;
    opacity: 1
  }
}

@keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0
  }

  to {
    bottom: 0;
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

#downdiv {
  position: fixed;
  bottom: 1vw;
  right: 1vw;
  cursor: pointer;
  z-index: 999;
}

#downp {
  margin-bottom: 0.5vw;
}

#up {
  font-size: 1.5rem;
  background-color: #e0e0e0;
  color: #111c11;
  border-radius: .5rem .5rem 0rem 0rem;
  text-decoration: none;
  padding: .23rem;
  transition: .4s;
}

#down {
  font-size: 1.5rem;
  background-color: #e0e0e0;
  color: #111c11;
  border-radius: 0rem 0rem .5rem .5rem;
  text-decoration: none;
  padding: .23rem;
  transition: .4s;
}

#oben {
  opacity: 0;
}

.obenrechtsContainer {
  position: absolute;
  width: 20%;
  right: 0;
  top: 8vw;
  text-align: center;
}

.UhrzeitDatum #uhr {
  font-size: 3rem;
}

.UhrzeitDatum #datum {
  font-size: 1rem;
  white-space: pre;
  display: block;
}

.theme {
  margin: 1vw;
  height: auto;
  text-align: center;
}

.theme a {
  font-size: 1.2rem;
}

/*Extra*/

.g1 {
  width: 70%;
  margin-left: 15%;
  margin-top: 3vw;
}

.g11 {
  display: flex;
  align-items: center;
}

.g1.left {
  margin-left: 0;
}

.g1.right {
  margin-left: 0;
  padding: 40px;
  width: 50%;
  text-align: center;
}

.g1.right h2 {
  margin-top: 3.5vw;
}

.g1.right h1 {
  font-weight: bold;
  margin-bottom: 1vw;
}

.g1.right a {
  text-align: center;
  font-weight: normal;
}

.g1.bottom {
  display: flex;
  margin-bottom: 3vw;
  justify-content: center;
  margin-top: 0;
}

@media only screen and (max-width: 800px) {
  .g1.left {
    margin-left: 0;
    display: none;
  }

  .g1.right {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

.column.link.l.uuns,
.column.link.r.uuns {
  margin-top: 3vw;
}

.column.column.link {
  margin-top: 1.5vw;
}

.column.link.l {
  float: left;
  width: 30%;
  margin-left: 17%;
  text-align: right;
}

.column.link.r {
  float: left;
  width: 30%;
  text-align: left;
  margin-left: 5%;
}

.column.link.r a {
  text-align: center;
  font-size: 1vw;
  padding: 0.5vw 1.25vw;
  background-color: #e0e0e0;
  color: black;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
  text-decoration: none;
  box-shadow: 5px 5px 50px black;
  font-weight: 700;
  transition: .4s;
}

.column.link.r a:hover {
  background-color: #111c11;
  color: #e0e0e0;
  transition: .4s;
}

.column.link.l p {
  font-weight: bolder;
  font-size: 1.25vw;
}

.hymnediv {
  margin-top: 3vw;
}

.hymnediv p {
  text-align: center;
  font-weight: bolder;
  font-size: 1.25vw;
}

.hymnediv a {
  text-align: center;
  font-size: 1vw;
  margin-left: 20vw;
  padding: 0.75vw 1.5vw;
  background-color: #e0e0e0;
  color: black;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
  text-decoration: none;
  box-shadow: 5px 5px 50px black;
  font-weight: 700;
}

.discordembeed {
  margin: auto;
  width: 60%;
  margin-top: 5%;
}

.discordembeed p {
  margin-bottom: 2vw;
  font-weight: 700;
  font-size: 1.5vw;
}

.discordembeed iframe {
  width: 100%;
  height: 35vw;
}

#uus {
  text-align: center;
}

.FlagDefense {
  width: 80%;
  margin-left: 10%;
  margin: auto;
  margin-top: 5%;
  margin-bottom: 3%;
}

#flagu {
  margin-bottom: 2vw;
  font-weight: 700;
  font-size: 1.25vw;
  text-align: center;
}

#flagu2 {
  margin-bottom: 2vw;
  font-weight: 700;
  font-size: 2vw;
  text-align: center;
  color: rgb(233, 233, 149);
}

#flageg {
  font-weight: 700;
  font-size: 2vw;
  text-align: center;
  color: rgb(82, 143, 163);
}

#flagsteam {
  margin-top: 2vw;
  margin-bottom: 3vw;
  font-weight: 700;
  font-size: 1.25vw;
  text-align: center;
}

#flagsteam2 {
  font-weight: 700;
  font-size: 1.75vw;
  text-align: center;
  color: #948dcf;
  text-decoration: none;
}



/* Slideshow container */
.slideshow-container {
  max-width: 80%;
  position: relative;
  margin: auto;
  width: 25%;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #e0e0e0;
  background-color: #111c11;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  margin-right: -3vw;
  border-radius: 3px 0 0 3px;
}

/* Position the "next button" to the right */
.prev {
  left: 0;
  margin-left: -3vw;
  border-radius: 6px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: transparent;
}

/* Caption text */
.text {
  color: #f2f2f2;
  background-color: rgba(44, 43, 43, 0.8);
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 4px;
  left: -12px;
  width: 100%;
  text-align: center;
  border-radius: 12px 12px 0px 0px;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  opacity: 0.5;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  border-radius: 0px 0px 12px;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: rgba(44, 43, 43, 0.8);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #e0e0e0;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}


body.darkmode {
  background-color: #e0e0e0;
  color: #111c11;
  transition: .4s;
  border-color: #111c11;
}

header.darkmode {
  background-color: #e0e0e0;
  color: #111c11;
  transition: .4s;
}

.darkmode #menupoint,
.darkmode #menupoint2,
.darkmode #menupoint3 {
  color: #111c11;
  transition: .4s;
}

.darkmode #menupoint:after,
.darkmode #menupoint2:after,
.darkmode #menupoint3:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 0.15vw;
  bottom: 0;
  left: 0;
  background-color: #111c11;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.darkmode #menupoint:hover:after,
.darkmode #menupoint2:hover:after,
.darkmode #menupoint3:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.darkmode #cta {
  color: #e0e0e0;
  background-color: #111c11;
  transition: .4s;
}

.darkmode #cta:hover {
  color: #111c11;
  background-color: #e0e0e0;
}

.darkmode #down,
.darkmode #up {
  background-color: #111c11;
  color: #e0e0e0;
  transition: .4s;
}

.darkmode #ModalBtn {
  background-color: #111c11;
  color: #e0e0e0;
  transition: .4s;
}

.darkmode #modal-content {
  background-color: #e0e0e0;
  color: #111c11;
}

.darkmode a:link {
  color: #111c11;
}

.darkmode a:visited {
  color: #111c11;
}

.darkmode .column.link.r a {
  background-color: #111c11;
  color: #e0e0e0;
  transition: .4s;
}

.darkmode .column.link.r a:hover {
  background-color: #e0e0e0;
  color: #111c11;
  transition: .4s;
}

.darkmode #btn {
  background-color: #111c11;
  color: #e0e0e0;
  transition: .4s;
}

.darkmode #btn:hover {
  background-color: #e0e0e0;
  color: #111c11;
  transition: .4s;
}

.darkmode #btn2 {
  background-color: #111c11;
  color: #e0e0e0;
  transition: .4s;
}

.darkmode #btn2:hover {
  background-color: #e0e0e0;
  color: #111c11;
  transition: .4s;
}

.darkmode .ceodiv {
  border-color: #111c11;
  transition: .4s;
}

.darkmode .moddiv {
  border-color: #111c11;
  transition: .4s;
}

/*REGELN*/

#stand {
  font-size: 1rem;
  margin-top: 1vw;
  text-align: center;
}

.regeln {
  width: 80%;
  margin: auto;
}

#paragraph {
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.5vw;
  margin-top: 2.5vw;
}

#regel {
  margin-left: 2vw;
  font-size: 1.5rem;
}

#punkt {
  font-weight: 700;
  font-size: 1.5rem;
}

/*MITGLIEDER*/

#btn {
  font-size: 0.9vw;
  font-weight: 700;
  padding: 0.75vw 1vw;
  background-color: #e0e0e0;
  color: black;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
  text-decoration: none;
  box-shadow: 5px 5px 50px black;
}

#btn:hover {
  background-color: #111c11;
  color: #e0e0e0;
}

#tipp {
  text-align: center;
  font-size: 1rem
}

#ceo2 {
  font-size: 3vw;
  margin-bottom: 4vw;
  text-align: center;
  font-weight: 700;
}

#ceo3 {
  font-size: 3vw;
  margin-bottom: 4vw;
  margin-top: 4vw;
  text-align: center;
  font-weight: 700;
}

#fehlt {
  text-align: center;
  font-size: 1vw;
  color: #e0e0e0;
  margin-bottom: 5vw;
}

#name {
  font-size: 4vw;
}

#name2 {
  font-size: 2.5vw;
}

#name3 {
  font-size: 1.6vw;
}

#name32 {
  font-size: 1.6vw;
  color: #111c11;
  cursor: default;
}

#name32::selection {
  color: #111c11;
  background-color: #223d21;
}

#unsichtbar {
  color: #111c11;
  cursor: default;
}

#unsichtbar::selection {
  color: #111c11;
  background-color: #223d21;
}

#unsichtbarbild::selection {
  color: #111c11;
  background-color: #4c804600;
}

.ceodiv {

  border: 0.4vw dotted;
  border-radius: 12px;
  width: 100%;
  height: auto;
  padding: 1vw;
  text-align: center;
  margin: auto;
  font-size: 1vw;
}

#ceodiv img {

  margin-top: 1.5vw;
}

#btn2 {
  font-size: 0.9vw;
  font-weight: 700;
  padding: 0.75vw 1vw;
  background-color: #e0e0e0;
  color: black;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
  text-decoration: none;
  box-shadow: 5px 5px 50px black;
  margin-left: 5vw;
}

#btn2:hover {
  background-color: #111c11;
  color: #e0e0e0;
}

#steambtn3 {

  margin-top: 5vw;
  margin-bottom: 1.5vw;
  margin-left: 11vw;
  width: fit-content;
  background-color: transparent;
}

#steambtn3:hover {
  background-color: #111c11;
  color: #e0e0e0;
  background-color: transparent;
}

ul {
  list-style: none;
}

.socialbtncontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2vw;
}

.socialbtncontainer.discord {
  margin-top: 0;
}

.socialbtncontainer.main {
  display: block;
  margin-top: 0;
}

.socialbtncontainer .icon-content {
  margin: 0 10px;
  position: relative;
}

.socialbtncontainer .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5vw;
  height: 3.5vw;
  border-radius: 50%;
  color: #111c11;
  background-color: #e0e0e0;
  transition: all 0.3s ease-in-out;
}

.socialbtncontainer.darkmode .icon-content a {
  color: #e0e0e0;
  background-color: #111c11;
}

.socialbtncontainer.main .icon-content a {
  width: 6vw;
  height: 6vw;
}

.socialbtncontainer .icon-content.discordhandy a svg,
.socialbtncontainer.main .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 3.5vw;
  height: auto;
}

.socialbtncontainer .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.socialbtncontainer .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 2vw;
  height: 2vw;
}

.socialbtncontainer .icon-content a:hover {
  color: #e0e0e0;
}

.socialbtncontainer .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}

.socialbtncontainer .icon-content a:hover .filled {
  height: 100%;
}

.socialbtncontainer .icon-content a[data-social="discord"] .filled {
  background-color: #7289da;
}

.socialbtncontainer .icon-content a[data-social="steam"] .filled {
  background-color: #171d25;
}

.socialbtncontainer .icon-content a[data-social="instagram"] .filled {
  background: linear-gradient(45deg,
      #405de6,
      #5b51db,
      #b33ab4,
      #c135b4,
      #e1306c,
      #fd1f1f);
}

.socialbtncontainer .icon-content a[data-social="youtube"] .filled {
  background-color: #ff0000;
}

.socialbtncontainer .icon-content a[data-social="twitch"] .filled {
  background-color: #6441A4;
}

#tdceo {

  /*background-color: black;*/
  width: 50vw;
  padding-bottom: 7vw;
}

#mitgliedname {

  font-weight: 700;
  font-size: 1.5vw;
  margin-top: 2vw;
  margin-bottom: 1vw;
}

#beschreibung {

  font-size: 0.8vw;
}

.moddiv {

  border: 0.4vw dashed;
  border-radius: 12px;
  width: 100%;
  height: 30vw;
  padding: 1vw;
  text-align: center;
  margin: auto;
  font-size: 1vw;
}

#moddiv img {

  margin-top: 1.5vw;
}

#tdmod {

  width: 35vw;
  padding-bottom: 7vw;
}

#mitgliedname {

  font-weight: 700;
  font-size: 1.5vw;
  margin-top: 2vw;
  margin-bottom: 1vw;
}

#beschreibung {

  font-size: 0.8vw;
}

#tablelinks {

  width: 40%;
  margin-left: 3%;
  margin-top: -1vw;
}

#tablerechts {

  width: 40%;
  margin-right: 5%;
  margin-top: -40vw;
}

/*KONTAKT*/

.kontakt {
  text-align: center;
}

#usk {
  font-size: 3vw;
  margin-top: 8vw;
  text-align: center;
  font-weight: 700;
}

#name {
  font-size: 1vw;
}

/*IMPRESSUM*/

.impressum {
  text-align: center;
  width: 80%;
  margin-left: 10%;
}

#angaben {
  font-size: 1vw;
}

#underline {
  text-decoration: underline;
  font-size: 1.5vw;
}

#name {
  line-height: 150%;
}

#mitgliederbereich {
  text-align: center;
  margin-top: 20px;
}


/*DISCORD*/

#info2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: #e0e0e0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 60%;
  margin-left: 17%;
  border-radius: 12vw;
  padding: 3vw;
  margin-top: 8vw;
}

#info2 a:link {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: #e0e0e0;
  background-color: rgba(0, 0, 0, 0);
  padding: 3vw;
  text-decoration: none;
}

.loader {
  display: flex;
  gap: 0.6em;
  list-style: none;
  width: fit-content;
  margin: auto;
  margin-top: 2vw;
}

.dots {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #e0e0e0;
}

.dots.darkmode {
  background: #111c11;
}

#dot-1 {
  animation: loader-1 0.6s infinite ease-in-out;
}

@keyframes loader-1 {
  50% {
    opacity: 0;
    transform: translateY(-0.3em);
  }
}

#dot-2 {
  animation: loader-2 0.6s 0.3s infinite ease-in-out;
}

@keyframes loader-2 {
  50% {
    opacity: 0;
    transform: translateY(-0.3em);
  }
}

#dot-3 {
  animation: loader-3 0.6s 0.6s infinite ease-in-out;
}

@keyframes loader-3 {
  50% {
    opacity: 0;
    transform: translateY(-0.3em);
  }
}

/*DATENSCHUTZ*/

.impressum h2,
.impressum h3,
.impressum h4 {
  margin-bottom: 20px;
}

.impressum h1 {
  margin-bottom: 55px;
}

.impressum h3 {
  margin-top: 35px;
}

.impressum p {
  margin-bottom: 20px;
}

.impressum #endepunkt {
  margin-bottom: 55px;
}

.impressum ul {
  text-align: left;
  list-style-type: disc;

}


/*MITGLIEDERBEREICH*/

.Auswahl {
  text-align: center;
}

.Auswahl #btn {
  font-size: 2vw;
}

.Auswahl p:nth-of-type(2) {
  margin-top: 3vw;
}

.Video {
  width: fit-content;
}

.Video p {
  text-align: center;
  margin-bottom: 1vw;
  font-weight: bold;
}

.Auswahl {
  margin-top: -5vw;
}

.Auswahl a:link {
  text-decoration: none;
}

.Auswahl a:hover {
  color: lightgray;
}

#memetable {
  width: 50vw;
  margin: auto;
  margin-top: 5vw;
}

table {
  margin: auto;
  margin-top: 5vw;
}

#links {
  width: 50%;
  margin: auto;
  padding: 2vw;
}

#rechts {
  width: 50%;
  margin: auto;
  padding: 2vw;
}

#links iframe,
#rechts iframe {

  border-radius: 12px;
}

#links video,
#rechts video {

  border-radius: 12px;
}

.Datei {
  width: 80%;
  margin: auto;
  margin-top: 3vw;
  text-align: center;
}

.downloadhidden {
  display: none;
}

.Suche input {
  margin-bottom: 3vw;
  border-style: none;
  border-radius: 12vw;
  text-align: center;
  font-size: 16px;
}

body.darkmode .Suche input {
  background-color: #111c11;
  color: #e0e0e0;
}

.Dateiinfos {
  margin-bottom: 1vw;
}

.downloadbutton {
  padding: 0.8rem 4rem;
  border: none;
  outline: none;
  font-size: 1.3rem;
  border-radius: 0.3rem;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.953);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}

body.darkmode .downloadbutton {
  background-color: #111c11;
}

.downloadbutton .dloadtext {
  position: absolute;
  left: 1.8rem;
  top: 1.3rem;
  transition: 0.4s ease-in-out;
  color: rgb(50, 50, 50);
}

body.darkmode .dloadtext {
  color: #e0e0e0;
}

.downloadbutton .dloadtext a {
  color: rgb(50, 50, 50);
  text-decoration: none;
}

.svg {
  transform: translateY(-20px) rotate(30deg);
  opacity: 0;
  width: 2rem;
  transition: 0.4s ease-in-out;
}

.downloadbutton:hover {
  background-color: rgb(50, 50, 50);
}

body.darkmode .downloadbutton:hover {
  background-color: #e0e0e0;
}

.downloadbutton:hover .svg {
  display: inline-block;
  transform: translateY(0px) rotate(0deg);
  opacity: 1;
}

body.darkmode .downloadbutton:hover .svg {
  background-color: #111c11;
  border-radius: 18px;
  padding: 1vw;
}

.downloadbutton:hover .text {
  opacity: 0;
}

.downloadbutton:active {
  scale: 0.97;
}

/*INFOMODAL*/

.modal {
  display: none;
  position: fixed;
  z-index: 1000000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);

  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}

.modal-content {
  margin: auto;
  margin-top: 4vw;
  text-align: center;
  background-color: #111c11;
  width: 40%;
  border-radius: 12px;

  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
}

.close {
  color: #e0e0e0;
  float: right;
  font-size: 2vw;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
}

.modal-header h2 {
  margin-bottom: 2vw;
  margin-top: 1vw;
}

.modal-body {
  padding: 2px 16px;
}

.modal-body img {
  width: 30%;
  margin-bottom: 2vw;
}

.modal-footer {
  padding: 2px 16px;
  margin-top: 2vw;
  padding-bottom: 1vw;
}

.modal-footer a {
  font-size: 1rem;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@-webkit-keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0
  }

  to {
    bottom: 0;
    opacity: 1
  }
}

@keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0
  }

  to {
    bottom: 0;
    opacity: 1
  }
}

#ModalBtn {
  position: fixed;
  z-index: 99;
  font-size: 2vw;
  padding: 0.3vw 0.7vw;
  left: 0;
  bottom: 0;
  background-color: #e0e0e0;
  color: #111c11;
  border: none;
  border-radius: 0px 12px 0px 0px;
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
  text-decoration: none;
  box-shadow: 5px 5px 50px black;
  -webkit-transition: .4s;
  transition: .4s;
}

#ModalBtn:hover {
  background-color: #111c11;
  color: #e0e0e0;
}



/*PERSÖNLICHE MITGLIEDERSEITE*/

#mitgliedus {
  font-weight: bold;
}

.mitgliedtext {
  font-size: 1.5vw;
}

#mitgliedsteambtn {
  text-align: center;
  margin-top: 1.5vw;
  margin-bottom: 1.5vw;
}



/*MEMEBILDER*/

/* Styles für die Galerie */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px auto;
  max-width: 800px;
  overflow: hidden;
  position: relative;
}

.gallery img {
  height: 150px;
  margin: 5px;
  transition: transform .2s;
  width: 150px;
  border-radius: 18px;
}

.gallery img:hover {
  cursor: pointer;
  transform: scale(1.2);
}

/* Styles für die Lightbox */
.lightbox {
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 999;
}

.lightbox img {
  max-height: 90%;
  max-width: 90%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: transform 0.3s ease-out;
  border-radius: 18px;
}

.lightbox .close {
  color: #e0e0e0;
  cursor: pointer;
  font-size: 30px;
  line-height: 50px;
  position: absolute;
  right: 20px;
  text-align: center;
  top: 20px;
  width: 50px;
  z-index: 9999;
}

.lightbox .prev,
.lightbox .next {
  color: #e0e0e0;
  cursor: pointer;
  font-size: 30px;
  line-height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  z-index: 9999;
  border-radius: 18px;
}

.lightbox .prev {
  left: 4vw;
}

.lightbox .next {
  right: 4vw;
}

.lightbox-image.swipe-next {
  animation-name: swipe-next;
  animation-duration: 0.3s;
}

@keyframes swipe-next {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/** ÜBER UNS**/

.ueberuns {
  width: 80%;
  margin: auto;
  margin-top: 1vw;
}

#aiinfo {
  font-size: 8px;
}

#bold {
  font-weight: bold;
}