#banner-cube-pe {
  height: 250px;
  width: 300px;
  position: fixed;
  margin: 0px auto;
  z-index: 100001;
  top: 325px;
  right: 15px;
  cursor: pointer;
  width: 300px;
  height: 250px;
  margin: auto;
  perspective: 800px;
  perspective-origin: 50% 225px;
}
#cube-close-pe {
  right: 0 !important;
  top: 0px !important;
  width: 22px !important;
  height: 22px;
  position: absolute !important;
  z-index: 4500 !important;
  font-size: 20px;
  background: red;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
}
@media (max-width: 480px) {
  #banner-cube-pe {
    transform: scale(0.5);
  }
}
#cube-side-expensive {
  position: absolute;
  height: 200px;
  width: 200px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.6);
  transition: -webkit-transform 1s ease-in-out 0s;
  backface-visibility: visible;
}
#banner-cube-stage {
  transition: transform 4s ease 0s;
  transform-style: preserve-3d;
  position: relative;
}
#banner-cube-shape {
  animation-duration: 14s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: spin_Cube;
  position: relative;
  top: 46px;
  margin: 0px auto;
  height: 200px;
  width: 200px;
  transform-style: preserve-3d;
}
@keyframes spin_Cube {
  from {
    transform: rotateY(0);
  }
  to {
    transform: rotateY(-360deg);
  }
}
