.vehicle-not-available {
  width: 400px;
  height: 178px;
  padding: 25px;
  background: #FFFFFF;
  border: 1.25px solid #DADADA;
  border-radius: 5px;
  box-shadow: 0px 0px 12.5px rgba(0, 0, 0, 0.1);

  /* display: flex; */
   display: grid;
  justify-content: center;
  align-items: center;

  /* order: 5; */
}

@media (min-width: 961px) {
  .vehicle-not-available {
    -webkit-box-ordinal-group: 6;
    /* -ms-flex-order: 5; */
    order: 5;
    padding: var(--sp-spacing-16) 0 var(--sp-spacing-24);
    gap: var(--sp-spacing-16) var(--sp-spacing-12)
  }
}

.vehicle-not-available__container {
  width: 322.5px;
  /* display: flex; */
  /* flex-direction: column; */
  gap: 10px;
}

/* TITLE */
.vehicle-not-available__title {
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #696B75;

}

/* DESCRIPTION */
.vehicle-not-available__description {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #333;
      padding: 10px 0px;
}


.vehicle-not-available__action {
  width: 100%;
  display: flex;
  /* justify-content: flex-end;  */
  align-items: center;
      justify-content: end;
}