

/* Start:/include/rebranding/menu_header/style.css?175023352010464*/
@media (min-width: 1120px) {
  .b2b-header__menu-list {
    height: 60px;
  }
	.b2b-header__menu-sub.b2b-header__menu-sub--row {
    flex-direction: row;
    gap: 2em;
  }
  .b2b-header__menu-sub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 45%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    z-index: 0;
    background-color: #F4F2F3;
    box-shadow: 0px 10px 15px 1px #00000029;
    border-top: 1px solid rgba(163, 163, 163, .8);
  }
  .b2b-header__menu-sub::after {
    content: '';
    z-index: 0;
    background-color: #F4F2F3;
    position: absolute;
    top: 0;
    left: 50vw;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    border-top: 1px solid rgba(163, 163, 163, .8);
  }
	._headerMenuDropdownItem:hover .b2b-header__menu-link:not(.b2b-header__menu-link--submenu)::after {
		content: '';
		position: absolute;
		bottom: -57px;
		rotate: 45deg;
		left: calc(40% - 12px);
		transform: translate(-50%, -50%);
		width: 18px;
		height: 18px;
		background-color: #F4F2F3;
		transition: opacity .2s ease-in-out;
	}
	.b2b-header__menu-link {
		padding-right: 2em;

		@media (max-width: 1200px) {
			padding-right: 1em;
		}
	}
}
.b2b-header__menu-list {
	display: flex;
	align-items: center;
	gap: 2.5em 0;
}
.b2b-header__menu-link {
	position: relative;
	z-index: 1;
	font-size: var(--menu-text-size);
	white-space: nowrap;

	@media (min-width: 1500px) and (max-width: 1840px) {
		font-size: 18px;
		padding-right: 1em;
	}

	@media (min-width: 1200px) and (max-width: 1300px) {
		padding-right: 1em;
	}
}
.b2b-header__menu-link:not(.b2b-header__menu-link--submenu):hover,
.b2b-header__menu-sub-link:hover {
	text-decoration: underline;
	text-underline-offset: 0.1em;
}
.b2b-header__menu-sub-link--current {
	color: var(--brand-color);
}
.b2b-header__menu-link--submenu {
	position: relative;
	z-index: 1;
}
.b2b-header__menu-link--current {
	color: var(--brand-color);
}
.b2b-header__menu-link::before {
	content: '';
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 88px;
	background-color: #F4F2F3;
	z-index: 0;
	transition: opacity .2s ease-in-out;
}
.b2b-header__menu-close {
	display: none;
}
.b2b-header__menu-item-contacts {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 20px;
}
.b2b-header__menu-item--submenu {
	position: static;
}
.b2b-header__menu-sub {
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease-in-out;
	position: absolute;
	left: 0;
	top: 100%;
	padding: calc(var(--rem) * 50) 40px;
	display: flex;
	flex-direction: column;
	gap: 1em;
	background-color: transparent;
	font-size: var(--button-text-size);
	align-items: flex-start;
}
.b2b-header__menu-sub-item {
	position: relative;
	z-index: 1;
}
.b2b-header__menu-sub-link {
  font-weight: 700;
  display: inline-block;
  line-height: 1.2;
}
.b2b-header__menu-submenu-link  {
  line-height: 1.2;
  display: inline-block;
}
.b2b-header__menu-item-mail {
	display: none;
}
.b2b-header__menu-item-mail,
.b2b-header__menu-item-phone {
	font-weight: 700;
	color: var(--brand-color);
	font-size: var(--menu-text-size);
}
.b2b-header__menu-submenu {
  margin-top: 7px;
  padding-left: 0;
  display: grid;
  gap: 7px;
}
.b2b-header__menu-submenu-link--current {
  color: var(--brand-color);
}
.b2b-header__menu-item-phone:hover,
.b2b-header__menu-item-mail:hover,
.b2b-header__menu-submenu-link:hover {
	text-decoration: underline;
	text-underline-offset: .2em;
}
.b2b-header__menu-item--submenu:hover .b2b-header__menu-sub,
.b2b-header__menu-item--submenu:focus-within .b2b-header__menu-sub {
	opacity: 1;
	pointer-events: all;
	transition: opacity .2s ease-in-out;
}
.b2b-header__menu-item-mail {
	display: none;
}
.content__btn-header {
	font-size: 12px;
	line-height: 18.2px;
	background-color: transparent;
  color: var(--brand-color);
	margin-top: 0.5em;
	padding: 0.715em 2em;
}
.content__btn-header:hover {
	background-color: var(--brand-color);
  color: #fff;
}
.b2b-header__menu-search {
	cursor: pointer;
}
.b2b-header__info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.b2b-header__menu-dropdown-btn > img {
	display: none;
}
.b2b-header__menu-dropdown-btn--arrow {
	/* display: none; */
	margin-left: calc(var(--rem) * 10);
	transition: all .2s ease-in-out
}
.b2b-header__menu-item--submenu:hover .b2b-header__menu-dropdown-btn--arrow {
	transform: rotate(180deg)
}
.b2b-header__menu-item--submenu:hover .b2b-header__menu-dropdown-btn--arrow > path {
	stroke: var(--brand-color)
}
.b2b-header__menu-link--active .b2b-header__menu-dropdown-btn--arrow > path {
	stroke: var(--brand-color)
}
@media (max-width: 1430px) {
	.b2b-header__menu-item-contacts {
		display: flex;
		flex-direction: column;
		gap: 0;
	}
	.b2b-header__menu-item-contacts .b2b-header__menu-item-phone {
		font-size: 14px;
	}
	.b2b-header__menu-item-contacts .b2b-header__menu-item-phone img {
		width: 35px;
		height: 35px;
	}
	.b2b-header__menu-item-contacts .content__btn-header {
		margin: 0;
	}
}

