.select.modal {
  .modal-header {
    > .close {
      color: #000000;
    }
  }

  .modal-body {
    max-height: 500px;
    overflow-y: scroll;

    > .option {
      padding: 15px 0px;
      margin: 0px 15px;

      > .option-tick {
        float: right;
        display: none;
      }
    }

    > .option.selected {
      color: #fc5510;

      > .option-tick {
        display: block;
      }
    }
  }
}

.selectWrap {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 48px;
  padding: 6px 12px;
  background-color: #fbfbfb;
  background-image: none;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  -webkit-transition: border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  > .open-options {
    position: absolute;
    text-decoration: none;
    color: #000;
    right: 0px;

    > span.icon {
      font-size: 14px;
    }
  }

  &.disabled > .open-options {
    display: none;
  }

  > .select-content {
    display: block;

    > .addedOption {
      color: white;
      background-color: #ffffff;
      border: 1px solid #333;
      padding: 5px;
      border-radius: 3px;
      margin: 2px;
      float: left;
      cursor: pointer;

      > .text {
        color: #333;
      }
      > .removeOption {
        color: #aaa;
        margin-left: 10px;
      }
    }
  }

  &.disabled > .select-content {
    > .addedOption {
      cursor: not-allowed;
      > .text {
        color: #999;
      }

      > .removeOption {
        display: none;
      }
    }
  }
}

.clickable {
  cursor: pointer;
}

.icon {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
