.table .ct-grid .item > div .cticon-ok {
  color: #23cd94;
  font-size: 24px;
}

.table .ct-grid .item > div .cticon-cancel {
  color: var(--blue-gray);
  font-size: 24px;
}

.table .ct-grid .item > div i + span {
  color: var(--dark-blue-100);
  font-family: var(--body-family);
  font-size: 16px;
  font-weight: var(--body-weight);
  line-height: 1.33;
  margin-left: 8px;
}

@media screen and (min-width: 768px) {
  .table .ct-grid .item > div i + span {
    margin-right: 24px;
  }
  
  .table .ct-grid .group {
    padding-bottom: 16px;
    margin-bottom: 64px;
  }
   
  .table .ct-grid .group:not(.expandable),
  .table .ct-grid .group:not(.expandable) .header {
    cursor: inherit;
    pointer-events: none;
  }
  
  .table .ct-grid .group:not(.expandable) .items {
    max-height: unset;
    padding-top: 16px;
    opacity: 1;
  }
    
  .table .ct-grid .group.expandable:not(.expanded) {
    border-bottom: 1px solid #e7e9ee;
  }
  
  .table .ct-grid .group:last-child {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 993px) {
  .table .ct-grid .item > div i + span {
    margin-right: 32px;
  }
}

@media screen and (min-width: 1280px) {
  .table .ct-grid .item > div i + span {
    margin-right: 40px;
  }
}