* {
    margin: 0;
    padding: 0;
  }  
  #vmc-apps-ad {
    height: 600px;
    width: 300px;
    overflow: hidden;
  }  
  #vmc-apps-perspective-layer {
    cursor: pointer;
    height: 600px;
    perspective: 700px;
    user-select: none;
    -webkit-user-select: none;
    width: 300px;
  }  
  .vmc-apps-rotation-layer {
    height: 600px;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform .5s ease-in-out;
    width: 300px;
  }
  .vmc-apps-rotation-layer.bounce-to-left {
    animation: bounce-from-edge-to-left .3s;
  }
  @keyframes bounce-from-edge-to-left {
    0% {right: 0}
    10% {right: 10%}
    30% {right: 13%}
    100% {right: 0}
  }
  .vmc-apps-rotation-layer.bounce-to-right {
    animation: bounce-from-edge-to-right .3s;
  }
  @keyframes bounce-from-edge-to-right {
    0% {left: 0}
    10% {left: 10%}
    30% {left: 13%}
    100% {left: 0}
  }
  
  .vmc-apps-layer-3d {
    position: absolute;
    top: 0;
    width: 300px;
  }
  
  .vmc-apps-layer-background, .vmc-apps-layer-center, .vmc-apps-layer-foreground {
    pointer-events: none;
    position: absolute;
    transform-origin: bottom;
    top: 0;
    user-select: none;
    -webkit-user-select: none;
    width: 300px;
  }
  .vmc-apps-layer-center {
    transform: translateZ(66px);
  }
  .vmc-apps-layer-foreground {
    transform: translateZ(120px);
  }
  
  .vmc-apps-navigation {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 550px;
    transform: translateZ(120px);
    width: 42px;
  }
  .vmc-apps-navigation.type-next {
    /*right: 90px;*/
    left: 160px;
    
  }
  .vmc-apps-navigation.type-prev {
    left: 110px;
    transform: translateZ(120px) scale(-1, 1);
  }
  
  .vmc-apps-navigation img {
    display: block;
    width: 42px;
  }
  
  .vmc-apps-navigation.hide-navigation {
    display: none;
  }

  .background {
    border-radius: 15px;
    box-shadow: -3px 9px 9px rgba(0, 0, 0, 0.3);
    top: 5%;
    transition: left .2s cubic-bezier(0.6, 0.73, 0.46, 1.38);
    width: 84%;
  }
  
  .content {
    top: 5%;
    transition: left .3s cubic-bezier(0.6, 0.73, 0.46, 1.38);
    width: 84%;
  }
  
  .foreground {
    top: 5%;
    transition: left .3s cubic-bezier(0.6, 0.73, 0.46, 1.38) .1s;
    width: 84%;
  }
  
  /* ========== Position for left, show & right ========== */
  
  .right .vmc-apps-layer-background, .right .vmc-apps-layer-center, .right .vmc-apps-layer-foreground {
    left: 110%;
  }
  .left .vmc-apps-layer-background, .left .vmc-apps-layer-center, .left .vmc-apps-layer-foreground {
    left: -110%;
  }
  
  .show .background {
    left: 30px;
  }
  .show .content {
    left: 30px;
  }
  .show .foreground {
    left: 30px;
  }