/*=============================
<========stepper start========>
==============================*/
.stepper {
    display: flex;
    gap: 50px;
    padding-left: 0;
    list-style: none;
    justify-content: center;
    z-index: 5;
}

.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-circle-border {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    border: 5px solid #d5d8ec;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    z-index: 2;
    box-shadow: 12px 12px 36px 6px rgba(0, 0, 0, 0.1);

}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    /* border: 5px solid #D5D8EC; */
    /* Border of color D5D8EC */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    z-index: 2;
    box-shadow: 12px 12px 36px 6px rgba(0, 0, 0, 0.1);
}

.step-dot {
    height: 10px;
    width: 10px;
    background: #000;
    border: 1px solid #000;
    border-radius: 50%;
}

.step-text {
    font-size: 12px;
    color: #333;
    font-weight: 600;
}

.steps:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 27%;
    left: 65%;
    width: 80px;
    height: 2px;
    background-color: #d5d8ec;
    transform: translateY(-50%);
    z-index: 1;
}

/*===========================
<========stepper end========>
============================*/

.cart_container {
    padding: 30px;
    margin: 30px auto 35px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: 12px 12px 36px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 10px;
}

.cart_items_container{
    display: flex;
    flex-direction: column;
    /* padding: 15px; */
    /* gap: 15px; */
}

.cart_items_container > div{
    padding: 15px;
}

.cart_items_container > div:first-child{
    padding-top: 0;
}

.cart_items_container > div:not(:last-child) {
    border-bottom: 2px solid #ededed;
}

.cart_item_img {
    height: 60px;
    width: 60px;
    border-radius: 5px;
}

.cart_item_title,
.cart_item_price {
    text-transform: uppercase;
    font-size: 13.5px;
    font-weight: 500;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cart_item_sub_title {
    text-transform: uppercase;
    font-size: 13.5px;
    font-weight: 500;
    margin: 0;
    color: #979797;
}

/*==============================
            button group
==============================*/
.cart_decrease_btn,
.cart_qty_input,
.cart_increase_btn {
    height: 30px;
    width: 30px;
    font-size: 12px;
    text-align: center;
    border: none;
    background-color: #fff;
}

.cart-btn-group {
    display: flex;
}

.cart_decrease_btn {
    border: 1px solid #333;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.cart_qty_input {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.cart_increase_btn {
    border: 1px solid #333;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

/* Chrome, Safari, Edge, Opera */
.cart_qty_input::-webkit-outer-spin-button,
.cart_qty_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.cart_qty_input[type=number] {
  -moz-appearance: textfield;
}

.cart_coupon_btn{
    display: block;
    text-decoration: none;
    font-weight: 500;
    background-color: #E6EEF1;
    padding: 0.5rem;
    border-radius: 5px;
    color: #888F97;
    text-align: center;
}

.cart-text-left{
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    color: #0C021B;
}

.cart-text-right{
    font-size: 34px;
    font-weight: 900;
    margin: 0;
    color: #0C021B;
}

.cart_order_btn{
    display: block;
    width: 100%;
    padding: 7px;
    background-color: #0C021B;
    border: none;
    border-radius: 7px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 12.5px;
}

