/* это убираем стили кнопков "в избранное" и "в сравнение из карточек товара"
после того как закончу с каталогом, в карточке товара, необходимо этот стиль убрать и переверстать в карточке товара эти кнопки */
/* Стили для скрытия текста в кнопках сравнения и избранного */

.compare-button-calc {
  padding: 10px 20px;
  background-color: #FF8C00!important;
  color: black;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
  transition: background-color 0.3s;
  margin-top: 5px;
}
.point-img {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
}
.availability-text {
  border-bottom: 1px dashed #73b24e !important;
  cursor: pointer;
}
.modal-content.additional-class {
  display: flex;
  align-items: start !important;
  justify-content: left;
}

.addCompare, .addWishlist {
    font-size: 0px !important;
    position: relative;
    overflow: visible;
}

/* Стили для активных кнопок */
.addCompare.active, .addWishlist.active,
.addCompare.added, .addWishlist.added {
    font-size: 0px !important;
    background-color: #FFB800 !important;
}

/* Стили для иконок в активных кнопках */
.addCompare.active .icon-svg, .addWishlist.active .icon-svg,
.addCompare.added .icon-svg, .addWishlist.added .icon-svg {
    stroke: white !important;
    color: white !important;
}

/* Скрываем текст "Добавлено" */
.addCompare.active::after, .addWishlist.active::after,
.addCompare.added::after, .addWishlist.added::after {
    content: none !important;
    display: none !important;
    font-size: 0px !important;
}

/* Дополнительные стили для обеспечения белого цвета иконок в активном состоянии */
.addCompare.active svg, .addWishlist.active svg,
.addCompare.added svg, .addWishlist.added svg {
    stroke: white !important;
    color: white !important;
    fill: none !important;
}

/* Стили для анимации кнопок */
@keyframes buttonWave {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(255, 184, 0, 0);
    }
}

/* Стили для элемента анимации */
.button-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: -1;
}
.blueprint {
        margin: 40px 0;
        position: relative;
        background-color: #fff;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }
    
    .blueprint-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        position: relative;
    }
    
    .blueprint-title {
        position: relative;
    }
    
    .blueprint-title-stamp {
        background-color: #fff;
        border-left: 4px solid #FCB040;
        padding: 10px 20px;
        position: relative;
        overflow: hidden;
    }
    
    .blueprint-title-text {
        position: relative;
        display: flex;
        flex-direction: column;
    }
    
    .blueprint-title-main {
        font-size: 32px;
        font-weight: 700;
        color: #333;
        line-height: 1.2;
        position: relative;
    }
    
    .blueprint-title-sub {
        font-size: 28px;
        font-weight: 700;
        color: #FCB040;
        line-height: 1.2;
        margin-left: 50px;
    }
    
    .blueprint-controls {
        display: flex;
        gap: 10px;
    }
    
.blueprint-control {
  width: 40px;
  height: 43px;
  border-radius: 50%;
  background: #fff;
  color: #FCB040;
  border: 2px solid #FCB040;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;

  font-weight: bold;
  box-shadow: 0 2px 10px rgba(252, 176, 64, 0.1);
}
    
    .blueprint-control:hover {
        background: #FCB040;
        color: #fff;
        box-shadow: 0 5px 15px rgba(252, 176, 64, 0.2);
    }
    
    .blueprint-content {
        position: relative;
        overflow: hidden;
        padding: 10px 0;
    }
    
    .blueprint-slider {
        display: flex;
        transition: transform 0.5s ease;
    }
    
    .blueprint-item {
        flex: 0 0 15%;
        margin: 0 10px;
        box-sizing: border-box;
    }
    
    .blueprint-item-inner {
        position: relative;
        background-color: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .blueprint-item-inner:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-color: #FCB040;
    }
    
    .blueprint-item-corner {
        position: absolute;
        width: 15px;
        height: 15px;
        z-index: 2;
        transition: all 0.3s ease;
    }
    
    .blueprint-item-corner-tl {
        top: 0;
        left: 0;
        border-top: 2px solid #FCB040;
        border-left: 2px solid #FCB040;
    }
    
    .blueprint-item-corner-tr {
        top: 0;
        right: 0;
        border-top: 2px solid #FCB040;
        border-right: 2px solid #FCB040;
    }
    
    .blueprint-item-corner-bl {
        bottom: 0;
        left: 0;
        border-bottom: 2px solid #FCB040;
        border-left: 2px solid #FCB040;
    }
    
    .blueprint-item-corner-br {
        bottom: 0;
        right: 0;
        border-bottom: 2px solid #FCB040;
        border-right: 2px solid #FCB040;
    }
    
    .blueprint-item-inner:hover .blueprint-item-corner {
        width: 20px;
        height: 20px;
    }
    
    .blueprint-marker {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: #FCB040;
        color: #fff;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: bold;
        z-index: 2;
        box-shadow: 0 2px 8px rgba(252, 176, 64, 0.2);
    }
    
    .blueprint-image {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 180px;
        overflow: hidden;
        position: relative;
        border-bottom: 1px solid #eee;
    }
    
    .blueprint-image img {
        width: 25%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.5s ease;
    }
    
    .blueprint-item-inner:hover .blueprint-image img {
        transform: scale(1.05);
    }
    
    .blueprint-name {
        padding: 15px;
        text-align: center;
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .blueprint-name a {
        color: #333;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .blueprint-name a:hover {
        color: #FCB040;
    }
    
    @media (max-width: 1200px) {
        .blueprint-item {
            flex: 0 0 20%;
        }
    }
    
    @media (max-width: 992px) {
        .blueprint-item {
            flex: 0 0 30%;
        }
        
        .blueprint-title-main {
            font-size: 28px;
        }
        
        .blueprint-title-sub {
            font-size: 24px;
            margin-left: 30px;
        }
    }
    
    @media (max-width: 576px) {
        .blueprint-item {
            flex: 0 0 80%;
        }
        
        .blueprint-title-main {
            font-size: 24px;
        }
        
        .blueprint-title-sub {
            font-size: 20px;
            margin-left: 20px;
        }
        
        .blueprint-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }
        
        .blueprint-controls {
            align-self: center;
        }
    }

.news-logo {
  display: none;
}

.price-zag p {
  margin-left: 0.5rem!important;
}
.characteristics-title {
  padding-left: 1rem;
}


/* Для третьей колонки (Наши предложения, Область применения, Толщина) */
.characteristics-table td:nth-child(3) {
    border-left: 1px solid #f2f2f2;
}

/* Для пятой колонки (Дополнительный производитель, Длина, Количество шт. в упаковке) */
.characteristics-table td:nth-child(5) {
    border-left: 1px solid #f2f2f2;
}

.reviews-info {
	display: flex;
	flex-direction: column;
	}
	.reviewsBtnWrap .row img {
	vertical-align: middle;
	padding-right: 6px;
	margin-top: 0px;
	display: inline-block; 
	width: auto; 
	max-width: 100%; 
	height: auto;
	object-fit: contain;
	}
	.reviewsBtnWrap .row {
	  margin-top:1rem;
	  margin:0 !important;
	  font-size: 12px;
	  font-family: 'Montserrat', sans-serif;
	}
	.new-design {
	  display: flex;
	}
	/* Стили для блока цен */
.price-tab-item {
    display: none; /* Скрываем все блоки цен по умолчанию */
}

.price-tab-item.active {
    display: block; /* Показываем только активный блок */
}

.price-zag.ima {
  margin:0px;
}
.price-type-cont {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}
.tabs-new-con {
    display: flex;
    margin-top: 1rem;
}
.tabs-view-con {
    display: flex;
    width: 80%;
    margin-right: 1rem;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .25);
    border-radius: 15px;
}
.tabsContainer {
	width: 100%;
  }
  
  .tabList {
	display: flex;
	border-bottom: 1px solid #e0e0e0;
	background-color: #EEF0F1;
	border-radius: 15px 15px 0px 0px;
  }
  
  .tabButton {
	padding: 10px 20px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
	color: #333;
	transition: all 0.3s ease;
  }
  
  .LeftCont {
	box-shadow: 0 0px 5px 0 rgba(0, 0, 0, 0.25);
	border-radius: 15px;
	width: 80%;
	padding-bottom: 1rem;
	font-size: 13px;
  }
  
  .tabButton:hover {
	background-color: #ffb800;
	color: black;
  }
  
  .tabButton.active {
	color: white;
	background-color: #ffb800;
	border-radius: 15px 0px 15px 0px;
  }
  
  .tabContentContainer {
	position: relative;
  }
  
  .tabContent {
	padding: 20px;
	border-top: none;
	font-size: 13px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	box-sizing: border-box;
  }
  
  .tabContent.activeContent {
	opacity: 1;
	visibility: visible;
	position: relative;
  }
  
  .characteristicsContainer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
  }
  
  .characteristicsColumn {
	display: flex;
	flex-direction: column;
  }
  
  .characteristicItem {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 1px solid #e0e0e0;
  }
  
  .characteristicLabel {
	font-weight: bold;
	color: #666;
  }
  
  .characteristicValue {
	color: #333;
  }
  
  .docLink {
	color: #0066cc;
	text-decoration: none;
  }
  
  .docLink:hover {
	text-decoration: underline;
  }
  
  .review {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e0e0e0;
  }
  
  .review h4 {
	margin: 0 0 5px 0;
  }
  
  .rating {
	color: #ffc107;
	margin-bottom: 10px;
  }
  
  /* Стили для отзывов из Битрикс */
  #catalogReviews {
	margin-bottom: 20px;
  }
  
  .reviewItem {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e0e0e0;
  }
  
  .reviewItem.hide {
	display: none;
  }
  
  .reviewTable {
	display: flex;
	flex-wrap: wrap;
  }
  
  .reviewColumn {
	flex: 1;
	min-width: 250px;
	padding: 10px;
  }
  
  .reviewDate, .reviewName, .reviewRating {
	margin-bottom: 10px;
  }
  
  .label {
	font-weight: bold;
	color: #666;
  
  }
  
  .advantages, .limitations, .impressions {
	margin-bottom: 15px;
  }
  
  .controls {
	margin-top: 15px;
  }
  
  .controls a {
	margin-right: 10px;
	color: #0066cc;
	text-decoration: none;
  }
  
  /* Стили для формы добавления отзыва */
  #newReview {
	margin-top: 30px;
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 5px;
  }
  
  .heading {
	display: block;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
  }
  
  #newRating {
	margin-bottom: 15px;
  }
  
  .newReviewTable {
	display: flex;
	flex-wrap: wrap;
  }
  
  .newReviewTable .left,
  .newReviewTable .right {
	flex: 1;
	min-width: 250px;
	padding: 10px;
  }
  
  .newReviewTable label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
  }
  
  .newReviewTable textarea,
  .newReviewTable input[type="text"] {
	width: 100%;
	padding: 8px;
	margin-bottom: 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
  }
  
  .usedSelect {
	list-style: none;
	padding: 0;
	margin-bottom: 15px;
  }
  
  .usedSelect li {
	margin-bottom: 5px;
  }
  
  .usedSelect a {
	color: #0066cc;
	text-decoration: none;
  }
  
  .submit {
	display: inline-block;
	padding: 8px 15px;
	background-color: #ffb800;
	color: white;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
  }
  
  /* Стили для файлов */
  #files .wrap {
	margin-bottom: 20px;
  }
  
  #files .items {
	display: flex;
	flex-wrap: wrap;
  }
  
  #files .item {
	flex: 0 0 250px;
	margin: 0 15px 15px 0;
  }
  
  #files .tb {
	display: table;
	width: 100%;
  }
  
  #files .tbr {
	display: table-row;
  }
  
  #files .icon {
	display: table-cell;
	vertical-align: middle;
	width: 50px;
  }
  
  #files .info {
	display: table-cell;
	vertical-align: middle;
	padding-left: 10px;
  }
  
  #files .name {
	display: block;
	color: #0066cc;
	text-decoration: none;
	margin-bottom: 5px;
  }
  
  #files .parentName {
	color: #666;
	font-size: 12px;
  }
  
  /* Стили для видео */
  #video .wrap {
	margin-top: 15px;
  }
  
  #video .items {
	display: flex;
	flex-wrap: wrap;
  }
  
  #video .item {
	flex: 1;
	min-width: 300px;
	margin: 0 15px 15px 0;
  }
  
  .videoFrame {
	width: 100%;
	height: 250px;
	border: none;
  }
  
  @media (max-width: 899px) {
	.tabList {
	  display: flex;
	  overflow-x: auto;
	  white-space: nowrap;
	  -webkit-overflow-scrolling: touch;
	  scrollbar-width: none; /* Firefox */
	  -ms-overflow-style: none; /* IE and Edge */
	}
  
	/* Hide scrollbar for Chrome, Safari and Opera */
	.tabList::-webkit-scrollbar {
	  display: none;
	}
  
	.tabButton {
	  flex: 0 0 auto;
	  padding: 10px 15px;
	  font-size: 13px;
	}
  
	.characteristicsContainer {
	  grid-template-columns: 1fr;
	  gap: 10px;
	}
  
	.characteristicsColumn {
	  width: 100%;
	}
  
	.characteristicItem {
	  margin-bottom: 8px;
	  padding-bottom: 4px;
	}
  
	.tabContent {
	  padding: 15px;
	}
  
	.reviewTable {
	  flex-direction: column;
	}
  
	.reviewColumn {
	  width: 100%;
	  padding: 5px 0;
	}
  
	.newReviewTable {
	  flex-direction: column;
	}
  
	.newReviewTable .left,
	.newReviewTable .right {
	  width: 100%;
	  padding: 0;
	}
  
	#files .item {
	  flex: 0 0 100%;
	}
  
	#video .item {
	  min-width: 100%;
	}
  
	.videoFrame {
	  height: 200px;
	}
  }
.related-products-new-con {
    width: 20%;
    display: flex;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .25);
    border-radius: 15px;
    flex-direction: column;
    max-height:600px;
}
.related-products-new-con h2 {
  font-size: 13px;
  text-align: center;
  margin-top: 0.5rem;
}
.compact-slider-track div .product-card {
  width: 100%!important;
}
.related-slider-controls {
  margin-bottom: 15px;
}
.priceVal {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.priceChooseMeasure {
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.priceChooseMeasure:hover .priceVal {
    color: #ff6600;
}


.price-zag.niz {
  margin: top;
  margin-top: 0px !important;
}
	.right-new-design {
	  width: 20%;
	  margin-left: 1rem;
	  box-shadow: 0 0 5px 0 rgba(0,0,0,.25);
	  border-radius:
	15px;
	}
	.small-desc {
	  padding:
	0rem 1rem;
	}
	.left-new-design {
	  width: 80%;
	  box-shadow: 0 0 5px 0 rgba(0,0,0,.25);
	  border-radius:
	15px;
	
	  padding-bottom: 1rem;
	}
	.reviewsBtnWrap .label {
	
	display: flex;
	}
	.reviewsBtnWrap {
	display: flex;
	justify-content: space-between;
	margin-top:1rem;
	}

/* Сброс стилей */
.product-gallery * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  /* Основной контейнер галереи */
  .product-gallery {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	font-family: Arial, sans-serif;
	position: relative;
  }
  
  /* Контейнер для галереи */
  .gallery-container {
	display: flex;
	gap: 15px;
  }
  
  /* Миниатюры слева */
  .gallery-thumbs {
	flex: 0 0 80px;
  }
  
  .thumbs-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 400px;
	overflow-y: auto;
	padding-right: 5px;
  }
  
  .thumbs-list::-webkit-scrollbar {
	width: 4px;
  }
  
  .thumbs-list::-webkit-scrollbar-track {
	background: #f1f1f1;
  }
  
  .thumbs-list::-webkit-scrollbar-thumb {
	background: #ddd;
	border-radius: 4px;
  }
  
  .thumb-item {
	width: 70px;
	height: 70px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	transition: border-color 0.2s ease;
  }
  
  .thumb-item.active {
	border: 2px solid #FFD700;
  }
  
  .thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
  }
  
  /* Основное изображение */
  .gallery-main {
	flex: 1;
	position: relative;
	border: 2px solid #FFD700;
	border-radius: 8px;
	overflow: hidden;
	background-color: #fff; /* Добавлен белый фон */
  }
  
  .main-slider {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
  }
  
  .slider-track {
	display: flex;
	transition: transform 0.5s ease;
	height: 100%;
  }
  
  .slide-item {
  
	height: 100%;
	background-color: #fff; /* Добавлен белый фон */
  }
  
  .slide-image-container {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .slide-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
	cursor: pointer;
  }
  .left-new-design {
	width: 80%;
  }
  /* Иконка для увеличения */
  .fullscreen-icon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
	transition: background 0.2s ease;
  }
  
  .fullscreen-icon:hover {
	background: rgba(255, 255, 255, 0.9);
  }
  
  /* Навигационные стрелки */
  .nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.7);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #333;
	cursor: pointer;
	z-index: 10;
	transition: background 0.2s ease;
  }
  
  .nav-arrow:hover {
	background: rgba(255, 255, 255, 0.9);
  }
  
  .arrow-prev {
	left: 10px;
  }
  
  .arrow-next {
	right: 10px;
  }
  
  /* Модальное окно для полноэкранного просмотра */
  .fullscreen-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 1000;
	justify-content: center;
	align-items: center;
  }
  
  .modal-content {
	position: relative;
	width: 90%;
	height: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .fullscreen-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
  }
  
  .close-modal {
	position: absolute;
	top: 15px;
	right: 15px;
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	cursor: pointer;
  }
  
  .modal-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease;
  }
  
  .modal-nav:hover {
	background: rgba(255, 255, 255, 0.3);
  }
  
  .modal-prev {
	left: 20px;
  }
  
  .modal-next {
	right: 20px;
  }
  
  /* Адаптивность */
  @media (max-width: 768px) {
	.gallery-container {
		flex-direction: column-reverse;
	}
	
	.gallery-thumbs {
		flex: none;
		width: 100%;
	}
	
	.thumbs-list {
		flex-direction: row;
		max-height: none;
		overflow-x: auto;
		overflow-y: hidden;
		padding-bottom: 10px;
		padding-right: 0;
	}
	
	.main-slider {
		height: 300px;
	}
	
	.nav-arrow {
		width: 30px;
		height: 30px;
		font-size: 14px;
	}
  }
