@@media (max-width: 450px) {
  .theme-switch-card-shortcode {
    max-width: 80% !important;
    margin: 0px auto;
  }
}
.theme-switch-card-shortcode__inner {
  position: relative;
  height: 400px;
  width: 100%;
}
.theme-switch-card-shortcode .__card-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 0;
  transition: transform 0.5s cubic-bezier(0.8, 0.2, 0.1, 0.8);
}
.theme-switch-card-shortcode .__card-item img {
  width: 100% !important;
  height: auto !important;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.35);
  border-radius: 20px;
}
.theme-switch-card-shortcode .__card-item.card--out {
  animation: card-out 0.6s cubic-bezier(0.8, 0.2, 0.1, 0.8);
  transform: translateY(0px) rotate(15deg) translateX(0px);
  z-index: 0;
}
.theme-switch-card-shortcode .__card-item.zoom-in__ img {
  opacity: 1;
  transform: translateZ(0) scale(1);
}
.theme-switch-card-shortcode .__card-item.zoom-in__[data-delay="150"] img {
  transition-delay: 0.15s;
}
.theme-switch-card-shortcode .__card-item.zoom-in__[data-delay="300"] img {
  transition-delay: 0.3s;
}
.theme-switch-card-shortcode .__card-item.zoom-in__[data-delay="450"] img {
  transition-delay: 0.45s;
}
.theme-switch-card-shortcode .__card-item.zoom-in__[data-delay="600"] img {
  transition-delay: 0.6s;
}
.theme-switch-card-shortcode .__card-item.zoom-in__[data-delay="750"] img {
  transition-delay: 0.75s;
}
.theme-switch-card-shortcode .__card-item.zoom-in__[data-delay="900"] img {
  transition-delay: 0.9s;
}
.theme-switch-card-shortcode .__card-item.zoom-in__[data-delay="1050"] img {
  transition-delay: 1.05s;
}
@keyframes card-out {
  0% {
    z-index: 20;
    transform: translateY(0px) rotate(-15deg);
  }
  50% {
    transform: translateY(-120%) rotate(0deg) translateX(-40px);
  }
  80% {
    z-index: 0;
  }
  100% {
    transform: translateY(0px) rotate(15deg) translateX(0px);
  }
}
.theme-card-stack-shortcode {
  cursor: pointer;
}
.theme-card-stack-shortcode .stack {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
}
.theme-card-stack-shortcode .stack__item {
  list-style: none;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 20px;
}
.theme-card-stack-shortcode .stack__item img {
  width: 100%;
}
.theme-card-stack-shortcode .stack__item:last-child {
  opacity: 0;
}
