/**
 *------------------------------------------------------------------------------
 * @package       Site web >A<ttraction version 1.0 - CUSTOM EDITOR
 *------------------------------------------------------------------------------
 * @copyright     Copyright (C) 2024 attraction.com. All Rights Reserved.
 * @license       GNU General Public License version 2 or later; see LICENSE.txt
 * @authors       Vincent Eeckhout
 * @path Local    /Applications/XAMPP/xamppfiles/htdocs/Attraction_Sandbox/templates/attraction/local/css
 * @date          Last update : 2025 09 04
 *------------------------------------------------------------------------------
**/

/**
 *------------------------------------------------------------------------------
 * Classes Module 213 - [Module Attraction] Tunnel Inscription membre - Etape 1
 *------------------------------------------------------------------------------
**/

#cta-palette {
  position: fixed;
  top: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column; /* Vertical */
  align-items: flex-end;
  gap: 0.75rem;
  z-index: 2000;
}

.cta-mini {
  background-color: #FF453A;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

#btn-connexion {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
}

#cta-palette:hover #btn-connexion {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.cta-mini:hover {
  background-color: #FFCB01;
  color: #4f4f4f;
}
/**
 *------------------------------------------------------------------------------
 * Classes Module 213 - [Module Attraction] Wizard George
 *------------------------------------------------------------------------------
**/

/* === Bouton Flottant CTA === */
.cta-button {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background-color: #FF453A;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  z-index: 1000;
}

.skip-link {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #888;
  text-decoration: underline;
  cursor: pointer;
}

.skip-link:hover {
  color: #555;
}

/**
 *------------------------------------------------------------------------------
 * Wizard George - Version Page Intégrée (Sans Modale)
 *------------------------------------------------------------------------------
 */

#wizard-george {
  max-width: 1500px;
  margin: 3rem auto;
  padding: 2rem 3rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  font-family: 'Manrope', sans-serif;
}

/* === Avatar + Message === */
.wizard-header {
  background: #f9f9f9;
  padding: 2rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.george-avatar {
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 69, 58, 0.15);
  width: 120px;
  height: 120px;
  animation: georgeGlowSubtle 1.2s ease-in-out infinite;
}

@keyframes georgeGlowSubtle {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 69, 58, 0); }
  50% { box-shadow: 0 0 18px 3px rgba(255, 69, 58, 0.15); }
}

.george-message {
  font-size: 1.1rem;
  color: #999;
  max-width: 75%;
  margin: 1rem auto 0;
  font-style: italic;
  animation: fadeInGeorgeText 0.8s ease forwards;
}

