.grid-truncate-text.grid-cell {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spinner-small {
  display: inline-block;
  vertical-align: middle;
  height: 28px;
  width: 28px;
  -webkit-animation: rotation .6s infinite linear;
  -moz-animation: rotation .6s infinite linear;
  -o-animation: rotation .6s infinite linear;
  animation: rotation .6s infinite linear;
  border-left: 4px solid rgba(0,174,239,.15);
  border-right: 4px solid rgba(0,174,239,.15);
  border-bottom: 4px solid rgba(0,174,239,.15);
  border-top: 4px solid rgba(0,174,239,.8);
  border-radius: 100%;
}

.spinner {
  left: 50%;
  top: 50%;
  height: 60px;
  width: 60px;
  margin: 100px auto;
  -webkit-animation: rotation .6s infinite linear;
  -moz-animation: rotation .6s infinite linear;
  -o-animation: rotation .6s infinite linear;
  animation: rotation .6s infinite linear;
  border-left: 6px solid rgba(0,174,239,.15);
  border-right: 6px solid rgba(0,174,239,.15);
  border-bottom: 6px solid rgba(0,174,239,.15);
  border-top: 6px solid rgba(0,174,239,.8);
  border-radius: 100%;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
  }
}

@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(359deg);
  }
}

@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }

  to {
    -o-transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

@media print {
  body {
    background-color: #FFFFFF;
    background-image: none;
    color: #000000
  }

  .e-sidebar-context {
    overflow-x: visible !important;
  }

  .main .top-row {
    display: none;
  }

  .grid-wrap .row {
    display: none;
  }

  .sidebar {
    display: none;
  }

  .header-info {
    display: none;
  }

  .no-print {
    display: none;
  }

  .content {
    width: 100%;
    margin-left: 0 !important;
    padding: 0 !important;
  }
}
