.properties-group {
  width: 100%;
  margin: 0;
  --group-padding: 16px;
}
.properties-group__group {
  padding-top: var(--group-padding);
  padding-bottom: var(--group-padding);
}
.properties-group__group:first-child {
  padding-top: 0;
}
.properties-group__group:last-child {
  padding-bottom: 0;
}
.properties-group--block .properties-group__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 992px) {
  .properties-group--table .properties-group__items .properties-group__item:nth-of-type(2) {
    border-top: 1px solid var(--stroke_black);
  }
  .show-one-column .properties-group--table .properties-group__items .properties-group__item:nth-of-type(2){
    border-top: none;
  }
  .properties-group--table .properties-group__items {
    display: grid;
    column-gap: 48px;
    grid-template-columns: 1fr 1fr;
  }
  .show-one-column .properties-group--table .properties-group__items {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 501px) {
  .properties-group--table .properties-group__item:nth-of-type(1) {
    border-top: 1px solid var(--stroke_black);
  }
}
.properties-group--table .properties-group__item {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid #ededed;
  border-bottom-color: var(--stroke_black);
}
.properties-group--block .properties-group__item {
  border: 1px solid #ededed;
  border-color: var(--stroke_black);
  padding: 22px 25px;
  margin: 0px -1px -1px 0px;
}
.properties-group__name-wrap,
.properties-group__value-wrap {
  position: relative;
}
.properties-group--table .properties-group__name-wrap,
.properties-group--table .properties-group__value-wrap {
  width: 50%;
}
.properties-group__name-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.properties-group--block .properties-group__name-wrap {
  margin-bottom: 6px;
}
.properties-group__name,
.properties-group__value {
  position: relative;
  text-align: left;
  word-break: break-word;
}
.properties-group--table .properties-group__value {
  padding-left: 20px;
}

@media (max-width: 1200px) {
  .properties-group--block .properties-group__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .properties-group--block .properties-group__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .properties-group--table .properties-group__item:nth-of-type(2) {
    border-top: none;
  }
}
@media (max-width: 500px) {
  .properties-group {
    --group-padding: 24px;
  }
  .properties-group--table .properties-group__group {
    padding-bottom: 0;
  }
  .properties-group--table .properties-group__group-name {
    margin-bottom: 0;
  }
  .properties-group--table .properties-group__item {
    flex-direction: column;
    padding: 10px 0px;
  }
  .properties-group--table .properties-group__group[data-group-code="no-group"] .properties-group__item{
    padding-left: 0;
  }
  .properties-group--table .properties-group__name-wrap,
  .properties-group--table .properties-group__value-wrap {
    width: 100%;
  }
  .properties-group--table .properties-group__name,
  .properties-group--table .properties-group__value {
    padding: 0;
  }
  .properties-group--table .properties-group__name-wrap {
    background: none;
  }
  .properties-group--table .properties-group__name-wrap {
    font-size: 0.8125rem;
    line-height: calc(1em + 9px);
  }
  .properties-group--table .properties-group__value-wrap {
    font-size: 1rem;
    line-height: calc(1em + 5px);
  }
}

.properties-group__group .properties-group__group-name {
  font-weight: 600;
  margin-bottom: 12px;
}

/*hint*/
.properties-group .hint.active .tooltip {
  opacity: 1;
  z-index: 204;
}
.properties-group .hint .tooltip:after {
  left: 2px;
}
.properties-group .hint {
  display: inline;
  position: relative;
  top: -1px;
}
.properties-group .hint__icon {
  border: 1px solid #e5e5e5;
  border-color: var(--stroke_black);
  border-radius: 100%;
  text-align: center;
  padding: 2px 4px 0px;
  cursor: pointer;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}
.properties-group .hint__icon i {
  color: #383838;
  color: var(--white_text_black);
  line-height: 11px;
  font-size: 11px;
  font-style: normal;
  display: inline-block;
  vertical-align: top;
}
.properties-group .hint .hint__icon:hover {
  background-color: var(--theme-base-color);
}
.properties-group .hint__icon:hover i {
  color: #fff;
}
.properties-group .hint .tooltip {
  left: 1px;
  text-align: left;
}
.properties-group .properties-group__name-wrap--whint {
  display: inline;
  padding-right: 10px;
}
.properties-group__name-wrap.whint{
  overflow: visible;
}
.properties-group .properties-group__name-wrap--whint .properties-group__name {
  padding-right: 0px;
}
.properties-group .hint {
  position: relative;
  top: -1px;
  left: 2px;
  right: auto;
  display: inline;
}
.properties-group .hint .hint__icon {
  background-color: #fff;
  background-color: var(--card_bg_hover_black);
  position: relative;
}
.hint .tooltip {
  position: absolute;
  left: -53px;
  top: 24px;
  line-height: 14px;
  z-index: 202;
  display: none;
  padding: 17px 20px 17px;
  min-width: 21px;
  max-width: 200px;
  font-size: 12px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-weight: 400;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.12);
  background: #fff;
  background: var(--card_bg_hover_black);
}

.hint .tooltip:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-width: 1px;
  border-bottom-color: #fff;
  border-bottom-color: var(--card_bg_hover_black);
  left: 22px;
  top: -5px;
}
/**/


