.burger-menu {
    display: block;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    color: #333;
}

.burger-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    @media screen and (min-width: 600px) {
        display: none;
    }
}

.burger-icon:hover {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    @media screen and (min-width: 600px) {
        display: none;
    }
    background-color: #a5b519;
	color: #ffffff;
}

.burger-icon:active h2, 
.burger-icon:hover h2{
    color: #ffffff;
}


.gdpr-tab {
    display: none;
}

/* Style for tab content */
.gdpr-tab-content {
    display: none;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

.vertical-wrapper {
}

.horizontal-wrapper {
    padding-top: 20px;
    display: flex;
    @media screen and (max-width: 600px) {
        flex-direction: column;
    }
}

.horizontal-wrapper > div {
    display: flex;
    @media screen and (max-width: 600px) {
        flex-direction: column;
        display: none;
    }
}

.gdpr-tab-link{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; /* Adjust the padding as needed */
    background-color: white;
    color: #2271b1;
    margin-right: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gdpr-tab-link-last-clicked,
.gdpr-tab-link:active, 
.gdpr-tab-link:hover{
	background-color: #a5b519;
	color: #ffffff;
    margin-right: 10px;
    /*transform: translateY(2px);
    font-weight: bold; */
}

.recaptchaOption{
    padding: 20px;
    background: #fff;
    border-bottom: 2px solid #f1f1f1;
    -webkit-box-shadow: 5px 5px 20px 0 rgb(0 0 0 / 20%);
    box-shadow: 5px 5px 20px 0 rgb(0 0 0 / 20%);
    border-radius: 0.4rem;
    margin-bottom: 1em;
    position: relative;
    border-spacing: 16px 0px;
}

.recaptchaOptionRight{
    padding: 10px;
    background: #fff;
    position: relative;
    @media screen and (max-width: 780px) {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/*.recaptchaOptionRight td{
    @media screen and (max-width: 780px) {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}*/

.recaptchaOptionRight td{
    @media screen and (max-width: 780px) {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
}

.recaptchaOptionLeft{
    padding: 20px;
    background: #fff;
}

.recaptchaWrap{
    padding: 30px;
}

.hilfe_dialog{
    position: fixed;
    padding: 20px;
    background-color: rgba(250, 250, 200);
    border-radius: 8px;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
    Display: None;
    transition: opacity 300ms ease-in-out;
    z-index: 9999;
    min-width: 200px;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: move;
	resize: both;
    overflow: auto;
}

.hilfe_link{
    text-decoration: none;
    font-weight: bold;
    cursor: help;
}

.schliessen_button{
    position: absolute;
    top: 10px;
    right: 10px;
    text-decoration: none;
    color: red;
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
}

.large-smiley {
    font-size: 24px;
}

.large-checkmark {
    font-size: 32px;
    color: #9ACD32;
    font-weight: bold;
}

.settings-form {
    position: relative; /* Needed for positioning the submit button */
}

#submit-container {
    position: sticky;
    right: 0; /* Align to the right */
    bottom: 0;
    background: transparent;
    padding: 5px;
    margin: 0;
    /*box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);*/
    display: flex; /* Align button horizontally */
    justify-content: flex-end; /* Align button to the right */
    pointer-events: none;
}

#submit-container .submit {
    margin: 0;
    pointer-events: auto; 
}