radio button input hide and label checked css

PHOTO EMBED

Wed May 08 2024 07:48:56 GMT+0000 (Coordinated Universal Time)

Saved by @divyasoni23 #css

.gfield-choice-input {
      opacity: 0;
      position: absolute;
   // top: 50% !important;
   // transform: translateY(-50%);

      &:checked+label {
        background: $primary;
        color: $white;
      }
    }

    .gchoice {
      input:checked+label {
        &:before {
          filter: brightness(5);
        }
      }
    }
content_copyCOPY