/*WINKELWAGEN FLYOUT*/
.blackbackground{
    position: absolute;
    top: -70px;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    z-index: 9;
    opacity: 0.2;
}
#cartflyout,
#cartflyout-mobile{
    cursor: pointer;
    position: relative;
}
#cartflyout .cartcount,
#cartflyout-mobile .cartcount{
    border-radius: 100%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;

    position: absolute;
    top: 0px;
    right: 5px;
}
.winstcart{
    position: fixed;
    top: 114px;
    right: -600px;
    display: flex;
    flex-direction: row;
    z-index: 10;
    height: 100%;
    opacity: 0;
}
.winstcart .header{
    display: flex;
    justify-content: space-between;
}
.winstcart .header h2{
    font-size: 18px;
}
.winstcart ul{
    list-style: none;
    margin: 0;
    overflow-y: scroll;
    height: -webkit-fill-available;
}

.winstcart .cross{
    padding: 5px;
    max-width: 150px;
    overflow: scroll;
    margin-bottom: 110px;
}
.winstcart .cross h4{
    font-size: 16px;
}
.winstcart .close {
    cursor: pointer;
}
.winstcart .cross .listitem {
    margin-bottom: 10px;
}
.winstcart .cross .listitem h4{
    font-size: 14px;
    margin-bottom: 2px;
    letter-spacing: normal;
}
.winstcart .listitem h4.price{
    text-align: right;
}
.winstcart .cross .listitem a{
    font-weight: normal;

    width: 100%;
    display: block;
    padding: 3px;
    text-align: center;
}
.winstcart .cross .listitem .added_to_cart{
    font-size: 13px;
}
.winstcart .cross .listitem a svg{
    margin-left: 5px;
}
.winstcart .shoppingcart{
    padding: 10px;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    overflow: scroll;
    margin-bottom: 60px;
}
/* width */
.winstcart .shoppingcart::-webkit-scrollbar {
    width: 5px;
}
/* Track */
.winstcart .shoppingcart::-webkit-scrollbar-track {
}
/* Handle */
.winstcart .shoppingcart::-webkit-scrollbar-thumb {
}
.winstcart .shoppingcart .header{
    margin-bottom: 10px;
}
.winstcart .shoppingcart .bottom{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.winstcart .shoppingcart .listitem{
    display: flex;
    margin-bottom: 15px;
}
.winstcart .shoppingcart .listitem img{
    max-width: 100px;
    min-height: 100px;
    border-radius: 5px;
}
.winstcart .shoppingcart .listitem svg{
    width: 30px;
}
.winstcart .shoppingcart .listitem .listdetails{
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 5px;
    width: 100%;
}
.winstcart .shoppingcart .listitem .listdetails .price{
    position: absolute;
    bottom: 0px;
    right: 0;
    font-weight: bold;
}
.winstcart .shoppingcart .listitem .listdetails span.details{
    font-size: 13px;
    line-height: 13px;
}
.winstcart .shoppingcart .listitem .listdetails span.variant{
    font-weight: 400;
    font-size: 13px;
    text-transform: capitalize;
}
.winstcart .shoppingcart .listitem .listdetails img{
    max-width: 100px;
}
.winstcart .shoppingcart .listitem .listdetails h4 a{
}
.winstcart .shoppingcart .listitem .listdetails h4{
    font-size: 14px;
    text-transform: uppercase;
}
.winstcart .shoppingcart .listitem .listdetails input {
    padding: 3px;
    text-align: center;
    background: none;
    max-width: 38px;
    position: absolute;
    bottom: 0px;
    height: 37px;
    font-size: 14px;
    border-radius: 5px;
}
.winstcart .shoppingcart .shippingcost{
    text-align: center;
    font-weight: bold;

}
.winstcart .shoppingcart a.tocart {
    width: 100%;
    text-align: center;
    font-weight: bold;
    padding: 10px;
}
.winstcart .shoppingcart a.tocheckout svg {
    margin-bottom: -5px;
}
.winstcart .shoppingcart a.tocheckout {
    width: 100%;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.winstcart .shoppingcart a.tocheckout:hover {
}
.winstcart .shoppingcart .bottom{
    margin-top: 10px;
    margin-bottom: 10px;
}
.winstcart .shoppingcart .bottom .totals.btw{
    font-weight: normal;

}
.winstcart .shoppingcart .bottom .totals{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-weight: bold;
}
.winstcart .shoppingcart .bottom .totals.total span{
}
.winstcart .shoppingcart .bottom > span{
    text-align: center;
    font-size: 14px;
}
/*IPAD - TABLET*/
@media only screen and (max-width: 1180px) {
    .winstcart{
        top: 114px;
    }
}
/*TELEFOON*/
@media only screen and (max-width: 600px) {
    .winstcart .cross{
        display: none !important;
    }
    .winstcart{
        top: 108px;
    }
    .winstcart ul{
        overflow: scroll;
    }
    /* width */
    .winstcart ul::-webkit-scrollbar {
        width: 5px;
    }
    /* Track */
    .winstcart ul::-webkit-scrollbar-track {
    }
    /* Handle */
    .winstcart ul::-webkit-scrollbar-thumb {
    }
    .winstcart .shoppingcart{
        overflow: auto;
        margin-bottom: 85px;
    }
}