.termine .termin_item {
    position: relative;
    display: block;
    padding: var(--typo-half-gap) 0;
    padding-right: 5em;
}
.termine .termin_item[class*="fi_"] {
    display: none;
}
.termine .termin_item[class*="fi_"].active {
    display: block;
}

.termine a.termin_item:before {
    content: ''; position: absolute;
    right: 0; top: 50%; width: 2em; height: 2em;
    border-radius: 50%; background-color: rgba(255,255,255,0.5);
    background-image: var(--typo-svg-arrow);
    background-size: 60% auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    transform: translate(0,-50%);
}
.termine .termin_item:after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0;
    width: auto; height: 1px;
    background-color: currentColor;
    opacity: 0.5;
}
.termine .termin_item:last-child:after {
    content: none;
}

/***************************************************************************
* Border Radius
****************************************************************************/
.termine .termin_item.extend_item {
    padding: var(--typo-gap);
    margin-bottom: var(--typo-gap);
    background-color: var(--typo-color-red);
    color: #FFFFFF;
    border-radius: 0.375em;
}
.termine a.termin_item.extend_item {
    padding-right: 4em;
}
.termine a.termin_item.extend_item:before {
    right: var(--typo-gap);
}
.termine .termin_item.extend_item:after {
    content: none;
}
.termine .termin_item .adress {
    margin-top: var(--typo-half-gap);
    border-top: 1px solid currentColor;
    padding-top: var(--typo-half-gap);
}
.termine .termin_item .adress p {
    margin-bottom: 0;
}