@charset "UTF-8";
/* Luckiest Guy */
@font-face {
  font-family: "OPTIMajerIrregular";
  src: url("/fonts/OPTIMajerIrregular/OPTIMajerIrregular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
.secondary-font {
  font-family: "OPTIMajerIrregular", display;
}

:root {
  --fontSize: clamp(0.94rem, calc(0.82rem + 0.61vw), 1.25rem);
}

#particles-js {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

html, body {
  overflow: hidden; /* Désactive le défilement global */
  height: 100%; /* Assure que le contenu prend toute la hauteur */
}

body {
  background: rgb(12, 11, 13);
  background: linear-gradient(0deg, rgb(12, 11, 13) 0%, rgb(51, 51, 59) 96%, rgb(85, 27, 85) 100%);
  background-image: url("/images/themes/default/default_theme.jpg");
  background-size: cover;
  color: #E5E883;
  font-family: "OPTIMajerIrregular", display;
}

/* Media query pour iPads */
main {
  width: 100%;
  height: 100%; /* Assure que le conteneur prend toute la hauteur */
  overflow-y: auto; /* Active le défilement vertical */
  padding-top: 30px; /* Ajoute un padding en haut si nécessaire */
  display: block; /* Assure que le conteneur est un bloc */
  box-sizing: border-box; /* Inclut le padding et la bordure dans les dimensions de l'élément */
}

main.container {
  max-width: 650px;
}

body.challenge-mode {
  background: linear-gradient(0deg, rgb(30, 25, 19) 0%, rgb(50, 39, 30) 96%, rgb(203, 117, 47) 100%);
}

h1, h2, h3, h4, h5, h6, p, a, .radio-group label {
  text-shadow: 2px 2px 2px rgb(0, 0, 0) !important;
}

.login input, .register input, .dashboard {
  font-family: "OPTIMajerIrregular", display;
  color: #d259d2;
}

.returnBtn {
  position: absolute;
  top: 10px;
  left: 10px;
}
.returnBtn .btn-primary {
  padding: 5px 15px;
}

.alert-info {
  border: 0px solid #bc2bbc;
  background-color: #901d90;
  color: white;
}

/* Dans votre fichier CSS */
.correct-background::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-10deg, rgb(12, 11, 13) 0%, rgb(51, 51, 59) 92%, #43b449 100%);
  z-index: -2;
}

.incorrect-background::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-10deg, rgb(12, 11, 13) 0%, rgb(51, 51, 59) 92%, #c34c4c 100%);
  z-index: -2;
}

.topPadding-100 {
  padding-top: 100px;
}

#tsparticles {
  width: 100%;
  height: 100%;
}

a {
  color: #d259d2;
  text-decoration: none;
}
a:hover {
  color: #bc2bbc;
}

.primary-color {
  color: #d259d2;
}

.btn-outline-primary {
  color: #d259d2;
  border-color: #d259d2;
}
.btn-outline-primary:hover {
  color: white;
  border-color: #d259d2;
  background-color: #d259d2;
}

