.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);
    z-index: 99;
    display: none;
  }
  body{

    transition: transform 0.5s;
  }
  body.cart_open{
    transform: translateX(-400px);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow-y: scroll;
  }
  .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: 400px;
    background-color: #fff;
    border-left: 1px solid #eee;
    transition: transform 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: 10px 0 46px;
    max-height: 650px; 
    max-height: calc(100vh - 480px);
    overflow: auto;
  }
  .bottom_cart .have_pro .pro_list:before{
    opacity: 0;
  }
  .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[data-price] { 
    /* align-items: center; */
    padding: 15px 0;
    margin-bottom: 0rem;
    padding-right: 10px;
    position: relative;
    justify-content: space-between;
    border-bottom: 1px solid rgb(247,247,247);
    /* border-bottom: 1px solid #eee; */
  }
  .bottom_cart .have_pro .pro_list li[data-price]:last-of-type{
    border: none;
    padding-bottom: 4rem;
  }
  .bottom_cart .have_pro .pro_list li[data-price] .img {
    min-width: 90px;
    width: 90px;
    height: 90px;
    margin-right: 1rem;
    overflow: hidden;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
  }
  .bottom_cart .have_pro .pro_list li[data-price] .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .bottom_cart .have_pro .pro_list li[data-price] .img .flex{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s;
  }
  .bottom_cart .have_pro .pro_list li[data-price]:hover .img .flex{
    background-color: rgba(0, 0, 0, 0.5);
  } 
  .bottom_cart .have_pro .pro_list li[data-price] .img span{
    display: inline-block;
    padding: 0.2rem 0;
    font-size: 13px;
    background-color: transparent;
    color: #fff;
    width: 80%;
    border-radius: 3px;
    text-align: center;
    opacity: 0;
    border: 1px solid #fff;
    transition: all 0.3s;
    cursor: pointer;
  }
  .bottom_cart .have_pro .pro_list li[data-price]:hover .img span {
    opacity: 1;
  }
  .bottom_cart .have_pro .pro_list li[data-price]:hover .img span:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
  }
  .bottom_cart .have_pro .pro_list li[data-price] .img a.preview{
    margin-top: 0.5rem;
  }
  .bottom_cart .have_pro .pro_list li[data-price] .preview_box{
    width: 43%;
  } 
  .bottom_cart .have_pro .pro_list li[data-price] .infos {
    flex: 1; 
  }
  .bottom_cart .have_pro .pro_list li[data-price] .infos .variation dt{ 
    font-size: .9rem;
  }
  .bottom_cart .have_pro .pro_list li[data-price] .infos .variation dd p{
    font-size: .8rem;
  }
  .bottom_cart .have_pro .pro_list li[data-price] p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    padding-right: 1rem;
    line-height: 20px;
    margin-bottom: .5rem;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .bottom_cart .have_pro .pro_list li[data-price] .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.1rem 0.4rem;
    border-radius: 0px;
    border: 1px solid #eee;
    display: none;
  }
  .bottom_cart .have_pro .pro_list li[data-price] .num input {
    font-size: 14px;
    color: #333;
    width: 30px;
    text-align: center;
    display: flex;
    align-items: center;

  }
  .bottom_cart .have_pro .pro_list li[data-price] .num span {
    cursor: pointer;
    opacity: 0.5;
    width: 12px;
    height: 15px;
    display: inline-block;
    background: url('../img/plus.svg') no-repeat center/70%;
    text-indent: -9999px;
  }
  .bottom_cart .have_pro .pro_list li[data-price] .num span.reduce{
    background-image: url('../img/minus.svg');
  }
  .bottom_cart .have_pro .pro_list li[data-price] .num span.plus{
    transform: translateY(1px);
  }
  .bottom_cart .have_pro .pro_list li[data-price] .price {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    min-width: 10.246%;
    margin-left: 5.74%;
  }
  
  .bottom_cart .have_pro .pro_list li[data-price] .delete {
    display: block;
    min-width: 14px;
    width: 14px;
    height: 14px;
    background: url(../img/trash.svg) no-repeat center / contain;
    cursor: pointer;
    top: 5px;
    right: 0;
    /* margin-left: auto; */
    margin-top: 3px;
  }

  .bottom_cart .have_pro .pro_list li[data-price] .cart-row2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1pt solid #b2b2b2;
    padding: .5rem;
  } 
  .bottom_cart .have_pro .pro_list li[data-price] .cart-row2 .cart-col-price{
    display: flex;
    max-width: max-content;
    min-width: 155px;
    justify-content: right;
  }
  .bottom_cart .have_pro .pro_list li[data-price] .cart-row2 .cart-col-name{
    font-size: 16px;
  }
  .bottom_cart .have_pro .pro_list li[data-price] .cart-row2 .cart-col-price .price{
    font-size: 16px;
  }
  .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;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    background-color: #fff;
  }
  .bottom_cart .have_pro .total .discount_min_cart{
    margin-bottom: 1rem;
  }
  .bottom_cart .have_pro .total .content > .flex {
    height: auto;
    padding-bottom: 2rem;
  }
  .bottom_cart .have_pro .total p {
    font-size: 15px;
    line-height: 18px;
    color: #333;
    width: 100%;
  }
  .bottom_cart .have_pro .total strong {
    font-size: 20px;
    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: 15px;
    padding-bottom: 15px;
    border-top: 2px solid rgb(247, 247, 247);
    justify-content: space-between;
    display: flex;
    align-items: center;
    margin-top: 15px;
  }
  
  .bottom_cart .have_pro .total .button_d{
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    padding: 13px 0;
    display: flex;
    border-radius: 6px;
    border: 1px solid #4AB962;
    background-color: #4AB962;
    color: #fff;
    transition: all 0.3s;
    justify-content: center;
    gap: .5rem;
    align-items: center;
  }
  .bottom_cart .have_pro .total .button_d img{
    display: block;
    margin-top: -1px;
  }

  .bottom_cart .have_pro .total .button_d:hover{
    filter: brightness(110%);
    background-color: transparent;
    color: #000;
  }
  .bottom_cart .have_pro .total .button_d:hover img{
    filter: brightness(0);
  }
  .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: 70%;
    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;
    border: 1px solid var(--theme_color);
  }
  .empty-cart a:hover{
    background-color: white;
    color: #333;
    
  }
  .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;
  }

 .might_content ul.products li.product{
  width: 100%!important;
 }
 .might_content ul.products li.product .instagram-modal-item-status{
  z-index: 0!important;
 } 
 .might_content ul.products li.product .product_variantes{
  display: none;
 }
 .might_content ul.products li.product .product_note{
  font-size: 13px;
 }
 .might_content .shop_product_list .products{
  grid-template-columns: repeat(2, 1fr)!important;
  display: grid;
 }
 .might_content .shop_product_list .products::after,
  .might_content .shop_product_list .products::before{
  display: none!important;
 }

 .might_content .products .product .product_variantes{
  margin: 1rem auto 0rem!important;
 }
 .might_content .products .product strong.title{
  font-size: 15px;
  line-height: 19px;
 }

 .might_content .products .product .product_variantes ul li span{
  width: 14px;
  height: 14px;
 }
 .might_content{
  margin-top: 2rem;
 }
 .might_content .head{
  margin-bottom: 1rem;
 }
 .might_content .head strong{
  font-size: 1.2rem;
  margin-bottom: 2rem;
  display: block;
 }

 .woocommerce-cart .woocommerce-shipping-totals{
  display: none!important;
 }

 .min_cart_box{
  gap: .5rem;
  margin-top: .5rem;
 }

 .min_cart_box .cart-customized-item{  
    font-size: 14px !important;
    font-weight: 500;
    padding: .4rem 1rem !important;
    border-radius: 5px !important;
    background-color: #4AB962 !important;
    color: #fff !important;
    cursor: pointer;
    flex: 1;
    text-align: center;
 }
 
 .min_cart_box .cart-customized-item.edit_design{
    background-color: transparent !important;
    color: #fff !important;
    background-color: #000 !important; 
    padding: .4rem .9rem !important;
 }

 .min_cart_box .preview_box a{  
  font-size: 14px !important;
  font-weight: 500;
  padding: .4rem 1rem !important; 
  border-radius: 5px !important;
  display: block;
  text-align: center;
  flex: 1;
  cursor: pointer;
  border: #000 solid 1px;
 }
 
 
