.pricelist-list {
  margin-top: 45px;
}
.pricelist-list .pricelist-item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.pricelist-list .pricelist-item a {
  display: block;
}
.pricelist-list .pricelist-item img {
  width: 100%;
  max-width: 224px;
  margin: 0 auto;
  display: block;
  -webkit-transform: scale(1,1);
  transform: scale(1,1);
  transition-timing-function: linear;
  transition-duration: 200ms;
}
.pricelist-list .pricelist-item .title {
  color: #000;
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  text-align: center;
  margin-top: 24px;
}

@media (min-width: 576px) {
  .pricelist-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .pricelist-list .pricelist-item {
    width: calc(100%/2 - 5px);
  }
}

@media (min-width: 768px) {
  .pricelist-list .pricelist-item {
    width: calc(100%/3 - 20px/3);
  }
  .pricelist-list::after {
    content: '';
    display: block;
    width: calc(100%/3 - 20px/3);
  }
}

@media (min-width: 992px) {

  
}

@media (min-width: 1500px) {
  .pricelist-list {
     margin-top: 50px;
  }
  
  .pricelist-list .pricelist-item .title {
      font-size: 16px;
      line-height: 18px;
  }
  
  .pricelist-list .pricelist-item {
    width: calc(100%/4 - 60px/4);
    margin-bottom: 50px;
  }
  .pricelist-list::after {
    width: calc(100%/4 - 60px/4);
    margin-bottom: 50px;
  }
  .pricelist-list::before {
    content: '';
    display: block;
    width: calc(100%/4 - 60px/4);
    margin-bottom: 50px;
    order: 1;
  }
  
}
