/* VEHICLES LOOP */
.ccv-vehicles-content {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  justify-content: flex-start;
  width: 100%;
}

.ccv-vehicles-loop {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  justify-content: flex-start;
  width: 100%;
}

/* NOT FOUND ALERT */
.ccv-vehicles-loop p.ccv-not-found {
  background-color: #ffc0c0;
  border-radius: 4px;
  color: #bb4d4d;
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 20px;
  justify-content: center;
  width: 100%;
}

/* VEHICLE SKELETON */
.ccv-vehicle__image-skeleton {
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}

.ccv-vehicle__title-skeleton {
  height: 40px;
  width: 100%;
}

.ccv-vehicle__button-skeleton {
  height: 30px;
  width: 100%;
}

/* PAGINATOR */
.ccv-pagination {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  list-style: none;
  gap: 5px;
  margin: 0;
  padding: 0;
  width: 100%;
}
.page-numbers {
  align-items: center;
  background-color: #e4e4e4;
  border-radius: 4px;
  border: 1px solid var(--ccv-border-gray);
  color: var(--ccv-dark-color);
  display: inline-flex;
  flex-flow: column nowrap;
  font-family: "Montserrat", Sans-serif;
  font-size: 14px;
  font-weight: bold;
  height: 35px;
  justify-content: center;
  outline: 0;
  padding: 0 10px;
  transition: all 0.4s ease;
  text-decoration: none !important;
  width: auto;
}
.page-numbers:not(.next):not(.prev) {
  padding: 0;
  width: 35px;
}
.page-numbers.current {
  background-color: var(--ccv-primary-color);
  border-color: var(--ccv-primary-color);
  color: var(--ccv-white-color);
}
.page-numbers:not(.current):hover {
  background-color: #bbbbbb;
}
