.product_table {
list-style-type: none;
    background-color: #fff;
    box-shadow: 0 5px 10px 0 rgb(29 28 28 / 15%);
    display: flex;
    min-height: 480px;
    margin: 15px auto 34px;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: initial;
flex-direction: column;
}

@media only screen and (min-width: 600px) 
{
.product_table {
vertical-align: baseline;
flex-direction: row;
}
}

.product_cell{
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
 border-left-width: 1px;
 border-top-style: solid;
 border-right-style: solid;
 border-bottom-style: solid;
 border-left-style: solid;
 border-top-color: rgb(225, 225, 225);
 border-right-color: rgb(225, 225, 225);
 border-bottom-color: rgb(225, 225, 225);
 border-left-color: rgb(225, 225, 225);
 border-image-source: initial;
 border-image-slice: initial;
 border-image-width: initial;
 border-image-outset: initial;
 border-image-repeat: initial;
    flex: auto;
    position: relative;
    text-align: center;
}

.product_cell a {
    display: flex;
    color: #059af0;
    text-decoration: none;
flex-direction: column;
min-height: 480px;
}
.product_award {
    color: #fff;
    text-transform: uppercase;
margin: 0 auto;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

.product_cell_alt .product_award span, .product_cell_alt .product_award span:before {
    background: #6f4040;
    border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    padding: 12px 8px 10px;
    position: relative;
    text-align: center;
    width: 90px;
}


.product_image {
    display: flex;
    height: 250px;
    align-items: center;
    justify-content: center;
}

.product_name {
    color: #584e4e;
}

.btn_price{
    color: #fff;
    flex: 1 1;
    display: flex;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column-reverse;
}
.btn_price span, .btn_price span:before {
    background: #ff0000;
    border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    padding: 12px 8px 10px;
    position: relative;
    text-align: center;
    width: 90px;
}






.product_rating {
margin: 0 auto;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 200%;
    font-family: inherit;
    vertical-align: baseline;
}

.product_rating .fa-star {
    color: #ebc30a;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display,inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}
.fa-star:before {
    content: "\f005";
}


.product_criteria_list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
margin-bottom: 10px;
    margin-top: 10px;
}

.product_criteria{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

.product_criteria > .criteria_text {
    color: #584e4e;
}



.product_option_list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    margin-top: 10px;
}

.product_option {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
    margin: 0 20px;
}

.option_mark {
    margin-right: 5px;
    color: #fc0;
}
.option_text {
    color: #584e4e;
}



:root {
	 --star-size: 60px;
	 --star-color: #f9f3e3;
	 --star-background: #fc0;
}
 .Stars {
	 --percent: calc(var(--rating) / 5 * 100%);
	 display: inline-block;
	 font-size: 100%;
	 font-family: Times;
	 line-height: 1;
}
 .Stars::before {
	 content: '★★★★★';
	 letter-spacing: 3px;
	 background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
	 -webkit-background-clip: text;
	 -webkit-text-fill-color: transparent;
}
.product_criteria > .Stars {
font-size: 150%;
}