//css for PackageContent
.package-content {
    background: #fff;
    padding: 1.25rem 0.75rem 1rem 0.75rem;
    margin-top: 0.5rem;
    .package-content__header {
        margin-bottom: 0.8rem;
    }
    .package-content__card {
        box-shadow: 0rem 0.2rem 0.6rem 0rem rgba(233, 233, 233, 1);
        border-radius: 0.2rem;
    }
}

.food-menu-container {
    padding: 0.6rem 0.75rem;
}

.food-menu-container-title {
    &:not(:first-child) {
        margin-top: 0.95rem;
    }
}

.food-menu-title {
    display: flex;
    flex-direction: row; // &:not(:first-child) {
    //     margin-top: 0.8rem;
    // }
    .title-des {
        margin-left: 0.25rem;
        font-size: 0.75rem;
        font-weight: 400;
        color: #000000;
        line-height: 0.95rem;
    }
    .title-image {
        width: 0.75rem;
        height: 0.75rem;
    }
}

.food-menu_title-layout {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.food-menu {
    &:not(:first-child) {
        .food-menu__title {
            margin-top: 0.55rem;
        }
    }
    .food-menu__title {
        font-size: 0.75rem;
        font-weight: 500;
        line-height: 0.95rem;
        color: rgba(255, 153, 51, 1);
        margin-bottom: 0.25rem;
    }
    .food-menu__title--multi {
        margin-left: 0.5rem;
    }
    .food-menu__item {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        line-height: 1.05rem;
        &:not(:last-child) {
            margin-bottom: 0.15rem;
        }
    }
    .foodMenu-item_name {
        position: relative;
        display: flex;
        flex: 1;
        align-items: flex-start;
        color: rgba(0, 0, 0, 1);
        padding-left: 0.5rem;
        margin-right: 0.5rem;
        .foodMenu-item_text {
            font-size: 0.7rem;
            font-weight: 300;
            flex-wrap: wrap;
            word-break: break-all;
        }
        &::before {
            content: '•';
            position: absolute;
            left: 0;
            top: 0;
            font-size: 0.5rem;
        }
    }
    .foodMenu-item_count {
        flex-shrink: 0;
        font-size: 0.5rem;
        font-weight: 400;
        color: rgba(117, 117, 117, 1);
        margin-left: 0.35rem;
    }
    .foodMenu-item_price {
        flex-shrink: 0;
        font-size: 0.7rem;
        font-weight: 300;
        color: rgba(68, 68, 68, 1);
    }
}

.package-comment {
    padding: 0.75rem 0.45rem 0.45rem 1.65rem;
    .package-comment__title {
        position: relative;
        font-size: 0.7rem;
        line-height: 1;
        font-weight: 400;
        color: rgba(0, 0, 0, 1);
        margin-left: -1rem;
        margin-bottom: 0.575rem;
        &:not(:first-child) {
            margin-top: 0.575rem;
        }
    }
    .icon-cost,
    .icon-desc {
        position: relative;
        top: 0;
        display: inline-block;
        width: 0.7rem;
        height: 0.7rem;
        margin-right: 0.3rem;
    }
    .package-comment-item {
        padding-left: 0.5rem;
        font-size: 0.65rem;
        line-height: 1rem;
        font-weight: 300;
        color: rgba(68, 68, 68, 1);
        &:not(:last-child) {
            margin-bottom: 0.15rem;
        }
        .comment-item__point {
            font-size: 0.5rem;
            margin-right: 0.25rem;
            margin-left: -0.5rem;
        }
    }
}

.package-content {
    .commonheader-container {
        .cmh-title--line {
            line-height: 1.3rem;
            &::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0.2rem;
                width: 0.15rem;
                height: 0.75rem;
                transform: translateY(0);
                border-radius: 0.08rem;
                background: #FF2244;
            }
        }
    }
}

.package-content__moreGroupon {
    margin-top: 0.75rem;
    padding: 0.65rem;
    padding-bottom: 0.55rem;
    background: rgba(249, 249, 249, 1);
    border-radius: 0.4rem;
    .moreGroupon__title {
        font-size: 0.7rem;
        font-weight: 500;
        color: rgba(68, 68, 68, 1);
        line-height: 1.05rem;
    }
    .moreGroupon__priceInfo {
        position: relative;
        display: flex;
        justify-content: flex-start;
        align-items: baseline;
        margin-top: 0.1rem;
        height: 1rem;
        .moreGroupon__soldPrice {
            font-size: 0.8rem;
            font-weight: 500;
            color: rgba(255, 34, 68, 1);
            line-height: 1rem;
        }
        .moreGroupon__marketPrice {
            margin-left: 0.15rem;
            margin-right: 0.55rem;
            font-size: 0.6rem;
            font-weight: 300;
            color: rgba(157, 157, 157, 1);
            line-height: 0.8rem;
        }
        .moreGroupon__label {
            display: inline-flex;
            align-items: center;
            border: 1px solid rgba(255, 34, 68, 1);
            color: rgba(255, 34, 68, 1);
            border-radius: 0.2rem 0.2rem 0.2rem 0;
            font-size: 0.5rem;
            height: 0.65rem;
            font-weight: 400;
            padding: 0 0.25rem;
            transform: translateY(-0.1rem);
        }
        .moreGroupon__arrow {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.55rem;
            font-weight: 500;
            color: rgba(68, 68, 68, 1);
        }
    }
}