/*------------------------------------Page Structure-------------------------------------------------*/

/*Make all Children of htlm border box*/
html {
    box-sizing: border-box;
}
*, *::before, *::after {Box-sizing: inherit;}

body{
    background-color: #212121;
    width: 100%;
    margin: 0px;
}

@media(max-width:768px){
    #bodySection{
        padding-left: 15px;
        padding-right: 15px;
    }
}

    /*-------------------------------------------------------News Banner-------------------------------------------------------*/

    #newsBox{
        display: flex;
        background-color: #1a1a1a;
        border-radius: 11px;
        flex-wrap: wrap;
        padding: 25px;
        justify-content: center;
    }
    
    #newsBanner{
        border-style: solid;
        border-radius: 11px;
        border-width: 2px;
        border-color: #3e3e3e;
        max-height: 140px;
        object-fit: contain;
    }

    @media (max-width: 1000px){
        #newsBanner{
            width: 100%;  
        }
        #newsBox{
            background-color: #212121;
            padding: 0;

        }
    }

    @media (max-width: 768px){
        #newsBanner{
            max-width: 100%;  
            border-width: 1px;
            border-radius: 8px;      
        }   
    }
/*-------------------------------------------------------Loading Screen--------------------------------------------------------*/

/* Keyframes für die Drehbewegung */
@keyframes rotateAnimation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
} 

/* Klasse, die die Animation anwendet */
.rotate {
    animation: rotateAnimation 1.5s linear infinite;
}



#loadingScreen{
    z-index: 3;
    backdrop-filter: blur(3px);
    background-color: rgba(255, 255, 255, 0.1);
}
#imageWrapper{
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#loadingImage {
    max-width: 100%;
    max-height: 100%;
    width: auto;  /* Erhält das Seitenverhältnis */
    height: auto; /* Erhält das Seitenverhältnis */
}


/*-------------------------------------------------------Header Menu--------------------------------------------------------*/
    /*Contains Logo and menu*/
    #header{
        display: none;
        grid-template-columns: 50% 50%;
        height: 60px;
        position: relative;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.464) ;
    }

    @media (min-width: 768px){
        #header{
            display: grid;
        }
    }

        /*Contains menu items*/
        #header-menu{
            grid-column: 2;
            padding-right: 20px;
        }

        .menu-container{
            justify-self: end;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            gap: 30px;   
        }
            @media(max-width: 768px){ /*Effect footer as well*/
                .menu-container{
                    flex-direction: column;
                    align-items: flex-start;
                    margin-left:15px
                }
            }

            .menuItemDropDownContainer{
                position: relative;
                display: inline-block;
            }

                .dropdown-content{
                    display: none;
                    position: absolute;
                    background-color: #1a1a1a;
                    width: 200px;
                    z-index: 1;
                    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
                    flex-direction: column;
                    align-items: center;
                    border-radius: 11px;
                }

                .menuItemDropDownContainer:hover .dropdown-content{
                    display: flex;
                }

                    .dropdown-content a{
                        color: #dddddd;
                        padding: 12px 16px;
                        text-decoration: none;
                        display: block;
                        font-size: 18px;
                    }

                    .dropdown-content a:hover {
                    color:#ffff69;
                    text-decoration: underline;

                    }

        /*Contains the logo*/

            #logoHorizontal{
            position: absolute;
            grid-column: 1; 
            width: 300px;
            height: 100%;
            object-fit: cover;
            }
    /*------------------------------------------Mobile Menu-----------------------------------------------------------------------------*/
        /*-------Header-------*/
        #mobileHeader{
            display: none;
            grid-template-columns: 33.3vw auto 33.3vw;
            height: 60px;
        }
            @media (max-width: 768px ){
                #mobileHeader{
                    display: grid;
                }
            }

            #mobileHeaderLogo{
                grid-column: 2;
            }

            #mobileHeaderHamburger {
                grid-column: 3;
                justify-self: end;
                align-self: center;
                margin-right: 20px;
                filter: invert(16%) sepia(52%) saturate(0%) hue-rotate(252deg) brightness(109%) contrast(82%);
            }
        /*------Sidebar------*/
        #sidebar{
            display: none;
            position:fixed;
            margin-left: 100vw;
            transition: margin-left 0.5s ease-in-out;
            padding-bottom: 100vh;
            width: 80vw;
            margin-top: -60px;
            z-index: 2;
        }
            @media (max-width: 768px ){
                #sidebar{
                    display:flex;
                }
            }
            
        .sidebarLogo, #mobileHeaderLogo{
            height: 50px;
            width: 50px;
            object-fit: fill;
            margin: auto;
        }

        #sidebarX-Mark{
            align-self: flex-end;
            position: absolute;
            margin-top: -5px;
        }


        .toggle{
            display: flex;
            flex-direction: row;
            
        }
            
            .toggle img{
                margin-left: auto;
                margin-right: 10px;
            }

            .dropdown{
                display: flex;
                flex-direction: column;
                padding-right: 20px;
                max-height: 0px;
                overflow: hidden;
                transition: max-height 0.5s ease-in-out;
            }
                /*Custom font for menu items*/
                .menu-item{
                    font-size: 18px !important;
                    color: #dddddd !important;
                    font-family: 'Open Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
                    text-decoration: none;
                }
                    .menu-item:hover, #footerMenu > *:hover{
                        color: #ffff69 !important;
                        text-decoration: underline !important; 
                    }

                #akkordeon-menu-products-dropdown > *, #akkordeon-menu-bundles-dropdown > * {
                    font-size: 1.2rem;
                    text-align: right;
                    color: #dddddd;
                    text-decoration: none;
                    margin-top: 10px;
                }
