@charset "UTF-8";
@font-face {
  font-family: "Cera Pro";
  src: local("Cera Pro Light"), local("CeraPro-Light"), url("../fonts/CeraPro-Light.woff2") format("woff2"), url("../fonts/CeraPro-Light.woff") format("woff"), url("../fonts/CeraPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro";
  src: local("Cera Pro Regular"), local("CeraPro-Regular"), url("../fonts/CeraPro-Regular.woff2") format("woff2"), url("../fonts/CeraPro-Regular.woff") format("woff"), url("../fonts/CeraPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro";
  src: local("Cera Pro Medium"), local("CeraPro-Medium"), url("../fonts/CeraPro-Medium.woff2") format("woff2"), url("../fonts/CeraPro-Medium.woff") format("woff"), url("../fonts/CeraPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  /*padding: 15px;*/
  font-family: "Cera Pro", "Arial", sans-serif;
  font-weight: 400;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

p {
  margin: 0;
}

.catalog-container {
  margin: 0 auto;
}

.product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 250px;
  color: #090818;
  border: 1px solid #7889A3;
  border-radius: 5px;
}

.card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background: #F5F5F5;
  border-radius: 5px;
}

.card__number {
  font-size: 14px;
  line-height: 16px;
}

.card__main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 10px;
  margin-bottom: 10px;
}

.card__title {
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
}

.card__title a {
  text-decoration: underline;
}

.card__title a:hover {
  color: #7889A3;
  text-decoration: none;
}

.card__img-wrapper {
  margin-bottom: 25px;
  text-align: center;
}

.card__img-wrapper {
  max-width: 100%;
  height: 205px;
  overflow: hidden;
}
.card__img-wrapper img{
  height: auto;
  max-height: 100%;
  width: auto;
}

.card__text {
  font-size: 14px;
  line-height: 18px;
}

.card__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
}
.card__foot .count input{
  border: 1px solid black;
  border-radius: 5px;
  margin: 0 10px;
  width: 65px;
  padding: 0 10px;
  text-align: center;
}
.card__foot .count span{
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.card__foot__bottom{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
  width: 100%;
}
.card__old-cost {
  font-size: 14px;
  line-height: 18px;
  text-decoration: line-through;
}

.card__current-cost {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  padding-left: 15px;
}

.card__time {
  margin-bottom: 5px;
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  color: #5EA033;
}

.card__in-cart {
  cursor: pointer;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 16px;
  color: #FFFFFF;
  background: #FCBF22;
  border-radius: 5px;
  border: none;
}

.card__in-cart:hover {
  background: #FDB600;
}

.card__in-cart:active {
  background: #FECA44;
}

.all-star .rating-result {
  font-size: 15px;
}

.rating-result span {
  padding: 0;
  margin: 0;
  line-height: 1;
  color: #7889A3;
}

.rating-result > span:before {
  content: "★";
}

.rating-result > span.active {
  color: gold;
}