﻿/* property-form
------------------------------------------------------------------- */

.property-form br {
  display: none;
}

.property-form p {
  line-height: 1.2;
  margin-top: 10px;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .property-form p {
    margin-top: 6px;
    padding-bottom: 6px;
  }
}

.property-form .property-title {
  width: 100%;
  display: block;
  font-size: var(--text-xxs);
  line-height: 1.2;
  font-weight: 500;
  margin: 0 0 1rem;
}

.mg__prop_label_radio {
  position: relative;
}

.mg__prop_label_radio,
.mg__prop_label_checkbox {
  display: flex;
  cursor: pointer;
  align-items: center;
}
.mg__prop_p_radio,
.property-container {
  display: flex;
  flex-wrap: wrap;
}
.mg__prop_label_radio .label-black,
.mg__prop_label_checkbox .label-black {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: var(--color-bg-accent);
  border-radius: 4px;
  height: 4rem;
  padding: 1rem 1.5rem;
  font-size: var(--text-xxs);
  line-height: 1.2;
  font-weight: 400;
  color: var(--color-text);
  transition:
    box-shadow 0.25s,
    color 0.25s;
  cursor: pointer;
  margin: 0 0.5rem 1rem 0.5rem;
  border: none;
  text-align: center;
}
.mg__prop_label_radio.active .label-black,
.mg__prop_label_checkbox.active .label-black {
  box-shadow: 0 0 0 2px var(--color-accent);
}
.product-page .select-type {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 330px;
}

.product-page .select-type select {
  border: 1px solid var(--color-border);
  border-radius: 5px;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s ease;
  background-color: var(--color-bg-accent);
}

.product-page__tabs .prop-string .prop-name {
  font-weight: 400;
}

.product-page__tabs .prop-string .name-group {
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 20px;
}

.product-page__tabs .prop-string .prop-item {
  padding: 10px 0;
  line-height: normal;
}


