

/* Start:/local/templates/imperialgarden/css/news.css?174350442017820*/
.news {
	overflow: hidden;
}

.news__items {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px 16px;
}

.news .news__contacts-line {
  position: relative;
  gap: 12px;
  justify-content: space-between;
}
.news .news__contacts-line .contacts__line-link:nth-child(3) {
  margin-left: 0;
}

.news__item {
  width: calc( ( 100% - 16px ) / 2 );
}

.news__item-img {
  position: relative;
  width: 100%;
  padding-top: 70%;
}

.news__item-img img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__item-content {
  padding-top: 20px;
}

.news__item-title {
  display: -webkit-box;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #2E2E2E;
  text-transform: uppercase;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news__item-date {
  font-size: 14px;
  line-height: 18px;
  color: var(--gray-dark-1);
}

.news__hero {
  position: relative;
  padding-top: 47%;
  width: 100%;
  margin-bottom: 40px;
}

.news__hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__title {
  margin-bottom: 40px;
  max-width: 985px;
}

.news__block:first-child {
  padding-top: 64px;
  border-top: 1px solid var(--gray-light-1);
}


.news__block .news__block-content {
  margin: 0 auto 48px;
}

.news__block .news__block-content--mb64 {
  margin: 0 auto 64px;
}

.news__block-text {
  font-size: 16px;
  line-height: 20px;
  color: var(--base-dark-gray);
}

.news__block-text:not(:last-child) {
  margin-bottom: 12px;
}

.news__block-text.news__block-text--heading {
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 32px;
  color: #2E2E2E;
}

.news__block-text--bold {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 24px;
  color: #2E2E2E;
  font-weight: 500;
}

.news__block .news__block-content--with-img {
  margin: 0 0 48px 0;
  max-width: unset;
  display: grid;
  grid-template-columns: auto 606px auto;
  grid-template-areas: 'left img img';
}

.news__block-wrap {
  grid-area: img;
}

.news__block-img {
  position: relative;
  padding-top: 56%;
  margin-bottom: 16px;
}

.news__block-img img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__block-footnote {
  font-size: 14px;
  line-height: 18px;
  color: var(--gray-dark-1);
}

.news__top {
  margin: 28px 0 48px;
}

@media (max-width: 1024px) {
  .news__item {
    width: 100%;
  }

  .news__item-content {
    padding-top: 16px;
  }

  .news__item-title {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 18px;
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }

  .news__hero {
    padding-top: 64%;
    margin-bottom: 32px;
  }
}

@media(max-width: 768px) {
  .news .news__contacts-line {
    padding: 24px 32px 0 0;
  }

  .news__block:first-child {
    padding-top: 40px;
  }

  .news__block-text.news__block-text--heading {
    font-size: 24px;
    line-height: 32px;
  }

  .news__block .news__block-content {
    margin-bottom: 40px;
  }

  .news__block .news__block-content--with-img {
    display: block;
    margin-bottom: 40px;
  }

  .news__block-img {
    padding-top: 70%;
    margin-bottom: 12px;
  }

  .news__top {
    margin: 16px 0 32px;
  }
}

.news-filter__top-container {
	display: grid;
	grid-template-columns: fit-content(130px) 1fr min(22vw, 318px);
	align-items: end;
	padding-bottom: 32px;
}

@media (max-width: 1024px) {
	.news-filter__top-container {
		display: flex;
		padding-bottom: 20px;
		padding-left: 16px;
	}
}

/*  */
/* Filter button */
.news-filter__button {
	font-family: inherit;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	text-wrap: nowrap;
	white-space: nowrap;
	padding: 10px 16px;
	margin: 0;
	border: none;
	cursor: pointer;
}

@media (max-width: 1024px) {
	.news-filter__button {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: -0.02em;
		padding: 7px 12px;
	}
}

/* Color */
.news-filter__button {
	transition: all .2s ease-in-out;
}

.news-filter__button--dark {
	color: var(--base-white);
	background-color: var(--green-dark);
}

.news-filter__button--light {
	color: var(--base-dark-gray);
	background-color: var(--gray-light-1);
}

.news-filter__button--light[aria-expanded="true"] {
	color: var(--base-white);
	background-color: var(--green-dark);
}

/* Shape */
.news-filter__button--squared {
	border-radius: 12px;
}

@media (max-width: 1024px) {
	.news-filter__button--squared {
		border-radius: 10px;
	}
}

.news-filter__button--rounded {
	border-radius: 400px;
}

/* Decoration */
.news-filter__button--plus-iconed {
	padding-right: 40px;
	position: relative;
}

.news-filter__button--plus-iconed::before,
.news-filter__button--plus-iconed::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 18.5px;
	width: 11px;
	height: 1px;
	background-color: currentColor;
	transition: opacity .3s;
}

