/* Copyright: Januasch Dialogmarketing */

html,
body {
    padding: 0;
    margin: 0;
    color: #fff;
}

html {
    background: var(--prim-bg-color);
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
}

body.light-bg .logo img.logo-dark {
    display: none;
}

body.dark-bg .logo img.logo-light {
    display: none;
}

body {
    scrollbar-color: #999 #333;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 15px;
    height: 10px;
}

body::-webkit-scrollbar-thumb {
    background: var(--prim-color-darker);
    border-radius: 5px;
}

body::-webkit-scrollbar-track {
    background: var(--prim-color-darker);
}

.logo img {
    width: 225px;
    height: auto;
}



.logo-desktop {
    position: fixed;
    top: 100px;
    left: 50px;
}

.logo-mobil {
    display: none;
    justify-content: center;
    margin: 20px;
}

.logo-mobil img {
    width: 200px;
}

@media (max-width: 1350px) {
    .logo-desktop {
        display: none;
    }

    .logo-mobil {
        display: flex;
    }
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    max-width: 600px;
    width: 100%;
    margin: 20px auto 0;
    opacity: 0;
}

.bright-content {
    max-width: 750px;
}

@media (max-width: 900px) {
    main {
        padding: 0 30px;
        box-sizing: border-box;
    }
}

.status_bar {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 60px;
    padding: 20px 0;
}

.status_bar .dot svg {
    width: 30px;
}


.status_bar .dot svg.empty g {
    stroke: #fff;
}

.status_bar .dot svg g {
    stroke: var(--sec-bg-color)
}

.status_bar .dot svg .colored {
    fill: var(--sec-bg-color)
}

.title {
    text-align: center;
    font-size: larger;
    text-shadow: rgb(0, 0, 0, 0.8) 2px 0px 8px;
    font-weight: bold;
    word-break: normal;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    word-break: break-word;
}

@media (max-width: 576px) {
    .title {
        font-size: 30px;
    }
}

.wrong__user {
    text-align: center;
    text-shadow: rgb(0, 0, 0, 0.8) 2px 0px 8px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}


main p {
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.863) 2px 0px 8px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-bottom: 20px;
    word-break: keep-all;
}

@media (max-width: 576px) {
    main p {
        font-size: 17px !important;
    }
}


.action_grp,
.action_grp>.v-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.action_grp a,
.action_grp>.v-wrapper a {
    width: 70%;
    margin: auto;
    margin-bottom: 15px;
    color: #fff;
    background: var(--prim-color);
    /* border: solid; */
    border-radius: 10px;
    border-width: 3px;
    /* border-color: var(--prim-bg-color); */
    padding: 15px;
    font-weight: bold;
    font-size: 20px;
    transition: color 0.5s, background-color 0.5s;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}



@media (max-width: 576px) {

    .action_grp a,
    .action_grp>.v-wrapper a {
        width: 90%;
    }
}

.action_grp a:hover,
.action_grp>.v-wrapper a:hover {
    color: var(--prim-bg-color);
    background-color: #fff;
}


.action_grp a:last-child,
.action_grp>.v-wrapper a:last-child {
    margin-bottom: 0;
}

/* 
.action_grp a:hover,
.action_grp>.v-wrapper a:hover {
    color: var(--prim-color);
    background: #fff;
} */

.action_grp.col-2,
.action_grp.col-2>.v-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
}

.action_grp.col-2 * {
    /* flex-basis: 49%; */
    box-sizing: content-box;
    margin-bottom: 10px !important;
}


.v-wrapper {
    width: 100%;
    display: inherit;
    flex-direction: inherit;
    align-items: inherit;
    justify-content: inherit;
}


@media (max-width: 900px) {
    .action_grp.col-2 {
        grid-template-columns: 100%;
        place-items: center;
    }
}


.action_grp input {
    cursor: default;
    width: 80%;
    margin-bottom: 10px;
    color: #fff;
    background: rgba(20, 26, 31, 0.6);
    border: solid;
    border-radius: 10px;
    border-width: 3px;
    border-color: #fff;
    padding: 15px;
    font-size: 20px;
    transition: color 0.5s, background-color 0.5s;
    text-align: left;
    text-decoration: none;
    outline: none;
    box-shadow: inset 0 0 50px rgba(58, 118, 137, 0.2);
}

@media (max-width: 900px) {
    .action_grp input {
        width: 100%;
    }
}

