.container .team_container {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 0;
    width: 100%;
    bottom: 0;
}
.container .team {
    width: 32%;
}
.container .team img {
    height: auto;
    width: 100%;
    max-width: 225px;
    margin: 0 0 -7px 5px;
    z-index: 1;
}
.container .team .register {
    background: linear-gradient(to top, rgba(31, 37, 49, 0.5) 0%, rgba(31, 37, 49, 0) 30%);
    background-color: rgba(68, 84, 106, 0.7);
    font-size: 100%;
    width: calc(100% - 15px);
    height: 34px;
    padding: 0 0 0 10px;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
}
.container .team .register_active {
    background: none;
    background-color: rgba(68, 84, 106, 0.9);
    z-index: 99;
}
.container .team .register span {
    cursor: pointer;
    position: relative;
    display: block;
    line-height: 1;
    padding-right: 10px;
    padding-left: 0.8em;
    text-indent: -1.1em;
    top: 50%;
    transform: translateY(-50%);
    color: #fff8;
    text-align: left;
}
.container .team .register_active span {
    color: white;
}
.container .team .register span:before,
.container .team .register_active span:before {
    content: '\25FC  ';
    opacity: 0;
}
.container .team .register:hover span:before,
.container .team .register_active span:before {
    color: #F68511;
    opacity: 1;
    right: 0;
}

.container .team_text {
    display: none;
    background-color: rgba(68, 84, 106, 0.9);
    width: calc(100% - 60px);
    padding: 10px 30px 10px 30px;
    border-radius: 0 5px 5px 5px;
    bottom: 0;
    color: white;
}
.container .team_text p {
    margin: 0;
    color: #fff5;
}
.container .team_text ul {
    position: relative;
    margin: 0 0 0 0;
    list-style-type: none;
    border-top: 1px solid #fff5;
}
.container .team_text li {
    position: relative;
    padding: 0 0 5px 0;
    margin: 10px 0 10px -10px;
    text-align: justify;
    hyphens: auto;
    language: de;
}
.container .team_text ul li::before {
    content: '\25FC';
    color: #28ABE2;
    font-size: 1em;
    position: absolute;
    left: -25px;
}

/* Gründe für ein Scheitern */
.elemente_container {
    font-size: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    border-radius: 10px 0 0 10px;
    margin-bottom: 20px;
    color: rgba(68, 84, 106, 1);
    background-color: rgba(255, 255, 255, 0.3);
}
.elemente_container_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background-color: rgba(68, 84, 106, 1);
    border-radius: 10px 0 0 10px;
    color: white;
    min-height: 60px;
    min-width: 60px;
    img {
        width: 80%;
    }
}
.elemente_container_content {
    padding: 10px;
    p {
        hyphens: auto;
        margin: 0;
    }
}

/* Leistungspakete */
.leistungspaket_header_container {
    font-size: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
    color: rgba(68, 84, 106, 0.9);
    background-color: rgba(68, 84, 106, 0.5);
}
.leistungspaket_header_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    color: white;
    width: 40px;
    img {
        height: 2em;
    }
}
.leistungspaket_header_content {
    padding: 10px;
    h3 {
        margin: 0;
    }
}
.orange {
    color: #F68511;
}
.blau {
    color: #28ABE2;
}
.leistungspaket_content_container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 5px;
    margin: 0 0 50px 0;
    padding: 0;
    font-size:80%;
    color: white;
    background-color: rgba(68, 84, 106, 0.5);
}
.leistungspaket_content_element_container {
    background-color: rgba(68, 84, 106, 0.5);
    width: 33%;
}
.leistungspaket_content_element_header {
    margin: 0;
    padding: 10px;
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    p {
        margin: 0;
    }
}
.leistungspaket_content_element {
    margin: 0;
    padding: 10px;
    color: white;
    hyphens: auto;
    ul {
        padding: 0 0 0 20px;
        margin: 0;
    }
    p, li {
        margin: 0;
        text-align: left;
    }
    img {
        width: 100%;
        margin-top: 10px;
    }
    th {
        color: #28ABE2;
        font-weight: normal;
        white-space: nowrap;
    }
    table {
        width: 100%;
    }
    td {
        padding-left: 10px;
        white-space: nowrap;
    }
    td:nth-child(even) {
        text-align: right;
    }
    hr {
        height: 0.5px;
        border: none;
        background-color: white;
        margin: 5px 0 5px 0;
    }
    .hinweis {
        font-size:75%;
        color: white;
        text-align: left;
        white-space: wrap;
        padding: 10px 0 0 1em;
        text-indent: -0.6em;   /* Rückversatz der ersten Zeile */
        color: rgba(255, 255, 255, 0.5);
    }
}

@media (max-width:800px) {
    .elemente_container_icon {
        width: 40px;
    }
    .leistungspaket_content_container {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .leistungspaket_content_element_container {
        width: 100%;
    }
}