

/* Start:/local/templates/enger/components/bitrix/menu/dm_catalog_dropdown/style.css?17667246393684*/
/* ---------- СПИСОК КАТАЛОГА ---------- */
:root {
    --dm-menu-active: #FF6B35;
    --dm-menu-gradient: linear-gradient(90deg, #FFED00, #E31E24);
}

.dm-catalog-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.dm-catalog-list__item {
    position: relative;
    margin: 2px 8px;
    border-radius: 10px;
    overflow: hidden;
}

.dm-catalog-list__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    color: var(--dm-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

/* Градиентное подчёркивание */
.dm-catalog-list__link::after {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 10px;
    height: 2px;
    background: var(--dm-menu-gradient);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover эффекты */
.dm-catalog-list__link:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(227, 30, 36, 0.05) 100%);
    color: var(--dm-menu-active);
 
}

.dm-catalog-list__link:hover::after {
    transform: scaleX(1);
}

/* Иконка стрелки */
.dm-catalog-list__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dm-catalog-list__icon svg {
    opacity: 0.3;
    transition: all 0.3s ease;
}

.dm-catalog-list__link:hover .dm-catalog-list__icon {
    background: rgba(255, 107, 53, 0.12);
}

.dm-catalog-list__link:hover .dm-catalog-list__icon svg {
    opacity: 1;
    stroke: var(--dm-menu-active);
    transform: translateX(2px);
}

/* Активный пункт */
.dm-catalog-list__item.active .dm-catalog-list__link {
    color: var(--dm-menu-active);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(255, 107, 53, 0.06) 100%);
    font-weight: 600;
}

.dm-catalog-list__item.active .dm-catalog-list__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--dm-menu-gradient);
    border-radius: 0 4px 4px 0;
}

.dm-catalog-list__item.active .dm-catalog-list__link::after {
    transform: scaleX(1);
    opacity: 0.6;
}

.dm-catalog-list__item.active .dm-catalog-list__icon svg {
    opacity: 0.7;
    stroke: var(--dm-menu-active);
}

/* Текст пункта */
.dm-catalog-list__text {
    flex: 1;
    line-height: 1.4;
    transition: transform 0.3s ease;
}

.dm-catalog-list__link:hover .dm-catalog-list__text {
    transform: translateX(2px);
}

/* Счётчик товаров (опционально) */
.dm-catalog-list__count {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.dm-catalog-list__link:hover .dm-catalog-list__count {
    background: rgba(255, 107, 53, 0.15);
    color: var(--dm-menu-active);
}

/* Разделитель между группами */
.dm-catalog-list__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
    margin: 8px 20px;
}
/* End */


/* Start:/local/templates/enger/components/bitrix/breadcrumb/universal/style.css?17682132443420*/

/* ========================================
   ENGER BREADCRUMBS STYLES
   ======================================== */
.enger-breadcrumb {
    display: flex;
    flex-wrap: wrap; /* Позволяем крошкам переноситься на новую строку */
    align-items: center;
    gap: 8px; /* Расстояние между элементами, включая стрелки */
    font-family: var(--enger-font); /* Используем шрифт из основной темы */
    padding: 16px 0; /* Отступы сверху и снизу */
    margin-bottom: 32px; /* Отступ перед следующим блоком контента */
    font-size: 14px; /* Базовый размер шрифта */
    color: var(--enger-text-secondary); /* Цвет текста для неактивных ссылок */
    line-height: 1.5; /* Высота строки для лучшей читаемости */
}

/* Стили для элемента-обертки одной крошки */
.bx-breadcrumb-item {
    white-space: nowrap; /* Запрещаем перенос текста внутри одной крошки */
    display: flex; /* Для выравнивания текста и потенциальных иконок внутри */
    align-items: center;
}

/* Стили для стрелки-разделителя */
.bx-breadcrumb-item-angle {
    color: var(--enger-text-muted); /* Мягкий, приглушенный цвет */
    font-size: 12px;
    line-height: 1; /* Гарантируем правильное вертикальное выравнивание */
    flex-shrink: 0; /* Запрещаем стрелке сжиматься */
}

