/* Mixins */
/**
    Be as precise as possible when applying this style!
    overflow: hidden; used here will cause the element to get its own render layer.
    This is a huge performance drawback when applied to a lot of elements in the table!
 */
/*
 * Copyright 2018, collaboration Factory AG. All rights reserved.
 */
.cf-cplace-workflow table {
  padding: unset;
  border: none;
  width: 100%;
  vertical-align: top;
}
.cf-cplace-workflow table > colgroup > col:first-child {
  width: 40%;
}
.cf-cplace-workflow table > colgroup > col:last-child {
  width: 60%;
}
.cf-cplace-workflow table > tbody > tr > td {
  vertical-align: top;
}
.cf-cplace-workflow table .cf-wf-attr-states li,
.cf-cplace-workflow table .cf-wf-attr-transitions li {
  margin-top: 6px;
}
.cf-cplace-workflow table .cf-wf-attr-state,
.cf-cplace-workflow table .cf-wf-attr-transition {
  display: inline-block;
  min-width: 230px;
  padding: 4px;
}
.cf-cplace-workflow table .cf-wf-attr-state-default {
  color: #516818;
}
.cf-cplace-workflow table .cf-wf-attr-transition-delete {
  position: relative;
  top: -2px;
}
.cf-cplace-workflow .cplace-control-group {
  max-width: none;
}
.cf-cplace-workflow .modal-body .col-md-5 {
  width: 20%;
}
.cf-cplace-workflow .modal-body .col-md-7 {
  width: 80%;
}
#cf-wf-validation-messages {
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 30;
}
#cf-wf-validation-messages .cf-cplace-wf-messages-panel {
  height: 300px;
  width: 350px;
  box-shadow: 1px 2px 4px 1px rgba(225, 228, 234, 0.75);
  border: 1px solid #c3c9d6;
}
#cf-wf-validation-messages .cf-cplace-wf-messages-panel .panel-heading {
  color: #FFFFFF;
  background-color: #F5BB17;
}
#cf-wf-validation-messages .cf-cplace-wf-messages-panel .panel-heading .panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 19px;
}
#cf-wf-validation-messages .cf-cplace-wf-messages-panel .panel-heading .wf-messages-dismiss {
  color: #FFFFFF;
}
#cf-wf-validation-messages .cf-cplace-wf-messages-panel .wf-message {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 7px;
  padding-bottom: 5px;
  font-size: 14px;
}
#cf-wf-validation-messages .cf-cplace-wf-messages-panel .wf-attr-list {
  overflow-y: auto;
  height: 250px;
}
#cf-wf-validation-messages .cf-cplace-wf-messages-panel .wf-attr-list .wf-vm-page-link {
  font-size: 16px;
  padding-left: 3px;
}
#cf-wf-validation-messages .cf-cplace-wf-messages-panel .wf-attr-list .wf-vm-page-link > a {
  text-decoration: none;
  font-size: 16px;
  margin-left: -3px;
}
#cf-wf-validation-messages .cf-cplace-wf-messages-panel .wf-attr-list .wf-vm-page-link > a:hover::after {
  content: "\f054";
  float: right;
  font-family: FontAwesome, serif;
  color: #0078BD;
}
#cf-wf-validation-messages .cf-cplace-wf-messages-panel .wf-attr-list .wf-attr-msgs > li {
  padding: 2px;
}
#cf-wf-validation-messages .cf-cplace-wf-messages-panel .wf-attr-list .wf-attr-msgs > li:hover {
  background-color: #f3f4f7;
}
#cf-wf-validation-messages .cf-cplace-wf-messages-panel .wf-attr-list .wf-attr-msgs .wf-attr-name {
  font-size: 12px;
  color: #536079;
  padding-bottom: 1px;
}
#cf-wf-validation-messages .cf-cplace-wf-messages-panel .wf-attr-list .wf-attr-msgs .wf-attr-msg {
  font-size: 14px;
}
.cf-cplace-wf-state {
  padding: 0 8px;
}
.filter-list .cf-cplace-wf-state {
  display: inline-block;
}
.cf-cplace-workflow-transition-button {
  position: relative;
  display: inline-block;
  padding: 1em 1em 1em 0;
  margin: 0.1em 0;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition-property: color;
  transition-duration: 0.5s;
}
.cf-cplace-workflow-transition-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  z-index: -1;
}
.cf-cplace-workflow-transition-button:hover:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66);
}
.cf-cplace-workflow-transition-button:focus {
  outline: none;
}
.cf-cplace-workflow-transition-button .cf-cplace-workflow-transition-icon {
  width: 2.5em;
  text-align: center;
}
.cf-cplace-workflow-transition-button .cf-cplace-workflow-transition-label {
  color: #343C4C;
  padding-left: 1em;
  transition-property: color;
  transition-duration: 0.2s;
}
.cf-cplace-workflow-transition-button-compact {
  padding: 0.2em 0.5em 0.2em 0;
}
.cf-cplace-workflow-transition-button-compact .cf-cplace-workflow-transition-label-compact {
  color: #343C4C;
  padding-left: 0.5em;
  transition-property: color;
  transition-duration: 0.2s;
}
.cf-cplace-workflow-transition-button-column {
  width: 100%;
}
.cf-cplace-workflow-transition-title {
  font-weight: 700;
  padding: 0.1em 0.1em 0.5em 0.1em;
}
