@import '../../app.less';

.g-special-radio-wrapper {
  display: inline-block;

  .g-special-radio {
    display: inline-block;
    text-align: center;
    line-height: 28px;
    background: #ECEDEE;
    color: #686872;
    padding: 0 10px;
    min-width: 60px;
    border-radius: 6px;
    font-size: 12px;
    position: relative;
    overflow: hidden;

    i {
      display: none;
      position: absolute;
      bottom: 0;
      right: 0;
      color: #fff;
      z-index: 1;
      font-size: 10px;
      transform: scale(0.8);
    }
  }
}

.g-special-radio-wrapper.checked {

  .g-special-radio {
    background: #E7F5FD;
    color: #40A8E2;

    i {
      display: block;
    }
  }

  .g-special-radio::after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 8px solid;
    border-color: transparent #40A8E2 #40A8E2 transparent;
  }
}

.g-special-radio-wrapper.theme {

  .g-special-radio {
    border: 1px solid #ECEDEE;
  }
}

.g-special-radio-wrapper.checked.theme {

  .g-special-radio {
    background: #40A8E2;
    color: #fff;
    border: 1px solid #40A8E2;

    i {
      color: #40A8E2;
    }
  }

  .g-special-radio::after {
    border-color: transparent #fff #fff transparent;
  }
}

.g-special-radio-group {
  margin: 0 -7.5px;

  .g-special-radio-wrapper {
    margin: 0 7.5px;
  }
}

.g-radio-wrapper {
  display: inline-block;

  .g-radio {
    display: inline-block;
    text-align: center;
    line-height: 28px;
    background: #ECEDEE;
    color: #686872;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 12px;
  }
}

.g-radio-wrapper.checked {

  .g-radio {
    background: #E7F5FD;
    color: #40A8E2;
  }
}

.g-radio-group {
  margin: 0 -7.5px;

  .g-radio-wrapper {
    margin: 0 7.5px;
  }
}