* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.app {
    padding-top: 20px;
}

.tabs {
    width: 100%;
}

.tab-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ccc;
    overflow: auto;
}

.tab-list::-webkit-scrollbar {
    display: none;
}

.tab-list__item {
    position: relative;
    flex-grow: 1;
    padding: 12px;
    /* background-color: #ab8e66; */
    text-align: center;
    background-color: #fff;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    min-width: 124px;
    flex-shrink: 0;
    transition: all linear 0.1s;
}

.tab-list__item:hover {
    background-color: rgba(171, 142, 102, 0.2);
}

.tab-list__item.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    color: #ab8e66;
    font-weight: 550;
    border-bottom: 2px solid #ab8e66;
}

.tab-list__item.active {
    color: #ab8e66;
    font-weight: 550;
}

.tab-content {
    margin-top: 20px;
    width: 100%;
}

.tab-pane {
    width: 100%;
    display: none;
}

.tab-pane.active {
    display: block;
}

.list-order {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.list-order__item {
    width: 100%;
    box-shadow: 0 0 5px 0 rgba(204, 204, 204, 0.3);
}

.list-order__item-wrapper {
    padding: 0 40px;
}

.list-order__item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(204, 204, 204, 0.3);
}

.order-item__status {
    display: flex;
    align-items: center;
    width: fit-content;
    column-gap: 10px;
}

.order-item__status .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    color: #26aa99;
}

.order-item__status .text {
    font-size: 14px;
    color: #26aa99;
}

.order-item__method {
    display: flex;
    align-items: center;
    width: fit-content;
    column-gap: 10px;
}

.order-item__method .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    color: #26aa99;
}

.order-item__method .text {
    font-size: 14px;
    color: #26aa99;
}

.list-order__item-middle {
    padding: 20px 0;
}

.order-product {
    display: flex;
}

.order-product:not(:first-of-type) {
    margin-top: 20px;
}

.order-product__img {
    width: 80px;
    height: 80px;
}

.order-product__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-product__info {
    flex-grow: 1;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.order-product__title {
    text-decoration: none;
    color: unset;
    margin: 0;
    font-size: 16px;
    text-align: left;
    font-weight: 200;
}

.order-product__title:hover {
    color: #ab8e66;
    text-decoration: none;
}

.order-product__type {
    color: rgba(0, 0, 0, .54);
    font-size: 14px;
}

.order-product__quantity {
    font-size: 14px;
}

.order-product__price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
    color: #ab8e66;
}

.list-order__item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: #fffefb;
    padding: 0 40px;
    border-top: 1px dashed #f6ecc9;
}

.list-order__item-bottom__cancel {
    font-size: 14px;
    cursor: pointer;
    transition: all linear 0.1s;
}

.list-order__item-bottom__cancel:hover {
    color: #ab8e66;
}

.list-order__item-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.list-order__item-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.list-order__item-bottom__total {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 0;
}

.list-order__item-bottom__total .icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #ab8e66;
}

.list-order__item-bottom__total .text {
    font-size: 14px;
    line-height: 20px;
}

.list-order__item-bottom__total .total {
    font-size: 24px;
    line-height: 30px;
    display: block;
    margin-left: 20px;
    color: #ab8e66;
    font-weight: 550;
}

@media screen and (max-width: 576px) {
    .list-order__item-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .list-order__item-bottom__total {
        padding: 15px 0;
    }

    .list-order__item-bottom__cancel {
        padding-bottom: 15px;
    }

    .list-order__item-bottom__total .total {
        font-size: 20px;
    }

    .list-order__item-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-product {
        flex-direction: column;
        align-items: center;
    }

    .order-product~.order-product {
        padding-top: 20px;
        margin-top: 0;
        border-top: 1px solid rgba(204, 204, 204, 0.3);
    }

    .order-product__title {
        text-align: center;
    }

    .order-product__quantity {
        text-align: center;
    }
}

@media screen and (max-width: 576px) {

    .list-order__item-wrapper,
    .list-order__item-bottom {
        padding: 0 10px;
    }
}