.news-filter__button--plus-iconed::before {
	transform: translateY(-50%);
}

.news-filter__button--plus-iconed::after {
	transform: translateY(-50%) rotateZ(-90deg);
}

.news-filter__button--plus-iconed[aria-expanded="true"]::before {
	transform: translateY(-50%) rotateZ(180deg);
}

.news-filter__button--plus-iconed[aria-expanded="true"]::after {
	transform: translateY(-50%) rotateZ(0deg);
}

@media (max-width: 1024px) {
	.news-filter__button--plus-iconed {
		padding-right: 28px;
	}

	.news-filter__button--plus-iconed::before,
	.news-filter__button--plus-iconed::after {
		right: 10.5px;
	}
}

.news-filter__button--selected {

}
/* End Filter button */
/*  */

.news-filter__open-button {
	position: relative;
    z-index: 2;
}

.news-filter__short-parameters-item {
	position: relative;
	margin-top: 6px;
}

.news-filter__sorting-dropdown {
	position: relative;
}

.news-filter__short-parameter-button {
	position: relative;
}

.news-filter__short-selected-badge {
	box-sizing: content-box;
	position: absolute;
	top: 0;
	right: 0;
	width: fit-content;
	min-width: 4px;
	min-height: 12px;
	transform: translateX(6px) translateY(-7px);
	font-weight: 500;
	font-size: 10px;
	line-height: 12px;
	color: var(--base-white);
	background-color: var(--base-red);
	padding: 2px 6px;
	border: 2px solid var(--base-white);
	border-radius: 33px;
}

@media (max-width: 1024px) {
	.news-filter__short-selected-badge {
		transform: translateX(6px) translateY(-6px);
	}
}

.news-filter__short-setted-badge {
	box-sizing: content-box;
	position: absolute;
	top: 0;
	right: 0;
	width: fit-content;
	width: 8px;
	height: 8px;
	color: var(--base-white);
	background-color: var(--bright-red);
	border: 2px solid var(--base-white);
	border-radius: 33px;
}

.news-filter__short-parameters-wrapper {
	position: relative;
}

.news-filter__short-parameters-wrapper::before,
.news-filter__short-parameters-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	width: 12px;
	height: 100%;
	pointer-events: none;
  z-index: 1;
}

.news-filter__short-parameters-wrapper::before {
	left: 0;
	background: linear-gradient(to right, var(--gray-light), transparent);
}

.news-filter__short-parameters-wrapper::after {
	right: 0;
	background: linear-gradient(to left, var(--gray-light), transparent);
}

@media (max-width: 1024px) {
	.news-filter__short-parameters-wrapper::after {
		content: none;
	}
}

.news-filter__short-parameters-list {
	display: flex;
	gap: 12px;
	list-style: none;
	padding-left: 12px;
	padding-right: 12px;
	scroll-behavior: smooth;
}

.news-filter__short-parameters-list::-webkit-scrollbar {
	display: none;
}

.news-filter__short-values-list,
.news-filter__sorting-list {
	display: none;
	position: absolute;
	left: 0;
	top: calc(100% + 8px);
	min-width: 260px;
	max-width: 360px;
	max-height: 152px;
	padding: 12px 8px;
	border-radius: 16px;
	background: var(--gray-light-5);
	z-index: 10;
	list-style: none;
	transition: all ease-in-out .2s;
}

.news-filter__short-values-item,
.news-filter__sorting-item {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 7px 12px;
	font-size: 16px;
	line-height: 20px;
	color: var(--base-dark-gray);
	text-decoration: none;
	cursor: pointer;
}

.news-filter__short-values-item::before,
.news-filter__sorting-item::before {
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	border: 1px solid #B7B7B7;
	border-radius: 4px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 14px 14px;
	transition: background-image .3s;
}

.news-filter__short-values-item.active::before,
.news-filter__sorting-item.active::before {
	background-color: var(--base-white);
	background-image: url('/local/templates/imperialgarden/css/../images/icons/check.svg');
}

.news-filter__short-parameter-button[aria-expanded="true"],
.news-filter__sorting-toggle[aria-expanded="true"] {
	color: var(--base-white);
	background: var(--green-dark);
}

.news-filter__short-parameter-button[aria-expanded="true"]::after,
.news-filter__sorting-toggle[aria-expanded="true"]::after {
	opacity: 0;
}

.news-filter__sorting-toggle {
	width: 100%;
	text-align: left;
}

.news-filter__sorting-list {
	transition: all ease-in-out .2s;
}

.news-filter__short-values-item input {
	position: relative;
	appearance: none;
	background: transparent;
	width: 22px;
	height: 22px;
	border: 1px solid var(--gray-light-7);
	border-radius: 6px;
	cursor: pointer;
	transition: all .2s ease-in-out;
}

