.floating-cta-style-1 {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
}

button:focus-visible, 
a:focus-visible {
    border: 1px solid #fff !important;
    outline: 1.5px dashed #000 !important;
}

.floating-cta-style-1 .floating-cta__wrapper-button {
    display: block;
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 50px;
    cursor: pointer;
    padding: 0;
}

.floating-cta-style-1 .floating-cta__wrapper-button .icon-svg {
    fill: #fff;
    padding: 12px;
    line-height: 1em;
}

.floating-cta-style-1 .floating-cta__wrapper-opener-label {
    background: #fff;
    border: 1px solid #ddd;
    padding: 5px;
    font-size: 0.7em;
    font-weight: 600;
    border-radius: 5px;
    line-height: 1em;
    margin-top: 5px;
}

.floating-cta-style-1 #floating-cta__wrapper-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 6px;
}

.floating-cta-style-1 #floating-cta__wrapper-content.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.floating-cta-style-1 .floating-cta__wrapper-button:hover {
    transform: scale(1.05);
    transition: .3s all;
}

.floating-cta-style-2 {
    position: fixed;
    top: 50%;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-50%);
    z-index: 999;
}

.floating-cta-style-2 .floating-cta__wrapper-button {
    display: block;
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: #000;
    color: #fff;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 50px;
    cursor: pointer;
    padding: 0;
}

.floating-cta-style-2 .floating-cta__wrapper-button .icon-svg {
    fill: #fff;
    padding: 12px;
    line-height: 1em;
}

.floating-cta-style-2 #floating-cta__wrapper-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-direction: column;
    gap: 2px;
    display: flex;
    opacity: 1;
}

div#floating-cta__overlayer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
}

.floating-cta__overlayer-container {
    width: 90%;
    max-width: 450px;
    display: flex;
    align-self: center;
    justify-content: center;
    background: #fff;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
}

.floating-cta__overlayer-title {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 5px;
}

table.floating-cta__overlayer-table {
    text-align: left;
    margin-bottom: 10px;
}

table.floating-cta__overlayer-table caption {
    position: absolute;
    left: -9999px;
}

table.floating-cta__overlayer-table th,
table.floating-cta__overlayer-table td {
    padding: 3px 10px;
    vertical-align: top;
}

span.icon-label {
    display: none;
    font-size: 1em;
    line-height: 1em;
}

.gerade-geoeffnet {
    margin-bottom: 10px;
    padding: 8px 10px;
    background-color: #f8f8f8;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9em;
}

.gerade-geoeffnet strong {
    color: #000;
}

@media screen and (max-width:767px){
    table.floating-cta__overlayer-table tr,
    .floating-cta-style-2 table.floating-cta__overlayer-table tr {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .floating-cta-style-2 {
        top: unset;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        transform: unset;
    }
    
    .floating-cta-style-2 #floating-cta__wrapper-content {
        width: 100%;
        flex-direction: row;
    }
    
    .floating-cta-style-2 .floating-cta__wrapper-button {
        width: 33.333%;
        height: auto;
        line-height: 1em;
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 10px;
    }
    
    .floating-cta-style-2 .floating-cta__wrapper-button .icon-svg {
        max-width: 50px;
        margin: 0 auto;
        padding: 0;
    }
    
    span.icon-label {
        display: block;
        font-size: 10px;
    }
    
    footer {
        padding-bottom: 30px;
    }
}
