.tab {
  text-align: center;
  .tabitem {
    cursor: pointer;
    display: inline-block;
    width: 300px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    border: 1px solid #ccc;
    text-align: center;
    background-color: #E4F0ED;
    &:hover {
      background-color: #C6DCD7;
    }
    &:active {
      background-color: #B8D6CF;
    }
    &:last-child {
      border-left: 0;
    }
    &.active {
      color: white;
    }
  }
}

.show-error {
  .Select-control {
    border-color: #ff0000 !important;
    box-shadow: none !important;
    input {
      border: none;
    }
  }
  &.validate-failed {
    .Select-control {
      input {
        border: none !important;
      }
    }
  }
  .input-group-addon {
    border-color: #ff0000;
  }
}

.input-group {
  width: 100%;
}

.tooltip-target {
  z-index: 3;
  position: relative;
}

.editable-tagsinput-wrapper {
  .bootstrap-tagsinput {
    border-color: #d2d6de;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
  }
  &.show-error {
    .bootstrap-tagsinput {
      border-color: #ff0000;
      input {
        border: none !important;
      }
    }
  }
}

.editable-textarea {
  textarea {
    resize: none;
  }
  .value-wrapper {
    white-space: pre-wrap;
  }
}

