.my_cart_popup.show {
    visibility: visible;
    transform: translateX(0);
}
.my_cart_popup {
    position: fixed;
    width: 400px;
    background-color: #fff;
    border-radius: 0;
    padding: 26px 16px 18px 0;
    z-index: 999999;
    visibility: hidden;
    transition: .5s all ease;
    -webkit-transition: .5s all ease;
    -o-transition: .5s all ease;
    -moz-transition: .5s all ease;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    height: 100%;
}
.widget_shopping_cart_content {
    max-height: 100%;
    overflow: auto;
    padding-bottom: 50px;
}
.my_cart_popup .cart_pro_wrap>span {
    width: 40%!important;
    border: #707070 1px solid;
}
.my_cart_popup .action_btn{
    display: flex;
    justify-content: center;
    margin-top: 40px;
    flex-direction: row-reverse;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 13px;
    border-radius: 0;
}


@media only screen and (max-width: 1460px){
    .my_cart_popup {
        left: 0;
        top: 0;
    }
}
@media only screen and (max-width: 960px){
    .my_cart_popup {
        top: 0;
        left: 0;
        right: 0;
        margin-left: 0;
        z-index: 111111;
    }
}
@media only screen and (max-width: 575px){
    .my_cart_popup{
        width: 100%;
        padding: 26px 16px 18px 18px;
    }
}