.news-filter__short-values-item input:checked::before,
.news-filter__short-values-item input:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--base-dark-gray);
}

.news-filter__short-values-item input:checked::before {
	width: 11px;
	height: 1.5px;
	transform-origin: 60% 50%;
	transform: translateX(-35%) translateY(-75%) rotateZ(-45deg);
}

.news-filter__short-values-item input:checked::after {
	width: 5px;
	height: 1.5px;
	transform-origin: 0% 50%;
	transform: translateX(-110%) translateY(-70%) rotateZ(45deg);
}

.news-filter__short-values-item label {
	flex-grow: 1;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
}

.news-filter__short-colors-list {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 260px;
	height: min-content;
	max-height: 160px;
	overflow-x: auto;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	list-style: none;
	background-color: var(--gray-light-5);
	padding: 12px 8px;
	border-radius: 16px;
	z-index: 1;
}

.news-filter__short-parameter-button[aria-expanded="false"] + .news-filter__short-colors-list {
	opacity: 0;
	pointer-events: none;
}

.news-filter__short-parameter-button[aria-expanded="true"] + .news-filter__short-colors-list {
	opacity: 1;
	pointer-events: all;
}

.news-filter__short-colors-item {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
}

.news-filter__short-colors-item input {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: none;
	appearance: none;
	cursor: pointer;
	transition: all .2s ease-in-out;
}

.news-filter__short-colors-item label {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	cursor: pointer;
	transition: all .2s ease-in-out;
}

.news-filter__short-colors-item input:checked {
	opacity: 0.65;
}

.news-filter__short-colors-item label {
	opacity: 0;
}

.news-filter__short-colors-item label::before,
.news-filter__short-colors-item label::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--base-dark-gray);
}

.news-filter__short-colors-item label::before {
	width: 11px;
	height: 1.5px;
	transform-origin: 60% 50%;
	transform: translateX(-35%) translateY(-75%) rotateZ(-45deg);
}

.news-filter__short-colors-item label::after {
	width: 5px;
	height: 1.5px;
	transform-origin: 0% 50%;
	transform: translateX(-110%) translateY(-70%) rotateZ(45deg);
}

.news-filter__short-colors-item input:checked + label {
	opacity: 1;
}

.news-filter__short-fields-list {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 260px;
	height: min-content;
	max-height: 160px;
	overflow-x: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-wrap: wrap;
	background-color: var(--gray-light-5);
	padding: 12px 8px;
	border-radius: 16px;
	z-index: 1;
}

.news-filter__short-parameter-button[aria-expanded="false"] + .news-filter__short-fields-list {
	opacity: 0;
	pointer-events: none;
}

.news-filter__short-parameter-button[aria-expanded="true"] + .news-filter__short-fields-list {
	opacity: 1;
	pointer-events: all;
}

.news-filter__short-fields-item {
	display: flex;
	gap: 8px;
	padding: 6px 6px;
	margin-right: 4px;
	margin-left: 4px;
	background-color: var(--base-white);
	border-bottom: 1px solid var(--gray-light-6);
	border-radius: 6px;
}

.news-filter__short-fields-item label {
	font-family: var(--tt-norms-pro);
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: var(--base-dark-gray);
}

.news-filter__short-fields-item input {
	appearance: none;
	flex-grow: 1;
	width: 123px;
	font-family: var(--tt-norms-pro);
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: var(--base-dark-gray);
	background: transparent;
	border: none;
	outline: none;
}

.news-filter__short-fields-item input[type="number"]::-webkit-outer-spin-button,
.news-filter__short-fields-item input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.news-filter__short-fields-item input[type="number"] {
    -moz-appearance: textfield;
}

.news-filter__short-fields-item input::placeholder {
	color: var(--gray-dark-1);
}

.news-filter__short-fields-item button {
	position: relative;
	width: 20px;
	height: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
}

.news-filter__short-fields-item button::before,
.news-filter__short-fields-item button::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 15px;
	height: 1.5px;
	background-color: var(--gray-light-7);
}

.news-filter__short-fields-item button::before {
	transform: translateX(-50%) translateY(-50%) rotateZ(-45deg);
}

.news-filter__short-fields-item button::after {
	transform: translateX(-50%) translateY(-50%) rotateZ(45deg);
}

.news-filter__sorting-toggle {
	position: relative;
	width: 100%;
    text-align: left;
}


.news-filter__sorting-toggle[aria-expanded="false"] + .news-filter__sorting-list {
	opacity: 0;
	pointer-events: none;
}

.news-filter__sorting-toggle[aria-expanded="true"] + .news-filter__sorting-list {
	opacity: 1;
	pointer-events: all;
}

.news-filter__sorting-item {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 6px 12px;
}