.action_grp button,
.action_grp input[type="submit"] {
    cursor: pointer;
    width: 50%;
    margin-bottom: 10px;
    color: #ffffff;
    background: var(--prim-color);
    /* border: solid; */
    border-radius: 10px;
    border-width: 3px;
    border-color: #ffffff00;
    padding: 15px;
    font-weight: bold;
    font-size: 20px;
    transition: color 0.5s, background-color 0.5s;
    text-align: center;
    text-decoration: none;
    outline: none;
    box-shadow: inset 0 0 50px rgba(58, 118, 137, 0.2);
    margin-top: 10px;
}



@media (max-width: 900px) {
    .action_grp button {
        width: 80%;
        box-sizing: content-box;
    }
}

.action_grp button:hover,
.action_grp input[type="submit"]:hover {
    color: var(--prim-color);
    background: #fff;

}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #131c20 inset !important;
    -webkit-text-fill-color: #fff !important;
}

/* input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #23232329;
} */

.action_grp input::placeholder {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    opacity: 1;
}


.policy {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 0;
    height: 100%;
    margin-top: auto;
    font-size: 12px;
    text-align: right;
    padding-right: 10px;
    font-size: 18px;
    padding: 20px 20px 10px 0;
}

.policy div {
    margin-bottom: 8px;
}

.policy a {
    color: #fff;
    text-decoration: none;
    transition: textDecoration 0.5s;
    font-size: 18px;
}

@media (max-width: 900px) {
    .policy {
        align-items: center;
        padding: 40px 20px 30px;
    }
}

.background-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-color: var(--prim-bg-color-transparent);
    transform: scale(1.5);
}



.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100lvh;
    z-index: -2;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.5);
    opacity: 0;
    animation: zoomOut 2s ease-in-out forwards;
}

.background-static {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100lvh;
    z-index: -2;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.2);
    opacity: 1;
    /* animation: zoomIn 2s ease-in-out forwards; */
}

@keyframes zoomOut {
    0% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1.1);
    }
}


@keyframes zoomIn {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.5);
    }
}


.blur {
    filter: blur(3px);
}


.background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    /* filter: blur(10px); */
}

.loader {
    content: '';
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.37);
    z-index: 10000;
    display: grid;
    place-items: center;
    /*color: #7ef34b;*/
    color: #ffffff;
    font-weight: 700;
    font-size: 5rem;
    text-shadow: rgba(255, 255, 255, 0.24) 1px 0 5px;
}

#loaderText {
    /* height: 50%; */
    width: 90%;
    font-size: 50px;
    text-align: center;
    font-family: 'Bitjannausch', sans-serif;
    font-weight: 500;
    /* margin-top: 400px; */
}

@media (max-width: 900px) {
    .loader {
        content: '';
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
        display: grid;
        place-items: center;
        /*color: #7ef34b;*/
        color: #ffffff;
        font-weight: 700;
        font-size: 5rem;
        text-shadow: rgba(255, 255, 255, 0.24) 1px 0 5px;

    }

    #loaderText {
        /* height: 50%; */
        width: 90%;
        font-size: 40px;
        text-align: center;
        font-family: 'Bitjannausch', sans-serif;
        font-weight: 500;
        margin-top: 100px;
    }
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

form .v-wrapper {
    display: flex;
    justify-content: center;
}

.dark-theme .title,
.dark-theme p {
    color: #131c20;
    text-shadow: #131c20a9 1px 0px 4px;
}

.dark-theme .title .action_grp a {
    color: #131c20;
}

.dark-theme .action_grp a,
.action_grp>.v-wrapper a {
    width: 80%;
    margin-bottom: 10px;
    color: var(--prim-color);
    background: #fff;
    border: solid;
    border-radius: 10px;
    border-width: 3px;
    border-color: var(--prim-color);
    padding: 15px;
    font-weight: bold;
    font-size: 20px;
    transition: color 0.5s, background-color 0.5s;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.dark-theme .action_grp a:hover,
.action_grp>.v-wrapper a:hover {
    color: #fff;
    background: var(---prim-color);
    border-color: #fff;
}

.dark-theme,
.dark-theme a {
    color: #131c20;
}

.popup {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;

    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    margin-right: 20px;
}

.popup-inner {
    background-color: #333333cc;
    border-radius: 10px;
    border-width: 3px;
    border-color: var(--prim-bg-color);
    box-shadow: #fff;
    padding: 15px;
    font-weight: bold;
    font-size: 20px;
    transition: color 0.5s, background-color 0.5s;
    width: 400px;

}

.img-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: 25px;
}