/* Стили для ссылок в хлебных крошках */
.bx-breadcrumb-item-link {
    text-decoration: none; /* Убираем подчеркивание по умолчанию */
    color: var(--enger-text-secondary); /* Цвет ссылки по умолчанию */
    transition: var(--enger-transition); /* Плавный переход при наведении */
    display: flex; /* Для выравнивания текста */
    align-items: center;
    height: 100%; /* Занимает всю доступную высоту для удобства клика */
}

.bx-breadcrumb-item-link:hover {
    color: var(--enger-primary); /* Основной цвет темы при наведении */
}

/* Стили для текста внутри крошки (как для ссылок, так и для текущей страницы) */
.bx-breadcrumb-item-text {
    font-size: 14px; /* Явно задаем размер шрифта */
    line-height: inherit; /* Наследуем высоту строки от родителя */
}

/* Специфические стили для последнего элемента (текущей страницы), который не является ссылкой */
.bx-breadcrumb-item:last-child .bx-breadcrumb-item-text {
    color: var(--enger-dark); /* Более темный, акцентный цвет для текущей страницы */
    font-weight: 600; /* Полужирное начертание */
    pointer-events: none; /* Делаем элемент некликабельным */
    cursor: default; /* Меняем курсор на стандартный */
}

/* End */


/* Start:/local/templates/enger/styles.css?17682127976637*/
/* ======================================== CONTACTS PAGE ======================================== */
:root {
  --enger-primary: #E94820;
  --enger-primary-dark: #c73d1a;
  --enger-dark: #1a1a2e;
  --enger-dark-secondary: #252540;
  --enger-text: #2d2d2d;
  --enger-text-secondary: #5a5a5a;
  --enger-text-muted: #8a8a8a;
  --enger-white: #ffffff;
  --enger-light: #f5f6f8;
  --enger-border: #e0e3e8;
  --enger-shadow: 0 4px 16px rgba(0,0,0,0.08);
  --enger-shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
  --enger-radius: 8px;
  --enger-radius-lg: 16px;
  --enger-transition: 0.2s ease;
}

* {
  box-sizing: border-box;
}



.enger-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}



/* Main Contacts Section */
.enger-contacts-main {
  padding: 60px 0;
  background: var(--enger-light);
}

.enger-contacts-main__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.enger-contact-card {
  background: var(--enger-white);
  border-radius: var(--enger-radius-lg);
  border: 1px solid var(--enger-border);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: var(--enger-transition);
}

.enger-contact-card:hover {
  border-color: var(--enger-primary);
  box-shadow: var(--enger-shadow);
}

.enger-contact-card__icon {
  width: 64px;
  height: 64px;
  background: var(--enger-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.enger-contact-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--enger-primary);
}

.enger-contact-card__content {
  flex-grow: 1;
}

.enger-contact-card__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--enger-text-muted);
  margin: 0 0 8px;
}

.enger-contact-card__value {
  font-size: 24px;
  font-weight: 700;
  color: var(--enger-dark);
  margin: 0;
}

.enger-contact-card__value a {
  color: inherit;
  text-decoration: none;
  transition: var(--enger-transition);
}

.enger-contact-card__value a:hover {
  color: var(--enger-primary);
}

/* Section Header */
.enger-section-header {
  margin-bottom: 32px;
}

.enger-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--enger-primary);
  margin-bottom: 12px;
}

.enger-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--enger-dark);
  line-height: 1.25;
  margin: 0;
}

/* Branches Section */
.enger-branches {
  padding: 60px 0 80px;
  background: var(--enger-white);
}

.enger-branches__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.enger-branch-card {
  background: var(--enger-light);
  border-radius: var(--enger-radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--enger-transition);
  border: 2px solid transparent;
}

.enger-branch-card:hover {
  border-color: var(--enger-primary);
  transform: translateY(-4px);
  box-shadow: var(--enger-shadow-hover);
}

