main .bottom-b.bottom-b-cf.cf {
    overflow: hidden;
}

.zeitstrahl {
    background-color: #fff;
    padding: calc(var(--basis-gap) * 5) 0;
    --line-color: #1d4293
}

.zeitstrahl .timeline-header h2 {
    font-size: clamp(1.8em, 1.7vw, 2.2em);
}

#timeline {
    --topping: 0;
}

body > .modal.fade.show {
    z-index: 11111111111;
    background: #000000d6;
}

.main-timeline {
    --item-image-size: 60px;
    --item-point-size: 14px;
    width: 100%;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: calc(var(--basis-gap) * 3) auto;
    margin: calc(var(--basis-gap) * 3) auto 0;
}

.main-timeline .top-row, .main-timeline .bottom-row {
    flex-wrap: nowrap;
}

.main-timeline .top-row .timeline-item {
    padding-bottom: 2rem;
}

.main-timeline .top-row .timeline-item::before {
    content: '';
    position: absolute;
    z-index: 0;
    background-color: var(--line-color);
    width: 2px;
    height: 100%;
    top: 12px;
    left: calc((var(--item-image-size) / 2) + 10px);
}

.main-timeline .top-row .timeline-item > div.row > div.col-md-9 {
    z-index: 111;
    padding: 6px 6px 0;
}

.main-timeline .top-row .timeline-item::after {
    content: '';
    position: absolute;
    left: 34px;
    bottom: -22px;
    width: var(--item-point-size);
    height: var(--item-point-size);
    border-radius: 50%;
}

.main-timeline .top-row .timeline-item.farbschema-default::after,
.main-timeline .bottom-row .timeline-item.farbschema-default::after {
    background-color: var(--line-color);
}

.main-timeline .top-row .timeline-item.farbschema1::after,
.main-timeline .bottom-row .timeline-item.farbschema1::after {
    background-color: var(--bg-color1);
}

.main-timeline .top-row .timeline-item.farbschema2::after,
.main-timeline .bottom-row .timeline-item.farbschema2::after {
    background-color: var(--bg-color2);
}

.main-timeline .top-row .timeline-item.farbschema3::after,
.main-timeline .bottom-row .timeline-item.farbschema3::after {
    background-color: var(--bg-color3);
}

.main-timeline .top-row .timeline-item.farbschema4::after,
.main-timeline .bottom-row .timeline-item.farbschema4::after {
    background-color: var(--bg-color4);
}

.main-timeline .bottom-row .timeline-item {
    padding-top: 3rem;
}

.main-timeline .bottom-row .timeline-item::before {
    content: '';
    position: absolute;
    z-index: 0;
    background-color: var(--line-color);
    width: 2px;
    height: 3rem;
    top: 18px;
    left: calc((var(--item-image-size) / 2) + 10px);
}

.main-timeline .bottom-row .timeline-item::after {
    content: '';
    position: absolute;
    left: 34px;
    top: 8px;
    width: var(--item-point-size);
    height: var(--item-point-size);
    border-radius: 50%;
}

.main-timeline .top-row .timeline-item.farbschema-default::before,
.main-timeline .bottom-row .timeline-item.farbschema-default::before {
    background-color: var(--line-color);
}

.main-timeline .top-row .timeline-item.farbschema1::before,
.main-timeline .bottom-row .timeline-item.farbschema1::before {
    background-color: var(--bg-color1);
}

.main-timeline .top-row .timeline-item.farbschema2::before,
.main-timeline .bottom-row .timeline-item.farbschema2::before {
    background-color: var(--bg-color2);
}

.main-timeline .top-row .timeline-item.farbschema3::before,
.main-timeline .bottom-row .timeline-item.farbschema3::before {
    background-color: var(--bg-color3);
}

.main-timeline .top-row .timeline-item.farbschema4::before,
.main-timeline .bottom-row .timeline-item.farbschema4::before {
    background-color: var(--bg-color4);
}

