html{
 box-sizing: border-box;
}
*, *::before, *::after{
  box-sizing: inherit;
}
a{
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
ul,
li{
  margin: 0;
  padding: 0;
  list-style: none;
}
p{
  margin: 0;
}
h1, h2, h3, h4, h5, h6{
  margin: 0;
}
body{
  color: #2F3035;
  font-family: 'SFProDisplay-Regular' sans-serif;
  line-height: 24px;
  font-size: 20px;
  font-weight: 400;
}
.container{
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
.page-section{
  margin-bottom: 80px;
}
.header__top-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 122px;
  font-family: 'SFProDisplay-Bold' sans-serif;
  font-weight: 700;
}
.menu__item {
  display: inline-block;
}
.menu__item + .menu__item{
  padding-left: 50px;
}
.header__box {
  display: flex;
}
.header__adress {
  margin-right: 60px;
  width: 265px;
  padding-left: 30px;
  position: relative;
}
.header__adress::before{
  content: "";
  position: absolute;
  background-image: url(../images/adress-icon.svg);
  width: 30px;
  height: 30px;
  left: 0;
  top: -10px;
}
.user-list {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.user-list__item {
  padding-right: 10px;
}
.basket {
  position: relative;
}
.basket__num{
  position: absolute;
  line-height: 20px;
  font-size: 10px;
  color: #fff;
  font-family: 'SFProDisplay-Medium' sans-serif;
  font-weight: 500;
  width: 20px;
  height: 20px;
  background-color: #1C62CD;
  border-radius: 50%;
  text-align: center;
  bottom: -5px;
  right: -13px;
}
.header__bottom{
  margin-bottom: 80px;
}
.menu-categories {
  display: flex;
  justify-content: space-around;
  background-color: #F0F0F4;
  align-items: center;
  min-height: 53px;
}
.menu-categories__item {
  position: relative;
}
.menu-categories__link {
  transition: all .5s;
  font-weight: 400;
  padding: 15px 0 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu-categories__link::before{
  content: "";
  width: 0;
  right: 0;
  left: auto;
  position: absolute;
  background-color: #1C62CD;
  height: 3px;
  bottom: -2px;
  transition: all .3s;
}
.menu-categories__link:hover {
  color: black;
  /* border-bottom: 3px solid #1C62CD; */
}
.menu-categories__link:hover::before{
  width: 100%;
  right: auto;
  left: 0;
}
.banner-section__inner{
  display: flex;
  justify-content: space-between;
}
.banner-section__slider{
  max-width: 870px;
}
.banner-section__slider-btn, .product-slider__slider-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  z-index: 5;
  cursor: pointer;
}
.banner-section__slider-btnprev{
  left: 20px;
}
.banner-section__slider-btnnext{
  right: 20px;
}
.slick-dots{
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
}
.slick-dots li{
  display: inline-block;
  padding: 0 5px;
}
.slick-dots button{
  padding: 0;
  font-size: 0;
  margin: 0;
  width: 11px;
  height: 11px;
  border: 1px solid #FFF;
  border-radius: 50%;
  background-color: transparent;
}
.slick-active li button {
  background-color: #fff;
}
.sale-item{
  max-width: 265px;
  text-align: center;
  border-radius: 3px;
  border: 1px solid #CDCDCD;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sale-item__top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sale-item__info {
  color: #FFF;
  background-color: #1C62CD;
  padding: 8px 20px;
  text-transform: uppercase;
  line-height: 15px;
  font-size: 12px;
  letter-spacing: 1.2px;
}
.sale-item__price{
  text-align: right;
}
.price{
  font-family: "Barlow", sans-serif;
  position: relative;
}
.sale-item__price-new{
  font-weight: 700;
  font-size: 27px;
  line-height: normal;
  color: #1C62CD;
  margin-right: 6px;
  padding-right: 20px;
}
.sale-item__price-new::after{
  content: '';
  position: absolute;
  right: 0;
  top: 8px;
  width: 15px;
  height: 18px;
}
.sale-item__price-old{
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #c4c4c4;
  margin-right: 15px;
  padding: 2px 5px;
  background-image: url('../images/old-line.svg');
  background-repeat: no-repeat;
}
.sale-item__price-old::after{
  content: '';
  position: absolute;
  right: -10px;
  top: 5px;
  width: 8px;
  height: 10px;
}
.sale-item__img{
  object-fit: contain;
  max-height: 176px;
}
.sale-item__title {
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  margin-bottom: 7px;
}
.sale-item__footer {
  background-color: #F0F0F4;
  padding: 25px 20px;
  font-size: 18px;
  line-height: 21px;
}
.sale-item__footer span{
  color: #1C62CD;
  display: block;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
}
banner-section__slider-img{
  object-fit: cover;
  min-height: 400px;
}
.search__tabs {
  margin-bottom: 25px;
}
.search__tabs-item {
  padding: 11px 26px 12px;
}
.search__tabs-item.tab--active{
  border-radius: 5px;
  background-color: #F0F0F4;
  font-weight: 700;
  font-family: 'SFProDisplay-Bold' sans-serif;
}
.tabs-content {
  display: none;
}
.tabs-content.tabs-content--active{
  display: block;
}
.search__content-form {
  display: flex;
}
.search__content-input {
  border: none;
  background-color: #F0F0F4;
  border-radius: 3px;
  padding: 5px 20px;
  font-size: 16px;
  line-height: 29px;
  width: 100%;
}
.search__content-input::placeholder{
  color: #656464;
}
.search__content-btn {
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  font-family: 'SFProDisplay-Bold' sans-serif;
  background-color: #1C62CD;
  border-radius: 3px;
  padding: 17px 41px;
  border: none;
  margin-left: -3px;
}
.categories__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.categories__item {
  margin-bottom: 30px;
  border-radius: 3px;
  border: 1px solid #CDCDCD;
  width: 370px;
  display: flex;
  padding: 20px;
  justify-content: space-between;
}
.categories__item-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.categories__item-title {
  font-size: 23px;
  font-weight: 700;
  line-height: 28px;
  font-family: "Barlow", sans-serif;
  transition: all .3s;
}
.categories__item:hover{
  box-shadow: 3px 3px 20px 0px rgba(50, 50, 50, 0.25);
}
.categories__item:hover .categories__item-title {
  color: #1C62CD;
}
.categories__item-text {
  font-size: 14px;
  line-height: 17px;
  color: #c4c4c4;
}
.categories__item-img {
  text-align: center;
  width: 100%;
}
.categories__item-text::after{
  content: url('../images/link-arrow.svg');
  padding-left: 2px;
}
.product-item__wrapper{
  position: relative;
  max-width: 271px;
}
.product-item__wrapper.product-item__wrapper--list{
  width: 100%;
}
.product-item{
  min-height: 400px;
  min-width: 270px;
  border-radius: 3px;
  border: 1px solid #CDCDCD;
  text-align: center;
  padding: 52px 20px 31px;
  transition: all .3s;
  width: 100%;
}
.product-item__title{
  font-weight: normal;
  padding: 14px 0 25px;
}
.product-item__favorite{
  position: absolute;
  top: 16px;
  right: 19px;
  width: 24px;
  height: 22px;
  background-color: transparent;
  border: none;
}
.product-item__favorite::before{
  content: '';
  position: absolute;
  width: 24px;
  height: 22px;
  top: 0;
  left: 0;
  background-image: url(../images/favorite.svg);
  cursor: pointer;
}
.product-item__favorite--active::before{
  background-image: url('../images/favorite-active.svg');
}
.product-item__price{
  line-height: 36px;
  font-size: 30px;
  font-weight: bold;
}
.product-item__basket{
  position: absolute;
  width: 60px;
  height: 40px;
  background: #1C62CD;
  border-radius:  10px 0px 0px 0px;
  bottom: 0;
  right: 0;
  border: none;
  padding-top: 7px;
  cursor: pointer;
  z-index: 10;
}
.product-item__hover-text{
  font-size: 20px;
  line-height: 24px;
  padding: 18px 21px;
  border-radius: 3px;
  background-color: rgba(255,255,255,.9);
  display: inline-block;
  position: absolute;
  top: 30%;
  opacity: 0;
  transition: all .3s;
}
.product-item:hover .product-item__hover-text{
  opacity: 1;
  color: #1C62CD;
}
.product-item:hover{
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.20);
}
.product-item__sale::before{
  content: "SALE";
  padding: 8px 15px;
  background-color: #1C62CD;
  position: absolute;
  left: 0;
  top: 0;
  text-transform: uppercase;
  color: #FFF;
  font-size: 12px;
  line-height: 14px;
}
.product-item__wrapper.product-item__not-available .product-item__price{
  display: none;
}
.product-item__notify-text{
  display: none;
  font-weight: 700;
  line-height: 21px;
  font-size: 18px;
}
.product-item:hover .product-item__notify-text{
  color: #2F3035;
}
.product-item__wrapper.product-item__not-available .product-item__notify-text{
  display: block;
}
.product-item__wrapper.product-item__not-available .product-item__basket{
  display: none;
}
.product-item__notify-link{
  display: none;
}
.product-item__wrapper.product-item__not-available .product-item__title{
  padding-bottom: 13px;
}
.product-item__wrapper.product-item__not-available .product-item__notify-link{
  display: block;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  color: #1C62CD;
  text-align: center;
  font-size: 16px;
  line-height: 19px;
}
.product-item__wrapper.product-item__not-available .product-item__notify-link span{
  border-bottom: 1px solid #1C62CD;
}
.product__title{
  color:#2F3035;
  font-size: 25px;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  margin-bottom: 25px;
}
.products__tab + .products__tab{
  margin-left: 50px;

}
.products__tabs{
  margin-bottom: 25px;
}
.products__tab{
  padding-bottom: 10px;
}
.products__tab.tab--active{
  border-bottom: 2px solid #1C62CD;
}
.product-slider__slider-btnprev{
  left: -40px;
}
.product-slider__slider-btnnext{
  right: -40px;
}
.slick-slide img {
  display: inline;
}
.products{
  margin-bottom: 80px;
}
.product__more{
  text-align: center;
  margin: 35px 0 0;
}
.product__more-link{
  color: #2F3035;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 16px 43px;
  background: #F0F0F4;
}
.banner{
  margin-bottom: 80px;
}
.footer {
  background-color: #F0F0F4;
}

.footer__top {
  padding-top: 43px;
}

.footer__top-inner {
  display: flex;
  justify-content: space-between;
}

.footer__top-newslatter.footer__top-item{
  width: 295px;
  margin-right: 50px;
}
.footer__top-item {
  width: 200px;
}

.footer__top-title {
  color: #2F3035;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  font-family: 'SFProDisplay-Bold' sans-serif;
}

.footer-form {
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
}

.footer-form__input {
  background-color: #fff;
  border: none;
  font-size: 14px;
  line-height: 17px;
  padding: 0 12px;
}
.footer-form__input::placeholder{
  color: #c4c4c4;
}
.footer-form__btn{
  text-transform: uppercase;
  padding: 10px 16px;
  border: none;
  background-color: #1C62CD;
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.32px;
  font-family: 'SFProDisplay-Semibold' sans-serif;
}

.footer-list {
  font-size: 14px;
  line-height: 22px;
}

.social-list {
  display: flex;
  align-items: center;
  height: 100%;
}

.social-list__item + .social-list__item{
  margin-left: 30px;
}

.footer__bottom {
  padding: 46px 0 22px;
  display: flex;
  justify-content: center;
}

.footer__bottom-link {
  font-size: 10px;
  line-height: 12px;
  color: #48494D;
  margin: 0 40px;
}
.footer__top-social.footer__top-item{
  width: 250px;
}
.breadcrumbs {
  margin-bottom: 40px;
}

.breadcrumbs__list-item {
  display: inline-block;
  padding-right: 16px;
  margin-right: 10px;
  position: relative;
  color: #c4c4c4;
  font-size: 15px;
  line-height: 18px;
}
.breadcrumbs__list-item::after{
  content: "";
  position: absolute;
  right: 0;
  background-image: url('../images/link-arrow.svg');
  width: 6px;
  height: 9px;
  bottom: 5px;
}
.breadcrumbs__list-item:last-child::after{
  display: none;
}
.catalog{
  margin-bottom: 100px;
}
.catalog__title{
  color: #2F3035;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  font-family: 'SFProDisplay-Bold' sans-serif;
  margin-bottom: 26px;
}
.catalog__filter{
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.catalog__filter-items button{
  font-size: 14px;
  line-height: 17px;
  opacity: 0.7;
  border-radius: 3px;
  background: #F0F0F4;
  border: none;
  padding: 5px 22px;
  cursor: pointer;
}
.catalog__filter-items button + button{
  margin-left: 8px;
}
.catalog__filter-btn button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
}
.catalog__filter-btn button+button{
  margin-left: 10px;
}
.catalog__inner{
  display: flex;
}
.catalog__inner-aside{
  min-width: 290px;
  margin-right: 10px;
}
.catalog__inner-list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.catalog__inner-list .product-item__wrapper{
  margin-bottom: 30px;
}
.product-item__img{
  max-width: 100%;
}
.pagination {
  width: 100%;
  margin-top: 70px;
}

.pagination-list {
  display: flex;
  justify-content: center;
}

.pagination-list__item{
  padding: 6px 12px;
  border: 2px solid transparent;
  color: #C4C4C4;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  margin: 0 4px;
}

.pagination-list__item.active {
  border: 2px solid #1C62CD;
  color: #1C62CD;
}
.pagination-list__item a{
  display: block;
}
.aside-filter__tabs{
  display: flex;
  justify-content: space-between;
}
.aside-filter__tab{
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  font-weight: 400;
  color: #C4C4C4;
  width: 50%;
}
.aside-filter__tab.tab--active{
  color: #2F3035;
  font-weight: 700;
  font-family: 'SFProDisplay-Bold' sans-serif;
}
.aside-filter__tab.tab--active span{
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 2px solid #1C62CD;
}
.aside-filter__item-drop{
  margin: 40px 0;
}
.aside-filter__item-title{
  font-family: 'SFProDisplay-Semibold' sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  padding-left: 26px;
}
.filter__item-drop{
  position: relative;
  cursor: pointer;
}
.filter__item-drop::before{
  content: "";
  position: absolute;
  background-image: url('../images/arrow-down.svg');
  left: 0;
  bottom: 5px;
  width: 12px;
  height: 8px;
  transform: rotate(0deg);
}
.filter__item-drop--active::before{
  transform: rotate(180deg);
} 
.aside-filter__content{
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.aside-filter__content-box{
  width: 50%;
  margin-bottom: 10px;
}
.aside-filter__content-label{
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  cursor: pointer;
}
.jq-checkbox, .jq-checkbox{
  background: #fff;
  vertical-align: -1px;
  margin: 0 8px 0 0;
  width: 14px;
  height: 14px;
  border: 1px solid #c4c4c4;
  border-radius: 1px;
  box-shadow: none;
}
.jq-checkbox.focused,
.jq-checkbox.focused{
  background: #1C62CD;
  border: none;
}
.jq-checkbox.checked .jq-checkbox__div{
  width: 8px;
  height: 4px;
  margin: 3px 0 0 3px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
}
.jq-radio.checked .jq-radio__div{
  width: 0;
  height: 0;
  margin: 3px 0 0 3px;
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .7);
}
.aside-filter__content.aside-filter__content-radio{
  flex-wrap: nowrap;
}
.price{
  display: flex;
  justify-content: space-between;
}
.price__slider{
  width: 25%;
  color: #2F3035;
  font-size: 14px;
  text-decoration-line: underline;
}
.price__slider-one::before{
  content: "от";
  color: #c4c4c4;
  font-size: 14px;
  margin-right: 3px
}
.price__slider-two::before {
  content: "до";
  color: #c4c4c4;
  font-size: 14px;
  margin-right: 3px
}
.slidecontainer {
  width: 100%;
}
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 1px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1C62CD;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
}
.aside-filter__item-list{
  margin: 46px 0 40px;
}
.filter__item-list{
  padding-top: 34px;
  border-bottom: 2px solid #c4c4c4;
  display: flex;
  justify-content: space-between;
}
.filter__item-listtitle{
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'SFProDisplay-Semibold' sans-serif;
  line-height: 19px;
  padding-left: 26px;
}
.filter__item-listselect{
  font-size: 14px;
  line-height: 17px;
  font-family: "Barlow", sans-serif;
  color: #48494D;
  border: none;
}
.jq-selectbox__select{
  height: 20px;
  padding: 0 25px 0 10px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: none;
  border: none;
}
.jq-selectbox__trigger-arrow {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 0;
  height: 0;
  border: none;
}
.jq-selectbox__trigger {
  position: absolute;
  border-left: none;
  background-image: url(../images/arrow-down.svg);
  top: 12px;
  right: 9px;
  width: 12px;
  height: 8px;
  transform: rotate(0deg);
}
.jq-selectbox__select:hover,
.jq-selectbox__select:active {
  background: transparent;
  box-shadow: none;
}
.jq-selectbox.focused .jq-selectbox__select{
  border: none;
}
.jq-selectbox li:hover{
  background: rgba(107, 126, 172, 0.05);
  color: rgba(0, 0, 0, 0.60);
}
.jq-selectbox li.selected{
  background: rgba(107, 126, 172, 0.05);
  color: rgba(0, 0, 0, 0.60);
}
.jq-selectbox li{
  color: rgba(0, 0, 0, 0.60);
}
.jq-selectbox__dropdown{
  border-radius: 0;
  padding-top: 15px;
}
.filter-more{
  width: 100%;
}
.filter-more__btn{
  color: #1C62CD;
  font-size: 14px;
  line-height: 17px;
  border: none;
  border-bottom: 1px solid #1C62CD;
  background-color: transparent;
  padding: 0;
}
.filter-search{
  width: 100%;
  border: 1px solid #e0e0e0;
  height: 30px;
  padding: 0 20px;
  line-height: 14px;
  font-size: 12px;
  margin-bottom: 20px;
}
.filter-search::placeholder{
  color: #BDBEC2;
}
.btn-checked .aside-filter__content{
  flex-wrap: nowrap;
  justify-content: space-between;
}
.filter-search.aside-filter__content-box{
  width: auto;
}
.btn-checked .aside-filter__content-label{
  position: relative;
  /* background-color: #F0F0F4; */
  height: 25px;
  width: 63px;
  font-weight: bold;
  font-family: 'SFProDisplay-Bold' sans-serif;
  font-size: 12px;
  line-height: 14px;
  color: #c4c4c4;
}
.btn-checked__text{
  position: absolute;
  top: -7px;
  left: 50%;
  z-index: 5;
  transform: translateX(-57%);
}
.btn-checked .jq-checkbox{
  height: 25px;
  width: 63px;
  background: #F0F0F4;
  border: none;
}
.btn-checked .jq-checkbox.checked{
  background: #1C62CD;
  color: #fff;
}
.btn-checked .jq-checkbox.checked ~ .btn-checked__text{
  color: #fff;
}
.jq-checkbox.checked .jq-checkbox__div{
  display: none;
}
.aside-filter__item-btn{
  text-align: center;
}
.filter-btn__send {
  background: #F0F0F4;
  padding: 16px 85px;
  text-transform: uppercase;
  color: #BDBEC2;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.8px;
  color: #BDBEC2;
  border: none;
  cursor: pointer;
  margin-bottom: 15px;
}
.filter-btn__send--active{
  background-color: #1C62CD;
  color: #fff;
}

