
.vertical-center {
  min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
  min-height: 100vh; /* These two lines are counted as one :-)       */

  display: flex;
  align-items: center;
}

.editable_text {
  border-radius: 5px;
  padding: 4px;
  cursor: pointer;
}

.editable_text:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.editable_text_area {
    width: 100%;
    padding: 4px;
    box-sizing: border-box;
    border: none;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.3);
    resize: none;
    color: #ffffff;
}

.editable_text_area:focus {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    outline:0px !important;
    -webkit-appearance:none;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.0) inset, 0 0 8px rgba(255, 255, 255, 0.0);
    outline: 0 none;
    border-radius: 5px;
}

.comment-text-area {
    width: 100%;
    /* padding: 4px; */
    box-sizing: border-box;
    border: none;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.3);
    resize: none;
    color: #ffffff;
}

.comment-text-area:focus {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    outline:0px !important;
    -webkit-appearance:none;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.0) inset, 0 0 8px rgba(255, 255, 255, 0.0);
    outline: 0 none;
    border-radius: 5px;
}

.extra-small-text {
  font-size: xx-small
}

.clickable-icon {
  cursor: pointer;
}

.clickable-icon:hover {
  opacity: 0.6;
}

.disabled-clickable-icon {
  cursor: default;
  opacity: 0.6;
}

.preserve-linebreak {
  white-space: pre-wrap;
}

.badge-purple{
  color:#fff;
  background-color:#9900cc
}

.badge-dark-red{
  color:#fff;
  background-color:#84354c
}

.badge-olive-green{
  color:#fff;
  background-color: #669966
}

.badge-peach{
  color:#fff;
  background-color: #ff9966
}

.badge-yellow{
  color:#000;
  background-color: #ffcc33
}

.badge-orange {
  color: #fff;
  background-color: #f36c00;
}

.badge-client-review {
  color:#fff;
  background-color: #287f55
}

.fade-in.ng-hide {
  opacity: 0;
}

.fade-in.ng-hide-remove {
  transition: all linear 1000ms;
}
.fade-in.ng-hide-add {
  transition: all linear 500ms;
}

.item-description{
  word-break: break-word;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  max-height: 5%;  /* Fallback for browsers do NOT support vh unit */
  max-height: 5vh; /* These two lines are counted as one :-)       */
}

.loading-spinner {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

.loading-spinner-small {
  border: 3px solid #f3f3f3; /* Light grey */
  border-top: 3px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(720deg); }
}

.sortable-column-header-text {text-decoration: underline;}
