.leiste {
    z-index: 999999999;
    position: fixed;
    bottom: 0;
    height: 18vw;
    border: 0.2vw solid rgb(200, 200, 200);
    background-color: white;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    padding: 2vw 5vw !important;
    box-sizing: border-box !important;
}

.leiste > div {
    cursor: pointer;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 1vw;
}

.leiste > div a {
    font-size: 3.4vw;
    color: black;
    text-decoration: none;
}

.leiste > div:hover svg {
    stroke: var(--primary) !important;
    color: var(--primary) !important;
}

.leiste svg {
    width: 33% !important;
    height: auto !important;
    margin: 0 !important;
    transform: translateX(1px) scale(1) !important;
    stroke: #000;
    stroke-width: 0.03vw !important;
}

.leiste svg:hover {
    stroke: var(--primary) !important;
    color: var(--primary) !important;
}

@media (max-width: 700px) {
    body {
        padding-bottom: 15vw !important;
    }
    .leiste svg {
        width: 7vw !important;
    }
}

@media (min-width: 700px) {
    .leiste {
        display: none !important;
    }
}
