/*WINKELWAGEN FLYOUT*/
.blackbackground{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    z-index: 9;
    opacity: 0.2;
}
#cartflyout li:nth-child(3),
#cartflyout-mobile li:nth-child(3){
    cursor: pointer;
}
#cartflyout,
#cartflyout-mobile{
    position: relative;
}
#cartflyout .cartcount,
#cartflyout-mobile .cartcount{
    background: #98CE00;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    position: absolute;
    top: -6px;
    right: -8px;
    font-size: 13px;
}
.winstcart{
    position: fixed;
    top: 84px;
    right: -600px;
    background: white;
    display: flex;
    flex-direction: row;
    z-index: 10;
    height: 100%;
    opacity: 0;
}
.winstcart .header{
    display: flex;
    justify-content: space-between;
}
.winstcart ul{
    list-style: none;
    margin: 0;
}
.winstcart .cross{
    padding: 5px;
    max-width: 150px;
    overflow: scroll;
    margin-bottom: 110px;
    display: none !important;
}
.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{
    background: #F8F8FD;
    color: black;
    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{
    background: #F8F8FD;
    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 {
    background: #F8F8FD;
}
/* Handle */
.winstcart .shoppingcart::-webkit-scrollbar-thumb {
    background: #F8F8FD;
}
.winstcart .shoppingcart .header{
    margin-bottom: 10px;
}
.winstcart .shoppingcart .bottom{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.winstcart .shoppingcart .listitem{
    display: flex;
    margin-bottom: 15px;
}
.winstcart .shoppingcart .listitem img{
    max-width: 100px;
    min-height: 150px;
}
.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: 20px;
    right: 0;
    font-weight: bold;
}
.winstcart .shoppingcart .listitem .listdetails span.details{
    font-size: 13px;
}
.winstcart .shoppingcart .listitem .listdetails span.variant{
    font-weight: bold;
}
.winstcart .shoppingcart .listitem .listdetails img{
    max-width: 100px;
}
.winstcart .shoppingcart .listitem .listdetails h4 a{
    color: black;
}
.winstcart .shoppingcart .listitem .listdetails h4{
    font-size: 16px;
    text-transform: uppercase;
}
.winstcart .shoppingcart .listitem .listdetails input {
    padding: 3px;
    text-align: center;
    border: 1px solid black;
    background: none;
    font-weight: bold;
    max-width: 60px;
    position: absolute;
    border-radius: 0;
    bottom: 15px;
}
.winstcart .shoppingcart .shippingcost{
    text-align: center;
    font-weight: bold;
    display: none;
}
.winstcart .shoppingcart a.tocart {
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: #45BBBE;
    border: 2px solid #45BBBE;
    padding: 10px;
    border-radius: 5px;
}
.winstcart .shoppingcart a.tocart:hover {
    background-color: rgba(69,187,190,.1);
}
.winstcart .shoppingcart a.tocheckout svg {
    margin-bottom: -5px;
}
.winstcart .shoppingcart a.tocheckout {
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: white;
    border: 2px solid #98CE00;
    background: #98CE00;
    padding: 10px;
    border-radius: 5px;
}
.winstcart .shoppingcart a.tocheckout:hover {
    background: #8ab807;
}
.winstcart .shoppingcart .bottom{
    margin-top: auto;
    margin-bottom: 30px;
}
.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 > span{
    text-align: center;
}
/*IPAD - TABLET*/
@media only screen and (max-width: 1180px) {
    .winstcart{
        top: 114px;
    }
}
/*TELEFOON*/
@media only screen and (max-width: 600px) {
    .winstcart{
        top: 94px;
    }
    .winstcart .cross{
        display: none !important;
    }
    .winstcart ul{
        /*overflow: scroll;*/
    }
    /* width */
    .winstcart ul::-webkit-scrollbar {
        width: 5px;
    }
    /* Track */
    .winstcart ul::-webkit-scrollbar-track {
        /*background: #f6e5e6;*/
    }
    /* Handle */
    .winstcart ul::-webkit-scrollbar-thumb {
        /*background: #F8F8FD5;*/
    }
    .winstcart .shoppingcart{
        overflow: auto;
    }
}