.tabs-new-con {
    display: flex;
    margin-top: 1rem;
}
.tabs-view-con {
    display: flex;
    width: 80%;
    margin-right: 1rem;
}

.price-zag.ima p {
	font-size: 14px;
	font-weight: 600;
	color: black;
  }
  .related-slider-item div .product-card {
	width: 100%;
  }
  
  .related-products-new-con {
    width: 20%;
    display: flex;
}

  .price-zag.ima {
	display: flex;
	align-items: center;
  }
  a.price.changePrice.nona {
	display: none;
  }
  .change-price123 {
	margin-left: 0.5rem;
	margin-right: 0.5rem;
  }
  
  .compact-slider-prev, .compact-slider-next {
	background:#f8f8f8;
	border:1px solid #e0e0e0;
	border-radius:50%;
	width: 24px;
	height: 24px;
	font-size: 12px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	margin:0 5px;
	display: none;
  }
  
  .tabList button {
	font-family: 'Montserrat', sans-serif;
  }
  
  .fullPrice_number {
	font-weight: bold;
  }
  
  .row.columnRow {
	display: flex;
	flex-direction: column;
  }
  i.fas.fa-plus {
	width: 100%;
	text-align: center;
	color: black;
	font-weight: bold;
  } 
  .fas.fa-minus{
	width: 100%;
	text-align: center;
	color: black;
	font-weight: bold;
  }
  .social.lala {
	margin-top: 15px;
	width: 100%;
	display: flex;
	justify-content: space-evenly;
  }
  @media (max-width: 1100px) {
	.left-new-design {
	  width: 100%!Important;
	}
	.right-new-des ign {
		width: 100%!important;
		margin-left: 0rem!important;
		box-shadow: 0 0 5px 0 rgba(0,0,0,.25);
		border-radius:
	  15px;
	  }
	.related-products-new-con {
		width: 100%!important;
		display: flex;
		box-shadow: 0 0 5px 0 rgba(0, 0, 0, .25);
		border-radius:15px;
		flex-direction: column;
		max-height: 600px;
		margin-top: 1rem;
	  }
	  .product-image {
		max-width: 100%!important;
		width: 100%;
		height: auto;
		border-radius:10px;
	  }
	  .price-num-and-card {
		width: 100%;
	  }
	  
	.price-zag {
		justify-content: inherit;
	  }
	  .cont-by-prem {
		display: flex;
		justify-content: space-around;
		margin-top: 2rem;
		flex-direction: column;
		margin-bottom: 1rem;
	  }
	  .prices-wrap {
		display: flex;
		margin:
	  	0.5rem;
	  }
	  
	.vverx {
		margin-bottom: 0rem!important;
	  }
	
	.new-design {
		display: flex;
		flex-direction: column;
	  }
	  .right-new-design {
		width: 100%;
		margin-left: 0rem;
		box-shadow: 0 0 5px 0 rgba(0,0,0,.25);
		border-radius:15px;
		margin-top: 1rem;
	  }
	  
	.prices-wrap {
		display: flex;
		flex-direction: inherit;
		justify-content: space-around;
		align-items: baseline;
	  }
	  .new-design {
		display: flex;
		flex-direction: column;
	  }
	  .new-design {
		display: flex;
		flex-direction: column;
	  }
	  .right-new-design {
		width: 100%;
		margin-left: 0rem;
		box-shadow: 0 0 5px 0 rgba(0,0,0,.25);
		border-radius:15px;
		margin-top: 1rem;
	  }
	  

  }	

.pipka.price-tab-item.active a {
	background-color: white;
  }
  .vniz.price-tabs-content div a {
	background-color: white !important;
	border: none!Important;
  }
  .price-zag.ima p {
	margin: 0;
	padding-right: 10px;
	display: flex;
	align-items: center;
	height: 100%;
	font-weight: bold;
  }
  
  








.art2 {
  display: none;
}
#logo img {
  vertical-align: middle;
  max-height: 80px!important;
  max-width: 100%!important;
}

.product-cart {
  display: flex;

}
.tab .tsk-obl-prods {
  border-radius: 5px;
}
.prod-sklad-a p {
  border: 1px solid;
  border-radius: 5px;
}
.catalog-section-list-pictures.clearfix::before {
  display: none;
}
.carousel-product-wrapper .product-card {
  height: 490px !important;
}
.catalog-section-list-pictures.clearfix {
  display: flex;
  flex-wrap: wrap;

  margin-top: 1rem;
}
.st1 {
  z-index: 500!important;
}


@media (max-width: 1920px) {
    .slider_middle #slider ul li span, .slider_middle #slider .slideVideoContainer, .slider_middle #slider .limiter, .slider_middle #slider .videoPoster {
        height: 445px;
        background-size: contain;
        background-repeat: no-repeat;
    }
}

/* template_style */ 
#slider {
    max-width: 100% !important;
    height: 360px !important;
}
.head-slider {
    width: 100%;
    /* margin-left: 1rem; */
    margin-top: 1rem;
}







/* Стили для иконок сравнения и избранного */
.icons-wish-and-compare {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.row {
    position: relative;
}

.hov-mes {
    position: relative;
}

/* Базовые стили для кнопок */
.addCompare, .addWishlist, 
.addCompare.custom-icon, .addWishlist.custom-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 0 5px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.addCompare:hover, .addWishlist:hover,
.addCompare.custom-icon:hover, .addWishlist.custom-icon:hover {
    background: #f0f0f0 !important;
}

.addCompare.active, .addWishlist.active,
.addCompare.custom-icon.active, .addWishlist.custom-icon.active,
.addCompare.custom-icon.added, .addWishlist.custom-icon.added {
    background: #FFB800 !important;
    color: #fff !important;
}

/* Стили для SVG-иконок */
.icon-svg, .addCompare svg, .addWishlist svg {
  position: relative !important;
  z-index: 100 !important;
  pointer-events: none !important;
  color: black;
}

.addCompare.active svg, .addWishlist.active svg,
.addCompare.custom-icon.active .icon-svg, 
.addWishlist.custom-icon.active .icon-svg,
.addCompare.custom-icon.added .icon-svg, 
.addWishlist.custom-icon.added .icon-svg {
    stroke: #fff !important;
}

/* Полностью отключаем псевдоэлементы */
.addCompare.custom-icon::before, 
.addCompare.custom-icon::after,
.addWishlist.custom-icon::before,
.addWishlist.custom-icon::after,
.addCompare.custom-icon.active::before,
.addCompare.custom-icon.active::after,
.addWishlist.custom-icon.active::before,
.addWishlist.custom-icon.active::after,
.addCompare.custom-icon.added::before,
.addCompare.custom-icon.added::after,
.addWishlist.custom-icon.added::before,
.addWishlist.custom-icon.added::after {
    display: none !important;
    content: none !important;
    background: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}
.bx-searchtitle .bx-input-group-btn button{
border: 1px solid black !important;
width: 60px!important;
}
/* Дополнительные стили для перекрытия стилей шаблона */
.addCompare.xix.label, .addWishlist.six.label {
    background-image: none !important;
}

.addCompare.xix.label.added, .addWishlist.six.label.added {
    background-image: none !important;
    background-color: #FFB800 !important;
}

/* Скрываем все возможные фоновые изображения */
.addCompare.xix.label.added[style*="background-image"],
.addWishlist.six.label.added[style*="background-image"] {
    background-image: none !important;
}

/* Убираем дублирование иконок */
.addCompare svg + svg,
.addWishlist svg + svg {
    display: none !important;
}

/* Стили для попапов */
.popup1 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 1000;
    text-align: center;
}

.popup1 a {
    display: inline-block;
    margin-top: 10px;
    color: #0066cc;
    text-decoration: none;
}

.hidden {
    display: none;
}
#logo {

  width: 100%!important;

}
.compare-mes {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    white-space: nowrap;
    padding-right: 10px;
}

.row:hover .compare-mes {
    display: block;
}

.arrow-5 {
    background: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    font-size: 12px;
}

.arrow-5-left:after {
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* Адаптивные стили для карточек товаров */
.items.productList {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    background-color: transparent;
    gap: 25px;
}

.product-card {
    width: calc(20% - 20px); /* 5 элементов в строку с учетом gap */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden !important;
    margin: 0 0 20px 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Обновленные стили для бейджей */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    z-index: 2;
    flex-wrap: wrap;
    max-width: 100%;
}

.badge {
    padding: 0px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    white-space: nowrap;
}

.badge-new {
    background-color: #000;
}

.badge-hit {
    background-color: #FFB800;
    color: #000;
}

.badge-sale {
    background-color: #9B59B6;
}

/* Полностью переопределяем стили для контейнера изображения */
.product-image {
    width: 100% !important;
    height: 180px !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    overflow: hidden !important;
    display: table !important;
    table-layout: fixed !important;
}

/* Используем table-cell для вертикального центрирования */
.product-image a {
    display: table-cell !important;
    vertical-align: middle !important;
    text-align: center !important;
    height: 180px !important;
    width: 100% !important;
    position: static !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    transition: none !important;
}

/* Принудительно сбрасываем все стили для изображения */
.product-image img {
    max-width: 100% !important;
    max-height: 180px !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
    vertical-align: middle !important;
    position: static !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.product-rating {
    display: flex;
    margin-bottom: 5px;
}

.star {
    color: #ccc;
    font-size: 16px;
}

.star-filled {
    color: #FFB800;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
    flex-direction: column;
    line-height: 14px;
}

.product-availability {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #0cc50b;
}

.availability-icon {
    margin-right: 5px;
}

.not-available {
    color: #666;
}

.product-article {
    font-size: 12px;
    color: #666;
}

.product-name-wrapper {
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
  flex-grow: 1;
  font-size: 13px !important;
}

.product-name {
    font-size: 13px !important;
    line-height: 1.3;

    position: relative;
    z-index: 1;
    width: 100%;
}

.product-name.expanded {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-height: none;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0 5px 5px;
    border-radius: 4px;
    z-index: 10;
}

.truncate-name {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.truncate-name.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.name-toggle {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #fff;
    padding: 0 3px;
    cursor: pointer;
    font-weight: bold;
    color: black;
    font-size: 14px;
    line-height: 1;
    z-index: 2;

}

.product-name a {
    color: #333;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.product-name a:hover {
    color: #FFB800;
}

/* Анимация блика при наведении */
.product-name a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.6), transparent);
    transform: skewX(-25deg);
    animation: none;
    pointer-events: none;
}

.product-name a:hover::before {
    animation: shine 1s ease-in-out;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}

.product-price-block {
    flex-shrink: 0;
    margin-top: auto;
}

.price-tabs {
    display: flex;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.price-tab {
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;

}

.price-tab.active {
    border-bottom: 2px solid #000;
}

.product-price-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.product-price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.cart-button {
    background-color: #FFB800;
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cart-button:hover {
    background-color: #FFA500;
}

.addCart.in-cart {
    background-color: #000;
    color: #fff;
}

.addCart.disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.addCart.subscribe {
    background-color: #3498db;
    color: white;
}

.addCart.requestPrice {
    background-color: #e74c3c;
    color: white;
}

.btn-simple {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    padding: 8px 0;
    border-radius: 4px;
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
}

.btn-simple:hover {
    background-color: #e5e5e5;
}

.one-click-buy {
    font-weight: bold;
}

/* Анимации для кнопок */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}

@keyframes ripple {
    0% { 
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.4);
    }
    70% { 
        box-shadow: 0 0 0 10px rgba(255, 184, 0, 0);
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0);
    }
}

/* Анимация волны при клике */
@keyframes buttonWave {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* Анимация при изменении цены */
@keyframes priceChange {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.price-value.changing {
    animation: priceChange 0.3s ease;
}

/* Стили для анимации кнопки */
.button-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 1400px) {
    .product-card {
        width: calc(25% - 20px); /* 4 элемента в строку */
    }
}

@media (max-width: 1100px) {

.catalog-section-list-pictures.clearfix {
  display: flex;

}
.brands-zags {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin:
  auto;
  }
.catalog-section-list-item-wp {
    background-color: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: unset!important;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    border: 1px solid orange;
}
.catalog-section-list-picture img {

    object-fit: cover!important;

}
.catalog-section-list-picture {

    height: 70px!important;

}
.catalog-section-list-description {
    display: none;
}
    .catalog-section-list-picture {
        width: 30% !important;
        height: 100px;
        overflow: hidden;
        position: relative;
        background-color: #f4f4f4;
    }
.catalog-section-list-content {
    width: 50%;
}
.catalog-section-list-pictures {
    display: flex;
    flex-wrap: nowrap!important;
    justify-content: space-evenly!important;
    margin-top: 1rem;
}
.catalog-section-list-pictures .catalog-section-list-item {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: 0 0 2px #ccc;
  border-radius: .25rem;
  text-align: center;
  padding: 0px;
  float: left;
  width: 100%!important;
  background: #fff;
  margin-right: 15px !important;
  margin-bottom: 0px !important;
  transition: all 0.3s ease;
margin-bottom:5px;
}
    .product-card {
        width: calc(33.333% - 20px); /* 3 элемента в строку */
    }
    
    .product-price-cart {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-price {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .product-card {
        width: calc(50% - 15px); /* 2 элемента в строку */
    }
    
    .price-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
    
    .price-tab {
        flex: 0 0 auto;
    }
}

@media (max-width: 480px) {
    .product-card {
        width: 100%; /* 1 элемент в строку */
    }
    
    .product-image {
        height: 150px !important;
    }
    
    .product-image a {
        height: 150px !important;
    }
    
    .product-badges {
        flex-wrap: wrap;
    }
    
    .badge {
        margin-bottom: 5px;
    }
    
    .icons-wish-and-compare {
        flex-direction: row;
        top: 5px;
        right: 5px;
    }
    
    .addCompare, .addWishlist,
    .addCompare.custom-icon, .addWishlist.custom-icon {
        width: 30px !important;
        height: 30px !important;
    }
    
    .icon-svg {
        width: 16px;
        height: 16px;
    }
}























    /* Стили для контейнера с аналогами */
.nested-products-wrapper {
  position: relative;
  max-height: 70px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

/* Градиент внизу скрытого контента */
.gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}

/* Стиль для кнопки */
.show-analogues-btn {
  position: relative;
  z-index: 3;
  margin-top: 10px;
  background-color: #ffb101;
  color: #000;
  border: none;
  padding: 5px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  display: block;
}

.show-analogues-btn:hover {
  background-color: #e69f00;
}

/* Скрытый чекбокс для управления состоянием */
.analogues-toggle {
  display: none;
}

/* Когда чекбокс отмечен, меняем высоту контейнера */
.analogues-toggle:checked + .nested-products-wrapper {
  max-height: 2000px; /* Достаточно большое значение, чтобы вместить весь контент */
}

/* Когда чекбокс отмечен, скрываем градиент */
.analogues-toggle:checked + .nested-products-wrapper .gradient-overlay {
  opacity: 0;
}


/* Основные стили меню */
.modern-menu-container {
    font-family: 'Montserrat', Arial, sans-serif;
    width: 100%;
    background-color: #fff;
    position: relative;
}
.cart-dropdown.active {
  z-index: 10000;
}
@media (min-width: 1101px) {
    .category-icon {
        display: none;
    }
}
@media screen and (max-width: 1099px) {
  .obl_contacts {

    display: none!important;
  }
}
.top-menu-row {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 15px;
}

.menu-wrapper {
    display: flex;
    align-items: flex-start;

}

/* Промо-кнопки */
.promo-buttons {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
  min-width: 120px;
}

.promo-button {
  display: block;
  padding: 0px;
  margin-bottom: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  border-radius: 4px;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease;
}

.promo-button.black {
    background-color: #000;
    color: #fff;
}

.promo-button.black:hover {
    background-color: #e0e0e0;
    color: #000;
}

.promo-button.yellow {
    background-color: #FFD700;
    color: #000;
}

.promo-button.yellow:hover {
    background-color: #e0e0e0;
    color: #000;
}

/* Основные категории */
.main-categories {
  display: flex;
  position: relative;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}

.category-item {
    position: relative;
}

.category-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s;
  white-space: nowrap;
  border: 1px solid orange;
  border-radius: 10px;
  padding: 5px;
}

.category-link:hover {
    color: #ff6600;
}

.category-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    object-fit: contain;
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 5px;
  color: #000;
}

/* Выпадающее меню */
.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    min-width: 800px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 20px;
    border-radius: 0 0 4px 4px;
z-index:5000;
}

