.tbc-simple-dropdown {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}

.tbc-simple-dropdown .placeholder {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #222222;
  background: #F9F9FA;
  border-radius: 4px;
  width: 100%;
  height: 60px;
}

.tbc-simple-dropdown .placeholder:hover {
  background: #EEEEEF;
}

.tbc-simple-dropdown .placeholder label {
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #73737F;
  font-size: 1rem;
  line-height: 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.tbc-simple-dropdown .placeholder .txt {
  opacity: 0;
  margin-top: 8px;
  padding: 0 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.tbc-simple-dropdown .placeholder.filled label {
  color: #73737F;
  font-size: 12px;
  line-height: 14px;
  margin-top: -16px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.tbc-simple-dropdown .placeholder.filled .txt {
  opacity: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.tbc-simple-dropdown .placeholder svg {
  width: 18px;
  right: 16px;
  float: right;
  margin-right: 16px;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.tbc-simple-dropdown.active .placeholder svg {
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.tbc-simple-dropdown.active .options {
  display: block;
  z-index: 1000;
  opacity: 1;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  width: 100%;
}

.tbc-simple-dropdown .options {
  display: none;
  color: #8F8F99;
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  margin-top: 8px;
  width: 240px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  max-height: 12rem;
  overflow: auto;
}

.tbc-simple-dropdown .option {
  background: #fff;
  height: 60px;
}

.tbc-simple-dropdown .option:hover {
  background: #F9F9FA;
}

.tbc-simple-dropdown .option:first-child {
  border-radius: 4px 4px 0 0;
}

.tbc-simple-dropdown .option:last-child {
  border-radius: 0 0 4px 4px;
}

.tbc-simple-dropdown .option label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 16px;
}

.tbc-simple-dropdown .option.selected {
  color: #222222;
}

.tbc-simple-dropdown input[type="radio"] {
  display: none;
}
/*# sourceMappingURL=tbc-simple-dropdown.css.map */