@keyframes fadeInGeorgeText {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === Corps Wizard === */
.wizard-body {
  margin-top: 2rem;
  text-align: center;
}

/* Étapes dynamiques */
.step {
  display: none;
}

.step.active {
  display: block;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Progression */
.progress-label {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #999;
  margin-bottom: 0.75rem;
}

.wizard-progress-bar {
  height: 4px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  width: 80%;
}

.wizard-progress-fill {
  height: 100%;
  background: #FF453A;
  transition: width 0.4s ease;
}

/* Questions */
.question-text {
  font-size: 1.3rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Inputs & Suggestions */
.autocomplete-wrapper input {
  width: 100%;
  max-width: 700px;
  margin: 1rem auto;
  display: block;
  padding: 0.75rem 1rem;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  transition: border-color 0.3s ease;
}

input:focus {
  outline: none;
  border-bottom-color: #FF453A;
}

#detect-location {
  display: block; /* important pour centrer horizontalement */
  margin: 1rem auto;
  text-align: center;
  border: 1px solid #FF453A;
  color: #FF453A;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  background: none;
}
.suggestions-list {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  z-index: 1050;
  list-style: none;
  margin-top: 4px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  display: none;
}

.suggestions-list li {
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.suggestions-list li:hover {
  background: #f5f5f5;
}

/* Boutons navigation */
.btn-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.btn-nav button {
  background-color: #FF453A;
  color: white;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-nav button:hover {
  background-color: #FFCB01;
  color: #222;
}

.btn-back {
  background: #f9f9f9;
  color: #444;
}

.btn-back:hover {
  background: #eee;
}

/* Choix : radio/checkbox */
.choices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Spécifique aux questions à choix multiples */
.choices.choices-multiple {
  align-items: stretch;  /* On enlève le centrage horizontal */
  text-align: left;
}

.choices.choices-multiple label {
  justify-content: flex-start; /* Aligner le texte à gauche */
  width: 100%;                 /* Occuper toute la largeur dispo */
}

.choices label {
  background: #f9f9f9;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 0.75rem;
  cursor: pointer;
}

.choices input[type="radio"],
.choices input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #FF453A;
}

/* Final */
.final-screen {
  text-align: center;
  margin-top: 2rem;
}

.final-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.message-text, .final-message {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

/**
 *------------------------------------------------------------------------------
 * Classes Module 150 - Menu version mobile
 *------------------------------------------------------------------------------
**/

.ContactMobile {
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}


/**
 *------------------------------------------------------------------------------
 * Classes des boites "Ce qu'il faut retenir" ou "Bon à savoir"
 *------------------------------------------------------------------------------
**/

.a-savoir {
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid #e9ecef;
    border-left-width: .25rem;
    border-radius: .25rem;
}

.a-savoir-warning {
    border-left-color: #FFCB01;
}



/**
 *------------------------------------------------------------------------------
 * Classes page d'accueil site
 *------------------------------------------------------------------------------
**/
.acm-hero.style-1 .hero-item .color-decor {
    background: #ffffff;
    -webkit-filter: blur(75px);
    filter: blur(75px);
    height: 290px;
    width: 290px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top:0
}


.acm-hero.style-1 .hero-item h1, .acm-hero.style-1 .hero-item .h1{
margin-bottom: 30px ;
}


.products-grid {
  --grid-repeat: 2;
  --grid-gap: 2vw;

  @media (width >= 1000px) {
    --grid-repeat: 3;
    --grid-gap: 3vw;
  }
}

:target {
    scroll-margin-top: 100px; /* Ajuste cette valeur en fonction de la hauteur de l'en-tête */
}

/* Module Acymail

/* Limiter la largeur des champs de texte */
.acym_form input[name="user[name]"].cell,
.acym_form input[name="user[email]"].cell {
    width: 100%; /* S'adapte à la taille de son conteneur */
    max-width: 400px; /* Limite la largeur maximale */
    font-size: 16px; /* Ajuste la taille de la police */
    padding: 10px; /* Ajoute du padding pour rendre les champs plus esthétiques */
    box-sizing: border-box; /* Pour éviter que le padding ne déborde du conteneur */
}

/* Alignement et espacement des labels */
.acym_form label {
    display: block; /* Assure que le label et le champ sont bien séparés */
    margin-bottom: 5px; /* Un petit espace entre le label et le champ */
    font-size: 16px; /* Ajuste la taille du label */
}

/* Ajuster la hauteur des champs */
.acym_form input {
    height: auto; /* Si les champs sont trop hauts, cette ligne les ajuste à une taille normale */
}

/* Ajustement des messages d'erreur */
.acym__field__error__block {
    color: #FF453A; /* Couleur des messages d'erreur */
    font-size: 12px; /* Taille du texte d'erreur */
}

/* Harmonisation du bouton d'inscription */
.acym_form input[type="button"].subbutton {
    background-color: #fff; /* Couleur de fond du bouton */
    border-color: #FF453A; /* Supprime la bordure par défaut */
    padding: 10px 20px; /* Ajuste le padding pour rendre le bouton plus grand */
    font-size: 16px; /* Taille de la police du bouton */
    cursor: pointer; /* Change le curseur lors du survol */
    /*border-radius: 4px; /* Ajoute des coins légèrement arrondis */
    color: #FF453A; /* Texte rouge >A< */
    transition: background-color 0.3s ease; /* Ajoute une transition au survol */
}

/* Effet au survol du bouton */
.acym_form input[type="button"].subbutton:hover {
    background-color:  #FF453A; /* Couleur au survol */
    color: #fff; /* Texte rouge >A< */
}

/* Gérer l'état focus (quand le bouton est cliqué) */
.acym_form input[type="button"].subbutton:focus {
    outline: none; /* Supprime l'effet de bordure par défaut */
    background-color: #FF453A; /* Fond rouge */
    color: #fff; /* Texte blanc */
}

/**
 *------------------------------------------------------------------------------
 * Classes pages "Guide d'investissement"
 *------------------------------------------------------------------------------
**/
/**
 *------------------------------------------------------------------------------
 * Classes page "Club deal"
 *------------------------------------------------------------------------------
**/

.title-lead h5 {
    display: none;
}

.sommaire__header {
    margin-bottom: 32px;
    font-size: 18px;
    font-weight: 600;
}

.wrapper-sommaire {
width: auto;
max-width: none;
min-width: 120px;
border: 1px solid var(--border-20);
background-color: var(--beige-light);
flex-direction: column;
margin-left: 0;
padding: 12px;
display: flex;
position: -webkit-sticky;
position: sticky;
top: 20px;
}


 /*  TABLE CLUBDEAL - Responsive **/

.table-clubdeal {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  color: #222;
  font-size: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.table-clubdeal caption {
  caption-side: top;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  background: #fafafa;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.table-clubdeal th,
.table-clubdeal td {
  padding: 0.75rem 1rem;
  border: 1px solid #eee;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
  word-break: break-word;
}

.table-clubdeal th {
  background: #f9f9f9;
  font-weight: 600;
}

/* Responsive style */
@media (max-width: 576px) {
  .table-clubdeal thead {
    display: none; /* Cache les entêtes */
  }

  .table-clubdeal tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0.75rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  }

  .table-clubdeal td {
    display: block;
    text-align: left;
    border: none;
    padding: 0.5rem 0;
  }

  .table-clubdeal td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
  }
}




/**
 *------------------------------------------------------------------------------
 * Classes pages détails actifs collections
 *------------------------------------------------------------------------------
**/

.actif_card_title {
background-color:#FFFFFF;
border-top-right-radius: 7px;
border-top-left-radius: 7px;
display: block;
height: auto;
font-size: 15px;
font-weight: bold;
color: #232323;
padding: 11px 11px 11px 12px;
margin: 0 0 5px 0;
cursor: default;
line-height: inherit;
width: auto;
}

.zone_action{
margin-left: 11px;
margin-top: 15px;
margin-bottom: 5px;
}
.zone_action label{
margin-left: 5px;
font-weight: normal;
line-height: 1.2em;
font-size: 14px;
}

.zone_action ul{
margin-top: 7px;
margin-left: 3px;
}

.actif_card_base {
//margin-left: 20px;
margin-top: 20px;
border: 1px solid #D0D0D0;
border-radius: 7px;
background-color: #FAFAFA;
float: left;
width: 100%;
padding: 0;
margin: 0;
position: relative;
color: #232323;
font-weight: normal;
line-height: 1.2em;
font-size: 13px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}


.block_marketing {
//background-color: #f4f4f4;
//background-repeat: no-repeat;
//background-position: 156px bottom;
padding: 0 0 15px;
//float: left;
}

ul.link_block_valo li {
    position: relative;
    /* display: block; */
    width: auto;
    height: auto;
    line-height: 24px;
    background: none;
    list-style: none;
    padding: 9px 0 10px 0;
    margin: 0;
    margin-right: 25px;
    border-bottom: 1px solid #e0e0e0;
    
}

ul.link_block_valo li.neutral span.difference {
color: #9C9E9D;
}


.nav-tabs {
    border: 2;
    padding: 15px .7rem; 
    border-bottom: 1px solid #dee2e6;
}

.card-header .nav-tabs {
    border-top-right-radius: .1875rem;
    border-top-left-radius: .1875rem;
}


.nav-tabs .nav-item {
    margin-bottom: -1px;
}

.nav-tabs > .nav-item > .nav-link:hover {
    background-color: transparent;
}

.nav-tabs > .nav-item > .nav-link {
    color: #888;
    margin: 0;
    margin-right: 5px;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 30px;
    font-size: 14px;
    padding: 11px 23px;
    line-height: 1.5;
}

.nav-tabs > .nav-item > .nav-link.active {
    background-color:#FF453A;
    border-radius: 30px;
    color: #fff;
}



/**
 *------------------------------------------------------------------------------
 * Classes page "Marchés"
 *------------------------------------------------------------------------------
**/


.block_base {
margin-top: 20px;
border: 1px solid #D0D0D0;
border-radius: 7px;
background-color: #FAFAFA;
position: relative;
color: #232323;
width: 100%;
padding: 25px;
margin: 0;
font-weight: normal;
line-height: 1.2em;
font-size: 13px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.marches_card_title {
background-color:#FFFFFF;
border-bottom: 1px solid #e0e0e0;
border-top-right-radius: 7px;
border-top-left-radius: 7px;
display: block;
height: 75px;
font-size: 15px;
font-weight: bold;
color: #232323;
padding: 11px 11px 11px 12px;
margin: 0 0 5px 0;
line-height: inherit;
width: auto;
}

.link_block_content li {
    position: relative;
    /* display: block; */
    width: auto;
    height: auto;
    line-height: 24px;
    background: none;
    list-style: none;
    padding: 9px 0 10px 0;
    margin: 0;
    margin-right: 25px;
    border-bottom: 1px solid #e0e0e0;
}

ul.link_block_base li {
    position: relative;
    //display: block;
    width: inherit;
    height: auto;
    line-height: 24px;
    background: none;
    list-style: none;
    padding: 9px 0 10px 0;
    margin: 0;
    margin-right: 25px;
    border-bottom: 1px solid #e0e0e0;
    
}

ul.marches_block_valo li {
    position: relative;
    /* display: block; */
    width: auto;
    height: auto;
    line-height: 24px;
    background: none;
    list-style: none;
    padding: 9px 0 10px 0;
    margin: 0;
    margin-right: 25px;
    border-bottom: 1px solid #e0e0e0;
    
}

.disclamer{
padding: 15px;
font-size: 12px;
}

/**COURS DU MOIS - BLOC INFORMATIF INDICE**/


.index-green {
color : rgb(45, 194, 107)
            }
.index-red {
color : rgb(255, 69, 58);
            }
            
.marches_card_title p {
 padding: 9px 0 10px 0;
 margin: 0;
}

#definition {
font-weight: normal;
line-height: 1.2em;
font-size: 14px;
color: rgb(255, 69, 58);
}

/**COURS DU MOIS - FIN BLOC INFORMATIF INDICE**/

/** VUE GRAPHIQUE**/
#graph-hagi {
//width: 100%;
}


.theme-block {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.theme-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.theme-block ul {
    list-style: none;
    padding: 0;
}

.theme-block ul li {
    margin-bottom: 10px;
}

.theme-block ul li a {
    color: #007bff;
    text-decoration: none;
}

.theme-block ul li a:hover {
    color: #0056b3;
}


/**BLOCS THEMATIQUES LISTE DE LIENS DEPUIS FICHIERS XML**/


/**
 *------------------------------------------------------------------------------
 * Classes page "Collection" Présentation
 *------------------------------------------------------------------------------
**/

.grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
min-height: 25rem;
gap: 1.5%;
}


/* --- MAIN --- */

.table {
  position: relative;
  width: auto;
  /*width: 1625px;
  /*background: #9C9E9D;*/  
  /*background: linear-gradient(#9C9E9D,  #000000);*/
  margin: 0 auto;
  padding: 20px 60px 5px;
  display: table;
  line-height: 0;
  border-radius: 15px;
  box-sizing: border-box;
  /*box-shadow: 1px 1px 4px 1px rgba(255, 250, 255, .5) inset, -1px -1px 4px 1px #002 inset, 3px 3px 80px 15px #000;*/
}

.deck {
  display: table-row;
  vertical-align: middle;
}

/* --- CARD SETTINGS --- */

.deck>input,
.deck>u,
.deck>b {
  width: 238px;
  height: 377px;
  margin-top: 50px;
  position: relative;
}

.deck>input {
  z-index: 999;
  cursor: pointer;
  opacity: 5;
  width: 238px;
  height: 110px;
  margin-top: 50px;
}

.deck>u,
.deck>b {
  left: -65px; /* Subtract margin value - Modifier pour gérer superposition avec case à cocher */
  margin-left: -200px; /* Subtract width value - Modifier pour gérer superposition avec case à cocher */
  display: inline-block;
  text-align: center;
  vertical-align: top;
  border: 5px solid #f8fff9;
  box-sizing: border-box;
  border-radius: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* --- FRONT CONTENT --- */

.deck>u{
  background: #f8fff9;
  text-decoration: none;
  font: italic 12px Arial, Helvetica, sans-serif;
  color: grey;
}

.deck>u::first-line{
  font: 50px/80px Arial, Helvetica, sans-serif;
  color: orange;
}

.deck>u>b {
  font: bold 14px "Comic Sans MS", cursive, sans-serif;
  color: teal;
  display: block;
  margin-top: -10px;
}

/* --- BACK CONTENT --- */

.deck>b {
  background: #ebe119;
  background: linear-gradient(#fede1e, #dabb1e);
  border: 7px solid #f8fff9;
  box-sizing: border-box;
}

.deck>b::before,
.deck>b::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background: url('https://blog.codepen.io/wp-content/uploads/2012/06/Button-Fill-White-Small.png') center/36px;
  border-radius: inherit;
  opacity: .3;
}

.deck>b::after {
  background-position: calc(50% + 18px) calc(50% + 18px);
}

/* --- ANIMATION AND 3D SETTINGS --- */

.deck {
  perspective: 1450px;
}

.deck>u,
.deck>b {
  transition: all .8s;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  z-index: 0;
}

.deck>input:checked + u,
.deck>input:checked + u + b {
  z-index: 100;
}

.deck>input:focus + u,
.deck>input:focus + u + b {
  transition-property:  transform, filter, box-shadow; /* Exclude z-index to immediately overlay */
  outline: 0;
  z-index: 900;
}

/* --- FRONT ANIMATION --- */

.deck>u {
  transform: translateX(160%) rotateY(-180deg);
  transform-origin: -30% center;
  box-shadow: 130px 30px 40px -20px rgba(0, 0, 0, 0);
  filter: brightness(3);
}

.deck>input:checked + u {
  transform: translateX(0%) rotateY(0deg);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, .4);
  filter: brightness(1);
}

/* --- BACK ANIMATION --- */

.deck>b {
  transform: translateX(0%) rotateY(0deg);
  transform-origin: 130% center;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, .4);
  filter: brightness(1);
}

.deck>input:checked + u + b {
  transform: translateX(-160%) rotateY(180deg);
  box-shadow: 80px 10px 20px -40px rgba(0, 0, 0, 0);
  filter: brightness(0);
}

/* Edge hack - Prevent click during transition, otherwise the animation breaks */

@supports (-ms-ime-align:auto) {
  .deck>input {
    animation: step-end .8s; // Time is the same as the main transition
  }
  .deck>u,
  .deck>b {
    cursor: pointer;
  }

  .deck>input:checked {
    animation-name: noclick1;
  }

  .deck>input:not(:checked) {
    animation-name: noclick2;
  }

  @keyframes noclick1 {
    0%   { visibility: hidden; }
    100% { visibility: visible; }
  }

  @keyframes noclick2 {
    0%   { visibility: hidden; }
    100% { visibility: visible; }
  }
}

/**
 *------------------------------------------------------------------------------
 * Classes page Simuler
 *------------------------------------------------------------------------------
**/

:root {
    --color-1: #6e40aa;
    --color-2: #4c6edb;
    --color-3: #24aad8;
    --color-4: #1ac7c2;
    --color-5: #1ddea3;
}

table.dataTable thead > tr > th.dt-orderable-desc > span.dt-column-title,
table.dataTable thead > tr > th.dt-orderable-asc > span.dt-column-title ,
table.dataTable thead > tr > td.dt-orderable-desc > span.dt-column-title,
table.dataTable thead > tr > td.dt-orderable-asc > span.dt-column-title
{
    margin-right: 0.5rem;
}

.donut-slice-shadow {
    fill: transparent;
    stroke: transparent;
}

.donut-slice-showShadow {
    fill : lightgray;
}

.donut-slice:nth-of-type(3n+ 1) .donut-slice-slice {
    fill: var(--color-1);
}

.donut-slice:nth-of-type(3n+ 2) .donut-slice-slice {
    fill: var(--color-2);
}

.donut-slice:nth-of-type(3n) .donut-slice-slice {
    fill: var(--color-3);
}


#coll-capital-donut-div {
    width: 200px;
    height: 180px;
    position: relative;
    margin: auto;
}

/*
#carModalDepreciationSlider .slider-selection {
    background: #81bfde;
}

#carModalDepreciationSlider .slider-rangeHighlight {
    background: #f70616;
}

#carModalDepreciationSlider .slider-rangeHighlight.btn-secondary {
    background: gray;
}

#carModalDepreciationSlider .slider-rangeHighlight.btn-warning {
    background: #FF9900;
}

#carModalDepreciationSlider .slider-rangeHighlight.btn-success {
    background: #99CC00;
}
*/

#carModalDepreciationSlider .slider-selection,
#marketDepreciationSlider .slider-selection
{
    background: #81bfde;
}

#carModalDepreciationSlider .slider-rangeHighlight,
#marketDepreciationSlider .slider-rangeHighlight 
{
    background: #f70616;
}

#carModalDepreciationSlider .slider-rangeHighlight.btn-secondary,
#marketDepreciationSlider .slider-rangeHighlight.btn-secondary 
{
    background: gray;
}

#carModalDepreciationSlider .slider-rangeHighlight.btn-warning,
#marketDepreciationSlider .slider-rangeHighlight.btn-warning
{
    background: #FF9900;
}

#carModalDepreciationSlider .slider-rangeHighlight.btn-success,
#marketDepreciationSlider .slider-rangeHighlight.btn-success
{
    background: #99CC00;
}

div.attr-inline-input {
    /* background: #99CC00 !important; */
}

input.attr-inline-input {
    /* background: #99CC00 !important; */
}

/********** Range Input Styles **********/
/*Range Reset*/
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    width: 15rem;
}

