.cartpopup {


    padding: 0;
    list-style: none none;
    background: #fff;
    border: 1px solid #bbb;
    box-sizing: border-box;
    box-shadow: 0 3px 3px rgba(0,0,0,.15);
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.3s;
    transform: translateX(100%);
    width: 400px;
    height: 100%;
    z-index: 122;
    visibility:hidden;
    opacity:0;

}


.cartpopup .amount_total {
     display: inline-block;
}

.cartpopup .checkoutcart {

    display: block;
    height: 50px;
    transition:all 0.3s;
    background: #000;
    text-align: center;
    position: relative;
    line-height: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    overflow: hidden;
    margin-bottom: 8px;
    margin:15px;
    position:absolute;
    bottom:5%;
    left:0;
    right:0;
}


.cartmsg {

    position: fixed;
    top: 8%;
    left: 11%;
    width: fit-content;
    padding: 6px;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    border: 2px solid #fff;
    background: #e4e4e4;
    color: #3F3F3F;
    z-index: 999;
    border-radius: 6px;
    font-size: 18px;
    font-weight: Bold;
    display:none;
}

.sidecheckout span , .sidecheckout .fa {
    color:#fff;
    font-size:16px;
    text-align:center;
}
.sidecheckout .fa {
    font-size:1.7em;
}

.sidecheckout .sidecounter {

    display: inline-block;
    min-width: 21px;
    height: 20px;
    border-radius: 18px;
    text-align: center;
    position: absolute;
    top: 7px;
    right: 10px;
    background: #000;
    color: white;
    font-size: 12px;
    padding-top: 1px;

}

.containside {
    display:none;
}
.sidecheckout {

    position: fixed;
    z-index:107;
    top: 25%;
    padding:15px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    left: -7px;
    background: #eb0f23;
    width: 85px;
    height: fit-content;
    border-radius: 6px;
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.33);
}


.cartmsg img{
    width:15%;
    margin-right:15px;
}

.cartpopup .paypic {

    position:absolute;
    bottom:0;
    right:0;
    left:0;
    width:85%;
    margin:0 auto;
}

.cartpopup .rightside {

    display:flex;
    flex-direction:column;
    flex-wrap:wrap;
}


.cartpopup .subdetails {
    display:flex;
    align-items:center;
    justify-content: center;
    font-size:15px;


}

.cartpopup .subdetails div {

    margin:5px;
}

.cartpopup .colordisplay {

    height:15px;
    width:15px;
    border-radius:15px;
    border:1px solid #000;

}


.cartpopup .checkoutcart a {

    color:#fff;
    margin-left:5px;
    transition:all 0.3s;
}

.cartpopup .bottomcarttop {
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.cartpopup .removepcart {
    float:left;
}


.cartpopup .leftsidecart {
    display:flex;
    flex-direction:column;
    font-size:18px;
}

.cartpopup .topcart {

    border-bottom: 1px solid #ececec;
    padding-bottom: 6px;
    font-size: 1.2em;
}

.cartpopup .fa {

    margin-left:5px;
}

.cartpopup .closecart {
    font-size: 1.8em;
    font-weight: bold;
    margin: 0px 10px;
    cursor:pointer;
    width:fit-content;
}


.cartpopup .closecart .fa {

    transition:all 0.3s;
}

.cartpopup .closecart:hover .fa {

    transform:rotate(180deg);
}


::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.cartpopup .cartproduct {

    margin: 5px 0px;
    border-bottom: 2px solid #ececec;
    padding-bottom: 10px;
}

.cartpopup .productlist {
    margin:5px;
    text-align:center;
    height:82%;
    overflow-y:scroll;
    overflow-x:hidden;
}

.openedcart {

    visibility:visible;
    transform: translateX(0px);
    opacity:1;


}


.cartpopup .productlist span {

    text-align:center;
    font-size:1.5em;
}

.cartpopup .removepcart {

    font-weight:bold;
    font-size:15px;
    cursor:pointer;
}

.cartpopup .productlist .load {
    display:none;
}

.cartpopup .titlecart {
    font-size:18px;
}

.cartpopup .tinyimg img {

    border:1px solid #b5b5b5;
    position:relative;
    width:150px;
}


@media(max-width:960px) {

    .cartpopup {

        width:85%;

    }


    .sidecheckout span , .sidecheckout .fas {
        color:#fff;
        font-size:14px;
    }
    .sidecheckout .fas {
        font-size:1.6em;
    }

    .cartpopup .productlist {
        height:75%;
    }

    .cartmsg {

        left:0;
        right:0;
        top:8%;
    }


}