/*-----------------------------------*\
  #PRE LOADER
\*-----------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .fog {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0); /* Ändern Sie die Farbe und Transparenz nach Bedarf */
    animation: fogAnimation 2s infinite alternate;
    z-index: 1; /* Stellen Sie sicher, dass die Nebel-Div vor dem Spinner-Div liegt */
  }
  
  .spinner {
    background: url("img/gun.gif"); /* Pfad zum GIF-Datei */
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: disappear 2s infinite alternate; /* Hinzugefügt: Verschwinden-Animation */
    z-index: 2; /* Stellen Sie sicher, dass der Spinner-Div vor dem Nebel-Div liegt */
  }
  /*-----------------------------------*\
  #PRELOADER ANIMATION
  \*-----------------------------------*/
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes fogAnimation {
    0% { opacity: 0.5; } /* Reduzieren Sie die Ausgangsopazität nach Bedarf */
    100% { opacity: 0.8; }
  }
  .fade-out {
    animation: fadeOut 1s forwards;
  }
  
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  .body-transition {
    background-color: black;
    opacity: 0; /* Setzen Sie die Ausgangsopazität auf 0 */
    transition: opacity 1s ease; /* Übergangseigenschaft für Transparenz */
}



/*-----------------------------------*\
  #LEANGUAGE DROPDOWN
\*-----------------------------------*/
.custom-dropdown {
    position: relative;
    display: inline-block;
}

.selected-option {
    padding: 10px;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 0 0 5px 5px;
    width: auto;
}

.option {
    padding: 10px;
    font-size: 12px;
    cursor: pointer;
    background-color: #000;
    display: flex;
}

.option:hover {
    background-color: #181818;
}










/*-----------------------------------*\
  #SCROLL BAR FIREFOX
\*-----------------------------------*/
* {
    scrollbar-width: thin;
    scrollbar-color: #6d02a7 #000000;
}
*::-moz-scrollbar-track {
    background-color: #000000;
}
*::-moz-scrollbar-thumb {
    background-color: #6d02a760;
}
*::-moz-scrollbar-thumb:hover {
    background-color: #6d02a7;
}

/*-----------------------------------*\
  #SCROLLBAR CHROME
\*-----------------------------------*/
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background-color: #000000;
}
::-webkit-scrollbar-thumb {
    background-color: #0f0f0f;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #6d02a7;
}

/*-----------------------------------*\
  #BASE DESIGN
\*-----------------------------------*/
html{
    background-color: #000;
}
.body{
    scrollbar-width: thin;
    scrollbar-color: #000 #6d02a7;
    font-family: sans-serif;
    background-image: url("../img/keller2.gif");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
    color: #6d02a7;
    margin: 0;
    padding: 0;
    transition: background-image 2s ease-in-out;
}
body::-webkit-scrollbar-thumb {
    background-color: #6d02a7;
}
.body2{
    scrollbar-width: thin;
    scrollbar-color: #000 #6d02a7;
    font-family: sans-serif;
    background-image: url("../img/schienen.gif");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
    color: #6d02a7;
    margin: 0;
    padding: 0;
}
.body3{
    scrollbar-width: thin;
    scrollbar-color: #000 #6d02a7;
    font-family: sans-serif;
    background-image: url("../img/gasse.gif");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
    color: #6d02a7;
    margin: 0;
    padding: 0;
}
.body4{
    scrollbar-width: thin;
    scrollbar-color: #000 #6d02a7;
    font-family: sans-serif;
    background-image: url("../img/telefonzelle.gif");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
    color: #6d02a7;
    margin: 0;
    padding: 0;
}
.body5{
    scrollbar-width: thin;
    scrollbar-color: #000 #6d02a7;
    font-family: sans-serif;
    background-image: url("../img/dachboden.gif");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
    color: #6d02a7;
    margin: 0;
    padding: 0;
}
.body6{
    scrollbar-width: thin;
    scrollbar-color: #000 #6d02a7;
    font-family: sans-serif;
    background-image: url("../img/mauer.gif");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
    color: #6d02a7;
    margin: 0;
    padding: 0;
}
.body7{
    scrollbar-width: thin;
    scrollbar-color: #000 #6d02a7;
    font-family: sans-serif;
    background-image: url("../img/lobby.jpg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
    color: #6d02a7;
    margin: 0;
    padding: 0;
}
/*-----------------------------------*\
  #HEADER DESIGN
\*-----------------------------------*/
.header-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: #000 0 0 40px;
    padding: 0 20%;
}
.logo{
    width: 335px;
}
.header{
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: auto 5%;
    font-size: 18px;
    font-weight: 900;
    -webkit-text-stroke: rgBa(0, 0, 0, 0.1) 1px;
    text-shadow: #000 0 0 10px;
    cursor: pointer;
}
.header-content:hover{
    color: #6d02a7;
}
div nav{
    text-shadow: rgBa(0, 0, 0, 0.4) 0px 0px 10px ;
    padding: 15px;
    text-align: right;
    justify-content: right;
    margin: auto 0;
}
.selector {
    margin: 10px 50px;
    display: flex;
    justify-content: space-between;
}
.logou {
    color: #fff;
    text-decoration: none;
}
/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/
.bar{
    margin: 0 auto 15px;
    padding: 5px;
    width: 60px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 0.2;
    transition: 1s;
    cursor: pointer;
}

