/* Loading */
.modal-loading {
  display:    none;
  position:   fixed;
  z-index:    9999;
  top:        0;
  left:       0;
  height:     100%;
  min-height:     100%;
  width:      100%;
  background: rgba( 255, 255, 255, .8 )
  url('/img/loading.gif')
  50% 50%
  no-repeat;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -ms-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  opacity: 0;
}
/* Loading-us */
body.loading > .wrap { opacity: 0.4 }
body.loading, #product_list.loading {
  overflow: hidden; height:100%;
}
body.loading .modal-loading , #product_list.loading .modal-loading {
  opacity: 1;
  display: block;
}
#product_list.loading .modal-loading {
  background-position: 44% 44%;
  top: unset;
  left: unset;
}
#loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba( 255, 255, 255, .8 );
  z-index: 9999;
}
#loading-wrapper-product {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba( 255, 255, 255, .8 );
  z-index: 9;
}
#loading-text {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #999;
  width: 100px;
  height: 30px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 18px;
}
#loading-content {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}
#loading-content:after {
  content: "";
  position: absolute;
  border: 3px solid #0F0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}
#loading-content:before {
  content: "";
  position: absolute;
  border: 3px solid #00F;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}
#loading-content {
  border: 3px solid transparent;
  border-top-color: #EE3423;
  border-bottom-color: #EE3423;
  border-radius: 50%;
  -webkit-animation: loader 2s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
  animation: loader 2s linear infinite;
}
#loading-content:before {
  border: 3px solid transparent;
  border-top-color: #C9302C;
  border-bottom-color: #C9302C;
  border-radius: 50%;
  -webkit-animation: loader 3s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
  animation: loader 3s linear infinite;
}
#loading-content:after {
  border: 3px solid transparent;
  border-top-color: #FF122B;
  border-bottom-color: #FF122B;
  border-radius: 50%;
  -webkit-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}
@-webkit-keyframes loaders {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#content-wrapper {
  color: #FFF;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}
#header
{
  width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100px;
  background-color: #666;
}
#content
{
  width: 800px;
  height: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: #888;
}



/* DIV LOADING */
.ix-box-content > .ix-spinner {
  display: none;
}
.ix-box-content.ix-loading {
  position: relative;
}
.ix-box-content.ix-loading:after {
  z-index: 1030;
  content: '';
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.ix-box-content.ix-loading > .ix-spinner {
  display: block;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  z-index: 1040;
}


/*
 *  Usage:
 *
 *    <div class="ix-spinner ix-spinner-rotating-plane"></div>
 *
 */
.ix-spinner-rotating-plane.ix-spinner {
  width: 30px;
  height: 30px;
  background-color: #008080;
  margin: 0 auto;
  -webkit-animation: ix-rotatePlane 1.2s infinite ease-in-out;
  animation: ix-rotatePlane 1.2s infinite ease-in-out;
}
@-webkit-keyframes ix-rotatePlane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
@keyframes ix-rotatePlane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
/*
 *  Usage:
 *
 *    <div class="ix-spinner ix-spinner-double-bounce">
 *      <div class="ix-double-bounce1"></div>
 *      <div class="ix-double-bounce2"></div>
 *    </div>
 *
 */
.ix-spinner-double-bounce.ix-spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0 auto;
}
.ix-spinner-double-bounce .ix-double-bounce1,
.ix-spinner-double-bounce .ix-double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #008080;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: ix-doubleBounce 2s infinite ease-in-out;
  animation: ix-doubleBounce 2s infinite ease-in-out;
}
.ix-spinner-double-bounce .ix-double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
@-webkit-keyframes ix-doubleBounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ix-doubleBounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*
 *  Usage:
 *
 *    <div class="ix-spinner ix-spinner-wave">
 *      <div class="ix-rect1"></div>
 *      <div class="ix-rect2"></div>
 *      <div class="ix-rect3"></div>
 *      <div class="ix-rect4"></div>
 *      <div class="ix-rect5"></div>
 *    </div>
 *
 */
