.scrollable-table {
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.st-wrapper {
  background: #f4f4f4;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  font-size: 0;
  line-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  width: 100%;
  z-index: 2;
  -webkit-overflow-scrolling: touch;
}

.st-wrapper-item {
  left: 0;
  position: relative;
  top: 0;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.st-scrollable {
  right: 0;
  position: relative;
  white-space: nowrap;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.st-scrollable-row:nth-child(2n+1),
.st-fixed-row:nth-child(2n+1) {
  background: #f7f7f7 none repeat scroll 0 0;
}

.st-scrollable-row:nth-child(2n),
.st-fixed-row:nth-child(2n) {
  background: #fff none repeat scroll 0 0;
}

.row-header {
  background: #666 none repeat scroll 0 0 !important;
  color: #fff;
  font-weight: bold;
}

.st-scrollable-col {
  background: inherit;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  white-space: normal;
  width: 50%;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  zoom: 1;
  *display: inline;
  _height: 250px;
}

.st-scrollable-col:last-child {
  border-right: medium none;
}

.st-block {
  box-sizing: border-box;
  float: left;
  width: 50%;
}

.st-fixed {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #ccc;
}

.st-place {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #ccc;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.st-fixed-col {
  border-bottom: 1px solid #ccc !important;
}

.column-content {
  font-size: 16px;
  line-height: 1.4;
  padding: 5px 10px;
}

.st-col {
  text-align: center;
}

.scrollable-table i {
  margin: 0;
  padding: 0;
}

/* Desktop Table */

table.st-dt {
  width: 100%;
  min-width: 100%;
}

table.st-dt th,
table.st-dt td {
  border-collapse: collapse;
  border: 1px solid #ccc;
  padding: 5px 10px;
}

table.st-dt th {
  background: #666;
  color: #fff;
  text-shadow: none;
  text-align: center;
  vertical-align: middle;
}

table.st-dt td {
  background: transparent;
  text-align: center;
  vertical-align: middle;
}

table.st-dt td:first-child {
  text-align: left;
  white-space: nowrap;
}

table.st-dt tr:nth-child(even) {
  background: #f6f6f6;
}

/* /Desktop Table */

@media screen and (max-width: 940px) {

  .st-fixed-col {
    text-align: left;
  }

  .st-shadow-box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.0) inset;
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.0) inset;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.0) inset;
  }

  .st-shadow-box.shadow-right {
    -webkit-box-shadow: -15px 0 10px -10px rgba(0, 0, 0, 0.5) inset;
    -moz-box-shadow: -15px 0 10px -10px rgba(0, 0, 0, 0.5) inset;
    box-shadow: -15px 0 10px -10px rgba(0, 0, 0, 0.5) inset;
  }

  .st-shadow-box.shadow-left {
    -webkit-box-shadow: 15px 0 10px -10px rgba(0, 0, 0, 0.5) inset;
    -moz-box-shadow: 15px 0 10px -10px rgba(0, 0, 0, 0.5) inset;
    box-shadow: 15px 0 10px -10px rgba(0, 0, 0, 0.5) inset;
  }

  .st-shadow-box.shadow-right.shadow-left {
    -webkit-box-shadow: -15px 0 10px -10px rgba(0, 0, 0, 0.5) inset,
    15px 0 10px -10px rgba(0, 0, 0, 0.5) inset;
    -moz-box-shadow: -15px 0 10px -10px rgba(0, 0, 0, 0.5) inset,
    15px 0 10px -10px rgba(0, 0, 0, 0.5) inset;
    box-shadow: -15px 0 10px -10px rgba(0, 0, 0, 0.5) inset,
    15px 0 10px -10px rgba(0, 0, 0, 0.5) inset;
  }

  .grab {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
  }

  .grab:active {
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
  }

  /*<--Navigation-->*/

  .st-horizontal-controls {
    background: #f4f4f4;
    background: -webkit-linear-gradient(top, #f4f4f4 0%, #d7d7d7 100%);
    background: -moz-linear-gradient(top, #f4f4f4 0%, #d7d7d7 100%);
    background: linear-gradient(to bottom, #f4f4f4 0%, #d7d7d7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4', endColorstr='#d7d7d7', GradientType=0);
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    -webkit-border-radius: 0 0 15px 15px;
    -moz-border-radius: 0 0 15px 15px;
    -ms-border-radius: 0 0 15px 15px;
    -o-border-radius: 0 0 15px 15px;
    border-radius: 0 0 15px 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 10px 10px -12px rgba(0, 0, 0, 0.63);
    -moz-box-shadow: 0 10px 10px -12px rgba(0, 0, 0, 0.63);
    box-shadow: 0 10px 10px -12px rgba(0, 0, 0, 0.63);
    height: 2.1em;
    margin: 0 auto 15px;
    position: relative;
    top: 0;
    width: 100%;
    -webkit-transition: all 0.8s ease-out;
    -moz-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
    transition: all 0.8s ease-out;
  }

  .st-horizontal-button {
    position: absolute;
    top: 0.5em;
  }

  .st-horizontal-button.active {
    color: #666;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
  }

  .st-horizontal-button.active:hover {
    color: #ffa100;
  }

  .st-horizontal-prev {
    left: 0.5em;
  }

  .st-horizontal-next {
    right: 0.5em;
  }

  .st-horizontal-slider {
    margin: 0 auto;
    top: 0.6em;
    width: 8em;
  }

  /*<--/Navigation-->*/

}

@media screen and (max-width: 600px) {

  .column-content {
    font-size: 12px !important;
  }

}
