/* [project]/src/components/ui/TiltedCard.css [app-client] (css) */
.tilted-card-figure {
  perspective: 1000px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.tilted-card-mobile-alert {
  text-align: center;
  font-size: .875rem;
  display: none;
  position: absolute;
  top: 1rem;
}

@media (max-width: 640px) {
  .tilted-card-mobile-alert {
    display: block;
  }

  .tilted-card-caption {
    display: none;
  }
}

.tilted-card-inner {
  transform-style: preserve-3d;
  position: relative;
}

.tilted-card-img {
  object-fit: cover;
  will-change: transform;
  border-radius: 15px;
  display: block;
  transform: translateZ(0);
}

.tilted-card-overlay {
  z-index: 2;
  will-change: transform;
  border-radius: 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateZ(30px);
}

.tilted-card-caption {
  pointer-events: none;
  color: #2d2d2d;
  opacity: 0;
  z-index: 3;
  background-color: #fff;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 10px;
  position: absolute;
  top: 0;
  left: 0;
}

/*# sourceMappingURL=src_components_ui_TiltedCard_79172eef.css.map*/