.ix-spinner-wave.ix-spinner {
  margin: 0 auto;
  width: 50px;
  height: 30px;
  text-align: center;
  font-size: 10px;
}
.ix-spinner-wave div {
  background-color: #008080;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: ix-waveStretchDelay 1.2s infinite ease-in-out;
  animation: ix-waveStretchDelay 1.2s infinite ease-in-out;
}
.ix-spinner-wave .ix-rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.ix-spinner-wave .ix-rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.ix-spinner-wave .ix-rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.ix-spinner-wave .ix-rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes ix-waveStretchDelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes ix-waveStretchDelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
/*
 *  Usage:
 *
 *    <div class="ix-spinner ix-spinner-wandering-cubes">
 *      <div class="ix-cube1"></div>
 *      <div class="ix-cube2"></div>
 *    </div>
 *
 */
.ix-spinner-wandering-cubes.ix-spinner {
  margin: 0 auto;
  width: 32px;
  height: 32px;
  position: relative;
}
.ix-spinner-wandering-cubes .ix-cube1,
.ix-spinner-wandering-cubes .ix-cube2 {
  background-color: #008080;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: ix-wanderingCubeMove 1.8s infinite ease-in-out;
  animation: ix-wanderingCubeMove 1.8s infinite ease-in-out;
}
.ix-spinner-wandering-cubes .ix-cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
@-webkit-keyframes ix-wanderingCubeMove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    /* Hack to make FF rotate in the right direction */
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
    transform: translateX(42px) translateY(42px) rotate(-179deg);
  }
  50.1% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes ix-wanderingCubeMove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    /* Hack to make FF rotate in the right direction */
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
    transform: translateX(42px) translateY(42px) rotate(-179deg);
  }
  50.1% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
/*
 *  Usage:
 *
 *    <div class="ix-spinner ix-spinner-pulse"></div>
 *
 */
.ix-spinner-pulse.ix-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background-color: #008080;
  border-radius: 100%;
  -webkit-animation: ix-pulseScaleOut 1s infinite ease-in-out;
  animation: ix-pulseScaleOut 1s infinite ease-in-out;
}
@-webkit-keyframes ix-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes ix-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
/*
 *  Usage:
 *
 *    <div class="ix-spinner ix-spinner-chasing-dots">
 *      <div class="ix-dot1"></div>
 *      <div class="ix-dot2"></div>
 *    </div>
 *
 */
.ix-spinner-chasing-dots.ix-spinner {
  margin: 0 auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
  -webkit-animation: ix-chasingDotsRotate 2s infinite linear;
  animation: ix-chasingDotsRotate 2s infinite linear;
}
.ix-spinner-chasing-dots .ix-dot1,
.ix-spinner-chasing-dots .ix-dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #008080;
  border-radius: 100%;
  -webkit-animation: ix-chasingDotsBounce 2s infinite ease-in-out;
  animation: ix-chasingDotsBounce 2s infinite ease-in-out;
}
.ix-spinner-chasing-dots .ix-dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
@-webkit-keyframes ix-chasingDotsRotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes ix-chasingDotsRotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes ix-chasingDotsBounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ix-chasingDotsBounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*
 *  Usage:
 *
 *    <div class="ix-spinner ix-spinner-three-bounce">
 *      <div class="ix-bounce1"></div>
 *      <div class="ix-bounce2"></div>
 *      <div class="ix-bounce3"></div>
 *    </div>
 *
 */
