/* 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;
    /* Hintergrundfarbe mit Farbverlauf */
    /* background: linear-gradient(135deg, var(--prim-bg-color), #ffffff5b); */
    
    /* Optionaler Schatteneffekt */
    /* box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.63); */
    
    /* Optionaler Verlaufseffekt */
    /* background-blend-mode: multiply; */
}

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: 20px;
    left: 50px;
}

.logo-mobil {
    display: none;
    justify-content: center;
    margin: -70px  0 -40px;
}

.logo-mobil img {
    width: 200px;
}

@media (max-width: 1200px) {
    .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;
}

.main-max-width {
    max-width: 100%;
}

@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 (min-width: 1200px){
    .content-center {
        margin-top: 100px;
    }
}

@media (min-width: 2200px){
    .content-center {
        margin-top: 200px;
    }
}


@media (max-width: 576px){
    main p {
        font-size: 17px!important;
    }
}

.flex-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
}


@media (min-width: 800px) {
    .flex-container-min-800{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 70vh;
    }
}

.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-bottom: 15px;
    color: #fff;
    background: var(--prim-bg-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: 100%;
    
    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);
    box-sizing: border-box;
}

@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-bg-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;
}

@keyframes zoomOut {
    0% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1.1);
    }
}

.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-bg-color);
    background: #fff;
    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;
}

.dark-theme .action_grp a:hover,
.action_grp>.v-wrapper a:hover {
    color: #fff;
    background: var(--prim-bg-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-bg-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;
}

.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;
}

.background-shadow{
    background-color: #0000005d;
}

/* .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;
} */



.col-3 {
    grid-template-columns: 1fr 600px 1fr;
}

.cols{
    display: grid;
}

.action_grp .inlineLink {
    background-color: #00000000;
    border: solid;
    border-width: 3px;
    border-color: #fff;
    width: 260px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.action_grp .inlineLink:hover {
    background-color: #00000000;
}



.row input, .row button, .row a{
    width: 300px;
    max-height: 100%;
}

.row a{
    background-color: #00000000;
    border-color: #00000000;
}

/* Meeting Cards */


.card-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    

}

.card{
    width: 400px;
    background-color: #00000059;
    border-radius: 10px;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.card img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card-content{
    text-align: start;
    margin-bottom: 10px;
    padding: 10px;
}

.card-title{
    padding: 10px;
}

.card-content p{
    font-size: 15px;
    text-align: start;
}

.card-title p{
    font-size: 14px!important;
    text-align: start;
    padding-bottom: 0px;
    
}

.card-title h1{
    margin-block-start: 0.3em;
    margin-block-end: 0em;
}

.card-termin{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 0 4px 0;
}

.card-termin-icon{
    flex: 1;
}

.card-termin-icon .img{
    width: 100%;
    height: auto;
    object-fit: cover;
    

}
.card-termin-text{
    flex: 10;
    margin-left: 20px;
    font-size: 18px;
}

.card .action_grp a{
    width: 90%;
}

.termin-group{
    padding-bottom: 20px;
}

/* Pop Up */

.modal{
    background-color: #00000093;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: -10px;
    padding: 10px;
}

.modal.open{
    opacity: 1;
    z-index:999;
}

.modal-inner {
    border-radius: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.37);
    text-align: center;
    width: 70%;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    max-height: 85vh;
    overflow-y: auto;
    box-sizing: border-box;
}


.modal-card-1{
    flex: 0.5;
    background-color: rgba(0, 0, 0, 0.69);
}

.modal-card-2{
    flex: 0.3;
    background-color: #303030a1;
    padding: 25px;
}

.modal-card-3{
    flex: 2;
    background-color: #000000b0;
    

}

.modal-close{
    flex: 0.3;
    background-color: #000000;
}

.modal-inner h2 {
    margin: 0;
}

.modal-inner p{
    line-height: 24px;
    margin: 10px 0;
}

.info-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;
}

.info-container{
    justify-content: center;
    align-items: center;
    margin: 25px 25px;
}

.close-modal {
    position: fixed;
    top: 10px;
    right: 10px;
}



#modal-template {
    display: none;
}

.divider {
    border: none;
    border-top: 0.1px solid #ffffff59;
  }

  .row-4{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;

  }

  .row-item{
    flex: 1;
    width: 40px;
    height: auto;
  }

  .action_grp a:hover,
.action_grp>.v-wrapper a:hover {
    color: var(--prim-bg-color);
    background-color: #fff;
}

.action_grp .info{
    width: 70%;
    margin-bottom: 15px;
    color: #fff;
    background: #9e9e9e56;
    /* 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;
}


.milestone{
    border-top: solid 1px #fff;
    padding:  20px 10px;
}

/* .milestone:hover{
    
    
} */

.clock{
    font-size: 24px;
    font-weight: 600;
}

.description{
    font-size: 20px;
    font-weight: 400;
}
/* Formular flexbox */

.form-box{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content:space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

.container-image-desktop{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container-image-desktop .inner{
    height: 60vh;
}


.container-image-desktop img{
    display: block;
    height: 80%;
}

.container-image-mobile{
    display: none;
}
@media (max-width: 1200px){
    .form-box{
        flex-direction: column;
        gap: 0px;
    }

    .container-image-desktop{
        display: none;
    }
    
    .container-image-mobile{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .container-image-mobile .inner{
        height: 200px;
    }

    .container-image-mobile img{
        display: block;
        height: 100%;
    }
}



.checkbox-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.checkbox-label {
    margin: 0;
    font-size: 18px;
    text-align: left;
    padding-bottom: initial;
}

.checkbox-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.checkbox-switch input {
    opacity: 0 !important;
    width: 0;
    height: 0;
    min-width: 50px;
}

.checkbox-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cccccc00;
    border-radius: 10px;
    border-width: 3px;
    border-color: #fff;
    border: solid;
    transition: .4s;
}

.checkbox-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: -3px;
    bottom: -3px;
    transition: .4s;
    border-radius: 10px;
    border-width: 3px;
    background-color: var(--prim-color);
    border: solid;
}

.checkbox-switch input:checked + .checkbox-slider {
    background-color: var(--prim-color);
}

.checkbox-switch input:checked + .checkbox-slider:before {
    transform: translateX(26px);
    background-color: #fff;

}

@media (max-width: 1200px){
    

    main {
        max-width: 600px;
        width: 100%;
        margin: 20px auto 0;
        opacity: 0;
    }

    .cols{
        display: grid;
        gap: 30px;
    }
    .col-3 {
        grid-template-columns: auto;
        grid-template-rows: 200px 1fr ;
    }

    .content-col{
        margin: 0px 17% 0px 17%;
    }
    
    .action_grp input{
        width: 400px;
    }

    .action_grp input[type="submit"]{
        width: 300px;
    }

    .action_grp button{
        width: 300px;
    }

    .checkbox-container{
        width: 400px;
    }

    /* .cols p{
        margin: 0 100px 0 100px;
    } */
}

@media (max-width: 576px){  
    .action_grp input{
        width: 90%;
    }

    .action_grp button{
        width: 90%;
    }

    .action_grp input[type="submit"]{
        width: 90%;
    }

    .action_grp .inlineLink{
        width: 80%;
    }

    .checkbox-container{
        width: 90%;
    }

    .cols p{
        margin: 0px 5% 0px 5%;
    }
}