.filter__extra {
  font-size: 13px;
  line-height: 16px;
  position: relative;
  padding-right: 29px;
  display: inline-block;
  margin-bottom: 15px;
}
.filter__extra::after{
  content: '';
  position: absolute;
  right: 0;
  background-image: url('../images/arrow-down.svg');
  width: 12px;
  height: 8px;
  top: 5px;
}

.filter__extra-content {
  display: none;
}
.filter__extra.filter__item-drop--active::after{
  transform: rotate(180deg);
}

.filter-btn__reset {
  background-color: transparent;
  padding: 0;
  border: none;
  line-height: 16px;
  display: inline-block;
  border-bottom: 1px solid #c4c4c4;
  font-size: 13px;
  width: 50%;
}
button.catalog__filter-btngrid{
  width: 26px;
  height: 21px;
}
.select-item{
  border: 1px solid #D7D9DF;
  font-size: 14px;
  line-height: 17px;
  margin-right: 34px;
  padding: 0 9px 8px 8px;
}
button.catalog__filter-btnline{
  width: 25px;
  height: 19px;
}
.catalog__filter-btn{
  display: flex;
  align-items: center;
}
.catalog__filter-button{
  opacity: 0.3;
  outline: none;
}
.catalog__filter-button--active{
  opacity: 1;
}
.product-card{
  margin-bottom: 80px;
}
.product-card__inner {
  display: flex;
  justify-content: space-between;
}