.category-item:hover .dropdown-menu {
    display: block;
}

/* Проверка позиции выпадающего меню первого уровня */
.category-item:last-child .dropdown-menu,
.category-item:nth-last-child(2) .dropdown-menu,
.category-item:nth-last-child(3) .dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown-content {
    display: flex;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    flex: 1;
}

.subcategory-item {
    position: relative;
}

.subcategory-link {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
    font-size: 14px;
}

.subcategory-link:hover {
    color: #ff6600;
}

.subcategory-link.selected {
    color: #ff6600;
    font-weight: 500;
}

.subcategory-arrow {
    font-size: 10px;
    color: #999;
}

/* Третий уровень меню */
.submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px;
    border-radius: 4px;
    z-index: 1001;
    min-width: 200px;
}

.subcategory-item:hover .submenu {
    display: block;
}

/* Класс для подменю, которое открывается влево */
.submenu-left {
    left: auto;
    right: 100%;
}

/* Класс для изменения стрелки, когда подменю открывается влево */
.arrow-left .subcategory-arrow {
    transform: rotate(180deg);
}

.submenu-link {
    display: block;
    padding: 8px 10px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
    font-size: 14px;
}

.submenu-link:hover {
    color: #ff6600;
}

.submenu-link.selected {
    color: #ff6600;
    font-weight: 500;
}

/* Баннеры */
.dropdown-banner {
    flex: 1;
    margin-left: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    max-width: 400px;
}

.dropdown-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    text-align: left;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    border-radius: 4px;
}

.banner-content h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.dropdown-banners {
    flex: 1;
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}

.banner-half {
    background-color: #f0f0f0;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 500;
}

/* Стили для выделенных элементов */
.category-link.selected {
    color: #ff6600;
    font-weight: 600;
}

/* Мобильная кнопка меню */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    padding: 12px 15px;
    background-color: #ffa700;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    margin: 10px 15px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 16px;
    margin-right: 10px;
}

.menu-icon-line {
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-text {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

/* Мобильное меню */
.mobile-menu-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.mobile-menu-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-color: #fff;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.mobile-menu-header:before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
}

.mobile-menu-back {
    display: flex;
    align-items: center;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s;
    font-size: 13px;
}

.mobile-menu-back:hover {
    background-color: #f5f5f5;
}

.mobile-menu-back svg {
    margin-right: 5px;
}

.mobile-menu-back.hidden {
    visibility: hidden;
}

.mobile-menu-title {
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.mobile-menu-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.mobile-menu-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow-y: auto;
    padding: 0 0 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    opacity: 0;
}

.mobile-menu-section.active {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-section-title {
    padding: 16px;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-list {
    padding: 8px 0;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
}

.mobile-menu-item:hover {
    background-color: #f9f9f9;
}

.mobile-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    color: #666;
}

.mobile-menu-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-menu-link {
    flex: 1;
    padding: 14px 0;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: color 0.2s;
    pointer-events: none; /* Отключаем клики по ссылке, т.к. клик будет по всему элементу */
}

.mobile-menu-link:hover, 
.mobile-menu-link.selected {
    color: #ff6600;
}

.mobile-menu-arrow {
    color: #999;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
    pointer-events: none; /* Отключаем клики по стрелке, т.к. клик будет по всему элементу */
}

.mobile-menu-banner {
    margin: 16px;
    border-radius: 8px;
    overflow: hidden;
}

.mobile-menu-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-promo-buttons {
    display: flex;
    padding: 16px;
    gap: 10px;
    margin-top: 16px;
}

.mobile-promo-button {
    flex: 1;
    padding: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-promo-button.black {
    background-color: #000;
    color: #fff;
}

.mobile-promo-button.black:hover {
    background-color: #333;
}

.mobile-promo-button.yellow {
    background-color: #FFD700;
    color: #000;
}

.mobile-promo-button.yellow:hover {
    background-color: #f5cc00;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .dropdown-menu {
        min-width: 700px;
    }
}

@media (max-width: 1100px) {
    .menu-wrapper {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .mobile-menu-panel {
        height: 60%;
    }
}

/* Стили для новой корзины */
.cart-header {
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    position: relative;
}
  .new_head_search {
    width: 95%;
    margin: 5px;
    margin: auto;
  }
.cart-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    max-width: 300px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

.nav-icon {
    position: relative;
    margin-bottom: 5px;
}

.nav-item.active {
    color: #333;
    font-weight: bold;
}

.nav-item span {
    font-size: 12px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #FFC107;
    color: #333;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.min-order-message {
    display: flex;
    align-items: center;
    background-color: #FFF9C4;
    padding: 10px;
    border-radius: 4px;
margin-bottom;0px!important
}

.min-order-message svg {
    margin-right: 10px;
    color: #FBC02D;
}

.min-order-message span {
  font-size: 12px;
  font-weight: bold;
  line-height: normal;
}

/* Блюр оверлей - скрыт по умолчанию */
.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: none; /* Скрыт по умолчанию */
}

/* Стили для выпадающего окна корзины */
.cart-dropdown {
    display: none;
    position: absolute;
    top: 50%;
    right: 0;
    width: 320px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 400px;
}

.cart-dropdown-header {
    display: none; /* Скрыт по умолчанию */
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-weight: bold;
    font-size: 18px;
}

.cart-close {
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.cart-close:hover {
    color: #333;
}

.cart-dropdown.active {
    display: block;
}

.cart-dropdown-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 400px;
}

/* Стилизация скролла */
.cart-items-wrapper {
    flex: 1;
    overflow-y: auto;
    max-height: 300px;
    padding: 15px 15px 0 15px;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #FFC107 #f1f1f1; /* Firefox */
}

/* Стили для WebKit (Chrome, Safari, новые версии Edge) */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #FFC107;
    border-radius: 10px;
    transition: background 0.3s;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #FFB300;
}

/* Стилизация скролла для IE и Edge */
.custom-scrollbar {
    -ms-overflow-style: none;  /* IE и Edge */
    scrollbar-width: thin;  /* Firefox */
    scrollbar-color: #FFC107 #f1f1f1;  /* Firefox */
}

/* Добавляем эффект тени при скролле */
.cart-items-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.cart-items-wrapper.scrolled::after {
    opacity: 1;
}

.cart-items {
    margin-bottom: 15px;
    position: relative;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.cart-item:hover {
    background-color: #f9f9f9;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #eee;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.cart-item:hover .cart-item-image img {
    transform: scale(1.05);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-name {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.cart-item-price {
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

.cart-item-remove {
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 0 5px;
    transition: color 0.2s, transform 0.2s;
}

.cart-item-remove:hover {
    color: #E53935;
    transform: scale(1.2);
}

.custom-menu-list {
padding: 0;
  justify-content: space-evenly;

}
.cart-footer {
    position: sticky;
    bottom: 0;
    background-color: #fff;
    border-top: 1px solid #eee;
    padding: 15px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 -4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: bold;
}

.cart-total-price {
    color: #333;
    font-size: 16px;
}

.cart-checkout-button {
    display: block;
    width: 100%;
    background-color: #FFC107;
    color: #333;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: none;
}

.cart-checkout-button:hover {
    background-color: #FFB300;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.cart-checkout-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-full-cont {
  width: 65%;
}

.cart-empty {
    text-align: center;
    padding: 20px 0;
    color: #666;
}

/* Адаптивность */
@media (max-width: 768px) {
    .cart-navigation {
        width: 100%;
        max-width: 100%;
    }
}

/* Стили для экранов меньше 1100px */
@media (max-width: 1100px) {
    .cart-total {
  display: flex;
  justify-content: unset;
  margin-bottom: 15px;
  font-weight: bold;
}
.header-full-cont {
  margin: 2rem;
  height: auto;
  width: 65%;
}
    /* Фиксированная навигация внизу экрана */
    .cart-navigation {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        padding: 10px 20px;
        box-sizing: border-box;
        z-index: 998;
        margin-bottom: 0;
    }
    
    .nav-item {
        flex: 1;
        text-align: center;
        justify-content: center;
    }
    
    /* Сообщение о минимальном заказе внизу */
    .min-order-message {
        position: fixed;
        bottom: 70px;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
        z-index: 997;
    }
    
    /* Стили для блюр-оверлея */
    .blur-overlay {
        display: block;
    }
    
    .blur-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Стили для выезжающей корзины */
    .cart-dropdown {
        display: none; /* Скрыта по умолчанию */
        position: fixed;
        bottom: -100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #fff;
        border-radius: 15px 15px 0 0;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
        z-index: 1000;
        max-height: none;
        transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow: hidden;
    }
    
    .cart-dropdown.active {
        display: block;
        bottom: 0;
        opacity: 1;
        visibility: visible;
    }
    
    .cart-dropdown-content {
        max-height: calc(33vh - 60px);
        height: calc(33vh - 60px);
    }
    
    .cart-items-wrapper {
        max-height: calc(33vh - 140px);
    }
    .cart-footer.cart_cont {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  border-radius: 0;
  padding: 15px;
  box-sizing: border-box;
}
    .cart_cont {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 1px;
        background-color: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        border-radius: 0;
        padding: 0px;
        box-sizing: border-box;
    }
    
    /* Добавляем отступ снизу для контента, чтобы он не перекрывался фиксированным блоком */
    body {
        padding-bottom: 60px;
    }
    
    /* Стили для мобильного cart_cont */
    .mobile-cart-cont {
        position: fixed;
        bottom: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 999;
        padding: 15px;
        box-sizing: border-box;
        display: none;
    }
}

/* Стили для меню с уникальными классами */
.custom-header-menu {
    width: 100%;
    margin-top: 10px;
}

.custom-menu-list {
    display: flex;
	justify-content: space-between;
    list-style-type: none;

    font-size: 13px;
    width: 100%;
    flex-wrap: wrap;
}

.custom-menu-item {
    position: relative;
    display: flex;
    margin: 0 15px;
}

.custom-menu-link {
    display: inline-block;
    padding: 6px 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    border-radius: 5px;
    color: #333;
    font-weight: 500;
}

.custom-menu-link:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
    color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-menu-item.active .custom-menu-link {
    font-weight: bold;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .custom-menu-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .custom-menu-item {
        margin: 5px 10px;
    }
    

}
@media screen and (min-width: 1100px) {
    body {
        font-family: 'Montserrat', sans-serif;
    }
            .mobile-contacts{
                display:none;}
            .mobile-menu-content{
    display:none;
    }
    .mobobl {
      display: none;
    }
            .mobile-menu{
                display:none;
    }
    }
    
        @media screen and (max-width: 1100px) {
.news-nav-btn {
    width: 20px!important;
    height: 20px!important;

}
	.blueprint-control{
    width: 20px!important;
    height: 20px!important;
}
    .obl_contacts {
      display: none;
    }
      p.head-links {
        display: flex;
        margin: 0;
        margin-right: 0px;
        margin-right: 0px;
        padding-bottom: 0rem;
        margin-right: 1rem;
      }
  .logo-mobile-style div {
    display: flex;
    flex-direction: column;
  }
      p.head-links {
        display: flex;
      }
    .mobile-contacts div {
      width: 100%;
      display: flex;
      justify-content: space-around;
    }
            .logo-cont {
                order: 1;
                display: flex;
                align-items: center;
            }
            #logo img {
                max-height: 60px !important;
            }
            .mail_new_ahead {
      line-height: 0rem;
    }
    .cart-footer.cart_cont {
      display: flex;
      flex-direction: column;
    }
            .mobile-contacts div {
      width: 100%;
    }
    .mobile-contacts {
      display: flex;
      width: 100%;
    }
      #logo {
        text-align: left !important;
        margin-left: 0.7rem;
      }
            #logo {
                line-height: 50px!important;
            }
            .logo-mobile-style {
                display: flex;
                flex-direction: row-reverse;
                justify-content: space-between;
                align-items: center; /* Выравнивание по вертикальному центру */
                height: 70px; /* Фиксированная высота для контейнера */
            }
            .burger-menu {
                display: flex;
                order: 0;
                margin-right: 15px;
                cursor: pointer;
                z-index: 1001;
                flex-direction: column;
                justify-content: center; /* Выравнивание по вертикальному центру */
                height: 100%; /* Высота 100% от родителя */
            }
            
            .burger-menu span {
                display: block;
                width: 25px;
                height: 3px;
                background-color: #333;
                margin: 3px 0; /* Уменьшил отступы между линиями */
                transition: 0.3s;
            }
            
            .obl {
                flex-wrap: wrap;
            }
            
            .header-full-cont {
                order: 3;
                width: 100%!important;
            }
    
            .cart_cont {
                order: 2;
                display: flex;
                align-items: center; /* Выравнивание по вертикальному центру */
            }
            
            .mobile-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 75%;
                height: 100%;
                background-color: #fff;
                z-index: 1000;
                overflow-y: auto;
                transition: 0.3s;
                box-shadow: 0 0 10px rgba(0,0,0,0.2);
                padding: 20px;
            }
            
            .mobile-menu.active {
                left: 0;
            }
            
            .overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0,0,0,0.5);
                backdrop-filter: blur(5px);
                z-index: 999;
                display: none;
            }
            
            .overlay.active {
                display: block;
            }
            
            .mobile-menu-close {
                position: absolute;
                top: 15px;
                right: 15px;
                font-size: 24px;
                cursor: pointer;
            }
        }






















.related-product-item:hover {
  background-color: #fff!important;
}
.UpakNotice {
	font-size: 13px;
	color: #8c8c8c;
	display: flex;
	align-items: center;
	margin-bottom: 0rem;
  }
  