.ix-spinner-three-bounce.ix-spinner {
  margin: 0 auto;
  width: 70px;
  text-align: center;
}
.ix-spinner-three-bounce div {
  width: 18px;
  height: 18px;
  background-color: #008080;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: ix-threeBounceDelay 1.4s infinite ease-in-out;
  animation: ix-threeBounceDelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.ix-spinner-three-bounce .ix-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.ix-spinner-three-bounce .ix-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes ix-threeBounceDelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ix-threeBounceDelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*
 *  Usage:
 *
 *    <div class="ix-spinner ix-spinner-circle">
 *      <div class="ix-circle1 ix-circle"></div>
 *      <div class="ix-circle2 ix-circle"></div>
 *      <div class="ix-circle3 ix-circle"></div>
 *      <div class="ix-circle4 ix-circle"></div>
 *      <div class="ix-circle5 ix-circle"></div>
 *      <div class="ix-circle6 ix-circle"></div>
 *      <div class="ix-circle7 ix-circle"></div>
 *      <div class="ix-circle8 ix-circle"></div>
 *      <div class="ix-circle9 ix-circle"></div>
 *      <div class="ix-circle10 ix-circle"></div>
 *      <div class="ix-circle11 ix-circle"></div>
 *      <div class="ix-circle12 ix-circle"></div>
 *    </div>
 *
 */
.ix-spinner-circle.ix-spinner {
  margin: 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
}
.ix-spinner-circle .ix-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.ix-spinner-circle .ix-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 20%;
  height: 20%;
  background-color: #008080;
  border-radius: 100%;
  -webkit-animation: ix-circleBounceDelay 1.2s infinite ease-in-out;
  animation: ix-circleBounceDelay 1.2s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.ix-spinner-circle .ix-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
.ix-spinner-circle .ix-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}
.ix-spinner-circle .ix-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.ix-spinner-circle .ix-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}
.ix-spinner-circle .ix-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}
.ix-spinner-circle .ix-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.ix-spinner-circle .ix-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}
.ix-spinner-circle .ix-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}
.ix-spinner-circle .ix-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.ix-spinner-circle .ix-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}
.ix-spinner-circle .ix-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}
.ix-spinner-circle .ix-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.ix-spinner-circle .ix-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.ix-spinner-circle .ix-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.ix-spinner-circle .ix-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.ix-spinner-circle .ix-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.ix-spinner-circle .ix-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.ix-spinner-circle .ix-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.ix-spinner-circle .ix-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.ix-spinner-circle .ix-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.ix-spinner-circle .ix-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.ix-spinner-circle .ix-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
@-webkit-keyframes ix-circleBounceDelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ix-circleBounceDelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*
 *  Usage:
 *
 *    <div class="ix-spinner ix-spinner-cube-grid">
 *      <div class="ix-cube"></div>
 *      <div class="ix-cube"></div>
 *      <div class="ix-cube"></div>
 *      <div class="ix-cube"></div>
 *      <div class="ix-cube"></div>
 *      <div class="ix-cube"></div>
 *      <div class="ix-cube"></div>
 *      <div class="ix-cube"></div>
 *      <div class="ix-cube"></div>
 *    </div>
 *
 */
