/*# Steps */

.steps-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 800px;
  position: relative;
  padding: 0;
}

.steps-horizontal::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e9ecef;
  z-index: 1;
}

.step-horizontal {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 20px;
  color: #6c757d;
  transition: all 0.3s ease;
}

.step-title {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 5px;
}

.step-description {
  font-size: 12px;
  color: #adb5bd;
  max-width: 150px;
  margin: 0 auto;
}

.step-horizontal.active .step-icon {
  background: #4361ee;
  border-color: #4361ee;
  color: white;
  box-shadow: 0 0 0 5px rgba(67, 97, 238, 0.2);
}

.step-horizontal.complete .step-icon {
  background: #2ecc71;
  border-color: #2ecc71;
  color: white;
}

.disabled-step {
  opacity: 0.5;
  pointer-events: none; /* empêche le clic / interaction */
  filter: grayscale(100%); /* optionnel pour griser encore plus */
}
/* // Step */

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.description-text {
  text-align: justify;  /* justification du texte */
  line-height: 1.5;     /* espacement entre les lignes */
  position: relative;
}

.description-text::after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 1.2em; /* ligne approx */
  background: linear-gradient(to right, rgba(255,255,255,0), white 90%);
}

.car-card {
  transition: all 0.3s ease-in-out; /* animation fluide */
}
.car-card:hover {
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important; /* shadow-lg */
  transform: translateY(-4px); /* petit effet flottant */
}

.bg-light-gray {
  background-color: #F0F0F0;
}

/*input,*/
/*select,*/
/*.form-select,*/
/*.form-control {*/
/*  height: 60px;*/
/*  padding: 0 16px;*/
/*  color: #000;*/
/*  background-color: #fff;*/
/*  border-radius: 8px;*/
/*  font-weight: 500;*/
/*  font-size: 16px;*/
/*  width: 100%;*/
/*  border: 1px solid #9B9CA0;*/
/*  width: 100%;*/
/*  -webkit-box-shadow: none;*/
/*  box-shadow: none;*/
/*}*/

/* //error section */
.page_404  img{
  width:100%;
}

.four_zero_four_bg{
  background-image: url(/assets/images/dribbble.gif);
  height: 400px;
  background-position: center;
}

.four_zero_four_bg h1{
  font-size:80px;
}

.four_zero_four_bg h3{
  font-size:80px;
}

.link_404{
  padding: 10px 20px;
  margin: 20px 0;
  display: inline-block;
}

.contant_box_404{
  margin-top:-50px;
}

/* //error section */