

/* Start:/local/components/s1/catalog/templates/novinki/bitrix/catalog.smart.filter/novinki_quick/style.css?17737581112579*/
#homeHighlights .novinki-filter {
	margin-bottom: 14px;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

#homeHighlights .novinki-filter__form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#homeHighlights .novinki-filter__row {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 16px 22px;
}

#homeHighlights .novinki-filter__row--top {
	align-items: center;
	justify-content: space-between;
}

#homeHighlights .novinki-filter__section {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 12px;
	min-width: 0;
}

#homeHighlights .novinki-filter__section--sort {
	flex: 1 1 auto;
}

#homeHighlights .novinki-filter__section--year {
	flex: 1 1 100%;
}

#homeHighlights .novinki-filter__label {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
	color: #96a0b1;
	white-space: nowrap;
}

#homeHighlights .novinki-filter__chips {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	min-width: 0;
}

#homeHighlights .novinki-filter__control {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

#homeHighlights .novinki-filter__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 13px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid transparent;
	color: #b7c0cf;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#homeHighlights .novinki-filter__chip:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #eef3fb;
}

#homeHighlights .novinki-filter__control:checked + .novinki-filter__chip {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.12);
	color: #fff;
}

#homeHighlights .novinki-filter__reset {
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 500;
	color: #8f9db4;
	text-decoration: none;
	transition: color 0.2s ease;
}

#homeHighlights .novinki-filter__reset:hover {
	color: #d7e2f4;
}

#homeHighlights .novinki-filter__noscript {
	padding-top: 4px;
}

#homeHighlights .novinki-filter__submit {
	height: 36px;
	padding: 0 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
}

@media (max-width: 767px) {
	#homeHighlights .novinki-filter__row--top {
		align-items: flex-start;
	}

	#homeHighlights .novinki-filter__section {
		flex: 1 1 100%;
	}

	#homeHighlights .novinki-filter__reset {
		padding-top: 2px;
	}
}

/* End */


/* Start:/local/components/s1/catalog/templates/novinki/bitrix/catalog.section/home_new_list/style.css?17737581116355*/
#homeHighlights.trial-box--highlights {
  margin-top: 0px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 26px rgba(0,0,0,0.20);
}
#homeHighlights .highlights-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
#homeHighlights .highlights-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
}
#homeHighlights .highlights-title::before{
  content:'';
  width:10px;
  height:10px;
  border-radius:999px;
  background: rgba(59,111,224,0.95);
  box-shadow: 0 0 0 4px rgba(59,111,224,0.16);
  flex: 0 0 auto;
}
#homeHighlights .highlights-subtitle {
  margin-top: 4px;
  color: #c8ceda;
  font-size: 13px;
  line-height: 1.4;
}
#homeHighlights .new-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#homeHighlights .new-item {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#homeHighlights .new-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

#homeHighlights .new-item__image-link {
  display: block;
  width: 72px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

#homeHighlights .new-item__image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

#homeHighlights .new-item:hover .new-item__image-link img {
  transform: scale(1.05);
}

#homeHighlights .new-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}

#homeHighlights .new-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

#homeHighlights .new-item__header {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

#homeHighlights .new-item__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity .2s;
}

#homeHighlights .new-item:hover .new-item__actions {
  opacity: 1;
}

#homeHighlights .new-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #aeb3bf;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

#homeHighlights .new-action-btn:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

#homeHighlights .new-action-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
}

#homeHighlights .new-action-btn.active {
  background: rgba(59,111,224,0.15);
  border-color: rgba(59,111,224,0.4);
  color: #64b5f6;
}

#homeHighlights .new-action-btn.active svg {
  fill: currentColor;
}

#homeHighlights .new-item__title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  text-decoration: none;
  transition: color .2s ease;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

#homeHighlights .new-item__title:hover {
  color: #64b5f6;
}

#homeHighlights .new-item__meta {
  font-size: 12px;
  line-height: 1.3;
  color: #9aa0ad;
  display: flex;
  align-items: center;
  gap: 8px;
}

#homeHighlights .new-item__footer {
  display: block;
  margin-top: 8px;
}

#homeHighlights .new-item__pills {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

#homeHighlights .mini-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  color: #e0e6ed;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  transition: all .2s ease;
  white-space: nowrap;
}

#homeHighlights .mini-pill:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

#homeHighlights .mini-pill--discuss {
  color: #ff8a80;
  border-color: rgba(255, 82, 82, 0.25);
  background: rgba(255, 82, 82, 0.1);
}

#homeHighlights .mini-pill--discuss:hover {
  background: rgba(255, 82, 82, 0.15);
  border-color: rgba(255, 82, 82, 0.4);
}

#homeHighlights .new-item__reactions {
  width: 100%;
}
#homeHighlights .new-pager {
  margin-top: 16px;
}

#homeHighlights .new-empty {
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  text-align: center;
}

#homeHighlights .new-empty__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

#homeHighlights .new-empty__text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #b8c1d3;
}

#homeHighlights .new-empty__reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  margin-top: 16px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(108,155,255,0.28);
  background: rgba(82,125,225,0.14);
  color: #dfeaff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
}

#homeHighlights .new-empty__reset:hover {
  background: rgba(82,125,225,0.22);
  color: #fff;
}

/* Spinner for bookmark/hide action buttons */
#homeHighlights .new-action-btn {
  position: relative;
}
#homeHighlights .new-action-btn.is-loading {
  opacity: .7;
  cursor: progress;
  pointer-events: none;
}
#homeHighlights .new-action-btn.is-loading svg {
  opacity: 0;
}
#homeHighlights .new-action-btn.is-loading::after {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  margin: auto;
  animation: ms-spin .6s linear infinite;
}

/* End */


/* Start:/bitrix/components/bitrix/system.pagenavigation/templates/modern/style.css?1773210807754*/
div.modern-page-navigation {
	padding: 0.5em 0;}
div.modern-page-navigation a,
span.modern-page-current,
span.modern-page-dots
{
	border-left-width: 1px;
	border-left-style: solid;
	padding-left: 0.75em;
	padding-right: 0.5em;
	text-decoration: none;
}
div.modern-page-navigation a.modern-page-previous {
	border-right-width: 1px;
	border-right-style: solid;
	border-left: none; }
div.modern-page-navigation a.modern-page-first,
div.modern-page-navigation span.modern-page-first {
	border-left: none;
	padding-left: 0.5em; }

span.modern-page-current {
	font-weight: var(--ui-font-weight-bold);
}
div.modern-page-navigation a,
span.modern-page-current,
div.modern-page-navigation a.modern-page-previous,
span.modern-page-dots {
	border-color: #cdcdcd; }

/* End */
/* /local/components/s1/catalog/templates/novinki/bitrix/catalog.smart.filter/novinki_quick/style.css?17737581112579 */
/* /local/components/s1/catalog/templates/novinki/bitrix/catalog.section/home_new_list/style.css?17737581116355 */
/* /bitrix/components/bitrix/system.pagenavigation/templates/modern/style.css?1773210807754 */