/*-------------------------------------------------------Footer Menu--------------------------------------------------------*/
    
        #footer{
            max-width: 900px;
            margin: auto;
        }
        

            #footer hr {
                width: 100%;
                border: 1px solid #3e3e3e;
                margin-bottom: 50px;
                margin-top: 50px;
            }
        /*--------------Desktop-------------*/
            @media(max-width: 768px) {
                #DesktopFooterMenu{
                    display: none;
                } 
            }

                #DesktopFooterMenu > * {
                    color: #dddddd;
                    text-decoration: none;
                }


    /*--------------Mobile-------------*/
            #mobileFooter{
                display: flex;
                justify-content: center;
                align-items: center;
            }
                @media(min-width: 768px){
                    #mobileFooter{
                        display: none;
                    }
                }

                #mobileFooterMenu{
                    max-height: 0px;
                    overflow: hidden;
                    transition: max-height 0.5s ease-in-out;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 10px;
                    margin-left:15px
                }
                
                    #mobileFooterMenu > * {
                        color: #dddddd;
                        text-decoration: none;
                    }







    
    
    /*------------------------------------Grid Column Container =>  'LeftMenue' & SwitchContainer---------------------------------------------*/
        /*-------Contains Menu & Switches------*/
            #bodySection{
                max-width: 1600px;
                width:100%;
                margin: auto;
                display: grid;
                grid-template-columns:20% 60%;                                        
            }
                @media (max-width: 768px){
                    #bodySection{
                        display: flex;
                        flex-direction: column;
                    }
                }   
    
            /*-------Contains all Menue Items------*/
                #userLeftSideMenu{
                    grid-column: 1;
                    margin-left: 20px;
                }
                    @media (max-width: 768px){
                        #userLeftSideMenu{
                            display: none;
                        }
                    }

            /*---------Contains all Switches---------*/
                @media (min-width: 768px){
                    #switchContainer{
                        grid-column: 2;
                    }
                }
            
                .swiper-wrapper > *{ /*For all switches inside the bodysection div*/
                    position: relative;
                    min-height: 100vh;
                    width: 100%;
                }

            /*----------Mobile Swiper function----------*/
                @media(max-width: 768px){
                    .swiper {
                        width: 100%;
                    }
                }

                @media(min-width:768px){
                    .swiper{
                        margin-left: 0 !important;
                        margin-right: unset !important; 
                    }
                    .swiper-pagination-container{
                        display: none !important;
                    } 
                }

                    .swiper-pagination-container{
                        background-color: #212121;
                        position: fixed;
                        bottom: 0;
                        width: 100%;
                        z-index: 1;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }
                        .swiper-pagination{
                            bottom: unset !important;
                        }
                        .swiper-pagination-bullet{
                            background-color: #989898 !important;
                        }
                        .swiper-pagination-bullet-active{
                            background-color: #ffff69 !important;
                        }
    