.enger-branch-card--warehouse {
  background: linear-gradient(135deg, #fff5f2 0%, #ffe8e2 100%);
}

.enger-branch-card__city {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.enger-branch-card__marker {
  width: 40px;
  height: 40px;
  background: var(--enger-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enger-branch-card__marker svg {
  width: 20px;
  height: 20px;
  color: var(--enger-white);
}

.enger-branch-card__city-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--enger-dark);
  margin: 0;
}

.enger-branch-card__type {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--enger-primary);
  background: rgba(233, 72, 32, 0.1);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.enger-branch-card__address {
  font-size: 15px;
  color: var(--enger-text-secondary);
  line-height: 1.6;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.enger-branch-card__address-icon {
  width: 18px;
  height: 18px;
  color: var(--enger-text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA Section */
.enger-contacts-cta {
  background: linear-gradient(135deg, var(--enger-dark) 0%, #2a2a45 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.enger-contacts-cta::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: url(/img/background.png) no-repeat right center;
  background-size: contain;
  opacity: 0.3;
}

.enger-contacts-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.enger-contacts-cta__text {
  flex: 1;
}

.enger-contacts-cta__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--enger-white);
  margin: 0 0 8px;
}

.enger-contacts-cta__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.enger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--enger-radius);
  border: none;
  cursor: pointer;
  transition: var(--enger-transition);
  white-space: nowrap;
}

.enger-btn--primary {
  background: var(--enger-primary);
  color: var(--enger-white);
}

.enger-btn--primary:hover {
  background: var(--enger-primary-dark);
  color: var(--enger-white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 72, 32, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
  .enger-branches__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .enger-contacts-cta__content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .enger-contacts-hero__title {
    font-size: 28px;
  }
  
  .enger-contacts-main__grid {
    grid-template-columns: 1fr;
  }
  
  .enger-branches__grid {
    grid-template-columns: 1fr;
  }
  
  .enger-contact-card {
    flex-direction: column;
    text-align: center;
  }
  
  .enger-contact-card__value {
    font-size: 20px;
  }
}
/* End */


/* Start:/local/templates/enger/template_styles.css?176605054611373*/
.stickyr {
  position: sticky;
  top: -360px;
    top: -300px;
}            
.baner-right {position: absolute;
    width: 210px;
    height: 460px;
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    padding: 15px;
    text-align: center;
    top: 350px;
    top: 280px;
    right: 80px;}
                    


@media  (max-width: 1800px){
.baner-right {
    display: none!important;
}}


.bx-yellow,
.bx-theme-yellow {
	--primary: #f9a91d;
	--theme-color-primary: #f9a91d;
	--theme-color-second: #faba4a;
	--theme-color-light: #f0f0f0;
	--theme-b-link: #f9a91d;
	--theme-b-link-hover: #faba4a;
	--theme-b-tx-primary: #fff;
	--theme-b-bg-primary: #f9a91d;
	--theme-b-bd-primary: #f9a91d;
	--theme-b-sd-primary: rgba(249, 169, 29, 0.5);
	--theme-b-tx-primary-hover: #fff;
	--theme-b-bg-primary-hover: #faba4a;
	--theme-b-bd-primary-hover: #daa53e;
	--theme-b-tx-primary-active: #fff;
	--theme-b-bg-primary-active: #faba4a;
	--theme-b-bd-primary-active: #daa53e;
	--theme-b-tx-primary-disabled: #fff;
	--theme-b-bg-primary-disabled: #daa53e;
	--theme-b-bd-primary-disabled: #b7853b;
}

.bx-blue,
.bx-theme-blue {
	--primary: #0083d1;
	--theme-color-primary: #0083d1;
	--theme-color-second: #5ca6e4;
	--theme-color-light: #f0f6f8;
	--theme-b-link: #44b1c9;
	--theme-b-link-hover: #5cc3d1;
	--theme-b-tx-primary: #fff;
	--theme-b-bg-primary: #0083d1;
	--theme-b-bd-primary: #0083d1;
	--theme-b-sd-primary: rgba(0, 131, 209, 0.5);
	--theme-b-tx-primary-hover: #fff;
	--theme-b-bg-primary-hover: #5ca6e4;
	--theme-b-bd-primary-hover: #5599d2;
	--theme-b-tx-primary-active: #fff;
	--theme-b-bg-primary-active: #5ca6e4;
	--theme-b-bd-primary-active: #5599d2;
	--theme-b-tx-primary-disabled: #fff;
	--theme-b-bg-primary-disabled: #5599d2;
	--theme-b-bd-primary-disabled: #4d8bbf;
}

.bx-red,
.bx-theme-red {
	--primary: #e22b2b;
	--theme-color-primary: #e22b2b;
	--theme-color-second: #e95c5c;
	--theme-color-light: #f0f0f0;
	--theme-b-link: #e22b2b;
	--theme-b-link-hover: #e95c5c;
	--theme-b-tx-primary: #fff;
	--theme-b-bg-primary: #e22b2b;
	--theme-b-bd-primary: #e22b2b;
	--theme-b-sd-primary: rgba(226, 43, 43, 0.5);
	--theme-b-tx-primary-hover: #fff;
	--theme-b-bg-primary-hover: #e95c5c;
	--theme-b-bd-primary-hover: #d05454;
	--theme-b-tx-primary-active: #fff;
	--theme-b-bg-primary-active: #e95c5c;
	--theme-b-bd-primary-active: #d05454;
	--theme-b-tx-primary-disabled: #fff;
	--theme-b-bg-primary-disabled: #d05454;
	--theme-b-bd-primary-disabled: #c04e4e;
}

.bx-green,
.bx-theme-green {
	--primary: #63aa28;
	--theme-color-primary: #63aa28;
	--theme-color-second: #5b9f0b;
	--theme-color-light: #a8d95b;
	--theme-b-link: #44b1c9;
	--theme-b-link-hover: #5cc3d1;
	--theme-b-tx-primary: #fff;
	--theme-b-bg-primary: #63aa28;
	--theme-b-bd-primary: #63aa28;
	--theme-b-sd-primary: rgba(99, 170, 40, 0.5);
	--theme-b-tx-primary-hover: #fff;
	--theme-b-bg-primary-hover: #5b9f0b;
	--theme-b-bd-primary-hover: #56940b;
	--theme-b-tx-primary-active: #fff;
	--theme-b-bg-primary-active: #5b9f0b;
	--theme-b-bd-primary-active: #56940b;
	--theme-b-tx-primary-disabled: #fff;
	--theme-b-bg-primary-disabled: #56940b;
	--theme-b-bd-primary-disabled: #497c09;
}

body {
	background-attachment: fixed;
	background-size: cover;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-family: "Montserrat",Arial, sans-serif;
}


::selection {color:#fff!important;background: #e73d1e;}

::-webkit-scrollbar{
    width:12px;
}
::-webkit-scrollbar-thumb{
    border-width:1px 1px 1px 2px;
    border-color: #777;
    background-color: #4a5158;
}
::-webkit-scrollbar-thumb:hover{
    border-width: 1px 1px 1px 2px;
    border-color: #000;
    background-color: #7b8186;
}

#pagetitle { margin-bottom: 35px; }

h1,h2,h3,h4,h5 {
	font-family: "Montserrat", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: normal;
}
    h2 {
        font-size: 1.5rem;
    }

.bx-content-section,
.bx-header-section {
	padding-bottom: 2px;
	/*background-color: rgba(255, 255, 255, .95);*/
}
.bx-content {position: relative;
    box-shadow: 5px 10px 45px rgb(0 0 0 / 8%);
    border-radius: 16px;
    padding: 40px 30px;}

.bx-wrapper { }

/*region HEADER*/
.bx-header {background: #f8f8f8; }

.bx-header-section { }

.bx-header-logo { order: 1 }

.bx-header-personal { order: 3 }

.bx-header-contact { order: 2 }


.zvonokmob {display: block;
    background: #4c525a;
    margin: 7px 0 6px 0;
    font-size: 14px;
    text-align: center;
    padding: 10px;
color: white;
    
}
.zvonokmob a{color:white;
    margin-left: 5px;
    text-decoration: none;}
    
    .zvonokmob a:hover {
    color: #dbdbdb;
}

.whatsapp {display: block;
    background: #d7d7d6;
    margin: 0 0 6px 0;
    font-size: 18px;
    text-align: center;
    padding: 5px;
}
.whatsapp a{color:#495159;
font-weight: bold;
    text-decoration: none; }
    .whatsapp a:hover {
    color: #001d5d;    
}

/*region Logo*/
.bx-logo-block {
	display: block;
	height: 85px;
	border-bottom: none;
}

.bx-logo-block img {
	max-height: 80px;
	width: auto;
}

@media (max-width: 767px) {
	.bx-logo-block img {
		max-width: 100%;
		max-height: 55px;
		width: auto;
		height: auto;
        margin-top: 2px;
	}

	.bx-header-logo {
		padding: 5px 50px;
		height: 55px;
		background-color: var(--theme-color-primary);
	}

	.bx-logo-block { height: auto; }

	body.bx-theme-green .bx-store-logo { background: #33b111; }
}

/*endregion*/

/*region included Phone*/
.bx-header-phone-block {
	display: flex;
	align-items: center;
}

.bx-header-phone-number {
	color: #000;
	white-space: nowrap;
	font: 700 21px/28px "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
	transition: 250ms linear all;
}

.bx-header-phone-icon {
	display: block;
	margin-right: 10px;
	width: 26px;
	height: 26px;
	background: no-repeat center url(/local/templates/enger/images/phone.svg);
}

@media (max-width: 991px) {
	.bx-header-phone-number { font: 600 15px/18px "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif; }
}

/*endregion*/

@media (max-width: 576px) {
    #pagetitle {
        margin-bottom: 15px;
    }

    #navigation {
        overflow-x: auto;
        max-height: 42px;
    }

    h1 {
        font-size: calc(1.275rem);
    }
    .bx-content {
    padding: 5px 10px;
}
}

/*region included Worktime*/
.bx-header-worktime {
	color: #000;
	font: 600 16px/22px "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
	transition: 250ms linear all;
}

.bx-worktime-title {
	color: #adadad;
	font: 12px "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.bx-worktime-schedule {
	color: #000;
	font: 12px "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (max-width: 991px) {
	.bx-header-worktime { font: 500 15px/18px "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif; }
}

/*endregion*/

/*endregion*/

.sidebar-block-title {
	color: #343434;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

/*region FOOTER*/
.bx-footer {position: relative; }

.bx-footer-section { }

.bx-footer-section .bx-block-title {font-size: 24px; }

.bx-footer-bg { background-color: #1f496a; }

.bx-footer-logo {
	border-bottom: none !important;
	text-decoration: none !important;
}

.bx-footer-logo img {
	max-width: 100%;
	height: auto;
}

/*endregion*/

.bx-inclinkspersonal-item.bx-theme-blue:hover { background: #0083d1; }

.bx-theme-blue.bx-inclinkspersonal-selected { background: #3398d7; }

.bx-inclinkspersonal-item.bx-theme-black:hover { background: #303030; }

.bx-theme-black.bx-inclinkspersonal-selected { background: #484848; }

.bx-inclinkspersonal-item.bx-theme-green:hover { background: #44b1c9; }

.bx-theme-green.bx-inclinkspersonal-selected { background: #5cc3d1; }

.bx-inclinkspersonal-item.bx-theme-red:hover { background: #e63c3c; }

.bx-theme-red.bx-inclinkspersonal-selected { background: #e95c5c; }

.bx-inclinkspersonal-item.bx-theme-yellow:hover { background: #f4a52e; }

.bx-theme-yellow.bx-inclinkspersonal-selected { background: #fbb859; }

/*region Bootstrap modified*/
.btn-primary,
.list-group-item.active {
	border-color: var(--theme-b-bd-primary);
	background-color: var(--theme-b-bg-primary);
	color: var(--theme-b-tx-primary);
}

.btn-primary:hover {
	border-color: var(--theme-b-bd-primary-hover);
	background-color: var(--theme-b-bg-primary-hover);
	color: var(--theme-b-tx-primary-hover);
}

.btn-primary:focus,
.btn-primary.focus {
	box-shadow: 0 0 0 0.2rem var(--theme-b-sd-primary);
}

.btn-primary.disabled,
.btn-primary:disabled {
	border-color: var(--theme-b-bg-primary);
	background-color: var(--theme-b-bg-primary);
	color: var(--theme-b-tx-primary);
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
	border-color: var(--theme-b-bd-primary-active);
	background-color: var(--theme-b-bg-primary-active);
	color: var(--theme-b-tx-primary-active);
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem var(--theme-b-sd-primary);
}

.form-control:focus {
	border-color: var(--theme-color-primary);
	box-shadow: 0 0 0 0.2rem var(--theme-b-sd-primary);
}

a,
.btn-link { color: var(--theme-b-link); }

a:hover,
.btn-link:hover { color: var(--theme-b-link-hover); }

.g-font-size-15 { font-size: 15px; }

.g-font-size-17 { font-size: 17px; }

.g-font-size-20 { font-size: 20px; }

.text-primary { color: var(--primary) !important }

.bg-primary { background: var(--primary) !important }

.border-primary { border-color: var(--primary) !important }

/*endregion*/

.bx-sidebar-block { }

.sidebar {    box-shadow: 5px 10px 45px rgb(0 0 0 / 8%);
    border-radius: 16px;
    text-align: center;
    padding-top: 40px;}

.sticky {
    position: sticky;
    top: 50px;
    min-height: 2em;
    z-index: 111;
}

.sidebar h2,
.sidebar h3,
.sidebar h4,
.sidebar h5 {
	text-transform: uppercase;
	font-size: 14px;
	font-family: "OpenSans-SemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.sidebar li {
	font-size: 12px;
	font-family: "OpenSans-SemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.sidebar-icon {
	width: 27px;
	height: 27px;
	margin-right: 5px;
	border-radius:50%;
	background-color: var(--theme-color-primary);
	background-repeat: no-repeat;
	background-position: center;
}

.sidebar-icon-label {
	background-image:  url(/local/templates/enger/images/label.svg);
	background-size: 19px auto;
}

.sidebar-icon-delivery {
	background-image: url(/local/templates/enger/images/delivery.svg);
	background-size: 17px auto;
}

.sidebar-icon-sale {
	background-image: url(/local/templates/enger/images/sale.svg);
	background-size: auto 17px ;
}

.sidebar-icon-self {
	background-image: url(/local/templates/enger/images/self.svg);
	background-size: auto 17px ;
}

.sidebar-icon-phone {
	background-image: url(/local/templates/enger/images/phone_white.svg);
	background-size: auto 21px ;
}


.bg-dark {
    background-color: black !important;
}

.text-light {
    color: #c9c9c9 !important;
}

.text-white {
    color: #939393 !important;
}

.tablica1 {overflow-x: auto;
    display: block;}

    .rutube {
    position: absolute;}
    .rutube_fon {
   background: white;
    bottom: 0;
    position: absolute;
    width: 100%;
    padding: 18px 6px;
}
/* End */
/* /local/templates/enger/components/bitrix/menu/dm_catalog_dropdown/style.css?17667246393684 */
/* /local/templates/enger/components/bitrix/breadcrumb/universal/style.css?17682132443420 */
/* /local/templates/enger/styles.css?17682127976637 */
/* /local/templates/enger/template_styles.css?176605054611373 */
