.results,
.production_cost,
.shipping_details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.results > span,
.production_cost > span,
.shipping_details > span {
    display: flex;
    gap: 10px;
    text-wrap-mode: nowrap;
    padding: 5px 10px;
    align-items: center;
    justify-content: center;
    border-radius: 43px;
    background: #e9e9e9;
}

.shipping_details > span:nth-child(1),
.comparisons_production_cost > div:nth-child(4) {
    background: #ede8e0;
}

.shipping_details > span:nth-child(2),
.comparisons_production_cost > div:nth-child(3) {
    background: #e0e1ed;
}

.shipping_details > span:nth-child(3),
.comparisons_production_cost > div:nth-child(2) {
    background: #e0ede3;
}

.shipping_details > span:nth-child(4),
.comparisons_production_cost > div:nth-child(1) {
    background: #edeae0;
}

.results > span:nth-child(1) {
    background: #ffe2e2;
}

.results > span:nth-child(2) {
    background: #ddffca;
}

.results > span:nth-child(3) {
    background: #ffcaf4;
}

.results > span:nth-child(4) {
    background: #caecff;
}


.results-td > div,
.production_cost-td > div,
.shipping_details-td > div{
    max-height: 100px;
    overflow: hidden;
    overflow-y: auto;
}