/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 08 2025 | 11:28:51 */
*,
*:before,
*:after {
  box-sizing: border-box;
}
.radio {
  display: grid !important;
  grid-template-columns: min-content auto;
  grid-gap: 0.5em;
  width: auto !important;
  margin-right: 10px;
}
.radio__input input {
    opacity: 0;
    width: 0;
    height: 0;
}
.radio__control {
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 0.1em solid var(--a-color-blanco);
  transform: translateY(-0.05em);
  cursor: pointer;
}
.radio__input {
  display: flex;
}
.radio__label {
  line-height: 1;
}
.radio__input input:checked + .radio__control {
      background: var(--a-color-blanco);
}
