.weristwer_container {
	display: flex;
	display: -webkit-flex;
	-moz-display: flex;
	flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	justify-content: flex-start;
	-moz-justify-content: flex-start;
	-webkit-justify-content: flex-start;
}
.weristwer_accounts {
	width: 33%;
	margin: 0 2px 5px 2px;
}
.weristwer_zweit {
	height: 250px;
	overflow: auto;

}


.userbit-avatar {
    position: relative;
    display: inline-block;
}

.userbit-hovertext {
    position: absolute;
    top: 0;
    left: 0;
    width: 92%;
    height: 92%;
    background: var(--back);
    color: #fff;

    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.0s ease;
    text-align: center;
    pointer-events: none;
}

.userbit-avatar:hover .userbit-hovertext {
    opacity: 1;
    pointer-events: auto;
}

/* Container für Zweit-Avatare */
.zweit-avatars {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 10px;
    max-width: 90%;
	color: var(--main);
}

/* Kleine Avatare */
.zweit-avatars img {
width: 70px;
    height: 70px;
    object-fit: cover;
    /* border-radius: 6px; */
    border: 2px solid var(--main);
    transition: transform 1.0s ease;
}

.zweit-avatars img:hover {
    transform: scale(1.05);
}


		