.clicked {
  border: none;
}
.show {
  display: block;
}
body {
  background-color: #ffe8c9;
}
.no-drop,
fieldset[disabled] input,
fieldset[disabled] .cartee,
fieldset[disabled] button {
  cursor: no-drop;
}
.titre-owl1 {
  text-align: center;
  color: #000000;
  opacity: 1;
}
.titre-owl2 {
  text-align: center;
  color: #8c005e;
  opacity: 1;
}
.titre1 {
  text-align: center;
  color: #000000;
  text-transform: uppercase;
}
.titre2 {
  text-align: center;
  font: normal normal normal 60px/50px Great Vibes;
  color: #cb8a1b;
  opacity: 1;
}

.para1 {
  text-align: center;
  font: normal normal normal 16px/24px Open Sans;
  color: #000000;
  opacity: 1;
}

.question {
  text-align: left;
  font: normal normal 600 20px/22px Open Sans;
  letter-spacing: 0px;
  color: #060606;
  opacity: 1;
}

/*Animation carte*/
.container-carte {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  position: relative;
  left: -100%;
  width: 655px;
}

.cartee {
  width: 100px;
  height: 115px;
  opacity: 0;
  background-image: url("../img/card.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.animate .cards {
  animation: slideIn 1s forwards;
}

.animate .cartee {
  animation: fadeIn 0.5s forwards;
  animation-delay: calc(0.2s * var(--i));
}

@keyframes slideIn {
  to {
    left: 0;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cards .cartee:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.cards .cartee.clicked {
  transform: rotate(180deg) scale(0.8);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* card back and front */

.cartee-front {
  /* width: 100px; */
  width: 130px;
  height: 150px;
  perspective: 1000px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.cartee-front.show .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.card-back {
  background: url("../img/card.png") no-repeat center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.card-front {
  background-size: contain;
  transform: rotateY(180deg);
  background-repeat: no-repeat;
}

/*end of card back to front*/

.titre3 {
  text-align: left;
  font: normal normal bold 18px/22px Open Sans;
  letter-spacing: 0px;
  color: #cb8a1b;
  opacity: 1;
}

.para2 {
  text-align: left;
  font: normal normal normal 16px/22px Open Sans;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}

.question2 {
  text-align: left;
  font: normal normal normal 14px/32px Open Sans;
  letter-spacing: 0px;
  color: #0e0e0e;
  opacity: 1;
}
.input-field {
  width: 354px;
  height: 118px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #555555;
  border-radius: 4px;
  color: #000000;
  text-align: left;
}
.input-field2 {
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #555555;
  border-radius: 4px;
  opacity: 1;
  width: 354px;
  height: 45px;
}

.para3 {
  text-align: left;
  font: normal normal normal 10px/16px Libre Baskerville;
  letter-spacing: 0px;
  color: #000000;
}
.arrow {
  background-image: url(../img/next.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.txt-btn1 {
  text-align: center;
  font: normal normal bold 22px/28px Libre Baskerville;
  letter-spacing: 0.66px;
  color: #54280b;
  opacity: 1;
}

/********************btn animé**************/

.button {
  background: #f9c924 0% 0% no-repeat padding-box;
  border-radius: 4px;
  width: 620px;
  height: 50px;
  border: none;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  background: #f9c924 0% 0% no-repeat padding-box;
  border-radius: 4px;
  opacity: 1;
  width: 650px;
  height: 50px;
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.loading {
  background-image: url(../img/thinking.gif);
  background-repeat: no-repeat;
  background-size: contain;
  height: 500px;
}
/*end btn animé*/

/* Style pour la popup de chargement */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 10px;
  z-index: 1000;
  display: none; /* Initialement caché */
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 10px;
}

.popup image {
  display: block;
  margin: 0 auto;
}

/* Style pour le flou du formulaire */
.blur {
  filter: blur(5px); /* Ajustez le flou selon vos besoins */
  pointer-events: none; /* Empêche les interactions avec les champs de formulaire */
}

.txt2 {
  text-align: left;
  font: normal normal normal 16px/20px Signika;
  letter-spacing: 0px;
  opacity: 1;
}

.d-grid {
  justify-content: center;
  align-items: center;
  justify-items: center;
}

.txt-gender {
  text-align: left;
  font: normal normal normal 16px/32px Open Sans;
  letter-spacing: 0px;
  color: #555555;
  opacity: 1;
}

.enlarge-image {
  width: 135px;
  height: 225px;
  margin-bottom: 0.5rem;
}

.txt-tarot {
  text-align: center;
  font: normal normal 600 15px/24px Signika;
  letter-spacing: 0px;
  color: #000000;
  text-transform: uppercase;
  opacity: 1;
}
.box {
  background: rgb(255 255 255 / 70%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-left: 1rem;
  margin-right: 1rem;
}
.txt-f4 {
  text-align: left;
  font: normal normal 300 14px/18px Signika;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}
.titre-f5 {
  text-align: center;
  font: normal normal bold 22px/28px Open Sans;
  letter-spacing: 0px;
  color: #000000;
  text-transform: uppercase;
  opacity: 1;
}
.box-f5 {
  /* background: #f6eedc 0% 0% no-repeat padding-box; */
  /* box-shadow: 0px 5px 10px #000000c7; */
  border-radius: 25px;
  opacity: 1;
  padding-bottom: 60px !important;
}
.mini-box-f5 {
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #555555;
  border-radius: 10px;
  opacity: 1;
  width: 100%;
  overflow-x: auto;
}
.txt-promo {
  text-align: center;
  font: normal normal 600 22px/28px Signika;
  letter-spacing: 0.22px;
  opacity: 1;
  color: #630404;
}
.txt-f5 {
  text-align: left;
  font: normal normal 300 14px/18px Signika;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}
.box-conf {
  background: #f6eedc 0% 0% no-repeat padding-box;
  border-radius: 25px;
  opacity: 1;
  position: relative;
  /* margin-top: 80px; */
  padding-top: 100px;
  padding-bottom: 50px;
  margin-bottom: 50px;
  z-index: 6;
}
.titre-confirmation {
  text-align: center;
  font: normal normal bold 24px/32px Open Sans;
  letter-spacing: 0px;
  color: #000000;
  text-transform: uppercase;
  opacity: 1;
}
.txt-confirmation1 {
  text-align: center;
  font: normal normal bold 30px/35px Open Sans;
  letter-spacing: 0px;
  color: #f57200;
  text-transform: uppercase;
  opacity: 1;
}
.txt-confirmation2 {
  text-align: center;
  font: normal normal normal 18px/26px Open Sans;
  letter-spacing: 0px;
  color: #000000;
}
.txt-confirmation3 {
  text-align: center;
  text-decoration: underline;
  letter-spacing: 0.9px;
  color: #000000;
  font: normal normal 600 18px/26px Open Sans;
}
.txt-bottom-conf {
  text-align: center;
  font: normal normal bold 24px/30px Signika;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
}
.txt-bottom-conf2 {
  text-align: center;
  font: normal normal normal 16px/20px Signika;
  letter-spacing: 0px;
  color: #ffffff;
  margin-bottom: 50px;
}
.txt-bottom-conf3 {
  text-align: center;
  font: normal normal bold 18px/20px Signika;
  letter-spacing: 0px;
  color: #ffffff;
}

.bg-footer {
  background: #592f14 0% 0% no-repeat padding-box;
  min-height: 50px;
  position: relative;
  width: 100%;
  z-index: 10;
  margin-top: -1px;
}
.bg-footer2 {
  background: #110502 0% 0% no-repeat padding-box;
  opacity: 1;
  position: absolute;
  width: 100%;
}
.btn-footer {
  text-align: center;
  font: normal normal normal 16px/24px Libre Baskerville;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
}
.txt-footer {
  text-align: center;
  font: normal normal normal 14px/18px Libre Baskerville;
  letter-spacing: 0px;
  color: #ffffff;
}
.form-check-input {
  width: 1.5em;
  height: 1.5em;
  border: 1px solid rgb(0 0 0);
}
.form-check-input:checked {
  background-color: #bb4a2b !important;
  border-color: #bb4a2b !important;
}

input::placeholder {
  text-align: left;
  font: normal normal normal 16px/22px Open Sans;
  letter-spacing: 0px;
  color: #555555;
}
/*Owl**/
.carousel-item {
  position: relative;
  /* height: 200px; */
  height: 145px;
  display: block;
}

.image1 {
  height: 85px;
  width: 240px;
  background-size: contain;
  background-image: url(../img/elias.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
}

.image-text {
  position: absolute;
  /* top: 10px; */
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  font-size: 16px;
  text-align: center;
  width: 100%;
}

.text-containere {
  /* height: 200px; */
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: none;
}

.text-containere p {
  margin: 10px 0;
  text-align: center;
}
/****/

.card-container {
  margin-bottom: 20px;
}

.card-title {
  text-align: left;
  font: normal normal bold 20px/20px Signika;
  letter-spacing: 0px;
  color: #060606;
  text-transform: uppercase;
  opacity: 1;
}

.card-description {
  text-align: left;
  font: normal normal normal 18px/20px Signika;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}

.carte-tarot {
  background-image: url(../img/card.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 250px;
}

.modal {
  display: none;
  position: fixed;
  top: 5%;
  left: 17%;
  width: 70%;
  height: 90%;
  overflow-y: auto;
  margin: 0 auto;
  background: 0% 0% no-repeat padding-box padding-box rgb(246, 238, 220);
  box-shadow: rgba(0, 0, 0, 0.73) 0px 5px 10px;
  border-radius: 25px;
}

.modal-content {
  position: relative;
  background: 0% 0% no-repeat padding-box padding-box rgb(246, 238, 220);
  margin: 4% auto;
  padding: 20px;
  border: 0;
  width: 100%;
  /* max-width: 600px; */
}
.button-modal {
  background: transparent
    linear-gradient(90deg, #630404 0%, #f9e681 50%, #d4ba89 100%) 0% 0%
    no-repeat padding-box;
  box-shadow: 0px 10px 20px #442d02;
  border: 1px solid #630404;
  border-radius: 25px;
  height: 50px;
}
.txt-modal {
  text-align: justify;
  font: normal normal normal 18px/22px Signika;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}

.titre-modal {
  text-align: center;
  font: normal normal bold 22px/20px Signika;
  letter-spacing: 0px;
  color: #7e5418;
  text-transform: uppercase;
  opacity: 1;
}

.close {
  position: fixed;
  top: 100px;
  right: 200px;
  font-size: 24px;
  cursor: pointer;
  background-image: url(../img/close.png);
  background-size: cover;
  height: 50px;
  width: 50px;
}
/**/
.list .card:hover {
  transform: translateY(-30px);
  cursor: pointer;
}

.list .card.clicked {
  transform: translateY(-60%) translateX(50px) rotate(180deg) scale(0.8);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/***************Ma lecture********************/

.titre_lecture {
  letter-spacing: 0.34px;
  color: #7e5418;
  text-transform: uppercase;
  opacity: 1;
  font-family: "Signika";
  font-weight: bold;
  text-align: center;
  line-height: normal;
  font-size: 24px;
}
.texte_lecture {
  text-align: center;
  font: normal normal 300 18px Signika;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}
.offre_lecture {
  letter-spacing: 0.5px;
  opacity: 1;
  font-family: "Signika";
  font-weight: 600;
  text-align: center;
  font-size: 24px;
}
.telsms {
  text-shadow: none !important;
  font-weight: bold;
}
.box_lecture {
  background: rgb(255 255 255 / 70%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.giphy {
  background-image: url(../img/giphy.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  /* height: 90px; */
  height: 60px;
  transform: rotate(90deg);
  filter: drop-shadow(5px 0px 2px #ff7933);
}
