.tbc-simple-dropdown {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  user-select: none;
  width: 100%;
  min-height: 78px; }
  .tbc-simple-dropdown .placeholder {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    color: #73737F;
    background: #F4F4F4;
    border: 1px solid #DADADA;
    border-radius: 4px;
    width: 100%;
    height: 60px; }
    .tbc-simple-dropdown .placeholder:hover {
      background: #ECECEC; }
    .tbc-simple-dropdown .placeholder label {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: #73737F;
      font-size: 1rem;
      line-height: 20px;
      transition: all .3s; }
    .tbc-simple-dropdown .placeholder .txt {
      opacity: 0;
      margin-top: 20px;
      padding: 0 16px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: all .3s; }
    .tbc-simple-dropdown .placeholder.filled label {
      color: #73737F;
      font-size: 12px;
      line-height: 14px;
      margin-top: -12px;
      transition: all .3s; }
    .tbc-simple-dropdown .placeholder.filled .txt {
      opacity: 1;
      transition: all .3s; }
    .tbc-simple-dropdown .placeholder svg {
      width: 18px;
      right: 16px;
      float: right;
      margin-right: 16px;
      transition: transform .3s; }
  .tbc-simple-dropdown.active .placeholder svg {
    transition: transform .3s;
    transform: rotate(180deg); }
  .tbc-simple-dropdown.active .options {
    display: block;
    z-index: 1000;
    opacity: 1;
    transition: opacity .3s; }
  .tbc-simple-dropdown.error .placeholder {
    border-color: #EB4949; }
  .tbc-simple-dropdown .options {
    max-height: 210px;
    overflow-y: auto;
    display: none;
    color: #8F8F99;
    position: absolute;
    opacity: 0;
    transition: opacity .3s;
    margin-top: 8px;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1); }
  .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: flex;
      align-items: center;
      height: 100%;
      padding: 0 16px; }
    .tbc-simple-dropdown .option.selected {
      color: #222222; }
  .tbc-simple-dropdown input[type="radio"] {
    display: none; }
  .tbc-simple-dropdown .err-msg {
    display: block;
    height: 18px;
    position: absolute;
    font-size: 10px;
    line-height: 10px;
    color: #EB4949;
    padding-top: .5rem; }
