.wrgtoggle {
    touch-action: pan-x;
    display: inline-block;
    position: relative;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    padding: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
  }

  .wrgtoggleuncheck span,
  .wrgtogglecheck span {
    align-items: center;
    display: flex;
    height: 10px;
    justify-content: center;
    position: relative;
    width: 10px;
  }

  .wrgtogglecontainer {
    width: 4.8rem;
    height: 2.4rem;
    padding: 0;
    border-radius: 30px;
    background-color: var(--cookie-input-bg, #ced0dd);
    transition: all 0.2s ease;
  }

  .wrgtogglecontainerOn {
    background-color: var(--cookie-input-on-bg, #4DD792);
  }

  .wrgtogglecircle {
    transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    position: absolute;
    top: 1px;
    left: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--cookie-input-circle-bg, #fafafa);
    box-sizing: border-box;
    transition: all 0.2s ease;
  }

  .wrgtogglecircleAgreed {
    right: 1px;
    left: auto;
  }