@media (max-width: 1120px) {
  /* dropdown mobile >> */
  ._headerMenuDropdownBtn {
    display: block;
    user-select: none;
    cursor: pointer;
    text-decoration: none !important;
  }
  ._headerMenuDropdownContent {
    max-height: 0;
    overflow: hidden;
    transition: all .4s ease-in-out !important;
  }
  /* << dropdown mobile */

	.b2b-header__menu-dropdown-btn {
		display: flex;
		justify-content: space-between;
	}
	.b2b-header__menu-dropdown-btn._headerMenuDropdownBtn .b2b-header__menu-dropdown-btn--plus {
		display: block;
	}
	.b2b-header__menu-dropdown-btn._headerMenuDropdownBtn--active > .b2b-header__menu-dropdown-btn--plus {
		display: none;
	}
	.b2b-header__menu-dropdown-btn._headerMenuDropdownBtn--active > .b2b-header__menu-dropdown-btn--minus {
		display: block;
	}
	.b2b-header__menu-link {
		margin: calc(var(--rem) * 30) 0 calc(var(--rem) * 20);
		display: block;
	}
	.b2b-header__menu-sub {
		opacity: 1;
		pointer-events: none;
		position: static;
		row-gap: 1em;
		background-color: transparent;
    padding: 0;
	}
	.b2b-header__menu {
		overflow: hidden;
	}
	.b2b-header__menu.active .b2b-header__menu-sub {
		pointer-events: all;
	}
	.b2b-header__menu-link--submenu {
		display: block;
	}
	.b2b-header__menu-link--submenu::after {
		content: '';
		position: absolute;
		top: 130%;
		left: 0;
		width: 90%;
		height: 2px;
		background-color: var(--brand-color);
		opacity: .5;
	}
	.b2b-header__menu-close {
		display: block;
		position: absolute;
    cursor: pointer;
		top: 2%;
		right: 2%;
		width: 26px;
		height: 24px;
		background: url(/local/templates/rebranding/assets/img/icons/close_white.svg) no-repeat center / contain;
	}
	.b2b-header__menu {
		opacity: 0;
		pointer-events: none;
		position: fixed;
		top: var(--header-height);
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #31171fe3;
		transition: opacity .2s ease-in-out;
	}
	.b2b-header__menu.active {
		opacity: 1;
		pointer-events: all;
		transition: opacity .2s ease-in-out;
		overflow-y: auto;
	}

	.b2b-header__menu-list {
    align-items: flex-start;
		flex-direction: column;
		color: #fff;
		padding-top: 1em;
		gap: 0;
		padding: calc(var(--rem) * 50);
		padding-right: calc(var(--rem) * 100);
	}
	.b2b-header__menu-item--submenu {
		width: 100%;
	}
	.b2b-header__menu-link {
		max-width: max-content;
	}
	.b2b-header__menu-contacts {
		display: block;
		padding-left: 3em;
		margin-bottom: 3em;
	}
	.b2b-header__menu-link,
	.b2b-header__menu-item-mail, 
	.b2b-header__menu-item-phone {
		font-size: calc(var(--rem) * 36);
	}
	.b2b-header__menu-sub-link {
		font-size: calc(var(--rem) * 30);
	}
	.b2b-header__menu {
		max-height: calc(100vh - var(--header-height));
	}
	.b2b-header__menu-item-mail {
		display: block;
	}
	.content__btn-header {
		display: none;
	}
  .b2b-header__info {
    display: none;
  }
	.b2b-header__menu-dropdown-btn--arrow {
		display: none;
	}
	.b2b-header__menu--hideOnMobile {
		display: none
	}
	.b2b-header__menu--hideDescendantsOnMobile > ul {
		display: none
	}
	.b2b-header__menu--hideDescendantsOnMobile .b2b-header__menu-dropdown-btn._headerMenuDropdownBtn .b2b-header__menu-dropdown-btn--plus,
	.b2b-header__menu--hideDescendantsOnMobile .b2b-header__menu-dropdown-btn._headerMenuDropdownBtn .b2b-header__menu-dropdown-btn--minus {
		display: none;
	}
}
@media (max-width: 500px) {
	.b2b-header__menu-link {
		font-size: calc(var(--rem) * 28);
	}
	.b2b-header__menu-sub-link  {
		font-size: calc(var(--rem) * 25);
	}
	.b2b-header__menu-list {
		padding-left: calc(var(--rem) * 20);
	}
	.b2b-header__menu {
		overflow-y: auto;
	}
}