.tile {
box-shadow: 0 4px 10px rgba(0, 0, 0, 0)!important;
}
.nested-products-wrapper {
  max-height: 70px;
}
.related-products-list {
  margin: 0px;
}
.nested-products h4 {
  margin: 0;
  margin-left: 1rem;
}
.name-and-price h5 {
  margin: 0;
}
/* Анимации и переходы */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes priceUpdate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Основные стили */
.product-page {
  animation: fadeIn 0.5s ease-out;
}

.product-image img {
  transition: transform 0.3s ease;
}

.product-image img:hover {
  transform: scale(1.05);
}

#area-input {
  transition: all 0.3s ease;
  border: 2px solid #ddd;
  border-radius: 4px;
  padding: 8px;
  width: 100%;
}

#area-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
  outline: none;
}

#show-estimate {
  transition: all 0.3s ease;
  transform: translateY(0);
}

#show-estimate:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.related-product-item {
  transition: all 0.3s ease;
}

.related-product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nested-products-wrapper {
  transition: all 0.5s ease;
  max-height: 100px;
  overflow: hidden;
}

.nested-products-wrapper.expanded {
  max-height: 1000px;
}

.gradient-overlay {
  transition: opacity 0.3s ease;
}

.show-analogues-btn {
  transition: all 0.3s ease;
  background: #007bff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}













.product-page {
    display: flex;
    gap: 20px;
}

#show-estimate {
  background-color: #FFA500;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.product-image {
  position: sticky;
  top: 4.5rem;
  align-self: flex-start;
  width: 400px;
}
.product-info {
    flex: 1;
}
#area-input {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 2px solid #ffb101;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
#area-input:focus {
outline: none;
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.52);
}
.related-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.related-product-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
}
.nested-products-wrapper {
    margin-top: 15px;
}
.show-analogues-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.show-analogues-btn:hover {
    background-color: #0056b3;
}
    .product-page {
        font-family: Arial, sans-serif;
        margin: 0 auto;
        padding: 20px;
    }

    .product-title {
        font-size: 2.5em;
        color: #333;
        margin-bottom: 20px;
        text-align: center;
    }

    .product-content {
        display: flex;
        gap: 30px;
        margin-bottom: 40px;
    }

    .product-image {
        max-width: 400px;
        width: 100%;
        height: auto;
        border-radius: 10px;

    }
.product-image a img {
  border-radius: 15px;
}
    .product-info {
        flex: 1;
    }

    .product-preview, .product-description {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }

    .product-preview h3, .product-description h3 {
        color: #444;
        margin-bottom: 10px;
    }

    .related-products {
        margin-top: 40px;
    }

    .related-product-item {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 20px;
        margin-bottom: 20px;
    }

    .related-product-main {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .product-image-container {
        width: 150px;
        height: 150px;
        flex: none;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .related-product-main .product-image {
        width: 100%;
        height: 100%;
        object-fit: none;
        border-radius: 5px;
        box-shadow: none;
    }

    .name-and-price {
        flex: 1;
        padding-top:0px;
    }

    .product-name {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

.product-name a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}


    .square-meter-price {
        color: #4a4a4a;
        font-style: italic;
    }

    .nested-products-wrapper {
        position: relative;
        margin-top: 0px;
        padding-top: 0px;
        border-top: 1px solid #eee;
        max-height: 100px;
        overflow: hidden;
        transition: max-height 0.5s ease;
        padding-bottom: 16px;
    }

    .nested-products-wrapper.expanded {
        max-height: 1000px;
    }

    .nested-products h4 {
        font-size: 1.1em;
        margin-bottom: 10px;
        color: #555;
		margin:0px;
    }

    .nested-products-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .nested-product-item {
        width: calc(25% - 15px);
        background-color: #f0f0f0;
        border-radius: 5px;
        padding: 10px;
        transition: background-color 0.3s ease;
    }

    .nested-product-item:hover {
        background-color: #e0e0e0;
    }

    .nested-product-item .related-product-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nested-product-item .product-image-container {
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
    }

    .nested-product-item .product-name {
        font-size: 0.9em;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: 2.4em;
        line-height: 1.2em;
    }

.gradient-overlay {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.show-analogues-btn {
  position: absolute;
  bottom: 10px;
  right: 0;

  background-color: #FFA500;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

    .show-analogues-btn:hover {
        background-color: #FF8C00;
    }

    @media (max-width: 1200px) {
        .nested-product-item {
            width: calc(33.33% - 13.33px);
        }
    }

    @media (max-width: 992px) {
        .nested-product-item {
            width: calc(50% - 10px);
        }
    }

    @media (max-width: 768px) {
        .product-content {
            flex-direction: column;
        }

        .related-product-main {
            flex-direction: column;
            text-align: center;
        }

        .product-image-container {
            width: 100%;
            max-width: 200px;
            margin: 0 auto;
        }

        .nested-product-item {
            width: 100%;
        }

        .nested-product-item .product-image-container {
            max-width: 100px;
            margin: 0 auto 10px;
        }
    }
















.tab-nav label {
  width: 25%;
  margin: 0px 10px;
}


.button-technosonus.prod-sklad-a p {
  background-color: red;
  color: #000;
  background-color: #FF7A00;
  border-color: #FF7A00 #FF7A00 #fff;
  cursor: default;
  border-radius: 5px;
  padding: 5px 0px 5px 0px;
  transition: all ease 0.3s;
}
#technosonusWidgetButton:hover {
  color: black;
  transition: ease all 0.3s;
}
.button-technosonus.prod-sklad-a p:hover {
  color: black;
  transition: all ease 0.3s;
}
.tab-nav {
display: flex;
  margin-bottom: 1px;
  order: -1;
  background-color: #f4f4f4;
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
  width: 85%;
  margin: auto;
}
#technosonusWidgetButton {
    border: 0px;
    background: none;
    font: normal normal 15px "roboto_regular", arial, sans-serif;
    font-weight: normal;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: ease all 0.3s;
}




  li.ya-share2__item.ya-share2__item_service_twitter {
    display: none !important;
}
li.ya-share2__item.ya-share2__item_service_moimir {
    display: none !important;
}
.gradient-1 {
    background: rgb(252, 181, 20);
    background: linear-gradient(0deg, rgba(252, 181, 20, 1) 0%, rgba(252, 181, 20, 1) 20%, rgba(0, 212, 255, 0) 100%);
}
.gradient-2 {
    background: rgb(255,253,253);
    background: linear-gradient(0deg, rgba(255,253,253,1) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%);
}
.gradient-3 {
    background: rgb(168,168,168);
    background: linear-gradient(0deg, rgba(168,168,168,1) 0%, rgba(214,214,214,1) 20%, rgba(98,98,98,0) 100%);
}
.grad-cont {
display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 10px;
  border: 2px solid orange;
}
#middleSlider {

  max-height: 350px!important;
}
#mainMenu > li img {
    padding-right: 0px!important;
}
#mainMenu > li > a {
    padding: 0 10px!important;
}
#catalogElement #hint {
  z-index: 1000;
}
.inStock {
  color: #73b24e !important;
  text-decoration: none;
  margin-left: 15px!important;
}
.inStock.label.eChangeAvailable.getStoresWindow {
  margin: 0px !important;
}
.question {
  width: 24px;
  height: 24px;
  background-color: orange;
  border-radius: 15px;
  position: relative;
  margin-left: 5px;
}

.question::before {
  content: "?";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: white;
}
.timestamp-news {
    display: flex;
    position: absolute;
    bottom: 2px;
    left: 14px;
    position: absolute;
    width: 65px;
    font-weight: 700;
    font-size: 13px;
    overflow: hidden;
    white-space: nowrap;
z-index:1;
}



#vertical-multilevel-menu a.root-item {
  color: #fff;
  font-weight: initial;
  font-size: 16px !important;
  padding: 5px 0 7px 25px;
  background: #000 url() 0 0 no-repeat !important;
    background-color: rgb(0, 0, 0);
  background-color: rgb(0, 0, 0);
  background-color: rgb(0, 0, 0);
  background-color: rgb(0, 0, 0);
  background-color: rgb(0, 0, 0) !important;
  border: none;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  height: 50px !important;
  overflow: hidden;
  line-height: 40px;
  transition: 1s all;
}




.menu-hidden-on-main {
    display: none;
}
#vertical-multilevel-menu li a:hover {
  background-color: orange!important;
}
#vertical-multilevel-menu li a {
  display: block;
  text-decoration: none;
  font-weight: bold;
  padding: 13px;
    padding-right: 13px;
  background: white !important;
  background-color: white;
  border-bottom: 1px solid #C1C1C1;
}

.root-item.zag-root-item span {
  font-weight: bold;
}
#vertical-multilevel-menu li ul {
  margin: -50px 0 0 330px!important;

}
#vertical-multilevel-menu li ul.root-item {
  margin: -50px 0 0 330px !important;
  height: auto;
}
.root-item.zag-root-item {
  border-bottom: 1px solid white!Important;
}
.vert-menu-zag {
  font-weight: bold;
  color: orange;
  border-bottom: 1px solid aliceblue;
}
#slider {
  max-width: 100% !important;
  height: 310px !important;
}
.head-slider {
  width: 100%;
  margin-left: 1rem;
}
.vert-menu {
display: flex;
align-items: center;
}
.headblock {
  display: flex;
}
.vert-menu img {
margin-right: 8px; /* Расстояние между картинкой и текстом */
}
ul#vertical-multilevel-menu, #vertical-multilevel-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 330px!important;
  font-size: 12px;
}



.pop-kats-zag.brand-line-container {
    position: relative;
    width: 550px; /* Установите необходимые размеры */
    height: 300px; /* Установите необходимые размеры */

    margin: 92px auto; /* Центрируем контейнер */
}

#border_canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Чтобы canvas не блокировал события мыши */
}
.pop-kats-zag a {
    position: relative;
    display: inline-block;
}

#heading_border_canvas {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none; /* Чтобы canvas не блокировал события мыши */
}

.heading.popcont {
    position: relative; /* Чтобы текст был над canvas */
    z-index: 1;
}















.ajaxContainer.brand-cont .items .item {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

/* Класс для появления элементов */
.ajaxContainer.brand-cont .items .item.show {
    display: block;
    opacity: 1;
}
.pop-kats-zag {
    display: flex;

}


.show-all-brands a {
    color: white;
    background-color: orange;
    padding: 0.5rem;
    border-radius: 5px;
transition: all 1s;
}
.show-all-brands a:hover {
    background: black;
    transition: all 1s;
}
.show-all-brands {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 15px;
}
.pop-kats.brand-line-cont {
    display: flex;
    padding: 1rem 0px 1rem 0rem;
    margin-top: 24px;
}
.ajaxContainer.brand-cont {
  border-radius: 5px;
  background-image: url(/upload/medialibrary/caf/hyynwlx57nwt7tfd7hdgdd05f4113lnh/pngegg2132133333.png);
  background-position-x: 20rem;
  background-repeat: no-repeat;
  width: 100%;
}
.pop-kats-zag {
display: flex;

}
.ajaxContainer.pop-cont {
    width: 100%;
}.in-cart {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

#popSection {
    padding-bottom: 0px !important;

}
#popSection .item {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-right: none !important;
    border-bottom: none !important;
    background-color: none !important;
    overflow: hidden;
    height: 170px;
    float: left;
    width: 100%;
}
#popSection .nameWrap {

    margin-top: 0px !important;

}
.nameWrap a.name {
    color: white ! Important;
}
#main {
    margin-top: 0px!important;

}
#slider {
    max-width: 100% !important;
}
.product .addCart {
    display: flex!important;
}
.cont-of-pr {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
a.addCart.added {
    color: white;
}
.product .price {
    font-family: 'robotobold';
    font-size: 14px!important;
    display: block;
    text-decoration: none;
}

.product .addCart {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-size: 14px !important;
    text-align: center;
    display: block;
    text-decoration: none;
    margin-top: 20px;
    margin-bottom: 12px;
    border-radius: .25rem;
    display: flex;
	font-weight: 600;
	color: black;
    justify-content: space-around;
	padding: 0.5rem 0rem 0.5rem 0rem;
}
a.fastBack.label {
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    width: 100%;
    display: flex;
    background: #ffb800;
    border-radius: 5px;
    padding: 0.5rem 0rem 0.5rem 0rem;
    justify-content: center;
}
.product .price {
    color: white !important;
}
.addCart.requestPrice {
    color: white !important;
}
.product .label:hover {
    color: #000000;
    background-color: #ffa800;
}


.pop-kats-zag {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.pop-kats {
    display: flex;
    padding: 5rem 0px 5rem 0rem;
}
.pop-kats-zag a .heading {
    font-size: 30px !important;
    color: orange !important;
}


.social.lala {
    margin-top: 15px;
}

p.head-links {
    margin-top: 4px!important;
}
#footer {
    position: relative;
}
#rightFooter {
    width: 15%!important;
}
#leftFooter .column {
    width: 21.5%!;
}
.footerRow .column span img {
    z-index: 1;
    position: relative;
}
.footerRow .column:first-child {
    width: 35% !important;
    position: relative;
    color: orange;
    z-index: 300;
    background-color: none;
}
 #rightFooter .hr {
    padding-top: 12px;
    color: white !important;
    z-index: 700;
    position: relative;
    font-weight: 500;
    font-size: 15px !important;
} 

#leftFooter .column {
    width: 21%;
    padding-right: 30px;
    margin-right:5px;
}
#leftFooter a {
    margin-right: 5px;
}
.footerRow .column:first-child p:nth-of-type(2) {
    display: flex;
    justify-content: right;
    margin-right: 25px;
}

#leftFooter .column span img {
    margin: auto;
    display: flex;
}
#leftFooter .column {
    position: relative;


}
.creator p {
    line-height: 20px!important;
}
#footerBottom {
    line-height: none !important;

}
ul.footerMenu li a {
    color: white !important;
    z-index: 700;
    position: relative;
    font-weight: 700;
    font-size: 15px !important;
}
.footerRow .column:first-child p:first-of-type {
    margin-top: 15px;
}
.column a img {

    display: flex;
}














.elementDelete {
    display: flex;


}
.pipka {
    margin-right: 5px;
}
.vverx {
    position: relative;
}
.tsk-modal-calc {
    height: 40px;
position: absolute;
    right: 0;
}
span.priceContainer {
    font-weight: 500!important;

}
a#popupButton2 {
    display: block;
    content: "";
    left: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
    background: url(/bitrix/templates/dresscodeV2/headers/header9/css/wishCompImage1.png) 0 0 no-repeat;
    transition: all 0.2s ease-in-out;
    background-position: -3px -55px;
    margin: auto;
    border: 1px solid #e7e8ea;
    margin-top: 5px;
/*     background-position: -55px -55px;
    background-color: #fcb514; */
}

div#content-2 {
    padding: 0px !important;
}
.podmenu.vizible {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-height: 100vh;
  overflow-y: auto;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#mainMenu .removedItemsLink .removedItemsList {
    box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.2);
    /* margin: 0px 0px 0px -211px; */
    background-color: #1a1a1a;
    position: absolute;
    list-style: none;
    display: none;
    padding: 0px;
    z-index: 100;
    width: 100%!important;
top: 60px;
    left: 0px!important;
