.selectBox {
    display: grid;
    column-gap: 20px;
    row-gap: 20px;
    width: 100%;
    color: var(--secondary-text);
}


.selectBox p {
    margin: 0;
    padding-right: 5px;
    font-size: 13px;
}

.selectBox span {
    width: 100%;
    display: block;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product_image img {
    position: relative !important;
    max-width: 217px;
    max-height: 125px !important;
    width: auto !important;
    height: auto !important;
}

.product_data {
    display: flex;
    column-gap: 30px;
    align-items: center;
}


.product_data_section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
}

.product_data_section_less {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 300px));
    min-height: 80px;
    column-gap: 20px;
    row-gap: 20px;
}


@media(max-width: 768px) {
    .product_section {

        display: flex;
        flex-direction: column;
        row-gap: 20px;

    }

    .product_data_section_less {
        justify-content: center;
        text-align: center;
    }

    .product_data {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .product_data_section {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .flex_data .purchase_detail {
        display: none !important;
    }

    .product_image img {
        max-width: 220px;
    }
}

.product_price {

    display: flex;
    align-items: center;
    justify-content: center;

}

.product_price p:last-child {
    margin: 0;
}

.product_price p {
    font-size: 15px;
}

@media(max-width: 768px) {
    .product_price {
        display: flex;
        justify-content: flex-end;
    }
}

.box_design {
    border: 10px;
    padding: 20px;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}



.purchase_detail {

    display: table;
    text-align: center;
    white-space: nowrap;
    margin-right: 15px;

}

.title_dark {
    color: var(--primary);
    font-size: 16px;
    font-weight: 500 !important;
}

.purchase_title {
    display: table-cell;
    font-weight: 400;
    padding-left: 10px;
}

.purchase_value {
    padding-left: 10px;
    display: table-cell;
    font-weight: 500;
}

.color_dark {
    color: var(--secondary-text);
    font-size: 15px;
}

@media(max-width: 768px) {
    .color_dark {
        font-size: 14px;
        font-weight: 300 !important;
    }

    .purchase_title {
        font-weight: 4300;
    }

    .title_dark {

        font-size: 14px;
    }

}

.total_price {
    text-decoration: line-through;
    color: var(--secondary-text);
}

.product_option_section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.button_section {
    text-align: center;
    min-width: 155px;
}

.return_status {
    font-size: 15px;
    font-weight: 500;
}

.address {
    color: var(--secondary-text);
}

.processing {
    color: var(--orange);
}

.completed {
    color: var(--green);
}

@media(max-width: 768px) {
    .product_option_section {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .button_section {
        text-align: center;
    }

}

@media(max-width:500px) {
    .selectBox {
        text-align: center;
        grid-template-columns: 1fr;
    }

    .product_price {

        display: flex;
        align-items: center;
        justify-content: center;

    }

    .box_design {
        max-width: 475px;
    }

}

.btnLoader svg {
    stroke: var(--primary);
    width: 24px;
    height: 24px;
    margin: 5px 0;
}

.return_btn_section {
    margin-top: 7px;
}

.order_status {
    color: var(--red);
    font-size: 17px;
    font-weight: 400;
    text-align: center;
}