body {
  width: 100%;
  padding: 0;
  margin: 0;
}
.aclick {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
}
.shuffle-deck-container {
    width: 100%;
    max-width: 300px;
    height: 250px;
    margin: 0 auto;
    display: block;
    position: relative;
    background-color: transparent;
  }
  .shuffle-deck-container .card-stack {
    width: 300px;
    height: 250px;
    position: absolute;
  }
  .shuffle-deck-container .card-stack .buttons {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.76);
    border: 1px solid rgba(255, 255, 255, 1); 
    border-radius: 50%;
    width: 35px;
    height: 35px;
    left: 0;
    top: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 35px;
    text-decoration: none;
    font-size: 22px;
    z-index: 100;
    outline: none;
    transition: all 0.2s ease;
  }
  .shuffle-deck-container .card-stack .buttons svg {
    fill: #fff;
    width: 30px;
    height: 30px;
    margin: 3px auto;
    opacity: .9;
  }
  .shuffle-deck-container .card-stack .buttons:hover {
    transform: scale(1.3, 1.3);
  }
  .shuffle-deck-container .card-stack .prev {
    left: 5px;
    right: auto;
  }
  .shuffle-deck-container .card-stack .next {
    left: auto;
    right: 30px;
  }
  .shuffle-deck-container .card-stack .carousel .buttons:hover {
    color: #c01313;
    background: #fff;
  }
  .shuffle-deck-container .card-stack .card-list {
    width: 300px;
    padding: 0;
  }
  .shuffle-deck-container .card-stack .card-list li {
    transition: all 100ms ease-in-out;
    position: absolute;
    list-style: none;
    height: 250px;
    /*-webkit-box-shadow: 0 2px 15px 1px rgba(225, 225, 225, 0.5);
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.5);*/
    left: 0;
    right: 0;
    margin: 0 auto;
    background-size: cover;
  }
  .shuffle-deck-container .card-stack .card-list li img {
    width: 100%;
    max-width: 265px;
  }
  .shuffle-deck-container .card-stack .card-list li:nth-child(1) {
    top: 2px;
    right: 60px;
    width: 60%;
    /* animation: scaleCard 100ms; */
  }
  .shuffle-deck-container .card-stack .card-list li:nth-child(2) {
    top: 6px;
    right:45px;
    width: 70%;
  }
  .shuffle-deck-container .card-stack .card-list li:nth-child(3) {
    top: 10px;
    right: 30px;
    width: 80%;
  }
  .shuffle-deck-container .card-stack .card-list li:nth-child(4) {
    top: 16px;
    right:15px;
    width: 90%;
  }
  .shuffle-deck-container .card-stack .card-list li:nth-child(5) {
    top: 20px;
    width: 100%;
  }
  .shuffle-deck-container .card-stack .card-list li:nth-child(6) {
    top: 24px;
    width: 100%;
  }
  .shuffle-deck-container .card-stack:hover > .buttons.prev {
    display: block;
    animation: bounceInLeft 200ms;
  }
  .shuffle-deck-container .card-stack:hover > .buttons.next {
    display: block;
    animation: bounceInRight 200ms;
  }
  .transformThis {
    animation: scaleDown 500ms;
  }
  .transformPrev {
    animation: scaleUp 500ms;
    display: none;
  }
  .banner-index-inner div {
    padding-bottom: 0!important;
  }
  @keyframes scaleUp {
    0% {
      transform: scale(1.2) translateY(50px);
      opacity: 0;
    }
    20% {
      transform: scale(1.15) translateY(40px);
      opacity: 0.1;
    }
    40% {
      transform: scale(1.1) translateY(30px);
      opacity: 0.2;
    }
    60% {
      transform: scale(1.05) translateY(20px);
      opacity: 0.4;
    }
    80% {
      transform: scale(1.01) translateY(10px);
      opacity: 0.8;
    }
    100% {
      transform: scale(1) translateY(0);
      opacity: 1;
    }
  }
  @keyframes scaleDown {
    0% {
      transform: scale(1) translateY(0);
      opacity: 1;
    }
    20% {
      transform: scale(1.01) translateY(20px);
      opacity: 0.8;
    }
    40% {
      transform: scale(1.05) translateY(40px);
      opacity: 0.4;
    }
    60% {
      transform: scale(1.1) translateY(60px);
      opacity: 0.2;
    }
    80% {
      transform: scale(1.15) translateY(80px);
      opacity: 0.1;
    }
    100% {
      transform: scale(1.2) translateY(100px);
      opacity: 0;
    }
  }
  @keyframes scaleCard {
    0% {
      top: 5px;
    }
    100% {
      top: 24px;
    }
  }
  @keyframes bounceInLeft {
    0% {
      opacity: 0;
      transform: translateX(40px);
    }
    100% {
      transform: translateX(0);
    }
  }
  @keyframes bounceInRight {
    0% {
      opacity: 0;
      transform: translateX(-40px);
    }
    100% {
      transform: translateX(0);
    }
  }

   @media (max-width: 540px) {
    .shuffle-deck-container .card-stack .buttons {
      display: block;
    }
    .shuffle-deck-container .card-stack > .buttons.prev {
      display: block;
      animation: bounceInLeft 200ms;
    }
    .shuffle-deck-container .card-stack > .buttons.next {
      display: block;
      animation: bounceInRight 200ms;
    }
  }
