/*
NB:
- Font-size 0 on rows to avoid gaps between the columns (inline-blocks)
- Position relative needed for z-index
- For ... ellipsis on overflowing text, need also white-space: no-wrap and overflow: hidden
- On the rows, need white-space: no-wrap, because the columns are inline-blocks and would wrap instead of overflow
*/
.sjs-wrapper {
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px !important;
  line-height: 1.42857143;
}
.sjs-wrapper * {
  box-sizing: border-box;
}
.sjs-wrapper a {
  color: #333;
  text-decoration: none;
}
.sjs-wrapper a:hover {
  text-decoration: underline;
}
.sjs-name-col {
  border-bottom: 1px solid #dddddd;
  text-align: center;
  float: left;
}
.sjs-name {
  height: 40px;
  padding: 0px 10px 0px 10px;
  line-height: 20px;
  vertical-align: middle;
  max-width: 200px;
  white-space: wrap;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid #dcdcdc;
}
.sjs-name:nth-child(2n) {
  background-color: #f9f9f9;
}
.sjs-name-head {
  height: 20px;/*15px;*/
  border-bottom: 1px solid #dddddd;
  width: 200px;
  max-width: 200px;
  font-weight: bold !important;
}
.sjs-app-col {
  border-left: 1px solid #dddddd;
  position: relative;
  overflow-x: scroll;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; 
}
.sjs-grid {
  z-index: 0;
  border-bottom: 1px solid #dddddd;
  position: absolute;
}
.sjs-grid-row {
  height: 40px;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0;
}
.sjs-grid-row:nth-child(2n) {
  background-color: #f9f9f9;
}
.sjs-grid-row-head {
  height: 20px;
  white-space: nowrap;
  font-size: 0;
  border-bottom: 1px solid #dddddd; 
}
.sjs-grid-row-head:nth-child(2n) {
  background-color: #f9f9f9;
}
.sjs-grid-col {
  height: 40px;
  padding: 2px 3px;
  margin-left:0px;
  margin-right: 0px;
  display: inline-block;
  margin-right: -4px;
}
.sjs-grid-col:nth-child(2n) {
  background-color: #f9f9f9;
}
.sjs-grid-col-head {
  height: 20px;/*14px;*/
  display: inline-block;
  margin-right: -4px;
  border-left: 1px solid #dcdcdc;
  font-size: 14px !important;

  background: -webkit-linear-gradient(left, #DDE7FF , white, white); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #DDE7FF, white, white); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #DDE7FF, white, white); /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #DDE7FF , white, white); /* Standard syntax */  
}
.sjs-grid-col-head:nth-child(2n) {
  background-color: #f9f9f9;
}
.sjs-grid-overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.sjs-grid-overlay-row {
  height: 40px;
  white-space: nowrap;
  font-size: 0;
}
.sjs-grid-overlay-row-head {
  height: 20px;
  border-bottom: 1px solid transparent;
}
.sjs-grid-overlay-col {
  height: 40px;
  padding: 2px 3px;
  display: inline-block;
  background-color: rgba(255, 18, 0, 0.3);
  vertical-align: top;
  font-size: 14px !important;
  /* Following three settings to make ... work in case of long text */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: -4px;
}
.sjs-grid-overlay-col:hover{
  border: 1px solid #fff;
  opacity: 0.75;
  filter: alpha(opacity=75);
  cursor: pointer;
}
.sjs-grid-overlay-col-clickable {
  cursor: pointer;
}
.sjs-selector {
  margin-top: 15px;
  cursor: move;
  background-color: rgba(0, 0, 255, 0.2);
  top: 0;
  left: 0;
  position: absolute;
  z-index: 3;
}
.sjs-selector-edge {
  width: 15px;
  cursor: col-resize;
  height: 100%;
  top: 0;
  position: absolute;
  z-index: 3;
}
.sjs-selector-left {
  left: 0;
}
.sjs-selector-right {
  right: 0;
}
.sjs-selector-inner {
  position: relative;
  height: 100%;
}
.sjs-selector-text {
  position: absolute;
  white-space: nowrap;
  padding: 2px;
  height: 22px;
  width: 100%;
  bottom: 0;
  background-color: #fff;
  text-align: center;
  border-top: 1px solid #dddddd;
}
