@import '../styles/_variables.scss';

.root {
  .title {
    display: inline-flex;
    font-family: $duda-font;
    font-size: 14px;
    text-transform: capitalize;
    color: #313131;

    span {
      padding-inline-start: 4px;
    }
  }
}

.item {
  display: flex;
  align-items: center;
  height: 36px;

  &.selected {
    background-color: #bae7ff;

    .title {
      font-weight: bold;
    }
  }

  &.over {
    border: 1px solid red;
  }

  .switcher {
    display: inline-flex !important;
    font-size: 60%;
    transition: transform 0.3s ease-in-out;
    transform: rotate(0);
    width: 12px;
    cursor: pointer;

    &.expanded {
      transform: rotate(90deg);
    }
  }

  .icon {
    height: 20px;
    padding-inline-end: 4px;
  }

  .title {
    font-size: 14px;
    text-transform: capitalize;
    color: #313131;
  }
}