
/** PRODUCT TAG **/

/** Product tag: Name **/

.product_tag .name > span {
    background-color: #E9E9E9;
    border-radius: 2rem;
    padding: 0 0.6rem;
}

/** Product tag: Color **/

.product_tag .type {
    font-weight: bold;
}

.product_tag .type > span {
    color: #F02004;
}

/** Product tag: Rating **/

.product_tag .rating {
    display: flex;
    gap: 0.5rem;
}

.product_tag .rating > div {
    background-image: url("../../svg/rating_f.svg");
    background-position: center;
    background-size: 100%;
    height: 1.8rem;
    width: 1.8rem;
}

.product_tag .rating > .rt_true {
    background-image: url("../../svg/rating_t.svg");
}

/** Product tag: Price **/

.product_tag .price {
    font-weight: bold;
}

.product_tag .price > span {
    color: #A9A9A9;
    font-weight: normal;
    text-decoration: line-through;
}