.cart_modal_cont {
    position: absolute;
    top: 0;
    right: 1rem;
    height: 45rem;
    width: 28.125rem;
    max-width: 100vw;
    background-color: white;
    color: black;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.cart_modal_cont ::-webkit-scrollbar {
    display: none;
}
.cart_modal_cont .content_cont {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}
#address-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
}
.cart_modal_cont .content_cont .bottom_cont {
    text-align: end;
    height: 180px;
    margin-top: 0.5rem;
    width: 100%;
}
.cart_modal_cont .content_cont .subtotal_cont,
.cart_modal_cont .content_cont .total_cont {
    display: flex;
    justify-content: space-between;
}
.cart_modal_cont .content_cont .bottom_cont button {
    height: 2.5rem;
    width: 9.375rem;
    color: white;
    background-color: black;
    border: none;
    margin-bottom: 1.5rem;
    cursor: pointer;
}
.cart_modal_cont .content_cont .bottom_cont .subtotal_cont {
    border-bottom: 1px solid black;
}
.cart_modal_cont .content_cont .bottom_cont .total_cont {
    margin-bottom: 1.5rem;
}
.cart_modal_cont .content_cont .bottom_cont .check_out_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 auto;
    background-color: var(--distro-green);
    height: 2.5rem;
    width: 9.375rem;
    color: white;
    border: none;
    cursor: pointer;
}
.cart_modal_cont .content_cont .cart_item_list_cont {
    height: calc((100% - 180px) - 0.5rem);
    overflow-x: hidden;
    overflow-y: scroll;
}
.cart_modal_cont .content_cont .close_btn {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    height: 2.5rem;
    width: 2.5rem;
    background-color: var(--distro-green);
    color: white;
    cursor: pointer;
}
.cart_modal_cont .content_cont .cart_item_list_cont .cart_item_cont {
    display: flex;
    padding-block: 1.5rem;
    border-bottom: 1px solid black;
}
.cart_modal_cont .content_cont .cart_item_list_cont .cart_item_cont .left_cont {
    width: 125px;
    margin-right: 1rem;
}
.cart_modal_cont .content_cont .cart_item_list_cont .cart_item_cont .left_cont .img_cont {
    width: 100%;
    min-height: fit-content;
    max-height: 100%;
    overflow: hidden;
}
.cart_modal_cont .content_cont .cart_item_list_cont .cart_item_cont .left_cont .img_cont img {
    width: 7.8125rem;
}
.cart_modal_cont .content_cont .cart_item_list_cont .cart_item_cont .right_cont .title-bin_cont {
    display: flex;
}
.cart_modal_cont .content_cont .cart_item_list_cont .cart_item_cont .right_cont .title-bin_cont > p {
    min-width: 14rem;
}
.cart_modal_cont .content_cont .cart_item_list_cont .cart_item_cont .right_cont .title-bin_cont .material-symbols-outlined {
    display: flex;
    align-items: center;
    color: black;
    cursor: pointer;
}
.cart_modal_cont .content_cont .cart_item_list_cont .cart_item_cont .right_cont .quantity-price_cont {
    display: flex;
    margin-top: 0.5rem;
    justify-content: space-between;
    align-items: end;
}
@media screen and (max-width: 500px) {
    .cart_modal_cont {
        top: 0;
        right: 0;
        width: 100vw;
    }
}