/* search block >> */
@media (min-width: 1120px) {
	.b2b-header__menu {
		position: relative;
	}
	.b2b-header__search-mobile-block,
	.b2b-header__search-mobile-block.b2b-header__search-mobile-block--active {
		display: none;
	}
}
@media (max-width: 1120px) {
	.b2b-header__menu-list .b2b-header__menu-search {
		display: none;
	}
	.b2b-header__search-block,
	.b2b-header__search-block.b2b-header__search-block--active {
		display: none;
	}
}
.b2b-header__search-block {
  position: absolute;
  bottom: -4em;
	right: -4em;
	display: none;
}
.b2b-header__search-block--active {
	display: block;
}
.b2b-header__search-block input,
.b2b-header__search-mobile-block input {
	background-color: #FFFFFFE5;
	border: 1px solid #31171F66;
	width: 650px;
	max-width: 90%;
	padding: .7em 2em;
	border-radius: 30px;
}
.b2b-header__search-block input:focus-visible,
.b2b-header__search-mobile-block input:focus-visible {
	outline: none;
}
.b2b-header__search-block-close {
	position: absolute;
	display: block;
	width: 21px;
	height: 19px;
	top: .8em;
	right: 6em;
	cursor: pointer;
	background: url(/local/templates/rebranding/assets/img/icons/menu_close_000.svg) no-repeat center / contain;
}
.b2b-header__mobile-search {
	cursor: pointer;
}
/* << search block */
.b2b-header__mobile-search {
	cursor: pointer;
}
.b2b-mobile-lang-switch .b2b-lang-button {
	display: inline-flex;
}
/* End */


/* Start:/include/rebranding/lang_switch/style.css?1744357026106*/
#langSwitch {
  margin-top: .5em;
  font-size: 12px;
  line-height: 18.2px;
  padding: 0.715em 2em;
}
/* End */


/* Start:/include/rebranding/widget/style.css?17442769662268*/
.widget {
  background-color: #31171F;
  bottom: 0;
  right: 0;
  user-select: none;
  cursor: pointer;
  z-index: 100;
  font-size: 14px;
  color: #fff;
  box-sizing: border-box;
  overflow: hidden;
  width: calc(var(--rem) * 500);
}

.widget__header {
  font-weight: bold;
  background-color: #31171F;
  padding: calc(var(--rem) * 18);
  display: grid;
  grid-template-areas:
  'title close'
  'subtitle subtitle';
  grid-template-columns: auto calc(var(--rem) * 25);
  gap: calc(var(--rem) * 20);
  align-items: center;
}

