body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    background-color: rgb(50, 50, 50);
    color: rgba(255, 255, 255, 0.8)
}

a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}

.fullwindow {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url("/img/background.png");
    background-position: top;
    background-size: cover;
    background-color: black;
}

.loginbox {
    height: 350px;
    width: 400px;
    border: 2px solid rgba(0, 0, 0, 0.9);
    overflow: hidden;
    background: transparent;
    backdrop-filter: blur(30px);
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.5);
    
}

.loginboxheader {
    display: flex;
    align-items: center;
    padding-left: 120px;
    height: 100px;
    background-color: black;
    font-size: 30px;
    font-weight: bold;
}

.loginboxheader img {
    position: absolute;
    left: 0;
    top: 8px;
    height: 70px;
    filter: blur(1px);
    filter: brightness(0.8);
    filter: contrast(1.2);
}

.loginbox form {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.loginbox input {
    height: 30px;
    font-size: 18px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 5px;
    border-radius: 10px;
}

.loginbox button {
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.loginbox button:hover {
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    width: 100vw;
    color: white;
    height: 120px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3)), url("/img/background.png");
    background-position: top;
    background-size: cover;
    background-color: black;
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.7);
    z-index: 10;
}

.header .logo {
    margin-left: 20px;
    height: 100px;
    filter: blur(1px);
    filter: brightness(0.8);
    filter: contrast(1.2);
    
}

.header .menu {
    display: flex;
    align-items: center;
    height: 100%;
}

.header .menu a {
    width: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-right: 5px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 10px;
}

.header .menu a img {
    height: 25px;
}

.header .menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.header .nav1_marker {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -38px;
    margin-left: 25px;
    background-color: darkred;
    width: 15px;
    height: 15px;
    font-size: 10px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

.sidenavi {
    position: fixed;
    top: 120px;
    left: 0;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.6);
    width: 180px;
    height: calc(100vh - 120px);

}

.sidenavi a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 3px 16px;
    margin-top: 10px;
}

.sidenavi a img {
    margin-right: 8px;
}

.sidenavi a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.sidenavi .sidenavmark {
    background-color: rgb(50, 50, 50);
    font-weight: bold;
}

.main_area {
    margin-top: 150px;
    margin-left: 200px;
    margin-right: 200px;
}

.main_navi {
    z-index: 11;
    position: fixed;
    left: 220px;
    top: 80px;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.main_navi form {
    margin-right: 30px;
}

.main_navi a {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
    margin-left: 10px;
}

.main_navi a img {
    margin-right: 5px;
}

.main_navi a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.main_navi input, .main_navi select {
    background-color: rgb(105, 105, 105);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    margin-right: 5px;
}

.main_navi button {
    background-color: rgb(105, 105, 105);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 5px;
}

.main_top {
    display: flex;
    margin-bottom: 20px;

}

.main_list {
    position: relative;
    display: flex;
    align-items: center;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 5px;

}

.main_list:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.main_list .initialen {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 10px;
    height: 27px;
    width: 27px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.5);
    color: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    font-size: 14px;
}

.main_list .initialen.men {
        background-color: rgba(150, 230, 250, 0.5);
        border: 1px solid rgba(150, 230, 250, 0.9);
}

.main_list .initialen.women {
        background-color: rgba(230, 150, 250, 0.5);
        border: 1px solid rgba(230, 150, 250, 0.9);
}

.main_list .initialen.divers {
    border: 1px solid rgba(150, 250, 150, 0.9);
    background-color: rgba(150, 250, 150, 0.5);    
}

.main_list .name {
    margin-left: 50px;
    font-weight: bold;
    width: 200px;
}

.main_list .alter {
    width: 200px;
}

.main_list .ready {
    position: absolute;
    right: 65px;
    width: 25px;
    font-size: 12px;
    color: rgb(156, 224, 156);
}

.main_list .canon {
    position: absolute;
    right: 20px;
    width: 25px;
    font-size: 12px;
    color: rgb(156, 224, 156);
}

.main_list .teamname {
    margin-left: 50px;
    font-weight: bold;
    width: 350px;
}