.product-card__img-box {
  width: 500px;
  padding-top: 64px;
  text-align: center;
  font-family: "Barlow", sans-serif;
  position: relative;
}

.product-card__img-box::before{
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 1.8px;
  padding: 13px 25px;
  border-radius: 3px;
}

.product-card__price-old {
  font-size: 30px;
  line-height: 36px;
  opacity: 0.6;
  margin-bottom: 6px;
  background-image: url('../images/old-line.svg');
  background-repeat: no-repeat;
  display: inline-block;
}

.product-card__price-new {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 17px;
}

.product-card__link {
  border-bottom: 1px solid #1C62CD;
  font-size: 15px;
  line-height: 18px;
  color: #1C62CD;
}

.product-card__content {
  width: 576px;
}

.product-card__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  font-family: 'SFProDisplay-Bold' sans-serif;
  margin-bottom: 10px;
}

.product-card__code {
  font-size: 15px;
  line-height: 18px;
  opacity: 0.6;
  margin-bottom: 22px;
}

.product-card__buttons {
  margin-bottom: 50px;
}

.product-card__tab {
  font-size: 20px;
  line-height: 24px;
  opacity: 0.6;
  padding-bottom: 5px;
  padding-right: 17px;
  margin-bottom: 5px;
}

.product-card__tab+.product-card__tab{
  padding-left: 17px;
}

.product-card__tab.tab--active {
  opacity: 1;
  border-bottom: 2px solid #1C62CD;
  font-weight: 700;
  font-family: 'SFProDisplay-Bold' sans-serif;
}

.product-card__item {
  font-size: 20px;
  line-height: 24px;
  border-bottom: 1px solid rgba(47, 48, 53, 0.1);
  padding: 15px 0 6px;
  display: flex;
  justify-content: space-between;
}

.product-card__item-left {
  padding-right: 15px;
}

.product-card__item-right {
  width: 125px;
}

.product-card__list{
  margin-bottom: 20px;
}

.product-card__more {
  font-size: 14px;
  line-height: 17px;
  color: #1C62CD;
  border-bottom: 1px solid #1C62CD;
  margin-bottom: 40px;
}

.product-card__btn button{
  border-radius: 3px;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: #fff;
  padding: 16px 56px;
  background: #1C62CD;
  border: none;
  cursor: pointer;
}
.product-card__buttons a+a{
  margin-left: 30px;
}