.btn-primary {
  font-family: "OPTIMajerIrregular", display;
  background-color: #d259d2; /* Bright pink background */
  color: #E5E883; /* White text */
  border-radius: 30px; /* Rounded corners */
  padding: 3px 5px 2px 5px; /* Padding for size */
  font-size: 1.3em; /* Larger text */
  background: #1b2b36;
  border: 4px solid #425767;
  box-shadow: 2px 3px 0px #444d55;
  transition: all 0.3s ease; /* Smooth transition */
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.btn-primary.btn-small {
  padding: 10px 5px;
  font-size: 1em;
}
.btn-primary.btn-buy {
  background-color: #43b449; /* Bright pink background */
  border: 2px solid #236a26; /* Darker border */
  box-shadow: 0 4px #236a26, 0 8px #1b521e; /* 3D shadow effect */
}
.btn-primary.btn-buy:hover {
  background-color: #c34c4c;
  border-color: #c34c4c;
}
.btn-primary:hover {
  background-color: #bc2bbc; /* Darker color on hover */
  border-color: #bc2bbc; /* Border color on hover */
  box-shadow: 0 2px #901d90, 0 4px #901d90; /* Less deep shadow on hover */
  transform: translateY(-2px); /* Slight lift on hover */
}
.btn-primary:active {
  background-color: #901d90;
  background-color: #901d90; /* Even darker color when active */
  box-shadow: 0 1px #901d90, 0 2px #901d90; /* Minimal shadow when active */
  transform: translateY(0); /* No lift when active */
}

.btn-danger {
  font-family: "OPTIMajerIrregular", display;
  background-color: #c34c4c; /* Bright pink background */
  color: #E5E883; /* White text */
  border: 2px solid #8f2f2f; /* Darker border */
  border-radius: 30px; /* Rounded corners */
  padding: 7px 25px 5px 25px; /* Padding for size */
  font-size: 1.5em; /* Larger text */
  text-transform: uppercase; /* Uppercase text */
  box-shadow: 0 4px #8f2f2f, 0 8px #6b2525; /* 3D shadow effect */
  transition: all 0.3s ease; /* Smooth transition */
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.btn-danger.btn-small {
  padding: 10px 5px;
  font-size: 1em;
}
.btn-danger:hover {
  background-color: #8f2f2f; /* Darker color on hover */
  border-color: #8f2f2f; /* Border color on hover */
  box-shadow: 0 2px #6b2525, 0 4px #6b2525; /* Less deep shadow on hover */
  transform: translateY(-2px); /* Slight lift on hover */
}
.btn-danger:active {
  background-color: #6b2525;
  background-color: #6b2525; /* Even darker color when active */
  box-shadow: 0 1px #6b2525, 0 2px #6b2525; /* Minimal shadow when active */
  transform: translateY(0); /* No lift when active */
}

.btn-warning {
  font-family: "OPTIMajerIrregular", display;
  background-color: #e67e22; /* Bright pink background */
  color: #E5E883; /* White text */
  border: 2px solid #b85e17; /* Darker border */
  border-radius: 30px; /* Rounded corners */
  padding: 7px 25px 5px 25px; /* Padding for size */
  font-size: 1.5em; /* Larger text */
  text-transform: uppercase; /* Uppercase text */
  box-shadow: 0 4px #b85e17, 0 8px #8f4b0f; /* 3D shadow effect */
  transition: all 0.3s ease; /* Smooth transition */
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.btn-warning.btn-small {
  padding: 10px 5px;
  font-size: 1em;
}
.btn-warning:hover {
  color: white;
  background-color: #b85e17; /* Darker color on hover */
  border-color: #b85e17; /* Border color on hover */
  box-shadow: 0 2px #8f4b0f, 0 4px #8f4b0f; /* Less deep shadow on hover */
  transform: translateY(-2px); /* Slight lift on hover */
}
.btn-warning:active {
  background-color: #8f4b0f;
  background-color: #8f4b0f; /* Even darker color when active */
  box-shadow: 0 1px #8f4b0f, 0 2px #8f4b0f; /* Minimal shadow when active */
  transform: translateY(0); /* No lift when active */
}

.btn-success {
  font-family: "OPTIMajerIrregular", display;
  background-color: #d259d2; /* Bright pink background */
  color: #E5E883; /* White text */
  border-radius: 30px; /* Rounded corners */
  padding: 7px 25px 5px 25px; /* Padding for size */
  font-size: 1.5em; /* Larger text */
  background: #2f7756;
  border: 4px solid #425767;
  box-shadow: 2px 3px 0px #444d55;
  transition: all 0.3s ease; /* Smooth transition */
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.btn-success.btn-small {
  padding: 10px 5px;
  font-size: 1em;
}
.btn-success:hover {
  color: white;
  background-color: #236a26; /* Darker color on hover */
  border-color: #236a26; /* Border color on hover */
  box-shadow: 0 2px #1b521e, 0 4px #1b521e; /* Less deep shadow on hover */
  transform: translateY(-2px); /* Slight lift on hover */
}
.btn-success:active {
  background-color: #1b521e;
  background-color: #1b521e; /* Even darker color when active */
  box-shadow: 0 1px #1b521e, 0 2px #1b521e; /* Minimal shadow when active */
  transform: translateY(0); /* No lift when active */
}

.questionnaire-component {
  position: relative; /* Assurez-vous que le parent est positionné relativement */
}
.questionnaire-component input[type=text] {
  appearance: none;
  border: none;
  outline: none;
  border-bottom: 0.2em solid #d259d2;
  background: rgba(210, 89, 210, 0.2);
  border-radius: 0.2em 0.2em 0 0;
  padding: 0.4em;
  color: white;
  font-size: 1.5em;
  width: 100%;
  margin-bottom: 1em;
  text-align: center;
  line-height: 2em;
}
.questionnaire-component input[type=text] ::placeholder {
  color: white;
}

.logo {
  position: relative;
  height: 220px;
}
.logo .avatar {
  position: absolute;
  z-index: -1;
  width: 100%;
  bottom: 70px;
  background-image: url("/images/avatar-halo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
.logo .greetingsMsg {
  position: absolute;
  z-index: 10;
  rotate: -3deg;
  text-align: center;
  bottom: 120px;
}
.logo .greetingsMsg span {
  background-color: #bc2bbc;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 3px 10px;
  font-size: 1.3rem;
}

.question-nav {
  position: absolute;
  top: calc(50% + 3.5em); /* Centre verticalement */
  transform: translateY(-50%); /* Alignement précis au centre */
  background: none;
  border: none;
  cursor: pointer;
}

/* Input styling */
.question input[type=text] {
  display: block;
  margin: 0 auto; /* Centrer l'input horizontalement */
  /* Autres styles pour l'input */
}

#submitAnswers {
  font-size: 2em;
}

.wrongAnswer {
  color: #bc2bbc;
}

#quiz-area {
  max-width: 90%;
  margin: auto;
}

#question {
  font-size: 3rem;
  margin: 10px 0;
}

#result {
  margin-top: 30px;
  font-size: 3rem;
  transition: opacity 0.5s ease-in-out;
}
#result.correct {
  position: absolute;
  color: white;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: normal;
  font-size: 1rem;
}
#result.incorrect {
  color: white;
  position: absolute;
  top: 20%;
  left: 50%;
  padding: 20px;
  font-size: 1.2rem;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.75);
  border: 1px solid #bc2bbc;
  border-radius: 15px;
}
#result.incorrect span {
  font-size: 2rem;
}