.main_list .teamsensei {
    width: 350px;
}

.main_list .clanname {
    margin-left: 50px;
    font-weight: bold;
    width: 350px;
}

.main_list .clandorf {
    width: 350px;
}

.main_list .clanimg {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 10px;
    height: 27px;
    width: 27px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.5);
    color: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    font-size: 14px;
    overflow: hidden;
}

.main_list .clanimg img {

    height: 27px;
    
}

.main_list .dorfname {
    margin-left: 50px;
    font-weight: bold;
    width: 350px;
}

.main_list .dorfkage {
    width: 350px;
}

.main_list .dorfland {
    width: 350px;
}

.main_list .dorfimg {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 10px;
    height: 27px;
    width: 27px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.5);
    color: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    font-size: 14px;
    overflow: hidden;
}

.main_list .dorfimg img {

    height: 27px;
    
}

.main_list .msgitem {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 10px;
    height: 27px;
    width: 27px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.5);
    color: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    overflow: hidden;
}

.main_list .msgitem.unread {
    border: 1px solid rgba(150, 250, 150, 0.9);
    background-color: rgba(150, 250, 150, 0.5);  
}

.main_list .msgitem img {
    height: 20px;
}

.main_list .msgblock {
    display: flex;
    width: 100%;
    height: 100%;
    margin-left: 50px;
    margin-right: 150px;
}

.main_list .msgsender {
    position: absolute;
    top: 0;
    left: 50px;
    font-weight: bold;
    

}

.main_list .msgbetreff {
    position: absolute;
    bottom: 0;
    left: 50px;

    font-size: 12px;
}

.main_list .msgdelete {
    position: absolute;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    height: 100%;
    right: 10px;

}

.main_list .msgdelete:hover {
    background-color: rgba(255, 0, 0, 0.247);
}

.main_list .msgremove {
    position: absolute;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    height: 100%;
    right: 45px;

}

.main_list .msgremove:hover {
    background-color: rgba(0, 255, 0, 0.247);
}

.newmsgbox {
    display: flex;
    flex-direction: column;
}

.newmsgbox .msgan {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 10px;

}
.newmsgbox .msgan label{
    width: 100px;
    
}

.newmsgbox .msgan select{
    width: 100%;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    border-radius: 5px;
    font-size: 15px;    
}

.newmsgbox .msgbetreff {
    display: flex;
    align-items: center;
    margin-bottom: 35px;

}
.newmsgbox .msgbetreff label{
    width: 100px;
    
}

.newmsgbox .msgbetreff input{
    width: 100%;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    border-radius: 5px;
    font-size: 15px;
    
}

.newmsgbox .msgtext {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;

}
.newmsgbox .msgtext label{
    width: 150px;
    
}

.newmsgbox .msgtext textarea {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    border-radius: 5px;
}

