/** {*/
  /*padding: 0;*/
  /*margin: 0;*/
  /*box-sizing: content-box;*/
/*}*/

/*body {*/
  /*font-family: Arial, sans-serif;*/
  /*color: #111;*/
  /*width: 100%;*/
/*}*/

/*.container {*/
  /*width: 576px;*/
  /*margin-left: auto;*/
  /*margin-right: auto;*/
/*}*/

.catalog-h1 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
  line-height: 21px;
  color: #000000;
  font-family: Arial, sans-serif;
  display: block;
}

.catalog-h2 {
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  color: #000000;
  font-family: Arial, sans-serif;
  display: block;
}

.catalog-text {
  margin-bottom: 28px;
  font-size: 12px;
  line-height: 14px;
  color: #000000;
  font-weight: normal;
  font-family: Arial, sans-serif;
}

.product_table:not(:last-child) {
  margin-bottom: 28px;
}

.product_table {
  display: flex;
  flex-direction: column;
}

.product_table__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.product_table__header-sort {
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.product_table__header-sort span {
  font-size: 12px;
  line-height: 14px;
  color: #000000;
  margin-right: 8px;
  display: inline-block;
}

.product_table__header-sort svg {
  transition: 250ms ease;
}

.product_table__header-sort.active svg {
  transform: rotate(180deg);
}
.product_table__header-sort.sort__asc svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.product_table__content {
  border-collapse: collapse;
  border-spacing: 0;
  box-sizing: border-box;
  /* border-collapse: none; */
}
.product_table__content * {
  box-sizing: border-box;
}

.product_table__content tr:hover td {
  background-color: #FBFBFB;
  border-color: #FBFBFB;
}

.product_table__content td {
  /*padding: 24px 8px;*/
  padding: 12px 4px;
  color: #000000;
  font-size: 12px;
  line-height: 14px;
  font-weight: normal;
  text-align: center;
  border: 1px solid #ECEEF3;
}
.product_table__content td:first-child {
  /*padding: 12px 5px;*/
  /*padding: 12px 2px;*/
  width: 80px;
  max-width: 80px;
}
.product_table__content td:nth-child(2) {
  max-width: 118px;
  width: 118px;
}
.product_table__content td:nth-child(3) {
  width: 60px;
  max-width: 60px;
}
.product_table__content td:nth-child(4) {
  width: 55px;
  max-width: 55px;
  font-size: 12px;
}
.product_table__content td:nth-child(5) {
  font-size: 12px;
  width: 68px;
  max-width: 68px;
}
.product_table__content td:nth-child(6) {
  font-size: 11px;
  width: 48px;
  max-width: 48px;
}
.product_table__content td img {
  max-width: 70px;
}
.product_table__content td a {
  font-size: 11px;
  line-height: 12px;
  color: #469ED8;
  display: block;
  font-weight: normal;
  text-decoration: underline;
}
/* .product_table__content td span {
  white-space: nowrap;
} */

.product-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product_control_num {
  display: flex;
  align-items: center;
  height: 22px;
  background-color: #ECEEF3;
  margin-right: 4px;
}
.product_control_num-input {
  width: 15px;
  height: 13px;
  background-color: #ffffff;
  text-align: center;
  appearance: none;
  -moz-appearance: textfield;
  font-size: 8px;
  line-height: 10px;
  color: #000000;
  border: 0;
  outline: none;
  padding: 0;
  margin: 0;
}
.product_control_num-input::placeholder {
  color: #000000;
}
.product_control_num-input::-webkit-outer-spin-button, .product_control_num-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.product_control_num-plus, .product_control_num-minus {
  cursor: pointer;
  width: 15px;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product_btn {
  cursor: pointer;
  white-space: nowrap;
  height: 22px;
  padding: 0 7px;
  border-radius: 2px;
  background-color: #FECB01;
  border: 0;
  outline: none;
  font-size: 8px;
  line-height: 10px;
  letter-spacing: 4%;
  text-transform: uppercase;
  font-weight: normal;
}