margin:0px!important;
}
.total-price-add {
    font-weight: 600;
}
.basketItemsRow.parent {
    display: flex;
    align-items: center;
	margin: 1rem 0rem 1rem 0rem;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    position: relative;
}
span.measure {
    width: 100%;
    text-align: center;
}
a.price {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.personalInfoLabel.notice-123 {
    background-color: black;
    padding: 1px;
    color: #ffa800;
}

.article-cart {
  display: flex;
  justify-content: flex-start;
  font-size: 12px !important;
  font-weight: 600;
}
.article-cart p {
    margin: 0;
}
.basketQty {
    display: flex;
    justify-content: center;
}
.elementDelete a {
    width: width;
    width: 20px;
    height: 20px;
    display: block;
background-image: url(/upload/medialibrary/404/udcyvphbch8748ol2zaaxuk2hyci8hlh/crest.png);
  background-size: contain;
  display: flex;
  justify-content: center;
}
.pic-add a img {
    display: flex;
    width: 50%;
    margin: auto;
}
.name-prod-add {
    width: 60%;
}
.elementDelete {
  position: absolute;
  right: 5px;
  top: 5px;
}
.pic-add {
    width: 20%;
}
.name-prod-add {
    /* width: 60%; */
    color: black !important;
}
.bQty {
    width: 15%;
}
.bal {
    width: 25%;
}
span.priceContainer {
    /* display: flex; */
    font-weight: 700;
    text-align: center;
}
.name-prod-add a {
    color: black;
}







.prices-cont {
    display: flex;
}

.vverx {
  display: flex;

}
.price-block {
  margin-right: 10px;
}

 @keyframes colorChange {
            0% {
color: white;
}
100% {
color: orange;
}
}


.sklad {
animation: colorChange 2s infinite alternate;
background-color: #ffffff1c;
}



.tsk-modal-body .price.fullPrice.price-num {
    display: none !important;
}
div#result {
    margin-top: 1.1rem;
}
.tsk-modal-body .upto a {
    max-width: 100%;
}
.tsk-modal-body .upto {
    margin-top: 1.1rem;
}
.but-and-in {
    display: flex;
    margin-top: 1.1rem;
    align-items: baseline;
}
.total-count-modal {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 25px;
    margin: 15px 0px 15px 0px;
}
.tsk-modal-body a {
    width: 100%!important;
}
.total-modal-price {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 25px;
    margin: 15px 0px 15px 0px;
}


.prices-points {
    margin-right: 5px;
}
.number-of-modal {
    display: flex;
    width: 100%;
    margin: 15px 0px;
}
.modal-card {
    width: 100% !important;
}
div#ploshadValues {
    margin: 15px;
}
.number-of-modal {
    display: flex;
    width: 100%;
}
.butprice-modal a {
    cursor: pointer !important;
    display: flex !important;
    line-height: 25px;
    font-size: 16px !important;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #2b2b2b;
    border-radius: 4px;
    height: 40px;
    align-items: center;
    width: 100%;
    color: black;
    font-weight: 600;
    background-color: #fcb514;
    margin-top: 1rem;
}
span.modal-price-totall {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 25px;
    margin: 15px 0px 15px 0px;
}
.butprice-modal {
    width: 100%;
    display: flex;
    justify-content: center;
}
span.total-sht {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 25px;
    margin: 15px 0px 15px 0px;
}
button.total-price-in {
    cursor: pointer !important;
    /* display: flex !important; */
    line-height: 25px;
    font-size: 16px !important;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #2b2b2b;
    border-radius: 4px;
    height: 40px;
    align-items: center;
    width: 50%;
    color: black;
    font-weight: 600;
    background-color: #fcb514;
    /* margin-right: 10px; */
    /* max-width: 200px; */
}
span.name-total-prod {
    font-weight: 600;
}
input#inputNumber {

    line-height: 25px;
    font-size: 16px !important;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #2b2b2b;
    border-radius: 4px;
    height: 40px;
    align-items: center;
    width: 200px;
    color: black;
    font-weight: 600;
    background-color: #e9e9e9;
    margin-right: 10px;

}
.vverx {
    display: flex;

}
label.tsk-modal-calc p {
    margin: auto;
}
.tsk-modal-calc {
	display: inline-block;
	background-color: #ff6f61;
	color: #fff;
	cursor: pointer;
	border-radius:5px;
	text-align: center;
	width: 130px;
	color: black;
	font-weight: 600;
	background-color: #fcb514;
	max-width: 200px;
	border: 1px solid;
	display: flex;
	margin-left: auto;
	height: 27px;
	top: 50px;
	font-family: 'Montserrat';
	font-size: 13px;
  }

/* Скрытый чекбокс для управления модальным окном */
.tsk-modal-toggle {
    display: none;
}

/* Стили для модального окна */
.tsk-modal {
    display: none;
    position: fixed;
    z-index: 900;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tsk-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 25%;
    border-radius: 10px;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

/* Стили для кнопки закрытия */
.tsk-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
}

.tsk-close:hover,
.tsk-close:focus {
    color: black;
    text-decoration: none;
}

/* Стили для модального окна и его контента, когда чекбокс активен */
.tsk-modal-toggle:checked ~ .tsk-modal {
    display: block;
    opacity: 1;
    overflow: hidden;
}

.tsk-modal-toggle:checked ~ .tsk-modal .tsk-modal-content {
    transform: translateY(0); /* Анимация открытия */
}

/* Стили для контента внутри модального окна */
.tsk-modal-body {
    text-align: center;
}






.search-price {
    font-weight: 600;
    font-size: 20px;
}
.right-column {
    border: 1px solid;
    border-radius: 5px;
    margin-right: 10px;
    position: relative;
}
td.elementDelete {
    position: absolute;
    right: 1%;
}
tr.basketItemsRow.parent {
    font-size: 13px;
}
#personalCart .productTable {
    border-collapse: collapse;
    min-width: 540px;
    text-align: center;
    position: relative;
    width: 100%;
}
#orderMake {
    background-color: #fcb514;
    order: 3;
    border: 1px solid black;
}
#personalCart .productTable td:first-child, #personalCart .productTable th:first-child {
    border-left: none !important;
}
div#basketProductList {
    position: relative;
}
.order-cont {
    border-radius: 5px;
    margin-right: 10px;
}
.deliveryPeriod {
    font-size: 12px;
    color: #aaaaaa;
    display: flex;
}
.deliveryDescription {
    font-size: 12px;
    color: #aaaaaa;

}
.zag-order {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}
#order .dropDown .dropDownItem:hover {
    background-color: #ffffff!;
    opacity: 0.9;
}
.order-forms {
    border: 1px solid;
    border-radius: 5px;
    margin-right: 10px;
    position: relative;
}
li.propItem label {
    font-size: 12px;
    /* display: block; */
    color: #aaaaaa;
    text-align: center;
}
.dropDownItem label1 {
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-right: 0;
  line-height: 18px;
  user-select: none;
  padding:10px;
  border:1px solid;
  border:1px solid #e2e8f0;
  border-radius:5px;
}
li.propItem.deliveryProps input {
    width: 230px;
}
#order .dropDown .dropDownItem {
    padding-left: 0px !important;
}
}
.userProp {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    /* margin-top: 1rem; */
    justify-content: flex-start;
}
li.propItem input {
    border: 1px solid black;
    border-radius: 5px;
    padding: 0.5rem;
}
.orderAreas input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #9b9b9b;
    background: #f9f9f9;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 13px;
    display: block;
    height: 30px;
    width: 100%;
    clear: both;
}
.lich-dan-zag {
    margin-top: 1rem;
}
span.label {
    text-align: center;

    font-size: 12px;
}
#order .dropDown .dropDownItem.selected {
  font-family: "robotomedium";
  background-color: #f4f4f4;
  cursor: unset;
  border-bottom:1px solid black;
    border-bottom-color: black;
  border-bottom-color: black;
  background:#ffc107;
  border-color:#cbd5e1;
  text-align: center;
  border-radius:5px;
}
.userProp .propItem {
    position: relative;
    /* margin: 24px 0 0 0; */
    list-style: none;
    clear: both;
    padding: 0;
    /* width: 33%; */
    min-width: 230px;
    display: flex;
    flex-direction: column;
    margin: 0.1rem;
}

#order .dropDown {
border: none !important;
}
#order .dropDown .RadioItems {
    border: none !important;
    flex-direction: row;
}
.DwBasketOrder.orderContainer {
    border: 1px solid black;
    border-radius: 5px;
}









#detailText table tbody tr th {
    border: 1px solid black;
    padding: 1rem;
    text-align: center;
}
#detailText table tbody tr {
    border: 1px solid black;
}
#detailText table tbody tr td {
    border: 1px solid black;
    padding-left: 5px;
}
#detailText table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
#detailText table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100% !important;
}


.detail-text-wrap table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100% !important;
}

.detail-text-wrap table tbody tr td {
    border: 1px solid black;
    padding: 1rem;
}


div#content-2 {
    padding: 1rem;
}
.scroll-text-tab {
    margin-top: 1rem;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.changeDescription {
    text-align: justify;
}
.scroll-text-tab a img {
    width: 16px;
}
.scroll-text-tab a {
    display: flex;
    align-items: center;
color:black;
border-bottom: 1px dashed;
}

.small-desc {
    padding: 1rem;
    width: 100%;
}
.cartToolsRow a {
    width: 100%;
}

  .UpakNotice {
	font-size: 13px;
	color: #8c8c8c;
	display: flex;
	align-items: center;
	margin-bottom: 0rem;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
  }
  .art {
	position: relative;
  }
  
a.addCart.changeID.changeQty.changeCart.disabled.requestPrice {
    display: inline-block !important;
    color: white;
    /* width: initial; */
    width: 100%;
    height: 20px;
    font-size: 14px;
    border: 1px solid #fcb514;
    background: rgba(253, 183, 20, 0.2);
    border-radius: 4px;
    /* padding: 0 15px; */
    line-height: 45px;
    height: 45px;
    margin-bottom: 13px;
    font-weight: 600;
    text-align: center;
}
.cart .heading {
    text-align: end!important;
}
.mainTool {
    margin: auto;
}
.changePropertiesNoGroup {
    margin-top: 24px;
    margin-bottom: 24px;
}
#upButton {
    background: url(images/up.png) 0 0 no-repeat transparent;
    position: fixed;
    cursor: pointer;
    display: none;
    bottom: 130px;
    height: 73px;
    width: 73px;
    right: 45px;
    z-index: 500!important;
}
.qt a {
    vertical-align: middle;
    display: inline-block;
    height: 40px;
    width: 100%;
    color: #fff;
    background: #000000;
    display: flex;
    align-items: center;
}
input.qty {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    margin: 0;
    height: 40px;
    width: 130px;
    border: 0;
}
.openWebFormModalOnhandMy {
margin-bottom: 0px!important;

}
span.copy img {
    width: 25px !important;

}
.cont-prems-zag p {
    margin: 0px;
}
/* div#moreImagesCarousel .carouselWrapper .slideBox .item a img {
    width: 100%;
} */
.cont-osn-img .show .carouselWrapper .slideBox {
    display: flex;
    /* width: 100%; */
    justify-content: center;
    flex-wrap: wrap;
}
a.zoom {
    margin: auto;
}
.cont-osn-img .show .carouselWrapper .slideBox .item {
/*     width: 25% !important; */
margin-right: 10px;
display: flex;
align-items: center;
}
/* .cont-osn-img .show .carouselWrapper .slideBox .item.selected img {
    width: 100%;

} */
/* .cont-osn-img div .pictureSlider .item a img {
    width: 100%;
} */
span.copy {
    opacity: 0;
}
.carouselWrapper {
    display: flex;
}

.copied {
    display: flex;
    position: absolute;
    top: -75%;
    margin: 0;
    right: 0;
    background-color: black;
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 1s ease;
    opacity: 0;
    pointer-events: none;
}
.znachenie a {
    border-bottom: 1px dashed;
    color: black;
    margin: 0px;
}
p.copied.viz {
    display: flex;
    position: absolute;
    top: -75%;
    margin: 0;
    right: 1%;
    background-color: black;
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 1s ease;
opacity:1;
}
.znachenie a:hover + span.copy {
    opacity: 1;
transition: all 1s ease;
}
span.copy {
    opacity: 0;
    position: absolute;
    width: 36px;
    transition: all 1s ease;
    align-items: end;
    display: flex;
    right: -40px;
}
.cont-osn-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
.znachenie {
    position: relative;
    align-items: center;
    display: flex;
}
span.priceVal {
    font-size: 13px;
}


.carouselWrapper .pictureSlider {
    display: flex;
}
#files .item {
    margin-bottom: 24px;
    height: 65px;
    float: left;
    width: 30%!important;
}
#files .item .icon {
    vertical-align: middle;
    display: table-cell;
    width: 10%!important;
}
a.morePropertiesLink {
    border-bottom: 1px dashed;
    color: black;
    margin: 0px;
}
.propertyValue a {
    border-bottom: 1px dashed;
    color: black;
    margin: 0px;
}
.propertyList {
    margin-top: 1rem;
}

.vniz div a {
    display: flex;
    justify-content: center;
    flex-direction: column;

    color: #bbbbbb;
}
.price-type-cont {
    font-size: 12px;
}
a.active-price {
    color: white !important;
}
#catalogElement #newReview {
    display: block!important;
}
.cont-ofhar {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    margin-top: 1rem;
}

/* .pictureSlider img {
    width: 275px;
}
 */
.propname {
    display: flex;
    background-color: white;
    z-index: 500;
    padding: 0 20px;
}
.propvalue a {
    border-bottom: 1px dashed;
    color: black;
    margin: 0px;
}
.dvice-conts {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.properties-cont-dv {
    display: flex;
    flex-direction: column;
    /* padding: 1rem; */
    font-size: 14px;
    width: 50%;
}
.price-type-cont {
    margin: 0px !important;
}
.propvalue {
    display: flex;
    background-color: white;
    z-index: 500;
    padding: 0 20px;
    text-align: right;
}
.cont-ofhar {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;

}
.cont-ofhar {
  / Ваш обычный стиль /
  transition: height 0.5s ease; / Добавьте плавный переход /
}

.cont-ofhar.full-height {
transition: height 0.5s ease;
  / Стиль для полного размера /
}

.cont-ofhar.animate-height {
  / Стиль для плавной анимации /
transition: height 0.5s ease;
}
.groupname {
    font-weight: 600;
}
.property-cont {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 0.5rem;
}
a.morePropertiesLink {
    display: none;
}
.properties-cont {
    display: flex;
    flex-direction: column;
    /* padding: 1rem; */
    font-size: 14px;
}
.errow-ev {
    display: flex;
    position: absolute;
    bottom: 0%;
    z-index: 560;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    width: 100%;
    height: 150px;
}
.cont-ofhar.full-height {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: hidden;
    position: relative;
    transition: all 1s ease;
}
.zag-cont-prem-item {
    display: flex;
    align-items: left;
    flex-direction: column;

}
.desc-item-prem p {
    margin: 0;
    font-size: 11px;
    line-height: normal;
}
.desc-item-prem {
    text-align: justify;
    padding: 0px 20px;
}
.cont-prems-zag {
    display: flex;
    align-items: center;
    font-size: 14px;
    width: 100%;
    margin-left: 15px;
    font-weight: 600;
}
.zag-cont-prem-item {
    display: flex;
    align-items: left;
    flex-direction: column;
}

.item-prem {
    /* box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.25); */
    width: 100%;
    border-radius: 10px;
    margin-top: 0.5rem;
}
.desc-item-prem p a {
    border-bottom: 1px dashed;
    color: black;
    margin: 0px;
}
.zag-cont-prem-item img {
	width: 32px;
	height: 32px;
	margin-right: 10px;
	margin-left: 10px;  
}

.cont-by-prem {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}
.up-container {
    display: flex;
}
.dvice-prod-container {
    display: flex;

}
.dvice-prod-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.heading {
    font-weight: 600;
}

.dvoyka {
    margin-right: 0px;
    position: absolute;
    vertical-align: bottom !important;
    /* font-size: 1em; */
    vertical-align: top !important;
    background: url(/upload/medialibrary/f88/g8rjohkzq0uwbktxvxd2n8a6iyv4utp0/dott11.png) repeat;
    background-position: 0 12px;
    background-repeat: repeat-x;
    width: 97%;
    padding-right: 15px;
    height: 20px;
    float: left;
}
.propertyValue {
    background-color: white;
    z-index: 99;
    padding-left: 15px;
    text-align: end;
}
.propertyName {
    background-color: white;
    z-index: 99;
    padding-right: 15px;
}
.propertyTable {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: relative;
    margin-top: 0.5rem;
}

.headingBox {
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* table-layout: fixed; */
    /* display: table; */
    /* width: 100%; */
}

.elementProperties {
    width: 100%;
    position: relative;
}

#elementTools {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    padding: 24px 24px 0 24px;
    position: relative;
    width: 400px;
    z-index: 1;
    border-radius: .25rem;
    box-shadow: 0 0 2px #ccc;
    display: none;
}
.tab1.new-prod {
    display: flex;
    flex-wrap: wrap;
    background-color: black;
    margin-top: 2rem;
}

.tab1 > input[type="radio"] {
  display: none;
}

