@import url("/static/css/style-s.css");
@import url("/static/css/style-m.css");
@import url("/static/css/style-l.css");


@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/Roboto-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/Roboto-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}





* {
    --fade-time: 1s;
    --color-accent-desat: #82AFBC;
    --color-accent: rgb(168, 236, 255);
    --bg-dark: #003241;
    /* --bg-dark: #1a2427; */
    --bg-alt: #252424;
    --border-rad-m: 16px;
    
    font-family: 'Roboto';
    box-sizing: border-box;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.699);

}

::selection {
    color: black;
    background: var(--color-accent);
    border-radius: 4px;
}


/* width */
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--bg-alt);
    border-radius: 8px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color-accent-desat);
    border-radius: 8px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--bg-dark);
}

a{
    color: slategray;
}

/* a:visited{
    color: var(--color-accent-desat);
} */

#subject-input {
    display: none;
}

#captcha-reload{
    position: absolute;
    max-width: 25px;
    width: 25px;
    top:0;
    left: 0;
    background-color: #000000;
    border-bottom-right-radius: 10px;
}

#captcha_txt {
    max-width: 200px;
}

#captcha-img{
    border-radius: 8px;

}

#captcha-img-wrapper {
    position: relative;
    margin-bottom: 8px;
}

#captcha-group{
    display: flex;
    flex-direction: column;
    img{
        width: 200px;
    }
}

.account-bar-image{
    padding: 8px;
}

.btn-jump-to-product{
    width: 100%;
    background-color: rgb(112, 0, 0);
}

.info-head-txt{
    font-size: 4em;
    text-shadow: 0 0 16px rgba(0, 0, 0, 0.521);
    /* color: rgb(168, 236, 255); */
    text-align: left;
    justify-self: end;
    
}

.agb-notice{
    color: lightslategray;
    text-align: center;

    a{
        color: grey;
    }
    a:visited{
        color: var(--color-accent);
    }
}

.product-info-containter{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 5vw;
    color: white;

    .landing-section{
        padding: 0 5vw;
    }

    .section-btn{
        width: 100%;
        background-color: rgba(130, 175, 188, 0.2);
    }

    > .content-wrap{
        width: 100%;
    }
}


.subscription-card-action-btn{

}

.action-btn-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.content-wrap.info-wrap{
    margin: 24px 8px;
    width: 100% ;
}

.product-info-content-wrap{
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* gap: 8px; */
    
    >div{
        box-sizing: border-box;
        max-width: 50%;
        margin: unset;
    }
}

.wide{
    width: 100% !important;
    margin: 8px !important;
}


.product-info-content-left{
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding-right: 48px !important;
    border-left: 0px !important;
    background-color: var(--bg-dark) !important;
    
    * {
        letter-spacing: 0.18em;
    }

    .section-btn{
        width: 100%;
    }

    .info-head-txt{
        justify-self: left;
    }
}


.product-info-content-right{
    margin-left: -16px !important;
    width: calc(50% + 16px);


    video{
        border: unset;
    }

    img.div-video{
        max-height: 100%;
    }
}


body,
html {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    letter-spacing: 1.5;
    background-color: var(--bg-alt);
    scroll-behavior: smooth;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
}


.contact-form-container {
    
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    input {
        background-color: var(--bg-alt);
        color: white;
    }
    
}

.contact-form h2 {
    color: #333;
    text-align: center;
}


.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Stellt sicher, dass Padding und Border die Breite nicht verändern */
}

.form-group textarea {
    resize: vertical; /* Ermöglicht vertikales, aber kein horizontales Resize */
}

.contact-form button[type="submit"] {
    width: 100%;
    background-color: var(--color-accent-desat);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button[type="submit"]:hover {
    background-color: #ABC9D2;
}

#output {
    resize: vertical;
}

.main-content{
    flex: 1;
}


main {
    display: flex;
    flex-direction: column;
    /* Anpassung für bessere Mobilansicht */
    padding: 0px;
}

div {
    font-size: 0.95em;
    font-weight: 200;
}

.home-btn {
    margin: 4px 2px 0 2px;

    img {
        transform: scale(1);
        filter: drop-shadow(0px 0px 0px #000000);
        transition: all 0.3s;

    }

    img:hover {
        transform: scale(1.2);
        filter: drop-shadow(0px 0px 6px var(--color-accent));
        transition: all 0.3s;
    }
}

h1, h2 {
    letter-spacing: 4;

}



#section-404{
    text-align: center;

    h1 {
        font-size: xx-large;
    }

    p {

    }
}




