/*Background Spinner */
#spinner-theme-astral-gratuit {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 99999;
}

#spinner-tirage-unique {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 99999;
}

#spinner-tirage-multiple {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 99999;
}

#spinner-theme-astral-abonnement {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 99999;
}

.alert-dismissible .btn-close {
  position: absolute;
  top: -8px;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-dismissible .btn-close {
  position: absolute;
  top: -8px;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

/* Start Tirage Unique Cartes */
.tarot-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.tarot-card {
  width: 81px;
  height: 150px;
  margin: 5px;
  background-color: #ccc;
  background-image: url('https://www.cartevoyance.com/public/assets/images/tarot-marseille/back.jpg'); /* Image de dos de carte */
  background-size: cover;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Ajout de la transition pour l'ombre */
}

.tarot-card-resize {
  width: 162px;
  height: 301px;
  margin: 5px;
  background-color: #ccc;
  background-image: url('https://www.cartevoyance.com/public/assets/images/tarot-marseille/back.jpg'); /* Image de dos de carte */
  background-size: cover;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.tarot-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.tarot-card.flipped {
  background-image: none; /* Enlever l'image de dos */
  background-color: #393334;
}

.selected-card {
  margin-top: 20px;
}

#3-cartes-1, #3-cartes-2, #3-cartes-3 {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#5-cartes-1, #5-cartes-2, #5-cartes-3, #5-cartes-4, #5-cartes-5 {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
/* End Tirage Unique Cartes */

/* Interligne message erreur */
.invalid-feedback {
  line-height: 1.3em;
}