.cart-head .wc-free-shipping-progress {
  margin-bottom: 20px; 
}

.cart-head .progress-bar-container {
  width: 100%;
  background-color: #e0e0e0;
  height: 12px;
  border-radius: 12.5px;
  overflow: hidden;
}

.cart-head .progress-bar {
  height: 100%;
  background-color:#4AB962;
  width: 0;
  transition: width 0.5s ease-in-out;
}

.cart-head .progress-status {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 500;
}
 
.cart-head .progress-status.achieved {
  color: #4AB962
}

.cart-head .progress-status.error {
  color: #f44336;
  font-weight: bold;
}

.clear_cart_box{
  display: flex; 
  margin-bottom: .8rem;
  align-items: center;
  gap: .5rem;
}

.clear_cart_box .clear_cart_config{
  display: none;
  align-items: center;
  gap: .5rem;
}
.clear_cart_box .clear_cart_config.active{
  display: flex;
}

.clear_cart_for_user{
  text-align: right;
  cursor: pointer;
  text-decoration: underline;
}

.clear_cart_config button{
  border-radius: 5px;
  padding: 3px;
  display: block;
}

#cart-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  z-index: -1;
}

#cart-modal.active {
  visibility: visible;
  z-index: 100000;
}

#cart-modal-overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}
#cart-modal-box { 
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  padding: 30px 28px 32px;
  position: fixed;
  background-color: #fff;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.cart-modal-nodesign {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.cart-modal-nodesign h3{
  margin-bottom: 1rem;
}
.cart-modal-nodesign p{
  margin-bottom: 2rem;
}
button.confirm-button { 
  width: 185px;
  max-width: 100%;
  height: 36px;
  text-align: center;
  font-size: 14px; 
  line-height: 36px;
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}
.cart-modal-nodesign button.confirm-button {
  width: 145px;
  margin: 5px 3px 0;
  height: 40px;
}
#back-cart {
  background-color: #b6b6b6;
}