/* Removes default focus */
input[type="range"]:focus {
    outline: none;
}

/***** Chrome, Safari, Opera and Edge Chromium styles *****/
/* slider track */
input[type="range"]::-webkit-slider-runnable-track {
    background: linear-gradient(90deg, rgba(255,0,0,1) 0%, rgba(244,148,4,1) 16%, rgba(165,165,165,1) 32%, rgba(18,255,5,1) 50%, rgba(165,165,165,1) 66%, rgba(244,148,4,1) 84%, rgba(255,0,0,1) 100%);
    border-radius: 0.5rem;
    height: 0.5rem;  
}


input[type="range"]:focus::-webkit-slider-thumb {   
    border: 1px solid #053a5f;
    outline: 3px solid #053a5f;
    outline-offset: 0.125rem; 
}

/* slider thumb */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    margin-top: -4px; /* Centers thumb on the track */
    
    /*custom styles*/
    background-color: #053a5f;
    border-radius: 0.5rem;
    height: 1rem;
    width: 1rem;
}

input[type="range"]:focus::-webkit-slider-thumb {   
    /*border: 1px solid #053a5f;*/
    outline: 1px solid #053a5f;
    outline-offset: 0.125rem; 
}
  
/******** Firefox styles ********/
/* slider track */
input[type="range"]::-moz-range-track {
    background: linear-gradient(90deg, rgba(255,0,0,1) 0%, rgba(244,148,4,1) 16%, rgba(165,165,165,1) 32%, rgba(18,255,5,1) 50%, rgba(165,165,165,1) 66%, rgba(244,148,4,1) 84%, rgba(255,0,0,1) 100%);
    border-radius: 0.5rem;
    height: 0.5rem;
}