/*--------------------Global Style Elm----------------*/

    /* -------------------Fonts--------------------*/
        p, label, td {
            color: #dddddd;
            font-family: 'Open Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
            font-size: 1rem;
            margin: 6px;

        }

        .p_small{
            color: #dddddd;
            font-family: 'Open Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
            font-size: 0.8rem;
            margin: 6px;
        }
        .greenText{
            color: green;
        }

        .redText{
            color: red;
        }

        .yellowText{
            color: yellow;
        }

        a {
            color: #ffff69;
            font-family: 'Open Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
        }


        a:hover{
            color: #8A8A26;
            transition-duration:0.3s;
        }

        h1{
            font-family: 'Open Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
            font-size: 3rem;  
            color: #fff;
            margin-block-start: 0;
            margin-block-end: 0;
        }
            @media(max-width: 768px){
                h1{
                    font-size: 2.5rem;
                    text-align: center;
                }
            }

        h2{
            font-family: 'Open Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
            font-size: 2rem;  
            color: #ffff69;
        }

        h3{
            font-family: 'Open Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
            font-size: 1.5rem;  
            color: #ffff69;
            margin-top: 5px;
            margin-bottom: 5px;
        }

        h4{
            font-family: 'Open Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
            font-size: 1rem;  
            color: #fff;
            margin-top: 5px;
            margin-bottom: 5px;
        }

        /*For all interactive clickable text elements*/
        .activeTextElm{
            color: #ffff69;
            text-decoration: underline; 
        }

        .highlightedText{
            color: #ffff69;
        }
        

        
            

    
    /*----------------------------------CTA's------------------------------*/

        /*-----------------Buttons----------------------*/
            /*Classic CTA Button for important things*/

            .center-aligned{
                margin-left: auto;
                margin-right: auto;
            }
            .buttonCTAHigh {
                background-color: #ffff69;
                color: #1a1a1a;
                width: 150px !important;
                border-radius: 5px;
                font-family: 'Open Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
                font-size: 16px;
                padding: 6px;
            }
               @media (min-width: 768px){
                    #productSwitch .blackBox button{
                       margin-left: auto; 
                    }

                } 

                .buttonCTAHigh:hover {
                    background-color: #8A8A26;
                    transition-duration: 0.3s;
                }

            /*less important CTA*/
            .buttonCTALow {
                padding: 6px;
                background-color: transparent;
                border: 2px solid #ffff69;
                border-radius: 5px;
                font-family: 'Open Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
                font-size: 16px;
                color: #ffff69;
                width: 150px !important;
                box-sizing: border-box;
            }
                .buttonCTALow:hover {
                    transition-duration: 0.3s;
                    border-color: #8A8A26;
                    color:#8A8A26;
                }

            .redButton{
                background-color: transparent;
                border: solid;
                border-width: 2px;
                border-radius: 5px;
                font-family: 'Open Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
                font-size: 16px;
                padding: 6px;
                border-color: #ff3131;
                color:#ff3131;
                width: 100px
               
            }

                .redButton, .redAnchor:hover{
                    transition-duration: 0.3s;
                    border-color: #461818;
                    color: #5E2121;
                }
                .redAnchor{
                    background-color: transparent;
                    border: none;
                    border-width: 2px;
                    border-radius: 5px;
                    font-family: 'Open Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
                    font-size: 16px;
                    padding: 0px;
                    border-color: #ff3131;
                    color:#ff3131;
                    width: 100px;
                    cursor: pointer;
                   
                }

            /*This random Button is styled with inside the paint.js document*/
            .randomButton {
                color: #1a1a1a;
                width: 150px;
                border-radius: 5px;
                font-family: 'Open Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
                font-size: 16px;
                padding: 6px;
                border: none;

            }
                .randomButton:hover {
                    background-color: #8A8A26;
                    transition-duration: 0.3s;
                }
            
            @media(max-width: 770px){
                .buttonCTAHigh,
                .buttonCTALow,
                .randomButton {
                    font-size: 18px;
                }
            }

        
        /*--------------------Icons-------------------------*/
       
        .icon {
            filter: invert(16%) sepia(52%) saturate(0%) hue-rotate(252deg) brightness(400%) contrast(82%);;    
            cursor: pointer;
            transition: transform 0.5s ease;   
        }
       
        .M{
            width: 25px !important; 
        }

        .S{
            width: 15px !important;
        }

        .L{
            width: 50px !important;
        }

        .active {
            filter: invert(99%)sepia(77%) saturate(1192%) hue-rotate(339deg) brightness(106%) contrast(107%) !important; 
        }

        .rotate90{
            transform: rotate(90deg); 
            transition: transform 0.5s ease;
        }


    /*-----------------------------Input types--------------------------------*/
        input[type="text"], input[type="password"] {
            background-color: #1a1a1a;
            font-family: 'Open Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
            border: solid;
            border-color: #3e3e3e;
            border-width: 1px;
            border-radius: 5px;
            color: #dddddd;
            padding: 9px;
        }
        
        /* input{
            margin-top: 5px;
        } */

        select{
            background-color: transparent;
            border: solid;
            border-color: #3e3e3e;
            font-size: 16;
            padding: 6px;
            border-width: 1px;
            border-radius: 5px;
            font-family: 'Open Sans', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
            color: #dddddd;
            width: 100%;
            pointer-events: auto;
        }



        /*---------------Toggle Switch--------------*/
            .switch {
                position: relative;
                display: inline-block;
                max-width: 58px;
                height: 32px;
            }
            
            /* Hide default HTML checkbox */
            .switch input {
                opacity: 0;
                width: 0;
                height: 0;
            }
            
            /* The slider */
            .slider {
                position: absolute;
                cursor: pointer;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: transparent;
                border: 1px solid #414141;
                -webkit-transition: .4s;
                transition: .4s;
            }
            
            .slider:before {
                position: absolute;
                content: "";
                bottom: -1px;
                height: 32px;
                width: 32px;
            
                background-color: #989898;
                -webkit-transition: .4s;
                transition: .4s;
            }
            
            input:checked + .slider {
                background-color: transparent;
                border-color: #ffff69;
            }
            input:checked + .slider:before {
                background-color: #ffff69;
            }
            
            
            input:checked + .slider:before {
                -webkit-transform: translateX(26px);
                -ms-transform: translateX(26px);
                transform: translateX(26px);
            }
            
            /* Rounded sliders */
            .slider.round {
                border-radius: 34px;
            }
            
            .slider.round:before {
                border-radius: 50%;
            }

    


