h5 {
    margin: 0 !important;
}

.containerkaart {
    display: flex;
    height: 93vh;
}

.procesmenu {
    display: flex;
    flex-direction: column;
    flex-basis: 10%;
    box-shadow: 10px 0px 16px -12px rgba(0,0,0,0.75);
    z-index: 999;
}

.stap {
    padding: 20px;
    display: flex;
    gap: 10px;
    height: 10%;
    border-bottom: 1px solid rgba(var(--main-color));
    align-items: center;
}

.item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    background-color: lightgrey;
}

.item .fas {
    color: white;
}

.hoofdmenu {
    flex-basis: 90%;
}

.hfd {
    display: flex;
}

#map {
    height: 100%;
}

#cat {
    display: none;
    height: 100%;
    background-color: aquamarine;
}

.knoppen {
    display: flex;
    position: fixed;
    z-index: 99999;
    bottom: 5%;
    right: 3%;
    gap: 20px;
}

.knop {
    width: fit-content;
    height: fit-content;
    padding: 5px;
    font-size: 15px;
    font-weight: bold;
    border: 3px solid;
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.5);
}

.knop:hover {
    cursor: pointer;
}

.volgende[disabled] {
    background-color: rgba(var(--disabled-color));
    cursor: no-drop;
}

.volgende {
    color: white;
    background-color: rgba(var(--main-color));
}

.vorige {
    color: rgba(var(--main-color));
    background-color: white;
    bottom: 5%;
    right: 8%;
}