.radio-checkbox input[type="radio"] {
  display: none;
}

.radio-checkbox input[type="radio"]+span:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 2px solid #c7c7c7;
  border-radius: 50%;
  vertical-align: middle;
}

.radio-checkbox input[type="radio"]:checked+span:before {
  border-color: #343457;
  background: radial-gradient(circle, #343457 43%, transparent 50%);
}

.radio-checkbox {
  cursor: pointer;
}

.wpgb-radio-facet {
  display: flex !important;
  gap: 22px;
  flex-direction: row;
  align-items: center;
  max-width: 360px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .wpgb-radio-facet {
    max-width: unset;
  }
}