#timeline::before {
    content: '';
    position: absolute;
    left: -10%;
    top: 0;
    bottom: var(--topping);
    margin: auto;
    width: 120%;
    height: 4px;
    background-color: #f5f5f5;
}

#slideBack {
    --icon-size: 56px;
    position: absolute;
    height: var(--icon-size);
    width: var(--icon-size);
    top: 0;
    bottom: var(--topping);
    left: -11%;
    padding: 0;
    margin: auto 0;
}

#slideForward {
    --icon-size: 56px;
    position: absolute;
    height: var(--icon-size);
    width: var(--icon-size);
    top: 0;
    bottom: var(--topping);
    right: -11%;
    padding: 0;
    margin: auto 0;
}

#slideBack img, #slideForward img {
    margin: 0;
    height: var(--icon-size);
    width: var(--icon-size);
}

.main-timeline::-webkit-scrollbar {
    display: none;
}

.main-timeline .timeline-item {
    flex: 0 0 auto;
    position: relative;
    background-color: transparent;
}

.timeline-item-image {
    width: var(--item-image-size);
    height: var(--item-image-size);
    border-radius: 50%;
    text-align: center;
    border: 2px solid #e3e3e3;
    background-color: transparent;
    position: relative;
}

.timeline-item-image.after_now::before {
    content: '';
    position: absolute;
    left: calc((330px / 4) * -1);
    top: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 800px;
    border-left: 3px dashed #e3e3e3;
}

.timeline-item.farbschema-default .timeline-item-image {
    border-color: #1d4293;
}

.timeline-item.farbschema1 .timeline-item-image {
    border-color: var(--bg-color1);
}

.timeline-item.farbschema2 .timeline-item-image {
    border-color: var(--bg-color2);
}

.timeline-item.farbschema3 .timeline-item-image {
    border-color: var(--bg-color3);
}

.timeline-item.farbschema4 .timeline-item-image {
    border-color: var(--bg-color4);
}

.timeline-item-image img {
    object-fit: cover;
    width: 112px;
    height: auto;
    max-width: unset;
}

p.date_of_time {
    font-size: 0.8rem !important;
    color: #1d4293 !important;
    font-weight: 600;
}

h5.timeline-date {
    height: 48px;
    overflow: hidden;
    font-family: "Inter-Regular", "Roboto-Regular", serif !important;
    color: #000;
}

h3.timeline-date {
    margin-bottom: 0.125rem;
    text-transform: none;
}

div.timeline-title {
    font-family: "Inter-Medium", "Roboto-Regular", serif !important;
    font-size: clamp(16px, 1.7vw, 17px) !important;
    line-height: 1.3em !important;
}

.timeline-nav {
    margin-bottom: 2rem;
}

.timeline-nav button.btn {
    display: flex;
    justify-content: center;
    text-align: center;
    height: 40px;
    border-radius: 20px !important;
    border-color: #f5f5f5 !important;
    min-width: 40px;
    padding: 0 !important;
    text-transform: uppercase;
    font-family: "Vista Slab Medium", Sans-serif;
    background-color: #FFFFFF !important;
    font-size: clamp(1rem, calc(1vw * 1.7), 1.1rem) !important;
}

.timeline-nav button.btn svg {
    width: 20px;
    height: 20px;
}

.timeline-nav button#to-now.btn {
    padding: 0.5rem 2rem !important;
}

#staticBackdrop .modal-content {
    background-color: transparent;
    border-radius: 0;
    border: none;
}

#staticBackdrop .modal-header {
    flex-direction: row;
    justify-content: flex-end;
    padding-top: var(--basis-gap);
    padding-bottom: calc(var(--basis-gap) / 2);
    padding-left: calc(var(--basis-gap) * 2);
    padding-right: calc(var(--basis-gap) / 2);
    border-bottom: none;
}

#staticBackdrop .modal-body {
    background-color: var(--bs-modal-bg);
    padding: calc(var(--basis-gap) * 3) calc(var(--basis-gap) * 2);
}

#staticBackdrop .modal-body h2 {
    margin-bottom: var(--basis-gap);
}