/**
    Padding
*/
/**
    Margin Section
*/
/**
    Font Section
*/
/*
    Canvas Element Colors
*/
.task-item-overview {
  position: relative;
}

.task-item-overview.is-disabled {
  background-color: rgba( 248, 248, 248 ,  1 );
  background-color: rgba( var(--palette-neutral-2,248, 248, 248) ,  1 );
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55));
}

.task-item-overview.is-disabled .overview-title {
  text-decoration: line-through;
}

.task-item-overview.is-disabled .overview-icon-svg, .task-item-overview.is-disabled .overview-icon-png {
  opacity: 0.4;
}

.task-item-overview.location-line-top .selectable-item-section {
  border-top-color: rgba( 0, 90, 158 ,  1 );
  border-top-color: rgba( var(--palette-primary-shade-20,0, 90, 158) ,  1 );
}

.task-item-overview.location-line-bottom .selectable-item-section {
  border-bottom-color: rgba( 0, 90, 158 ,  1 );
  border-bottom-color: rgba( var(--palette-primary-shade-20,0, 90, 158) ,  1 );
}

.task-item-overview :focus {
  border-right:  1px solid;
  border-right-color: rgba( 16, 110, 190 ,  1 );
  border-right-color: rgba( var(--palette-primary-shade-10,16, 110, 190) ,  1 );
}

.task-item-overview .task-description-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

.task-item-overview .task-description-text .task-version-upsell, .task-item-overview .task-description-text .task-preview-badge {
  font-size: 11px;
}

.task-item-overview .task-description-text .task-preview-badge {
  background: rgba( 0, 0, 0 ,  1 );
  background: rgba( var(--palette-neutral-100,0, 0, 0) ,  1 );
  color: rgba( 255, 255, 255 ,  1 );
  color: rgba( var(--palette-neutral-0,255, 255, 255) ,  1 );
  padding: 4px;
  text-transform: uppercase;
  border-radius: 8px;
  margin-right: 10px;
}

.task-item-overview .task-description-text .task-test-badge {
  background: rgba( 0, 0, 0 ,  1 );
  background: rgba( var(--palette-neutral-100,0, 0, 0) ,  1 );
  color: rgba( 255, 255, 255 ,  1 );
  color: rgba( var(--palette-neutral-0,255, 255, 255) ,  1 );
  padding: 4px;
  text-transform: uppercase;
  border-radius: 8px;
  margin-right: 10px;
}

.task-item-overview .task-description-text .task-deprecated-badge {
  background: rgba(0, 0, 0, .55);
  background: var(--text-secondary-color,rgba(0, 0, 0, .55));
  color: rgba( 255, 255, 255 ,  1 );
  color: rgba( var(--palette-neutral-0,255, 255, 255) ,  1 );
  padding: 4px;
  text-transform: uppercase;
  border-radius: 8px;
  margin-right: 10px;
}

.task-item-overview .task-version-upsell {
  font-size: 12px;
  float: left;
  color: rgba( 0, 90, 158 ,  1 );
  color: rgba( var(--palette-primary-shade-20,0, 90, 158) ,  1 );
  padding-right: 5px;
}

.task-item-overview-animation-container .task-add-delete-animation-enter {
  left: 100%;
  background-color: rgba( 222, 236, 249 ,  1 );
  background-color: rgba( var(--palette-primary-tint-30,222, 236, 249) ,  1 );
}

.task-item-overview-animation-container .task-add-delete-animation-enter.task-add-delete-animation-enter-active {
  left: 0;
  background-color: none;
  -webkit-transition: left 500ms ease 0s, background 500ms ease 500ms;
  -moz-transition: left 500ms ease 0s, background 500ms ease 500ms;
  -ms-transition: left 500ms ease 0s, background 500ms ease 500ms;
  -o-transition: left 500ms ease 0s, background 500ms ease 500ms;
  transition: left 500ms ease 0s, background 500ms ease 500ms;
}

.task-item-overview-animation-container .task-add-delete-animation-leave {
  left: 0;
  -webkit-transition: height 250ms ease 500ms;
  -moz-transition: height 250ms ease 500ms;
  -ms-transition: height 250ms ease 500ms;
  -o-transition: height 250ms ease 500ms;
  transition: height 250ms ease 500ms;
}

.task-item-overview-animation-container .task-add-delete-animation-leave.task-add-delete-animation-leave-active {
  left: -100%;
  -webkit-transition: left 500ms ease 0s, height 250ms ease 500ms;
  -moz-transition: left 500ms ease 0s, height 250ms ease 500ms;
  -ms-transition: left 500ms ease 0s, height 250ms ease 500ms;
  -o-transition: left 500ms ease 0s, height 250ms ease 500ms;
  transition: left 500ms ease 0s, height 250ms ease 500ms;
}
