.tilesCatalog {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  -webkit-align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-align-items: stretch;
  -ms-flex-wrap: wrap;
  -moz-align-items: stretch;
  -moz-flex-wrap: wrap;
  align-items: stretch;
  align-content: center;
  flex-wrap: wrap;
  padding: 20px 20px 0 20px;
}
@media screen and (max-width: 900px) {
    .tilesCatalog{
      justify-content: center;
    }
}
.tilesCatalog .oneTile {
  flex: 0 0 225px;
  -moz-flex: 0 0 225px;
  -webkit-flex: 0 0 225px;
  -ms-flex-basis: 0 0 225px;
  text-align: center;
  margin: 0 6px;
  padding: 15px;
  border: 1px solid rgba(179, 180, 179, 0);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 30px;
  box-shadow: 5px 7px 5px rgba(209, 209, 209, 0.2);
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.tilesCatalog .oneTile:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
}

.tilesCatalog .oneTile .Block .imageCatalog {
  display: inline-block;
  cursor: pointer;
  height: 300px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

.tilesCatalog .oneTile .Block .imageCatalog .stick-container {
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 1;
  max-width: 77px;
  text-align: left;
  line-height: 1;
}

.tilesCatalog .oneTile .Block .imageCatalog .stick-container .stick-item {
  padding: 8px 10px;
  display: inline-block;
}

.tilesCatalog .oneTile .Block .imageCatalog .stick-container .stick-item .text {
  font-size: 11px;
  color: #ffffff;
  line-height: 1;
}

.tilesCatalog .oneTile .Block .imageCatalog .stick-container .stick-item:first-child {
  margin-bottom: 5px;
}

.tilesCatalog .oneTile .Block .imageCatalog .stick-container .stick-item.new {
  border-radius: 99px;
  background-color: #5fab46;
}

.tilesCatalog .oneTile .Block .imageCatalog .stick-container .stick-item.hit {
  background-color: #ee9f21;
}

.tilesCatalog .oneTile .Block .imageCatalog .stick-container .stick-item.sale {
  background-color: #ee3e3b;
}

.tilesCatalog .oneTile .Block .imageCatalog a.fancy-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
  -ms-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
  z-index: 2;
}

.tilesCatalog .oneTile .Block .imageCatalog a.fancy-link:focus {
  outline: none;
}

.tilesCatalog .oneTile .Block .imageCatalog a.fancy-link:hover {
  background-color: #000;
  opacity: .7;
}

.tilesCatalog .oneTile .Block .imageCatalog a.fancy-link:hover:after {
  display: block;
  font-family: FontAwesome;
  font-weight: normal;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: '\f00e';
  font-size: 20px;
  color: #ffffff;
}

.tilesCatalog .oneTile .Block .nameLink {
  color: black;
  text-decoration: none;
  display: block;
  height: 3rem;
  overflow: hidden;
  position: relative;
  margin-top: 0.5rem;
}

.tilesCatalog .oneTile .Block .nameLink:hover {
  z-index: 1;
  overflow: visible;
  color: #4D81E5;
}

.tilesCatalog .oneTile .Block .nameLink h2 {
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 1em;
  text-align: left;
  margin-bottom: 5px;
  padding-bottom: 10px;
  height: 3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tilesCatalog .oneTile .Block .nameLink h2:hover {
  height: 8rem;
  display: block;
  width: 100%;
}
.tilesCatalog .oneTile .Block p {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-align: left;
  line-height: 1.5;
  font-size: 12px;
  width: 100%;
}

.tilesCatalog .oneTile .Block p span {
  margin-bottom: 10px;
  display: inline-block;
  width: 49%;
}

.tilesCatalog .oneTile .Block p span:nth-child(2) {
  text-align: right;
}

.tilesCatalog .oneTile .Block a.unsubscribe {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: #005edd;
  text-decoration: none;
}

.tilesCatalog .oneTile .Block a.unsubscribe:visited,
.tilesCatalog .oneTile .Block a.unsubscribe:focus {
  color: #005edd;
  text-decoration: none;
}

.tilesCatalog .oneTile .Block a.unsubscribe:hover {
  text-decoration: underline;
}

.tilesCatalog .oneTile .Block .catalogPrice span {
  padding: 3px;
  font-size: 1.3em;
  position: relative;
  white-space: nowrap;
}

.tilesCatalog .oneTile .Block .catalogPrice span.no-discount {
  font-size: 1.2em;
}

.tilesCatalog .oneTile .Block .catalogPrice span.no-discount::before {
  border-bottom: 1px solid #000;
  position: absolute;
  content: "";
  width: 100%;
  height: 55%;
  transform: rotate(7deg);
}

.tilesCatalog .oneTile .Block .catalogPrice span.discount {
  color: #cb3c30;
}

.tilesCatalog .oneTile .Block i {
  color: lightgray;
  font-size: 2em;
}

.tilesCatalog .oneTile .no-quantity {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.tilesCatalog .oneTile .Block span.noQuant-price {
  font-weight: 700;
  opacity: 0;
}

.tilesCatalog .oneTile .Block span.noQuant-price::after {
  font-size: 16px;
  font-family: FontAwesome;
  margin-left: 5px;
  content: "\f158";
}

.tilesCatalog .oneTile .Block span.noQuant {
  display: none;
  color: #95A1A8;
  padding: 10px 10px;
  border: 1px solid #E6E6E6;
  border-radius: 99px;
  font-size: 16px;
}

.tilesCatalog .oneTile .Block .subscribe-container {
  margin: 5px 0 15px 0;
  width: 100%;
}

.tilesCatalog .oneTile .Block .button-link-container {
  width: 100%;
}

.tilesCatalog .oneTile .Block .button-link-container .button-link {
  webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  outline: 0;
  margin: 0 0 10px;
  background: 0 0;
  border: 2px solid #5a5a5a;
  padding: 4px 10px;
  color: #5a5a5a;
  font-size: 14px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

.tilesCatalog .oneTile .Block .button-link-container .button-link:hover {
  color: #005edd;
  border-color: #005edd;
}

.tilesCatalog .oneTile .Block .button-link-container .button-link:focus,
.tilesCatalog .oneTile .Block .button-link-container .button-link:link,
.tilesCatalog .oneTile .Block .button-link-container .button-link:visited,
.tilesCatalog .oneTile .Block .button-link-container .button-link:active {
  text-decoration: none;
}