/* animation */
.my-zoom-in-top-enter-active,
.my-zoom-in-top-leave-active {
  opacity: 1;
  -webkit-transform: scaleY(1) translateZ(0);
  transform: scaleY(1) translateZ(0);
  -webkit-transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
}

.my-zoom-in-top-enter,
.my-zoom-in-top-leave-active {
  opacity: 0;
  -webkit-transform: scaleY(0) translateZ(0);
  transform: scaleY(0) translateZ(0);
}

/* my-radio */
.my-radio {
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  outline: none;
  font-weight: 500;
  font-size: 0;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.my-radio.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.my-radio--inner, .my-radio--text {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.my-radio--inner input {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  visibility: hidden;
}

.my-radio-icon {
  position: relative;
  display: inline-block;
  line-height: 1;
  width: 16px;
  height: 16px;
  border: 1px solid #DCDCDC;
  border-radius: 50%;
  box-sizing: border-box;
}

.my-radio-icon.active {
  border-color: #0084FF;
  background-color: #0084FF;
}

.my-radio-icon.active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -3px;
  margin-left: -3px;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
}

.my-radio--text {
  padding-left: 10px;
  font-size: 14px;
}

/* my-select */
.my-select {
  position: relative;
  width: 100%;
  height: 30px;
  font-size: 14px;
  color: #6D6E6E;
  background-color: #F4F5F7;
  border-radius: 4px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.my-select.show::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.my-select.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.my-select::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -3px;
  width: 0;
  height: 0;
  will-change: transform;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #adadad;
  -webkit-transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.my-select .my-select-text {
  display: block;
  padding: 0 10px;
  line-height: 30px;
  width: 100%;
  height: 30px;
  box-sizing: border-box;
}

.my-option-group {
  position: absolute;
  left: 0;
  top: 40px;
  width: 100%;
  max-height: 210px;
  will-change: transform;
  border: 1px solid #999;
  box-sizing: border-box;
  z-index: 100;
  overflow-y: auto;
}

.my-option-group::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -6px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #adadad;
}

.my-option-group::after {
  content: "";
  position: absolute;
  left: 10px;
  top: -6px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}

.my-option, .my-empty {
  padding: 0 10px;
  line-height: 30px;
  background-color: #fff;
}

.my-option {
  cursor: pointer;
}

.my-empty {
  cursor: auto;
}

.my-option:hover, .my-option.is-selected {
  color: #0084FF;
  background: #eee;
}