.listing img:first-of-type {
  width: 65%;
  height: 214px;
  float: left;
  object-fit: cover;
  /* margin: 2px 2px 0 0; */
}

.listing img:nth-of-type(2) {
  width: calc(35% - 4px);
  float: right;
  object-fit: cover;
  height: 105px;
  margin: 0 0 2px 2px;
}

.listing img:nth-of-type(3) {
  width: calc(35% - 4px);
  float: right;
  object-fit: cover;
  margin: 2px 0 0 2px;
  height: 105px;
}

.listing-titles {
  display: flex;
}

.listing-titles h3 {
  font-weight: 600;
  font-size: 1.25rem;
}

.listing-titles h3:nth-of-type(1) {
  flex: 3;
}

.listing-titles h3:nth-of-type(2) {
  flex: 1;
  text-align: right;
}

.listing-info {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}

.listing-info table {
  width: 80%;
  line-height: 1.5rem;
}

.listing-info tr {
  height: 40px;
}

.listing-titles {
  width: 100%;
}

.listing-info h3:nth-of-type(2)::after {
  content: "Inc. GST ^";
  font-size: 0.8rem;
  display: block;
  text-align: right;
  font-weight: normal;
}

.listing-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.listing-buttons a {
  background: #000;
  padding: 5px 40px;
  color: #fff;
  border-radius: 9px;
}

.listing-buttons .enquire {
  background: #f9a13a;
}

.listing-buttons .save {
  display: flex;
  align-items: center;
}

.listing-buttons .save:not(.saving)::before {
  content: "\f005";
  font-family: "fontawesome";
  color: #f9a13a;
  display: inline-block;
  /* font-weight: 800; */
  padding-right: 10px;
}

.listing-buttons .save.saved:not(.saving)::before {
  color: #2a8fbd;
}

.saving .spinner {
  display: inline-block;
  margin-right: 10px;
}

.row.listing {
  margin-bottom: 40px;
}

.listing-info th {
  font-weight: 600;
}

hr.lighter {
  background: #707070;
  margin: 50px 0;
  opacity: 0.75;
}

.search-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 40px 3px;
  align-items: center;
}

.search-info label {
  display: inline-block;
}

.search-info .custom-select {
  display: inline !important;
  color: #000;
  background: #f3f3f3;
}

.mysavedtrucks {
  color: #f9a13a;
  font-weight: 600;
}

.mysavedtrucks::before {
  content: "\f005";
  font-family: fontawesome;
  padding-right: 15px;
  display: inline-block;
}

.mysavedtrucks:hover {
  color: #f9a13a;
}

.search-info .custom-select {
  width: auto !important;
}

.search-info .select-wrapper::after {
  color: #000 !important;
}

/*
.head-detail div {
  margin-right: 2rem;
  padding: 10px 0;
} */

.spinner {
  width: 20px;
  height: 20px;

  position: relative;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #aaa;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;

  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

#carousel-image-container {
  margin-bottom: 10px;
  position: relative;
  text-align: center;
}

#carousel-image-container img {
  max-width: 100%;
}

.disclaimer {
  margin-top: 10px;
  text-align: justify;
}

#carousel-loading-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: white;
  opacity: 0.75;
}

#used-truck-header {
  background-color: white;
}

.contact-info,
.head-detail {
  display: flex;
  justify-content: space-between;
  padding: 10px 40px;
}

.contact-info i {
  font-size: 2rem;
  vertical-align: middle;
  margin-right: 5px;
}

.contact-info a {
  text-decoration: none;
}

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.owl-carousel img {
  object-fit: cover;
  max-height: 82px;
}

@media (max-width: 991px) {
  .listing-buttons a {
    width: 33.33%;
    text-align: center;
    padding: 5px 0px;
    justify-content: center;
  }
  .listing-buttons a:nth-child(1) {
    border-radius: 9px 0 0 9px;
  }
  .listing-buttons a:nth-child(2) {
    border-radius: 0;
  }
  .listing-buttons a:nth-child(3) {
    border-radius: 0 9px 9px 0;
  }
  .listing-info table {
    width: 100%;
  }
  .listing-titles {
    padding-top: 10px;
  }
  #carousel-image-container img {
    max-width: 100%;
    width: 720px;
  }
}

@media (max-width: 575px) {
  .container#used-truck-search {
    padding: 10px 10px;
    width: calc(100% - 20px);
  }
}

@media (max-width: 600px) {
  .search-info {
    flex-direction: column;
  }
  .search-info a {
    margin: 10px 0;
  }
  .contact-info i {
    font-size: 1rem;
  }
}

.product-details tr th {
  width: 151px !important;
}
