/* Hide the default radio circle */ .elementor-field-type-radio input[type="radio"] { display: none; } /* Style the labels as toggle buttons */ .elementor-field-type-radio label { display: inline-block; padding: 10px 20px; border: 1px solid #ccc; border-radius: 25px; margin: 0 5px; cursor: pointer; background: #f5f5f5; transition: all 0.3s ease; } /* Selected state */ .elementor-field-type-radio input[type="radio"]:checked + label { background: #1f3b83; /* ENTERAC blue */ color: #fff; border-color: #1f3b83; }
Scroll to Top