.bar:hover,
.bar.active {
    width: 40px;
    opacity: 0.8;
}

.set1, .set2, .set3 {
    display: none;
}

.set1.active, .set2.active, .set3.active {
    display: block;
}


.hello-content{
    text-align: center;
    margin: 0% 5% 15vh;
}
.hello-1,
.hello-2,
.hello {
    font-size: 30px;
    text-align: right;
    font-weight: 900;
    text-shadow: rgBa(0, 0, 0, 1) 0px 0px 10px ;
    -webkit-text-stroke: #000 1px;
    color: #fff;
}
.hello2 {
    margin: 20% 0 0 0;
    font-size: 30px;
    text-align: left;
    font-weight: 900;
    text-shadow: rgBa(0, 0, 0, 1) 0px 0px 10px ;
    -webkit-text-stroke: #000 1px;
    color: #fff;
}
.hello3 {
    margin: 20% 0 0 0;
    font-size: 30px;
    text-align: right;
    font-weight: 900;
    text-shadow: rgBa(0, 0, 0, 1) 0px 0px 10px ;
    -webkit-text-stroke: #000 1px;
    color: #fff;
}
.underline{
    text-decoration: underline;
    text-decoration-color: rgBa(255, 255, 255, 0.4);
}
.hellotxt1,
.hellotxt2,
.hellotxt{
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    padding: 5% 20% 5% 0;
    color: white;
    -webkit-text-stroke: #000 1px;
    text-shadow: #000 0 0 10px;
}
.content-title,
.content-title2,
.content-title3,
.content-title4{
    font-weight: 900;
    color: white;
}
/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/
.button3,
.button2,
.button {
    position: relative;
    display: inline-block;
    color: black;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 5px 10px;
    overflow: hidden;
}
.button3:hover,
.button2:hover,
.button:hover{
    background-color: rgBa(255, 255, 255, 0.4);    
}
button i {
    color: #6d02a7;
}
.edit-button a{
    color: #ffffff46;
    transition: 2s;
}
.edit-button a:hover{
    color: #ffffff;
}






/* EDITS */


.edit-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    border: 1px solid #ccc;
    z-index: 1;
}

/* Stil für den Schließen-Button im Popup */
.edit-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}




















.contentbox{
    background-color: rgBa(0, 0, 0, 0.1);
    border-radius: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Hier wird die Spaltenbreite automatisch angepasst */
    gap: 20px; /* Füge eine Lücke zwischen den Grid-Elementen hinzu */
    justify-content: space-between;
    text-align: center;
    cursor: pointer;
}
.ss2{
    position: relative;
}
.header-content {
    text-align: center;
}
.header-content i{
    font-size: 20px;
}
.header-content-title{
    font-size: 10px;
    margin: -5px;
    
}
.content-container i{
    font-size: 80px;
}
.content-container {
    position: relative;
    background-color: rgba(0, 0, 0, 1);
    margin: 25px;
    padding: 10px;
    border: 3px solid rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    box-shadow: #000 0 0 20px;
    filter: grayscale(1);
    transition: 1s;
    overflow: hidden; /* Damit der ::before-Effekt innerhalb der .content-container bleibt */
}

.content-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(216, 6, 235, 0.219) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
    transition: width 0.3s ease-in-out;
    z-index: -1;
}

.content-container:hover::before {
    width: 100%;
}

.content-container:hover {
    filter: grayscale(0);
    transform: translateY(-20px);
    box-shadow: -10px -5px 5px rgba(255, 255, 255, 0.1),
                5px -5px 5px rgba(255, 255, 255, 0.1);
}