.newmsgbox button {
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.newmsgbox button:hover {
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

/* Nachrichten Neu*/

.fullmsgwindow {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    transition: transform .2s ease, height .2s ease;
    transform: scale(0);
}

.fullmsgwindow.active-popup {
    transform: scale(1);
}

.fullnewmsgwindow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    transition: transform .2s ease, height .2s ease;
    transform: scale(0);
}

.fullmsgwindow.active-popup {
    transform: scale(1);
}


.msgwindow {
    position: relative;
    background-color: rgb(90, 90, 90);
    width: max(900px);
    height: max(600px);
    
    border-radius: 10px;
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: msgfadein 0.2s ease-out normal backwards;

}

.msgwindow.info {
    width: max(500px);
    height: max(150px);

}

.msgwindow.abfrage {
    width: max(500px);
    height: max(200px);

}

.msgwindow .infotext {
    display: flex;
    height: calc(100% - 45px);
    align-items: center;
    justify-content: center;
}

@keyframes msgfadein {
    0% {transform: scale(0);}
    100% {transform: scale(1);}
}

.msgwindow .abfragetext {
    display: flex;
    flex-direction: column;
    height: calc(100% - 45px - 50px);
    align-items: center;
    justify-content: center;
}

.msgwindow .abfragetext .frage{
    display: flex;
    height: 100px;
    align-items: center;
    justify-content: center;
}

.msgwindow .abfragetext .eingabe{
    display: flex;
    height: 100px;
    align-items: center;
    justify-content: center;
}

.msgwindow .abfragetext .eingabe input {
    height: 30px;
    border-radius: 10px;
    font-size: 18px;
    width: 77px;
    padding: 2px 10px;
    border: 2px solid darkred;
    outline: none;
    background-color: rgba(255, 189, 189, 0.61);
}

.msgwindow .abfragebtn {
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: space-around;
}

.msgwindow .abfragebtn button {
    height: 30px;
    width: 200px;
    font-size: 18px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.msgwindow .abfragebtn button:hover {
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}


.msgwindow .closebtn {
    width: 30px;
    height: 30px;
    border-radius: 10px;
}
.msgwindow .closebtn:hover {
    background-color: rgba(255, 255, 255, 0.2);

}

.msgwindow .msgheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    height: 45px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: bold;
}

.msgwindow .msgboxtextfeld {
    position: relative;
    display: flex;
    
    height: 30px;
    padding: 10px;
}

.msgwindow .msgboxtextfeld .label {
    position: absolute;
    top: 3px;
    left: 20px;
    padding-left: 2px;
    padding-right: 2px;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.8);;
    background-color: rgb(90, 90, 90);
    z-index: 71;
}

.msgwindow .msgboxtextfeld .text {
    position: absolute;
    display: flex;
    align-items: center;
    left: 10px;
    right: 10px;
    height: 35px;
    border: 1px solid rgba(0, 0, 0, 0.8);
    padding-left: 10px;
    padding-top: 1px;
    border-radius: 10px;
    z-index: 70;
}

.msgwindow .msgboxtextfeld .eingabefeld {
    position: absolute;
    overflow: hidden;
    display: flex;
    align-items: center;
    left: 10px;
    right: 10px;
    height: 35px;
    border: 1px solid rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    z-index: 70;
}

.msgwindow .msgboxtextfeld .eingabefeld input {
    width: 100%;
    height: 100%;
    background: none;
    padding-left: 10px;
    font-size: 18px;
    border: none;
    color: rgba(255, 255, 255, 0.9);

}



.msgwindow .msgboxtextfeld .eingabefeld select {
    width: 100%;
    height: 100%;
    padding-left: 10px;
    font-size: 18px;
    background-color:  rgb(90, 90, 90);
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;  
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    outline: none;
}

.msgwindow .msgboxtextfeld .eingabefeld select::-ms-expand {
  display: none;
}

.msgwindow .msgboxtextfeld .eingabefeld select option {
    color: rgba(255, 255, 255, 0.9);
}

.msgwindow .msgboxtextfeld .nachrichtenfeld {
    position: absolute;
    overflow: hidden;
    display: flex;
    align-items: center;
    left: 10px;
    right: 10px;
    height: 380px;
    border: 1px solid rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    z-index: 70;
}

.msgwindow .msgboxtextfeld .nachrichtenfeld textarea {
    width: 100%;
    height: 95%;
    background: none;
    border: none;
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    resize: none;
    color: rgba(255, 255, 255, 0.9);
}


.msgwindow .msgnachricht {
    display: flex;
    left: 10px;
    right: 10px;
    height: 400px;
    padding-left: 15px;
    padding-top: 10px;
    overflow: scroll;

}

.msgwindow .msgbuttons {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: end;
    bottom: 0;
    left: 0px;
    right: 0;
    height: 40px;

    padding-left: 15px;
    background-color: rgba(0, 0, 0, 0.2);

}

