@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
html{
  font-size: 62.5%;
}
.car-filter, .car-block{
  background: #F7F7F7;
}
.car-filter select{
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(28, 28, 28, 0.40);
  background: url(../images/down-arrow-black.svg) no-repeat center right 20px /10px;
  color: #1C1C1C;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 11px 30px 11px 20px;
  text-overflow: ellipsis;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.car-filter select:hover{
  background-color: #173F70;
  color: #fff;
  background-image: url(../images/down-arrow-white.svg);
}
.car-filter .custom-grid{
  -ms-flex: 0 0 15%;
  flex: 0 0 15%;
  max-width: 15%;
  padding: 0 12px;
}
.car-filter .custom-row{
  margin: 0 -12px;
}
.car-filter .reset-button{
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.car-filter .reset-button a{
  color: #1C1C1C;
  font-family: 'NunitoSansRegular';
  font-size: 14px;
}
.car-filter .reset-button a:hover{
  color: #173F70;
}
.car-detail{
  background: #F7F7F7;
  border: 1px solid rgba(28,28,28,0.15);
  padding: 20px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.car-detail p{
  color: rgba(28, 28, 28, 0.50);
  line-height: normal;
  letter-spacing: normal;
  margin-top: 5px;
  height: 40px;
  overflow: hidden;
}
.car-detail table{
  width: 100%;
}
.car-detail td, .car-price h5{
  color: #1C1C1C;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
.car-detail td{
  vertical-align: top;
  position: relative;
  padding-left: 5px;
  padding-right: 5px;
}
.car-detail td:first-child{
  padding-left: 0;
}
.car-detail td:last-child{
  padding-right: 0;
}
.car-detail td:not(:first-child):before{
  position: absolute;
  top: 50%;
  left: 0;
  content: '';
  width: 1px;
  height: 60%;
  background: rgba(28,28,28,0.15);
  transform: translateY(-50%);
}
.car-detail td img{
  margin-top: -2px;
}
.car-detail hr{
  border-color: rgba(18,18,18,0.15);
}
.car-price h5{
  margin-left: 8px;
}
.car-button{
  color: #1C1C1C;
  font-family: 'NunitoSansSemiBold';
  font-size: 16px;
  border: 1px solid rgba(28, 28, 28, 0.50);
  max-width: 160px;
}
.car-block a:hover .car-detail{
  background: #173F70;
}
.car-block a.d-block:hover h4, .car-block a.d-block:hover td, .car-block a.d-block:hover h5, .car-block a.d-block:hover h6{
  color: #fff;
}
.car-block a:hover p{
  color: rgba(255, 255, 255, 0.50);
}
.car-block a:hover .car-detail hr{
  border-color: rgba(255,255,255,0.30);
}
.car-block a:hover .car-detail td:not(:first-child):before{
  background: rgba(255,255,255,0.30);
}
.car-block a:hover .car-detail td img{
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.car-block a:hover .car-button{
  background: #fff;
  border-color: #fff;
  color: #173F70;
}
.car-block .custom-row{
  margin: 0 -10px;
}