/* cars.new.more.show */
.new-list__hits {
  display: flex;
  flex-wrap: wrap;
}
.new-list__hit {
  width: 33%;
  padding: 0 0 0 15px;
  margin-top: 15px;
  min-width: 385px;
}
.new-list__card {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 20px;
}
.new-list__name {
  text-align: center;
  padding-bottom: 20px;
  font-weight: bold;
  color: #000;
  line-height: 1.4;
  font-size: 24px;
}

.new-list__name a {
  color: #000;
}

.new-list__count {
  text-align: center;
}

.new-list__headline {
  display: none;
}

.new-list__price {
  color: rgba(255, 0, 0, 1);
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: bold;
}

.new-list__credit {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.new-list__headline {
  text-align: center;
}

.new-list__picture img {
  max-height: 170px;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .new-list__name {
    font-size: 30px;
  }
}
@media (max-width: 1210px) {
  .new-list__hits {
    justify-content: space-evenly;
  }
  .new-list__hit {
    width: 40%;
  }
}
@media (max-width: 835px) {
  .new-list__hit {
    width: 66%;
  }
}
@media (max-width: 640px) {
  .new-list__hit {
    width: 100%;
    padding: 0;
  }
}

/* cars.new.more.show */