/* slider thumb */
input[type="range"]::-moz-range-thumb {
    border: none; /*Removes extra border that FF applies*/
    border-radius: 0; /*Removes default border-radius that FF applies*/
    
    /*custom styles*/
    background-color: #5cd5eb;
    height: 2rem;
    width: 1rem;
}

input[type="range"]:focus::-moz-range-thumb {
    border: 1px solid #053a5f;
    outline: 3px solid #053a5f;
    outline-offset: 0.125rem; 
}


/**
 *------------------------------------------------------------------------------
 * Classes override Profile
 *------------------------------------------------------------------------------
**/

/* Reset de base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

/* Container principal */
.user-dashboard {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.dashboard-sidebar {
  width: 250px;
  background-color: #fff;
  padding: 20px;
  border-right: 1px solid #e0e0e0;
}

.user-info {
  text-align: center;
  margin-bottom: 30px;
}

.user-info .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.user-info h2 {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.user-info p {
  font-size: 0.9em;
  color: #777;
}

.dashboard-nav ul {
  list-style: none;
}

.dashboard-nav li {
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.dashboard-nav li:hover,
.dashboard-nav li.active {
  background-color: #e0e0e0;
}

/* Contenu principal */
.dashboard-content {
  flex: 1;
  padding: 40px;
  background-color: #fff;
}

.content-section {
  display: none;
}

.content-section.active {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .user-dashboard {
    flex-direction: column;
  }

  .dashboard-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .dashboard-content {
    padding: 20px;
  }
}

