.card-container {
  width: 300px;
  height: 380px;
  perspective: 600;
  position: relative;
}
.card {
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: all 1s ease-in-out;
  width: 100%;
}
.card.flipped {
  transform: rotateY(180deg);
}
.front {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 6px;
  height: 100%;
  position: absolute;
  overflow: hidden;
  width: 100%;
}
.back {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 6px;
  height: 100%;
  position: absolute;
  overflow: hidden;
  width: 100%;
  transform: rotateY(180deg);
}

canvas {
  z-index: 1301 !important;
}
body:has(#intercom-container) .notistack-SnackbarContainer {
  top: 50px;
}
body:has(#intercom-container) .MuiDialog-root {
  top: 50px;
}