.tab-content {
  display: none;
  width: 100%;

}

#tab-btn-1:checked~#content-1, #tab-btn-2:checked~#content-2, #tab-btn-3:checked~#content-3, #tab-btn-4:checked~#content-4{
    display: block;
    background-color: white;
}

.tab1 > label {
    display: flex;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    text-decoration: none;
    color: #ffffff;
    border: 0;
    background: 0 0;
    height: 40px;
    align-items: center;
}

.tab1 > input[type="radio"]:checked + label {
    cursor: default;
    color: #fff;
    background-color: #fcb514;
}

.addCart.cart-of-prod{

 
  /* Важные стили для анимации */
  position: relative;
  overflow: hidden;
}
.addCart.cart-of-prod:after {
  content: "";
  display: block;
  width: 20px;
  height: 200px;
  margin-left: 50px;
  background: #fff;
  background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0.5) 100%
  );
  left: -40px;
  top: -100px;
  z-index: 1;
  transform: rotate(45deg);
  position: absolute;
  animation: movingFlare 3s ease-in-out 0.05s infinite;
}
 
@keyframes movingFlare {
  0% {
    left: -30px;
    margin-left: 0px;
  }
  30% {
    left: 110%;
    margin-left: 80px;
  }
  100% {
    left: 110%;
    margin-left: 80px;
  }
}
.marker {
    font: normal normal 12px "roboto_ltregular", arial, sans-serif;
    background-color: #424242;
    margin-bottom: 8px;
    color: #fff;
    line-height: 16px;
    z-index: 2;
    padding: .35rem .58rem;
    border-radius: 3px !important;
}

.elementSkuPropertyName {
    font-weight: 600;
}
.markerContainer.cardprod {
    position: absolute;
    z-index: 3;
    right: 24px;
    top: 24px;
}
.zapr-and-sclad {
    display: flex;
    justify-content: space-between;
}
.small-desc {
    padding: 1rem;
}
a.brandImage {
    display: block;

}
h1.changeName {
    margin: 0 0 0px;
}
.elementSkuProperty {
    overflow: hidden;
    margin: 6px 0 12px;
}
.brandImageWrap a img {
    width: 120px;
}
.description {
    font-size: 16px;
    text-align: justify;
}
.buto {
	width: 100%;
	display: flex;
  
}
/* .openWebFormModalOnhandMy {
    width: 85%!important;

} */
.cont-of-stock {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
    line-height: normal;
    width: 50%;
    font-size: 14px;
}
li.elementSkuPropertyValue.selected a {
    border: 1px solid #fcb514;
    background: #000000;
    color: #fff;
}
ul.elementSkuPropertyList {
    overflow: hidden;
    list-style: none;
    margin: 0px -2px 0 -4px;
    padding: 0px;
}
a.elementSkuCustomPropertyLink {
    border: 1px solid #fcb514;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    line-height: 22px;
    padding: 6px;
    display: block;
    color: black;
    border-radius: 4px;
    background: #fff;
    word-break: break-word;
    transition: background-color 0.5s ease-in-out;

}
.elementSkuCustomPropertyLink:hover {
    background-color: #ffa50075;
  }
.ed {
    color: black;
}
li.elementSkuPropertyValue {
    box-sizing: border-box;
    overflow: hidden;
    min-width: 54px;
    padding: 4px 2px 2px 4px;
    float: left;
}
.openWebFormModalOnhandMy {
    display: inline-block !important;
    color: black;
    /* width: initial; */
    width: 190px;
    height: 20px;
    font-size: 14px;
    border: 1px solid #fcb514;
    background: rgb(255 255 255 / 20%)!important;
    border-radius: 4px;
    padding: 0 15px;
    line-height: 45px;
    height: 45px;
    margin-bottom: 13px;
    font-weight: 600;
    text-align: center;
}
i.fas.fa-plus {
    width: 100%;
}

  
  .down {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
  }
.upto {
    display: flex;
    justify-content: space-between;
}
span.fullPrice_number {
	display: flex !important;
	height: 40px;
	align-items: center;
	
}
.upto a {
	cursor: pointer !important;
	display: flex !important;
	line-height: 25px;
	font-size: 16px !important;
	padding: 0 15px;
	background: #fff;

	border-radius: 4px;
	height: 40px;
	align-items: center; /* Вертикальное выравнивание по центру */
	justify-content: center; /* Горизонтальное выравнивание по центру */
	width: 100%;
	color: white;
	font-weight: 600;
	background-color: #fcb514;
  }
  
  .one-click {
	display: flex;
	cursor: pointer !important;
	display: flex !important;
	line-height: 25px;
	font-size: 16px !important;
	background:  #fff;
	background-color: rgb(255, 255, 255);

	border-radius:  4px;
	height: 40px;
	align-items: center;
	color: white;
	font-weight: 600;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;

	box-sizing: border-box;
	margin-top: 10px;
	margin-bottom: 10px;
  }
.price-zag p {
	margin-left: 0.5rem;
}
/* .one-click a {
	margin-left: 0.5rem;
    margin-right: 0.5rem;
} */
#catalogElement .qtyBlock .plus, #catalogElement .qtyBlock .minus {
    vertical-align: middle;
    display: inline-block;
    height: 40px;
    color: #fff;

    display: flex;
    align-items: center;
    /* margin: auto; */
}
.openWebFormModalOnhandMy {
    display: inline-block !important;
    color: black;
    /* width: initial; */
    width: 190px;
    height: 20px;
    font-size: 14px;
    border: 1px solid #fcb514;
    background: rgba(253, 183, 20, 0.2);
    border-radius: 4px;
    padding: 0px !important;
    line-height: 45px;
    height: 45px;
    margin-bottom: 13px;
    font-weight: 600;
    text-align: center;
}
.addCart.added {
    background: #2b2b2b !important;
    /* background: linear-gradient(225deg, #1d253c, #202020) !important; */
    color: white;
    background-color: black !important;
    border: 1px solid orange;
}

.card-but {
    display: flex;
    width: 50%;
}
.up {

}
a.minus {
    border-radius: 4px 0px 0px 4px;
}
i.fas.fa-minus img {
    display: flex;
    align-items: center;
    margin: auto;
    width: 50%;
}
a.plus {
    border-radius: 0 4px 4px 0px;
}
i.fas.fa-minus {
    width: 100%;
}
#catalogElement .qtyBlock {
	margin-bottom: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
     
}
#catalogElement .qtyBlock .qty {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing: border-box;
	vertical-align: middle;
	display: inline-block;
	text-align: center;
	font-size: 16px;
	margin:0;
	height: 40px;
	width: 100%;
	border:0;
  }
  
.card-but {
    display: flex;
}
.card-but a {
    cursor: pointer !important;
    display: flex !important;
    line-height: 25px;
    font-size: 16px !important;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #2b2b2b;
    border-radius: 4px;
    height: 40px;
    align-items: center;
    width: 100%;
    color: black;
    font-weight: 600;
    background-color: #fcb514;
}
.qt {
    display: flex;
    border: 1px solid;
    border-radius: 6px;
    margin-right: 10px;
}
i.fas.fa-plus img {
    display: flex;
    align-items: center;
    margin: auto;
    width: 50%;
}


.price.fullPrice.price-num {
	display: flex !important;
	padding: 0 15px;
	align-items: center;
	color: black;
	font-weight: 600;
	font-size: 20px;
	font-weight: bold;  
}
.qtyBlock.row.quant {
    margin-top: 10px;
}
.vniz {
    display: flex;
}
.vniz div a {
    cursor: grabbing;
    pointer-events: none;
}
.rating {
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
    margin-top: -4px;
    position: relative;
    overflow: hidden;
    height: 15px;
    width: 79px;
    z-index: 2;
    margin-right: 15px;
}
.some-prices {
    display: flex;
}
span.priceContainer {
    pointer-events: none;
}
.prices-wrap {
    display: flex;
    flex-direction: column;
}
.upper-price {
    display: flex;
    width: 100%;
}
.price-zag {
    margin-top: 10px;
	display: flex;
	justify-content: space-between;
  
}
.active-price {
	border:1px solid #fcb514 !important;
	background:#ffb800 !important;
  
}
.price-zag p {
    margin: 0px;
    margin-bottom: 10px;
}


.priceChooseMeasure.priceChooseMeasure-active {
    border: 1px solid #fcb514;
    background: #ffb800;
    color: white;
}
.priceChooseMeasure {
	cursor: pointer !important;
	display: flex !important;
	line-height: 25px;
	font-size: 13px !important;
	padding:0 10px;
	background:#fff;
	border:1px solid #ffb800;
	border-radius:4px;
	height: 30px;
	align-items: center;
  }
  
  
.prices-wrap {
    display: flex;
}
.all-prices {
    display: flex;
}
.m2{
cursor: pointer !important;
    display: flex !important;
    line-height: 25px;
    font-size: 16px !important;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #2b2b2b;
    border-radius: 4px;
    height: 40px;
    align-items: center;
}
.m3{
cursor: pointer !important;
    display: flex !important;
    line-height: 25px;
    font-size: 16px !important;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #2b2b2b;
    border-radius: 4px;
    height: 40px;
    align-items: center;
}
.m4 {
	cursor: pointer !important;
	display: flex !important;
	line-height: 25px;
	font-size: 16px !important;
	align-items: center;
  }
  
.m5 {
cursor: pointer !important;
    display: flex !important;
    line-height: 25px;
    font-size: 16px !important;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #2b2b2b;
    border-radius: 4px;
    height: 40px;
    align-items: center;
}

.m6 {
cursor: pointer !important;
    display: flex !important;
    line-height: 25px;
    font-size: 16px !important;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #2b2b2b;
    border-radius: 4px;
    height: 40px;
    align-items: center;

}

.m7 {
cursor: pointer !important;
    display: flex !important;
    line-height: 25px;
    font-size: 16px !important;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #2b2b2b;
    border-radius: 4px;
    height: 40px;
    align-items: center;

}
.price-zag p {
	font-size: 13px;
	color: #6b7280;
}


img.icon {
    width: 16px !important;
    margin-right: 4px;
}
.link-class{
background:black;}
a.reviewAddButton.label {
    margin-right: 15px;
}
a.elem.addWishlist {
    margin-right: 1rem;
}
span.changeArticle {
    margin-right: 15px;
}
a.elem.card-prod.addWishlist {
    display: block;
    position: relative;
    width: 150px!important;
    height: 34px;
    line-height: 34px;
    text-align: center;
    margin-bottom: 8px;
    border: 1px solid #f1f1f1;
    border-radius: 2px;
    background: #fff;
    font-size: 15px!important;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
     transition: all 0.2s ease-in-out;
     color: black;
}
a.elem.card-prod.addCompare.changeID {
    display: block;
    position: relative;
    width: 150px !important;
    height: 34px;
    line-height: 34px;
    text-align: center;
    margin-bottom: 8px;
    border: 1px solid #f1f1f1;
    border-radius: 2px;
    background: #fff;
    font-size: 15px !important;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: black;
}
#elementContainer .wishCompWrap {
    position: relative;
    z-index: 2;
    right: 0px;
    top: 0px;
}
.addwish {
    position: relative;
    float: right;
    display: block;
}
.arrow-5.arrow-5-left {
    width: 100%;
    height: 20px;
    /* position: absolute; */
    background-color: white;
    top: 1%;
    text-align: center;
    /* background-position: initial; */
    margin-top: 1px;
    background-position-x: 0px;
    background-position-y: 5px;
}
.icon-big {
    width: 16px;
    height: 16px;
    position: absolute;
    background-color: white;
    content: "";
    left: 9px;
    top: 6px;
    background: url(/bitrix/components/dresscode/catalog.item/templates/detail/images/wishCompImage.png) 0 0 no-repeat;
    transition: all 0.2s ease-in-out;
}


/* a.addCompare.xix.label {
    display: block;
    position: relative;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    margin-bottom: 8px;
    border: 1px solid #f1f1f1;
    border-radius: 2px;
    background: #fff;
    font-size: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
a.addWishlist.six.label.added {
    position: absolute;
    background: white;
}
a.addWishlist.six.label {
    display: block;
    position: relative;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    margin-bottom: 8px;
    border: 1px solid #f1f1f1;
    border-radius: 2px;
    background: #fff;
    font-size: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
} */


a.addWishlist.six.label.added {
    position: absolute;
    background: white;
    content: "";
    position: absolute;
    left: 9px;
    top: 9px;
    width: 16px;
    height: 16px;
    background: url(/bitrix/components/dresscode/catalog.item/templates/detail/images/wishCompImage.png) 0 0 no-repeat;

}
a.addWishlist.six.label {
    width: 100%;
    height: 20px;
    position: absolute;
    content: "";
    left: 0;
    top: 1%;

    background-position-x: 0px;
    background-position-y: 5px;
}
a.addWishlist.six.label.added {
    width: 100%;
    height: 20px;
    position: absolute;
    background-color: white;
    top: 1%;
    text-align: center;
    /* background-position: initial; */
    margin-top: 1px;
    background-position-x: 0px;
    background-position-y: 5px;
    opacity: 1;
    display: block;
    content: "";
    left: 0px;
    top: 40px;
    width: 40px;
    height: 40px;
    background: url(/bitrix/templates/dresscodeV2/headers/header9/css/wishCompImage1.png) 0 0 no-repeat;
    transition: all 0.2s ease-in-out;
    background-position: -3px -55px;
    margin: auto;
    border: 1px solid #e7e8ea;
    margin-top: 5px;
    background-position: -55px -55px;
    background-color: #fcb514;
    font-size: 0px;
}