.content-txt,
.content-txt2,
.content-txt3,
.content-txt4
{
    color: white;
}

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/
footer{
    background: linear-gradient(to bottom, black 1%, #0f0f0f);
    padding: 0 20%;
    display: flex;
    justify-content: space-between;
}
.copy-area {
    margin: auto 0;
}
.copyright{
    color: #717171;
    text-align: center;
    padding: 50px;
    font-size: 16px;
}
.copyright a {
    font-weight: 900;
    color: #6d02a7;
    text-decoration: none;
}
.copyright a:hover {
    text-shadow: #6d02a7 0 0 20px;
}
.sized-content{
    margin: 0 20%;
}
.agb{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: auto 5%;
}
.agb a{
    color: #717171;
    text-decoration: none;
    padding: 5%;
    font-size: 12px;
    font-weight: 100;
    transition: 2s;
}
.agb a:hover{
    color: #fff;
}
.sponsored {
    padding: 5%;
    margin: auto 0;
    justify-content: center;
    text-align: center;
    opacity: 0.5;
    transition: 2s;
    filter: grayscale(100);
}
.sponsored p{
    color: #fff;
    font-weight: 900;
    font-size: 13px;
}
.sponsored img {
    width: 150px;
    margin: -30px auto;
    padding: 0;
}
.sponsored:hover{
    opacity: 1;
    filter: grayscale(0);
}

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/
.rules-content{
    text-align: left;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0px 20px 5px 20px;
    border-radius: 30px;
    font-size: 15px;
}
.rules-content h1{
    text-align: center;
    padding: 45px 0 0 0;
}
.rules-content dl {
    padding: 0 45px 0 45px;
    color: #fff;
}
.toppicrules{
    padding: 15px 0 0 0;
    font-size: 15px;
}
.rules-content li {
    font-size: 12px;
    margin: 0 0 0 0;
}
.back-button {
    text-align: center;
    margin: 10% 0 0 0;
}
.center {
    justify-content: center;
    display: flex;
}
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #ffffff00;
    z-index: 1000;
    max-height: 80vh;
    overflow-y: auto;
}
.rulemenu{
    color: #6d02a7;
    text-decoration: none;
}
.popupbuddon {
    display: grid;
    width: fit-content;
    margin: 0 auto 25px;
    color: black;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    background-color: rgBa(255, 255, 255, 1);
    border-radius: 25px;
    padding: 5px 10px;
    transition: 2s;
}


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/
.sup-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Hier wird die Spaltenbreite automatisch angepasst */
    gap: 20px;
    margin: 0 20%;
}
.col-1{
    background-color: rgBa(0, 0, 0, 0.9);
    padding: 25px;
    border-radius: 30px;
    box-shadow: #000 0 -20px 50px;
    color: #919191;
    transition: 1s;
}
.col-1:hover{
    color: #fff;
    filter: grayscale(0);
    box-shadow: -10px -5px 5px rgba(255, 255, 255, 0.1),
                5px -5px 5px rgba(255, 255, 255, 0.1);
}
.we-sup dl {
    font-weight: 100;
    margin: 0 0 15px 0;
    font-size: 12px;
}
.we-sup li {
    font-size: 15px;
    font-weight: 600;
}


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/
.imp-content {
    margin: 0;
}
.imp-contento2{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.imp-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.imp-1{
    background-color: rgBa(0, 0, 0, 0.9);
    border-radius: 30px;
    box-shadow: #000 0 -20px 50px;
    color: #919191;
    transition: 1s;
    padding: 1% 5%;
    margin: 0 20%;
}
.imp-1:hover{
    color: #fff;
    filter: grayscale(0);
    box-shadow: -10px -5px 5px rgba(255, 255, 255, 0.1),
                5px -5px 5px rgba(255, 255, 255, 0.1);
}
.imp-top{
    margin: 5% 0 0;
    font-weight: 900;
}
.imp-down{
    font-weight: 100;
    font-size: 14px;
    margin: 0 0 0;
}







.emailcontent{
    color: #fff;
    font-weight: 900;
    margin: 150px 0 0 0;
}
.password-content {
    color: #fff;
    font-weight: 900;
}
.pw-input{
    font-size: 20px;
    margin: 0 0 150px 0;
    border-radius: 20px;
    padding: 5px 10px;
    opacity: 0.4;
    box-shadow: black 0 0 20px 1px;
    transition: 2s;
}
.eml-input {
    font-size: 20px;
    border-radius: 20px;
    padding: 5px 10px;
    opacity: 0.4;
    box-shadow: black 0 0 20px 1px;
    transition: 2s;
}
.eml-input:focus {
    opacity: 0.8;
}
.pw-input:focus {
    opacity: 0.8;
}

.pw-input:focus,
.eml-input:focus {
    border-color: #6d02a7;
    outline: #6d02a7;
}
.login-bdn{
    color: #fff;
    text-decoration: none;
}
.login-bdn:hover{
    color: #6d02a7;
}



.navmenu{
    color: #6d02a7;
    text-decoration: none;
}


@media only screen and (max-width: 1120px) {
    .container{
        margin: 0;
    }
    .logo{
        width: 235px;
        margin: 0 0;
    }
    .hello, 
    .hello2, 
    .hello3 {
        font-size: 20px;
    }
    .hellotxt{
        font-size: 17px;
    }
    .hello-content{
        margin: 0 0% 15% 0;
    }
    .sized-content{
        margin: 0 10%;
    }
    .header-container {
        padding:  0 10%;
    }
    .sup-content {
        margin: 0 10%;
    }
    footer {
        padding: 0 10%;
    }
    .popup{
        width: 80%;
    }
}
@media only screen and (max-width: 710px) {
    .container{
        margin: 0;
    }
    .sized-content{
        margin: 0 5%;
    }
    .header-container {
        padding:  0 5%;
    }
    .hello-content{
        margin: 0 5% 23%;
    }
    .sup-content {
        margin: 0 5%;
    }
    footer {
        padding: 0 5%;
        display: block;
    }
    .popup{
        width: 100%;
    }
}