

/* Start:/local/components/binom/catalog.list/templates/section/css/layout.css?1771585051403*/
/* Стили для двухколоночной структуры */
.about__layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.about__left {
    flex: 1;
    min-width: 0;
}

.about__right {
    flex: 0 0 272px;
}

@media (max-width: 1024px) {
    .about__layout {
        flex-direction: column;
    }
    
    .about__right {
        flex: 1;
        width: 100%;
    }
}

/* End */


/* Start:/local/components/binom/catalog.list/templates/section/css/flats.css?17761639546179*/
/* Стили для контейнера квартир */
.flats-container {
  margin-top: 30px;
}

/* Элементы управления */
.flats-controls {
  margin-bottom: 30px;
}

.flats-controls__top {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.flats-market-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
  color: #000;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  border: 0;
  background: transparent;
  padding: 0;
}

.flats-market-btn:hover {
  color: rgba(12, 84, 160, 1);
}

.flats-market-btn.active {
  color: rgba(12, 84, 160, 1);
  background-color: transparent;
}

.flats-market-btn__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: #fff;
  border-radius: 12px;
  font-size: 8px;
  color: #000;
  height: auto;
}

.flats-market-btn.active .flats-market-btn__count {
  background: rgba(255, 255, 255, 0.4);
}

.flats-controls__middle {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.flats-view-btn-container {
  background-color: rgba(222, 234, 250, 1);
  padding: 0;
  height: auto;
  display: flex;
  width: auto;
  border-radius: 50px;
}

.flats-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
  color: #000;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0%;
  border: 0;
  background: transparent;
  padding: 8px 16px;
  border-radius: 50px;
}

.flats-view-btn:hover {
  border-color: #253970;
  color: #253970;
}

.flats-view-btn.active {
  background: #253970;
  color: #fff;
  border-color: #253970;
}

.flats-controls__bottom {
  margin-bottom: 20px;
}

.flats-sort-btn {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  color: #253970;
  text-decoration: underline;
  transition: all 0.3s;
}

.flats-sort-btn:hover {
  color: #0056b3;
}

/* Секции рынка */
.flats-market-section {
  margin-bottom: 40px;
}

.flats-market-section--hidden {
  display: none;
}

.flats-market-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.flats-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 40px 0;
}

.flats-divider--hidden {
  display: none;
}

/* Карточки квартир */
.flats-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.flat-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.flat-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.flat-card__image {
  width: 100%;
  height: 220px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.flat-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flat-card__no-image {
  color: #999;
  font-size: 14px;
}

.flat-card__content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.flat-card__badge {
  display: inline-block;
  color: rgba(132, 138, 146, 1);
  font-size: 11px;
}

.flat-card__price-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.flat-card__price {
  color: #000;
  flex: 1;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}

.flat-card__favorite-btn {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(12, 84, 160, 0.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.flat-card__favorite-btn:hover {
  background: rgba(12, 84, 160, 0.1);
}

.flat-card__favorite-btn.active {
  background: rgba(12, 84, 160, 1);
  border-color: rgba(12, 84, 160, 1);
}

.flat-card__favorite-btn.active svg path {
  stroke: #fff;
  fill: #fff;
}

.flat-card__favorite-btn svg {
  display: block;
}

.flat-card__price-per-m2 {
  font-size: 11px;
  color: rgba(132, 138, 146, 1);
}

.flat-card__params-line {
  font-size: 11px;
  color: #000;
  line-height: 1.4;
}

.flat-card__delivery {
  font-size: 11px;
  color: rgba(132, 138, 146, 1);
}

.flat-card__info {
  font-size: 11px;
  color: #000;
  line-height: 1.5;
}

.flat-card__info:last-child {
  margin-bottom: 0;
}

.flat-card__info-label {
  font-weight: 500;
  margin-right: 5px;
}

.flat-card__info-value {
  color: #333;
}

/* Контейнеры видов */
.flats-view-container {
  width: 100%;
}

.flats-view-container--hidden {
  display: none;
}

.flats-scheme-placeholder {
  min-height: 400px;
  background: #f5f5f5;
  border: 1px dashed #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
}

/* Индикатор загрузки */
.flats-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.flats-loading--hidden {
  display: none !important;
}

.flats-loading__spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #253970;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.flats-loading__text {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Адаптивность */
@media (max-width: 1200px) {
  .flats-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .flats-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .flat-card__price {
    font-size: 22px;
  }
}
/* End */
/* /local/components/binom/catalog.list/templates/section/css/layout.css?1771585051403 */
/* /local/components/binom/catalog.list/templates/section/css/flats.css?17761639546179 */