.msgwindow .msgbuttons button {
    height: 25px;
    font-size: 18px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    margin-right: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.msgwindow .msgbuttons button:hover {
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.msgwindow .msgbuttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    margin-left: 5px;
    height: 30px;
    width: 30px;
    border-radius: 5px;
}

.msgwindow .msgbuttons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Charakterseite */

.main_navi_char {
    z-index: 11;
    position: fixed;
    left: 270px;
    top: 95px;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    height: 25px;
    padding-left: 20px;
    padding-right: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.main_navi_char a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    margin-left: 10px;
}

.main_navi_char a img {
    margin-right: 5px;
}

.main_navi_char a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.char_side_left {
    position: fixed;
    top: 120px;
    left: 0;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.6);
    width: 200px;
    height: calc(100vh - 120px);
    padding: 25px;

}

.char_side_left .charpic {
    height: 200px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.char_side_textbox {
    margin-top: 5px;
}

.char_side_textbox .bez {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

.char_area {
    display: flex;

    flex-wrap: wrap;
    margin-top: 120px;
    margin-left: 250px;
    padding: 20px;
}

.spalte_1 {
    width: 200px;
    margin-right: 15px;
    
}

.spalte2 {
    flex-grow: 1;
    margin-right: 15px;
    min-width: 300px;
}

.spalte3 {

    margin-right: 15px;
    width: 300px;
}

.spalte4 {

    margin-right: 15px;
    width: 300px;
}

.spalte5 {

    margin-right: 15px;
    width: 300px;
}


.eigenschaftenbox {
    margin-bottom: 15px;
    background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.5));
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 10px;
    
}

.eigenschaftenbox .image {

    display: flex;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.eigenschaftenbox.dorfclan img {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px;
    border-radius: 50%;
    
}

.eigenschaftenbox .group img {
    width: 20px;
    height: 20px;
    
}

.eigenschaftenbox .group {
    display: flex;
    align-items: center;
    padding: 2px 8px;
}

.eigenschaftenbox .group:hover {
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;    
}

.eigenschaftenbox .name {
    display: flex;
    justify-content: center;
}

.eigenschaftenbox.islink:hover {
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;    
}

.eigenschaftenbox .headline {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 5px;
    display: flex;
    justify-content: center;
}

.eigenschaftenbox .bez {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    padding-left: 5px;
}

.eigenschaftenbox .text {
    padding-left: 5px;
    min-height: 25px;
}

.eigenschaftenbox .teamlink {
    padding-left: 5px;
    min-height: 25px;
       
}
.eigenschaftenbox .teamlink:hover {
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;     
}

.eigenschaftenbox .kommentar {
    font-size: 10px;
}



.merkmale_box {

    margin-bottom: 15px;
    
    min-height: 130px;
    background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.5));
    border-radius: 15px;
    overflow: hidden;
    
}

.merkmale_box .headline {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 5px;
    display: flex;
    justify-content: center;
}

.merkmale_box .text {
    padding-left: 5px;
}

.beziehungsspalte1 {
    margin-bottom: 15px;
    background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.5));
    border-radius: 15px;
    overflow: hidden;

}

.beziehungsspalte1 .headline {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 5px;
    display: flex;
    justify-content: center;    
}

.beziehungsspalte1 .bezbox {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
    height: 48px;
}

.beziehungsspalte1 .bezbox .changebutton {
    display: none;
    position: absolute;
    right: 0;
    height: 100%;

}

.beziehungsspalte1 .bezbox .changebutton img {
    height: 20px;

}
.beziehungsspalte1 .bezbox:hover .changebutton {
    display: block;
}

.beziehungsspalte1 .bezbox:hover {
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;       
}

.beziehungsspalte1 .bezbox img {
    height: 30px;
    width: 30px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin-left: 8px;
    margin-right: 8px;

}

.beziehungsspalte1 .beziehung {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* Timeline */

:root {
    --chartimelineabstand: 20px;
    --chartimelinekreis: 30px;
}

.timelinebox {
    margin: 10px;
}

.char_timeline {
    position: relative;
    display: flex;
    height: var(--chartimelinekreis);

  
}
.char_timeline.year {
    height: var(--chartimelinekreis);

}
.char_timeline.space {
    height: 5px;

}
.char_timeline.effect {
    height: 26px;
    font-size: 12px;

}
.char_timeline .left1 {
    width: var(--chartimelineabstand);

    border-right: 1px solid rgba(255, 255, 255, 0.9);
}
.char_timeline .right1 {
    width: var(--chartimelineabstand);

}
.char_timeline .underline {
    border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}
.char_timeline .yearside {
    width: calc(var(--chartimelineabstand) - var(--chartimelinekreis) / 2);

}
.char_timeline .yearkreis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--chartimelinekreis);
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.9);
    font-size: 10px;
}
.char_timeline .text {
    flex-grow: 1;
}