label {
    h2 {
        margin-bottom: 16px;
    }
}

.program-header {
    height: 25vh;
    display: flex;
    align-items: center;
    background-image: url("/static/program-header.jpg");
    background-size: cover;
    width: 100% !important;
    max-width: 100vw;
    margin: 0 !important;
    padding: 0;
    color: #cfcfcf;

    h1 {
        font-size: 6em;
        font-family: arial;
        margin-left: 20%;
    }
}

.button {
    padding: 16px;
    background-color: #003241;
    border-radius: 6px;
    box-shadow: #0000000f 2px 2px 8px;
    color: white;
    text-decoration: none;
    margin-top: 16px;
    transition: background-color 0.3s;
    cursor: pointer;
    text-align: center;
}

.btn-disabled {
    background-color: grey !important;
    color: darkgray;
    cursor: default !important;
}

.btn-disabled:hover{
    background-color: grey !important;
    cursor: default !important;
    transition: unset;
}

.button:hover:not(.btn-disabled) {
    background-color: var(--color-accent);
    color: var(--bg-alt);
    transition: background-color 0.3s;
}

#upload_img{
    background-color: green;
}
#upload_img:not(.btn-disabled):hover{
    
    background-color: var(--color-accent);
}


.msg-success{
    color: green;
}

.msg-fail{
    color: red;
}

.nav-item {
    display: flex;
    align-items: center;
    align-self: end;
    justify-content: center;
    height: 48px;
    transition: background-color 0.3s;
    border-radius: 4px 4px 0 0;
    margin-bottom: -2px;
    min-width: 100px;
    
    p {
        padding: 0 20px;
        margin: 0;
    }
}

.nav-item:hover {
    background-color: var(--color-accent);
    color: var(--bg-dark) !important;
    transition: background-color 0.3s;
}

#profile-img{
    box-sizing: content-box;
    /* width: 128px;
    height: 128px; */

    max-width: 200px;
    max-height: 200px;
    padding: 8px 16px;
    border-radius: 100%;
    object-fit: cover;
}

#account-bar-img{
    border-radius: 64px;

}

#profile-pic-container{
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: solid 1px rgba(255, 255, 255, 0.171);

    .button{
        width: 100%;
    }
}


#upload-container {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    width: 100%;
}

#fileName {
    font-style: italic;
    text-align: center;
}


.word-break{
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}


.quick-add-btn{
    margin-left: 16px;
    display: inline-block;
    text-align: center;
    color: white;
    border-radius: 100%;
    background-color: black;/*var(--bg-dark);**/
    padding: 2px;
    text-decoration: none;
    width: 24px;
    height: 24px;
    border: solid 1px rgba(255, 255, 255, 0.25);
    transition: transform var(--fade-time) ease, background-color var(--fade-time) ease;
}
.quick-add-btn:hover{
    transform: scale(1.3);
    background-color: var(--color-accent);
    transition: transform var(--fade-time) ease, background-color var(--fade-time) ease;
}

.quick-add-btn:visited,
.quick-add-btn:hover,
.quick-add-btn:active {
color: white;
text-decoration: none;
}

/* Provide a custom focus style for accessibility */
.quick-add-btn:focus {
outline: 0px dashed #005fcc;
outline-offset: 0px;
}


#account-information-container{
    display: flex;
    flex-direction: column;
    padding: 24px;
    justify-content: space-between;
    width: 100%;


    & h2, h3{
        margin: 4px 0px;
    }

    >div {
        width: 100%;
        
        h2 {
            display: flex;
            flex-direction: row;
            align-items: center;
        }
    }
}

.valid {
    border: solid 2px rgb(0, 255, 0) !important;
}

.invalid {
    border: solid 1px #e72121 !important;
}

#cancel-verification-input{
    display: block;
    width: 100%;
    height: 3em;
    text-align: center;

    background-color: #000000;

    border: solid 0px black;
    border-radius: 32px;
    margin-left: auto;
    margin-right: auto;
    color: white;

}

#cancel-verification-input:focus-visible{
    outline: none;
}


#heading-cancel-view{ 
    color: #e72121;
}

.cancel-confirmation-container{

}

#popup-cancel-subscription-view{
    /* display: none; */
}


#profile-head{
    display: flex;
    flex:1 1;
    
}

#profile-subscriptions{

}

.subscription-details-item-price{
    text-align: center;
}

