/*!
 * Beetan Theme
 *
 * Author: StorePress ( StorePressHQ@gmail.com )
 * Date: 12/22/2022, 6:05:03 PM
 * Released under the GPLv3 license.
 */
/* Text radio button */
.text_radio_button_control:after {
  content: " ";
  display: block;
  clear: both;
}
.text_radio_button_control .radio-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.text_radio_button_control .radio-button-label {
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.text_radio_button_control .radio-button-label > input {
  display: none;
}
.text_radio_button_control .radio-button-label span {
  cursor: pointer;
  border: 1px solid #d0d0d0;
  padding: 9px 15px;
  text-align: center;
  display: block;
  margin: 0;
  margin-left: -1px;
}
.text_radio_button_control .radio-button-label:first-of-type span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.text_radio_button_control .radio-button-label:last-of-type span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.text_radio_button_control .radio-button-label span:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #1E8CBE;
}
.text_radio_button_control .radio-button-label > input:checked + span {
  background-color: #1E8CBE;
  border-color: #2271b1;
  color: #ffffff;
  fill: #ffffff;
}
.text_radio_button_control .radio-button-label > input:checked + span:hover {
  color: #ffffff;
}