#answer-input {
  min-height: 40px;
  font-size: 3rem;
  background: none;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  color: white !important;
  text-align: center;
}

#answer-input[placeholder], [placeholder], *[placeholder] {
  color: #E5E883;
  width: 200px;
  margin: 0 auto;
}

#answer-input::-webkit-input-placeholder {
  color: #bc2bbc;
  font-size: 2rem;
}

/* Pour les navigateurs basés sur WebKit comme Chrome, Safari */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Pour Mozilla Firefox */
input[type=number] {
  appearance: textfield;
}

#question {
  opacity: 0; /* Commencez avec une opacité de 0 */
  transform: translateX(-100px); /* Commencez décalé sur la gauche */
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

#level-type-form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2em;
  margin-bottom: 2em;
}
#level-type-form input[type=radio] {
  display: none;
}
#level-type-form label {
  width: 140px;
  background-color: #d259d2; /* Bright pink background */
  color: #E5E883; /* White text */
  border: 2px solid #bc2bbc; /* Darker border */
  border-radius: 10px; /* Rounded corners */
  padding: 15px 0px; /* Padding for size */
  margin-top: 15px;
  font-size: 0.9rem; /* Larger text */
  text-transform: uppercase; /* Uppercase text */
  box-shadow: 0 4px #bc2bbc, 0 8px #901d90; /* 3D shadow effect */
  transition: all 0.3s ease; /* Smooth transition */
  display: inline-block;
  text-align: center;
  text-decoration: none;
  margin-bottom: 12px;
}
#level-type-form label:hover {
  background-color: #bc2bbc; /* Darker color on hover */
  border-color: #bc2bbc; /* Border color on hover */
  box-shadow: 0 2px #901d90, 0 4px #901d90; /* Less deep shadow on hover */
  transform: translateY(-2px); /* Slight lift on hover */
}
#level-type-form label:active {
  background-color: #901d90;
  background-color: #901d90; /* Even darker color when active */
  box-shadow: 0 1px #901d90, 0 2px #901d90; /* Minimal shadow when active */
  transform: translateY(0); /* No lift when active */
}
#level-type-form label img {
  padding: 10px;
  max-width: 100px;
  max-height: 100px;
}
#level-type-form label.selected {
  background: #d259d2;
}
#level-type-form label.disabled {
  background: #919191;
  pointer-events: none;
  border: #919191;
  box-shadow: none;
}
#level-type-form h4 {
  margin-bottom: 20px;
}

