.bottom_cart{
    position: relative;
    z-index: 10000;
  }
  .bottom_cart.active .bottom_cart_overlay {
    display: block;
  }
  .bottom_cart.active .have_pro {
    /* transform: translateX(0); */
  }
  .bottom_cart.active .have_pro .bottom_cart_btn {
    position: absolute;
    top: -40px;
    box-shadow: none;
  }
  .bottom_cart.active .have_pro .bottom_cart_btn i {
    transform: rotate(0);
  }
  .bottom_cart .bottom_cart_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
  }
  .cart_open .bottom_cart .bottom_cart_overlay{
    display: block;
  }
  body.cart_open .bottom_cart .have_pro{
    transform: translateX(0);
  }
  .bottom_cart .have_pro {
    position: fixed;
    right: 0;
    padding: 0 30px;
    bottom: unset;
    top: 0;
    transform: translateX(100%);
    z-index: 1000;
    height: 100%;
    width: 473px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
  }
  .bottom_cart .have_pro .bottom_cart_btn {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 288px;
    height: 40px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 10px 10px 0 0;
    display: flex; 
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .bottom_cart .have_pro .bottom_cart_btn i {
    display: block;
    width: 18px;
    height: 10px;
    background: url(../img/select.svg) no-repeat center / contain;
    transition: all 0.3s;
    transform: rotate(180deg);
  }
  .bottom_cart .have_pro .pro_list {
    padding: 46px 0 6rem;
    max-height: 80vh;
    overflow: auto;
  }
  .bottom_cart .have_pro .pro_list::-webkit-scrollbar {
    width: 5px;
  }
  .bottom_cart .have_pro .pro_list::-webkit-scrollbar-track {
    background: #b3b1b1;
    border-radius: 10px;
  }
  .bottom_cart .have_pro .pro_list::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 10px;
  }
  .bottom_cart .have_pro .pro_list::-webkit-scrollbar-thumb:hover {
    background: #646464;
    border-radius: 10px;
  }
  .bottom_cart .have_pro .pro_list::-webkit-scrollbar-thumb:active {
    background: #444444;
    border-radius: 10px;
  }
  .bottom_cart .have_pro .pro_list li {
    display: flex;
    gap: 20px;
    /* align-items: center; */
    margin-bottom: 1rem;
    padding-right: 10px;
    position: relative;
    justify-content: space-between;
  }
  .bottom_cart .have_pro .pro_list li .img {
    min-width: 90px;
    width: 90px;
    height: 90px;
    margin-right: 1rem;
    overflow: hidden;
    border-radius: 8px;
    overflow: hidden;
  }
  .bottom_cart .have_pro .pro_list li .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .bottom_cart .have_pro .pro_list li .infos {
    flex: 1;
  }
  .bottom_cart .have_pro .pro_list li p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    padding-right: 1rem;
    line-height: 20px;
    margin-bottom: 1rem;
  }
  .bottom_cart .have_pro .pro_list li .num {
    font-size: 20px;
    color: #333;
    -moz-user-select: -moz-none;
    -moz-user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    padding: 0.4rem;
    border-radius: 5px;
    border: 1px solid #eee;

  }
  .bottom_cart .have_pro .pro_list li .num input {
    font-size: 18px;
    color: #333;
    width: 36px;
    text-align: center;
    display: flex;
    align-items: center;

  }
  .bottom_cart .have_pro .pro_list li .num span {
    cursor: pointer;
    opacity: 0.5;
    width: 15px;
    height: 15px;
    display: inline-block;
    background: url('../img/plus.svg') no-repeat center/80%;
    text-indent: -9999px;
  }
  .bottom_cart .have_pro .pro_list li .num span.reduce{
    background-image: url('../img/minus.svg');
  }
  .bottom_cart .have_pro .pro_list li .price {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    min-width: 10.246%;
    margin-left: 5.74%;
  }
  
  .bottom_cart .have_pro .pro_list li .delete {
    display: block;
    min-width: 9px;
    width: 9px;
    height: 9px;
    background: url(../img/close.svg) no-repeat center / contain;
    cursor: pointer;
    top: 5px;
    right: 0;
    /* margin-left: auto; */
    margin-top: 3px;
  }
  .bottom_cart .have_pro .total {
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 30px;
    background-color: #fff;
  }
  .bottom_cart .have_pro .total .content > .flex {
    height: auto;
    padding-bottom: 2rem;
  }
  .bottom_cart .have_pro .total p {
    font-size: 20px;
    line-height: 26px;
    color: #333;
  }
  .bottom_cart .have_pro .total strong {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
  }
  .bottom_cart .have_pro .total .button {
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    padding:  0;
    line-height: 45px;
    margin-left: 0;
    margin-bottom: 1rem;
    text-align: center;
    color: white;
    background-color: var(--theme_color);
  }
  .bottom_cart .have_pro .total .btns a.button:nth-of-type(2){
    background-color: #333;
  }
  .bottom_cart .have_pro .total .button:hover{
    filter: brightness(110%);
  }
  body.move-no{
    overflow: hidden;
  }
  .bottom_cart .have_pro .total .btns {
    padding-top: 25px;
    padding-bottom: 40px;
    border-top: 2px solid rgb(247, 247, 247);
    justify-content: space-between;
    display: flex;
    align-items: center;
    margin-top: 22px;
  }
  .bottom_cart .have_pro .total .btns a:nth-of-type(1){
    background-color: #333;
    color: #fff;
  }
  .bottom_cart .have_pro .total .btns a:nth-of-type(1):hover{
    color: white !important;
    background-color: var(--theme_color) !important;
    border-color: var(--theme_color) !important;
  }
  .bottom_cart .have_pro .total .button_d{
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    width: 47.2%;
    padding: 13px 0;
    background-color: var(--theme_color);
    color: white;
    transition: all 0.3s;
  }
  .bottom_cart .have_pro .total .button_d:hover{
    filter: brightness(110%);
  }
  .have_pro .close{
    width: 20px;
    height: 20px;
    background: url('../img/close.svg') no-repeat center/contain;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 9;
    display: inline-block;
  }
  .have_pro .close:hover{
    transform: rotate(180deg);
  }
  .empty-cart{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    padding-bottom: 10rem;
  }
  .empty-cart img{
    width: 100%;
    height: auto;
  }
  .empty-cart a{
    margin-top: 2rem;
    font-size: 15px;
    padding: 0.6rem 2rem;
    background-color: var(--theme_color);
    color: white;
    border-radius: 5px;
    margin-top: 2rem;
    transition: all 0.3s;
  }
  .empty-cart a:hover{
    filter: brightness(1.1);
  }
  .empty-cart .button{
    margin-top: 2rem;
    font-size: 17px;
    border-radius: 10px;
  }
  .bottom_cart .cart-head{
    padding: 32px 0;
    border-bottom: 2px solid rgb(247, 247, 247);
  }
  .bottom_cart .cart-head strong{
    font-size: 22px;
    font-weight: 500;
    display: flex;
    align-items: center;
  }
  .bottom_cart .cart-head strong span{
    width: 29px;
    height: 29px;
    margin-left: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 400;
    color: white;
    background-color: #333;
  }
  .woocommerce table.shop_table .cart-discount td{
    text-align: right;
    display: flex;
    justify-content: right;
  }

  .woocommerce-checkout table.shop_table .cart-discount td{ 
    display: block;
    padding-right: 1.8rem;
  }