.subscription-details-item-status{
    text-align: center;
}

.section-profile{
    border-top: 1px solid var(--color-accent)
}

#no-subs-placeholder{
    margin-left: 8px;
    color: grey;
}

.subscription-card{
    box-shadow: rgba(0, 0, 0, 0.329) 4px 4px 12px;
    border-radius: var(--border-rad-m);
    border: 1px solid rgba(128, 128, 128, 0.5);
    padding: 24px;
    transition: box-shadow .4s ease;
    margin: 16px 0;

    h3{
        border-bottom: 1px solid rgba(128, 128, 128, 0.5);
    }
    
    
    .button{
        margin: 0;
    }
}

.subscription-card:hover{
    box-shadow: rgba(0, 0, 0, 0.329) 8px 8px 16px;
    transition: box-shadow .4s ease;

}

.subscription-details-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    >* {
        /* min-width: 150px; */
    }

    .button{
        border-radius: 100%;
        background-color: #000000;
        padding: 8px;
    }

    .button:hover{
        background-color: var(--bg-dark);
    }
    
}

.subscription-details-item-description {
    min-width: 50%;
    max-width: 50%;
}




.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
    font-family: Arial, sans-serif;
    z-index: 1000;
}

#accept-cookies {
    background-color: var(--bg-dark);
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    font-family: Arial, sans-serif;
}
#accept-cookies:hover {
    background-color: var(--color-accent);
    color: var(--bg-dark);
}

#ai-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 10px;
    text-align: center;
    font-family: Arial, sans-serif;
    z-index: 100;
}

#ai-consent .container {
    max-width: 80%;
    /* Begrenzung auf 80% der Breite */
    margin: 0 auto;
    /* Zentrierung durch automatische Seitenränder */
    padding: 20px;
    /* Innenabstand für bessere Lesbarkeit */
    background-color: #313131;
    /* Weißer Hintergrund für besseren Kontrast */
    border: 1px solid black;
    /* Dünne Umrandung */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    /* Leichter Schatten für Tiefe */
    border-radius: 4px;
}

.scrollable-container {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 15px;
    /* Platz für die Scroll-Leiste */
    border: 1px solid black;
    margin-bottom: 20px;
    /* Abstand zum Zustimmen/Ablehnen-Button */
    background-color: #4d4d4d;
    color: lightgray;
}

/* Hervorhebungen */
.red-text {
    color: var(--color-accent);
    /* Rote Schriftfarbe */
    font-weight: bold;
    /* Fettgedruckt */
}

.program-list {
    ul {
        list-style-type: disc;
        margin-left: 30px;
        padding-left: 10px;
    }

    ul li strong {
        color: var(--color-accent);
        font-weight: bold;
    }

    ul li {
        margin-bottom: 10px;
        line-height: 1.6;
        color: #333;
    }
}

.a-d-button {
    background-color: var(--color-accent-desat);
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.accept:hover {
    background-color: green;
    transition: background-color 0.3s;
}

.decline:hover {
    background-color: red;
    transition: background-color 0.3s;
}

.banner {
    width: 100%;
    color: white;
    text-align: center;
    padding: 0px;
    position: relative;
    margin-left: auto;
    margin-right: auto;

    position: relative;
    background: none;
    /* Remove default background */
    overflow: hidden;
    /* Ensure the pseudo-element doesn't overflow */
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/static/cartographer.webp');
    background-repeat: repeat;
    opacity: 0.5;
    /* Adjust the opacity as needed */
    z-index: 1;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #005169;
    /* Your desired background color */
    z-index: 0;
}

.banner .centered-banner {
    position: relative;
    z-index: 2;
    /* Ensure content is above the pseudo-elements */
    color: white;
    /* Adjust text color as needed */
    padding: 20px;
    /* Optional: Add padding for better readability */
}


.sub-info-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    flex: 80 20;
}



.content-wrap {
    margin: 24px auto;
    background-color: #313131;
    color: white;
    padding: 16px;
    box-shadow: #0000000f 2px 2px 8px;
    border-left: 2px solid var(--color-accent);
    border-radius: 8px;
}

.footer-section {
    padding: 64px;
    background: #003241;
    color: white;
}

.footer-section a {
    color: white;
    text-decoration: none;
    margin: 16px;
}





.account-bar {
    /*height: 64px;*/
    max-width: 100vw;
    background: var(--bg-dark);
    border-bottom: solid 2px var(--color-accent);
}