/*--------------------------------------Modules------------------------------------------*/

 /* -------------------Black Cards--------------------------*/  


.blackBox{
    display: flex;
    background-color: #1a1a1a;
    border-radius: 11px;
    padding: 30px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.206);
    flex-wrap: wrap;
}

.installerBox{
    display: flex;
    flex-direction: row;
    background-color: #1a1a1a;
    border-radius: 11px;
    gap: 10px;
    padding: 30px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.206);
    flex-wrap: wrap;
}

.installerTable{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    background-color: #212121;
    border-radius: 8px;
    flex-wrap: nowrap
}

.installerTable p{
    width: 30%
}

.installerTable table tr{
    justify-content: space-between;
}

.subscription{
    flex-direction: column;
}
    @media(max-width: 768px){
        .blackBox{
            padding:20px;
        }
        #productsSwitch .blackBox{
            flex-direction: column;
        }
    }
        
    .fitContent{
        width: fit-content;
    }

    .childFullWidth > *{
        width: 100%;
    }

    .flexColumn{
        flex-direction: column;
    }

    .flexRow {
        flex-direction: row;
    }

    .fitContent {
        max-height: fit-content;
        max-width: fit-content;
    }
    .flexCenter{
        align-items: center;
        justify-content: start;
    }

    .flexLeft {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .blackBox form select{
        width: 100%;
    }

    #redeemCodeForm{
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-height: 400px;
    }
    
    #reedeemCodeSubmitToNewsletterDiv{
        display: flex;
        flex-direction: row;
    }
    #redeemCodeInput{
        width: 50%
    }
     #redeemCodeForm button {
        width: 50% !important;
     }

    @media(max-width: 768px){

        #redeemCodeInput {
            width: 100%;
        }
        #akkordeon-redeemCode, #redeemCodeForm{
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    }
   /*---------------------------Container-----------------------------*/ 
   
   .existingLicenseContainer table, .newLicensesContainer table, .orderContainer table, .installerBox table {
    width: 100%;
   }

   .orderContainer table tr {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
   }

   .existingLicenseContainer table tr td {
    width: 50%
   }

   #gainAimLicenseContainer{
    display: none;
    align-items: center;
   }

 .productTableContainer table{
    width: 100%
   }

   .productTableContainer{
    width: 70%
   }

   @media(max-width: 768px){
    .productTableContainer{
        width: 100%;
    }
   }

   .loginpage_popup, .newsContainer{
    flex-direction: column;
    align-items: center;
   }
   
   .loginpage_popup{
    width: 300px;
   }
   