.widget-min .widget__header {
  grid-template-areas:
  'title logo';
  grid-template-columns: auto calc(var(--rem) * 60);
}

.widget__logo {
  grid-area: logo;
}

.widget__title {
  font-size: var(--h2-text-size);
  line-height: 1.1;
  grid-area: title;
  margin: 0;
}

.widget__btn-close {
  cursor: pointer;
  padding: 0;
  top: -5px;
  height: 14px;
  width: 14px;
  background-color: transparent;
  border: none;
  position: relative;
  grid-area: close;
}

.widget__subtitle {
  font-size: calc(var(--rem) * 27);
  grid-area: subtitle;
  margin: 0;
}

.widget__content {
  padding: 0;
}

.widget__img {
  aspect-ratio: 350 / 206;
  width: 100%;
}

.widget__btns {
  padding: calc(var(--rem) * 25);
  gap: calc(var(--rem) * 20);
  display: grid;
  max-width: max-content;
}

.widget__btn {
  border: 2px solid #fff;
  background-color: transparent;
}

@media (min-width: 767px) {
  .widget {
    transform: translateY(100%);
    position: fixed;
  }

  .widget.active {
    animation-name: widget-active;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 1s;
  }

  .widget.hidden {
    animation-name: widget-hidden;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }

  #MinWidget {
    user-select: none
  }
}

@media (max-width: 767px) {
  #Widget,
  #MinWidget {
    display: none
  }
}

@keyframes widget-active {
  from { transform: translateY(100%)}
  to { transform: translateY(0) }
}

@keyframes widget-hidden {
  from { transform: translateY(0) }
  to { transform: translateY(100%) }
}
/* End */


/* Start:/include/rebranding/banner_1s/style.css?17503295102527*/
.banner1s {
  background-color: #31171F;
  background-image: url(/include/rebranding/banner_1s/img/bg.png);
  width: max-content;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  bottom: 0;
  user-select: none;
  cursor: pointer;
  z-index: 1000;
  font-size: 14px;
  color: #fff;
  box-sizing: border-box;
  overflow: hidden;
}

.banner1s__title {
  display: flex;
  padding-right: 30px;
}

.banner1s__header {
  font-weight: bold;
  padding: 35px;
  display: flex;
  justify-content: space-between;
  align-items: self-start;
}

.banner1s__btn-close {
  cursor: pointer;
  padding: 0;
  height: 14px;
  width: 14px;
  background-color: transparent;
  border: none;
  position: relative;
  top: -20px;
  right: -20px;
}

.banner1s__content {
  max-width: 400px;
  padding: 35px;
  padding-top: 0;
}

.banner1s__btn {
  width: max-content;
  margin-top: 10px;
  font-size: 14px;
  padding: 6px 20px 8px;
  line-height: 10px;
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.banner1s.active::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 5px;
  background: white;
  filter: blur(7px);
  opacity: 0.7;
  transform: rotate(-35deg);
  top: 45%;
  left: -130%;
}

.banner1s-min .banner1s__header {
  padding: 10px 20px;
  max-width: min-content;
  font-size: var(--h2-text-size);
  line-height: 1.2;
}

@media (min-width: 767px) {
  .banner1s {
    transform: translateY(100%);
    position: fixed;
  }

  .banner1s.active {
    animation-name: banner-active;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 1s;
  }

  .banner1s.hidden {
    animation-name: banner-hidden;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }

  .banner1s.active::before {
    animation: slide-line 5s infinite ease-in-out
  }

  #MinBanner1s {
    user-select: none
  }
}

@media (max-width: 767px) {
  #Banner1s {
    display: none
  }
  #MinBanner1s {
    width: 100%;
  }
  #MinBanner1sText {
    max-width: 100%;
  }
}

@keyframes banner-active {
  from { transform: translateY(100%)}
  to { transform: translateY(0) }
}

@keyframes banner-hidden {
  from { transform: translateY(0) }
  to { transform: translateY(100%) }
}

@keyframes slide-line {
  0% { left: -130% }
  100% { left: 130% }
}
/* End */
/* /include/rebranding/menu_header/style.css?175023352010464 */
/* /include/rebranding/lang_switch/style.css?1744357026106 */
/* /include/rebranding/widget/style.css?17442769662268 */
/* /include/rebranding/banner_1s/style.css?17503295102527 */
