/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------- CSS for Desktop Devices --------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media only screen and (min-width: 769px) {
    
    .hidden-input-field {
        display: none;;
    }
    
    .hidden-databubble{
        display: none !important;
    }
    
    .mobile-view {
        display: flex;
        flex-direction: column;
        padding-top: 30px;
    }

    .notice {
        padding-top: 30px;
        padding-right: 40px;
        padding-left: 40px;
    }
    
    .form {
        position: relative;
        min-width: 100%;
        padding-top: 30px;
        padding-right: 40px;
        padding-bottom: 0px;
        padding-left: 40px;
        margin: 10px 0;
    }

        .field-of-input-forms {
            padding: 15px 15px 15px 15px;
            min-width: 100%;
        }

        .field-of-input-forms-with-link {
            padding: 15px 15px 1px 15px;
            min-width: 100%;
        }
        
            .input-forms-outer-container {
                width: 100%;
                display: flex;
                flex-direction: row;
            }
            
                .input-forms-inner-container {
                    width: 100%;
                    min-width: 10%;
                    max-width: 100%;
                }

                .input-forms-left-inner-container {
                    width: 100%;
                    min-width: 10%;
                    max-width: 100%;
                    margin-right: 15px;
                }
                
                .input-forms-right-inner-container {
                    display: flex;
                    flex-direction: column;
                    width: 246px !important;
                    min-width: 246px !important;
                    max-width: 246px !important;
                }
            
                    .form-control {
                        display: table;
                        width: 100%;
                        margin-bottom: 10px;
                        height: 40px !important;
                    }
                    
                        .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;
                        }

                        .form-input-street{
                            width: 100%;
                            margin-right: 10px;
                        }

                        .form-input-housenumber{
                            width: 22%;
                            min-width: 22%;
                        }
                        
                        .select-box {
                            -moz-appearance: none;
                            -webkit-appearance: none;
                            appearance: none;
                            font-size: 1.0em;
                            padding-left: 10px;
                            outline: none;
                            display: table-cell;
                            vertical-align: middle;
                            border-radius: 4px;
                            width: 100%;
                            height: 40px;
                            background-color: white;
                            color: darkgray;
                        }
                        
                        .select-box-item-selected {
                            color: black !important;
                        }

                    .password-forgotten-link {
                        display: flex;
                        width: 100%;
                        height: 20px;
                        justify-content: flex-end;
                        position: relative;
                        margin: 0px;
                        padding: 0px;
                        font-size: 12px;
                    }

                    .input-textarea-container {
                        padding-bottom: 22px;
                        margin-bottom: 10px;
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                    }

                        .form-control-input-textarea {
                            margin-bottom: 10px;
                            padding-bottom: 20px;
                            height: 104px;
                            position: relative;
                        }

                            .input-textarea {
                                appearance: none;
                                -moz-appearance: none;
                                -webkit-appearance: none;
                                width: 100%;
                                height: 104px;
                                padding: 10px;
                                outline: none;
                                box-shadow: none;
                                border-radius: 4px;
                                font-size: 1.0em;
                                font-family: 'Quicksand', sans-serif;
                                transition: 0.3s all ease;
                                resize: none;
                            }

                            .input-textarea:placeholder {
                                color: lightgray;
                                font-size: 1.0em;
                                font-style: normal;
                            }
                        
                            .input-textarea:focus {
                                outline: 0;
                            }

                        .counter {
                            display: block;
                            width: 80%;
                            float: right;
                            padding: 0.1rem 0 0 10px;
                            font-size: 0.7rem;
                            color: #777;
                            text-align: right;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis !important;
                        }
                            
                        input[type="file"]{
                            opacity: 0;
                            z-index: -1;
                            position: absolute;
                            top: -1px;
                            left: 0;
                            width: 0.1px;
                            height: 0.1px;
                        }
                            
                        input[type="file"]:focus + label[for="image"],
                        input[type="file"]:focus + label[for="mediafile"]{
                            border: 2px solid #f0f0f0;
                        }
                        
                        label[for="image"],
                        label[for="mediafile"]{
                            display: table-cell;
                            vertical-align: middle;
                            width: 100%;
                            max-width: 1px;
                            height: 40px;
                            min-height: 40px;
                            max-height: 40px;
                            background-color: white;
                            padding: 0px 10px;
                            color: darkgray;
                            border-radius: 4px;
                            cursor: pointer;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis !important;
                        }
                        
                        label[for="image"]:hover,
                        label[for="mediafile"]:hover{
                            background-color: white;
                        }
                            
                    .image-container {
                        display: flex;
                        justify-content: center;
                        align-content: center;
                        padding: 1px;
                        min-width: 246px;
                        max-width: 246px;
                        min-height: 140px;
                        max-height: 140px;
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                        margin: 0 0 10px 0;
                    }

                    .profile-image-container {
                        display: flex;
                        justify-content: center;
                        align-content: center;
                        padding: 1px;
                        width: 100%;
                        min-height: 140px;
                        max-height: 140px;
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                        margin: 0 0 10px 0;
                    }
                            
                        #post-image {
                            width: 100%; 
                            height: 134px;
                            border: white;
                            border-radius: 2px;
                            object-fit: cover;
                            object-position: 50%;
                        }

                        .profile-image {
                            width: 130px;
                            min-height: 130px;
                            max-height: 130px;
                            margin: 0 10px;
                            border: white;
                            border-radius: 67px;
                            object-fit: cover;
                            object-position: center center;
                            background-color: whitesmoke;
                            align-self: center;
                        }

                        .profile-logo {
                            max-width: 100%;
                            min-height: 130px;
                            max-height: 130px;
                            margin: 0 10px;
                            border: white;
                            border-radius: 4px;
                            object-fit: contain;
                            object-position: center center;
                            background-color: whitesmoke;
                            align-self: center;
                        }

                        .rotate-image-button {
                            appearance: none;
                            -moz-appearance: none;
                            -webkit-appearance: none;
                            height: 40px;
                            width: 40px;
                            color: black;
                            font-size: x-large;
                            border-radius: 20px;
                            border: none;
                            align-self: center;
                            padding: 0px;
                            cursor: pointer;
                            background-color: whitesmoke;
                            text-align: center;
                            line-height: 1.6;
                        }
                            
                    .mediafile-container {
                        padding: 1px;
                        width: 100%;
                        min-width: 246px;
                        max-width: 246px;
                        min-height: 140px;
                        max-height: 140px;
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                        margin: 0 0 10px 0;
                    }
                            
                        #mediaupload-mediafile {
                            width: 100%; 
                            height: 134px;
                            border: white;
                            border-radius: 2px;
                            object-fit: cover;
                            object-position: 50%;
                        }
                            
                    .form-control-checkbox {
                        display: table;
                        table-layout: fixed;
                        width: 100%;
                        height: 40px;
                        border-radius: 4px;
                    }
                            
                        .checkbox-and-radiobutton-container {
                            position: relative;
                            display: table-cell;
                            vertical-align: middle;
                            padding-left: 25px;
                            color: darkgray;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                        }

                        .checked-checkbox-and-radiobutton {
                            color: black !important;
                        }

                            input[type="checkbox"],input[type="radio"]{
                                opacity: 0;
                                pointer-events: none;
                                user-select: none;
                                position: absolute;
                                bottom: 10px;
                            }
                             
                            label[for="termsAndConditions"],
                            label[for="privacy"],
                            label[for="showAddress"],
                            label[for="showAccessibility"],
                            label[for="showAnnouncement"],
                            label[for="showDescription"],
                            label[for="ai-generated"],
                            label[for="advertising"],
                            label[for="monday"],
                            label[for="tuesday"],
                            label[for="wednesday"],
                            label[for="thursday"],
                            label[for="friday"],
                            label[for="saturday"],
                            label[for="sunday"]{
                                position: relative;
                                user-select: none;
                            }
        
                            label[for="termsAndConditions"]:after,
                            label[for="privacy"]:after,
                            label[for="showAddress"]:after,
                            label[for="showAccessibility"]:after,
                            label[for="showAnnouncement"]:after,
                            label[for="showDescription"]:after,
                            label[for="ai-generated"]:after,
                            label[for="advertising"]:after,
                            label[for="monday"]:after,
                            label[for="tuesday"]:after,
                            label[for="wednesday"]:after,
                            label[for="thursday"]:after,
                            label[for="friday"]:after,
                            label[for="saturday"]:after,
                            label[for="sunday"]:after{
                                content: '';
                                display: block;
                                border: 2px solid #f0f0f0;
                                border-radius: 4px;
                                width: 10px;
                                height: 10px;
                                position: absolute;
                                left: -20px;
                                top: 1px;
                                cursor: pointer;
                            }
                             
                            input[type="checkbox"]:checked + label[for="termsAndConditions"]:after,
                            input[type="checkbox"]:checked + label[for="privacy"]:after,
                            input[type="checkbox"]:checked + label[for="showAddress"]:after,
                            input[type="checkbox"]:checked + label[for="showAccessibility"]:after,
                            input[type="checkbox"]:checked + label[for="showAnnouncement"]:after,
                            input[type="checkbox"]:checked + label[for="showDescription"]:after,
                            input[type="checkbox"]:checked + label[for="ai-generated"]:after,
                            input[type="checkbox"]:checked + label[for="advertising"]:after,
                            input[type="checkbox"]:checked + label[for="monday"]:after,
                            input[type="checkbox"]:checked + label[for="tuesday"]:after,
                            input[type="checkbox"]:checked + label[for="wednesday"]:after,
                            input[type="checkbox"]:checked + label[for="thursday"]:after,
                            input[type="checkbox"]:checked + label[for="friday"]:after,
                            input[type="checkbox"]:checked + label[for="saturday"]:after,
                            input[type="checkbox"]:checked + label[for="sunday"]:after{
                                content: '';
                                width: 12px;
                                height: 6px;
                                position: absolute;
                                top: 1px;
                                border-left: 3px solid green;
                                border-bottom: 3px solid green;
                                border-top: 1px solid white;
                                border-right: 1px solid white;
                                border-top-left-radius: 0px;
                                border-top-right-radius: 0px;
                                border-bottom-right-radius: 0px;
                                border-bottom-left-radius: 3px;
                                background: white;
                                transform: rotate(-50deg);
                            }

                            input[type="radio"] + label[for="fromBusinessPartnersOnly"],
                            input[type="radio"] + label[for="onlyAfterManualChecking"],
                            input[type="radio"] + label[for="withoutPriorChecking"],
                            input[type="radio"] + label[for="never"],
                            input[type="radio"] + label[for="useImageFileAsCompanyLogo"],
                            input[type="radio"] + label[for="useImageFileAsProfilePicture"]{
                                display: block;
                            }
                              
                            input[type="radio"] + label[for="fromBusinessPartnersOnly"]:after,
                            input[type="radio"] + label[for="onlyAfterManualChecking"]:after,
                            input[type="radio"] + label[for="withoutPriorChecking"]:after,
                            input[type="radio"] + label[for="never"]:after,
                            input[type="radio"] + label[for="useImageFileAsCompanyLogo"]:after,
                            input[type="radio"] + label[for="useImageFileAsProfilePicture"]:after{
                                border-radius: 20px;
                                right: -20px;
                            }
                              
                            input[type="radio"]:checked + label[for="fromBusinessPartnersOnly"]:after,
                            input[type="radio"]:checked + label[for="onlyAfterManualChecking"]:after,
                            input[type="radio"]:checked + label[for="withoutPriorChecking"]:after,
                            input[type="radio"]:checked + label[for="never"]:after,
                            input[type="radio"]:checked + label[for="useImageFileAsCompanyLogo"]:after,
                            input[type="radio"]:checked + label[for="useImageFileAsProfilePicture"]:after{
                                background: green;
                            }

                            label[for="fromBusinessPartnersOnly"],
                            label[for="onlyAfterManualChecking"],
                            label[for="withoutPriorChecking"],
                            label[for="never"],
                            label[for="useImageFileAsCompanyLogo"],
                            label[for="useImageFileAsProfilePicture"]{
                                position: relative;
                                user-select: none;
                            }
                             
                            label[for="fromBusinessPartnersOnly"]:after,
                            label[for="onlyAfterManualChecking"]:after,
                            label[for="withoutPriorChecking"]:after,
                            label[for="never"]:after,
                            label[for="useImageFileAsCompanyLogo"]:after,
                            label[for="useImageFileAsProfilePicture"]:after{
                                content: '';
                                display: block;
                                border: 2px solid #f0f0f0;
                                border-radius: 4px;
                                width: 10px;
                                height: 10px;
                                position: absolute;
                                left: -20px;
                                top: 1px;
                                cursor: pointer;
                            }

        .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;
        }

    /* ********************************************************** */
    /* ******************** Dashboard-Button ******************** */

    .button-dashboard-posts-release {
        z-index: 100;
        position: absolute;
        top: 10px;
        right: -70px;
        background-color: green;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .button-dashboard-posts-edit {
        z-index: 100;
        position: absolute;
        top: 10px;
        right: -70px;
        background-color: orange;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .button-dashboard-posts-delete {
        z-index: 100;
        position: absolute;
        top: 55px;
        right: -70px;
        background-color: red;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .button-dashboard-posts-delete-published {
        z-index: 100;
        position: absolute;
        top: 10px;
        right: -70px;
        background-color: red;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .number-of-unset-inputs{
        position: absolute;
        top: 23px;
        right: 0px;
        width: 25px;
        padding: 5px 0;
        margin-right: 29px;
        text-align: center;
        border-radius: 15px;
        background-color: orange;
    }

    .number-of-unset-inputs-profile{
        position: absolute;
        right: 29px;
        width: 25px;
        padding: 5px 0;
        text-align: center;
        border-radius: 15px;
        background-color: orange;
    }

    .profile-views-mobile-navigation{
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        width: calc(100% - 75px);
        height: 60px;
        font-size: 1.0em;
        color: black;
        text-align: left;
        padding-left: 10px;
        outline: none;
        /*background-color: white;*/
        cursor: pointer;
        margin: 0px 0px 0px 75px;
    }

    .profile-views-mobile-navigation-link{
        text-decoration: none;
        background-size: contain;
        background-position: left;
        background-repeat: no-repeat;
        border-top: none;
        border-right: none;
        border-bottom: 0.25px solid #444444;
        border-left: none;
    }

    .profile-views-mobile-navigation-link:hover{
        background-color: aliceblue;
    }

    .profile-views-mobile-navigation-link:visited{
        text-decoration: none;
    }

    .accessibility-times-outer-container{
        width: 110px !important;
        min-width: 110px !important;
    }

    .accessibility-times-container{
        display: flex;
        height: 36px;
        text-align: right;
        white-space: nowrap;
        overflow-x: scroll;
        align-items: center;
        justify-content: space-evenly;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .accessibility-times-container::-webkit-scrollbar{
        display: none;
    }

    .paragraph-in-accessibility{
        display: flex;
        margin: 0px 0px;
    }

    .time-input{
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        display: flex;
        border-top: none;
        border-right: 2px solid white;
        border-bottom: none;
        border-left: 2px solid white;
        color: black;
        background-color: white;
        text-align: center;
        width: 54px;
        height: 36px;
        padding: 0px;
        margin: 0px 3px 0px 3px;
    }

    .time-input:hover{
        cursor: pointer;
    }

    .time-input:focus{
        outline: none;
        border-left: 2px solid #f0f0f0 !important;
        border-right: 2px solid #f0f0f0 !important;
        border-radius: 0px;
        background-color: aliceblue;
    }
}

@media only screen and (min-width: 1400px) {

    /* ********************************************************** */
    /* ******************** Dashboard-Button ******************** */

    .button-dashboard-posts-release {
        z-index: 100;
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: green;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .button-dashboard-posts-edit {
        z-index: 100;
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: orange;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .button-dashboard-posts-delete {
        z-index: 100;
        position: absolute;
        top: 55px;
        right: 10px;
        background-color: red;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .button-dashboard-posts-delete-published {
        z-index: 100;
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: red;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }
}

@media only screen and (min-width: 2100px) {

    /* ********************************************************** */
    /* ******************** Dashboard-Button ******************** */

    .button-dashboard-posts-release {
        z-index: 100;
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: green;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .button-dashboard-posts-edit {
        z-index: 100;
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: orange;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0p;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .button-dashboard-posts-delete {
        z-index: 100;
        position: absolute;
        top: 55px;
        right: 10px;
        background-color: red;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .button-dashboard-posts-delete-published {
        z-index: 100;
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: red;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------- CSS for Mobile Devices ---------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 768px) and (orientation: portrait) {
    
    /* .hidden-content{
        display: none !important;
    } */

    .hidden-input-field {
        display: none;;
    }

    .hidden-databubble{
        display: none !important;
    }
    
    .desktop-view {
        display: none;
    }
    
    .mobile-view {
        display: flex;
        flex-direction: column;
    }

    .notice {
        padding-top: 30px;
        padding-right: 40px;
        padding-left: 40px;
    }
    
    .form {
        position: relative;
        min-width: 100%;
        margin: 10px 0;
    }

        .field-of-input-forms {
            padding-top: 15px;
            padding-right: 15px;
            padding-bottom: 10px;
            padding-left: 15px;
            min-width: calc(100% - 40px);
        }

        .field-of-input-forms-with-link {
            padding-top: 15px;
            padding-right: 15px;
            padding-bottom: 0px;
            padding-left: 15px;
            min-width: calc(100% - 40px);
        }

            .input-forms-outer-container {
                display: flex;
                flex-direction: column-reverse;
            }

                .input-forms-inner-container {
                    width: 100%;
                    max-width: 100%;
                }

                .input-forms-left-inner-container {
                    width: 100%;
                    max-width: 100%;
                }

                .input-forms-right-inner-container {
                    justify-content: center;
                    width: 100%;
                    min-width: 100%;
                    max-width: 100%;
                }

                    .form-control {
                        display: table;
                        width: 100%;
                        margin-bottom: 10px;
                        height: 40px !important;
                    }

                        .form-input {
                            font-size: 1.0em;
                            padding-top: 0px;
                            padding-right: 0px;
                            padding-bottom: 0px;
                            padding-left: 10px;
                            appearance: none;
                            -moz-appearance: none;
                            -webkit-appearance: none;
                            outline: none;
                            display: table-cell;
                            vertical-align: middle;
                            border-radius: 4px;
                            width: calc(100% - 14px);
                            height: 36px;
                            background-color: white;
                            color: black;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis !important;
                        }

                        .form-input-street{
                            width: 100%;
                            margin-right: 10px;
                        }

                        .form-input-housenumber{
                            width: 23%;
                            min-width: 23%;
                        }

                        .select-box {
                            -moz-appearance: none;
                            -webkit-appearance: none;
                            appearance: none;
                            font-size: 1.0em;
                            padding-left: 10px;
                            outline: none;
                            display: table-cell;
                            vertical-align: middle;
                            border-radius: 4px;
                            width: 100%;
                            min-height: 100%;
                            max-height: 100%;
                            background-color: white;
                            color: darkgray;
                        }

                        .select-box-item-selected {
                            color: black !important;
                        }

                    .password-forgotten-link {
                        display: flex;
                        width: 100%;
                        height: 16px;
                        justify-content: flex-end;
                        position: relative;
                        margin: 0px;
                        padding: 0px;
                        font-size: 10px;
                    }

                    .input-textarea-container {
                        width: calc(100% - 4px);
                        padding-bottom: 22px;
                        margin-bottom: 10px;
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                    }

                    .input-textarea-container-posts-and-videos {
                        width: calc(100% - 4px);
                        aspect-ratio: 16/9;
                        padding-bottom: 2px !important;
                        margin-bottom: 10px;
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                    }

                        .form-control-input-textarea {
                            margin-bottom: 10px;
                            padding-bottom: 20px;
                            height: 84px !important;
                            position: relative;
                        }

                        .form-control-input-textarea-posts-and-videos {
                            margin-bottom: 10px;
                            padding-bottom: 20px !important;
                            height: calc(100% - 58px) !important;
                            position: relative;
                        }

                            .input-textarea {
                                appearance: none;
                                -moz-appearance: none;
                                -webkit-appearance: none;
                                position: relative;
                                width: calc(100% - 24px);
                                height: 90px !important;
                                padding: 10px;
                                outline: none;
                                box-shadow: none;
                                border-radius: 4px;
                                font-size: 1.0em;
                                font-family: 'Quicksand', sans-serif;
                                transition: 0.3s all ease;
                                resize: none;
                            }

                            .input-textarea-posts-and-videos {
                                appearance: none;
                                -moz-appearance: none;
                                -webkit-appearance: none;
                                position: relative;
                                width: calc(100% - 24px);
                                height: 100% !important;
                                padding: 10px;
                                outline: none;
                                box-shadow: none;
                                border-radius: 4px;
                                font-size: 1.0em;
                                font-family: 'Quicksand', sans-serif;
                                transition: 0.3s all ease;
                                resize: none;
                            }

                            .input-textarea:placeholder {
                                color: lightgray;
                                font-size: 1.0em;
                                font-style: normal;
                            }

                            .input-textarea:placeholder {
                                color: lightgray;
                                font-size: 1.0em;
                                font-style: normal;
                            }
                        
                            .input-textarea:focus {
                                outline: 0;
                            }

                        .counter {
                            display: block;
                            width: 80%;
                            float: right;
                            padding: 0.1rem 0 0 10px;
                            font-size: 0.7rem;
                            color: #777;
                            text-align: right;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis !important;
                        }

                        input[type="file"]{
                            opacity: 0;
                            z-index: -1;
                            position: absolute;
                            top: -1px;
                            left: 0;
                            width: 0.1px;
                            height: 0.1px;
                        }
                        
                        input[type="file"]:focus + label[for="image"],
                        input[type="file"]:focus + label[for="mediafile"]{
                            border: 2px solid #f0f0f0;
                        }
                        
                        label[for="image"],
                        label[for="mediafile"]{
                            display: table-cell;
                            vertical-align: middle;
                            width: 100%;
                            max-width: 1px;
                            height:100%;
                            min-height: 40px;
                            max-height: 40px;
                            background-color: white;
                            padding-left: 10px;
                            color: darkgray;
                            border-radius: 4px;
                            cursor: pointer;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis !important;
                        }
                        
                        label[for="image"]:hover,
                        label[for="mediafile"]:hover{
                            background-color: white;
                        }

                    .image-container {
                        display: flex;
                        justify-content: center;
                        align-content: center;
                        padding: 1px;
                        aspect-ratio: 16/9;
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                        margin: 0 0 10px 0 !important;
                    }

                    .profile-image-container {
                        display: flex;
                        justify-content: center;
                        align-content: center;
                        padding: 1px;
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                        margin: 0 0 10px 0 !important;
                    }

                        #post-image {
                            width: 100%; 
                            aspect-ratio: 16/9;
                            border: white;
                            border-radius: 2px;
                            object-fit: cover;
                            object-position: 50%;
                        }

                        .profile-image {
                            width: 130px;
                            min-height: 130px;
                            max-height: 130px;
                            margin: 0 10px;
                            border: white;
                            border-radius: 67px;
                            object-fit: cover;
                            object-position: center center;
                            background-color: whitesmoke;
                            align-self: center;
                        }

                        .profile-logo {
                            max-width: 100%;
                            min-height: 130px;
                            max-height: 130px;
                            margin: 0 10px;
                            border: white;
                            border-radius: 4px;
                            object-fit: contain;
                            object-position: center center;
                            background-color: whitesmoke;
                            align-self: center;
                        }

                        .rotate-image-button {
                            appearance: none;
                            -moz-appearance: none;
                            -webkit-appearance: none;
                            height: 40px;
                            width: 40px;
                            font-size: x-large;
                            color: black;
                            border-radius: 20px;
                            border: none;
                            align-self: center;
                            padding: 0px;
                            cursor: pointer;
                            background-color: whitesmoke;
                            text-align: center;
                            line-height: 1.6;
                        }

                    .mediafile-container {
                        display: flex;
                        justify-content: center;
                        align-content: center;
                        padding: 1px;
                        aspect-ratio: 16/9;
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                        margin: 0 0 10px 0 !important;
                    }

                        #mediaupload-mediafile {
                            width: 100%; 
                            aspect-ratio: 16/9;
                            border: white;
                            border-radius: 2px;
                            object-fit: cover;
                            object-position: 50%;
                        }

                    .form-control-checkbox {
                        display: table;
                        table-layout: fixed;
                        width: calc(100% - 4px);
                        height: 36px !important;
                        max-height: 36px !important;
                        border-radius: 4px;
                    }
                    
                        .checkbox-and-radiobutton-container {
                            position: relative;
                            display: table-cell;
                            vertical-align: middle;
                            padding-left: 25px;
                            color: darkgray;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                        }

                        .checked-checkbox-and-radiobutton {
                            color: black !important;
                        }

                    input[type="checkbox"],
                    input[type="radio"]{
                        position: absolute;
                        opacity: 0;
                        pointer-events: none;
                        user-select: none;
                        margin: 0px 0px;
                    }
                     
                    label[for="termsAndConditions"],
                    label[for="privacy"],
                    label[for="showAddress"],
                    label[for="showAccessibility"],
                    label[for="showAnnouncement"],
                    label[for="showDescription"],
                    label[for="ai-generated"],
                    label[for="advertising"],
                    label[for="monday"],
                    label[for="tuesday"],
                    label[for="wednesday"],
                    label[for="thursday"],
                    label[for="friday"],
                    label[for="saturday"],
                    label[for="sunday"]{
                        position: relative;
                        user-select: none;
                    }
                     
                    label[for="termsAndConditions"]:after,
                    label[for="privacy"]:after,
                    label[for="showAddress"]:after,
                    label[for="showAccessibility"]:after,
                    label[for="showAnnouncement"]:after,
                    label[for="showDescription"]:after,
                    label[for="ai-generated"]:after,
                    label[for="advertising"]:after,
                    label[for="monday"]:after,
                    label[for="tuesday"]:after,
                    label[for="wednesday"]:after,
                    label[for="thursday"]:after,
                    label[for="friday"]:after,
                    label[for="saturday"]:after,
                    label[for="sunday"]:after{
                        content: '';
                        display: block;
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                        width: 10px;
                        height: 10px;
                        position: absolute;
                        left: -20px;
                        top: 1px;
                        cursor: pointer;
                    }
                     
                    input[type="checkbox"]:checked + label[for="termsAndConditions"]:after,
                    input[type="checkbox"]:checked + label[for="privacy"]:after,
                    input[type="checkbox"]:checked + label[for="showAddress"]:after,
                    input[type="checkbox"]:checked + label[for="showAccessibility"]:after,
                    input[type="checkbox"]:checked + label[for="showAnnouncement"]:after,
                    input[type="checkbox"]:checked + label[for="showDescription"]:after,
                    input[type="checkbox"]:checked + label[for="ai-generated"]:after,
                    input[type="checkbox"]:checked + label[for="advertising"]:after,
                    input[type="checkbox"]:checked + label[for="monday"]:after,
                    input[type="checkbox"]:checked + label[for="tuesday"]:after,
                    input[type="checkbox"]:checked + label[for="wednesday"]:after,
                    input[type="checkbox"]:checked + label[for="thursday"]:after,
                    input[type="checkbox"]:checked + label[for="friday"]:after,
                    input[type="checkbox"]:checked + label[for="saturday"]:after,
                    input[type="checkbox"]:checked + label[for="sunday"]:after{
                        content: '';
                        width: 12px;
                        height: 6px;
                        position: absolute;
                        top: 1px;
                        border-left: 3px solid green;
                        border-bottom: 3px solid green;
                        border-top: 1px solid white;
                        border-right: 1px solid white;
                        border-top-left-radius: 0px;
                        border-top-right-radius: 0px;
                        border-bottom-right-radius: 0px;
                        border-bottom-left-radius: 3px;
                        background: white;
                        transform: rotate(-50deg);
                    }

                    input[type="radio"] + label[for="fromBusinessPartnersOnly"],
                    input[type="radio"] + label[for="onlyAfterManualChecking"],
                    input[type="radio"] + label[for="withoutPriorChecking"],
                    input[type="radio"] + label[for="never"],
                    input[type="radio"] + label[for="useImageFileAsCompanyLogo"],
                    input[type="radio"] + label[for="useImageFileAsProfilePicture"]{
                        display: block;
                    }
                      
                    input[type="radio"] + label[for="fromBusinessPartnersOnly"]:after,
                    input[type="radio"] + label[for="onlyAfterManualChecking"]:after,
                    input[type="radio"] + label[for="withoutPriorChecking"]:after,
                    input[type="radio"] + label[for="never"]:after,
                    input[type="radio"] + label[for="useImageFileAsCompanyLogo"]:after,
                    input[type="radio"] + label[for="useImageFileAsProfilePicture"]:after{
                        border-radius: 20px;
                        right: -20px;
                    }
                      
                    input[type="radio"]:checked + label[for="fromBusinessPartnersOnly"]:after,
                    input[type="radio"]:checked + label[for="onlyAfterManualChecking"]:after,
                    input[type="radio"]:checked + label[for="withoutPriorChecking"]:after,
                    input[type="radio"]:checked + label[for="never"]:after,
                    input[type="radio"]:checked + label[for="useImageFileAsCompanyLogo"]:after,
                    input[type="radio"]:checked + label[for="useImageFileAsProfilePicture"]:after{
                        background: green;
                    }
                
                    label[for="fromBusinessPartnersOnly"],
                    label[for="onlyAfterManualChecking"],
                    label[for="withoutPriorChecking"],
                    label[for="never"],
                    label[for="useImageFileAsCompanyLogo"],
                    label[for="useImageFileAsProfilePicture"]{
                        position: relative;
                        user-select: none;
                    }

                    label[for="fromBusinessPartnersOnly"]:after,
                    label[for="onlyAfterManualChecking"]:after,
                    label[for="withoutPriorChecking"]:after,
                    label[for="never"]:after,
                    label[for="useImageFileAsCompanyLogo"]:after,
                    label[for="useImageFileAsProfilePicture"]:after{
                        content: '';
                        display: block;
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                        width: 10px;
                        height: 10px;
                        position: absolute;
                        left: -20px;
                        top: 1px;
                        cursor: pointer;
                    }

        .button-inside-form {
            position: relative;
            background: green;
            border: 1px solid black;
            width: 100%;
            padding: 10px;
            outline: none;
            color: white;
            font-size: 1.0em;
            cursor: pointer;
            margin-top: 10px;
            margin-bottom: 0px;
            transition: 0.3s all ease;
        }

        .button-inside-form:hover, .button-inside-form:focus {
            background: darkgreen;
        }

    .button-outside-form {
        position: relative;
        background: green;
        border: 1px solid black;
        width: 100%;
        padding: 10px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        margin: 0px 0px;
        transition: 0.3s all ease;
    }

    .button-outside-form:hover {
        background-color: darkgreen;
    }

    .button-outside-form:focus {
        background-color: darkgreen;
    }

    /* ********************************************************** */
    /* ******************** Dashboard-Button ******************** */

    .button-dashboard-posts-release {
        z-index: 100;
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: green;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .button-dashboard-posts-edit {
        z-index: 100;
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: orange;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .button-dashboard-posts-delete {
        z-index: 100;
        position: absolute;
        top: 55px;
        right: 10px;
        background-color: red;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .button-dashboard-posts-delete-published {
        z-index: 100;
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: red;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .number-of-unset-inputs{
        position: absolute;
        top: -18px;
        right: -36px;
        width: 25px;
        padding: 5px 0;
        margin-right: 29px;
        text-align: center;
        border-radius: 15px;
        background-color: orange;
    }

    .number-of-unset-inputs-profile{
        position: absolute;
        right: 29px;
        width: 25px;
        padding: 5px 0;
        text-align: center;
        border-radius: 15px;
        background-color: orange;
    }
    
    .profile-views-mobile-navigation-container {
        width: calc(100% - 80px);
    }

    .profile-views-mobile-navigation{
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        height: 60px;
        font-size: 1.0em;
        color: black;
        text-align: left;
        padding-left: 10px;
        outline: none;
        /*background-color: white;*/
        cursor: pointer;
        margin-left: 75px;
    }

    .profile-views-mobile-navigation-link{
        text-decoration: none;
        background-size: contain;
        background-position: left;
        background-repeat: no-repeat;
        border-top: none;
        border-right: none;
        border-bottom: 0.25px solid #444444;
        border-left: none;
    }

    .profile-views-mobile-navigation-link:hover{
        background-color: aliceblue;
    }

    .profile-views-mobile-navigation-link:visited{
        text-decoration: none;
    }

    .accessibility-times-outer-container{
        width: 90px !important;
        min-width: 110px !important;
    }

    .accessibility-times-container{
        display: flex;
        height: 36px;
        text-align: right;
        white-space: nowrap;
        overflow-x: scroll;
        align-items: center;
        justify-content: space-between;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .accessibility-times-container::-webkit-scrollbar{
        display: none;
    }

    .paragraph-in-accessibility{
        display: flex;
        margin: 0px 0px;
    }

    .time-input{
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        display: flex;
        border-top: none;
        border-right: 2px solid white;
        border-bottom: none;
        border-left: 2px solid white;
        color: black;
        background-color: white;
        text-align: center;
        width: 54px;
        height: 36px;
        padding: 0px;
        margin: 0px 3px 0px 3px;
    }

    .time-input:hover{
        cursor: pointer;
    }

    .time-input:focus{
        outline: none;
        border-left: 2px solid #f0f0f0 !important;
        border-right: 2px solid #f0f0f0 !important;
        border-radius: 0px;
        background-color: aliceblue;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------- CSS for Mobile Devices ---------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 768px) and (orientation: landscape) {
    
    .hidden-input-field {
        display: none;;
    }
    
    .hidden-databubble{
        display: none !important;
    }
    
    .desktop-view {
        display: none;
    }
    
    .mobile-view {
        display: flex;
        flex-direction: column;
    }

    .notice {
        padding-top: 0px;
        padding-right: 40px;
        padding-left: 40px;
    }
    
    .form {
        position: relative;
        min-width: 100%;
        margin: 10px 0;
    }

        .field-of-input-forms {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding-top: 15px;
            padding-right: 15px !important;
            padding-bottom: 10px;
            padding-left: 15px;
            min-width: calc(100% - 40px);
        }

        .field-of-input-forms-with-link {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding-top: 15px;
            padding-right: 15px !important;
            padding-bottom: 0px;
            padding-left: 15px;
            min-width: calc(100% - 40px);
        }

            .input-forms-outer-container {
                width: 100%;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
            }

                .input-forms-inner-container {
                    width: 100%;
                    max-width: 100%;
                }

                .input-forms-left-inner-container {
                    width: 100%;
                    min-width: 10%;
                    max-width: 100%;
                    margin-right: 15px;
                }

                .input-forms-right-inner-container {
                    display: flex;
                    flex-direction: column;
                    width: 246px !important;
                    min-width: 246px !important;
                    max-width: 246px !important;
                }

                    .form-control {
                        display: table;
                        min-width: 100%;
                        max-width: 100%;
                        margin-bottom: 10px;
                        height: 40px !important;
                    }

                        .form-input {
                            font-size: 14px;
                            padding-top: 0px;
                            padding-right: 0px;
                            padding-bottom: 0px;
                            padding-left: 10px;
                            appearance: none;
                            -moz-appearance: none;
                            -webkit-appearance: none;
                            outline: none;
                            display: table-cell;
                            vertical-align: middle;
                            border-radius: 4px;
                            width: calc(100% - 14px);
                            height: 36px;
                            background-color: white;
                            color: black;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis !important;
                        }

                        .form-input-street{
                            width: 100%;
                            max-height: 36px;
                            margin-right: 10px;
                        }

                        .form-input-housenumber{
                            width: 15%;
                            max-height: 36px;
                            min-width: 15%;
                        }

                        .select-box {
                            -moz-appearance: none;
                            -webkit-appearance: none;
                            appearance: none;
                            font-size: 14px;
                            padding-left: 10px;
                            outline: none;
                            display: table-cell;
                            vertical-align: middle;
                            border-radius: 4px;
                            width: 100%;
                            min-height: 100%;
                            max-height: 100%;
                            background-color: white;
                            color: darkgray;
                        }

                        .select-box-item-selected {
                            color: black !important;
                        }

                    .password-forgotten-link {
                        display: flex;
                        width: 100%;
                        height: 16px;
                        justify-content: flex-end;
                        position: relative;
                        margin: 0px;
                        padding: 0px;
                        font-size: 10px;
                    }

                    .input-textarea-container {
                        padding-bottom: 22px;
                        margin-bottom: 10px;
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                        min-width: calc(100% - 4px);
                    }

                        .form-control-input-textarea {
                            margin-bottom: 10px;
                            padding-bottom: 20px;
                            height: 84px !important;
                            position: relative;
                            min-width: 100%;
                        }

                            .input-textarea {
                                appearance: none;
                                -moz-appearance: none;
                                -webkit-appearance: none;
                                position: relative;
                                width: calc(100% - 24px);
                                height: 90px !important;
                                padding: 10px;
                                outline: none;
                                box-shadow: none;
                                border-radius: 4px;
                                font-size: 14px;
                                font-family: 'Quicksand', sans-serif;
                                transition: 0.3s all ease;
                                resize: none;
                            }

                            .input-textarea:placeholder {
                                color: lightgray;
                                font-size: 14px;
                                font-style: normal;
                            }
                        
                            .input-textarea:focus {
                                outline: 0;
                            }

                        .counter {
                            float: right;
                            padding: 0.1rem 0 0 0;
                            font-size: 0.7rem;
                            color: #777;
                            }

                            
                        input[type="file"]{
                            opacity: 0;
                            z-index: -1;
                            position: absolute;
                            top: -1px;
                            left: 0;
                            width: 0.1px;
                            height: 0.1px;
                        }
                            
                        input[type="file"]:focus + label[for="image"],
                        input[type="file"]:focus + label[for="mediafile"]{
                            border: 2px solid #f0f0f0;
                        }
                            
                        label[for="image"],
                        label[for="mediafile"]{
                            display: table-cell;
                            vertical-align: middle;
                            width: 100%;
                            max-width: 1px;
                            height: 100%;
                            min-height: 40px;
                            max-height: 40px;
                            background-color: white;
                            padding-left: 10px;
                            color: darkgray;
                            border-radius: 4px;
                            cursor: pointer;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis !important;
                        }
                            
                        label[for="image"]:hover,
                        label[for="mediafile"]:hover{
                            background-color: white;
                        }

                    .image-container {
                        display: flex;
                        justify-content: center;
                        align-content: center;
                        padding: 1px;
                        min-width: 240px;
                        max-width: 240px;
                        min-height: 134px;
                        max-height: 134px;
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                        margin: 0 0 10px 0 !important;
                    }

                    .profile-image-container {
                        display: flex;
                        justify-content: center;
                        align-content: center;
                        padding: 1px;
                        width: 100%;
                        min-height: 134px;
                        max-height: 134px;
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                        margin: 0 0 10px 0 !important;
                    }
    
                        #post-image {
                            width: 100%;
                            height: 134px;
                            border: white;
                            border-radius: 2px;
                            object-fit: cover;
                            object-position: 50%;
                        }

                        .profile-image {
                            width: 130px;
                            min-height: 130px;
                            max-height: 130px;
                            margin: 0 10px;
                            border: white;
                            border-radius: 67px;
                            object-fit: cover;
                            object-position: center center;
                            background-color: whitesmoke;
                            align-self: center;
                        }

                        .profile-logo {
                            max-width: 100%;
                            min-height: 130px;
                            max-height: 130px;
                            margin: 0 10px;
                            border: white;
                            border-radius: 4px;
                            object-fit: contain;
                            object-position: center center;
                            background-color: whitesmoke;
                            align-self: center;
                        }

                        .rotate-image-button {
                            appearance: none;
                            -moz-appearance: none;
                            -webkit-appearance: none;
                            height: 40px;
                            width: 40px;
                            font-size: x-large;
                            color: black;
                            border-radius: 20px;
                            border: none;
                            align-self: center;
                            padding: 0px;
                            cursor: pointer;
                            background-color: whitesmoke;
                            text-align: center;
                            line-height: 1.6;
                        }
    
                    .mediafile-container {
                        padding: 1px;
                        min-width: 240px;
                        max-width: 240px;
                        min-height: 134px;
                        max-height: 134px;
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                        margin: 0 0 10px 0 !important;
                    }
    
                        #mediaupload-mediafile {
                            width: 100%; 
                            height: 134px;
                            border: white;
                            border-radius: 2px;
                            object-fit: cover;
                            object-position: 50%;
                        }

                    .form-control-checkbox {
                        display: table;
                        table-layout: fixed;
                        width: calc(100% - 4px);
                        min-width: calc(100% - 4px);
                        max-width: calc(100% - 4px);
                        height: 36px !important;
                        max-height: 36px !important;
                        border-radius: 4px;
                    }

                        .checkbox-and-radiobutton-container {
                            position: relative;
                            display: table-cell;
                            vertical-align: middle;
                            padding-left: 25px;
                            color: darkgray;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                        }

                        .checked-checkbox-and-radiobutton {
                            color: black !important;
                        }

                    input[type="checkbox"],
                    input[type="radio"]{
                        position: absolute;
                        opacity: 0;
                        pointer-events: none;
                        user-select: none;
                        margin: 0px 0px;
                    }
                     
                    label[for="termsAndConditions"],
                    label[for="privacy"],
                    label[for="showAddress"],
                    label[for="showAccessibility"],
                    label[for="showAnnouncement"],
                    label[for="showDescription"],
                    label[for="ai-generated"],
                    label[for="advertising"],
                    label[for="monday"],
                    label[for="tuesday"],
                    label[for="wednesday"],
                    label[for="thursday"],
                    label[for="friday"],
                    label[for="saturday"],
                    label[for="sunday"]{
                        position: relative;
                        user-select: none;
                    }
                     
                    label[for="termsAndConditions"]:after,
                    label[for="privacy"]:after,
                    label[for="showAddress"]:after,
                    label[for="showAccessibility"]:after,
                    label[for="showAnnouncement"]:after,
                    label[for="showDescription"]:after,
                    label[for="ai-generated"]:after,
                    label[for="advertising"]:after,
                    label[for="monday"]:after,
                    label[for="tuesday"]:after,
                    label[for="wednesday"]:after,
                    label[for="thursday"]:after,
                    label[for="friday"]:after,
                    label[for="saturday"]:after,
                    label[for="sunday"]:after{
                        content: '';
                        display: block;
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                        width: 10px;
                        height: 10px;
                        position: absolute;
                        left: -20px;
                        top: 1px;
                        cursor: pointer;
                    }
                     
                    input[type="checkbox"]:checked + label[for="termsAndConditions"]:after,
                    input[type="checkbox"]:checked + label[for="privacy"]:after,
                    input[type="checkbox"]:checked + label[for="showAddress"]:after,
                    input[type="checkbox"]:checked + label[for="showAccessibility"]:after,
                    input[type="checkbox"]:checked + label[for="showAnnouncement"]:after,
                    input[type="checkbox"]:checked + label[for="showDescription"]:after,
                    input[type="checkbox"]:checked + label[for="ai-generated"]:after,
                    input[type="checkbox"]:checked + label[for="advertising"]:after,
                    input[type="checkbox"]:checked + label[for="monday"]:after,
                    input[type="checkbox"]:checked + label[for="tuesday"]:after,
                    input[type="checkbox"]:checked + label[for="wednesday"]:after,
                    input[type="checkbox"]:checked + label[for="thursday"]:after,
                    input[type="checkbox"]:checked + label[for="friday"]:after,
                    input[type="checkbox"]:checked + label[for="saturday"]:after,
                    input[type="checkbox"]:checked + label[for="sunday"]:after{
                        content: '';
                        width: 12px;
                        height: 6px;
                        position: absolute;
                        top: 1px;
                        border-left: 3px solid green;
                        border-bottom: 3px solid green;
                        border-top: 1px solid white;
                        border-right: 1px solid white;
                        border-top-left-radius: 0px;
                        border-top-right-radius: 0px;
                        border-bottom-right-radius: 0px;
                        border-bottom-left-radius: 3px;
                        background: white;
                        transform: rotate(-50deg);
                    }

                    input[type="radio"] + label[for="fromBusinessPartnersOnly"],
                    input[type="radio"] + label[for="onlyAfterManualChecking"],
                    input[type="radio"] + label[for="withoutPriorChecking"],
                    input[type="radio"] + label[for="never"],
                    input[type="radio"] + label[for="useImageFileAsCompanyLogo"],
                    input[type="radio"] + label[for="useImageFileAsProfilePicture"]{
                        display: block;
                        max-width: 100%;
                    }
                      
                    input[type="radio"] + label[for="fromBusinessPartnersOnly"]:after,
                    input[type="radio"] + label[for="onlyAfterManualChecking"]:after,
                    input[type="radio"] + label[for="withoutPriorChecking"]:after,
                    input[type="radio"] + label[for="never"]:after,
                    input[type="radio"] + label[for="useImageFileAsCompanyLogo"]:after,
                    input[type="radio"] + label[for="useImageFileAsProfilePicture"]:after{
                        border-radius: 20px;
                        right: -20px;
                    }
                      
                    input[type="radio"]:checked + label[for="fromBusinessPartnersOnly"]:after,
                    input[type="radio"]:checked + label[for="onlyAfterManualChecking"]:after,
                    input[type="radio"]:checked + label[for="withoutPriorChecking"]:after,
                    input[type="radio"]:checked + label[for="never"]:after,
                    input[type="radio"]:checked + label[for="useImageFileAsCompanyLogo"]:after,
                    input[type="radio"]:checked + label[for="useImageFileAsProfilePicture"]:after{
                        background: green;
                    }

                    label[for="fromBusinessPartnersOnly"],
                    label[for="onlyAfterManualChecking"],
                    label[for="withoutPriorChecking"],
                    label[for="never"],
                    label[for="useImageFileAsCompanyLogo"],
                    label[for="useImageFileAsProfilePicture"]{
                        position: relative;
                        user-select: none;
                    }
                    
                    label[for="fromBusinessPartnersOnly"]:after,
                    label[for="onlyAfterManualChecking"]:after,
                    label[for="withoutPriorChecking"]:after,
                    label[for="never"]:after,
                    label[for="useImageFileAsCompanyLogo"]:after,
                    label[for="useImageFileAsProfilePicture"]:after{
                        content: '';
                        border: 2px solid #f0f0f0;
                        border-radius: 4px;
                        width: 10px;
                        height: 10px;
                        position: absolute;
                        left: -20px;
                        top: 1px;
                        cursor: pointer;
                        font-size: 14px;
                    }

        .button-inside-form {
            position: relative;
            background: green;
            border: 1px solid black;
            width: 100%;
            padding: 10px;
            outline: none;
            color: white;
            font-size: 14px;
            cursor: pointer;
            margin-top: 10px;
            margin-bottom: 0px;
            transition: 0.3s all ease;
        }

        .button-inside-form:hover, .button-inside-form:focus {
            background: darkgreen;
        }

    .button-outside-form {
        position: relative;
        background: green;
        border: 1px solid black;
        width: 100%;
        padding: 10px;
        outline: none;
        color: white;
        font-size: 14px;
        cursor: pointer;
        margin: 0px 0px;
        transition: 0.3s all ease;
    }

    .button-outside-form:hover {
        background-color: darkgreen;
    }

    .button-outside-form:focus {
        background-color: darkgreen;
    }

    /* ********************************************************** */
    /* ******************** Dashboard-Button ******************** */

    .button-dashboard-posts-release {
        z-index: 100;
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: green;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .button-dashboard-posts-edit {
        z-index: 100;
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: orange;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .button-dashboard-posts-delete {
        z-index: 100;
        position: absolute;
        top: 55px;
        right: 10px;
        background-color: red;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .button-dashboard-posts-delete-published {
        z-index: 100;
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: red;
        border: 1px solid black;
        width: 100px;
        padding: 10px 0px 10px 0px;
        outline: none;
        color: white;
        font-size: 1.0em;
        cursor: pointer;
        transition: 0.3s all ease;
        text-decoration: none;
        text-align: center;
    }

    .number-of-unset-inputs{
        position: absolute;
        top: -18px;
        right: -36px;
        width: 25px;
        padding: 5px 0;
        margin-right: 29px;
        text-align: center;
        border-radius: 15px;
        background-color: orange;
    }

    .number-of-unset-inputs-profile{
        position: absolute;
        right: 29px;
        width: 25px;
        padding: 5px 0;
        text-align: center;
        border-radius: 15px;
        background-color: orange;
    }

    .profile-views-mobile-navigation{
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        height: 60px;
        font-size: 1.0em;
        color: black;
        text-align: left;
        padding-left: 10px;
        outline: none;
        /*background-color: white;*/
        cursor: pointer;
        margin: 0px 0px 0px 75px;
    }

    .profile-views-mobile-navigation-link{
        text-decoration: none;
        background-size: contain;
        background-position: left;
        background-repeat: no-repeat;
        border-top: none;
        border-right: none;
        border-bottom: 0.25px solid #444444;
        border-left: none;
    }

    .profile-views-mobile-navigation-link:hover{
        background-color: aliceblue;
    }

    .profile-views-mobile-navigation-link:visited{
        text-decoration: none;
    }

    .accessibility-times-outer-container{
        width: 90px !important;
        min-width: 110px !important;
    }

    .accessibility-times-container{
        display: flex;
        height: 36px;
        text-align: right;
        white-space: nowrap;
        overflow-x: scroll;
        align-items: center;
        justify-content: space-between;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .accessibility-times-container::-webkit-scrollbar{
        display: none;
    }

    .paragraph-in-accessibility{
        display: flex;
        margin: 0px 0px;
    }

    .time-input{
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        display: flex;
        border-top: none;
        border-right: 2px solid white;
        border-bottom: none;
        border-left: 2px solid white;
        color: black;
        background-color: white;
        text-align: center;
        width: 54px;
        height: 36px;
        padding: 0px;
        margin: 0px 3px 0px 3px;
    }

    .time-input:hover{
        cursor: pointer;
    }

    .time-input:focus{
        outline: none;
        border-left: 2px solid #f0f0f0 !important;
        border-right: 2px solid #f0f0f0 !important;
        border-radius: 0px;
        background-color: aliceblue;
    }
}