#winkelmandje {
    position: fixed;
    top: 80px;
    right: 100px;
    width: 30%;
    max-height: 40%;
    min-height: 5%;
    z-index: 99;
    background-color: #4e4e4e;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    transform: translateY(-400px);
    transition: ease-in-out all 0.2s;
}

.winkelmandje-container {
    display: flex;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.winkelmandje-lijst {
    display: flex;
    flex-direction: column;
    border: 2px solid #ffc400;
    border-top: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    margin: 10px;
    margin-top: 0;
    height: 100%;
    width: 100%;
    padding: 10px;
    font-family: tahoma;
}
.winkelmandje-lijst p {
    color: #fff;
}

.winkelmandje-lijst-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Roboto-Regular;
    color: #fff;
    width: auto;
    font-size: 1.2rem;
    padding: 10px;
    border-bottom: 1px solid #9e7900;
}
.winkelmandje-lijst-item button {
    background: none;
    border: none;
    color: #fff;
    transition: ease-in-out 0.2s all;
}.winkelmandje-lijst-item button:hover {
    color: #ccc;
    cursor: pointer;
}

#winkelmandje-totaal {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.winkelmandje-totaal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: Roboto-Black;
}

.winkelmandje-totaal-tekst {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Roboto-Black;
    color: #fff;
    width: 100%;
}

.winkelmandje-totaal-prijs {
    color: #ffc400;
    margin: 0;
    font-family: Roboto-Black;
}

.winkelmandje-betalen-knop {
    display: none;
    border: 2px solid #ffc400;
    border-radius: 15px;
    padding: 15px;
    font-family: Roboto-Black;
    font-size: 15px;
    color: #ffc400;
    background-color: rgba(0, 0, 0, 0);
    transition: ease-in-out all 0.2s;
}.winkelmandje-betalen-knop:hover {
    background-color: #7c6723;
    cursor: pointer;
}