.ix-spinner-cube-grid {
  /*
   * Spinner positions
   * 1 2 3
   * 4 5 6
   * 7 8 9
   */
}
.ix-spinner-cube-grid.ix-spinner {
  width: 30px;
  height: 30px;
  margin: 0 auto;
}
.ix-spinner-cube-grid .ix-cube {
  width: 33%;
  height: 33%;
  background-color: #008080;
  float: left;
  -webkit-animation: ix-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: ix-cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.ix-spinner-cube-grid .ix-cube:nth-child(1) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.ix-spinner-cube-grid .ix-cube:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.ix-spinner-cube-grid .ix-cube:nth-child(3) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.ix-spinner-cube-grid .ix-cube:nth-child(4) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.ix-spinner-cube-grid .ix-cube:nth-child(5) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.ix-spinner-cube-grid .ix-cube:nth-child(6) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.ix-spinner-cube-grid .ix-cube:nth-child(7) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.ix-spinner-cube-grid .ix-cube:nth-child(8) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.ix-spinner-cube-grid .ix-cube:nth-child(9) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
@-webkit-keyframes ix-cubeGridScaleDelay {
  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
@keyframes ix-cubeGridScaleDelay {
  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
/*
 *  Usage:
 *
 *    <div class="ix-spinner ix-spinner-wordpress">
 *      <span class="ix-inner-circle"></span>
 *    </div>
 *
 */
.ix-spinner-wordpress.ix-spinner {
  background-color: #008080;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  position: relative;
  margin: 0 auto;
  -webkit-animation: ix-innerCircle 1s linear infinite;
  animation: ix-innerCircle 1s linear infinite;
}
.ix-spinner-wordpress .ix-inner-circle {
  display: block;
  background-color: #fff;
  width: 8px;
  height: 8px;
  position: absolute;
  border-radius: 8px;
  top: 5px;
  left: 5px;
}
@-webkit-keyframes ix-innerCircle {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes ix-innerCircle {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*
 *  Usage:
 *
 *    <div class="ix-spinner ix-spinner-fading-circle">
 *      <div class="ix-circle1 ix-circle"></div>
 *      <div class="ix-circle2 ix-circle"></div>
 *      <div class="ix-circle3 ix-circle"></div>
 *      <div class="ix-circle4 ix-circle"></div>
 *      <div class="ix-circle5 ix-circle"></div>
 *      <div class="ix-circle6 ix-circle"></div>
 *      <div class="ix-circle7 ix-circle"></div>
 *      <div class="ix-circle8 ix-circle"></div>
 *      <div class="ix-circle9 ix-circle"></div>
 *      <div class="ix-circle10 ix-circle"></div>
 *      <div class="ix-circle11 ix-circle"></div>
 *      <div class="ix-circle12 ix-circle"></div>
 *    </div>
 *
 */
.ix-spinner-fading-circle.ix-spinner {
  margin: 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
}
.ix-spinner-fading-circle .ix-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.ix-spinner-fading-circle .ix-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 18%;
  height: 18%;
  background-color: #008080;
  border-radius: 100%;
  -webkit-animation: ix-circleFadeDelay 1.2s infinite ease-in-out;
  animation: ix-circleFadeDelay 1.2s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.ix-spinner-fading-circle .ix-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
.ix-spinner-fading-circle .ix-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}
.ix-spinner-fading-circle .ix-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.ix-spinner-fading-circle .ix-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}
.ix-spinner-fading-circle .ix-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}
.ix-spinner-fading-circle .ix-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.ix-spinner-fading-circle .ix-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}
.ix-spinner-fading-circle .ix-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}
.ix-spinner-fading-circle .ix-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.ix-spinner-fading-circle .ix-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}
.ix-spinner-fading-circle .ix-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}
.ix-spinner-fading-circle .ix-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.ix-spinner-fading-circle .ix-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.ix-spinner-fading-circle .ix-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.ix-spinner-fading-circle .ix-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.ix-spinner-fading-circle .ix-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.ix-spinner-fading-circle .ix-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.ix-spinner-fading-circle .ix-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.ix-spinner-fading-circle .ix-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.ix-spinner-fading-circle .ix-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.ix-spinner-fading-circle .ix-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.ix-spinner-fading-circle .ix-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
@-webkit-keyframes ix-circleFadeDelay {
  0%,
  39%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes ix-circleFadeDelay {
  0%,
  39%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
.intgenxe-spinner > .ix-spinner {
  display: none;
}
.intgenxe-spinner.ix-loading {
  position: relative;
}
.intgenxe-spinner.ix-loading:after {
  z-index: 1030;
  content: '';
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.intgenxe-spinner.ix-loading > .ix-spinner {
  display: block;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  z-index: 1040;
}
.ix-spinner {
  display: none;
}
.ix-loading {
  position: relative;
}
.ix-loading:after {
  z-index: 1030;
  content: '';
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.ix-loading > .ix-spinner {
  display: block;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  z-index: 1040;
}