/*--------------------------popUpBox--------------------------*/

        /*This one is the popup window with the data*/
        #popUpWrapper, #loadingScreen{
            position:fixed;
            display: none;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
        }
        #popUpWrapper{
            z-index: 2;
            backdrop-filter: blur(3px);
        }
        .popUp{
            display: none;
            overflow: auto;
            left: 30%;
            top: 30Vh;
            flex-direction: column;
            justify-content: start;
            height: fit-content;
            background-color: #1a1a1a;
        }
            @media(max-width: 768px){
                .popUp{
                    width: 90%;
                }
            }
        .popup_subscription {
            width: 95%;
            max-width: 500px
        }

        .popup-error{
            justify-content: center !important;
            align-items: center !important;
        }

        #popUpEditBillingDetails .popUp > *, #popUpEditSupDetails .popUp > * {
            width: 100%;
        }

            /*Items inside PopUpBox*/
            .popUpX-Mark{
                align-self: flex-end;
                margin-top: -5px;
            }
        
        #popUp_registerUser{
            width: 600px !important;
            gap: 15px;
            padding-top: 25px;
            padding-bottom: 50px;
        }
        #popUp_registerUser h1{
            text-align: center !important;
            display: none;
        }
        #popUp_registerUser a{
            align-self: center !important;
        }
            


        #registerWrapper{
            flex-direction: row;
            display: flex;
            flex-wrap: nowrap !important;
        }

        .login_form{
            align-items: center;
            min-width: 50%;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        #registerWrapper .login_form input, #signinElmt input{
            width: 100% !important;
        }

        #signinElmt{
            width: 250px;
            display: flex;
            justify-content: center;
            gap: 5px;
        }

        @media(max-width: 768px){
            #signinElmt{
                width: 60% !important;
            }
        }

        
            
        
/*---------------------------------------License Manager--------------------------------------*/

    .headerContainer{
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 30px;
        flex-wrap: nowrap;
    }

    .productBox{
        justify-content: flex-start;
        align-items: center;
        gap: 50px;
        max-width: 75%;
        flex-wrap: nowrap;
    }
                    .imageContainer{
                        max-width: 200px;
                        max-height: 200px;
                        overflow: hidden;
                        border-radius: 11px;   
                    } 

                        .productIcon{
                            width: auto;
                            height: 100%; 
                            position: relative; 
                        }

                        /*Mobile Content*/
                        @media(max-width: 768px){
                            .blackBox .imageContainer{
                                display: none;
                            }
                            #productsSwitch .blackBox{
                                flex-direction: column;
                            }
                            .productBox{
                                justify-content: center;
                                max-width:100%;
                            }
                        }
                    

                        

/*---------------------------------------Order History--------------------------------------*/
    .orderContainer{
        display: flex;
        flex-flow: wrap;
        gap: 25px;
        width: 100%;
        background-color: #212121;
        border-radius: 8px;
    }

    @media(max-width: 768px){
        .orderContainer button{
            display: none;
        }
    }
    


 /* -----------------------------Login website-------------------------------------*/                 


 #loginAndRegistration > *{
    margin: auto;
    }

    #forgetMyPasswordLinkContainer{
        padding-top: 20px;
        display: flex;
        flex-direction: row;
        justify-content: center; 
    }

    #loginBody p, #loginBody h4{
        text-align: center;
    }

   
/* -----------------------------Spacer Section----------------------------- */

    .spacer25px{
        height: 25px;
    }

    .spacer50px{
        height: 50px;
    }

    .spacer100px{
        height: 100px
    }

/* -----------------------------Animation----------------------------- */

@keyframes horizontal-shaking {
    0% { transform: translateX(0) }
    25% { transform: translateX(5px) }
    50% { transform: translateX(-5px) }
    75% { transform: translateX(5px) }
    100% { transform: translateX(0) }
  }

.horizontal-shake {
    animation: horizontal-shaking 0.35s infinite;
  }