/* =========================================================
   Kinderschutz - Floating Button
   Sportfreunde Charlottenburg-Wilmersdorf 03 e.V.
   ========================================================= */

.kinderschutz-button {
    position: fixed;
    right: 0;
    top: 45%;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 13px 17px;

    background: #b71c1c;
    color: #ffffff;

    border-radius: 8px 0 0 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);

    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;

    text-decoration: none;

    transform: translateY(-50%);

    transition:
        background-color 0.2s ease,
        padding-right 0.2s ease,
        box-shadow 0.2s ease;
}

.kinderschutz-button:hover,
.kinderschutz-button:focus {
    background: #8f1515;
    color: #ffffff;

    padding-right: 21px;

    text-decoration: none;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.30);
}

.kinderschutz-button:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

.kinderschutz-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    font-size: 21px;
    line-height: 1;
}

.kinderschutz-text {
    white-space: nowrap;
}


/* =========================================================
   Smartphone
   ========================================================= */

@media (max-width: 600px) {

    .kinderschutz-button {
        top: auto;
        bottom: 90px;
        right: 0;

        padding: 11px 13px;

        border-radius: 8px 0 0 8px;

        transform: none;
    }

    .kinderschutz-icon {
        width: 27px;
        height: 27px;

        font-size: 23px;
    }
}


/* =========================================================
   Sehr kleine Displays
   ========================================================= */

@media (max-width: 380px) {

    .kinderschutz-button {
        bottom: 75px;
        padding: 9px 11px;
    }
}