#st_header .blockcart .cart_body {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    height: 100%;
    width: 475px;
    background: white;
    padding-top: 0px;
    box-shadow: rgb(34 45 57 / 18%) 0px 14px 30px 0px, rgb(34 45 57 / 6%) 0px 4px 3px 0px, rgb(34 45 57 / 6%) 0px 0px 0px 1px;
}
#st_header .blockcart .cart_body::before {
    content: none;
}
#st_header .blockcart.open .cart_body {
    transform: translateX(0);
    transition: 0.5s;
    z-index: 99;
}
#st_header .blockcart .cart_body__header {
    display: flex;
}
#st_header .blockcart .cart_body__header :is(.cart_body__header_cart, .cart_body__header_wishlist) {
    flex: 1;
    padding: 15px 0px;
    text-align: center;
    color: #111;
    background: #EFEFEF;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
}

#st_header .blockcart .cart_body .shoppingcart-list.hidden,
#st_header .blockcart .cart_body .wishlist_cart.hidden {
    display: none;
}

#st_header .blockcart .cart_body__header :is(.cart_body__header_cart:not(.open), .cart_body__header_wishlist:not(.open)) {
    border-bottom: 1px solid #e5e5e5;
}
#st_header .blockcart .cart_body__header_close {
    flex-basis: 50px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    font-size: 27px;
    color: #111;
    border-bottom: 1px solid #e5e5e5;
}
#st_header .blockcart .cart_body__header > div.open {
    background: white;
    border-bottom: 2px solid #111;
}
#st_header .blockcart .cart_body .small_cart_product_list {
    padding: 30px;
    max-height: unset;
}
#st_header .blockcart .cart_body .small_cart_product_list .line_item {
    border-bottom: none;
    margin-bottom: 25px;
    position: relative;
}
#st_header .blockcart .cart_body .small_cart_product_list .line_item .bottom_price_quantity {
    margin-top: 44px;
    align-items: flex-end;
}
#st_header .blockcart .cart_body .small_cart_product_list .line_item .price {
    font-weight: 400;
    font-size: 18px;
}
#st_header .blockcart .cart_body .small_cart_product_list .line_item .attributes_info {
    display: flex;
    color: #111;
    font-size: 15px;
    margin-top: 10px;
}
#st_header .blockcart .cart_body .small_cart_product_list .line_item .ajax_remove_button {
    font-size: 22px;
    color: #111;
    position: absolute;
    right: 0;
    bottom: 45px;
}
#st_header .blockcart .cart_body .small_cart_product_list .line_item .attributes_info .color_info {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #f2f2f2;
}
#st_header .blockcart .cart_body .small_cart_product_list .line_item .attributes_info .color_info,
#st_header .blockcart .cart_body .small_cart_product_list .line_item .attributes_info .small_cart_attr_attr:nth-child(2) {
    margin-right: 7px;
}
#st_header .blockcart .cart_body .small_cart_product_list .line_item .product-name{
    color: #111;
    font-size: 16px;
    text-transform: lowercase;
    font-weight: 600;
}
#st_header .blockcart .cart_body .small_cart_product_list .line_item .product-name::first-letter {
    text-transform: uppercase;
}
#st_header .blockcart .cart_body .dropdown_box {
    height: 100%;
    display: flex;
    flex-direction: column;
}
#st_header .blockcart .cart_body .small_cart_product_image {
    border: none;
    width: auto;
}
#st_header .blockcart .cart_body .small_cart_sumary {
    padding: 25px 0px 25px 0px;
}
#st_header .blockcart .cart_body .shoppingcart-list {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    justify-content: space-between;
}
#st_header .blockcart .small_cart_btn {
    background: #111;
    color: white;
    text-transform: uppercase;
    border-color: #111;
    font-size: 14px;
    height: 44px;
    border-radius: 4px;
    width: 85%;
    margin: 0 auto;
    line-height: 22px;
    font-weight: 500;
}
#st_header .blockcart .cart_summary_subtotal_products {
    border-bottom: none;
    width: 85%;
    margin: 0 auto;
    margin-bottom: 5px;
}
#st_header .blockcart .cart_summary_subtotal_products > span {
    font-weight: 500;
    color: #111;
}
#st_header .blockcart .cart_summary_subtotal_products .price {
    color: #111;
    font-weight: 500;
}
#st_header .blockcart .cart_body .small_cart_product_list__wrapper::-webkit-scrollbar {
    width: 4px;
}

#st_header .blockcart .cart_body .small_cart_product_list__wrapper::-webkit-scrollbar-thumb {
    background-color: grey;
    border-radius: 20px;
}
#st_header .blockcart .cart_body .small_cart_product_list__wrapper::-webkit-scrollbar-track {
    background: #ebebeb;
    border-radius: 4px;
}
#st_header .blockcart .cart_body .small_cart_product_list__wrapper {
    overflow: auto;
}
#st_header .blockcart.open .overlay{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.25s;
    z-index: 100;
    background: rgba(0,0,0,0.3);
}
#st_header .blockcart .cart_empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 90%;
    text-align: center;
    margin: 0 auto;
    flex-direction: column;
}
#st_header .blockcart .cart_empty__title {
    color: #111;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
}
#st_header .blockcart .cart_empty__text {
    color: #111;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 15px;
}
#st_header .blockcart .cart_empty__button_wishlist {
    border: 1px solid #111;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
    text-transform: uppercase;
    background: #111;
    color: white;
    margin-bottom: 15px;
    cursor: pointer;
}
#st_header .blockcart .cart_empty__button_collections {
    width: 100%;
    border: 1px solid #111;
    padding: 10px;
    text-transform: uppercase;
    border-radius: 4px;
    background: white;
    color: #111;
    cursor: pointer;
}

#st_header .blockcart  .shoppingcart-list .small_cart_product_image {
    margin-right: 10px;
    margin-top: 0px;
    width: auto;
    border: none;
}
#st_header .blockcart .shoppingcart-list .line_item .add_to_love {
    position: absolute;
    right: 0;
    margin-right: 0px;
}

#st_header .blockcart .shoppingcart-list .line_item .add_to_love i {
    font-size: 18px;
    margin-right: 0px;
    color: #de8982;
}
