.admin-content {
    overflow: scroll;
    margin: 2rem 0;
    margin-bottom: 0;
    padding-bottom: 2rem;
    width: 100%;
}

.dashboard{
    margin-top: 2rem;
}

.dashboard h1{
    background: linear-gradient(92deg, #0A58A5 29.76%, #172735 112.98%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    font-family: inherit;
}

.dashboard-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 40px 0 20px;
}

.dashboard-icon .admin-badge {
    background: linear-gradient(95deg, #0A58A5 -17.14%, #172735 92.85%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard .stats{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.dashboard .stats .card{
    width: 33%;
    border-radius: 20px;
    border: 1px solid #DFE5EC;
    background: #FFF;
    padding: 30px;
}

.dashboard .stats .stat{
    background: linear-gradient(135deg, #F2F4F8 0%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #DFE5EC;
    transition: transform 0.2s ease-in-out;
}

.dashboard .stats .stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.dashboard .stats .stat .image{
    background: #F4F7F9;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard .stats .stat .infos{
    text-align: center;
}

.dashboard .stats .stat .infos span{
    color: #445972;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.dashboard .stats .stat .infos h5{
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(92deg, #0A58A5 29.76%, #172735 112.98%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.dashboard .stats .stat .infos h5 span{
    font-size: 14px;
    color: #445972;
    display: block;
    margin-top: 5px;
}

.dashboard table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 30px;
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dashboard table th {
    background: #F2F4F8;
    color: #0A58A5;
    font-weight: 600;
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #DFE5EC;
}

.dashboard table td {
    padding: 16px 20px;
    color: #445972;
    border-bottom: 1px solid #DFE5EC;
    font-size: 14px;
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover td {
    background: #F8FAFC;
}

.dashboard .points {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.dashboard .point {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: transform 0.2s ease-in-out;
  cursor: pointer;
  position: relative;
}

.dashboard .point:hover {
  transform: scale(1.2);
}

.dashboard .point.green{
    background-color: #59B224;
}

.dashboard .point.orange{
    background-color: #F90;
}

.dashboard .point.red{
    background-color: #FC121B;
}

.dashboard .tooltip {
    display:inline-block;
    position:relative;
    text-align:left;
  }
  
  .dashboard .tooltip .bottom {
    min-width: 200px;
    position: absolute;
    z-index: 100;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 100%;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: #172735;
    padding: 12px;
    border-radius: 8px;
    top: 1 !important;
  }
  
  .dashboard .tooltip:hover .bottom {
    opacity: 1;
    visibility: visible;
  }
  
  .dashboard .tooltip .bottom i {
    position: absolute;
    bottom: -6px;
    left: 50%;
    margin-left: -6px;
    width: 12px;
    height: 12px;
    background: #172735;
    transform: rotate(45deg);
    border: none;
  }
  
  .dashboard .tooltip .bottom h3 {
      color: #FFFFFF;
      margin: 0 0 8px 0;
      font-size: 16px;
  }
  
  .dashboard .tooltip .bottom p {
      margin: 0;
      color: #DFE5EC;
      font-size: 13px;
  }

  .dashboard .conclusion{
    border: 1px solid #DAE5EF;
    padding: 1rem;
    border-radius: 23.733px;
    color: #4C5A6F;
    line-height: 150%;
  }
  
  .dashboard .conclusion a{
    display: flex;
    justify-content: end;
    background: linear-gradient(95deg, #0A58A5 -27.28%, #F90 145.39%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  #registrationsChartBis,
  #creditsChart,
  #registrationsChart {
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    background: #FFFFFF;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
  }

  .dashboard .head-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .dashboard .head-title button{
    background-color: #0A58A5;
    color: #fff;
    border: none;
    border-radius: 15px;
    height: 50px;
    width: 250px;
  }

  .dashboard .obs{
    border: 1px solid #DADFE5;
    border-radius: 20px;
    margin-top: 2rem;
  }
  
  .dashboard .obs .title{
    background-color: #F4F7F9;
    border-radius: 20px;
    padding: .5rem 1rem;
    color: #0A58A5;
  }
  
  .dashboard .obs-items{
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .dashboard .obs-items .obs-item{
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .dashboard .obs-items .obs-item .pt{
    height: 5px;
    width: 5px;
    border-radius: 100%;
    background-color: #0A58A5;
    align-items: start;
  }

  .dashboard .obsa{
    background-color: #F4F7F9;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: 1rem;
    width: fit-content;
    float: right;
    padding: 1rem;
    border-radius: 20px;
  }
  
  .dashboard a.obs-a{
    font-family: "GilroyBold";
    background: linear-gradient(90deg, #0A58A5 -4.83%, #F90 132.96%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  
  .dashboard-form {
    background-color: #F4F7F9;
    padding: 1rem;
    border-radius: 20px;
    margin-top: 2rem;
    width: 50%;
  }

  .dashboard-form h1{
    color: #0A58A5;
    font-size: 20px;
    margin-bottom: 2rem;
  }

  .dashboard-form form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .dashboard-form form .field{
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }

  .dashboard-form form .field label{
    font-size: 14px;
    font-weight: 600;
    color: #0A58A5;
  }

  .dashboard-form form .field input{
    border: 1px solid #DADFE5;
    padding: .5rem;
    height: 50px;
    border-radius: 10px;
  }

  .dashboard-form form .actions{
    display: flex;
    justify-content: end;
    margin-top: 1rem;
  }

  .dashboard-form form .actions input{
    background-color: #0A58A5;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: .5rem 1rem;
    cursor: pointer;
  }
.chat-content header {
    border-bottom: 1px solid #E3ECF3;
    padding: 0 40px;
    height: 90px;
    background-color: #fff;
  }
  
  .chat-content header .user-infos {
    display: flex;
    align-items: center;
    gap: 29px;
    border: 1px solid #E3ECF3;
    border-radius: 20px;
    height: 60.796px;
    padding: 0 13px;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .chat-content header .user-infos .name {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .chat-content header .user-infos .name img,
  .chat-content header .user-infos .name .initials {
    width: 34.74px;
    height: 34.74px;
    border-radius: 50%;
    border: 1.5px solid #0A58A5;
  }
  
  .chat-content header .user-infos .name .initials {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A58A5;
    font-weight: bold;
    font-size: 12px;
  }
  
  .chat-content header .user-infos .name h6 {
    color: #0A58A5;
    font-size: 16px;
    font-weight: 700;
  }
  
  .header-user-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 2%;
    width: 250px;
    background: #fff;
    border: 1px solid #E3ECF3;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.2s ease-in-out;
  }
  
  .header-user-menu.show {
    display: flex;
  }
  
  .header-user-menu .credit,
  .header-user-menu .myprofile,
  .header-user-menu #deconnexion_button {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-size: 16px;
    color: #0A58A5;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  
  .header-user-menu .credit {
    justify-content: space-between;
  }
  
  .header-user-menu .myprofile,
  .header-user-menu #deconnexion_button {
    gap: 20px;
  }
  
  .header-user-menu .myprofile:hover,
  .header-user-menu #deconnexion_button:hover,
  .header-user-menu .credit:hover {
    background-color: #e3ecf396;
    border-radius: 10px;
  }
  
  .header-user-menu .montants,
  .credit .montants {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .user-montant {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .user-montant span:first-child {
    font-size: 12px;
    color: #0A58A5;
  }
  
  .credit .montants span:last-child {
    color: #59B224;
  }
  
  .username span.balance {
    color: var(--Bleu, #0A58A5);
    font-size: 16px;
    font-weight: 400;
  }
  
  .header-user-menu #deconnexion_button {
    background-color: transparent;
    border: none;
    width: 100%;
  }
  
  a.plus img {
    width: 20px;
    height: 20px;
  }

  .chat-content header .username {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .chat-content header .username span.balance{
    color: var(--Bleu, #0A58A5);
    font-size: 16px;
    font-weight: 400;
  }

  .solde-user {
    color: #0A58A5;
    font-size: 12px;
}

.solde-user span {
    color: #59B224;
}


/** sidebar */

.sidebar{
    position: fixed;
    width: 370px;
    left: 0;
    top: 0;
    bottom: 0;
    border-right: 2px solid #E3ECF3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 8rem 0 15px 0;
    padding:0 2rem;
}

.historique{
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E3ECF3;
    height: fit-content;
    width: 100%;
    font-size: 16px;
    color: var(--main-blue);
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 2s ease-in-out;
}

.historique .head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem;
}

.historique .head .hist{
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar .historique .hist span {
    color: #0A58A5;
}

.history-content{
  display: none;
}

.history-content.show {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #E3ECF3;
    height: 200px;
    overflow: scroll;
    padding: 1.2rem 1rem;
}

.history-item a {
    font-size: 16px;
    color: #4C5A6F !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
}

.history-item .time {
    text-align: left;
}

.history-item .time span {
    color: #4C5A6F !important;
    font-size: 11px;
}

.history-item.active{
    background: #e3ecf379;  
    border-radius: 20px;
}

.sidebar a{
  display: flex;
  align-items: center;
  background: #F4F7F9;
  border-radius: 20px;
  width: 100%;
  height: 65px;
  justify-content: center;
  gap: 15px;
  font-size: 16px;
  color: #0A58A5;
}

.chat-section{
  width: calc(100% - 370px);
  margin-left: 370px;
  padding: 0 8%;
  display: flex;
  justify-content: center;
  height: calc(100vh - 107px);
  overflow: hidden;
  padding-bottom: 10px;
}

.msger {
    flex-flow: column wrap;
    justify-content: space-between;
    border-radius: 5px;
    height: 100%;
}

.msger-chat {
    flex: 1;
    overflow-y: auto;
    scroll-behavior: smooth;
    height: calc(100% - 60px);
}

.welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
    margin: 1rem auto;
}

.msg {
    display: flex;
    margin: 4rem 0;
    align-items: center;
    gap: 20px;
}

.msg img{
  width: 40px;
  height: 40px;
}

.msg.left-msg {
    align-items: start !important;
}

.msg-bubble {
    width: fit-content;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #DAE5EF;
}

.right-msg .msg-bubble {
    border-bottom-right-radius: 0;
    background-color: #F4F7F9;
    border: none;
    border-radius: 15px 0 15px 15px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 80%;
}

.right-msg .msg-bubble {
    padding: 15px;
}

.left-msg .msg-bubble {
    border-bottom-left-radius: 0;
}

.left-msg .msg-bubble {
    border: none;
}

.msg-text {
    line-height: 26px;
    color: #4C5A6E;
}

span.bienvenue {
    font-size: 34px;
    background: linear-gradient(90deg, #0A58A5 -9.21%, #16202C 123.02%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    line-height: 24px;
}

span.emoji {
    font-size: 34px;
    line-height: 24px;
}

.paragraph {
    margin-top: 10px;
}

.msg.right-msg {
    align-items: start !important;
    flex-direction: row-reverse;
}

.right-msg .msg-img {
    margin: 0 0 0 10px;
}

.module-border-wrap {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0A58A5;
}

.module-border-wrap .name {
    color: #0A58A5;
    font-size: 12px;
    font-style: normal;
    cursor: pointer;
}

.flexi {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.selection {
    display: flex;
    align-items: center !important;
    width: 100%;
    color: #4C5A6F;
}

.msg-selected {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 50%;
    padding: 20px 40px !important;
}

.selection .msg-bubble {
    width: 50%;
    margin: 0 1rem;
    background: #FFFFFF !important;
    border: 1px #E3ECF3 solid !important;
    color: #4C5A6F;
    border-radius: 20px !important;
}

.msg-selected img {
    width: 60px;
}

.points.hide, .active_promt.hide {
    display: none;
}

.points   .loader {
  width: 30px;
  height: 30px;
  background: grey;
  display: inline-block;
  border-radius: 50%;
  box-sizing: border-box;
  animation: animloader .5s ease-in infinite;
  border-bottom-color: #fff
}

.edit {
    opacity: 0;
    align-items: center;
    justify-content: center;
    margin-right: 21px;
    cursor: pointer;
}

.msg:hover .edit {
    opacity: 1;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
} 

.msger-inputarea {
    display: flex;
    margin-bottom: 20px;
    background: #F4F7F9;
    border: 1px solid #DDE6EE;
    border-radius: 25px;
    align-items: center;
}

.msger-input {
    flex: 1;
    border: none;
    background-color: transparent;
    height: 60px;
    padding: 1rem;
    font-size: 16px;
    color: #4C5A6E;
}

.msger-send-btn {
    color: #fff;
    cursor: pointer;
    border-radius: 25px;
    height: 60px;
    width: 68px;
    padding: 0;
    background-color: #0A58A5;
    border: none;
    margin: 3px;
}

.msg-bubble.active {
    background-color: #0A58A5 !important;
    color: #fff !important;
}

.projects, .selections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 17px;
    margin-top: 1rem;
    margin-bottom: 3rem;
    width: 100%;
}

.projects .project, .selections .selectione {
    border-radius: 25px;
    border: 1.5px solid #DAE5EF;
    padding: 25px 17px 10px 25px;
    height: 265px;
    transition: all .2s ease-in-out;
    cursor: pointer;
    position: relative;
}

.projects label.selected, .selections label.selected {
    border: 1.5px solid #DAE5EF;
    background: rgba(10, 88, 165, 0.05);
}

.projects .project .choice, .selections .selectione .choice {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 190px;
    overflow-y: scroll;
}

.projects .project .choice, .selections .selectione .choice {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.projects .project .choice, .selections .selectione .choice {
    height: 190px;
    overflow-y: scroll;
}

.projects .project .choice .name, .selections .selectione .choice .name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project .name:first-child, .selectione .name:first-child {
    height: 34px;
}

.choice .name h4 {
    color: #0A58A5;
    font-weight: normal;
    font-weight: 400;
}

.choice .name h4 span {
    color: #4C5A6E !important;
    line-height: 26px;
}

.select{
  display: none;
}

.projects label.selected, .selections label.selected {
    border: 1.5px solid #DAE5EF;
    background: rgba(10, 88, 165, 0.05);
}

.project.emma {
    border: 1.5px solid #DAE5EF;
    background: rgba(10, 88, 165, 0.05);
}

.emma .select {
    display: flex;
    align-items: center;
    justify-content: end !important;
    height: fit-content;
}

.select{
  justify-content: end !important;
}

.projects input[type="radio"] {
    display: none;
}

.inspired {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
    color: #686868;
    text-align: center;
    font-size: 16px;
    height: 190px;
    overflow-y: scroll;
}

.editProject {
    position: absolute;
    /* position: relative; */
    top: 5px;
    right: 5px;
    display: none;
    transition: all .2s ease-in;
}

label:hover .editProject {
    display: block;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.history-item a{
  align-items: start;
  gap: 1px;
  background-color: transparent;
}

.selection div{
  cursor: pointer;
}

.modal-content form .form-group textarea{
  color: #4C5A6E; 
  cursor: pointer;
}

.quotes {
  display: flex;
  align-items: center;
  gap: 23px;
  max-width: 100%;  /* Pour éviter que ça prenne toute la largeur */
}

.quote {
  text-align: center;
}

.quote h1 {
  color: #4C5A6F;
  font-size: 32px;
  font-weight: 400;
  line-height: 30px;
}

.quote p {
  margin-top: 40px;
  color: #4C5A6F;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.zenadia{
    margin: 68px auto;
    display: flex;
    justify-content: center;
}

.flexed{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.partager {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-family: "GilroyMedium";
    color: #4c5a6f88;
    border: 1.5px solid #DAE5EF;
    border-radius: 20px;
    height: 63px;
    width: 63px;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
}

.credit-content{
  width: 100%;
}

.credit-right{
  display: flex;
  margin-top: 4rem;
  width: 100%;
}

.right.extendo{
    width: 100%;
}

.credit-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 200px;
}

.solde {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #F4F7F9;
    border-radius: 20px;
    width: fit-content;
    padding: 10px 20px;
    padding-right: 50px;
}

.charger {
    padding: 10px !important;
    padding-left: 45px !important;
    gap: 80px;
    color: #0A58A5;
    font-size: 18px;
}

.credit-head h1 {
    background: radial-gradient(156.31% 19851.18% at -20.48% 50%, #0A58A5 0%, #FF9900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 36px;
    text-align: center;
}

.solde-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F4F7F9;
    border-radius: 20px;
    margin: 70px auto;
    width: 100%;
    height: 60px;
}

.solde-menu .menu-item {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A58A5;
    font-size: 18px;
}

.solde-menu .menu-item.active {
    background-color: #0A58A5;
    color: #fff;
    border-radius: 20px;
}

.historiques h2 {
    color: #7C7C7C;
    font-size: 18px;
}

.hist-items {
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin: 50px 0;
}


.hist-items .item {
    background: #F4F7F9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 18px;
    justify-content: space-between;
  }
  
  .hist-items .item .item-left {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  
  .hist-items .item .item-left h4 {
    color: #0A58A5;
    font-size: 18px;
  }
  
  .hist-items .item .item-left p {
    color: #7C7C7C;
    font-size: 16px;
  }

.recharge-compte h1 {
    margin-top: 4rem;
    margin-bottom: 73px;
    text-align: center;
    color: #4C5A6F;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 2rem;
}

.setting.nas{
  margin: 0 auto;
  justify-content: center;
}

.setting.nas .price-options{
  top: 29%;
  padding: 20px 10px;
  flex-direction: column;
  gap: .4rem;
}

.setting.nas .price-options li{
  font-size: 16px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
}

.setting.nas .price-options li:hover{
  background-color: #DAE5EF;
  color: #0A58A5;
}

.recharge-layout {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    height: auto;
    min-height: fit-content;
    overflow-y: visible;
}

.recharge-left {
    flex: 3;
    width: 60%;
    display: flex;
    flex-direction: column;
}

.packs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1.5px solid #DAE5EF;
    padding-bottom: 17px;
    margin-bottom: 17px;
    width: 100%;
}

.packs .packis {
    position: relative;
    cursor: pointer;
    width: 100% !important;
}

.packs label {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex
;
    justify-content: space-between;
    border: 1.5px solid #DAE5EF;
    border-radius: var(--arrondi, 20px);
    cursor: pointer;
}

.container:has(input[type="radio"]:checked) {
    border-radius: var(--arrondi, 20px);
    border: 1.5px solid #0A58A5;
    background: rgba(10, 88, 165, 0.10);
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.packis input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 22px;
    left: 18px;
    height: 20px;
    width: 20px;
    border-radius: 6px;
    border: 1.5px solid #DAE5EF;
    background-color: #fff;
}

.packis input[type="radio"]:checked + .checkmark {
    background: #0A58A5;
}

input:checked ~ p {
    color: #0A58A5;
    font-size: 16px;
    font-weight: 700;
}

.packs label p {
    margin-left: 2.5rem;
}

.packis h6 {
    color: #0A58A5;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.packs input:checked + .checkmark:after {
  display: block;
}

.packs .checkmark:after {
    left: 6px;
    top: 2px;
    width: 2px;
    height: 7px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.packs input:checked + .checkmark:after {
    display: block;
}

.mtotal {
    border-radius: var(--arrondi, 20px);
    border: 1.5px solid #DAE5EF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 26px;
}

img.pay {
    width: 100%;
    margin-top: 25px;
}

.mtotal p {
    color: #4C5A6F;
    font-size: 14px;
    font-weight: 700;
}

.mtotal h6 {
    color: #0A58A5;
    font-size: 16px;
    font-weight: 700;
}

#buy-button-1 {
    border-radius: 20px;
    border: 1.5px solid #0A58A5;
    background: #0A58A5;
    color: #fff;
    width: 100%;
    height: 50px;
    padding: 8px;
    margin: 1rem auto;
    cursor: pointer;
}


.recharge-right {
    flex: 2;
    width: 40%;
    display: flex;
    flex-direction: column;
}

.pack-details {
    flex: 1;
    border: 1.5px solid #DAE5EF;
    border-radius: 20px;
    padding: 37px 26px;
    display: flex;
    flex-direction: column;
    width: 300px;
}

.pack-details h3 {
    text-align: center;
    color: #4C5A6F;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 22px;
}

.pack-details .pack-price {
    text-align: center;
    margin-bottom: 49px;
    color: #0A58A5;
    font-size: 32px;
    font-weight: 700;
    line-height: 22px;
}

.pack-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature span {
    color: #4C5A6F;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.hidden{
  display: none;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.user-details .avatar {
    display: flex
;
    flex-direction: column;
    align-items: center;
}

.right .avatar .module-border-wrap {
    width: 150px;
    height: 150px;
}

.right .module-border-wrap .name {
    color: #0A58A5;
    font-size: 34px;
    font-style: normal;
    cursor: pointer;
    font-weight: bold;
}

.user-details .avatar h2 {
    margin-top: 22px;
    color: #4C5A6F !important;
    font-size: 24px;
    border-radius: 30px;
    background: #F4F7F9;
    padding: 13px 21px;
    font-size: 14px !important;
}

.setting {
    margin-top: 27px;
    display: flex
;
    gap: 21px;
}

.setting .devise {
    display: flex
;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    background: #F4F7F9;
    color: #4C5A6F;
    padding: 13px 30px;
    width: 240px;
    font-size: 12px;
    height: 60px;
}

.devise h4 {
    color: #4C5A6F;
    font-size: 12px;
}

.devise .ligne {
    width: 2px;
    height: 36px;
    background-color: #fff;
}

.devise input {
    width: 100px;
    text-align: center;
    background-color: transparent;
    border: none;
    font-size: 16px;
    color: #4C5A6F;
    cursor: pointer;
}

.price-options{
      display: none;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
    padding: 34px 50px;
    margin-top: 10px;
    list-style: none;
    flex-direction: column;
    gap: 40px;
    width: 200px;
    position: absolute;
    top: 37%;
    z-index: 999;
}

.price-options li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.lang {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #0A58A5;
    cursor: pointer;
}

.user-details .infos {
    background: #F4F7F9;
    border: 1px solid #DDE6EE;
    border-radius: 25px;
    padding: 30px 50px;
    margin-top: 65px;
    width: 100%;
}

.user-details .infos h4 {
    color: #0A58A5;
    font-size: 24px;
    margin-bottom: 49px;
    text-align: center;
}

.infos-item {
    width: 100%;
    margin-top: 15px;
}

.infos-item .name {
    color: #0A58A5;
    font-size: 12px;
    margin-left: 20px;
    margin-bottom: 5px;
}

.input input {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #D8E8F8;
    border-radius: 20px;
    padding: 14px 20px;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    color: #16202C;
    font-size: 16px;
}

.infos-button {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infos-button input {
    background-color: #0A58A5;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

.langue .dropdown-body-inner{
  top: 4px;
  right: -3px;
}

#user-content img{
  width: 150px;
  height: 150px;
  border-radius: 100%;
  object-fit: cover;
  object-position: top;
}

.freq{
  display: flex;
  align-items: center;
  gap: 20px;
}

.disabled-modal {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.fiches-hist h2 {
    color: #7C7C7C;
    font-size: 22px;
    text-align: center;
  }
  
  .fiches-hist h2 span {
    color: #0A58A5;
  }
  
  .fiches-items {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 50px 0;
  }
  
  .item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }
  
  .fiche-item {
    background: #F4F7F9;
    border-radius: 20px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
  }
  
  .fiche-item h4 {
    font-size: 18px;
    color: #0A58A5;
  }
  
  .fiche-left span {
    color: #7C7C7C;
    margin-top: 1rem;
  }

  .middle {
    color: #FF9900;
    font-size: 22px;
  }
  
  .fiche-right a {
    font-size: 18px;
  }
  
  .view {
    width: 15%;
  }
  
  .view a {
    font-size: 16px;
    color: #0A58A5;
  }

  .chat-section .right{
    overflow: scroll;
  }

  @media (max-width: 700px){
    .sidebar{
      display: none;
    }

    .chat-section{
      width: 100%;
      margin: 0;
      padding: 20px;
      padding-top: 0;
      padding-bottom: 5px;
    }

    .msger-chat{
      height: calc(100vh - 180px) !important;
    }

    .chat-content{
      height: 100vh;
    }

    .msger-inputarea{
      height: 70px;
      margin-bottom: 0 !important;
    }

    .mobile-nav{
      height: 80px;
    }

    .chat-content header{
      display: flex;
      padding: 0 20px;
    }

    .header-drop{
      display: flex;
    }

    .user-infos {
    display: flex
;
    align-items: center;
    gap: 29px;
    border: 1px solid #E3ECF3;
    border-radius: 20px;
    height: 60.796px;
    padding: 0 13px;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s 
ease;
width: 100%;
justify-content: space-between;
}

.user-infos .name {
    display: flex
;
    align-items: center;
    gap: 14px;
}

.user-infos .name .initials {
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #0A58A5;
    font-weight: bold;
    font-size: 12px;
}

.username {
    text-align: left;
    display: flex
;
    flex-direction: column;
    justify-content: center;
}

.user-infos .name h6 {
    color: #0A58A5;
    font-size: 16px;
    font-weight: 700;
}

.header-user-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 42%;
    right: 2%;
    width: 93%;
    background: #fff;
    border: 1px solid #E3ECF3;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.2s 
ease-in-out;
}

.user-infos .name .initials {
    width: 34.74px;
    height: 34.74px;
    border-radius: 50%;
    border: 1.5px solid #0A58A5;
}



    .selection{
      flex-direction: column;
      gap: 20px;
    }

    span.bienvenue{
      font-size: 24px;
    }

    .selection .msg-bubble{
      width: 100%;
      margin: 0;
      max-width: 100%;
    }

    .msg{
      margin: 2rem 0;
    }

    .right-msg .msg-bubble{
      max-width: 100%;
    }

    .projects, .selections{
      display: flex;
      flex-direction: column;
    }

    .chat-content header{
      display: none;
    }

    .logo img{
      width: 100% !important;
    }

    .new a {
      display: flex;
      align-items: center;
      background: #F4F7F9;
      border-radius: 20px;
      width: 100%;
      height: 65px;
      justify-content: center;
      gap: 15px;
      font-size: 16px;
      color: #0A58A5;
  }
  }
  


  
.fiche-navigation .nav-items {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.fiche-navigation a{
    display: flex;
    align-items: center;
    gap: .5rem;
    background-color: #F4F7F9;
    height: 54px;
    border-radius: 15px;
    padding: 0 1rem;
    font-size: 14px;
    color: #4C5A6F;
    justify-content: start;
}

.nav-items a img {
    width: 26.001px;
    height: 29.332px;
}

.fiche-navigation .nav-items a.active {
    background-color: #0A58A5;
    color: #fff;
}

.first-first  .segment-last{
    width: 100%;
    background: #F3F3F3 !important; 
    color: #d1d1d1 !important;
  }

.fiche {
    width: calc(100% - 370px);
    margin-left: 370px;
    padding: 0 3%;
    padding-top: 30px;
    /* padding-right: 5%; */
    height: 89vh;
    overflow-y: scroll;
}

.content-header h1 {
    font-size: 38px;
    text-align: center;
    width: fit-content;
    background: linear-gradient(90deg, #0A58A5 -9.21%, #16202C 123.02%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
    font-weight: 600;
}

.infos {
    margin-top: 3rem;
}

.check {
    border: 1.5px solid #E3ECF3;
    border-radius: 25px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.fiche-overview {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fiche-overview h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #F4F7F9;
    border-radius: 15px;
    padding: 1rem;
    color: #0A58A5;
    font-size: 16px;
    font-weight: 500;
    height: 54px;
}

.section-content {
    margin-top: 2rem;
}

.section-content h4 {
    color: #0A58A5;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.first-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 24px;
}

.section-content p.text {
    color: #4C5A6F;
    line-height: 26px;
}

.fiche-section:hover .edit-button {
    display: block;
}

.edit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    background-color: transparent;
    border-radius: 12px;
    width: fit-content;
    border: none;
    cursor: pointer;
    display: none;
    transition: all .2s ease-in-out;
    margin-left: 2rem;
}

.edit-button img {
    width: 30px;
}

.topay {
    padding: 1.5rem;
    border: 1.5px solid #E3ECF3;
    border-radius: 20px;
    margin-top: 2rem;
}

.topay .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topay .head h6 {
    font-size: 18px;
    color: #4C5A6F;
}

.topay .body {
    margin: 1rem 0;
}

.topay .body p {
    width: 70%;
    font-size: 14px;
    color: #4C5A6F;
}

.topay .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.topay .bottom .buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phase-mod{
    width: 100%;
}

.topay  .btn-charger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    border-radius: 15px;
    gap: 1rem;
    cursor: pointer;
    font-size: 16px;
}

.btn-charger.button{
    background-color: #0A58A5;
    color: #fff;
    border: none;
}

.topay .see-more {
    border: 1.5px solid #DAE5EF;
    color: #4C5A6F;
}

.oups {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 1rem;
    padding-top: 6rem;
}

.amor-desc {
    text-align: center;
    margin: 2rem 0;
    color: #4C5A6F;
}

.modal-ins .liens{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:  1rem;
}

.modal-ins .liens a {
    background-color: #0A58A5;
    color: #fff;
}

.modal-ins .liens a {
    height: 50px;
    width: 296px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.modal-ins .liens a:first-child{
    background-color: #0A58A5;
    color: #fff;
}

.modal-ins .liens a:last-child{
    background-color: #F4F7F9;
    color: #16202C;
}

.details-item {
    padding-top: 6rem;
}

.details-item .line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
}

.msger-send-btn{
    text-align:center;
}

.line .text {
    margin-top: 2rem;
}

.line .text h6 {
    color: #0A58A5;
    font-size: 16px;
    margin-bottom: 1rem;
}

button.closeButton {
    width: 390px;
    height: 55px;
    border-radius: 20px;
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0A58A5;
    color: #fff;
    border: none;
    font-size: 16px;
    margin-bottom: .5rem;
}

.generer-suite{
    border-radius: 15px;
    color: #fff;
    margin-top: 2rem;
}

.generer-suite .segment-last{
    width: 100%;
    background-color: #0A58A5;
    color: #fff;
    height: 54px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.uncharging-section{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}

.uncharging-section span.error{
    color: red;
}

.uncharging-section button{
    background-color: #0A58A5;
    color: #fff;
    border: none;
    height: 55px;
    width: 350px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.fiche-loader{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.fiche-loader .text{
    color: #0A58A5;
}

.fiche-loader  .loader {
    width: 48px;
    height: 48px;
    border: 5px solid #0A58A5;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.debloquer{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    border-radius: 15px;
    gap: 1rem;
    cursor: pointer;
    font-size: 16px;
    background-color: #DAE5EF;
    color: #4C5A6F;
    border: 1.5px solid #DAE5EF;
    text-align: center;
}

.topay .bottom .buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.segments-t{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 17px;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.segments-t label {
    border-radius: 25px;
    border: 1.5px solid #DAE5EF;
    padding: 25px 17px 10px 25px;
    height: 265px;
    transition: all .2s ease-in-out;
    cursor: pointer;
    overflow-y: hidden;
}

.segments-t label .choice {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 190px;
    overflow-y: scroll;
}

.choice .name h4 {
    color: #0A58A5;
    font-weight: normal;
    font-weight: 500;
}

.choice p {
    color: #4C5A6E !important;
    line-height: 26px;
}

.choice::-webkit-scrollbar {
    width: 2px;
}

.choice::-webkit-scrollbar-track {
    background: #F4F7F9;
}

.choice::-webkit-scrollbar-thumb {
    background: #DAE5EF;
}

.segments-t label{
    position: relative;
}

.segments-t label input{
    display: none;
}

.segments-t label button {
    background-color: transparent;
    border: none;
    display: none;
    float: right;
    position: absolute;
    right: 20px !important;
    top: 15px;
    width: 35px;
    height: 35px;
    left: 89%;
}

.segments-t label:hover button{
    display: block;
}

.segments-t label button img{
    width: 100%;
    height: 100%;
}

.segments-t label.emma, .segments-t  label:hover{
    border: 1.5px solid #DAE5EF;
    background: rgba(10, 88, 165, 0.05);
}

.segments-t label .select img{
    width: 35px;
    height: 35px;
}

.bottom-label{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.generer-suite .segment-last{
    width: 100%;
    background-color: #0A58A5;
    color: #fff;
    height: 54px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

button.btn-charger{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    border-radius: 15px;
    gap: 1rem;
    cursor: pointer;
    font-size: 16px;
}

.topay .regenerateBlock, .topay .bottom .buttons button{
    background-color: #0A58A5;
    color: #fff;
    border: none;
    width: 100%;
}

.phase-mod .modal-dialog{
    max-height: 600px;
    overflow: scroll;
}

.popup-container {
    display: none;
  }
  
.popup-container.fadeIn {
    display: block;
}

.analyse-table{
    width: 100%;
}

td.title{
    color: #0A58A5;
    font-size: 16px;
    letter-spacing: -0.32px;
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem ;
}

td, th {
    border: 1px solid #DAE5EF;
    color: #4C5A6E;
    line-height: 22px;
    margin-top: 19px;
    text-align: center !important;
}

th{
    background-color: #EFF3F8;
}

td, th{
    padding: 10px;
    text-align: left;
}

td {
    border-style: none solid solid none;
    border-top: none !important;
}

td.moiss ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

td.moiss ul li{
    margin-top: 0;
}

.analyse-table{
    display: flex;
    justify-content: center;
}

.analyse-table.table4 table{
    width: 100% !important;
    border-bottom: 1px solid #DAE5EF;
    border-radius: 20px;
}

table.project tr:first-child td{
    text-align: left !important;
}

td.title{
    color: #0A58A5;
    font-size: 16px;
    letter-spacing: -0.32px;
}


.analyse-table table.resource tr td:first-child{
}

table.cout tr td.title{
}
.analyse-table table.cout tr td{
    text-align: center !important
}

.analyse-table table tr:first-child td:first-child { 
    border-top-left-radius: 20px; 
    padding: 26px 40px !important;
}

.analyse-table table tr:first-child td:first-child{
    
}

.analyse-table table tr td{
    text-align: left !important;
}

.analyse-table table.cout tr td:first-child {
}

.analyse-table table.resource tr td:first-child {
}

.analyse-table table tr:first-child td:last-child { 
    border-top-right-radius: 20px; 
}

.analyse-table table tr:last-child td:first-child { 
    border-bottom-left-radius: 20px; 
}

.analyse-table table tr:last-child td:last-child { 
    border-bottom-right-radius: 20px; 
}

.analyse-table table tr:first-child td { 
    border-top-style: solid #DAE5EF !important; 
}

.analyse-table table tr td:first-child { 
    border-left-style: solid; 
    border-right: 1px solid #DAE5EF;
}

.analyse-table.table4 tr:first-child td{
    color: #0A58A5;
    font-size: 16px;
}

.analyse-table.table4 tr:first-child td{
    text-align: center;
    padding: 20px !important;
}

.analyse-table table tr:first-child td{
    border-top:1px  solid #DAE5EF !important;
}

.analyse-table.table4 td{
    padding: 26px 35px !important;
    border-right: 1px solid #DAE5EF !important;
    font-size: 16px;
}

.analyse-table table { 
    border-collapse: separate; border-spacing: 0; 
}

.analyse-table table{
    width: 677px;
}

table.finance tr td:first-child {
    color: #0A58A5;
    font-size: 16px;
}

table.finance tr:first-child td {
    color: #4C5A6F !important;
    font-size: 16px;
}

table.synthese tr td:first-child {
    color: #4C5A6F !important;
    font-size: 16px;
    text-align: left !important;
}

.analyse-table.table4 td:last-child{
    border-right: 1px solid #DAE5EF;
}

.analyse-table.table4 table.synthese {
    width: 690px !important;
}

table.synthese tr td{
    text-align: center !important;
}

tr{
    position: relative;
}

tr:hover .modifier-button{
    display: flex;
}

.modifier-button{
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    background-color: #0A58A5;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.edit-table{
    top: 5px !important;
    left: 5px !important;
    background-color: transparent !important;
    border: none !important;
}

.edit-hypo, .edit-status{
    border: none;
    background-color: transparent;
    cursor: pointer;
}


.modifier-button img{
    width: 100%;
    height: 100%;
}

.apt{
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
    margin-top: 3rem;
}

.extras{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.control{
    display: flex;
    gap: 22px;
}


.avis{
    font-size: 18px;
    display: flex;
    gap: 30px;
    align-items: center;
    background: linear-gradient(269.85deg, #FF9900 -45.78%, #0A58A5 138.2%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.like-container{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center 
}

.comment-container{
    background-color: #F3F3F3;
    width:50px;
    height:50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fiche-comment{
    display:flex;flex-direction:column; align-items:flex-end; height:400px; overflow:scroll
}

.fiche-comment-tes{
    display: flex; gap: 10px; margin-bottom: 20px
}

.regenere.inf{
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #DAE5EF;
    border-radius: 15px;
    padding: 15px;
    color: #4C5A6F;
    cursor: pointer;
}

.uncharging-section button{
    font-size: 16px;
}

.block-container{
    margin: 2rem 0;
    background-color: #F4F7F9;
    border-radius: 25px;
    padding: 1rem;
    padding-bottom: 0 .2rem;
}

.container-fluid{
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 0;
}

.block-container .bmc-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.block-container .bmc-title h4{
    color: #0A58A5;
}


.side-menu{
    background-color: #fff;
    border-radius: 15px;
    padding: 1rem 2rem;
    color: #4C5A6F;
    font-size: 14px;
}

.section-container{
    display: flex;
    align-items: start;
    width: 100%;
    gap: .5rem;
}

.section-container section{
    border: 1.5px solid  #DAE5EF;
    border-radius: 20px;
    background-color: #fff;
    padding: 1rem .5rem;
    width: 33%;
    overflow-y: scroll;
}

section.column{
    height: 400px;
}

.column2{
    width: 33%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
} 

.column2 section{
    width: 100%;
    height:196px;
}

.column h4, .column2 h4, .row-two section h4{
    color: #4C5A6E;
    font-size: 12px !important;
    font-weight: 400;
    text-align: center;
    margin-top: 0;
}

.row-two {
    width: 100%;
}

.row-two section{
    width: 50%;
    height: 400PX;
}

.cp{
    text-align: center;
    color: #4C5A6F;
    font-size: 12px;
    margin-top: 1rem;
}

h4 .title-container{
    display:flex; 
    align-items:center; 
    width: 100%; 
    height: 35px;
    gap: 1rem;
}


h4 .title-container button{
    position: relative;
}


.column .green{
    background: rgba(89, 178, 36, 0.10);
    color: #4C5A6F;
}

.column .blue{
    background: rgba(10, 88, 165, 0.10);
}

.column .orange{
    background: rgba(255, 153, 0, 0.10);
}

.column .red{
    background: rgba(252, 18, 27, 0.10);
}

.column, .column2 section, .column3{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.column p{
    padding: 10px;
    font-size: 11px;
    color: #4C5A6F;
    border-radius: 10px;
    position: relative;
    padding-bottom: 20px;
}

.column p:hover .edit-bmc{
    display: block;
}

.edit-bmc{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: none;
    background-color: transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    display: none;
    cursor: pointer;
}


.radio-btn-wrapper {
    border-radius: 6px;
    padding: 8px 5px;
    border: 1px solid #DADADA;
    display: flex;
    grid-gap: 5px;
    align-items: center;
}

.form-control_radio {
    position: relative;
    -webkit-appearance: none;
    height: 40px !important;
    width: 40px !important;
    background-color: #FBDFE1;
    border-radius: 50% !important;
    cursor: pointer;
    margin-right: 3px;
    display: block !important;
}

.form-control_radio::before {
    content: "";
    position: absolute;
    background-image: url(/images/checke.svg);
    background-repeat: no-repeat;
    top: 57%;
    left: 57%;
    transform: translate(-50%, -50%) scale(.7);
    height: 30px;
    width: 30px;
    display: none;
}

.form-control_radio:checked::before {
    display: block;
}

.edit-bloc{
    position: relative;
}


.generation{
    position: absolute;
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #DAE5EF;
    border-radius: 15px;
    list-style-type: none;
    color: #4C5A6F;
    margin-top: .5rem;
}

.generation li:first-child{
    margin-top: 0;
}

.generation li a{
    color: #4C5A6F;
}

.generation li{
    margin-top: 1rem;
}

ul.numbered{
    list-style-type: decimal;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #4C5A6F;
    line-height: 24px;
    margin-left: 1.5rem;
}

.numbered li{
    position: relative;
    margin-right: 1rem;
}


.edit-fiche-goal{
    border: none;
    background-color: transparent;
    display: none;
    position: absolute;
    right: -35px;
    top: 0;
}

.numbered li:hover .edit-fiche-goal{
    display: block;
}

ul.numbered li span{
    font-weight: bold;
}

.container{
    overflow-x: scroll;
}


.chart {
    display: grid;
    position: relative;
    overflow: hidden;  
    border-radius: 20px;
    border: 1.5px solid #DAE5EF;
    border-bottom: 0 !important;
    margin-top: 2rem;
    width: 2000px;
}

.chart-row {
    display: grid;      
}

.chart-period {
    color: #0A58A5;
    font-size: 14px;
    border-bottom: 1.5px solid #DAE5EF;
}

.chart-row-item {
    border-bottom: 1.5px solid#DAE5EF !important;
    border-right: 1.5px solid#DAE5EF !important;
    border-top: 0;
    border-left: 0;      
    padding: 21px 40px;
    font-size: 15px;
    text-align: center;
}

.chart-period > span {    
    text-align: center;
    font-size: 13px;
    align-self: center;
    padding: 15px 0;    
}

.chart-lines {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: transparent;
}

.chart-lines > span {
    display: block;
}

.chart-row-item h5{
    background: linear-gradient(99deg, #0A58A5 0%, #F90 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    text-align: left;
    font-weight: normal;
}

.chart-row-item p{
    color: #4C5A6F;
    font-size: 16px;
    text-align: left;
    margin-top: 5px;
    font-weight: normal;
}

.chart-row-bars {
    list-style: none;
    display: grid;
    padding: 15px 0;
    margin: 0;
    grid-gap: 10px 0;
    border-bottom: 1.5px solid  #DAE5EF;
}

.chart li {
    font-weight: 450;
        text-align: center;
        font-size: 12px;
        background-color: #708090;
        padding: 5px 20px;
        color: #4C5A6F;
        position: relative;
        cursor: pointer;
        border-radius: 5px;
      border: 1.5px solid rgba(10, 88, 165, 0.20);
      background: rgba(10, 88, 165, 0.05);
        margin-top: 0 !important;
        margin: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
}

.tooltip {
    display:inline-block;
    position:relative;
    border-bottom:1px dotted #666;
    text-align:left;
}

.tooltip h3 {margin:12px 0;}

.tooltip .bottom {
    min-width:200px;
    /*max-width:400px;*/
    top: 50px;
    left:50%;
    transform:translate(-50%, 0);
    padding:20px;
    color:#666666;
    background-color:#EEEEEE;
    font-weight:normal;
    font-size:13px;
    border-radius:8px;
    position:absolute;
    z-index:99999999;
    box-sizing:border-box;
    box-shadow:0 1px 8px rgba(0,0,0,0.5);
    display:none;
}

.tooltip:hover .bottom {
    display:block;
}

.tooltip .bottom img {
    width:400px;
}

.tooltip .bottom i {
    position:absolute;
    bottom:100%;
    left:50%;
    margin-left:-12px;
    width:24px;
    height:12px;
    overflow:hidden;
}

.tooltip .bottom i::after {
    content:'';
    position:absolute;
    width:12px;
    height:12px;
    left:50%;
    transform:translate(-50%,50%) rotate(45deg);
    background-color:#EEEEEE;
    box-shadow:0 1px 8px rgba(0, 0, 0, 0.219);
}

.chart-li-one:hover .edit-tasks{
    display: flex;
}

.edit-tasks{
    display: none;
    border: none;
    background-color: transparent;
}

.chart-li-one:hover .edit-tasks{
    display: flex;
}

.edit-tasks{
    display: none;
    border: none;
    background-color: transparent;
}

ol.numbered{
    margin: 1rem 0;
    list-style-type: decimal;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 1rem;
    color: #4C5A6F;;
}


.segments{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.segments .segment{
    border-radius: 25px;
    border: 1.5px solid #DAE5EF;
    padding: 25px 32px;
    display: flex;
    gap: 35px;
}

.segment-client .segment {
    border-radius: 25px;
    border: 1.5px solid #DAE5EF;
    padding: 25px 32px;
    display: flex;
    align-items: center;
    gap: 35px;
    position: relative;
}

.edit-analyse{
    border: none;
    background-color: transparent;
    display: none;
    position: absolute;
    top: 0px;
    left: 23rem;
}

.section-content.analyse.strat{
    position: relative;
}

.section-content.analyse.strat:hover .edit-analyse{
    display: flex;
}

.segment.parcous, .segment.produit{
    margin-top: 20px;
}

.segment-client .segment .first{
    width: 20%;
}

.segment .first .title{
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 18px;
    background: linear-gradient(269.85deg, #FF9900 -45.78%, #0A58A5 138.2%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.segment .first p{
    margin-top: 25px;
    color: #0A58A5;
    font-size: 16px;
    line-height: 24px;
}

.segment .first p {
    margin-top: 0 !important; 
    color: #0A58A5;
    font-size: 18px !important;
    line-height: 24px;
}

.segment-client .segment .segment-line {
    width: 2px;
    height: 90px;
    background-color: #DAE5EF;
}

.segment-client .segment .second, .segment .third {
    width: 80%;
    display: flex;
    align-items: center;
}

.segment .second p, .segment .third p{
    color: #4C5A6E;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.32px;
}

.segment-client{
    display: none;
}

.segment-client.active{
    display: flex;
}

.chart-li-one:hover .edit-tasks{
    display: flex;
}

.edit-tasks{
    display: none;
    border: none;
    background-color: transparent;
}

.bmc-section-content:hover .edit-status{
    display: flex;
}

.edit-status{
    background-color: transparent;
    border: none;
    position: absolute;
    top: 5px;
    left: 5px;
    display: none;
}

.tendance  .strategie{
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
    color: #4C5A6F;
}

ul.strategie{
    margin-left: 2rem;
    color: #4C5A6F;
    font-size: 16px;
    line-height: 26px;
}

.text-italic{
    font-style: italic;
}



.segment-t{
    border-radius: 20px;
    border: 1.5px solid #DAE5EF;
    padding: 1rem;
}

.segment-t h6{
    justify-content: space-between;
}

.segment-t h6 span{
    color: #4C5A6F !important;
    font-weight: bold !important;
    font-size: 16px;
}

.segment-t .form p{
    margin-top: 1rem;
}

.segment-t .form p a{
    color: #0A58A5;
}

ul.client-title2{
    width: 2000px;
}

ul.client-title, ul.client-title2, ul.client-title3{
    display: flex;
    list-style: none;
    width: 100%;
    border-radius: 20px;
    background: #F3F7FB;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 5px;
    margin-top: 55px;
    margin-bottom: 25px;
}


ul.client-title li.active, ul.client-title2 li.active, ul.client-title3 li.active{
    border-radius: 15px;
    background: #FFF;
    color: #0A58A5;
}


ul.client-title li, ul.client-title2 li, ul.client-title3 li{
    margin-top: 0 !important;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4C5A6F;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; 
    cursor: pointer;
}

@media (max-width: 700px){
    .fiche{
        width: 100%;
        margin-left: 0;
        height: calc(100vh - 80px);
        padding-top: 0;
        margin-top: 0;
    }

    .segments-t{
        display: flex;
        flex-direction: column;
    }

    .section-content .analyse-table{
        width: 700px;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        max-width: 100vw;
        position: relative;
        margin: 0;
        padding: 0;
        transform: translateZ(0);
    }

    .section-content .analyse-table table{
        width: 677px;
        table-layout: fixed;
    }

    /* Force le scroll sur tous les tableaux en mobile */
    @media (max-width: 700px) {
        table {
            width: 677px !important;
        }
        
        .section-content {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
    }

    .apt{
        display: flex;
        flex-direction: column;
    }

    .analyse-table.table4 td{
        padding: 10px !important;
        font-size: 12px !important; 
    }

    .section-container{
        display: flex;
        flex-direction: column;
    }

    section.column, .column2{
        width: 100%;
    }

    .column, .column2 section, .column3{
        margin: 0;
    }

    .column2 section{
        height: 400px;
        width: 100%;
    }

    .segment-client .segment{
        flex-direction: column;
    }

    .segment-client .segment .first{
        width: 100%;
    }

    .segment-client .segment .segment-line{
        display: none;
    }

    .topay .bottom .buttons{
        flex-direction: column;
    }
}





/* ========== HEADER ========== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 4%;
}
header nav {
  display: flex;
  gap: 58px;
  align-items: center;
}
header nav a {
  font-size: 16px;
  font-weight: 400;
}
header nav a:hover, header nav a.active {
  color: #0A58A5;
  font-weight: 700;
}
header nav a.auth {
  border: 1.5px solid #0A58A5;
  border-radius: 20px;
  padding: 0 30px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #0A58A5;
}

/* ========== SECTIONS GLOBALS ========== */
section {
  max-width: 1250px;
  margin: 0 auto;
}

/* ========== BANNER ========== */
section.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
  position: relative;
}
section.banner h1 {
  text-align: center;
  font-size: 54px;
  line-height: 84px;
  background: linear-gradient(92deg, #0A58A5 29.76%, #172735 112.98%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 80%;
}
section.banner p {
  margin-top: 46px;
  text-align: center;
  font-size: 18px;
  line-height: 34px;
  width: 60%;
}
section.banner a {
  margin-top: 58px;
  background: #0A58A5;
  border-radius: 20px;
  padding: 0 72px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 16px;
}
section.banner img {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* ========== PREVIEW ========== */
section.preview {
  background: #172735;
  border-radius: 30px;
  margin-top: 90px;
  padding: 21px 5%;
  padding-bottom: 60px;
  position: relative;
}
.prev-fusee {
  position: absolute;
  right: 2%;
  bottom: 4%;
  width: 80px;
  height: 133px;
}
section.preview h1 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  line-height: 41px;
  width: 55%;
  margin: 1px auto;
  font-weight: 600;
}
.head .infos{
  margin-top: 0;
}
.preview-content {
  margin-top: 42px;
  padding: 23px 30px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(7.5px);
  border: 1px solid rgba(255,255,255,0.5);
}
.preview-content .prev-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prev-body {
  margin-top: 40px;
  display: flex;
}
.prev-body .left {
  width: 20%;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 20px;
}
.prev-body .empty {
  width: 100%;
  height: 138px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}
.prev-body .right {
  width: 80%;
  padding: 0 10%;
}
.prev-body .right .choices {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 48px;
}
.prev-body .right .choices .choice {
  width: 50%;
}
.prev-body .right .choices .choice span {
  color: rgba(255, 255, 255, 0.50);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
}
.prev-body .right .choices .choice .choice-content {
  border-radius: 20px;
  border: 1px solid #ffffff37;
  background: #0F1922;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 30px;
}
.prev-body .right .choices .choice .choice-content p {
  color: rgba(255, 255, 255, 0.50);
  font-size: 12px;
  font-weight: 400;
}
.right-prev-img {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.prev-footer {
  margin-top: 30px;
  width: 100%;
}
.prev-footer img {
  width: 100%;
}

/* ========== FUNCTIONS ========== */
.functions {
  background: #F2F4F8;
  border-radius: 30px;
  padding: 30px 80px;
  margin: 60px auto;
}
.functions h1 {
  text-align: center;
  background: linear-gradient(90deg, #0A58A5 -8.68%, #172735 111.2%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
}
.functions .cards {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 43px;
}
.functions .card {
  background: #FFF;
  border: 1px solid #DFE5EC;
  border-radius: 20px;
  padding: 23px 33px 52px;
}
.functions .card h2 {
  color: #223245;
  font-size: 16px;
}
.functions .card p {
  margin-top: 42px;
  color: #445972;
  font-size: 12px;
  line-height: 24px;
}

/* ========== VALUE ========== */
.value .container {
  display: flex;
  gap: 53px;
}
.value .left, .value .right {
  width: 50%;
}
.value .left {
  border: 1px solid #DFE5EC;
  border-radius: 30px;
  padding: 42px 50px;
}
.value .left h1 {
  background: linear-gradient(91deg, #0A58A5 -3.02%, #223245 111.45%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
}
.value .points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value .point {
  display: flex;
  align-items: center;
  gap: 14px;
}
.value .point span {
  font-size: 14px;
  color: #445972;
  font-weight: 500;
}
.value .right {
  background: #172735;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== CONTENU ========== */
.contenu {
  background: url(/images/home/contenu.svg) no-repeat center/cover;
  border-radius: 30px;
  padding: 50px 80px;
  margin: 60px auto;
}
.contenu h1 {
  text-align: center;
  color: #FFF;
  font-size: 36px;
}
.contenu .items {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
}
.contenu .item {
  display: flex;
  align-items: center;
  gap: 21px;
  background: rgba(255,255,255,0.06);
  height: 68px;
  padding: 20px 23px;
  border-radius: 14px;
}
.contenu .item span {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
}

/* ========== TESTIMONIES ========== */
.testimonies {
  background: #F2F4F8;
  margin: 60px 0;
  padding: 50px 98px;
  max-width: 100% ;
}
.testimonies h1 {
  text-align: center;
  background: linear-gradient(90deg, #0A58A5 -7.97%, #223245 98.77%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
}
.testimonies .cards {
  margin: 50px auto;
  margin-bottom: 0;
  display: flex;
  gap: 38px;
  max-width: 1250px;
}
.testimonies .card {
  width: 33%;
  background: #FFF;
  border: 1px solid #DFE5EC;
  border-radius: 20px;
  padding: 30px;
  min-height: 230px;
}
.testimonies .head {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonies .infos h2 {
  color: #172735;
  font-size: 16px;
}
.testimonies .infos span, .testimonies .card p {
  color: #445972;
  font-size: 12px;
  line-height: 24px;
}

/* ========== STATS ========== */
.stats {
  background: url(/images/home/stats.svg) no-repeat center/cover;
  border-radius: 30px;
  padding: 37px 66px;
  margin: 60px auto;
  padding-bottom: 57px;
  background-position: center center;
}
.stats h1 {
  text-align: center;
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
}
.stats .cards {
  margin-top: 57px;
  display: flex;
  gap: 28px;
  align-items: center;
}
.stats .card {
  width: 33%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
}
.stats .card h2 {
  background: linear-gradient(97deg, #0A58A5 -5.68%, #FFF 175.56%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 70px;
}
.stats .card h3 {
  color: #FFF;
  font-size: 18px;
  margin: 18px 0;
}
.stats .card p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 24px;
}
.stats a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFF;
  width: 33%;
  height: 50px;
  margin: 48px auto 0;
  border-radius: 20px;
  color: #FFF;
  font-size: 16px;
}

/* ========== PARTNERS ========== */
.partners h1 {
  text-align: center;
  background: linear-gradient(90deg, #0A58A5 6.63%, #172735 129.83%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
}
.partners-items {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
}
.partners-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  padding: 15px 30px;
  border: 1px solid #DFE5EC;
  border-radius: 20px;
}

/* ========== CEO ========== */
.ceo {
  margin-top: 84px;
}
.ceo .container {
  display: flex;
  gap: 37px;
}
.ceo .left, .ceo .right {
  border-radius: 20px;
}
.ceo .left {
  width: 35%;
}
.ceo .right {
  width: 65%;
  background: #F2F4F8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ceo .right p {
  padding: 30px 40px;
  font-size: 16px;
  line-height: 32px;
  color: #445972;
}

/* ========== CALL TO ACTION (CTA) ========== */
.cta {
  margin-top: 60px;
}
.cta .container {
  background: url(/images/home/cta.svg) no-repeat center/cover;
  border-radius: 30px;
  padding: 35px 63px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta .left h1 {
  color: #FFF;
  font-size: 36px;
}
.cta .left p {
  margin: 42px 0 60px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 28px;
}
.cta .left a {
  border: 1px solid #FFF;
  padding: 11px 42px;
  border-radius: 20px;
  color: #FFF;
  font-size: 16px;
}

/* ========== NEWSLETTER ========== */
.newletter {
  margin-top: 60px;
}
.newletter .container {
  background: #F2F4F8;
  padding: 35px 53px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.newletter p {
  font-size: 20px;
  font-weight: 700;
  color: #172735;
  line-height: 34px;
}
.newletter form {
  display: flex;
  align-items: center;
  gap: 31px;
}
.newletter input, .newletter button {
  height: 50px;
  border-radius: 20px;
}
.newletter input {
  background: #FFF;
  border: 1px solid #DFE5EC;
  width: 380px;
  padding: 1rem;
}
.newletter button {
  background: #0A58A5;
  border: none;
  width: 126px;
  color: #FFF;
  font-size: 15px;
}

/* ========== FOOTER ========== */
footer {
  margin: 70px 4%;
}
footer .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 55px;
  align-items: center;
}
footer nav a {
  color: #6E7F93;
  font-size: 15px;
}
footer .bottom {
  margin-top: 80px;
  padding-top: 15px;
  border-top: 1px solid #DFE5EC;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .bottom span {
  color: #6E7F93;
  font-size: 12px;
}
footer .bottom .langue {
  display: flex;
  align-items: center;
  gap: 9px;
}
footer .bottom .langue span {
  color: rgba(59, 83, 106, 0.6);
  font-size: 14px;
}
footer .socials {
  display: flex;
  gap: 10px;
}

/* ========== DROPDOWN LANGUAGE SELECTOR ========== */
.dropdown-el {
  display: inline-block;
}
.dropdown-head {
  cursor: pointer;
}
.current-selected {
  width: 56px;
  height: 56px;
  background: #F4F7F9;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4C5A6F;
  font-size: 16px;
}
.dropdown-body {
  position: relative;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.dropdown-body.show {
  display: block;
  opacity: 1;
}
.dropdown-body-inner {
  position: absolute;
  right: -28px;
  top: 33px;
  width: 170px;
  background: #FFF;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  border-radius: 20px;
  padding: 22px 0;
}
.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 29px;
  background: white;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  font-size: 16px;
  color: #4C5A6F;
}
.dropdown-item:last-child {
  margin-top: 27px;
}
.dropdown-item .lang {
  display: flex;
  align-items: center;
  gap: 18px;
}
img.prev-add {
  margin-top: 226px;
}
.left-prev {
  margin-top: 25px;
}

/* ========== JOIN US ========== */
.join {
  margin: 87px 20%;
}
.join p {
  color: #4C5A6F;
  font-size: 16px;
  line-height: 26px;
}
.join h2, .section-title {
  margin-top: 52px;
  background: linear-gradient(91deg, #0A58A5 -10.98%, #F90 129.16%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 28px;
  font-weight: 500;
}
.section-title {
  text-align: center;
  font-size: 32px !important;
}
.join ul {
  margin-top: 2rem;
  color: #4C5A6F;
  font-size: 16px;
  line-height: 26px;
  margin-left: 1rem;
}
.utilisateurs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 748px;
  height: 70px;
  border-radius: 20px;
  background: #F5F7F9;
  padding: 3px;
  margin: 0 auto;
  margin-top: 2rem;
}
.utilisateurs .utilisateur {
  width: 50%;
  text-align: center;
  color: #4C5A6F;
  font-size: 16px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.utilisateurs .utilisateur.active {
  background-color: #fff;
  border-radius: 18px;
  color: #0A58A5;
}
.user-content.active {
  display: block;
  padding: 0 100px;
}
.user-content {
  display: none;
}
.join form {
  margin-top: 83px;
  width: 70%;
  margin: 83px auto;
}
.join form .group {
  margin-top: 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
form .group label {
  color: #4C5A6F;
  font-size: 12px;
}
.join form input {
  height: 50px;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #D8E8F8;
  background: #F4F7F9;
  padding: 1rem;
}
form textarea {
  height: 208px;
  border-radius: 20px;
  border: 1px solid #D8E8F8;
  background: #F4F7F9;
  margin-top: 43px;
  padding: 1rem;
  font-size: 16px;
  margin-top: 0;
  font-family: "Open Sans", sans-serif;
}
.labelcv label {
  margin-top: 1rem;
  border-radius: 20px;
  background: #F4F7F9;
  width: 253px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4C5A6F;
  font-size: 16px;
  cursor: pointer;
}
.labelcv.active .cv {
  background: #0A58A5;
  color: #fff;
}
label.cv input {
  display: none;
}
.join .submit {
  display: flex;
  justify-content: center;
}
.join form button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 20px;
  background: #0A58A5;
  font: 16px;
  width: 180px;
  height: 50px;
  margin: 32px auto;
  border: none;
  color: #fff;
}
.topped {
  margin-top: 2rem;
}
.tarifs-content {
  width: 63%;
  margin: 150px auto;
}
.tarifs-content h1 {
  text-align: center;
  line-height: 84px;
  background: linear-gradient(121deg, #0A58A5 30.49%, #F90 94.13%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 34px;
  font-weight: 600;
  line-height: 30px;
}
.tarifs-content p {
  border-radius: 10px;
  border: 1px solid rgba(255, 153, 0, 0.40);
  background: rgba(255, 153, 0, 0.10);
  width: fit-content;
  margin: 35px auto;
  padding: 5px 17px;
  color: #4C5A6F;
  font-size: 12px;
}
.packs {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.packs .pack {
  border-radius: var(--arrondi, 20px);
  border: 1.5px solid #DAE5EF;
  padding: 30px ;
  width: 33%;
}
.packs .pack h2 {
  text-align: center;
  color: #4C5A6F;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}
.packs .pack h6 {
  color: #0A58A5;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin: 23px auto;
  text-align: center;
}
.packs .pack a {
  border-radius: var(--arrondi, 20px);
  border: 1px solid #0A58A5;
  width: 100%;
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #0A58A5;
  font-weight: 600;
}
.advantages {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.advantages div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.advantages div span {
  color: #4C5A6F;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.validation-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.packs.packss {
  flex-direction: row !important;
}
.nouser {
  width: 60%;
  margin: 0 auto;
}
.chat-container {
  width: 60%;
  margin: 0 auto;
}
.cont {
  height: 78vh;
  overflow: scroll;
  padding-top: 10px;
  padding-bottom: 40px;
}
.chat-container .bot {
  display: flex;
  align-items: start;
  gap: 17px;
}
.bot-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bot-text h1 {
  background: linear-gradient(90deg, #0A58A5 -9.21%, #16202C 123.02%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 34px;
  font-weight: 600;
  line-height: 34px;
}
.chat-container .bot p {
  color: #4C5A6F;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.cont .chat-left {
  display: flex;
  flex-direction: row-reverse;
  align-items: start;
  margin: 37px 0;
  gap: 15px;
  position: relative;
}
.cont .chat-left .avatar {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.chat-container .choices {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 37px;
}
.chat-container .choices .choice {
  width: 50%;
  border-radius: var(--arrondi, 20px);
  border: 1px solid #DFE5EC;
  background: #F4F7F9;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 119px;
  gap: 30px;
  padding: 34px 40px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.chat-container .choices a.choice:hover {
  border: 1px solid #0A58A5;
  background: #F4F7F9;
  text-decoration: none;
  transition: .5s;
}
.chat-container .choices .choice:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.chat-container .choices .choice.active {
  border: 1px solid #0A58A5;
  background: rgba(10, 88, 165, 0.10);
}
.msger-inputarea {
  display: flex;
  margin-bottom: 20px;
  background: #F4F7F9;
  border: 1px solid #DDE6EE;
  border-radius: 25px;
}
.edit-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.chat-left:hover .edit-icon {
  opacity: 1;
}
.edit-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  transition: background-color 0.3s ease, visibility 0.3s ease;
}
.edit-modal.show {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.5);
}
.edit-modal-content {
  background: white;
  padding: 0 30px 30px 30px;
  border-radius: 20px;
  width: 700px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-top: 5rem;
}
.edit-modal.show .edit-modal-content {
  transform: translateY(0);
  opacity: 1;
}
.edit-modal-content h3 {
  color: #4C5A6F;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 20px;
  padding-top: 60px;
}
.edit-modal-content textarea {
  width: 100%;
  font-size: 16px;
  border: 1px solid #DAE5EF;
  border-radius: 20px;
  min-height: 150px;
  padding: 1rem;
  background-color: #F4F7F9;
  line-height: 24px;
  margin-bottom: 40px;
  font-family: "Open Sans", sans-serif;
  color: #223245;
}
.edit-modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.edit-modal-buttons .cancel {
  background: #F4F7F9;
  color: #4C5A6F;
}
.edit-modal-buttons button {
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
.chat-left .text {
  border-radius: var(--arrondi, 20px);
  border: 1px solid #DFE5EC;
  background: #F4F7F9;
  padding: 20px 30px;
  line-height: 28px;
  color: #4C5A6F;
  max-width: 82%;
}
.edit-modal-buttons .save {
  background: #0A58A5;
  color: white;
}
.msger-inputarea.generating {
  height: 68px;
  padding: 10px;
}
.projects .project {
  overflow: scroll;
}
.projects .project .choice .name, .selections .selectione .choice .name {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.choice .name h4 {
  color: #0A58A5;
  font-weight: normal;
  font-weight: 500;
}
.projects .project .flo {
  height: 200px;
  overflow-y: scroll;
}
.projects .project .flo p {
  margin-bottom: 15px;
}
.projects .project .flo p span {
  color: #0A58A5;
  font-weight: normal;
  font-weight: 500;
}
.quotes {
  display: flex;
  align-items: center;
  gap: 23px;
  width: 100%;
  justify-content: space-between;
}
a.signup-link {
  height: 68px;
  align-items: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0A58A5;
  color: #fff;
  border-radius: 25px;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 700px) {
  .mobile { display: block; }
  header { display: none; }
  .header-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
  }
  .header-head button, .mobile-menu .head button {
    background-color: transparent;
    border: none;
  }
  .mobile-menu { display: none; }
  .mobile-menu.active {
    display: block;
    position: fixed;
    background-color: #fff;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 20px;
    z-index: 99;
  }
  .mobile-menu .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-menu .body {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 2rem;
  }
  .mobile-menu a:hover, .mobile-menu a.active {
    color: #0A58A5;
    font-weight: 700;
  }
  .mobile-menu .body a.auth {
    border: 1px solid #0A58A5;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #0A58A5;
  }
  section { margin: 46px 4%; }
  section.banner { margin-top: 40px; }
  section.banner h1 {
    font-size: 24px;
    line-height: 37px;
    width: 100%;
  }
  .banner p {
    font-size: 15px;
    line-height: 34px;
    width: 100% !important;
  }
  section.banner a { width: 100%; }
  section.banner img { width: 50px; height: 100px; bottom: 50px; }
  section.preview h1 { width: 100%; font-size: 20px; line-height: 37px; }
  .preview-content { padding: 20px; }
  .prev-head img:last-child { display: none; }
  .prev-body .left { display: none; }
  .prev-body .right { width: 100%; padding: 0 0; }
  .right-prev-img { width: 100%; }
  .prev-body .right .choices { flex-direction: column; }
  .prev-body .right .choices .choice { width: 100%; }
  .prev-fusee { display: none; }
  .functions { border-radius: 0; padding: 30px 20px; }
  .functions h1 { font-size: 24px; }
  .functions .cards { display: flex; flex-direction: column; }
  .functions .card { padding: 20px; }
  .value .container { flex-direction: column; }
  .value .left { width: 100%; padding: 20px; }
  .container .right { display: none; }
  .contenu { border-radius: 0; padding: 20px; }
  .contenu .items { display: flex; flex-direction: column; }
  .contenu h1 { font-size: 24px; }
  .testimonies { padding:40px 20px; }
  .testimonies h1 { font-size: 24px; }
  .testimonies .cards { flex-direction: column; }
  .testimonies .card { width: 100%; }
  .stats { border-radius: 0; padding:40px 20px; }
  .stats h1 { font-size: 24px; }
  .stats .cards { flex-direction: column; }
  .stats .card { width: 100%; }
  .stats a { width: 100%; }
  .partners h1 { font-size: 24px; }
  .partners-items { flex-direction: column; }
  .partners-item { width: 100%; }
  .ceo .container { width: 100%; }
  .ceo .container .left { width: 100%; }
  .ceo .container img { width: 100%; }
  .cta .container { padding: 40px 20px; }
  .cta .left h1 { font-size: 24px; }
  .cta .left a { width: 100%; display: flex; text-align: center; justify-content: center; }
  .newletter .container { flex-direction: column; gap: 20px; padding: 40px 20px; }
  .newletter form { flex-direction: column; }
  .newletter .container form { width: 100%; }
  .newletter input { width: 100%; }
  .newletter button { width: 100%; }
  footer .top { flex-direction: column; gap: 1.5rem; }
  footer .bottom { margin-top: 40px; flex-direction: column; gap: 1.5rem; }
  .join { width: calc(100% - 40px); margin: 0 20px; }
  .utilisateurs { width: 100%; }
  .utilisateurs .utilisateur { font-size: 14px; height: 53px; }
  .user-content.active { padding: 0 0; }
  .join form { width: 100%; }
  .labelcv label { width: 100%; }
  .join form button { width: 100%; }
  .tarifs-content { width: calc(100% - 40px); margin-top: 50px; }
  .packs .pack { width: 100%; }
  footer { margin: 20px; }
  .tarifs-content h1 { line-height: 40px; }
  .tarifs-content h1 { font-size: 24px; }
  .tarifs-content p{text-align: center;}
  .packs.packss{ flex-direction: column !important;}

  .chat-container{
    width: calc(100% - 40px);
  }

  .chat-container .choices{
    flex-direction: column;
  }

  .chat-container .choices .choice{
    width: 100%;
  }
}
.logo img{
    width: 70px;
}

.main-section.login {
    height: 94vh;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-bottom: 4rem;
}

.signin-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signin-content .logo {
    margin: 1rem auto;
}

.signin-content form {
    margin-top: 2rem;
    width: 392px
}

.signin-content form .group {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.signin-content form .group label {
    font-size: 12px;
    line-height: 22px;
    color: #4C5A6F;
}

.signin-content form .group input {
    width: 392px;
    height: 50px;
    background: #F4F7F9;
    border: 1px solid #D8E8F8;
    border-radius: 20px;
    padding: 0 1rem;
}

.signin-content a {
    color: #0A58A5;
    font-size: 16px;
    font-weight: 400;
}

.forgotten {
    display: flex;
    justify-content: end;
}

.forgotten a {
    color: #4C5A6F !important;
    font-size: 14px;
    margin-top: 9px !important;
}

.actions {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    gap: 2rem;
}

.actions .login {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 22px;
    color: #919191;
}

.actions .login a {
    color: #0a58a5;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.login span{
    font-size: 16px;
    color: #4C5A6F;
}

.actions .submit{
    width: 100%;
}

.group.cgu a{
    font-size: 14px;
}

.group.cgu a span {
    color: #0A58A5;
    font-weight: 500;
    font-size: 14px;
}

.group.cgu span {
    font-size: 14px;
}

.signin-content span.title {
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(91deg, #0A58A5 -10.19%, #04223F 144.72%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.actions .submit button, .redirect-button {
    background: #0a58a5;
    border-radius: 20px;
    color: #fff;
    border: none;
    width: 100%;
    height: 52px;
    padding: 0 2rem;
    font-size: 18px;
    cursor: pointer;
}

.redirect-button{
    display: flex;
    align-items: center;
    justify-content: center;
}

.google {
    display: flex;
    align-items: center;
    gap: 3rem;
    border-radius: 20px;
    padding: 1rem 2rem;
    height: 50px;
    margin-top: 2rem;
    font-size: 16px;
    color: #4C5A6F;
    width: 392px;
    border: 1px solid #DAE5EF
}

.google img {
    margin-right: 1rem;
}

.loader {
    width: 35px;
    height: 35px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 


    @media (max-width: 700px){
        .signin-content form, .signin-content form .group input, .google{
            width: 100%;
        }

        .signin-content {
            width: 100%;
        }

        .google{
            text-align: center;
            gap: 10px;
            justify-content: left;
        }
    }
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *



*/

/* ========== BASE RESET ========== */

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background: transparent; /* facultatif */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
  }
  
  body {
   font-family: "Open Sans", sans-serif; 
    color: #4C5A6F;
  }

  .no-scroll {
    overflow: hidden;
  }
  
  a {
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #4C5A6F;
  }

  .flash-messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 400px;
    max-width: 90vw;
  }
  
  .message {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.3s ease;
    transform: translateX(0);
    animation: slideIn 0.3s ease;
  }
  
  .message.notice {
    background-color: #4caf50;
    border-left: 4px solid #45a049;
  }
  
  .message.alert {
    background-color: #f44336;
    border-left: 4px solid #d32f2f;
  }

  .message.success {
    background-color: #4caf50;
    border-left: 4px solid #45a049;
  }

  .message.error {
    background-color: #f44336;
    border-left: 4px solid #d32f2f;
  }

  @keyframes slideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  input:focus, textarea:focus, select:focus {
    outline: none;
  }

  .mobile{
    display: none;
  }

  .rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  .wait {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.wait .loader {
  width: 60px !important;
  height: 60px !important;
  border: 5px solid #0A58A5;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  }

  @keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
  } 

.wait .text{
  color: #4C5A6F;
}

textarea {
    resize: none;
}

  .chat-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0 0 0 / 30%); /* Fond semi-transparent */
        z-index: 99999 !important;
        display: flex;
        align-items: center;
        justify-content: center; /* Assure que l'overlay est au-dessus de tout le reste */
  }

/* Animation fadeIn */
      .fadeIn {
        animation: fadeInAnimation 0.5s ease forwards;
      }
      
      @keyframes fadeInAnimation {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }
      
      /* Animation fadeOut */
      .fadeOut {
        animation: fadeOutAnimation 0.5s ease forwards;
      }
      
      @keyframes fadeOutAnimation {
        from {
          opacity: 1;
        }
        to {
          opacity: 0;
        }
      }

    .modal-dialog{
      width: 700px;
      max-height: 700px;
      background-color: #fff;
      border-radius: 25px;
      padding: 0 20px 20px 20px;
    }

    .modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px;
      border-bottom: 1px solid #f4F4F4;
      height: 54px;
      position: fixed;
      left: 0;
      right: 0;
      width: 700px;
      background-color: #fff;
      margin: 0 auto;
      border-radius: 25px 25px 0 0;
      z-index: 1;
  }

  .modal-header h5{
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #4C5A6F;
  }

  .modal-content form {
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
    margin-top: 4rem;
  }

  .modal-content form .form-group textarea {
    width: 100%;
    border: 1px solid #DAE5EF;
    border-radius: 20px;
    height: 150px;
    padding: 1rem;
    background-color: #F4F7F9;
    line-height: 24px;
}

.modal-content form .button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.modal-content form button {
    background-color: #0A58A5;
    color: #fff;
    width: 232px;
    height: 50px;
    border-radius: 20px;
    border: none;
    font-size: 16px;
}

.modal-content form .form-group {
    margin: 0 2rem;
}

.modal-content form .form-group label {
    font-size: 12px;
    margin-bottom: 5px;
    color: #4c5a6f8b;
}

.modal-content form .form-group input {
    width: 100%;
    border: 1px solid #DAE5EF;
    border-radius: 20px;
    height: 54px;
    padding: 1rem;
    background-color: #F4F7F9;
    font-size: 16px;
    color: #4C5A6F;
}

.wait{
  display: flex;
  align-items: center;
  justify-content: center;
}

.lds-spinner2 {
  color: #0A58A5;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px
}
.lds-spinner2 div {
  transform-origin: 40px 40px;
  animation: lds-spinner2 1.2s linear infinite;
}
.lds-spinner2 div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #0A58A5;
}
.lds-spinner2 div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner2 div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner2 div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner2 div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner2 div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner2 div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner2 div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner2 div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner2 div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner2 div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner2 div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner2 div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


.wait {
  background: #fff;
  max-height: 700px;
  width: 650px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.wait .loader {
  width: 60px !important;
  height: 60px !important;
  border: 5px solid #0A58A5;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  }

  @keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
  } 

.wait .text{
  color: #4C5A6F;
}

.centered{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 700px;
}


.promo-code-box {
  margin: 20px 0;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.promo-code-box label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.promo-code-box input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-right: 10px;
  width: 200px;
}

.promo-code-box button {
  padding: 8px 12px;
  background: #639a47;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.promo-code-box button:hover {
  background: #4c7735;
}

#promo-message {
  margin-top: 10px;
  font-size: 14px;
}
#promo-message.success {
  color: #3c763d;
}
#promo-message.error {
  color: #d9534f;
}


  @media (max-width: 700px){

    .mobile{
      display: block;
    }
    
  }
