/**
    Padding
*/
/**
    Margin Section
*/
/**
    Font Section
*/
/*
    Canvas Element Colors
*/
.dtc-task-item {
  outline: none;
  cursor: default;
  max-width: 910px;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dtc-task-item .dtc-task-details {
  width: 100%;
  display: table;
  table-layout: fixed;
}

.dtc-task-item .dtc-task-details .dtc-task-draggable {
  float: left;
  width: 80%;
  padding-left: 12px;
}

.dtc-task-item .dtc-task-details .dtc-task-draggable.isDragged {
  background-color: rgba( 222, 236, 249 ,  1 );
  background-color: rgba( var(--palette-primary-tint-30,222, 236, 249) ,  1 );
}

.dtc-task-item .dtc-task-details .dtc-task-icon {
  width: 32px;
  height: 32px;
  margin: 14px 0;
  float: left;
}

.dtc-task-item .dtc-task-details .dtc-task-info {
  float: left;
  vertical-align: middle;
  width: 70%;
  padding: 12px;
}

.dtc-task-item .dtc-task-details .dtc-task-info .info-name {
  font-size: 16px;
  font-weight: 400;
}

.dtc-task-item .dtc-task-details .dtc-task-info .info-description {
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55));
  font-size: 12px;
  padding-top: 5px;
  text-align: justify;
}

.dtc-task-item .dtc-task-details .dtc-task-list-item-buttons {
  float: right;
  margin: 12px;
  display: none;
  min-width: 106px;
  max-width: 140px;
}

.dtc-task-item .dtc-task-footer {
  display: none;
  margin-bottom: 10px;
  width: 100%;
  font-size: 12px;
  padding-left: 33px;
}

.dtc-task-item .dtc-task-footer .dtc-task-author {
  float: left;
}

.dtc-task-item .dtc-task-footer .dtc-task-learn-more {
  float: right;
  margin-right: 8px;
}

.dtc-task-item .dtc-task-footer .dtc-task-learn-more .dtc-task-learn-more-button {
  font-size: 12px;
  color: rgba( 0, 90, 158 ,  1 );
  color: rgba( var(--palette-primary-shade-20,0, 90, 158) ,  1 );
  height: 20px;
}

.dtc-task-item .dtc-task-footer .dtc-task-learn-more .dtc-task-learn-more-button .dtc-task-learn-more-info-icon {
  margin-left: 1px;
  margin-right: 0px;
}

.dtc-task-item:hover {
  background-color: rgba( 239, 246, 252 ,  1 );
  background-color: rgba( var(--palette-primary-tint-40,239, 246, 252) ,  1 );
}

.dtc-task-item:hover .dtc-task-details .dtc-task-list-item-buttons {
  display: block;
  background-color: rgba(0, 0, 0, .55);
  background-color: var(--text-secondary-color,rgba(0, 0, 0, .55));
}

.dtc-task-item:hover .dtc-task-details .dtc-task-list-item-buttons:hover {
  background-color: rgba( 0, 90, 158 ,  1 );
  background-color: rgba( var(--palette-primary-shade-20,0, 90, 158) ,  1 );
}

.dtc-task-item.is-selected {
  background-color: rgba( 222, 236, 249 ,  1 );
  background-color: rgba( var(--palette-primary-tint-30,222, 236, 249) ,  1 );
}

.dtc-task-item.is-selected:focus {
  border-bottom:  1px solid;
  border-bottom-color: rgba( 16, 110, 190 ,  1 );
  border-bottom-color: rgba( var(--palette-primary-shade-10,16, 110, 190) ,  1 );
}

.dtc-task-item.is-selected .dtc-task-details .dtc-task-info .dtc-task-description {
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9));
}

.dtc-task-item.is-selected .dtc-task-details .dtc-task-list-item-buttons {
  display: block;
  background-color: rgba(0, 120, 212, 1);
  background-color: var(--communication-background,rgba(0, 120, 212, 1));
}

.dtc-task-item.is-selected .dtc-task-details .dtc-task-list-item-buttons:hover {
  background-color: rgba( 0, 90, 158 ,  1 );
  background-color: rgba( var(--palette-primary-shade-20,0, 90, 158) ,  1 );
}

.dtc-task-item.is-selected .dtc-task-footer {
  display: inline-table;
  table-layout: fixed;
}

.dtc-task-item .gripper-icon {
  font-size: 30px !important;
  margin: 0;
  padding: 22px 10px 0 0;
  cursor: ew-resize;
  opacity: 0.5;
}
