/* Product cards */

.product-card {

  position: relative;
  cursor: pointer;
  transition: .5s;
  margin: auto;
  margin-bottom: 50px;
  width: 235px;
  height: 370px;
  background: #fff;
  border: 0px solid silver;

  -webkit-box-shadow: 0px 2px 15px 3px rgba(0,0,0,0.07);
  -moz-box-shadow: 0px 2px 15px 3px rgba(0,0,0,0.07);
  box-shadow: 0px 2px 15px 3px rgba(0,0,0,0.07);
}

.product-card:hover {
  transform: translateY(-20px);
  -webkit-box-shadow: 0px 2px 15px 7px rgba(0,0,0,0.07);
  -moz-box-shadow: 0px 2px 15px 7px rgba(0,0,0,0.07);
  box-shadow: 0px 2px 15px 7px rgba(0,0,0,0.07);
}

.pc-photo {
  height: 140px;
  width: 100%;
  overflow: hidden;
}

/* .pc-1 .pc-photo {
  background: url("/img/photos/old-town.jpg") no-repeat;
  background-size: cover;
} */

/* .pc-2 .pc-photo {
  background: url("/img/photos/kistochka.jpg") no-repeat;
  background-size: cover;
}

.pc-3 .pc-photo {
  background: url("/img/photos/cegla.jpg") no-repeat;
  background-size: 110% 110%;
  background-position: -10px -10px;
}

.pc-4 .pc-photo {
  background: url("/img/photos/trapecia.png") no-repeat;
  background-size: cover;
} */

.pc-6 .pc-photo img {
  margin-top: -53px;
}

.pc-4 ul {
  height: auto !important;
}

.pc-header {
  width: 85%;
  text-align: center;
  font-size: 20px;
  color: #3a3939;
  margin: 20px auto 20px auto;

  font-weight: 400;
}

.pc-colors {
  margin: auto 20px;
}

.pc-colors ul {
  height: 48px;
  width: 200px;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.pc-colors ul li {
  margin-right: 9px;
}

.pc-colors .color {
  border-radius: 50%;
  width: 15px;
  height: 15px;
  border: 1px solid #a3aeb9;
  margin-top: 6px;
}

.pc-colors .more-colors {
  position: relative;
  top: 1px;
  left: 3px;
  font-size: 14px;
  color: #a3aeb9;
}

.pc-size {
  margin: auto;
  width: 195px;
}

.pc-size p {
  width: 100%;
}



.pc-price-wrapper {

  padding: 0 20px;

  position: absolute;

  bottom: 0;

  height: auto;

  width: 235px;

}

.pc-price {
  width: 100%;
  font-size: 18px;
}
/*
.pc-price a {
  width: 200px;
} */

.pc-price span {
  color: #c71e1e;
}

.popular button:hover {
  transition: .5s;
  background: #b49504;
}

/* Product details */
.product-details {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  display: block;
}

.pd-window {
  width: 970px;
  height: 400px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
}

.pd-photos {
  height: 100%;
  width: 430px;
}

.pd-main-photo {
  cursor: pointer;
  height: 265px;
  overflow: hidden;
}

.pd-main-photo > img {
  width: 100%;
}

.pd-other-photo {
  background-size: cover;
  height: 100%;
  cursor: pointer;
}

.pd-other-photos {
  width: 100%;
  height: 85px;
  margin-top: 10px;
  overflow: hidden;
}

.pd-other-photos ul {

  display: flex;
  width: 530px;
}

.pd-other-photos ul li {
  width: 134px;
  height: 85px;
  margin-right: 10px;
  display: inline-block;
}

.pd-information {
  height: 100%;
  width: 500px;
  padding: 10px 25px 0 25px;
}

.pd-information h2 {
  font-size: 22px;
  width: 100%;
  text-align: center;

  font-weight: 400;
}

.pd-information > ul > li {
  margin-bottom: 20px;
}

.pd-colors {
  margin-top: 30px;
}

.pd-colors .color {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid #a3aeb9;
  margin-top: 3px;
}

.pd-colors ul {
  height: auto;
  width: 400px;
  flex-direction: row;
  flex-wrap: wrap;
}

.pd-colors ul li {
  margin-right: 15px;
}

.pd-price {
  position: absolute;
  bottom: 40px;
  font-size: 18px;
}

.pd-price span {
  color: #c00202;
}
