
.rgt-cell-header-pinned-left-2nd {
  left: 54px;
}

.rgt-cell-pinned-left-2nd {
  left: 54px;
}

.rgt-cell-header-popup {
  position: absolute;
  top: 48px;
  right: 20px;
  display: none;
  padding: 10px;
  background: #fff;
  border: 1px solid #ccc;
}

.rgt-cell-header-popup-handle {
  position: absolute;
  top: 14px;
  right: 14px;
}

.rgt-context-menu {
  // position: absolute;
  z-index: 9999;
  width: 100%;
  padding: 8px 12px;

  .rgt-checkbox {
    vertical-align: middle;
  }
}

/******************* Prabina css *****************/
.rgt-cell-header-inner {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  overflow: hidden;
}

.rgt-cell-header-inner-checkbox {
  padding: 0;
}

.rgt-cell-border-inner {
  border-left: 2px solid #eaebef;
}

.rgt-cell-inner {
  display: block;
  width: 100%;
  margin: 0 20px;
}

.normal-edit-button {
  display: flex;
  align-items: center;
}

.rgt-row-hover {
  background: #f7f8fa;
}

.edit-button {
  visibility: hidden;
}

.edit-button-hover {
  &:hover {
    .edit-button {
      visibility: visible;
    }
  }
}

.program-grid {
  .rgt-cell-checkbox{
    background: var(--#{$variable-prefix}background-white);
    &.rgt-row-hover{
      background: var(--#{$variable-prefix}bg-rgt-hover);
    }
    &.rgt-custom-sel{
      background: var(--#{$variable-prefix}bg-rgt-hover);
    }
  }
  .rgt-row-selected{
    background: var(--#{$variable-prefix}table-row-select-bg);
    &.rgt-row-hover{
      background: var(--#{$variable-prefix}bg-rgt-hover);
    }
  }
}

.rgt-text-truncate{
  .text-content{
    max-width: 166px;
    white-space: nowrap;
  }
}

.rgt-cell{
  .text-content{
    max-width: 166px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

