﻿
 table.borderless td,table.borderless th{
     border: none !important;
}

 .x42Panel {
     height:95%;
 }

.backArrow:hover {
    cursor:pointer;
}

.spinnerLight {
  margin: 50px;
  height: 48px;
  width: 48px;
  animation: rotate 0.8s infinite linear;
  border: 4px solid #FFF;
  border-right-color: transparent;
  border-radius: 50%;
}

.spinnerDark {
  margin: 50px;
  height: 48px;
  width: 48px;
  animation: rotate 0.8s infinite linear;
  border: 4px solid #0f1d41;
  border-right-color: transparent;
  border-radius: 50%;
}

li.searchwizSelected {
       background-color: #337ab7;
       border-color: #2e6da4;
     
}

li.searchwizSelected > a {   
       color: white;
       line-height: 12px;

}

li.searchwizResult > a {   
      
       line-height: 12px;

}

.nav.x42swiz > li > a {
  position: relative;
  display: block;
  padding: 1px;
}


@keyframes rotate {
  0%    { transform: rotate(0deg); }
  100%  { transform: rotate(360deg); }
}

.gly-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}