::-webkit-scrollbar{
    display: none;
}

input::placeholder{
    color: var(--placeholder-color);
}

select option:selected{
    color: var(--font-light-color);
}

body{
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0px;
    padding: 0px;
    max-width: 100vw;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
}

.general-page-wrapper{
    background-color: #333333;
    overflow: hidden;
}

.index-page-content-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 0px;
    width: 100%;
    background-color: #ffffff;
    padding-bottom: 0px;
}

    .index-page-search-container{
        position: fixed;
        top: 0px;
        display: flex;
        width: 100%;
        height: 100px;
        justify-content: center;
        align-items: center;
        background-color: #e9f2e7;
        border-bottom: 1px solid purple;
        z-index: 1000;
    }

        .index-page-search-input-container{
            display: flex;
            width: 25%;
            min-width: 300px;
            max-width: 480px;
            height: 40px;
            border: 0.5px solid black;
            border-radius: 25px;
            padding-left: 20px;
            padding-right: 0px;
            justify-content: space-between;
            background-color: white;
        }

            .index-page-search-input{
                border-top: none;
                border-left: none;
                border-right: 0.5px solid black;
                border-bottom: none;
                border-radius: 0px;
                width: 50%;
                margin: 0px;
                padding: 0px 10px 0px 0px;
            }

            .index-page-search-input:focus{
                outline: none;
            }

            .index-page-search-select{
                appearance: none;
                -moz-appearance: none;
                -webkit-appearance: none;
                width: 50%;
                border: none;
                border-radius: 0px;
                margin: 0px;
                padding: 0px 10px 0px 10px;
                color: var(--placeholder-color);
                background-color: white;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis !important;
            }

            .index-page-search-select:hover{
                cursor: pointer;
            }

            .index-page-search-select:focus{
                outline: none;
            }

            .index-page-search-button{
                border: none;
                min-width: 60px;
                max-width: 60px;
                min-height: 40px;
                max-height: 40px;
                background-color: white;
                background-image: url(/images/tiles/tile_320_magnifier_transparent.png);
                background-size: contain;
                background-position: center;
                background-repeat: no-repeat;
                border-top-right-radius: 25px;
                border-bottom-right-radius: 25px;
            }

            .index-page-search-button:hover{
                cursor: pointer;
                background-color: lightgray;
            }

    .index-page-content-container{
        display: flex;
        flex-direction: column;
        width: 100%;
        align-content: center;
        align-items: center;
        overflow: scroll;
    }

        .index-page-content{
            display: flex;
            flex-direction: row;
            width: 80%;
            height: calc(100vh - 100px);
            justify-content: space-evenly;
            align-items: center;
            margin-top: 100px;
        }

            .index-subcontainer{
                display: flex;
                justify-content: center;
            }

                .index-page-description-text-container{
                    max-width: 100%;
                    margin: 25px 25px;
                    padding: 25px 25px;
                }

                .index-page-description-text-container-border-upper{
                    background-image: radial-gradient(circle at 100% 100%, transparent -1px, #942192 1px, #942192 1px, transparent 1px), linear-gradient(to right, #942192 50%, #ffffff 50%), radial-gradient(circle at 0% 100%, transparent -1px, #ffffff -1px, #ffffff 1px, transparent 1px), linear-gradient(to bottom, #ffffff 50%, #f0e7f2 50%), radial-gradient(circle at 0% 0%, transparent -1px, #f0e7f2 -1px, #f0e7f2 1px, transparent 1px), linear-gradient(to left, #f0e7f2 50%, #ffffff 50%), radial-gradient(circle at 100% 0%, transparent -1px, #ffffff -1px, #ffffff 1px, transparent 1px), linear-gradient(to top, #ffffff 50%, #942192 50%);
                    background-size: 1px 1px, calc(100% - 2px) 2px, 1px 1px, 2px calc(100% - 2px);
                    background-position: top left,top center,top right,center right, bottom right,bottom center,bottom left,center left;
                    background-repeat: no-repeat;
                }

                .index-page-description-text-container-border-lower{
                    background-image: radial-gradient(circle at 100% 100%, transparent -1px, #942192 1px, #942192 1px, transparent 1px), linear-gradient(to right, #942192 50%, #ffffff 50%), radial-gradient(circle at 0% 100%, transparent -1px, #ffffff -1px, #ffffff 1px, transparent 1px), linear-gradient(to bottom, #ffffff 50%, #333333 50%), radial-gradient(circle at 0% 0%, transparent -1px, #333333 -1px, #333333 1px, transparent 1px), linear-gradient(to left, #333333 50%, #ffffff 50%), radial-gradient(circle at 100% 0%, transparent -1px, #ffffff -1px, #ffffff 1px, transparent 1px), linear-gradient(to top, #ffffff 50%, #942192 50%);
                    background-size: 1px 1px, calc(100% - 2px) 2px, 1px 1px, 2px calc(100% - 2px);
                    background-position: top left,top center,top right,center right, bottom right,bottom center,bottom left,center left;
                    background-repeat: no-repeat;
                }

                    .index-page-description-text{
                        max-width: 100%;
                        text-align: center;
                        line-height: 2;
                        font-family: 'IndieFlower';
                        font-size: larger;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis !important;
                        font-size: x-large;
                    }

                    .index-page-description-full-text{
                        display: none;
                        visibility: hidden;
                    }

                .index-page-login-wrapper{
                    display: flex;
                    width: 25%;
                    min-width: 480px;
                }

                    .index-page-login-container{
                        display: flex;
                        flex-direction: column;
                        align-self: center;
                        justify-content: center;
                        width: 100%;
                        height: 500px;
                        margin: 25px 0px;
                        background-color: #f0e7f2;
                    }

                        .index-page-login-logo-container{
                            display: flex;
                            justify-content: center;
                        }

                            .form{
                                position: relative;
                                min-width: 100%;
                                padding-top: 30px;
                                padding-right: 40px;
                                padding-bottom: 0px;
                                padding-left: 40px;
                                margin: 10px 0;
                                box-sizing: border-box;
                            }

                                .field-of-input-forms{
                                    padding: 15px 15px 15px 15px;
                                    min-width: 100%;
                                    box-sizing: border-box;
                                }
                    
                                .field-of-input-forms-with-link{
                                    padding: 15px 15px 1px 15px;
                                    min-width: 100%;
                                    box-sizing: border-box;
                                }

                                    .form-control{
                                        display: table;
                                        width: 100%;
                                        margin-bottom: 10px;
                                        height: 40px !important;
                                        box-sizing: border-box;
                                    }
                                    
                                        .form-input{
                                            font-size: 1.0em;
                                            padding-left: 10px;
                                            appearance: none;
                                            -moz-appearance: none;
                                            -webkit-appearance: none;
                                            outline: none;
                                            display: table-cell;
                                            vertical-align: middle;
                                            border-radius: 4px;
                                            width: 100%;
                                            height: 40px;
                                            background-color: white;
                                            color: black;
                                            white-space: nowrap;
                                            overflow: hidden;
                                            text-overflow: ellipsis !important;
                                            box-sizing: border-box;
                                        }

                                .button-inside-form{
                                    background: green;
                                    border: 1px solid black;
                                    width: 100%;
                                    padding: 10px;
                                    outline: none;
                                    color: white;
                                    font-size: 1.0em;
                                    cursor: pointer;
                                    margin: 10px 0px;
                                    transition: 0.3s all ease;
                                }
                        
                                .button-inside-form:hover, .button-inside-form:focus{
                                    background: darkgreen;
                                }
                        
                            .paragraph-in-form{
                                text-align: center;
                                display: block;
                                padding-bottom: 10px;
                            }
                        
                            .button-outside-form-container{
                                width: calc(100% - 80px);
                                margin: 40px;
                            }
                        
                                .button-outside-form{
                                    background: green;
                                    border: 1px solid black;
                                    width: calc(100% - 80px);
                                    padding: 10px;
                                    outline: none;
                                    color: white;
                                    font-size: 1.0em;
                                    cursor: pointer;
                                    margin-bottom: 40px !important;
                                    transition: 0.3s all ease;
                                }
                        
                                .button-outside-form:hover, .button-outside-form:focus{
                                    background-color: darkgreen;
                                }

                .index-page-description-picture-wrapper{
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    max-width: 480px;
                    min-width: 480px;
                }

                .index-subcontainer-picture-wrapper{
                    background-color: #ffffff;
                }

                    .index-page-description-picture-container{
                        width: 100%;
                        height: 90%;
                        aspect-ratio: 32/27 !important;
                        background-image: url(/images/descriptions/description_blank_1024px.png);
                        background-position: center;
                        background-repeat: no-repeat;
                        background-size: contain;
                    }

                        .index-page-description-picture{
                            object-fit: contain;
                            width: 100%;
                            height: 100%;
                        }

/* ********************************************************** */
/* ********************** Link-Styling ********************** */
/* ********************************************************** */

.password-forgotten-link{
    display: flex;
    width: 100%;
    height: 20px;
    justify-content: flex-end;
    position: relative;
    margin: 0px;
    padding: 0px;
    font-size: 12px;
}

.text-link{
    color: darkgray;
    text-decoration: none;
}

.text-link:hover{
    color: black;
    text-decoration: none;
}

.text-link:visited{
    color: darkgray;
    text-decoration: none;
}

/* ********************************************************** */
/* ******************* Form Control Border ****************** */
/* ********************************************************** */

.form-control-border-inactive{
    border: 2px solid #f0f0f0;
}

.form-control-border-active{
    border: 2px solid #777777 !important;
}

.form-control-border-success{
    border-color: green !important;
}

.form-control-border-error{
    border-color: red !important;
}

.form-control-border-empty{
    border-color: orange !important;
}

.form-control-border-inactive-comment{
    border-top: 2px solid #f0f0f0;
    border-left: 2px solid #f0f0f0;
    border-bottom: 2 px solid #f0f0f0;
}

.form-control-border-active-comment{
    border-top: 2px solid #777777 !important;
    border-left: 2px solid #777777 !important;
    border-bottom: 2px solid #777777 !important;
}

.form-control-border-success-comment{
    border-top-color: green !important;
    border-left-color: green !important;
    border-bottom-color: green !important;
}

.form-control-border-error-comment{
    border-top-color: red !important;
    border-left-color: red !important;
    border-bottom-color: red !important;
}

.form-control-border-empty-comment{
    border-top-color: orange !important;
    border-left-color: orange !important;
    border-bottom-color: orange !important;
}

.form-control-border-inactive-button{
    border-top: 2px solid #f0f0f0;
    border-right: 2px solid #f0f0f0;
    border-bottom: 2 px solid #f0f0f0;
}

.form-control-border-active-button{
    border-top: 2px solid #777777 !important;
    border-right: 2px solid #777777 !important;
    border-bottom: 2px solid #777777 !important;
}

.form-control-border-success-button{
    border-top-color: green !important;
    border-right-color: green !important;
    border-bottom-color: green !important;
}

.form-control-border-error-button{
    border-top-color: red !important;
    border-right-color: red !important;
    border-bottom-color: red !important;
}

.form-control-border-empty-button{
    border-top-color: orange !important;
    border-right-color: orange !important;
    border-bottom-color: orange !important;
}

.form-control-background-inactive{
    background-color: #f0f0f0;
}

.form-control-background-active{
    background-color: lightgray !important;
}

.form-control-background-success{
    background-color: lightgreen !important;
}

.form-control-background-error{
    background-color: lightcoral !important;
}

/* ********************************************************** */
/* ************************* Footer ************************* */
/* ********************************************************** */

.footer{
    font-size: 0.70rem;
    padding: 20px 30px 20px 30px;
    line-height: 1.6;
    height: 256px;
}

.footer-text{
    color: #aaaaaa;
    padding: 3px 15px;
    display: block;
}

.footer-horizontal-rule{
    height: 1px;
    border: none;
    background: #444444;
}

.footer-sections-container{
    display: flex;
    flex-wrap: wrap;
}

/* ********************************************************** */
/* ********************* Footer-Section ********************* */
/* ********************************************************** */

.footer-section-container{
    box-sizing: border-box;
    width: 25%;
    padding: 15px 0 0 0;
    flex-shrink: 0;
}

    .footer-section-container-title{
        color: #aaaaaa;
        padding: 3px 15px;
        display: block;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .footer-language-selectbox{
        -moz-appearance: none; 
        -webkit-appearance: none; 
        appearance: none;
        padding-left: 5px;
        padding-top: 5px;
        padding-bottom: 4px;
        margin-left: 15px;
        min-width: 150px !important;
        border-radius: 3px;
    }

    .footer-link{
        color: #aaaaaa;
        padding: 3px 15px;
        display: block;
        text-decoration: none;
    }

    .footer-link:hover{
        color: #cccccc;
        background-color: rgba(255, 255,255, 0.25);
    }

    .footer-button{
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        width: 100%;
        height: 23px;
        padding: 3px 15px;
        border: none;
        outline: none;
        color: #aaaaaa;
        background-color: #333333;
        text-align: left;
    }

    .footer-button:hover{
        color: #cccccc;
        background-color: rgba(255, 255,255, 0.25);
        cursor: pointer;
    }

/* ********************************************************** */
/* ******************* Social-Media-Links ******************* */
/* ********************************************************** */

.footer-section-socialmedia-container{
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    flex-shrink: 0;
}

.footer-section-socialmedia-inner-container{
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    min-width: 144px;
}

.footer-section-socialmedia-item-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    min-width: 72px;
    min-height: 72px;
    height: 100%;
    border: 1px solid #333333;
}

.footer-section-socialmedia-item-container:hover{
    cursor: pointer;
    border: 1px solid #aaaaaa;
}

.footer-section-socialmedia-item{
    align-self: center;
    width: 36px;
}