.account-bar-wrap {
    /* width: 60%; */
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    .home-btn {
        color: white;
        text-decoration: none;
        
        img{
            height: 32px;
            width: 32px;
            object-fit: cover;
        }
    }
}

.account-bar-content-right {
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
}

.account-bar-content-left {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}

.home-btn {
    padding: 8px;
}

.account-bar-content-right div {
    padding: 8px;
    padding-left: 16px;
    color: white;
}






.logout-btn {}

.logout-btn:hover {
    background-color: rgb(160, 26, 26) !important;
    color: white !important;
}


.centered-banner {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    text-align: left;

    h1 {
        font-size: 4em
    }
}

.banner-logo {
    height: 200px;
    width: auto;
}

.program-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.program {
    background-color: #cfcfcf;
    padding: 20px;
    border-radius: 5px;
    width: 60%;
    /* Sorgt dafür, dass die Programme die volle Breite einnehmen */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px 0;
    /* Vertikaler Abstand zwischen den Programmen */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.program-banner {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.program h2 {
    color: #333;
    text-align: center;
}

.program-content {
    text-align: center;
    padding: 0 10px;
}

.program-content p {
    font-size: 16px;
}

.program a {
    display: inline-block;
    background-color: #003241;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.3s;
}

/* .program a:hover {
    background-color: #008d64;
} */




.warning {
    background-color: #003241;
    /* Helle Warnfarbe */
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    /* Abstand zum Formular */
    box-shadow: 0 0px 4px var(--color-accent);
    /* Schatten für Tiefe */
}

.form-container,
.output-container {
    margin: 10px;
    flex: 1;
}

.long-word{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
}

#message {
    height: 20vh;
}


textarea,
select {
    min-width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: Arial, sans-serif;
    background-color: var(--bg-alt);
    color: white;
}

.star {
    cursor: pointer;
    font-size: 25px;
    color: grey;
}

.star:hover,
.star:hover~.star {
    color: grey;
}

.extra-text {
    color: lightgray;
}

.btn {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #003241;
    color: white;
    transition: background-color 0.3s;
    box-shadow: 0 0px 4px var(--color-accent);
    /* Schatten für Tiefe */
}

.btn:hover {
    background-color: var(--color-accent);
    transition: background-color 0.3s;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: white;
    background-color: #003241;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    box-shadow: 0 0px 4px var(--color-accent);
    margin-bottom: 16px;
}


.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #003241;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    box-shadow: 0 0px 4px var(--color-accent);
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    font-size: 12px;

    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}






/* ------------------ Popup ------------------ */

#details-popup{
    color: white;
    opacity: 0;

    .popup-window {
        background-color: hsl(194, 100%, 8%);
        z-index: 3;
    }

    .popup-backdrop {
        opacity: 0.95;
    }
    .popup-btn.no{
        background-color: #0a0f53;
    }
    .popup-btn.yes{
        background-color: #881515;
    }

    hr{
        border-color: #ffffff38;
    }
}

.popup-content-wrap{
    padding: 0px 10%;
    margin-bottom: 10%;
}


.details-popup-value-container{
    display: flex;
    flex-direction: row;
}

.popup-details-heading{

}

.label {
    min-width: 50%;
    font-weight: 700;
}

.value {
    width: 50%;
    font-weight: 400;
    padding-left: 8px;
}

.popup-wrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    display: flex;
    flex-direction: column;
    left: 0;
    top: 0;
    opacity: 1;
    transition: opacity 1s ease;
    z-index: 100;
}

.popup {}