#answer-form {
  display: none;
  border-radius: 10px;
  padding-top: 0px;
  padding-bottom: 20px;
}
#answer-form button {
  font-size: 4rem;
}

#tsparticles {
  z-index: -1; /* Place les particules en arrière-plan */
  pointer-events: none; /* Permet aux événements de la souris de passer à travers */
}

.difficulty-level, .calculation-type {
  margin-bottom: 30px;
}
.difficulty-level label, .calculation-type label {
  flex: 0 0 auto;
}

#congratulation-message img {
  border-radius: 10px;
  max-width: 100%;
}

#finalScoreDetails ul {
  list-style-type: none;
  margin-top: 20px;
}
#finalScoreDetails ul li {
  margin-bottom: 10px;
  font-size: 1em;
}
#finalScoreDetails ul .correctAnswer {
  color: #43b449;
}

.radio-group {
  /* début de l'animation de hauteur à partir de 0 pour avoir l'effet de repli */
  max-height: 0;
  transition: max-height 0.5s ease-out; /* l'animation se déroule sur 0.5 secondes */
}

.mode-selection {
  overflow: hidden; /* cache le contenu qui dépasse de la hauteur maximale */
}

.radio-group.collapsed {
  /* hauteur maximale lorsqu'elle est dépliée (vous devrez peut-être ajuster cette valeur) */
  max-height: 500px;
}

.question-info {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
  color: #E5E883;
  font-size: 12px;
}

.question-info span {
  margin: 0 0.5rem;
  font-weight: 400;
}

.badges ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.badges ul li {
  width: 100%;
  display: inline-block;
  margin-right: 10px;
  padding: 5px 10px;
  background: black;
  color: white;
  border-radius: 5px;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.badges ul li img {
  border-radius: 100%;
}
.badges ul p {
  font-size: 0.8rem;
}

.new-badge-notification {
  position: fixed;
  bottom: 20px; /* You can adjust this value as needed */
  left: 0;
  width: calc(100% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.8); /* Background color */
  color: white;
  text-align: center;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.new-badge-notification.show {
  opacity: 1;
}

.badge-image {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.badge-info h4 {
  margin: 0 0 5px 0;
}

.badge-info p {
  margin: 0;
}

#numeric-keyboard {
  max-width: 500px;
}
#numeric-keyboard button {
  width: 70px;
  height: 70px;
  font-size: 40px;
  font-weight: 700;
  line-height: 70px;
  padding: 0;
  margin: 3px;
}

.quiz-section {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
  height: 0;
  overflow: hidden;
}

.quiz-section.active {
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease;
  height: auto; /* ajustez selon votre contenu */
  overflow: visible;
  visibility: visible;
  transition-delay: 0s;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #340136; /* Assortir à votre thème */
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 15px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.nav-icon {
  text-decoration: none;
  color: white; /* Assurez-vous que la couleur est visible sur le fond */
  font-size: 30px; /* Ajustez la taille des icônes */
}

.start_quiz {
  font-size: 3rem;
}

.progress-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.progress-bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: white;
  margin: 0 5px;
}

#progress-indicator.challenge-mode {
  opacity: 0;
}

#progress-indicator {
  opacity: 1;
}

.progress-bullet.active {
  background-color: #d259d2; /* Use a color that matches your theme */
}

#timer-container {
  position: relative;
  display: inline-block;
}

#timer-display {
  color: #d259d2;
  font-size: 24px;
  font-weight: 700;
  display: block;
  transform: scale(3);
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

#timer-display.visible {
  color: #d259d2;
  transform: scale(1);
  opacity: 1;
}

#timer-display.white-text {
  color: #E5E883;
  transition: transform 3s ease-out, opacity 3s ease-out;
  transform: scale(2);
}

@keyframes moveUp {
  0% {
    opacity: 1;
    top: -40px;
  }
  100% {
    opacity: 0;
    top: -90px;
  }
}
#time-indicator {
  position: absolute;
  top: -100px; /* Initial position below the timer */
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  opacity: 0;
  transition: none; /* Remove previous transition */
}

#time-indicator.show {
  animation: moveUp 3s ease-out forwards; /* Add the moveUp animation */
}

