/* Familien im Steckbrief */

.profile-family-wrapper {
    position: relative;
    padding: 10px 10px 0 0;
}

.profile-family-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.profile-family-tabs input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.profile-family-tabs label {
    padding: 5px 12px;
    border: 1px solid #9bafba;
    cursor: pointer;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .2s ease;
}

.profile-family-tabs label:hover {
    background: #9bafba;
    color: #fff;
}

.profile-family-tabs input:checked + label {
    background: #9bafba;
    color: #fff;
}

.profile-family-panel {
    width: 100%;
}

.profile-family-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-family-responsible {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    border: 1px solid currentColor;
    font-size: 8px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .75;
}

.profile-family-responsible i {
    font-size: 8px;
}

.profile-family-scroll {
    height: 450px;
    padding: 0 10px 0 0;
    overflow: auto;
}