.popup-backdrop {
    background-color: #000000;
    opacity: 0.85;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.popup-window {
    background-color: #ffffff;
    border-radius: 16px;
    width: 50%;
    margin-top: -70vh;
    margin-left: auto;
    margin-right: auto;

    padding-top: 32px;

    z-index: 10;

    border-left: solid 1px var(--color-accent);
}

.popup-heading {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.popup-text {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;

}

.popup-btn-wrapper {
    display: flex;
    flex-direction: row;

}

.popup-btn {
    display: flex;
    width: 50%;
    height: 48px;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    transition: background-color 1s ease;
    cursor: pointer;
}

.popup-btn span {
    margin-left: auto;
    margin-right: auto;
}

.popup-btn.yes {
    background-color: var(--color-accent-desat);
    border-bottom-left-radius: 16px;
}

.popup-btn.no {
    background-color: rgb(112, 0, 0);
    border-bottom-right-radius: 16px;
}

.popup-btn.no:hover {
    background-color: red;
    transition: background-color 1s ease;
}

.popup-btn.yes:hover {
    background-color: green;
    transition: background-color 1s ease;
}

.fade-out {
    opacity: 0 !important;
    transition: opacity 1s ease;
}

.fade-in {
    opacity: 1 !important;
    transition: opacity 1s ease;
}

.hide {
    display: none;
}



/* ------------------ LANDING PAGE ------------------ */


.fade-in-on-scroll>* {
    opacity: 0;
    transition: opacity var(--fade-time) ease-in;
}

.visible {
    opacity: 1 !important;
    transition: opacity var(--fade-time) ease-in;
}

.section-btn {
    width: fit-content;
    display: block;
    /* height: 72px; */
    /* background-color: var(--bg-dark); */
    border: solid 1px white;
    border-radius: 64px;
    text-align: center;
    font-size: 16pt;
    padding: 8px 24px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    cursor: pointer;
    color: white;
    text-decoration: none;
    transition: all 1s;
}

.btn-wrp {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;

    img {
        width: 32px;
        height: 32px;
        margin-right: -12px;
    }
}

.section-btn:hover {
    background-color: #ffffff36;
    /* color: var(--bg-dark); */
    transition: all 1s;
}

.landing-section:nth-child(even) {
    background-color: var(--bg-alt);
    flex-direction: row-reverse;
}

.landing-section:nth-child(odd) {
    background-color: var(--bg-dark);
    text-align: left;
    justify-items: left;

    h1 {
        text-align: center;
    }
}

.landing-section:nth-child(odd) .section-division {
    justify-items: flex-end;
}

.landing-section:nth-child(1) {
    text-align: center;
}

.landing-section:nth-child(1) .section-division {
    justify-content: center !important;
}

.landing-section:nth-child(1) .section-division .section-text {
    max-width: 60vw;
}

.landing-section {
    display: flex !important;
    flex-direction: row;

    width: 100%;
    max-width: 100vw;
    /* height: 70vh; */
    /* max-height: 30vh; */
    align-items: center;
    justify-content: center;
    color: white;
    padding-top: 15vh;
    padding-bottom: 15vh;

    margin-left: auto;
    margin-right: auto;

    /* border-bottom: solid 1px var(--color-accent); */
    box-shadow: 0 0px 6px var(--color-accent);

    h1{
        text-align: center !important;
    }
}

.section-division {
    width: 50%;
    height: 100%;

    /*border: solid red 1px;*/
    /* max-height: 70vh; */

    max-width: 50%;

    /* padding-left: 32px;
    padding-right: 32px; */

    flex-direction: row;
}




.section-division:has(.section-text) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-division:has(.div-video) {
    display: flex;
    flex-direction: row;
    align-items: center;
}


#headerLanding {
    height: calc(100vh - 54px);
}

.header-video {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    object-fit: cover;
}

.div-video {
    /* height: 70vh; */
    /* width: 100%; */
    object-fit: cover;
    /* max-height: 20vh; */
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 2px 2px 50px #000000;
    border-left: solid 1px var(--color-accent);
}

.section-text {
    max-width: 45vw;
    background-color: #ffffff2a;
    border-radius: var(--border-rad-m);
    padding: 48px;
    width: 100%;
    box-shadow: 0 0 10px #ffffff2a;
}

.header-wrapper *{
    height: calc(100vh - 54px);
}

.video-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    left: 0;
    top: 0;
    width: 100vw;
    
    /*height: 100vh;*/
    background: linear-gradient(0deg, #00242f 0%, rgba(0, 0, 0, 0.41) 100%);
    /* background-color: #0000006c; */
    color: white;

    align-items: center;
    justify-content: start;
    letter-spacing: 8;

    img {
        max-height: 80vw;
        max-width: 80vw;
        opacity: 0.8;
    }

    h1 {
        font-size: 72pt;
        margin: 24px 0;
        text-shadow: 0 0 90px var(--bg-dark);/*#6f9c16;*/
        text-transform: capitalize;
        letter-spacing: 15;
    }

    p {
        max-width: 50%;
    }
}


#norm-pilot-card-0{
    text-align: left;
}

.card-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;

    text-align: center;

    height: 100%;

    .card-section-head, .info-card{
        border-left: solid 1px var(--color-accent);
    }
}

