/*.ec-breadcrumbs {*/
/*    display: none !important;*/
/*}*/

.ec-footer {
    display: none !important;
}

/*стили для кнопок ozon и wb*/
/*
.js-store-prod-all-text > a:nth-child(1) {
    padding: 10px;
    background: #F8F8F8;
    border: 1px solid gray;
    display: inline-block;
    font-weight: 700;
    width: 198px;
    text-align: center;
    color: #003ead !important;
    transition: all 0.3s ease-out;
    margin-bottom: 8px;
}
.js-store-prod-all-text > a:nth-child(1) > u {
    text-decoration: none;
}

.js-store-prod-all-text > a:nth-child(1):hover {
    background: #e1e1e1;
}

.js-store-prod-all-text > a:nth-child(3) {
    padding: 10px;
    background: #F8F8F8;
    border: 1px solid gray;
    display: inline-block;
    font-weight: 700;
    width: 198px;
    text-align: center;
    color: #CA11AB !important;
    transition: all 0.3s ease-out;
}

.js-store-prod-all-text > a:nth-child(3) > u {
    text-decoration: none;
}

.js-store-prod-all-text > a:nth-child(3):hover {
    background: #e1e1e1;
}
*/

/*скрывает кнопку "характеристики" из табов*/
.t-store__tabs__button.js-store-tab-button[data-tab-title="Характеристики"] {
  display: none !important;
}

/*калькулятор*/
.radio-field > input[type="radio"] {
  display: none;
}
.radio-field > label {
  display: inline-block;
  position: relative;
  padding-left: 34px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  pointer-events: none;
}
.radio-field > label:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease-out;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  background: #dfdfdf;
  cursor: pointer;
  pointer-events: all;
  box-sizing: border-box;
}
.radio-field > input[type="radio"]:checked + label:before {
  content: "";
  border: 7px solid #000;
  background: #dfdfdf;
}
.checkbox-field > input[type="checkbox"] {
  display: none;
}
.checkbox-field > label {
  display: inline-block;
  position: relative;
  padding-left: 34px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  pointer-events: none;
}
.checkbox-field > label::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #000;
  background: #dfdfdf;
  cursor: pointer;
  pointer-events: all;
  box-sizing: border-box;
}
.checkbox-field > label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: all 0.2s ease-out;
  pointer-events: all;
  width: 14px;
  height: 14px;
  cursor: pointer;
  background: #000;
  border-radius: 4px;
  box-sizing: border-box;
}
.checkbox-field > input[type="checkbox"]:checked + label::after {
  content: "";
  transform: translateY(-50%) scale(1);
}
.input-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.input-field > label {
  font-size: 18px;
}
.input-field > input {
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid #000;
}
.input-field > input::-webkit-inner-spin-button,
.input-field > input::-webkit-outer-spin-button {
  appearance: none;
  -webkit-appearance: none;
}
.input-field > input[type="number"] {
  -moz-appearance: textfield;
}
.food-calc {
  max-width: 1164px;
  margin: 0 auto 80px;
}
.food-calc__head {
  text-align: center;
  font-size: 34px;
  font-family: MediatorSerif, Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 40px;
}
.food-calc__body {
  max-width: 540px;
}
.food-calc__wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
.food-calc__title {
  font-size: 20px;
  font-weight: 600;
}
.food-calc__result {
  border-top: 2px solid #000;
  margin-top: 40px;
  padding-top: 40px;
}
.food-calc__result > .food-calc__title {
  margin-bottom: 30px;
}
.food-calc__resultwrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 16px;
  justify-content: space-between;
}
.food-calc__resultwrap > label {
  font-size: 20px;
}
.food-calc__resultwrap > span {
  display: block;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}
.food-calc-link {
  display: block;
  text-decoration: none;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex: 0 0 56px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: transform 0.3s ease-out;
}
.food-calc-link:hover {
  transform: translateY(-50%) scale(1.1);
}
.food-calc-link > svg {
  width: 80px;
  height: 80px;
}
.food-calc-hidden-elem {
  display: none;
}
@media screen and (max-width: 1199px) {
  .food-calc {
    padding: 0 40px;
  }
}
@media screen and (max-width: 770px) {
  .input-field {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .food-calc {
    padding: 0 20px;
  }
  .food-calc-link {
    right: 10px;
  }
}