.group__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: calc(var(--space) / 2);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.foot__parameters {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: calc(var(--space) / 1.5); }
  .foot__parameters-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: calc(var(--space) / 4);
    width: auto;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 14px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .foot__parameters-item .svg-icon {
      --icon-width: 16px;
      --icon-height: 16px;
      --icon-fill-color: var(--default-color);
      width: var(--icon-width);
      height: var(--icon-height); }

@media (min-width: 600px) {
  .foot__parameters-item {
    font-size: 15px; }
    .foot__parameters-item .svg-icon {
      --icon-width: 18px;
      --icon-height: 18px; } }

@media (min-width: 1000px) {
  .foot__parameters-item {
    font-size: 16px; }
    .foot__parameters-item .svg-icon {
      --icon-width: 20px;
      --icon-height: 20px; } }