/* Neuer Charakter */

.newcharheader {
    font-weight: bold;
    margin-left: 10px;
    margin-bottom: 10px;
    font-size: 25px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* Eingabefelder */

.inputfeld {
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 500px;
    height: 35px;
    left: 10px;
    right: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    
}

.checkfeld {
    position: relative;
    display: flex;
    align-items: center;

    height: 35px;
    left: 10px;
    right: 10px;
    margin-bottom: 10px;
}

.checkfeld input[type="checkbox"] {
    accent-color:  rgba(101, 141, 91, 0.842);
    margin-left: 10px;
    transform: scale(1.3);

}

.checkfeld input[type="checkbox"]:hover {
    outline: 2px solid rgba(255, 255, 255, 0.8);
}


.checkfeld label {
    color: rgba(255, 255, 255, 0.5);
    margin-left: 5px;
}


.inputfeld.areafeld {
    height: 90px;
}

.inputfeld.areafeld img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    object-position: top;
}

.inputfeld label:first-child {
    position: absolute;
    top: -9px;
    left: 15px;
    padding-left: 2px;
    padding-right: 2px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    background-color:  rgb(50, 50, 50);

}

.inputfeld input[type="text"] {
    width: 95%;
    height: 100%;
    background: none;
    padding-left: 10px;
    font-size: 18px;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    outline: none;

}

.inputfeld input[type="file"] {
    width: 95%;
    height: 100%;
    background: none;
    padding-left: 10px;

    border: none;
    color: rgba(255, 255, 255, 0.9);
    outline: none;
    margin-top: 5px;

}
.inputfeld input::file-selector-button {
    height: 25px;
    font-size: 18px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    margin-right: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.inputfeld input::file-selector-button:hover {
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}



.inputfeld select {
    width: 95%;
    height: 100%;
    padding-left: 10px;
    font-size: 18px;
    background-color:  rgb(50, 50, 50);
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;  
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    outline: none;
}

.inputfeld select::-ms-expand {
  display: none;
}

.inputfeld select option {
    color: rgba(255, 255, 255, 0.9);
}

.inputfeld textarea {
    width: 95%;
    height: 50%;
    background: none;
    border: none;
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    resize: none;
    outline: none;
    padding: 3px;
    color: rgba(255, 255, 255, 0.9);
}

.checkfeld button {
    height: 25px;
    font-size: 18px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    margin-right: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.checkfeld button:hover {
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

/* Beziehungsfenster */

.bezlist {
    height: calc(100% - 45px);
    overflow: scroll;
    
}

.bezlist .newbez {
    display: flex;
    align-items: center;
    height: 30px;
    margin-bottom: 3px;
    margin-top: 3px;
}

.bezlist .newbez:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.bezlist .newbez img {
    margin-left: 10px;
    margin-right: 10px;
    
}

.bezlist .bezzeile {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
    height: 27px;
    margin-bottom: 3px;
}

.bezlist .bezzeile:hover {

    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;

}

.bezlist .bezzeile .bez {
    width: 200px;
    padding-left: 10px;
}

.bezlist .bezzeile .name {
    width: 200px;
}

.bezlist .bezzeile .vorname {
    flex-grow: 1;
}

.bezlist .bezzeile .btn {
    display: flex;
    align-items: center;
    width: 70px;
    height: 100%;
}

.bezlist .bezzeile .btn a {
    display: flex;
    width: 35px;
    height: 100%;
    margin-right: 10px;

}

.bezlist .bezzeile .btn a:hover {

    background-color: rgba(255, 255, 255, 0.4);


}