.card-section-head {
    background-color: hsl(193, 20%, 30%);
    border-radius: var(--border-rad-m);
    box-shadow: 4px 4px 20px #00000049;
    margin: 16px 16px;
    padding: 16px 32px;

    
}

.info-card-area {
    /* height: 100%; */
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    /* gap: 5%; */

    border-radius: var(--border-rad-m);
    /* margin: 8px; */
}

.info-card-area:nth-child(1) {
    margin-left: 50%;
    background-color: red !important;
}

.info-card {
    flex: 1 1 45%;
    min-width: 30%;
    max-width: calc(50% - 32px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;


    margin: 16px 0;
    /* margin-right: 2.5%; */

    /* width: 40%; */
    /* height: max-content; */

    background-color: hsl(193, 20%, 30%);
    padding: 16px 0;

    /* border: solid 1px white; */
    border-radius: var(--border-rad-m);
    box-shadow: 4px 4px 20px #00000049;
}

.info-card-logo {
    height: 128px;
    width: 128px;
    /* background-color: #000000; */

    img {
        width: 100%;
    }
}

.info-card-heading {
    font-size: 1.6em;
    width: 100%;
}

.info-card-txt,
.info-card-heading {
    box-sizing: border-box;
    padding: 0 32px;
    width: 100%;
}

.fixed-bg-1 {
    background-image: url("/static/arno-senoner-H7rBLuD85Tg-unsplash-blured-sm.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #00000075;
    background-position: center bottom;
}

.fixed-bg-2 {
    background-image: url("/static/banner-c-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #00000075;
    background-position: center bottom;
}

.fixed-bg-3 {
    background-image: url("/static/ruler_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #00000075;
    background-position: center top;
}


.fixed-bg-dark {
    background-image: url("/static/fixed-bg-dark-2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #00000075;
    background-position: center top;
}

.back-to-top {
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 64px;
    right: 64px;

    background-color: #00000044;
    border-radius: 128px;
    border: solid white 1px;

    box-shadow: 4px 4px 20px #00000049;

    width: 74px;
    height: 74px;

    cursor: pointer;

    transition: all 1s ease;
    z-index: 100;
}

.back-to-top:hover {
    background-color: var(--color-accent);
    transform: scale(1.3);
    transition: all 1s ease;

    img{
        filter: drop-shadow(0 0 4px black);
    }

}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;

    opacity: 0;
    /* transition: opacity 1s ease-in; */
}

.dropdown-content a {
    color: white;
    text-decoration: none;
    padding: 16px 64px;


}

.dropdown-content a:hover {
    color: var(--bg-dark);
    background-color: var(--color-accent);
    text-decoration: none;
    transition: background-color 0.5s;
}

.dropdown {
    display: flex;
    color: white;
    padding: 8px;
    margin-left: 2px;
    margin-right: 2px;
    margin-top: 4px;
    margin-bottom: -2px;
    /* padding: 0 16px; */
    padding-left: 32px;
    padding-right: 32px;

    height: 48px;
    border-radius: 4px 4px 0 0;

    text-align: center;
    justify-content: center;

    >span{
        align-self: center;
    }

}

.dropdown:hover, .dropdown:active {
    background-color: var(--color-accent);
    color: var(--bg-dark);
    transition: opacity 1s ease-in, background-color 0.3s;
}

.dropdown:hover .dropdown-content, .dropdown:active .dropdown-content{
    display: flex;
    opacity: 1;
    flex-direction: column;
    margin-top: 40px;
    text-decoration: none;
    gap: 8px;
    transition: opacity 1s ease-in, background-color 0.3s;
    transition-delay: 0.1s;
    border-top: 1px solid var(--color-accent);
}


@keyframes loading-animation {
    from {
        opacity: 0.1;
        box-shadow: 2px 2px 8px #000000ff;
    }
    to {
        opacity: 1;
        box-shadow: 2px 2px 15px #000000ff;
    }
}

.placeholder-loading {
    display: inline-block;
    background-color: hsl(193, 20%, 50%);
    width: 100%;
    min-width: 50px;
    height: 1em;
    opacity: 0.1;
    border-radius: 8px;



    animation-name: loading-animation;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    
}



p .placeholder-loading{
    height: 6em;
}

.video-overlay .placeholder-loading{
    background-color: #00000054;
    width: 40vw;
    height: 1em;
}

/* .placeholder-loading::before {
    content: 'Loading...';
} */


#quick-add-symbol{

}

#account-information-container{
    & h2 {
        font-size: 1.3em !important;
        margin-bottom: 8px;
    }
}