/* Tyres Icon */
.container { display: flex; flex-direction: column; gap: 13px; }
.row { display: flex; gap: 1px; justify-content: center; }
.circle-element { width: 45px; height: 45px; border: 4px solid; border-radius: 50%; display: flex; align-items: center; justify-content: center; background-color: transparent; text-align: center; position: relative; overflow: visible; }
.soft { border-color: #dcdcdc; }
.medium { border-color: #ece000; }
.hard { border-color: #c2424f; }
.wet { border-color: #4abdfe; }
.crossed::after { content: ""; position: absolute; top: 50%; left: 50%; width: 150%; height: 4px; background-color: #ff0000; transform: translate(-50%, -50%) rotate(-45deg); }
.label { width: 100%; text-align: center; margin-top: 5px; flex-shrink: 0; }
.label.soft { color: #dcdcdc; }
.label.medium { color: #ece000; }
.label.hard { color: #c2424f; }
.label.wet { color: #4abdfe; }
.circle-with-label { display: flex; flex-direction: column; align-items: center; width: 74px; }