.bb-tax-toggle {
  position: relative;
  display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
}

.bb-tax-toggle select {
  position: absolute;
  inset: 0;
  opacity: 0; 
  cursor: pointer;
}

.bb-toggle-ui span {
  flex: 1;
  text-align: center;
  z-index: 1;
}

.bb-toggle-slider {
  position: absolute;
  top: 3px;
  bottom: 4px;
  left: 4px;
    height: 18px;
  width: 18px;
  background: #333;
  border-radius: 20px;
    display: none;
}

.bb-toggle-ui {
  display: flex;
  align-items: center;
  background: #ccc;
  border-radius: 20px;
  padding: 4px;
  position: relative;
  width: 40px;
    height:24px;
    cursor: pointer;
    &.bb-toggled {
        background: #00b3a6;
        .bb-toggle-slider {
            transform: translateX(14px);
        }
    }
}