.wishCompWrap .icons-wish-and-compare .row.hov-mes {
    display: flex;
    flex-flow: row-reverse;
    position: relative;
    width: 130px;
}
.icons-wish-and-compare {
    display: flex;
}
.os-co {
    display: flex;
    justify-content: space-between;
}
i.m {
    background: url(/bitrix/components/dresscode/catalog.item/templates/detail/images/rating.png) repeat 0 -14px transparent;
    height: 15px;
    width: 79px;
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    z-index: 10;
}
i.h {
    background: url(/bitrix/components/dresscode/catalog.item/templates/detail/images/rating.png) repeat 0 0px transparent;
    height: 15px;
    width: 79px;
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
}
.reviewsBtnWrap .row {
    display: inline-block;
    vertical-align: top;
    margin: 0!important;
    font-family: 'roboto_ltregular';
    font-size: 13px;
}
.os-co {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e8e8e8;
    align-items: center;
}
.wishCompWrap {
    display: flex;
}
a.elem.addWishlist {
    display: block;
    position: relative;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    margin-bottom: 8px;
    border: 1px solid #f1f1f1;
    border-radius: 2px;
    background: #fff;
    font-size: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
a.elem.addCompare.changeID {
    display: block;
    position: relative;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    margin-bottom: 8px;
    border: 1px solid #f1f1f1;
    border-radius: 2px;
    background: #fff;
    font-size: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.reviewsBtnWrap {
    padding-bottom: 0px;
    border-bottom: none !important;
}
.reviewsBtnWrap .row img {
    vertical-align: middle;
    padding-right: 6px;
    margin-top: 0px;
}
.image-cont {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.product-container {
    display: flex;
}












.tiles-list .tile.center-image .image {
    background-size: cover;
}
span.heading.news-g-cont {
    display: flex;
    flex-direction: column;

    margin-right: 10px;
    margin-bottom: 0px !important;
    text-transform: uppercase;
    font-family: 'robotobold';
    padding-bottom: 48px;
    text-align: center;
    padding-left: 18px;
    padding-top: 48px;
    font-size: 18px;
    display: block;
    color: #000000;
}
.tiles-list .h3 {
    max-height: 40px;
    overflow: hidden;
    margin-bottom: 6px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    line-height: 20px;
    height: 50px;
width: 100%;
}
.mainServiceContainer .item .title a {
    height: 30px !important;
}
.mainServiceContainer .item .title a span {
    line-height: 15px!important;
}
.tiles-list .tile-text {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 12px 18px 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.mainServiceContainer .item .wrap {

    border: 0px;
}
.tiles-list .tile {
    height: 550px;
    border: 0px!important;
}
.tiles-list .image-wrap {
    height: 415px !important;
}
.mainServiceContainer .item .title a span {
  vertical-align: middle;
  display: inline-block;
  line-height: 16px;
  position: absolute;
  width: 100%;
  font-weight: 700;
}
.mainServiceContainer .item {
    position: relative;
    width: 260px!important;
padding: 0px!important;
}
.tiles-list .tile-date {
    margin-bottom: 6px;
    font-size: 13px;
    color: #cccccc;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 6px 0 0 24px;
}
.mainServiceContainer .item .bigPicture {
  height: 360px !important;
  min-width: 240px;
  width: 250px !important;
  position: absolute;
  margin-top: 0 !important;
}
.mainServiceContainer .item .title {
    margin-top: 24px;
    z-index: 15;
    position: absolute;
    width: 225px;
    bottom: 35px;
    padding-left: 15px;
}
.mainServiceContainer .item {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 12px;
    float: left;
}
.mainServiceContainer .item .bigPicture img {
  height: 360px !important;
  min-width: 240px;
  width: 250px !important;
  border-radius: 10px;
  border-radius: 10px;
  border: 2px solid orange;
}

.mainService .slideContainer {
    position: relative;
    overflow: hidden;
    margin: 0!important;
}
.mainServiceContainer .item .wrap {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #ffffff;
    border: 0px!important;
    padding: 0!important;
    height: 360px !important;
    min-width: 240px;
    width: 240px !important;
    /* position: absolute; */
}





/* #topProduct .productList .item {
    height: 300px!important;
} */
.optional {
    display: block !important;
    margin-top: 0rem;
}
.privet {
    display: flex;
    flex-direction: column;
    height: 6rem;
    justify-content: center !important;
}
.product .skuProperty {
    overflow: hidden;
    margin: 12px 0;
    display: none;
}
/* тут спрятана скидка */
    .product .price .discount {
        padding: 0;
        display: block;
        font-size: 13px;
        line-height: 16px;
        height: 16px;
        display: none!important;
    }
/* тут спрятана скидка */
.product .name {

    height: 65px!important;
}
.product .tabloid {
    height: 372px!important;
}
.skuProperty_list .skuPropertyName {
    margin: 23px 0px!important;
}
.product .addCart {
    margin-bottom: 0px!important;
}
.dataPrice {
    height: 1.5rem;
    overflow: hidden;
}
.arrow-5 {
    background: #337AB7;
    text-align: center;
    color: #fff;
}
.icons-wish-and-compare {
  position: absolute;
  right: 5%;
  top: 1%;
  z-index: 90;
}
.product .tabloid {
    z-index: 999;
}
.product:hover .tabloid {
z-index: 999;
}


.popup1 a {
    color: #fcb514;
    text-transform: uppercase;
}
.arrow-5.arrow-5-left {
    width: 7rem;
    padding: 6px;
    border-radius: 5px;
    border: 2px solid orange;
    background-color: black;
}
.arrow-5-top,
.arrow-5-bottom,
.arrow-5-right,
.arrow-5-left {
    position: relative;
    z-index: 10;
}
.arrow-5-top::after,
.arrow-5-bottom::after,
.arrow-5-right::after,
.arrow-5-left::after {
    content: '';
    width: 0;
    height: 0;
    display: block;
    position: absolute;
    z-index: 10;
    border: 0;
}
.arrow-5-top::after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    margin-left: -10px;
    left: 50%;
    border-bottom: 10px solid #337AB7;
    top: -10px;
}
.arrow-5-bottom::after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    margin-left: -10px;
    left: 50%;
    border-top: 10px solid #337AB7;
    bottom: -10px;
}
.arrow-5-right::after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-top: -10px;
    top: 50%;
    border-left: 10px solid #337AB7;
    left: auto;
    right: -10px;
}
.arrow-5-left::after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-top: -10px;
    top: 50%;
    border-right: 10px solid black;
    left: -10px; 
}






/* .hidden {
    display: none;
} */
.desc-of-product1 {
    position: relative;
    top: 10px;
    /* left: 50px; */
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    text-align: start;
}
.popup12 {
    border: 1px solid #000;
    padding: 10px;
    background-color: #f9f9f9;
    position: absolute;
    top: 50px;
    /* left: 50px; */
    width: 20%;
    z-index: 9999;
    position: fixed;
    top: 4rem;
    height: 5%;
    right: 1%;
    transition: opacity 2s;
    /* background: linear-gradient(to right, white -50%, black 150%); */
    background: linear-gradient(to left, #111, #221c44);
    transform: rotate(0deg) translateY(90px);
    /* filter: blur(40px); */
    color: white;
    border-radius: 10px;
    border: 3px solid orange;
}

.popup1 {
    border: 1px solid #000;
    padding: 10px;
    background-color: #f9f9f9;
    position: absolute;
    top: 50px;
    /* left: 50px; */
    width: 20%;
    z-index: 9999;
    position: fixed;
    top: 4rem;
    height: 5%;
    right: 1%;
    transition: opacity 2s;
    /* background: linear-gradient(to right, white -50%, black 150%); */
    background: linear-gradient(to left, #111, #221c44);
    transform: rotate(0deg) translateY(90px);
    /* filter: blur(40px); */
    color: white;
    border-radius: 10px;
    border: 3px solid orange;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 91;
}
.message-popup p {
    margin: 0;
}
/* #popup1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: 2s;
} */
.desc-of-product {
    position: relative;
    top: 10px;
    /* left: 50px; */
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    text-align: start;
}
.popup-of-product{
        position:absolute;
        top: 150px;
            left: 150px;
        }
.compare-mes {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    position: absolute;
    right: -7rem;
    margin-left: 4rem;
    pointer-events: none;
    z-index: 99999;
}
.row.hov-mes{
transition: all 1s ease;
}
.row.hov-mes:hover .compare-mes {
  visibility: visible;
  opacity: 1;
transition: visibility 0s, opacity 0.5s linear;
}
.compare-mes.compare-wishl {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    position: absolute;
    right: -7rem;
    margin-left: 4rem;
    top: 3rem;
    pointer-events: none;
    z-index: 99999;
}

a.addCompare.xix.label {
    display: block;
    width: 30px;
    height: 30px;
}
a.addCompare.xix.label img {
    display: none;
}
a.addWishlist.six.label img {
    display: none;
}
a.addWishlist.six.label.added::before {
    content: "";
    background: url(/bitrix/templates/dresscodeV2/headers/header9/css/wishCompImage1.png) 0 0 no-repeat;
    transition: none !important;
    background-position: -55px -55px;
    background-color: #fcb514;
    width: 40px;
    display: block;
    height: 40px;
    position: absolute;
    top: 0%;
    /* left: 1%; */
    /* border: 1px solid #e7e8ea; */
}
/* a.addWishlist.six.label.added {
    content: "";
    background: url(/bitrix/templates/dresscodeV2/headers/header9/css/wishCompImage1.png) 0 0 no-repeat;
    transition: none !important;
    background-position: -54px -58px;
    background-color: #00ff28;
    width: 100%;
    display: block;
    height: 35px;
    position: absolute;
    top: 62%;
    left: 0%;
    /* opacity: 0.5; */
}*/
a.addCompare.xix.label::before {
    content: "";
    background: url(/bitrix/templates/dresscodeV2/headers/header9/css/wishCompImage1.png) 0 0 no-repeat;
    transition: none !important;
    background-position: -16px -16px;
    background-color: orange;
    margin: auto;
}
.product .row {
margin-bottom:0px!important;
}
a.addCompare.xix.label {
    display: block;
    width: 30px;
    height: 30px;
    content: "";
    /* position: absolute; */

    top: 9px;
    width: 40px;
    height: 40px;
    background: url(/bitrix/templates/dresscodeV2/headers/header9/css/wishCompImage1.png) 0 0 no-repeat;
    transition: all 0.2s ease-in-out;
    background-position: -2px 0px;
    margin: auto;
    border: 1px solid #e7e8ea;
    /* background-size: 40px 40px; */
}
/* выше нормальный стиль для дальнейшей вёрстки блока избранного */
a.addCompare.xix.label.added::before {
    content: "";
    background: url(/bitrix/templates/dresscodeV2/headers/header9/css/wishCompImage1.png) 0 0 no-repeat;
    transition: none !important;
    background-position: -54px 0px;
    background-color: #fcb514;
    width: 40px;
    display: block;
    height: 40px;
    position: absolute;
    top: 0%;
    left: 0%;
    border: 1px solid #e7e8ea;
    /* opacity: 0.5; */
}
a.addWishlist.six.label {
    display: block;
    content: "";
    left: 0px;
    top: 40px;
    width: 40px;
    height: 40px;
    background: url(/bitrix/templates/dresscodeV2/headers/header9/css/wishCompImage1.png) 0 0 no-repeat;
    transition: all 0.2s ease-in-out;
    background-position: -3px -55px;
    margin: auto;
    border: 1px solid #e7e8ea;
    margin-top: 5px;
}
a.addCompare.xix.label.added {
    content: "";
    background: url(/bitrix/templates/dresscodeV2/headers/header9/css/wishCompImage1.png) 0 0 no-repeat;
    transition: none !important;
    background-position: -16px -16px;
    background-color: white;
}

a.addCompare.xix.label:hover {
    background-color: #e7e8ea;
    border-color: #e7e8ea;

}
a.addWishlist.six.label:hover{
    background-color: #e7e8ea;
    border-color: #e7e8ea;
}

























.container_tab {
	margin: 0rem;
	padding: 0px;
	border: 0px!important;
	border-radius: 0px;
  }
  .item.product.sku {
	width: 25%;
  }
  .prod-sklad-a a {
	  color: #fcb514;
	  font-weight: 700;
	  border-bottom: 1px dashed orange;
  }
  .tab .tsk-obl-prods {
	  display: flex;
	  flex-direction: column;
	  background-color: #f4f4f4;
	  margin-top: 1rem;
  }
  .tab-nav label {
	  cursor: pointer;
  }
	.tab-nav > input[type="radio"] {
	  display: none;
	}
	.tab-nav label p {
	  width: 100%;
	  max-width: 900px;
	  text-align: center;
	  color: #888;
	  font-weight: 600;
  }
	.tab-content {
	  display: none;
	}
  
	#content-1:has(~ .tsk-obl-prods .tab-nav > #tab-btn-1:checked),
	#content-2:has(~  .tsk-obl-prods .tab-nav > #tab-btn-2:checked),
	#content-3:has(~  .tsk-obl-prods .tab-nav > #tab-btn-3:checked),
	#content-5:has(~  .tsk-obl-prods .tab-nav > #tab-btn-5:checked),
	#content-6:has(~  .tsk-obl-prods .tab-nav > #tab-btn-6:checked) {
	  display: block;
	}
  .tab-nav label {
	width: 25%;
  }

  .tab-nav > label p {
	  padding: 5px 0px 5px 0px;
  }
  .tab-nav > label {
  
  }
  
  .tab-nav > input[type="radio"]:checked + label p {
	  color: #000;
	  background-color: #fff;
	  border-color: #FF7A00 #FF7A00 #fff;
	  cursor: default;
	  border-radius: 5px;
	  padding: 5px 0px 5px 0px;
  }
  
  .tab {
	  display: flex;
	  flex-direction: column-reverse;
  }












.newhead-general {
    display: flex;
    flex-direction: column;
    background-color: white;
}


#subHeaderLine {
  border-bottom: none!important;
  border-top: none!important;
  background-color: #ffffff;
  line-height: 37px!important;
}

.bx-searchtitle .bx-input-group .bx-form-control {
    display: table-cell;
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #ffffff!important;
    border: 1px solid #ffb101 !important;
    border-right: none;
    border-radius: 1px 0 0 1px;
    outline: none;
    box-shadow: none !important;
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.bx-searchtitle .bx-input-group-btn button {
    position: relative;
    border: none;
    background: url(images/search-icon.png) center center no-repeat #95a1a8;
    display: inline-block;
    margin-bottom: 0;
    cursor: pointer;
    padding: 0;
    border-radius: 0 1px 1px 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.42857143;
    height: 34px;
    width: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 0px 8px 8px 0px!important;
    background-color: #ffd700 !important;
}
.auth_mob {
    display: none;
}
.burgermenu {
  display:none;
}
.cart.active {
  color: white !important;
}
.mark {
  background-color: white !important;
  color: black !important;
}
#logo img {
  vertical-align: middle;
  max-height: 80px !important;
  max-width: 100%;
}
#logo {
    border-left: none;
    border-right: none;
}
#logo {
    line-height: 102px;
    /* text-align: center; */
    max-height: 120px!important;
    overflow: hidden;
    z-index: 66;
    width: 229px;
    float: left;
}
.osn-container {
    max-width: 1480px;
    min-width: 320px;
    margin: auto;
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
  }
  .shad-container {
    width: 100%;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
  }

  #subMenu li a {
    text-decoration: none;
    display: inline-block;
    padding: 0 20px !important;
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 14px;
    line-height: 125%;
    letter-spacing: 0.04em;
    text-transform: inherit;
    color: #000 !important;
    /* font-family: "Inter", sans-serif; */
}
#subMenu li {
    border-right: none !important;
}

.cont {
    display: flex;
    justify-content: space-between;
}

.new-menu-ahead {
    display: flex;
	position:relative;
}
.cont {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    align-items: center;
}
.dev-login #bx_incl_area_2 {
    display: flex;
}

.dev-login #bx_incl_area_2 li {
    list-style-type: none;
    margin: 0px 15px 0px 15px;
}
.dev-login #bx_incl_area_2 li a {
    color: black;
    font-size: 14px;
}

 .dev-login {
    display: flex;
    position: absolute;
    right: 1%;

  }

.dev-login li {
    list-style-type: none;
    margin: 0px 15px 0px 15px;
}
.dev-login li a {
    color: black;
font-size: 14px;
}
.min_zak {
    width: 175px;
    height: auto;
}
.min_zak div {
    color: #FF7A00;
    line-height: 15px;
    font-weight: 600;
    font-size: 15px;
}



.obl {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
  margin: 10px 0 0px 0px;
}

.header-full-cont {
  margin-left: 2rem;
  height: auto;
  width: 65%;
}
.upper-line-header {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.lower-line-header{
margin-top: 15px;
}
.min_zak {
  color: #ffb101;
  line-height: 1.1rem;
  font-weight: 600;
}
.obl_contacts {
  width: auto;
  display: flex;
  font-weight: bold;
}
.tel_and_email {
  color: #FF7A00;
  line-height: 15px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  text-align: end;
}
.tel_and_email p {
  margin: 0px;
}
.tel_and_email a, .tel_and_email p {
  color: black;
}
.tel_and_email span {
  color: #ffb101;
}
#bx_incl_area_6 {
  display: flex;
}

.cart .order {
  border: none !important;
  text-decoration: none;
  display: inline-block;
  border-radius: 9px !important;
  text-align: center;
  padding: 9px 24px !important;
  margin-top: 6px;
  color: #fff !important;
  background-color: black;
  text-align: center;
}
.cart .cartTable {
  display: flex!important;
  width: 100%!important;
}
.cart .cartTable .cartTableColumn:first-child {
  padding-right: 24px;
  width: 100%!important;
}
.heading.active {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cart .cartTable .cartIcon {
  background: url(images/cartH3.png) 0 0 no-repeat transparent;
  position: absolute!important;
  margin-top: 0px!important;
  display: block;
  height: 35px!important;
  width: 50px;
}
.cartToolsRow {
  display: flex;
  min-width: 175px;
  max-width: 180px;
  justify-content: space-around;
  text-align: right;
  line-height: initial;
  margin: auto;
}
.heading.active {
  text-align: center;
  margin: auto;
}
.bx-searchtitle {
  margin: 0px!important;
}
.cart .cartTable .cartTableColumn:first-child {
  padding-right: 0px!important;
  width: 100% !important;
}
.bx-searchtitle.theme-black .bx-input-group .bx-form-control {
  border-color: #ffb101!important;
}
.bx-input-group span button {
  border-color: #ffb101 !important;
  background-color: none !important;
  border: 1px solid #ffb101 !important;
  border: 1px 1px 1px 1px solid #ffb800 !important;
  border-left: 0px !important;
}
.bx-searchtitle.theme-black .bx-input-group .bx-form-control {
  background-color: white !important;
}
#smart-title-search-input {
  border-radius:9px 0px 0px 9px !important;
  border-right:0px !important;
  z-index: 0;
}
.bx-searchtitle.theme-black .bx-input-group-btn button {
  background-color: #333;
  border-color: #333;
  color: #000;
  border-radius: 0px 9px 9px 0px;

}
  .heading {
  display: flex;
  flex-direction: column;

  margin-right: 10px;
}
.new_head_search {
  width: 85%;
}
#subHeaderLine {
  height: auto!important;
}
#subMenu {
  visibility: visible!important;
  padding: 0;
  margin: 0;
}
.lower-line-header ul {
  margin-top: 0px;
  display: flex;
  justify-content: space-evenly;
}
#subMenu li a.selected {
  font-weight: 600;
}
.mail_new_ahead {
  line-height: 1.5rem;
}