.img-container img {
    max-width: 60%;
    max-height: 60%;
}


/* For Popup Window ! Info: they have no hover effect */

.action_grp_popup {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.action_grp_popup a {
    width: 80%;
    margin-bottom: 10px;
    color: #fff;
    background: var(--prim-color);
    /* border: solid; */
    border-radius: 10px;
    /* border-width: 3px; */
    /* border-color: var(--prim-color); */
    padding: 15px;
    font-weight: bold;
    font-size: 20px;
    transition: color 0.5s, background-color 0.5s;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.background-overlay-dark {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-color: var(--prim-bg-color-transparent-dark);
    transform: scale(1.5);
}

@media (max-width: 768px) {

    .resize_Background_left {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        height: 100lvh;
        z-index: -2;
        background-position: 80% 100%;
        background-repeat: no-repeat;
        background-size: cover;
        transform: scale(1.2);
        opacity: 0;
    }

    .resize_Background_right {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        height: 100lvh;
        z-index: -2;
        background-position: 20% 100%;
        background-repeat: no-repeat;
        background-size: cover;
        transform: scale(1.2);
        opacity: 0;
    }
}

.p-bold {
    font-weight: 700;
    font-size: 22px;
}

#changeAfterDelay {
    transition: background-color 0.5s ease-in;
    /* Die Dauer und Art der Transition */
}

.background-shadow {
    background-color: #00000093;
}

/* .img-container .row .column{
    display: flex;
    align-items: center;
    justify-content: center;

}

@media (min-width: 900px){
    .column{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .side{
        width: 25%;
    }

    .middle{
        width: 50%;
    }
}

.rw-3 .column{

}

.row{
    display: flex;
    flex-direction: column;
} */

.cols {
    display: grid;
}

.col-3 {
    grid-template-columns: 1fr 600px 1fr;
}

.action_grp .transparentButton {
    background-color: #00000000;
    border: solid;
    border-width: 3px;
    border-color: #fff;
    
}

.action_grp .transparentButton:hover {
    color:var(--prim-color);
    background-color: #00000000;
    border: solid;
    border-width: 3px;
    border-color: var(--prim-color);
}





.container-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-image .inner {
    height: 60vh;
}


.container-image img {
    display: block;
    height: 80%;
}

@media (max-width: 1350px) {
    .cols {
        display: grid;
    }

    .col-3 {

        grid-template-columns: auto;
        grid-template-rows: 10px 1fr;
    }

    .content-col {
        margin: 0px 17% 0px 17%;
    }

    .action_grp input {
        width: 400px;
    }

    .action_grp button {
        width: 300px;
    }


    .action_grp a {
        width: 300px;
    }

    

    .cols p {
        margin: 0 250px 0 250px;
    }


    .container-image img {
        margin-top: 20px;
        height: 70%;
    }

    .container-image .inner {
        height: 60vh;
    }
}


@media (max-width: 400px) {
    .action_grp a {
        width: 200px;
    }

}

.action_grp .inlineLink {
    background-color: #00000000;
    border: solid;
    border-width: 3px;
    border-color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
}

.action_grp .inlineLink:hover {
    color:var(--prim-color);
    background-color: #00000000;
    border: solid;
    border-width: 3px;
    border-color: var(--prim-color);
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (max-width: 1416px) {
    .cols p {
        margin: 0 100px 0 100px;
    }
}

.action_grp .inlineLink{
    width: 260px;
}

@media (max-width: 900px){
    .action_grp .inlineLink{
        width: 230px;
    }
}

@media (max-width: 576px) {
    .action_grp input {
        width: 90%;
    }

    .action_grp button {
        width: 90%;
    }

    .action_grp .inlineLink{
        width: 40%;
    }

    .cols p {
        margin: 0px 5% 0px 5%;
    }

    .container-image img {
        height: 100%;
    }

    .container-image .inner {
        height: 40vh;
    }

}



.row input,
.row button,
.row a {
    width: 300px;
    max-height: 100%;
}

.row a {
    background-color: #00000000;
    border-color: #00000000;
}

.w80 a {
    width: 80%;
}