.news-filter__sorting-item input {
	position: relative;
	appearance: none;
	background: transparent;
	width: 18px;
	height: 18px;
	border: 1px solid var(--gray-light-7);
	border-radius: 50%;
	cursor: pointer;
	transition: all .2s ease-in-out;
}

.news-filter__sorting-item input:checked{
	border-width: 5px;
	border-color: var(--green-light-1);
}

.news-filter__sorting-item label {
	flex-grow: 1;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
}

.news-filter__bottom-container {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	border-top: 1px solid var(--gray-light-1);
	padding-top: 32px;
	margin-bottom: 32px;
}

@media (max-width: 1024px) {
	.news-filter__bottom-container {
		display: none;
	}
}

.news-filter__current-list {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	list-style: none;
}

.news-filter__current-item {
	display: flex;
	flex-wrap: nowrap;
}

.news-filter__current-value {
	display: block;
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
	color: var(--base-white);
	text-transform: uppercase;
	background-color: var(--gray-dark-8);
	border-radius: 400px 0 0 400px;
	padding: 7px 0 7px 14px;
}

.news-filter__current-button {
	position: relative;
	width: 30px;
	height: 100%;
	background-color: var(--gray-dark-8);
	border: none;
	border-radius: 0 400px 400px 0;
	margin-left: -0.5px;
	cursor: pointer;
}

.news-filter__current-button::before,
.news-filter__current-button::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 13.5px;
	width: 11px;
	height: 1px;
	background-color: var(--base-white);
}

.news-filter__current-button::before {
	transform: translateY(-50%) rotateZ(45deg);
}

.news-filter__current-button::after {
	transform: translateY(-50%) rotateZ(-45deg);
}

.news-filter__current-clear-button {
	position: relative;
	font-family: inherit;
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
	color: var(--base-dark-gray);
	text-transform: uppercase;
	background-color: var(--gray-light-5);
	border-radius: 400px 0 0 400px;
	padding: 7px 30px 7px 14px;
	border: none;
	border-radius: 400px;
	cursor: pointer;
}

.news-filter__current-clear-button::before,
.news-filter__current-clear-button::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 13.5px;
	width: 11px;
	height: 1px;
	background-color: currentColor;
}

.news-filter__current-clear-button::before {
	transform: translateY(-50%) rotateZ(45deg);
}

.news-filter__current-clear-button::after {
	transform: translateY(-50%) rotateZ(-45deg);
}

.news-filter__sorting-toggle-icon {
	display: none;
	width: 20px;
	height: 20px;
	background-color: currentColor;
	mask-image: url('/local/templates/imperialgarden/css/../images/icons/down-up-arrows.svg');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 20px 20px;
}

@media (max-width: 1024px) {
	.news-filter__sorting-toggle {
		width: 44px;
		height: 32px;
		padding: 7px 12px;
		margin-right: 8px;
	}

	.news-filter__sorting-toggle::before,
	.news-filter__sorting-toggle::after {
		content: none;
	}

	.news-filter__sorting-dropdown {
		order: -1;
	}

	.news-filter__sorting-toggle-title {
		display: none;
	}

	.news-filter__sorting-toggle-icon {
		display: block;
	}
}
/* End */


/* Start:/local/templates/imperialgarden/css/components/breadcrumbs.css?17515221951417*/
.breadcrumbs__container {
  width: 100%;
}

@media(max-width: 1024px) {
  .breadcrumbs__container {
    position: relative;
    width: 100vw;
    margin-left: -16px;
    z-index: 2;
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  color: var(--base-dark-gray);
  scrollbar-width: none;
}

.breadcrumbs::-webkit-scrollbar {
  display: none;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
  transition: color .3s;
}

.breadcrumbs li:hover {
  color: var(--gray-dark-1);
}

.breadcrumbs li:active {
  color: initial;
  opacity: 0.12;
}

.breadcrumbs li.active {
  color: var(--gray-dark-1);
  pointer-events: none;
}

.breadcrumbs li.active:hover {
  color: var(--base-dark-gray);
}

.breadcrumbs li.active:active {
  color: initial;
  opacity: 0.12;
}

.breadcrumbs li a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  display: block;
  font-size: inherit;
  line-height: inherit;
  color: var(--gray-dark-1);
}

@media(max-width: 1024px) {
  .breadcrumbs {
    flex-wrap: nowrap;
    padding-left: 16px;
    padding-right: 16px;
    overflow-x: scroll;
  }

  .breadcrumbs li {
    flex-shrink: 0;
  }

  .breadcrumbs li a {
    white-space: nowrap;
  }
}
/* End */
/* /local/templates/imperialgarden/css/news.css?174350442017820 */
/* /local/templates/imperialgarden/css/components/breadcrumbs.css?17515221951417 */