@media (min-width: 550px){
.cart .cartTable .cartTableColumn:first-child {

  display: block!important;
}
}



@media (max-width: 1240px) {
.tsk-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    border-radius: 10px;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}
.heading.active {
  display: none;
}
.cart .cartTable .cartIcon {

  position: relative !important;
  margin-top: 25px !important;
  display: block;
  height: 35px !important;
  width: 50px;
  margin: 15px 15px auto;
    margin-top: 15px;
}
.cartToolsRow {
  display: flex;
  min-width: 130px;
  max-width: 130px;
  justify-content: space-around;
  text-align: center;
  line-height: initial;
  margin: auto;
}
.cartToolsRow.mob {
  display: none;
}
 .upper-line-header {
    flex-direction: column;
    flex-flow: wrap;
  }
.new_head_search {
  width: 100%;
  order: 1;
}
}

@media all and (max-width: 1150px) {
p.head-links {
    display: none;
}
	.footerRow {
    display: flex;
    flex-direction: column;
    width: 100%;

}
.column {
    width: 100% !important;
}
.footerRow .column:first-child {
    width: 100% !important;
}
.footerRow {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
}



    .cont-osn-img {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: auto;
        padding: 2rem;
    }
    .up-container {
        display: flex;
        flex-direction: column;
        /* width: 100%; */
    }
    .small-desc {
        width: 97%;
        padding: 0px;
    }
}    
@media screen and (max-width: 1024px) {
    .menu-hidden-on-main {
        display: block!important;
    }
.head-slider {
    width: 100%;
    margin-left: 1rem;
    display: none;
}
    .headblock {
        display: block;
    }
}
@media all and (max-width: 950px) {
.pop-kats-zag {
    width: 100%;
}
.ajaxContainer.pop-cont {
    width: 100%!important;
}
.pop-kats {
    display: flex;
    padding: 5rem 0px 5rem 0rem;
    flex-direction: column;
}
  .tab .tsk-obl-prods {
    display: flex;
    flex-direction: column;
    background-color: #f7f8f9 !important;
    margin-top: 0;
  }
.tab-nav {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1px;
    order: -1;
    background-color: #f7f8f9!important;
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
    width: 100%;
    margin: auto;
  } 
.tab-nav > input[type="radio"]:checked + label p {
  background-color: #fcb514!important;
}
  .tab-nav label p {
    width: 100%;
    max-width: 900px;
    text-align: center;
    color: black;
    font-weight: 500;
    font-size: 14px;
  }
  .test {
    display: none !important;
  }
    .mainTool {
        width: 100%;
    }
    .product-container {
        display: flex;
        flex-direction: column;
    }
.down {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.mainTool {
    display: flex;
    justify-content: space-between;
}
.upto a {
    cursor: pointer !important;
    display: flex !important;
    line-height: 25px;
    font-size: 16px !important;
    padding:0 15px;
    background:#fff;
    background-color: rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
    border:1px solid #fcb514;
    border-radius:4px;
    height: 40px;
    align-items: center;
    width: 100%;
    color: white;
    font-weight: 600;
    background-color: #fcb514;
  }

  .one-click {
    display: flex;
    cursor: pointer !important;
    display: flex !important;
    line-height: 25px;
    font-size: 16px !important;
    background:#fff;
    border:1px solid orange;
    border-radius:4px;
    height: 40px;
    align-items: center;
    color: black;
    font-weight: 600;
    background-color: #000000;
    margin-top: 10px;
    margin-bottom: 10px;
  }

.zag-cont-prem-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
}
}

@media all and (max-width: 930px) {
.pop-kats-zag.brand-line-container {
    position: relative;
    width: 98%;
    height: 300px;
    margin: 50px auto;
}
  .product-main-info {
    flex-direction: column;
  }
.show-analogues-btn {
  z-index: 10;
}
  .product-image-container {
    position: relative;
    top: 20px;
    z-index: 10;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .product-image {
   position: initial;
  }

  .product-controls {
    max-width: 100%;
  }
.ajaxContainer.brand-cont {
    border-radius: 5px;
    background-image: url(/upload/medialibrary/caf/hyynwlx57nwt7tfd7hdgdd05f4113lnh/pngegg2132133333.png);
    background-position-x: 20rem;
    background-repeat: no-repeat;
    width: 100%;
}

.test {
  display: none;
}

.total-modal-price {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 20px;
    margin: 15px 0px 15px 0px;
} 
.tsk-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    border-radius: 10px;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}
.change-price123 {
    width: 96%;
}
    .vverx {
        display: flex;
        width: 100%;
        margin-bottom: 2rem;
    }
.tab1.new-prod {
    display: flex;
    flex-wrap: wrap;
    background-color: black;
    margin-top: 2rem;
    justify-content: space-between;
}
.properties-cont-dv {
    display: flex;
    flex-direction: column;
    /* padding: 1rem; */
    font-size: 14px;
    width: 100%;
}
.dvice-conts {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: column-reverse;
}
    .cont-of-stock {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: space-around;
        line-height: normal;
        color: black;
        width: 190px;
        font-size: 14px;
    }
    .buto {

        cursor: pointer !important;
        display: flex !important;
        background: #fff;
        border-radius: 4px;
        align-items: center;
    }
	.tabs-view-con {
		display: flex;
		width: 100%!important;
		margin-right: 0rem!important;
		box-shadow: 0 0 5px 0 rgba(0, 0, 0, .25);
		border-radius:15px;
	  }
	  
	.tabs-new-con {
		display: flex;
		margin-top: 1rem;
		flex-direction: column;
	  }
	  
	.tabs-new-con {
		display: flex;
		margin-top: 1rem;
		flex-direction: column;
	  }
	  
    .openWebFormModalOnhandMy {
        display: inline-block !important;
        color: black;
        /* width: initial; */
        width: 190px;
        height: 20px;
        font-size: 14px;
        border: 1px solid #fcb514;
        background: rgba(253, 183, 20, 0.2);
        border-radius: 4px;
        padding: 0 15px;
        line-height: 45px;
        height: 45px;
        margin-bottom: 13px;
        font-weight: 600;
        text-align: center;

    }
    .one-click {
        display: flex;
        cursor: pointer !important;
        display: flex !important;
        line-height: 25px;
        font-size: 16px !important;
        background: #fff;
        border-radius: 4px;
        height: 40px;
        align-items: center;

        font-weight: 600;

 
        margin-top: 10px;
        margin-bottom: 10px;
    }
	.openWebFormModalOnhandMy {
		width: 100%!important;
		}
		
    span.fullPrice_number {
        cursor: pointer !important;
        display: flex !important;
        line-height: 25px;
        font-size: 16px !important;
        background: #fff;
        height: 40px;
        align-items: center;
        color: black;
        font-weight: 600;


    }
    .mainTool {
        display: block;

    }
	#catalogElement .qtyBlock .plus, #catalogElement .qtyBlock .minus {
		vertical-align: middle;
		display: inline-block;
		height: 40px;
		color: #fff;
		background:#eef0f1;
		display: flex;
		align-items: center;
	  }
	  
    #catalogElement .qtyBlock {
		margin-bottom: 12px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-left: 0.5rem;
		margin-right: 0.5rem;
		border:1px solid #e5e7eb;
		border-radius:7px;
	  
    }
.upto {
    display: flex;
    justify-content: flex-start;
}
.down {
        display: flex;
        justify-content: flex-start;
    }

    #catalogElement .qtyBlock .qty {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        vertical-align: middle;
        display: inline-block;
        text-align: center;
        font-size: 16px;
        margin: 0;
        height: 40px;
        width: 100%;
        border: 0;
    }

}
@media (max-width: 805px){
.popup1 p {
    margin: 0;
}
    .popup1 {
        flex-direction: column;
        height: 10%;
    }
    .popup1 {
        flex-direction: column;
        height: 10%;
        text-align: center;
    }


.cartToolsRow {
  display: none;
}
/* начало адаптивных табов */
.tab-nav label {
  width: 50%;
  padding: 0px !important;
}
  .tab-nav label p {
    width: 100%;
    text-align: center;
    margin: 5px 0px 5px 0px;
  }
.tab-nav label {
  padding: 0px;
}
.tab-nav {
  float: left;
  display: flex;

  flex-flow: wrap-reverse;
}
.tab-nav > * {
    flex: 1 1 160px;
  }
/* конец адаптивных табов */
}

@media (max-width: 700px) {
.number-of-modal {
    display: flex;
    width: 100%;
    flex-direction: column;
}
.one-click a {
    color: white;
    padding: 0px;
}

button.total-price-in {
    cursor: pointer !important;
    /* display: flex !important; */
    line-height: 25px;
    font-size: 16px !important;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #2b2b2b;
    border-radius: 4px;
    height: 40px;
    align-items: center;
    width: 85%;
    color: black;
    font-weight: 600;
    background-color: #fcb514;
    /* margin-right: 10px; */
    /* max-width: 200px; */
    margin-top: 15px;
}
input#inputNumber {
    line-height: 25px;
    font-size: 16px !important;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #2b2b2b;
    border-radius: 4px;
    height: 40px;
    align-items: center;
    width: 85%;
    color: black;
    font-weight: 600;
    background-color: #e9e9e9;
    margin-right: 10px;

}
span.total-sht {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 20px;
    margin: 15px 0px 15px 0px;
}
.tsk-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    border-radius: 10px;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}
span.modal-price-totall {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 20px;
    margin: 15px 0px 15px 0px;
}
.cart .cartTable .cartTableColumn:first-child {
  padding-right: 0px !important;
  width: 100% !important;
  display: block!important;
 }

  #logo {
    line-height: 75px;
    height: auto!important;
    border: none;
  }

.obl {
  flex-direction: column!important;
}
.upper-line-header {
  flex-direction: column;
}
  #logo {
    text-align: center!important;
  }

.min_zak {
  order: 3;
  display: flex;
  width:100%;
}
.header-full-cont {
  margin-left: 0rem!important;

}
.new_head_search {
  width: 90%;
}
  .tel_and_email {
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-direction: inherit;
    margin-top: 1rem;
  }
.tel_and_email a {
  align-items: center;
  display: flex;
}

.obl_contacts {
  width: 100%;
  display: flex;
}
.min_zak p {
  width: 100%;
  text-align: center;
  margin: 5px;
}
.tel_and_email span {
  color: #ffb101;
  margin: 0 4px;
}
  .cart .cartTable .cartTableColumn:first-child {
    padding-right: 24px;
    width: 50px;
    position: fixed;
    z-index: 1000;
    background-color: white;
    width: 60px !important;
    right: 0;
    top: 10%;
    border: 1px solid black;
    border-radius: 8px;
    border-right: 0px;
  }
.cart .heading {
  text-decoration: none;
  font-size: 16px;
  color: #000000;
  display: none;
}
  .cartToolsRow {
    display: flex;
    min-width: 60px;
    max-width: 60px;
    justify-content: space-around;
    text-align: center;
    line-height: initial;
    margin: 0px;
    width: auto;
  }
.cartToolsRow.mob {
  display: none;
}
  #flushFooterCart .item:nth-child(2) {
    display: contents!important;
  }
.cart.active {
  color: white !important;
}
.mark {
  background-color: white !important;
  color: black !important;
}
.cart .cartTable .cartTableColumn:first-child {
  padding-right: 24px;
  width: 50px;
  display: none !important;
}
.auth_mob {
  display: flex;
  position: absolute;
  right: 5%;
  text-align: center;
  top: 25%;
}
.mobmenu1 {

	justify-content: ;
	flex-direction: column;
	column-count: 2;
	width: 400px;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	flex-wrap: wrap;
	max-height: 120px;
	width: 100% !important;
	column-count: 2;
	width: 400px;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;

  }
.mobmenu1 li {
  width: 50%;
  text-align: center;
}

#subMenu li a {
  text-decoration: none;
  display: inline-block;
  padding: 0 10px !important;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: 0.04em;
  text-transform: inherit;
  color: #000 !important;
  font-family: "Inter", sans-serif;
}
#subHeaderLine #subMenu .removedItemsContainer .removedItemsLink {
    background: url(images/menuMore.png) 0% 50% no-repeat transparent;
    padding: 0px 0px;
    display: block;
    height: 40px;
    width: 30px;
    position: absolute;
}
.dev-login {
  display: flex;
  position: absolute;
  right: 1%;
  display: none;
}
}
@media all and (max-width: 500px){
.os-co {
    flex-direction: column;
}
#brandList .item {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #ffffff;
    border-right: 1px solid #e7e8ea;
    border-bottom: 1px solid #e7e8ea;
    height: 120px;
    line-height: 120px;
    overflow: hidden;
    float: left;
    width: 33%!important;
}
    #popSection .item {
        width: 100%!important;
        height: 150px;
    }
.carousel-item {
    min-width: 50%!important;
    box-sizing: border-box;
}
.productColImage {
    width: 100% !important;
}
.product .addCart {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
    text-align: center;
    display: block;
    text-decoration: none;
    margin-top: 0px !important;
    margin-bottom: 12px;
    border-radius: .25rem;
	flex-direction: column;
}
    #personalCart .orderLine #sum {
        display: flex;
        flex-wrap: wrap;
        justify-content: center!important;
    }
.orderAreas td:first-child span, .personSelectContainer td:first-child span {
    /* font-family: 'robotoregular'; */
    text-transform: uppercase;
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    display: block;
    /* color: #888888; */
    /* padding: 10px; */
    padding-bottom: 3px;
    padding-top: 3px;
    text-align: center!important;
}
#order .dropDown .RadioItems {
    border: none !important;
    flex-direction: row;
    justify-content: center;
}
.userProp {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
/* тут новый код для корзины мобильный */
.basketItemsRow.parent {
    flex-direction: column;
}
.pic-add {
    width: 100%;
}
.pic-add a img {
    display: flex;
    width: 50%;
    margin: auto;
}
.pic-add {
    width: 100%;
}
.name a {
    width: 100%;
    text-align: justify;
    display: flex;
}
.bQty {
    width: 100%;
    display: flex;
    justify-content: center;
}
.basketQty {
    display: flex;
    justify-content: center;
}
    span.priceContainer {
        width: 100%;
        display: flex;
        font-weight: 700;
        justify-content: center;
        margin-top: 0;
        margin-bottom: 0rem;
    }
.basketItemsRow.parent {
    display: flex;
    align-items: center;
    margin: 2rem 1rem 3rem 1rem;
    border: 1px solid #d5d5d5;
}
    .elementDelete {
        width: 5%;
        position: absolute;
        right: 2%;
        top: 2%;
    }
.bal {
    width: 100%;
    display: flex;
}
a.price {
    display: flex;
    margin: auto;
}
span.measure {
    width: 100%;

}





    #catalogElement .getStoresWindow {
        text-decoration: none;
        font-size: 12px;

    }
	#catalogElement .qtyBlock {
		margin-bottom: 12px;
		display: flex;
		justify-content: left;
		align-items: center;
		margin-right: 10px;
		width: 100%;
	  }
	
    #catalogElement .qtyBlock .qty {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        vertical-align: middle;
        display: inline-block;
        text-align: center;
        font-size: 16px;
        margin: 0;
        height: 40px;
        width: 110px;
        border: 0;
    }
}