/* ========================================================================== Text Radio Buttons ========================================================================== */ .text_radio_button_control:after { content: " "; display: block; clear: both; } .text_radio_button_control .radio-buttons { display: flex; } .text_radio_button_control .radio-button-label { cursor: pointer; margin: 0 -1px; } .text_radio_button_control .radio-button-label > input { display: none; } .text_radio_button_control .radio-button-label span { cursor: pointer; font-weight: 500; border: 2px solid #2084bd; margin: 0; background-color: #eee; padding: 4px 11px; font-size: 12.5px; display: inline-block; } .text_radio_button_control .radio-button-label span:hover { background-color: rgba(255, 255, 255, .2); color: #2885bb; } .text_radio_button_control .radio-button-label > input:checked + span { background-color: #2084bd; color: #fff; } .text_radio_button_control .radio-button-label > input:checked + span:hover { color: #fff; }