/* Write your custom CSS here */

/*
* FONT SIZE -----------------------
*/
.fs-10 {
    font-size: 10px;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}
.dark-theme {
    background-color: "dark"; /* Fond sombre */
    color: #fff; /* Texte en mode sombre */
  }
  
  /* Utilisez fill: currentColor pour les icônes */
  .dark-theme .bi {
    fill: currentColor;
  }

/* Styles spécifiques pour le composant page-header en mode sombre */
.dark-theme .page-header{
    background-color: #1f0757; /* Modifier la couleur de fond en mode sombre */
    color: #fff; /* Modifier la couleur de texte en mode sombre */
  }
  .btn-dark {
    color: #ffffff;
    background-color: #061238;
    border-color: #061238;
  }
  
  .btn-dark:hover {
    color: #ffffff;
    background-color: #23272b;
    border-color: #1d2124;
  }
  .btn-check:focus + .btn-dark,
.btn-dark:focus {
  color: #ffffff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-check:checked + .btn-dark,
.btn-check:active + .btn-dark,
.btn-dark:active,
.btn-dark.active,
.show > .btn-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.square_button {
    border: 1px solid #6362e7;
    background-color: #6362e7;
    padding: 8px 8px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 8px;
    cursor: pointer;

}

.square_button_success {
    border: 1px solid #50C878;
    background-color: #50C878;
    padding: 8px 8px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 8px;
    cursor: pointer;

}

.square_button_warning {
    border: 1px solid #FFA836;
    background-color: #FFA836;
    padding: 8px 8px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 8px;
    cursor: pointer;
}

.btn-table {
    padding: 8px 8px;
    border-radius: 7px;
    line-height: 22px;
    border: none;
    font-size: 8px;
    display: inline-block;
    background: transparent;
}
.cc-selector input{
    margin:0;padding:0;
    -webkit-appearance:none;
       -moz-appearance:none;
            appearance:none;
  }
  
  .drinkcard-cc, .cc-selector input:active +.drinkcard-cc{opacity: .9;}
  .drinkcard-cc, .cc-selector input:checked +.drinkcard-cc{
    -webkit-filter: none;
       -moz-filter: none;
            filter: none;
  }
  .drinkcard-cc{
    cursor:pointer;
    background-size:contain;
    background-repeat:no-repeat;
    display:inline-block;
    width:80px;height:70px;
    -webkit-transition: all 100ms ease-in;
       -moz-transition: all 100ms ease-in;
            transition: all 100ms ease-in;
    -webkit-filter: brightness(1.8) grayscale(1) opacity(.7);
       -moz-filter: brightness(1.8) grayscale(1) opacity(.7);
            filter: brightness(1.8) grayscale(1) opacity(.7);
  }
  .drinkcard-cc:hover{
    -webkit-filter: brightness(1.2) grayscale(.5) opacity(.9);
       -moz-filter: brightness(1.2) grayscale(.5) opacity(.9);
            filter: brightness(1.2) grayscale(.5) opacity(.9);
  }