#coins-container {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1rem;
  color: #E5E883; /* Adjust the color as needed */
  z-index: 1000; /* Ensure it stays on top */
}

#coins-label {
  margin-right: 5px;
}

.update-notification {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #ff9800;
  color: #fff;
  text-align: center;
  padding: 10px;
  z-index: 1000;
}

.update-notification.fade-out {
  opacity: 0;
}

.update-notification button {
  margin-left: 10px;
  padding: 5px 10px;
  background: #4caf50;
  color: #fff;
  border: none;
  cursor: pointer;
}

.table {
  background-color: rgba(0, 0, 0, 0.1);
  color: white;
}
.table .thead-dark th {
  background-color: #d259d2;
  color: white;
  font-weight: normal;
}
.table td {
  background: none;
  color: white;
  font-weight: normal;
}

@media (max-width: 767px) {
  body {
    padding-top: env(safe-area-inset-top, 50px);
    touch-action: none;
    background-color: #000;
  }
  .returnBtn {
    margin-top: 30px;
  }
  #coins-container {
    margin-top: 30px;
  }
}
.shop-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.card {
  width: 25%;
  border: none;
  text-align: center;
  background: none;
  color: white;
}

.card img {
  width: 100%;
  height: auto;
}

.card.selected .btn-primary {
  display: none;
}
.card.selected img {
  padding: 0;
  border: 5px solid #d259d2; /* Border for selected avatar */
  border-radius: 10px;
  background-image: url("/images/avatar-halo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.card-body {
  padding: 10px;
}

.card-title {
  font-size: 1.2em;
  margin: 10px 0;
}

.card-text {
  margin: 10px 0;
}

.btn {
  width: 100%;
}

.progress-bar {
  height: 25px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 10px;
}
.progress-bar.big {
  height: 50px;
}
.progress-bar.small {
  margin-top: 5px;
  height: 10px;
}

.progress-bar-inner {
  height: 100%;
  border-radius: 5px;
  transition: width 0.3s ease;
}

.progress-bar-inner.red {
  background-color: #ff4d4d;
}

.progress-bar-inner.orange {
  background-color: #ffa500;
}

.progress-bar-inner.green {
  background-color: #4caf50;
}

.img-icon {
  width: 24px; /* Adjust the size as needed */
  height: 24px; /* Adjust the size as needed */
  margin-right: 8px; /* Adjust the space between the image and the text as needed */
  vertical-align: middle;
}

.accordion, .accordion-item {
  background-color: rgba(0, 0, 0, 0.1);
  color: white;
}

.accordion-header, .accordion-button {
  background-color: #d259d2;
  color: white;
  font-family: "OPTIMajerIrregular", display;
}

.accordion-button:not(.collapsed) {
  color: white;
  background-color: #901d90;
  border-bottom: 1px solid #bc2bbc;
}

.badge-custom {
  top: 18px !important;
  border-radius: 15px;
  right: 30px; /* Ajustez cette valeur pour positionner le badge horizontalement */
  transform: translate(50%, -50%);
}

#finalScoreElement ul {
  list-style-type: none;
}

/* Ajoutez ceci à votre fichier CSS */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #4caf50;
  color: white;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-10px);
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

.notification.hide {
  opacity: 0;
  transform: translateY(-10px);
}

.badge {
  font-weight: 400;
}

/* style.css */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.list-group-item {
  background-color: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  padding: 0;
}

.loading {
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: 10px; /* Adjust as needed */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.help-dialog {
  position: fixed;
  top: 50%;
  left: 10%;
  width: 80%;
  transform: translate(0%, -50%);
  background-color: rgba(0, 0, 0, 0.85);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.help-dialog-content {
  text-align: center;
}

.help-dialog-content p {
  margin-bottom: 20px;
}

.border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait), (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  main.container {
    padding: 100px; /* padding spécifique pour les iPads */
  }
  #coins-container {
    top: 30px !important;
  }
}
/* Media query pour les iPads Pro 12.9 pouces */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait), (min-width: 1366px) and (max-width: 2048px) and (orientation: landscape) {
  main.container {
    padding: 80px; /* padding spécifique pour les iPads Pro 12.9 pouces */
  }
  #coins-container {
    top: 30px !important;
  }
}

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