/* FAMILY STATISTICS */

.family_numbers {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 3px;
	margin: 2px auto;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 1px;
}

/* FORMATE FAMILY MEMBERS PICTURE */

.family-picture { 
	width: 96px;
	height: 85px;
	margin: 3px auto;
}

.taken-img {
	position: relative;
	box-sizing: border-box;
	width: 100px;
	padding: 2px;
}

.taken-img img {
	opacity: 1;	
	margin: 0px auto;
}

.free-img {
	position: relative;
	box-sizing: border-box;
	width: 100px;
	padding: 1px 2px;
}

.free-img img {
	opacity: 1;
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
	margin: 1px auto;
}

/* TEXTAREAS */ 

.family-fullname {
	box-sizing: border-box;
	width: 100px;
	margin: 0px auto;
	padding: 4px;
	text-align: center;
	letter-spacing: 1px;
	font-size: 8px;
	text-transform: uppercase;
	line-height: 1.1em;
}

.edit-fammember {
	box-sizing: border-box;
	width: 100px;
	margin: 0px auto;
	margin-bottom: 3px;
	padding: 3px;
}

.claim-fammember {
	padding: 3px;
	text-transform: uppercase;
	font-size: 7px;
	text-align: center;
	line-height: 1.1em;
	margin-top: 5px;
	letter-spacing: 1px;
}

/* FAMILY DESCRIPTION POPUP */
.family-pop { 
	position: fixed; 
	top: 0; 
	right: 0; 
	bottom: 0; 
	left: 0; 
	background: hsla(0, 0%, 0%, 0.5);
	z-index: 1; opacity:0; 
	-webkit-transition: .5s ease-in-out; 
	-moz-transition: .5s ease-in-out; 
	transition: .5s ease-in-out; pointer-events: none; 
} 

.family-pop:target { 
	opacity:1; 
	pointer-events: auto; 
} 

.family-pop > .pop { 
	width: 300px; 
	position: relative; 
	margin: 10% auto; 
	padding: 25px; 
	z-index: 3; 
} 

.family-pop > .pop > .description {
	margin: 10px auto;
	max-height: 130px;
	overflow: auto;
	line-height: 1.3em;
}

.closepop { 
	position: absolute; 
	right: -5px; 
	top:-5px; 
	width: 100%; 
	height: 100%; 
	z-index: 2; 
}:root {
            --vertikaler-Strich: #C7CFD9;
            --pfeil: #8596a6;
            --kreis-innen: #8596a6;
            --kreis-border: #293340;
            --event-box: #8596a6;
            --title: #293340;
            --text: #C7CFD9;
            --datum: #293340;
            --link: #C7CFD9;
            }
            
            #usertimeline {
                position: relative;
                max-width: 880px;
                margin: 0 auto;    
            }
                    
            #usertimeline::after {
                content: '';    
                position: absolute;    
                width: 6px;    
                background-color: var(--vertikaler-Strich);    
                top: 0;    
                bottom: 0;    
                margin-left: -3px;    
            }
                    
            #usertimeline .event {
                padding: 10px 40px 10px 40px;
                position: relative;
                background-color: inherit;
            }
                    
            #usertimeline .event::before {
                content: '';
                height: 0;
                position: absolute;
                top: 22px;
                width: 0;
                z-index: 1;
                left: 30px;
                border: medium solid var(--pfeil);
                border-width: 10px 10px 10px 0;
                border-color: transparent var(--pfeil) transparent transparent;
            }
                    
            #usertimeline .event::after {
                content: '';
                position: absolute;
                width: 25px;
                height: 25px;
                left: -17px;
                background-color: var(--kreis-innen);
                border: 4px solid var(--kreis-border);
                top: 15px;
                border-radius: 50%;
                z-index: 1;
            }
                    
            #usertimeline .event .content {
                padding: 30px;
                background-color: var(--event-box);
                position: relative;
                border-radius: 6px;
                overflow: hidden;
            }
                    
            #usertimeline .event .content .date {
                font-size: 20px;
                font-weight: bold;
                color: var(--datum);
            }
                    
            #usertimeline .event .content .title {
                font: 8px arial;
                text-transform: uppercase;
                letter-spacing: 1px;
                color: var(--title);
                line-height: 200%;
            }
                    
            #usertimeline .event .content .description {
                line-height: 20px;
                font-size: 13px;
                font-family: tahoma;
                text-align: justify;
                color: var(--text);
            }
                    
            #usertimeline .event .content .option {
                position: absolute;
                bottom: 10px;
                right: 20px;
                font-family: calibri;
                font-size: 12px;
                opacity: .7;
                padding-right: 5px;
            }
                    
            #usertimeline .event .content .option i {
                padding: 0 3px
            }
            
            #usertimeline .event .content .option a:link, 
            #usertimeline .event .content .option a:visited, 
            #usertimeline .event .content .option a:active, 
            #usertimeline .event .content .option a:hover {
                color: var(--link);
            }