.sliderRadioGroup {
  display: inline-grid;
  grid-template-columns: repeat(2, 50%);
  justify-items: center;
  align-items: center;
  width: 100%;
  height: 36px;
  background: #eff3fc;
  padding: 4px;
  border-radius: 8px;

  margin-bottom: 20px;

  .sliderItem {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;

    svg {
      margin-right: 10px;
      //width: 18px;
      //height: 13px;
    }

    &.unSelected {
      background: none;
      color: #999999;
      svg {
        fill: #999999;
      }
    }

    &.selected {
      transition: all 0.4s ease;
      background: #ffffff;
      color: #1679ff;
      border-radius: 8px;
      svg {
        fill: #1670ff;
      }
    }
  }
}
