.mic-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 100px;
}
.mic-scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
}
.mic-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #aaa;
}
.mic-checkbox-wrapper:hover {
  color: #03b3b3;
}
.mic-checkbox-wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  font-size: 12px;
  color: #666;
}
.mic-checkbox-wrapper .children a {
  font-size: 12px;
  color: #03b3b3;
  text-decoration: none;
}
.mic-checkbox-wrapper .children a:hover {
  color: #02c7c7;
  text-decoration: underline;
}
.mic-checkbox {
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  display: inline-block;
  line-height: 1;
  position: relative;
  vertical-align: text-bottom;
}
.mic-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  background-color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.mic-checkbox-input {
  position: absolute;
  left: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.mic-checkbox-checked .mic-checkbox-inner,
.mic-checkbox-indeterminate .mic-checkbox-inner {
  background-color: #03b3b3;
  border-color: #03b3b3;
}
.mic-checkbox + span,
.mic-checkbox-wrapper + span {
  padding-left: 5px;
  padding-right: 5px;
}
.mic-checkbox-checked .mic-checkbox-inner:after {
  -webkit-transform: rotate(45deg) scale(1);
  -ms-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1);
  position: absolute;
  left: 3px;
  top: 0;
  display: table;
  width: 5px;
  height: 8px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  content: " ";
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}
.mic-checkbox-inner:after {
  -webkit-transform: rotate(45deg) scale(0);
  -ms-transform: rotate(45deg) scale(0);
  transform: rotate(45deg) scale(0);
  position: absolute;
  left: 3px;
  top: 0;
  display: table;
  width: 5px;
  height: 8px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  content: " ";
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6);
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6);
}
.mic-checkbox-wrapper.disabled {
  cursor: not-allowed;
  color: #ACA899;
}
.mic-checkbox-wrapper.disabled .mic-checkbox-inner {
  background-color: #F5F5F5;
  border-color: #ACA899;
}
.mic-checkbox-wrapper.disabled .mic-checkbox-input {
  cursor: not-allowed;
}
.mic-checkbox-wrapper.disabled.mic-checkbox-checked .mic-checkbox-inner:after {
  border-color: #ACA899;
}
.mic-checkbox-wrapper.portrait {
  display: table;
  margin-right: 0;
  margin-bottom: 5px;
}
