*,
*::after,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
} 

body{
    background transparent;
}

#one{
    padding-top: 120px;
	margin-top: -120px;
	-webkit-background-clip: content-box;
	background-clip: content-box;
	/* ---- */
}

.main{
    position:relative;
}

.main .container{
    max-width: 1180px;
}

/* PAGE PRODUCTS */

.bg-transparent {
  background: transparent;
}

.bg-white {
  background: #fff;
}

.last-child {
    padding-bottom: 50px;
    margin-top: 45px;
}

.bg-orange {
  background: #f07c00;
  color: white;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.column-left, 
.column-right {
  width: 48%;
  margin-bottom: 30px;
}

.category-card {
  display: flex;
  justify-content: space-around;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  height: 100%;
}

.vch .category-image {
  width: 25%;
}

.category-image {
  position: relative;
  overflow: hidden;
  margin-left: 10px;
}

.category-image img {
  width: 95%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.02);
}

.category-content {
  flex: 0 0 60%;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.category-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.category-title a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
}

.category-description {
  margin-bottom: 15px;
  line-height: 1.5;
}

.category-features {
  margin-bottom: 20px;
  padding-left: 20px;
}

.category-features li {
  margin-bottom: 8px;
  position: relative;
}

.category-features li:before {
  content: "■";
  position: absolute;
  left: -15px;
  color: #f07c00;
}

.white li:before {
  color: #fff;
}

/* CATEGORY PAGE filter */

.filters-form-wrapper{
    display: none;
    column-gap: 70px;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 70px;
    margin-top: 15px;
}

.slider-inputs {
    display: flex;
    column-gap: 10px;
    margin-top: 15px;
}

.input-with-label span {
    margin-right: 7px;
}

.min-input,
.max-input{
    max-width: 80px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #d6d6d6;
}

.filter-container {
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    background: white;
    overflow: hidden;
}
        
.filter-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
        
.filter-title {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.filter-title + .range-controls:has(.checkbox-group){
    margin-left: 20px;
}
        
.filter-body{
    margin-top: 25px;
}
        
.filter-title i {
    font-size: 28px;
}
        
.reset-btn {
    border: none;
    color: #f07c00;
    background: transparent;
    font-size: 28px;
    display: flex;
    cursor: pointer;
    align-items: center;
    font-weight: 600;
    transition: all 0.15s ease;
}
        
.filter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
    column-gap: 100px;
}
        
.filter-group {
    flex: 1 0 270px; /* Растягивается, но не уже 320px */
    max-width: 100%;
}
        
.group-title {
    font-weight: 600;
    color: #000;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
        
.group-title i {
    font-size: 18px;
}
        
.range-container {
    margin-bottom: 15px;
}
        
.range-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
    color: #5a6d80;
}
        
.slider-container {
    position: relative;
    height: 30px;
    margin: 25px 10px 0 10px;
}
        
.slider-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    right: 0;
    width: 100%;
    background: #d1d9e0;
    border-radius: 2px;
}
        
.slider-selection {
    position: absolute;
    height: 2px;
    background: #000;
    border-radius: 2px;
}
        
.slider-handle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #f07c00;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: all 0.2s ease;
}
        
.slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.2);
    background: #f07c00;
}
        
.range-inputs {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
        
.input-group {
    display: flex;
    column-gap: 10px;
    align-items: center;
}
        
.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #5a6d80;
}
        
.input-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
}
        
.input-group input:focus {
    border-color: #f07c00;
    outline: none;
    box-shadow: 0 0 0 3px #f07c00;
}
        
.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
        
.option-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
}
        
.option-checkbox {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #257985;
    cursor: pointer;
}
        
.option-label {
    font-size: 15px;
    color: #3d4e5d;
    cursor: pointer;
}
        
.filter-footer {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
        
.filter-submit {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 10;
}

.apply-btn {
    background: #f07c00;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}

.apply-btn:hover {
    background: #fff;
    color: #f07c00;
    border: 1px solid #f07c00;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.apply-btn:active {
    transform: translateY(1px);
}

/* checkbox-item */
.checkbox-group {
    display: flex;
    gap: 12px;
}
        
.checkbox-row:not(first-child) {
    margin-top: 20px;
}
        
.checkbox-item {
    display: flex;
    align-items: center;
}
        
.checkbox-item p:first-child{
    margin-right: 25px;
}
        
.checkbox-text{
    font-size: 18px;
    font-weight: 600;
}

.filter-group:has(.checkbox-group) {
    display: flex;
    align-items: center;
}
        
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    margin-right: 15px;
    transition: all 0.2s;
}
        
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  position: relative;
  appearance: none;
  outline: none;
  margin-right: 15px;
  cursor: pointer;
}

/* Рамка для невыбранного состояния */
input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #f07c00;
  border-radius: 3px;
  background: white;
  transition: all 0.2s ease;
}

/* Стиль для выбранного состояния */
input[type="checkbox"]:checked::before {
  background: #f07c00;
  border-color: #f07c00;
}

/* Галочка (скрыта по умолчанию) */
input[type="checkbox"]::after {
  content: "✓";
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: bold;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

/* Показываем галочку при выборе */
input[type="checkbox"]:checked::after {
  opacity: 1;
  transform: scale(1);
}

/* PRODUCTS PAGE btns */
.primary-button {
  display: inline-block;
  background: #f07c00;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  align-self: flex-start;
  transition: background 0.3s;
}

.primary-button:hover {
  border: 2px solid #f07c00;
  color: #f07c00;
  background: #fff;
}

.primary-btn {
  display: inline-block;
  border: 2px solid #f07c00;
  color: #f07c00;
  background: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  align-self: flex-start;
  transition: background 0.3s;
}

.primary-btn:hover {
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
}

/* PAGE AUTOCOMOPLETE HEADER */

.ui-menu{
    max-width: 998px !important;
    left: 544.5px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
    border: none !important;
    top: 121px !important;
}

.ui-menu-item {
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid #f5f5f5 !important;
}

.ui-menu-item:last-child {
    border-bottom: none !important;
}

.ui-menu-item-wrapper {
    display: flex !important;
    align-items: center !important;
    padding: 12px 15px !important;
    color: #333 !important;
    text-decoration: none !important;
    transition: background 0.05s ease-in !important;
}

.ui-menu-item-wrapper:hover,
.ui-menu-item-wrapper:focus {
    background: #ffb875 !important;
    border: none !important; /* Гарантированно убираем рамку */
    outline: none !important; /* Убираем контур фокуса */
}

/* Убираем стандартные стили активного состояния */
.ui-menu-item-wrapper.ui-state-active {
    background: #ffb875 !important;
    border: none !important;
    color: #333 !important;
}

/* Отключаем выделение при активном состоянии */
.ui-menu-item.ui-state-active .ui-menu-item-wrapper {
    background: #ffb875 !important;
    border: none !important;
}

/* Стили для изображений */
.autocomplete_img {
    width: 48px !important;
    height: 48px !important;
    margin-right: 15px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #eee !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    background: white !important;
}

.autocomplete_img img {
    max-width: 90% !important;
    max-height: 90% !important;
    object-fit: contain !important;
}

/* Стили для текстового контента */
.autocomplete_content {
    flex-grow: 1 !important;
    min-width: 0 !important;
}

.autocomplete_name {
    font-weight: 600 !important;
    font-size: 15px !important;
    display: block !important;
    margin-bottom: 3px !important;
    color: #2c3e50 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.autocomplete_desc {
    font-size: 13px !important;
    color: #7f8c8d !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Специфичные стили для оранжевых карточек */
.category-card .bg-orange .vch{
  background: #f07c00;
}

.mt-30 {
    margin-top: 30px;
}

.bg-orange .category-title a,
.bg-orange .category-description,
.bg-orange .category-features li {
  color: white;
}

.bg-orange .primary-button {
  background: white;
  color: #ff6a00 !important;
}

.bg-orange .primary-button:hover {
  background: #f0f0f0;
}

/* Адаптивность */
@media (max-width: 992px) {
  .column-left, 
  .column-right {
    width: 100%;
  }
  
  .category-card {
    flex-direction: column;
  }
  
  .category-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .section-block {
    padding: 40px 0;
  }
  
  .category-content {
    padding: 20px;
  }
}

#background {
    height: 525px;
    width: 100%;
    position: fixed;
    top: 134px;
    left: 0px;
    background: url(../img/bg.jpg) #40525e center bottom repeat;
    animation: bg 60s linear infinite;
    -webkit-animation: bg 60s linear infinite;
    opacity: 0.5;
}

#cover {
    height: 100%;
    width: 100%;
    background: url(../img/cover.png) left top repeat;
}

.text-poisk{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    position: relative; 
    z-index: 100; 
    top: 58px;
    left: -502px;
}

.suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #F07C00;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    text-align: left;
    transition: background-color 0.2s;
}

.suggestion-item:hover {
    background-color: #F07C00;
    color: white;
}

/* Пример товаров на странице */
.product {
        display: none;
}

.fon-poisk{
    position: relative;
    z-index: 1;
    bottom: 50px;
}
        
.error-header {
    text-align: center;
    font-weight: 700;
    font-size: 300px;
    color: #f07c00;
    position: relative;
    top: 40px;
}
        
.error-message {
    position: relative;
    font-weight: 700;
    font-size: 80px;
    color: #514f4f;
    text-align: center;
    text-transform: uppercase;
    z-index: 15;
}
        
.error-message_add {
    position: relative;
    font-weight: 700;
    font-size: 30px;
    color: #f07c00;
    text-align: center;
    margin-top: 15px;
    z-index: 15;
}
        
.error-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}
        
.error-link {
    display: inline-block;
    padding: 12px 24px;
    background: #4dabf7;
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
        
.error-link:hover {
    background: #228be6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 139, 230, 0.3);
}
        
.error-wrapper {
    width: 82vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    margin-top: 35px;
    padding-bottom: 30px;
}

.error-wrapper > div {
    max-width: 1150px;
    width: 100%;
    margin: 20px auto 0 auto;
    box-sizing: border-box;
}
        
.search-title {
    font-weight: 600;
    color: #495057;
}
        
.search-tags {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    position: relative;
    right: 15px;
}
        
.search-tag {
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    width: 180px;
    height: 49px;
    background: #f07c00;
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
}
        
.search-form {
    position: relative;
    left: 10px;
    top: 10px;
}
        
.search-input {
    padding: 14px 45px;
    cursor: text;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    font-weight: 300;
    font-size: 13px;
    width: 98%;
    height: 50px;
    color: #929292;
    outline: none;
}
        
.search-button {
    position: relative;
    margin-left: 80.5%;
    bottom: 50px;
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 15px 24px;
    width: 208px;
    height: 50px;
    background: #f07c00;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    text-align: center;
}
        
.search-text{
    font-weight: 700;
    font-size: 20px;
    color: #514f4f;
}
        
.lupa2 {
    position: absolute;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    outline: none;
    background-image: url('../img/converted.svg');
    top: 15px;
    left: 15px;
    z-index: 1;
    cursor: default;
}
        
.search-text h2:before {
    content: '';
    border: 2px solid #f07c00;
    position: relative;
    left: -15px;
    width: 50px;
    height: 0px;
    transform: rotate(-90deg);
    margin: auto 0;
        }
        
     
@media (max-width: 480px) {
    .error-container {
        padding: 30px 20px;
    }
    .error-code {
        font-size: 4.5rem;
    }
    .error-title {
        font-size: 2.2rem;
    }
}

    /* ---------- BREADCRUMBS ------------ */
.breadcrumbs {
	position: relative;
	bottom: 50px;
	right: 10px;
}

.breadcrumbs li{
	display:inline-block;
	margin-left:12px;
}
.breadcrumbs li a{
	font-size:12px;
}
.breadcrumbs li a:hover{
	text-decoration:underline;
	color:#d2681c;
}
.breadcrumbs li:not(:first-child):before {
    content: '>';
    z-index: 10;
    position: relative;
    display: block;
    width: 0;
    height: 0;
    right: 12px;
    top: 2px;
    font-weight: 500;
    color: #f07c00;
}

.breadcrumbs-category ul{
    margin-left: 0; !important
}

.breadcrumbs-category li:before{
    top: 15px;
}

.slider ul li {
    display: none;
}

.slider ul li.active {
    display: block;
}
    
.slider ul li img {
    width: 390px;
    height: 360px;
    object-fit: contain;
    border: 1px solid #F5F5F5;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.2s ease;
}

.slider ul li img:hover {
    border: 1px solid #f07c00;
    opacity: 0.75;
}

.content_novost1 ul li img{
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    display: flex;
    justify-content: space-between;
}

.slider-nav{
    width: 100%; 
    overflow: hidden;
}

.slider-nav ul{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-direction: column;
    margin: 0;
    padding: 0;
    height: 100%;
}

.slider-nav .bx-viewport{
    display:block;
    width:102px !important;
}

.slider-nav ul li{
    display: block;
    box-sizing: border-box;
    transition: 0.2s ease;
}

.slider-nav ul li img{
    transition: 0.2s ease;
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.slider-nav ul li img:hover{
    border: 1px solid #f07c00;
    opacity: 0.75;
}

.slider-nav .bx-wrapper{
    display: block;
    width:105px;
    box-shadow: none;
}

.slider-nav .active img {
    border: 1px solid #DCDCDC;
    }

.slider-nav img{
    border: 1px solid #F5F5F5;
    border-radius: 3px;
    cursor: pointer;
}

.modal-slider {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
}
.modal-slider.open {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
}

.modal-image {
    width: 820px;
    height: 500px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 3px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    color: #f07c00;
    cursor: pointer;
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: 820px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-content:hover .modal-nav {
    opacity: 1;
    pointer-events: auto;
}

.modal-nav button {
    background-color: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.modal-nav button:hover {
    color: #f07c00;
}

/* BREADCRUMBS END */

.pole-poisk{
    position: relative; 
    z-index: 500; 
    top: 35px;
    right: 5px;

    display: flex;
    gap: 85px;
    font-family: var(--font-family);
    align-items: center;
    font-weight: 400;
    font-size: 12px;
    color: #929292;
    padding-left: 15px;
    padding-right: 35px;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    width: 386px;
    height: 30px;
    background: #fff;
    outline: none;
}

.lupa{
    z-index: 502;
    position: relative;
    right: 0px;
    left:1025px;
    top:-10px;
    cursor: pointer;
}

.zag_1{
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 50px;
    text-transform: uppercase;
    color: #f07c00;
    top: -348px;
}

.zag_2{
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 50px;
    text-transform: uppercase;
    color: #514f4f;
    top: -355px;
}

.zag_3{
    position: relative;
    z-index: 1;
    width: 438px;
    height: 66px;
    font-weight: 400;
    font-size: 24px;
    color: #514f4f;
    top: -335px;
}

.btn_main{
    position: relative;
    top:-303px;
    border-radius: 5px;
    padding: 15px 24px;
    width: 182px; 
    height: 49px;
    background: #f07c00;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}

.btn_main:hover{
    position: relative;
    top:-303px;
    border: 2px solid #f07c00;
    border-radius: 5px; 
    padding: 13px 22px;
    width: 182px;
    height: 49px;
    background: #fff;
    font-weight: 600;
    font-size: 14px;
    color: #f07c00;
}

.two{
    position: relative;
    bottom: 182px;
    margin-top: 20px;
    display: flex;
    unicode-bidi: isolate;
    max-width: 100%; 
}

.fon_two{
    position: relative;
    z-index: 1;
    top: 0px;
    border-radius: 5px;
    width: 100%;
    box-shadow: -5px -5px 30px 0 rgba(0, 0, 0, 0.1), 5px 5px 30px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
    height: 75px;
}

.question-field{
    position: relative; 
    z-index: 500; 
    top: 14px;
    right: -15px;
    display: flex;
    gap: 85px;
    align-items: center;
    cursor: text;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    width: 97%;
    height: 45px;
    outline: none;
    padding-left: 20px;
    padding-right: 230px;
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 13px;
    color: #929292;
}

.poisk_two {
  position: relative;
}

.poisk_two::after {
  content: "Сервис временно не доступен";
  position: absolute;
  top: 55px;
  left: 15px;
  width: 97.5%;
  background: #ff6b6b;
  color: #fff;
  text-transform: uppercase;
  padding: 10px;
  font-size: 26px;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 1000;
}

.poisk_two:focus::after {
  opacity: 1;
  visibility: visible;
}
.poisk_but{
    position: relative; 
    z-index: 500; 
    left: 952px;
    top: -31px;
    cursor: pointer;
    border-radius: 5px;
    padding: 14px 22px;
    width: 208px;
    height: 45px;
    background: #f07c00;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.poisk_but:hover{
    border: 2px solid #f07c00;
    background: #fff;
    cursor: pointer;
    color: #f07c00;
}

.pods_v{
    position: absolute; 
    z-index: 500; 
    display: flex;
    gap: 16px;
    top: 77px;
    left: 15px;
}

/* ------------ /ERROR -------------- */
/* ------------ CATEGORY -------------- */
.category{
	background:#fff;
	box-sizing:border-box;
	font-size:14px;
	position:relative;
}
.category h3{
	margin:0 0 20px 0;
	color:#023769;
	font-size:18px;
}
#blocknewproducts{
	margin-bottom: 10px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 колонки равной ширины */
  gap: 10px;
}

.product-container{
    padding: 15px;
    border: 1px solid #d9d9d9;
    height: 530px;
    position: relative;
}

.right-block {
    position: absolute;
    bottom: 25px;
    right: 22px;
}

#product-list-categ{
    margin-top: 10px;
}

.right-block .button-container a {
    padding: 0;
    justify-content: center;
}


.right-block{
    display: flex;
    column-gap: 10px;
}

.list-name{
    color: #f07c00;
}

.list-name:hover{
    text-decoration: underline;
    color: #ffab52;
}

.product-list li{
	font-size: 14px;
	display:none;
}

.product-list li:last-child{
	margin-top: 10px;
}

.product_img_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
}

.product_img_link img{
	max-height: 200px;
  width: 80%;
  object-fit: contain;
}
#product-list-categ .product-name{
font-size: 14px;
  font-weight: bold;
  color: #004e98;
  display: block;
  margin-bottom: 5px;
}
#product-list-categ .product-name:hover{
	text-decoration:underline;
}
#product-list-categ .description{
	font-size: 13px;
  color: #4a4a4a;
}
.sub-links li{
	display:inline-block;
	background-color: #f07c00;
	padding: 5px 10px;
}
.sub-links li:before{
	display:none;
}

.sub-links li a{
	color: #fff;
}

.sub-links{
	margin-top: 15px;
}

.box-categ{
    margin-left: 15px;
    margin-top: 15px;
}

#product-list{
    margin-top: 20px;
    padding-bottom: 20px;
}

.box-categ-desc {
    text-align: justify;
}

.box-categ-desc ul li{
    margin-left: 15px;
    margin-top: 10px;
}

.box-categ-desc p strong{
    margin-top: 10px;
    display: inline-block;
}

.box-categ-desc__text{
    margin-top: 12px;
}

.description p {
    margin-top: 10px;
}

.box-categ-desc ul li:before{
    content: '';
    position: absolute;
    z-index: 10;
    height: 4px;
    margin: 8px 0 0 -10px;
    background: #f07c00;
}

.box-categ + .box-categ-desc{
    margin-left: 15px;
}

.box-categ-desc p:nth-child(2),
.box-categ-desc ul{
    margin-top: 5px;
}

.box-categ-desc p:first-child{
    margin-top: 15px;
}

.sub-links li a:hover{
	text-decoration:none!important;
}
.col_right {
    display: flex;
    column-gap: 40px;
    align-items: flex-start;
}
.intro{
	background:url(../img/cover.png) #004e98 left top repeat;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    font-size: 14px;
    margin-top: 15px;
}
.categ-description p:first-child{
    margin-top:15px;
}
.intro:before{
	position:absolute;
	content:'';
	width:20px;
	height:20px;
	background:#fff;
	margin:5px 0 0 -40px;
}
.intro_img{
    max-width: 470px;
    text-align: center;
    margin-top: 20px;
}

.intro li:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin: 6px 8px 0 0;
    vertical-align: middle;
    border: 4px solid transparent;
    border-left-color: #d2681c;
}

.intro + h3 {
    margin-top: 20px;
}

.intro ul li {
    margin-top: 10px;
}

#description_block {
    margin-right: 25px;
}

a.button.big.orange.slow {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #f07c00;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.block.lazyloading-paging {
    display: flex;
    justify-content: center;
    margin: 20px 0 40px 0;
    font-family: Arial, sans-serif;
    padding-bottom: 20px;
}

/* Горизонтальное меню */
ul.menu-h {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 12px;
    align-items: center;
}

/* Элементы меню */
ul.menu-h li {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Общие стили кнопок */
ul.menu-h li a {
    display: inline-block;
    padding: 12px 17px;
    border-radius: 50%;
    text-decoration: none;
    color: #F07C00;
    background: #fff;
    border: 1px solid #F07C00;
    min-width: 36px;
    text-align: center;
    font-size: 16px;
    transition: all 0.2s ease;
}

  /* Стиль для активной страницы */
ul.menu-h li.selected a {
    color: #fff;
    background: #F07C00;
    font-weight: bold;
}

/* Стиль при наведении */
ul.menu-h li:not(.selected):hover a:not(.inline-link) {
  background: #F07C00;
  color: #fff;
}
  
ul.menu-h li a.inline-link {
    border: 0;
    padding: 0;
    font-size: 24px;
    transition: ease 0.1s;
}
  
ul.menu-h li a.inline-link:hover {
    transform: scale(1.35);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 200px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.65);
}

.modal-content {
    display: block;
    margin: 0 auto;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

#modal-caption {
    margin: 15px auto;
    text-align: center;
    color: #fff;
    font-size: 1.1em;
    max-width: 80%;
}

.pods1{
    display: flex;
    text-align: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
   
    font-weight: 400;
    font-size: 12px;
    color: #514f4f;

    border: 2px solid #f07c00;
    border-radius: 5px;
}

.pods1:hover{
    display: flex;
    text-align: center;
    align-items: center;
    padding-left: 10px;
    cursor: pointer;
   
    font-weight: 400;
    font-size: 12px;
    color: #fff;

    border-radius: 5px;
    background: #f07c00;
}

.pods_n{
    position: absolute; 
    z-index: 500; 
    display: flex;
    gap: 16px;
    top: 120px;
    left: 15px;
}

.three{
    position: relative;
    bottom: 150px;
    width:100%;
    padding-bottom: 270px;
}

.three:target{
    scroll-margin-top: 7rem;
}

.three_zag{
    border-radius: 5px;
    width: 33.5%;
    height: 250px;
    background: #f07c00;
    padding: 30px;
}

.three_zag1{
    font-weight: 700;
    font-size: 26px;
    color: #fff;
    cursor: text;
}

.three_zag_text{
    position: absolute;
    left: 30px;
    top: 73px;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    line-height: 136%;
    width: 332px;
    cursor: text;
}

.three1{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index:1;
    width: 34%;
}

.three1_cod{
    display: inline-block;
    position: relative;
    left: 17px;
    align-items: center;
    top: 0px;
}

.three1_zag{
    font-weight: 600;
    font-size: 16px;
    color: #f07c00;
    padding-bottom: 7px;
}

.three1_text{
    position: relative;
    font-weight: 400;
    font-size: 12px;
    text-align: justify;
    color: #514f4f;
    width: 200px;
    padding-bottom: 7px;
    margin-top: 10px;
}

.three1_but{
    display: flex;
    font-weight: 600;
    font-size: 13px;
    text-decoration-skip-ink: none;
    color: #f07c00;
    gap: 9px;
    cursor: pointer;
}

.three1_but p:hover{
    text-decoration: underline;
    color: #ffab52;
}

.razd1{
    border: 1px solid #f07c00;
    width: 100px;
    height: 0px;
    transform: rotate(90deg);
    position: absolute;
}

.four{
    position: relative;
    bottom:1000px;
}

.four_fon{
    position: relative;
    top: 0px;
    left:-370px;
    fill: #f07c00;
}

.four_zag{
    position: relative;
    left: 370px;
    top: -325px;
}

.four_palka{
    position: relative;
    border: 3px solid #fff;
    width: 60px;
    height: 0px;
    transform: rotate(-90deg);
    left: -36px;
    top: 30px;
}

.four_zag1{
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    position: relative;
    left: 20px;
    top: 10px;
    width: 383px;
}

.four_zag_text{
    position: absolute;
    left: -8px;
    top: 80px;
    width: 512px;
    font-weight: 400;
    font-size: 13px;
    color: #fff;
}

.four_btn1{
    position: relative;
    left: -9px;
    top: -130px;
    font-weight: 600;
    font-size: 14px;
    color: #f07c00;
    border-radius: 5px;
    padding: 15px 24px;
    width: 208px;
    height: 49px;
    background: #fff;
    border: none;
    text-align: center;
    cursor: pointer;
}

.four_btn1:hover{
    position: relative;
    left: -9px;
    top: -130px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    padding: 13px 24px;
    width: 208px;
    height: 49px;
    background: #f07c00;
}

.four_kart1{
    position: relative;
    left: 532px;
    top: -420px;
    width:545px;
    height: 286px;
}

.five{
    position: relative;
    bottom: 1600px;
    left:0px; 
    display: block;
} 

.five_palka{
    border: 3px solid #f07c00;
    width: 60px;
    height: 0px;
    transform: rotate(-90deg);
    position: absolute;
    left:-25px;
}

.five_zag1{
    font-weight: 700;
    font-size: 30px;
    color: #514f4f;
    position: relative;
    left: 31px;
    top: -15px;
    width: 243px;
}

.five_zag_text{
    font-weight: 400;
    font-size: 13px;
    color: #514f4f;
    width: 579px;
    position: absolute;
    left: 0px;
    top: 50px;
    line-height: 136%;
    cursor:text;
}

.five_zag{
    position: relative;
    left: 600px;
    top: -410px;
    width: 263px;
}

.six{
    position: relative;
    display: flex;
    gap: 20px;
    top: -1540px;
    flex-wrap:nowrap;
}

.six1{
    position: relative;
    display: block;
    border-radius: 5px;
    width: 25%;
    text-size-adjust: 100%;
    unicode-bidi: isolate;
    -webkit-font-smoothing: antialiased;
}

.six1:hover{
    .six1_kart{
         box-shadow: -5px -5px 30px 0 rgba(240, 124, 0, 0.15), 5px 5px 30px 0 rgba(240, 124, 0, 0.15); 
    }
    .six1_bl{
        box-shadow: 0 4px 20px 0 rgba(240, 124, 0, 0.15);
    }
}

.six1_kart{
    display: block;
    position: absolute;
    border-radius: 5px;
    width: 25%;
    z-index: 0;
    box-shadow: -5px -5px 30px 0 rgba(0, 0, 0, 0.1), 5px 5px 30px 0 rgba(0, 0, 0, 0.1);
}

.six1_bl{
    border-radius: 5px;
    width: 280px;
    height: 105px;
    background: #fff;
    position: relative;
    left: 0px;
    top: 131px;
    z-index: 1;
    box-shadow: -5px -5px 30px 0 rgba(0, 0, 0, 0.1), 5px 5px 30px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
}

.six1_zag{
    font-weight: 600;
    font-size: 13px;
    color: #f07c00;
    position: relative;
    z-index: 1;
    top: 37px;
    width: 100%;
    text-align: center;
}

.six1_text{
    display: flex;
    font-weight: 400;
    font-size: 10px;
    color: #514f4f;
    position: relative;
    z-index: 1;
    top: 42px;
    width: 90%;
    align-items: center;
    left:13px;
    text-align: center;

}

.seven{
    position: absolute;
    top: 2790px;
}

.seven_bl{
    position: relative;
    display: flex;
    gap: 20px;
    top: 0px;
}

.seven_palka{
    border: 3px solid #f07c00;
    width: 60px;
    height: 0px;
    transform: rotate(-90deg);
    position: relative;
    left:-25px;
}

.seven_zag1{
    font-weight: 700;
    font-size: 30px;
    color: #514f4f;
    position: relative;
    left: 30px;
    top: -24px;
}

.seven1_fon{
    position: relative;
    border-radius: 5px;
    width: 380px;
    height: 567px;
    background: #fff;
    outline: none;  
    box-sizing: border-box; 
}

.seven1_kart{
    position: absolute;
    top: 0px;
    width: 380px;
}

.seven1_zag{
    position: relative;
    top: -288px;
    left: 26px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    color: #514f4f;
    width: 327px;
    cursor: pointer;
    border: none;
    background: none;
    text-align: left;;
}

.seven1_text{
    position: relative;
    top: -275px;
    left: 26px;
    font-weight: 400;
    font-size: 13px;
    color: #514f4f;
    width: 327px;
}

.seven1_ic1{
    position: relative;
    top: -257px;
    left: 26px;
}

.seven1_dat{
    position: relative;
    top: -282px;
    left: 68px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    color: #514f4f;
}

.seven1_ss{
    position: relative;
    top: -269px;
    left: 50px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 15px;
    color: #f07c00;
}

.seven1_ic2{
    position: relative;
    top: -307px;
    left: 321px;
    cursor: pointer;
    border: none;
    background: none;
}

.seven1_ic2:hover{
    background-color: #f07c00;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    .ic2_1{
        fill:#fff;
    }
}

.seven1:hover{
.seven1_fon{
    box-shadow: -3px -3px 15px 0 rgba(240, 124, 0, 0.15), 3px 3px 15px 0 rgba(240, 124, 0, 0.15);
   }
}

.eight{
    position: absolute;
    top: 3550px;
}

.eight_bl{
    position: relative;
    display: flex;
    margin-top: 40px;
    align-items: center;
}

.eight_text{
    font-weight: 400;
    font-size: 22px;
    text-align: left;
    color: #514f4f;
    position: relative;
    top:5px;
    left: 0px;
}

.eight1_test{
    position: relative;
    align-items: center;
    display: block;
    top:0px;
}

.eight1{
    position: relative;
    display: block;
}

.eight1_kart{
    z-index:0;
    width: 151px;
}

.eight1_pr{
    z-index:1;
    position: absolute;
    top: 0px;

    border-radius: 5px;
    width: 151px;
    height: 362px;
    background: rgba(240, 124, 0, 0.3); 
}

.eight1_an{
    position: relative;
    display: none;
    align-items: center;
    top:-36px;
}

.eight1_an_text{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 26px;
    color: #f07c00;
    position: relative;
    top: 333px;
    left: 22px;
    z-index:2;
    display: flex;
    cursor: default;
}

.eight1_an_pr{
    width: 330px;
    height: 45px;
    background: #fff;
    position: absolute;
    top: 303px;
    left: 12px;
    z-index: 1;
}


.eight2_test{
    position: relative;
    align-items: center;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    left: 20px;
    top:0px;
}

.eight2{
    position: relative;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    top:0px;
}

.eight2_kart{
    z-index:0;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
    width: 151px;
}

.eight2_pr{
    z-index:1;
    position: absolute;
    top: 0px;
    border-radius: 5px;
    width: 151px;
    height: 362px;
    background: rgba(240, 124, 0, 0.3); 
}

.eight2_an{
    position: relative;
    display: none; 
    align-items: center;
    top:-36px;
    z-index: -1000;
}

.eight2_an_kart{
    position: relative;
    vertical-align: middle;
    margin: 0 auto;
}

.eight2_an_text{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 26px;
    color: #f07c00;
    position: relative;
    top: 333px;
    left: 25px;
    z-index:2;
    display: flex;
    cursor: default;
}

.eight2_an_pr{
    width: 414px;
    height: 45px;
    background: #fff;
    position: absolute;
    top: 330px;
    left: 12px;
    z-index: 1;
}

.eight3_test{
    position: relative;
    align-items: center;
    left: 40px;
    top:0px;
}

.eight3{
    position: relative;
}

.eight3_kart{
    z-index:0;
    width: 151px;
}

.eight3_pr{
    z-index:1;
    position: absolute;
    top: 0px;
    border-radius: 5px;
    width: 151px;
    height: 362px;
    background: rgba(240, 124, 0, 0.3); 
}

.eight3_an{
    position: relative;
   display: none;
    align-items: center;
    top:-36px;
}

.eight3_an_text{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 26px;
    color: #f07c00;
    position: relative;
    top: 333px;
    left: 27px;
    z-index: 2;
    display: flex;
    cursor: default;
}

.eight3_an_pr{
    width: 478px;
    height: 45px;
    background: #fff;
    position: absolute;
    top: 330px;
    left: 12px;
    z-index: 1;
}

.eight4_test{
    position: relative;
    align-items: center;
    left: 60px;
    top:0px;
}

.eight4{
    position: relative;
}

.eight4_kart{
    z-index:0;
    width: 151px;
}

.eight4_pr{
    z-index:1;
    position: absolute;
    top: 0px;
    border-radius: 5px;
    width: 151px;
    height: 362px;
    background: rgba(240, 124, 0, 0.3); 
}

.eight4_an{
    position: relative;
    display: none;
    align-items: center;
    top:-36px;
}

.eight4_an_text{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 26px;
    color: #f07c00;
    position: relative;
    top: 333px;
    left: 30px;
    z-index:2;
    display: flex;
    cursor: default;
}

.eight4_an_pr{
    width: 422px;
    height: 45px;
    background: #fff;
    position: absolute;
    top: 330px;
    left: 12px;
    z-index: 1;
}

.eight5_test{
    position: relative;
    align-items: center;
    left: 80px;
    top:0px;
}

.eight5{
    position: relative;
}

.eight5_kart{
    z-index:0;
    width: 151px;
}

.eight5_pr{
    z-index:1;
    position: absolute;
    top: 0px;
    border-radius: 5px;
    width: 151px;
    height: 362px;
    background: rgba(240, 124, 0, 0.3); 
}

.eight5_an{
    position: relative;
    display: none;
    align-items: center;
    top:-36px;
}

.eight5_an_text{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 26px;
    color: #f07c00;
    position: relative;
    top: 333px;
    left: 27px;
    z-index:2;
    display: flex;
    cursor: default;
}

.eight5_an_pr{
    width: 484px;
    height: 45px;
    background: #fff;
    position: absolute;
    top: 330px;
    left: 12px;
    z-index:1; 
}

.eight6_test{
    position: relative;
    align-items: center;
    left: 100px;
    top:0px;
}

.eight6{
    position: relative;
}

.eight6_kart{
    z-index:0;
    width: 151px;
}

.eight6_pr{
    z-index:1;
    position: absolute;
    top: 0px;
    border-radius: 5px;
    width: 151px;
    height: 362px;
    background: rgba(240, 124, 0, 0.3); 
}

.eight6_an{
    position: relative;
    display: none;
    align-items: center;
    top:-36px;
}

.eight6_an_text{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 26px;
    color: #f07c00;
    position: relative;
    top: 333px;
    left: 29px;
    z-index: 2;
    display: flex;
    cursor: default;
}

.eight6_an_pr{
    width: 260px;
    height: 45px;
    background: #fff;
    position: absolute;
    top: 330px;
    left: 12px;
    z-index: 1;
}

.eight7_test{
    position: relative;
    align-items: center;
    left: 120px;
    top:0px;
}

.eight7{
    position: relative;
}

.eight7_kart{
    z-index:0;
    width: 151px;
}

.eight7_pr{
    z-index:1;
    position: absolute;
    top: 0px;
    border-radius: 5px;
    width: 151px;
    height: 362px;
    background: rgba(240, 124, 0, 0.3); 
}

.eight7_an{
    position: relative;
    display: none;
    align-items: center;
    top:-36px;
}

.eight7_an_text{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 26px;
    color: #f07c00;
    position: relative;
    top: 333px;
    left: 29px;
    z-index: 2;
    display: flex;
    cursor: default;
}

.eight7_an_pr{
    width: 260px;
    height: 45px;
    background: #fff;
    position: absolute;
    top: 330px;
    left: 12px;
    z-index: 1;
}

.nine{
    position: relative;
    margin-top: 20px;
    padding-bottom: 50px;
}

.nine1_text{
    width: 550px;
    font-weight: 400;
    font-size: 16px;
    color: #514f4f;
    position: relative;
    top: 5px;
    cursor: text;
    line-height: 136%;
}

.pole1{
    position: relative;
    top:30px;
    left:0px;
}

.pole_name:placeholder-shown{
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 270px;
    height: 50px;
    background: #f5f5f5;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: left;
    color: #514f4f;
}

.pole_name:hover{
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 270px;
    height: 50px;
    background:#fff;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: left;
    color:#514f4f;
}

.pole_name{
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 270px;
    height: 50px;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: left;
    color: #514f4f;
    outline: none;
}

.pole_name2:placeholder-shown{
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    width: 559px;
    height: 194px;
    background: #f5f5f5;
    display: inline-block;
    padding: 10px 10px 10px 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    color: #514f4f;
}

.pole_name2:hover{
    border: 2px solid #f07c00;
    border-radius: 5px;
    width: 559px;
    height: 194px;
    background:#fff;
    display: inline-block;
    padding: 10px 10px 10px 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    color:#514f4f;
}

.pole_name2{
    border: 2px solid #f07c00;
    border-radius: 5px;   
    width: 559px;
    height: 194px;
    background: #fff;
    display: inline-block;
    padding: 10px 10px 10px 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    color: #514f4f;
    outline: none;
    resize: none;
}

.pole2{
    position:relative;
    top: 60px;
    left: 0px;
}

.pole3{
    position:relative;
    top: -70px;
    left: 290px;
}

.pole4{
    position:relative;
    top: -40px;
    left: 290px;
}

.pole5{
    position:relative;
    top: -10px;
    left: 0px;
}

.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    font-weight: 400;
    font-size: 11px;
    color: #514f4f;
}

.custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-checkbox:checked+label::before {
    border-color: #F07C00;
    background-color: #F07C00;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
    border-color: #F07C00;
  }

  .custom-checkbox:not(:disabled):active+label::before {
    background-color: #F07C00;
    border-color: #F07C00;
  }
  .custom-checkbox:disabled+label::before {
    background-color: #F07C00;
}

.btn_form{
    position: relative;
    top:25px;
    left:174px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    border-radius: 5px;
    width: 208px;
    height: 49px;
    background: #f07c00;
    border: none;
    padding-left: 65px; 
}


.btn_form:hover{
    position: relative;
    top:25px;
    left:174px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #f07c00;
    border: 2px solid #f07c00;
    border-radius: 5px;
    background:#fff;
    width: 208px;
    height: 49px;
    padding-left: 63px; 
}

.nine2{
    position: absolute;
    top: 0px;
    left: 600px;
}

.nine2_punkt{
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    top:5px;
}

.nine2_tel{
    display: flex;
    gap: 10px;
    position: relative;
}

.nine2_tel1{
    font-weight: 700;
    font-size: 18px;
    color: #514f4f;
}

.nine2_tel2{
    font-weight: 400;
    font-size: 18px;
    color: #514f4f;
    width: 156px;
    cursor: pointer;
}

.nine2_email2{
    font-weight: 400;
    font-size: 18px;
    color: #514f4f;
    width: 109px;
    cursor: pointer;
}

.nine2_email2:hover{
    font-weight: 400;
    font-size: 18px;
    color: #f07c00;
}

.nine2_adr{
    display: flex;
    gap: 10px;
    position: relative;
    align-items: center;
}

.nine2_adr2{
    font-weight: 400;
    font-size: 17px;
    color: #514f4f;
    width: 536px;
}

.karta{
    position: relative;
    top: 25px;
}

.footer{
    position: relative;
    margin-top: 50px;
    left: 0;
    width: 100%;
}

.fon_f{
    height: 352px;
    background: #514f4f;
    align-items: center;
}

.logo{
    position: absolute;
    display: block;
    top:100px;
    left:81px;
}

.fon_f2{
    position: absolute;
    top:-1px;
    left:330px;
}

.logo1{
    position: absolute;
    top:190px;
    left:81px;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
}

.logo2{
    position: absolute;
    top:210px;
    left:81px;

    font-weight: 700;
    font-size: 13px;
    color: #fff;
}

.mark{
    position: absolute;
    top:295px;
    left:81px;
    font-weight: 400; 
    font-size: 14px;
    color: #f07c00;
}

.footer_zag1{
    position: absolute;
    top: 46px;
    left: 222px;
    align-items: center;
}

.footer_palka1{
    border: 2px solid #fff;
    width: 30px;
    height: 0px;
    transform: rotate(-90deg);
    position: absolute;
    left:-25px;
}

.footer1_zag1{
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    position: absolute;
    left: 5px;
    top: -8px;
}

.footer1_punkt{
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    left: 210px;
    top: 79px;
}

.footer1_punkt1{
    font-weight: 400;
    font-size: 12px;
    color: #fff;
}

.footer1_punkt1:hover{
    font-weight: 400;
    font-size: 12px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #fff;
    cursor: pointer;
}

.footer2_punkt{
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    left: 634px;
    top: 85px;
}

.footer2_punkt1{
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
}

.footer2_punkt1:hover{
    font-weight: 400;
    font-size: 12px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #fff;
    cursor: pointer;
}

.cont_punkt{
    display: flex;
    flex-direction: column;
    gap: 11px;
    position: absolute;
    left: 895px;
    top: 85px;
}

.foot3_tel{
    display: flex;
    gap: 7px;
    position: relative;
}

.foot3_tel1{
    font-weight: 700;
    font-size: 12px;
    color: #fff;
}

.foot3_tel2{
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    width: 105px;
    cursor: pointer;
}

.foot3_email2{
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    width: 73px;
    cursor: pointer;
}

.foot3_email2:hover{
    font-weight: 400;
    font-size: 12px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #fff;
    cursor: pointer;
}

.foot3_adr{
    display: flex;
    gap: 7px;
    position: relative;
    align-items: center;
}

.social{
    position: absolute;
    display: flex;
    gap: 20px;
    top: 230px;
    left: 895px;
}

.soc{
    border: 1px solid #929292;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    background: #514f4f;
    text-align: center;
    padding-top: 15px;
    cursor: pointer;
}

.soc:hover{
    border: 1px solid #fff;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    background: #514f4f;
    text-align: center;
    padding-top: 15px;  
    
    .soc1{
        fill:#fff;
    }
}

.opros{
    width: 1300px;
    max-height: 3884px;
    background: #fff;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0px auto;
    overflow-y: auto;
    overflow-x: hidden;
    z-index:1010;
}

.opros__overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}
  
.opros__box{
    margin: 0px auto;
    width: 1300px;
    height: 3884px;
    background: #FFFFFF;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.52);
    position: relative;
    border-radius: 5px;
    overflow: auto;
}

.opros:target{
    display:block;
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
}

.close1{
    position: absolute;
    top:19px;  
    left:1245px;
    font-weight: 700;
    font-size: 30px;
    color: #f07c00;
    transform: rotate(45deg);
    cursor: pointer;
}

.opros_zag{
    position: absolute;
    left: 60px;
    top: 50px;
}

.opros_palka{
    position: absolute;
    border: 3px solid #f07c00;
    width: 60px;
    height: 0px;
    transform: rotate(-90deg);
    left: -27px;
    top: 30px;   
}

.opros_zag0{
    font-weight: 700;
    font-size: 30px;
    color: #514f4f;
    position: absolute;
    left: 30px;
    top: 12px;
    width: 383px;
}

.box h5 {
    font-size: 20px;
    margin-top: 20px;
}

.box button {
    margin-top: 10px;
}

.zag_categ ul li{
    margin-left: 15px;
}

.zag_categ ul li:before{
    content: '';
    z-index: 10;
    position: absolute;
    width: 4px;
    height: 4px;
    margin: 10px 0 0 -10px;
    background: #f07c00;
}

.zag_categ h5{
    font-size: 18px;
    margin-top: 10px;
}

.opros_zag_text{
    position: absolute;
    left: 0px;
    top: 90px;
    width: 1180px;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    color: #514f4f;
}

.opros_zag1{
    position: absolute;
    left: 60px;
    top: 258px;
}

.opros_palka1{
    position: absolute;
    border: 2px solid #f07c00;
    width: 45px;
    height: 0px;
    transform: rotate(-90deg);
    left: -20px;
    top: 30px;   
}

.opros_zag1_1{
    font-weight: 700;
    font-size: 18px;
    text-align: justify;
    color: #514f4f;
    position: absolute;
    left: 25px;
    top: 20px;
    width: 383px;
}

.opros_pole1_text{
    font-weight: 400;
    font-size: 12px;
    text-align: justify;
    color: #514f4f;
    position: absolute;
    top:333px;
    left:60px;
}

.opros_pole1:hover{
    position: absolute; 
    top: 354px;
    left: 60px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 400px;
    height: 50px;
    background: #fff;
    outline:none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.opros_pole1{
    position: absolute; 
    top: 354px;
    left: 60px;
    align-items: center; 
    cursor: text;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    width: 400px;
    height: 50px;
    background: #f5f5f5;
    outline: none;
    padding-left: 15px;
    padding-right: 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.opros_pole1:focus{
    position: absolute; 
    top: 354px;
    left: 60px;
    font-family: var(--font-family);
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 400px;
    height: 50px;
    background: #fff;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.opros_pole2{
    position: absolute; 
    top: 455px;
    left: 60px;
    align-items: center; 
    cursor: text;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    width: 300px;
    height: 50px;
    background: #f5f5f5;
    outline: none;
    padding-left: 15px;
    padding-right: 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.opros_pole2:hover{
    position: absolute; 
    top: 455px;
    left: 60px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 300px;
    height: 50px;
    background: #fff;
    outline:none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.opros_pole2:focus{
    position: absolute; 
    top: 455px;
    left: 60px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 300px;
    height: 50px;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
} 

.opros_pole6{
    position: absolute; 
    top: 354px;
    left: 560px;
    align-items: center; 
    cursor: text;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    width: 680px;
    height: 50px;
    background: #f5f5f5;
    outline: none;
    padding-left: 15px;
    padding-right: 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.opros_pole6:hover{
    position: absolute; 
    top: 354px;
    left: 560px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 680px;
    height: 50px;
    background: #fff;
    outline:none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.opros_pole6:focus{
    position: absolute; 
    top: 354px;
    left: 560px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 680px;
    height: 50px;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
} 

.opros_pole7{
    position: absolute; 
    top: 535px;
    left: 560px;
    align-items: center; 
    cursor: text;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    width: 280px;
    height: 50px;
    background: #f5f5f5;
    outline: none;
    padding-left: 15px;
    padding-right: 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.opros_pole7:hover{
    position: absolute; 
    top: 535px;
    left: 560px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 280px;
    height: 50px;
    background: #fff;
    outline:none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.opros_pole7:focus{
    position: absolute; 
    top: 535px;
    left: 560px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 280px;
    height: 50px;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
} 

.checkbox_opr1{
    position: absolute;
    left:560px;
    top:429px; 
}

.opros_ch {
    position: absolute;
    opacity: 0;
}

.opros_ch+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    font-weight: 600;
    font-size: 15px;
    text-align: justify;
    color: #514f4f;
}
.opros_ch+label::before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.opros_ch:checked+label::before {
    border-color: #F07C00;
    background-color: #F07C00;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

/* стили при наведении курсора на checkbox */
.opros_ch:not(:disabled):not(:checked)+label:hover::before {
    border-color: #F07C00;
}
/* стили для активного состояния чекбокса (при нажатии на него) */
.opros_ch:not(:disabled):active+label::before {
    background-color: #F07C00;
    border-color: #F07C00;
}
/* стили для чекбокса, находящегося в состоянии disabled */
.opros_ch:disabled+label::before {
    background-color: #F07C00;
}

.opros_pole11{
    position: absolute; 
    top: 707px;
    left: 560px;
    align-items: center; 
    cursor: text;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    width: 680px;
    height: 200px;
    background: #f5f5f5;
    outline: none;
    display: inline-block;
    padding: 10px 10px 10px 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.opros_pole11:hover{
    position: absolute; 
    top: 707px;
    left: 560px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    display: inline-block;
    padding: 10px 10px 10px 15px;
    width: 680px;
    height: 200px;
    background: #fff;
    outline:none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.opros_pole11:focus{
    position: absolute; 
    top: 707px;
    left: 560px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    display: inline-block;
    padding: 10px 10px 10px 15px;
    width: 680px;
    height: 200px;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
} 

.metod{
    position: absolute;
    top: 1053px;
    left:560px;
    font-weight: 600;
    font-size: 15px;
    text-align: justify;
    color: #514f4f;
}

.fix1{
    position: absolute;
    top: 1174px;
    left: 760px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-align: justify;
    color: #514f4f;
}

.vrashch{
    display: block;
}

.checkbox_opr13{
    position: absolute;
    left:1060px;
    top:1086px; 
}

.opros_ch13{
    position: absolute;
    opacity: 0;
}

.opros_ch13+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    font-weight: 600;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.opros_ch13+label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.opros_ch13:checked+label::before {
    border-color: #F07C00;
    background-color: #F07C00;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.opros_ch13:not(:disabled):not(:checked)+label:hover::before {
    border-color: #F07C00;
}

.opros_ch13:not(:disabled):active+label::before {
    background-color: #F07C00;
    border-color: #F07C00;
}

.opros_ch13:disabled+label::before {
    background-color: #F07C00;
}

.opros_pole18{
    position: absolute; 
    top: 1442px;
    left: 560px;
    align-items: center; 
    cursor: text;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    width: 680px;
    height: 200px;
    background: #f5f5f5;
    outline: none;
    display: inline-block;
    padding: 10px 10px 10px 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.opros_pole18:hover{
    position: absolute; 
    top: 1442px;
    left: 560px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    display: inline-block;
    padding: 10px 10px 10px 15px;
    width: 680px;
    height: 200px;
    background: #fff;
    outline:none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.opros_pole18:focus{
    position: absolute; 
    top: 1442px;
    left: 560px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    display: inline-block;
    padding: 10px 10px 10px 15px;
    width: 680px;
    height: 200px;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
} 

.opros_zag_tabl{
    position: absolute;
    top: 1765px;
    left: 60px;
    border-radius: 5px;
    width: 1180px;
    height: 50px;
    background: #f07c00;
}

.opros_zag_tabl_palka1{
    position: absolute;
    border: 1px solid #fff;
    width: 51px;
    height: 0px;
    transform: rotate(-90deg);
    left: 176px;
    top: 1789px;   
}

.opros_zag1_tabl{
    position: absolute;
    top: 1774px;
    left: 97px;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    color: #fff;
    width: 66px;
}

.opros_zag_str{
    position:absolute;
    top:50px;
}

.tabl_2_1{
    position: absolute; 
    top: 1865px;
    left: 60px;
    align-items: center; 
    cursor: text;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    width: 142px;
    height: 50px;
    background: #f5f5f5;
    outline: none;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
}

.tabl_2_1:hover{
    position: absolute; 
    top: 1865px;
    left: 60px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    width: 142px;
    height: 50px;
    background: #fff;
    outline:none;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
}

.tabl_2_1:focus{
    position: absolute; 
    top: 1865px;
    left: 60px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    width: 142px;
    height: 50px;
    background: #fff;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
} 

.tabl_2_2{
    position: absolute; 
    top: 1865px;
    left: 201px;
    align-items: center; 
    cursor: text;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    width: 180px;
    height: 50px;
    background: #f5f5f5;
    outline: none;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
}

.tabl_2_2:hover{
    position: absolute; 
    top: 1865px;
    left: 200px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    width: 180px;
    height: 50px;
    background: #fff;
    outline:none;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
}

.tabl_2_2:focus{
    position: absolute; 
    top: 1865px;
    left: 200px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    width: 180px;
    height: 50px;
    background: #fff;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
} 

.tabl_2_3{
    position: absolute; 
    top: 1865px;
    left: 380px;
    align-items: center; 
    cursor: text;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    width: 180px;
    height: 50px;
    background: #f5f5f5;
    outline: none;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
}

.tabl_2_3:hover{
    position: absolute; 
    top: 1865px;
    left: 380px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    width: 180px;
    height: 50px;
    background: #fff;
    outline:none;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
}

.tabl_2_3:focus{
    position: absolute; 
    top: 1865px;
    left: 380px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    width: 180px;
    height: 50px;
    background: #fff;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
} 

.tabl_2_4{
    position: absolute; 
    top: 1865px;
    left: 559px;
    align-items: center; 
    cursor: text;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    width: 180px;
    height: 50px;
    background: #f5f5f5;
    outline: none;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
}

.tabl_2_4:hover{
    position: absolute; 
    top: 1865px;
    left: 559px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    width: 180px;
    height: 50px;
    background: #fff;
    outline:none;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
}

.tabl_2_4:focus{
    position: absolute; 
    top: 1865px;
    left: 559px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    width: 180px;
    height: 50px;
    background: #fff;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
} 

.tabl_2_5{
    position: absolute; 
    top: 1865px;
    left: 738px;
    align-items: center; 
    cursor: text;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    width: 140px;
    height: 50px;
    background: #f5f5f5;
    outline: none;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
}

.tabl_2_5:hover{
    position: absolute; 
    top: 1865px;
    left: 738px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    width: 140px;
    height: 50px;
    background: #fff;
    outline:none;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
}

.tabl_2_5:focus{
    position: absolute; 
    top: 1865px;
    left: 738px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    width: 140px;
    height: 50px;
    background: #fff;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
} 

.tabl_2_6{
    position: absolute; 
    top: 1865px;
    left: 877px;
    align-items: center; 
    cursor: text;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    width: 364px;
    height: 50px;
    background: #f5f5f5;
    outline: none;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
}

.tabl_2_6:hover{
    position: absolute; 
    top: 1865px;
    left: 877px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    width: 364px;
    height: 50px;
    background: #fff;
    outline:none;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
}

.tabl_2_6:focus{
    position: absolute; 
    top: 1865px;
    left: 877px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    width: 364px;
    height: 50px;
    background: #fff;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
    text-align: center;
} 

.opros_btn{
    position: absolute;
    top:3784px;
    left:525px;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    text-align: justify;
    color: #fff;
    border-radius: 5px;
    width: 250px;
    height: 50px;
    background: #f07c00;
    border: none;
    padding-top:0px;
    padding-left: 76px; 
}

.opros_btn:hover{
    position: absolute;
    top:3784px;
    left:525px;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    text-align: justify;
    color: #f07c00;
    border: 2px solid #f07c00;
    border-radius: 5px;
    width: 250px;
    height: 50px;
    background: #fff;
    padding-top:0px;
    padding-left: 74px; 
}

.ind{
    width: 1920px;
    height:910px;
    background: #fff;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    overflow: auto;
    overscroll-behavior: contain;
    z-index:1000;
}

.ind__overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}
  
.ind__box{
    margin: 0px auto;
    width: 1920px;
    height: 910px;
    background: #FFFFFF;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.52);
    position: relative;
}

.close{
    position: absolute;
    top:19px;
    right:40px;

    font-weight: 700;
    font-size: 49px;
    color: #f07c00;
    transform: rotate(180deg);
    cursor: pointer;
}

.bl_left{
    position: absolute;
    top: 0px;
    left:0px;
    width: 850px;
    height: 910px;
    background: #f07c00;
}

.ind_zag{
    position: absolute;
    left: 370px;
    top: 55px;
}

.ind_palka{
    position: absolute;
    border: 3px solid #fff;
    width: 60px;
    height: 0px;
    transform: rotate(-90deg);
    left: -36px;
    top: 30px;
}

.ind_zag1{
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    position: absolute;
    left: 20px;
    top: 12px;
    width: 383px;
}

.ind_logo{
    position: absolute;
    top: 55px;
    left: 919px;
}

.ind_text1{
    position:absolute;
    top:131px;
    left:919px;
    width:941px;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    color: #514f4f;
}

.ind_text2{
    position:absolute;
    top:271px;
    left:1064px;
    width:651px;
    font-weight: 600;
    font-size: 20px;
    line-height: 183%;
    text-align: center;
    color: #514f4f;
}

 .ind_btn{
    position: absolute;
    top:412px;
    left:1265px;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    text-align: justify;
    color: #fff;
    border-radius: 5px;
    width: 250px;
    height: 50px;
    background: #f07c00;
    border: none;
    padding-top:5px;
    padding-left: 63px; 
}

.ind2_zag{
    position: absolute;
    left: 919px;
    top: 489px;
}

.ind2_palka{
    position: absolute;
    border: 3px solid #f07c00;
    width: 40px;
    height: 0px;
    transform: rotate(-90deg);
    left: -18px;
    top: 30px;
}

.ind2_zag1{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 22px;
    color: #514f4f;
    position: absolute;
    left: 25px;
    top: 18px;
    width: 383px;
}

.ind_kart1{
    position: absolute;
    top: 555px;
    left: 1030px;
}

.ind_kart2{
    position: absolute;
    top: 555px;
    left: 1592px;
}

.ind_kart3{
    position: absolute;
    top: 715px;
    left: 1003px;
}

.ind_kart4{
    position: absolute;
    top: 715px;
    left: 1340px;
}

.ind_kart5{
    position: absolute;
    top: 715px;
    left: 1594px;
}

.nas{
    width: 1920px;
    height:910px;
    background: #fff;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    overflow: auto;
    overscroll-behavior: contain;
    z-index:1000;
}

.nas:target{
    display:block;
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
}

.close_nas{
    position: absolute;
    top:19px;
    right:40px;
    font-weight: 700;
    font-size: 30px;
    color: #f07c00;
    transform: rotate(45deg);
    cursor: pointer;
}

.bl_left1{
    position: absolute;
    top: 0px;
    left:0px;
    width: 850px;
    height: 910px;
    background: #f07c00;
}

.nas_zag{
    position: absolute;
    left: 370px;
    top: 55px;
}

.nas_palka{
    position: absolute;
    border: 3px solid #fff;
    width: 60px;
    height: 0px;
    transform: rotate(-90deg);
    left: -36px;
    top: 30px;
}

.nas_zag1{
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    position: absolute;
    left: 20px;
    top: 12px;
    width: 383px;
}

.novost1{
    width: 1920px;
    height:910px;
    background: #fff;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    overflow: auto;
    overscroll-behavior: contain;
    z-index:1000;
}

.novost1__overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}
  
.novost1__box {
    margin: 0px auto;
    width: 1920px;
    height: 910px;
    background: #FFFFFF;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.52);
    position: relative;
}
  
.close_n1{
    position: absolute;
    top:19px;
    right:40px;
    font-weight: 700;
    font-size: 30px;
    color: #f07c00;
    transform: rotate(45deg);
    cursor: pointer; 
}

.bl_left2{
    position: absolute;
    top: 0px;
    left:0px;
    width: 850px;
    height: 910px;
    background: #f07c00;
}

.novost1_zag{
    position: absolute;
    left: 70px;
    top: 55px;
}

.novost1_palka{
    position: absolute;
    border: 3px solid #fff;
    width: 102px;
    height: 0px;
    transform: rotate(-90deg);
    left: -36px;
    top: 30px;
}

.novost1_zag1{
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    position: absolute;
    left: 35px;
    top: -7px;
    width: 714px;
}

.novost1_text{
    position:absolute;
    top:131px;
    left:919px;
    width:941px;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    color: #514f4f;
}

.seven1_ss1{
    position: absolute;
    top: 270px;
    left: 460px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    width: 200px;
    text-decoration: underline;
    color: #f07c00;
}

.novost1_kart1{
    position: absolute;
    top: 245px;
    left: 919px;
}

.novost4_kart1{
    position: absolute;
    top: 236px;
    left: 919px;
}

.novost4_kart2{
    position: absolute;
    top: 236px;
    left: 1331px;
}

.novost4_kart3{
    position: absolute;
    top: 236px;
    left: 1604px;
}

.novost4_kart4{
    position: absolute;
    top: 522px;
    left: 919px;
}

.novost4_kart5{
    position: absolute;
    top: 522px;
    left: 1191px;
}

.novost4_kart6{
    position: absolute;
    top: 522px;
    left: 1463px;
}

.novost1_ic{
    position: absolute;
    top:840px;
    left:1705px;
}

.novost1_dat{
    position: absolute;
    top:852px;
    left:1755px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #514f4f;
}

.close_n2{
    position: absolute;
    top:19px;
    right:40px;
    font-weight: 700;
    font-size: 30px;
    color: #f07c00;
    transform: rotate(45deg);
    cursor: pointer;
}

.close_n3{
    position: absolute;
    top:19px;
    right:40px;
    font-weight: 700;
    font-size: 30px;
    color: #f07c00;
    transform: rotate(45deg);
    cursor: pointer;
}

.close_n4{
    position: absolute;
    top:19px;
    right:40px;
    font-weight: 700;
    font-size: 30px;
    color: #f07c00;
    transform: rotate(45deg);
    cursor: pointer;
}

.bilet{
    width: 722px;
    max-height: 722px;
    background: #fff;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0px auto;
    overflow-y: auto;
    overflow-x: hidden;
    z-index:1010;
}

.bilet__overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}
  
.bilet__box{
    margin: 0px auto;
    width: 722px;
    height: 722px;
    background: #FFFFFF;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.52);
    position: relative;
    border-radius: 5px;
    overflow: auto;
}

.bilet:target {
    display: block;
    opacity: 1; /* делаем окно видимым */
    pointer-events: auto; /* элемент видим для событий мыши */
    overflow-y: auto; /* добавляем прокрутку по y, когда элемент не помещается на страницу */
}

.close_bilet{
    position: absolute;
    top: 22px;
    left: 672px;
    font-weight: 700;
    font-size: 30px;
    color: #f07c00;
    transform: rotate(45deg);
    cursor: pointer;
}

.zag_bilet{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 30px;
    color: #514f4f;
    position: absolute;
    left: 215px;
    top: 122px;
}

.text_bilet{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #514f4f;
    position: absolute;
    width: 552px;
    top: 193px;
    left: 85px;
}

.bilet_pole1_text{
    font-weight: 400;
    font-size: 12px;
    text-align: justify;
    color: #514f4f;
    position: absolute;
    top:267px;
    left:211px;
}

.bilet_pole1:hover{
    position: absolute; 
    top: 288px;
    left: 211px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 300px;
    height: 50px;
    background: #fff;
    outline:none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.bilet_pole1{
    position: absolute; 
    top: 288px;
    left: 211px;
    align-items: center; 
    cursor: text;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    width: 300px;
    height: 50px;
    background: #f5f5f5;
    outline: none;
    padding-left: 15px;
    padding-right: 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.bilet_pole1:focus{
    position: absolute; 
    top: 288px;
    left: 211px;
    font-family: var(--font-family);
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 300px;
    height: 50px;
    background: #fff;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.bilet_pole2_text{
    font-weight: 400;
    font-size: 12px;
    text-align: justify;
    color: #514f4f;
    position: absolute;
    top:358px;
    left:211px;
}

.bilet_pole2:hover{
    position: absolute; 
    top: 379px;
    left: 211px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 300px;
    height: 50px;
    background: #fff;
    outline:none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.bilet_pole2{
    position: absolute; 
    top: 379px;
    left: 211px;
    align-items: center; 
    cursor: text;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    width: 300px;
    height: 50px;
    background: #f5f5f5;
    outline: none;
    padding-left: 15px;
    padding-right: 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.bilet_pole2:focus{
    position: absolute; 
    top: 379px;
    left: 211px;
    font-family: var(--font-family);
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 300px;
    height: 50px;
    background: #fff;
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
} 

.bilet_btn{
    position: absolute;
    top:550px;
    left:211px;
    align-items: center;
    cursor: pointer;
    vertical-align: middle;
    font-weight: 700;
    font-size: 17px;
    text-align: justify;
    color: #fff;
    border-radius: 5px;
    width: 300px;
    height: 50px;
    background: #f07c00;
    border: none;
    padding-left: 80px; 
}

.bilet_btn:hover{
    position: absolute;
    top:550px;
    left:211px;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    text-align: justify;
    color: #f07c00;
    border: 2px solid #f07c00;
    border-radius: 5px;
    width: 300px;
    height: 50px;
    background: #fff;
    padding-left: 78px; 
}

.bilet_data1{
    font-weight: 400;
    font-size: 12px;
    text-align: justify;
    color: #514f4f;
    position: absolute;
    top:449px;
    left:211px;
}

div.selectBox {
    position:absolute;
    display:inline-block;
    cursor:default;
    text-align:left;
    line-height:50px;
    clear:both;
    color:#888;
    top: 470px;
    left: 211px;
}
span.selected {
    width:250px;
    height: 50px;
    text-indent:20px;
    border: 2px solid #c0c0c0;
    border-right:none;
    border-top-left-radius:5px;
    border-bottom-left-radius:5px;
    background:#f5f5f5;
    overflow:hidden;
    cursor: pointer;
}
span.selected:hover {
    width:250px;
    height: 50px;
    text-indent:20px;
    border: 2px solid #F07C00;
    border-right:none;
    border-top-left-radius:5px;
    border-bottom-left-radius:5px;
    background:#fff;
    overflow:hidden;
    cursor: pointer;
}
span.selected:focus {
    width:250px;
    height: 50px;
    text-indent:20px;
    border: 2px solid #F07C00;
    border-right:none;
    border-top-left-radius:5px;
    border-bottom-left-radius:5px;
    background:#fff;
    overflow:hidden;
    cursor: pointer;
}
span.selectArrow {
    width:50px;
    height: 50px;
    border-top-right-radius:5px;
    border-bottom-right-radius:5px;
    text-align:center;
    font-size:17px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    background:	#F07C00;
    color:#fff;
    cursor: pointer;
}
 
span.selectArrow,span.selected {
    position:relative;
    float:left;
    height:50px;
    z-index:1;
}
 
div.selectOptions {
    position:absolute;
    top:53px;
    left:0;
    width:300px;
    height: 102px;
    border:2px solid #c0c0c0;
    border-radius:5px;
    overflow:hidden;
    background:#f6f6f6;
    padding-top:0px;
    display:none;
    z-index: 2;
}
 
span.selectOption {
    display: block;
    width: 100%;
    line-height: 50px;
    padding: 0px 20px;
}
 
span.selectOption:hover {
    color:#f5f5f5;
    background:#F07C00;	
    cursor: pointer;
}

.error{
    align-items: center; 
    cursor: text;
    border: 2px solid #FF0000;
    border-radius: 5px;
    width: 300px;
    height: 50px;
    background: #f5f5f5;
    outline: none;
    padding-left: 15px;
    padding-right: 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    text-align: justify;
    color: #514f4f;
}

.uspeshno{
    height: 300px;
    width: 300px;
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    color: #514f4f;
    position: absolute;
    top: 250px;
    left: 150px;
}

.success{
	width: 100%;
    text-align: center;
    padding: 350px 0 0 0;
	font-size: 24px;
    text-transform: uppercase;
    color: #f07c00;
}

.menu{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 20px;
    border-radius: 5px;
    width: 980px;
    height: 633px;
    background: #fff;
    position: absolute;
    top: 50px;
    display: none;
    cursor: default;
    z-index:2;
}

.menu1{
    position: relative;
    left: 0px;
    top:0px;
    display: flex;
    align-items: center;
    cursor: default;
    height: 128px;
    width: 459px;
    gap: 5px;
}

.menu1_cod{
    width: 260px;
    cursor: pointer;
}

.menu1_zag{
    font-weight: 600;
    font-size: 16px;
    color: #f07c00;
    padding-bottom: 7px;
    text-align: left;
    width: 297px;
}

.menu1_text{
    position: relative;
    font-weight: 400;
    font-size: 12px;
    text-align: justify;
    color: #514f4f;
    width: 261px;
    padding-bottom: 7px;
}

.razd2{
    border: 1px solid #f07c00;
    width: 120px;
    height: 0px;
    transform: rotate(90deg);
    position: absolute;
}

.menu__overlay {
    position: fixed;
    top: 80px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    cursor:default;
    display: none;
}

.put{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    color: #514f4f;
}

.strelka{
    font-weight: 700;
    color: #f07c00;
}

.zag_categ{
    position: relative;
    left: 0px;
    z-index: 1;
}

.palka_categ{
    border: 2px solid #f07c00;
    width: 50px;
    height: 0px;
    transform: rotate(-90deg);
    position: absolute;
    left:-25px;
}

.zag1_categ{
    font-weight: 700;
    font-size: 24px;
    color: #514f4f;
    position: relative;
    left: 20px;
    top: -15px;
}

.one_categ{
    display: flex;
    column-gap: 30px;
}

.block_one_categ{
    border-radius: 5px;
    width: 530px;
    height: 300px;
    background: #f07c00;
}

.one_zag_categ{
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    width: 535px;
    position: relative;
    top: 20px;
    left:25px;
}

.one_text_categ{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    cursor: text;
    position: relative;
    top: 30px;
    left: 40px;
    width: 529px;
}

.one_text_categ li{
    list-style-image:url(/img/marker.svg);
    margin: 7px 0;
}

.one_but_categ{
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    padding: 15px 24px;
    width: 250px;
    height: 49px;
    background: #fff;
    position:relative;
    top:45px;
    border: none; 
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    color: #f07c00;
}

.one_but_categ:hover{
    border: 2px solid #fff;
    padding-left:40px;
    padding-top:13px;
    background: #f07c00;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.filtr{
    position:relative;
    gap: 10px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    text-align: right;
    color: #f07c00;
    top:250px;
    left:1055px;
    display: flex;
    align-items: center;
    height: 50px;
    width: 130px;
    border: none;
    background: none;
    cursor: pointer;
    z-index:1;
}

.text1_categ{
    position:relative;
    top:220px;
    left:0px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    color: #514f4f;
    cursor: text;
    z-index:1;
    width:1180px;
    height: 220px;
}

.text2_categ {
    margin-top: 15px;
}

.text2_categ li {
    margin: 10px 0 0 10px;
}

.text2_categ1{
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    color: #514f4f;
    margin-top:10px;
}

.text2_categ2{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #514f4f;
    cursor: text;
    line-height: 136%;
}

.text2_categ2 li{
    padding-bottom: 10px;
    cursor: text;
    line-height: 136%;
}

.text2_categ li:before{
    content: '';
    z-index: 10;
    position: absolute;
    width: 4px;
    height: 4px;
    margin: 8px 0 0 -10px;
    background: #f07c00;
}

.categ_pometka{
    position: relative;
    top:-12px;
}

.categ_pometka1{
    position:absolute;
    display: flex;
    align-items: center;
    padding: 4px 33px;
    z-index:2;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 12px;
    color: #fff;
}

.categ_pometka2{
    position: relative;
}

.categ_cartochka{
    display: block;
    position: relative;
    top:230px;
    left:0px;
    border-radius: 5px;
    width: 280px;
    height: 430px;
    box-shadow: -5px -5px 30px 0 rgba(0, 0, 0, 0.1), 5px 5px 30px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
    margin-bottom: 15px;
}

.categ_cartochka:hover{
    box-shadow: -5px -5px 30px 0 rgba(240, 124, 0, 0.15), 5px 5px 30px 0 rgba(240, 124, 0, 0.15);
}

.categ_wrapper{
    display: flex;
    column-gap: 80px;
}

.knopki {
    display: flex;
    justify-content: space-between;
}

.knopki_right{
    display: flex;
    column-gap: 20px;
}

.knopki_left{
    display: flex;
    flex-direction: column;
    row-gap: 11px;
}

.mt-10 {
    margin-top: 12px;
}

.gallery {
    margin-top: 20px;
    display: flex;
    flex-direction: column; /* Располагаем элементы вертикально */
    gap: 15px; /* Отступ между слайдерами */
}

.cartochka_zag{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    color: #f07c00;
    position: relative;
    text-align: center;
    top: 20px;
}

.cartochka_but{
    border-radius: 5px;
    padding: 0px 14px;
    width: 100px;
    height: 28px;
    background: #f07c00;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    border: none;
    position: relative;
    cursor: pointer;
    top:65px;
    left:90px;
}

.cartochka_but:hover{
    background: #fff;
    border: 1px solid #f07c00;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 12px;
    color: #f07c00;
}

.cartochka_text{
    display: inline-block;
    position: relative;
    top: 35px;
    left: 16px;
    margin-bottom: 5px;
}

.cart_text1{
    display:inline-block;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 13px;
    color: #514f4f;
}

.cart_text2{
    display:inline-block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    color: #514f4f;
}

.categ_carts{
    display:grid;
    margin-bottom: 0 auto;
    grid-template-columns: 25% 25% 25% 25%;
    gap: 5px; 
}

.categ_forma_bl{
    border-radius: 5px;
    width: 1300px;
    height: 685px;
    background: #fff;
    position: absolute;
    left:300px;
    vertical-align: middle;
    margin-top: 34px;
}

.categ_forma{
    position:relative;
    top: 280px;
    left: -370px;
}

.filtr_bl{
   position: relative;
   top: 140px;
   display: none;
}

.filtr1_nazv{
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 15px;
    text-align: justify;
    color: #514f4f;
    position: relative;
    top: 130px;
}

.filtr1_ot{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    text-align: justify;
    color: #514f4f;
    position: relative;
    top: 150px;

}

.filtr1_do{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    text-align: justify;
    color: #514f4f;
    position:relative;
    top: 130px;
    left:140px;
}

.filtr1_mm{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    text-align: justify;
    color: #514f4f;
    position:relative;
    top: 130px;
    left:290px;
}

.filtr1_ot_pole:placeholder-shown{
    position: relative;
    top:100px;
    left:25px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100px;
    height: 40px;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: #514f4f;
}

.filtr1_ot_pole:hover{
    position: relative;
    top:100px;
    left:25px;
    border: 2px solid #514f4f;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100px;
    height: 40px;
    background:#fff;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color:#514f4f;
}

.filtr1_ot_pole{
    position: relative;
    top:100px;
    left:25px;
    border: 2px solid #F07C00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100px;
    height: 40px;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: #514f4f;
    outline: none;
}


.filtr1_do_pole:placeholder-shown{
    position: relative;
    top:100px;
    left:70px;
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100px;
    height: 40px;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: #514f4f;
}

.filtr1_do_pole:hover{
    position: relative;
    top:100px;
    left:70px;
    border: 2px solid #514f4f;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100px;
    height: 40px;
    background:#fff;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color:#514f4f;
}

.filtr1_do_pole{
    position: relative;
    top:100px;
    left:70px;
    border: 2px solid #F07C00;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100px;
    height: 40px;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: #514f4f;
    outline: none;
}

.but_tov1{
    border: 2px solid #f07c00;
    border-radius: 5px;
    padding-top: 0px;
    width: 250px;
    height: 49px;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    color: #f07c00;
    text-align: center;
}

.price_tovar {
    position: relative;
    margin-top: 10px;
}

.price_tovar1{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    color: #fff;
    z-index:2;
    position: absolute;
    top: 8px;
    left: 75px;
}

.but_tov2{
    border-radius: 5px;
    border: none;
    padding-top: 0px;
    width: 250px;
    height: 49px;
    background: #f07c00;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.but_tov1:hover{
    background: #f07c00;
    color: #fff;
    cursor: pointer;
}

.but_tov2:hover{
    background: #fff;
    color:#F07C00;
    cursor: pointer;
    border: 2px solid #f07c00;
}

.teh_har:target{
    padding-top: 700px;
    margin-top: -700px;
}

.mt_50{
   margin-top: 50px;
}

.table {
    margin-top: 20px;
}

.model_label {
    background-color:#f07c00;
    text-align: center;
    border: 3px solid #fff;
}

.model_spacer {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.model_table tr:first-child td {
  padding: 0 15px;
}

.model_table tbody tr:not(last-child) td {
  padding: 0;
}

.model_line_v{
    background: url(../img/model_bg.png) 50% top !important;
}

.model_line_c {
    background: url(../img/model_bg.png) 50% 50% !important;
}

.ustan-flex {
    display: flex;
    column-gap: 35px;
    margin-top: 25px;
    padding-bottom: 35px;
}

.colors {
    margin-top: 20px;
}

.ustan-flex div h5:first-child {
    font-weight: 700;
    font-size: 18px;
    color: #514f4f;
    width: 0px;
    white-space: nowrap;
}

.ustan:target{
    padding-top: 450px;
    margin-top: -450px;
   }
   
.markirovka:target{
    padding-top: 500px;
    margin-top: -500px;
}
   
.stand_mod:target{
    padding-top: 500px;
    margin-top: -500px;
}

.stand_mod {
    padding-bottom: 30px;
}

/*таблица целиком*/
table{
    border-collapse: collapse;
    width: 100%;
}

/*заголовок*/
th{
    background-color: #f07c00;
    color: #fff;
    height: 36px;
    border-top: 1px solid #fff;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

/*строка*/
td{
    height: 36px;
    border-top: 1px solid #fff;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    color: #514f4f;
}

tbody tr:nth-child(odd) {
background-color: #FFDDB9;
}

tbody tr:nth-child(even) {
background-color: #FFF4E9;
}

th:nth-child(odd){
    padding-left:30px;
}

.pam_tabl2{
    margin-top: 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 10px;
    color: #ff0909;
}

.text_mark{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #514f4f;
    position: relative;
    width: 1100px;

}

.mark1 {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-family: var(--font-family, Arial, sans-serif);
}

.mark_container {
  display: flex;
  margin-top: 20px;
  gap: 1px;
}

.mark_pair {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

/* Верхний — оранжевый */
.mark_bl1 {
  background: #f07c00;
  color: white;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  width: 100%;
  padding: 12px 16px;
  white-space: nowrap; 
}

/* Нижний — серый */
.mark_bl2 {
  background: #767676;
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  height: 20px;
  line-height: 20px;
  width: 100%;

}

/* Тире между серыми блоками */
.mark_razd {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #514f4f;
  font-weight: 900;
  padding: 0 15px;
}

td .mark2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 136%;
    text-align: justify;
    color: #fff;
}

.td1{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 136%;
    text-align: center;
    color: #fff;
    background-color: #767676;
    padding: 15px;
}

.td2{
    background-color: #f07c00;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    min-width: 450px;
    padding: 20px;
}

.td3{
    background-color: #fff;
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 600;
    color: #514f4f;
    min-width: 650px;
    padding: 20px;
}

.markirovka{
    position: relative;
    top:50px;
    padding-bottom: 50px;
    width: 100%;
}

.zag_tovar{
    width:0px;
    white-space: nowrap;
}

.palka_tovar{
    border: 2px solid #f07c00;
    width: 45px;
    height: 0px;
    transform: rotate(-90deg);
    position: absolute;
    left:-22px;
}

.zag1_tovar{
    font-weight: 700;
    font-size: 18px;
    color: #514f4f;
    white-space: nowrap;
}
.krug{
    border-radius: 100px;
    width: 17px;
    height: 17px;
    background: #000;
    text-align: center;
}


.kart_big{
    position: relative;
    left:-150px;
    cursor: pointer;
    top:140px;
    width: 342px;
    height: 328px;
}

.kart_pr1{
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid #c0c0c0;
    border-radius: 5px;
    cursor:pointer;
    background-size: cover;
}
  
.kart_chert{
    position: relative;
    width:1000px;
    height: 392px;
    top: -650px;
  }

  /*Ширина слайдера*/
#slider {
    width: 300px;
    left:5px;
}
#slider2 {
    width: 300px;
    left:5px;
}
#slider3 {
    width: 300px;
    left:5px;
}
#slider4 {
    width: 300px;
    left:5px;
}
#slider5 {
    width: 300px;
    left:5px;
}
#slider6 {
    width: 300px;
    left:5px;
}
#slider7 {
    width: 300px;
    left:5px;
}
#slider8 {
    width: 300px;
    left:5px;
}
#slider9 {
    width: 300px;
    left:5px;
}

.line_zak{
    border: 1px solid #514f4f;
    width: 538px;
    height: 0px;
    position: relative;
    top:329px;
}
  
.menu1_cod:hover{
.menu1_zag{
    text-decoration: underline;
    text-decoration-skip-ink: none;
    }
}

.nevidimka{
    position: absolute;
    width: 1180px;
    height: 30px;
    top:50px;
    left:-370px;
}

.price_cart{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    color: #514f4f;
    text-align: center;
    position: relative;
    top:45px;
}

.slider-title {
    position: relative;
}

.slider-title-control {
    position: absolute;
    top: 0;
    right: 0;
    text-align: right;
}

.slider-title-control a:hover {
    filter: brightness(90%);
}

.slider-title-prev {
    display: block;
}

.slider-title-prev a {
    width: 30px;
    height: 30px;	
    background: url(https://snipp.ru/demo/193/prev.png) 0 0 no-repeat; 
    display: inline-block;
    overflow: hidden;
    text-indent: 999px; 
    position: relative;
    left:-1111px;
    top:130px;
    transform: rotate(90deg);
}
    
.slider-title-next {
    display: inline-block;
}
    
.slider-title-next a {
    width: 30px;
    height: 30px;	
    background: url(https://snipp.ru/demo/193/next.png) 0 0 no-repeat; 
    display: inline-block;
    overflow: hidden;
    text-indent: 999px; 
    transform: rotate(90deg);
    position:relative;
    left:-1111px;
    top:480px;
}

.slider {
    width: 100%;;
    z-index:1;
}
    
.seven1{
    width: 380px;
    height: 707px;
}
    
.slider3{
	height: 707px;
    width: 1180px;
    display: flex;
    align-items: baseline;
    position: relative;
    top: 0px;
    left: 0px;
}

.slider3 ul {
	margin: 0;
	padding: 0;
}

.slider3 ul li{
    position: relative;
    width: 380px;
    height: 567px;
    padding: 0 auto;
    box-shadow: -3px -3px 15px 0 rgba(0, 0, 0, 0.1), 3px 3px 15px 0 rgba(0, 0, 0, 0.1);
}

.slider3 ul li img {
	width: 380px;
	height: 256px;
    outline: none;  
    box-sizing: border-box; 
}

.bx-wrapper{
    background-color: transparent;
}

.slider3 .bx-wrapper{
	position: relative;
	margin: 0 auto;
    height: 707px;
    box-shadow: none; /*эти 2 строки удаляют рамку и тень*/
    border: none; /*эти 2 строки удаляют рамку и тень*/
    background-color: transparent;
}

.slider3 .bx-viewport{
    width: 1220px !important;
    overflow:hidden;  
	z-index: 1;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    margin-left: -20px;
    padding-right: 20px;
    margin-right: -20px;
}

/* Кнопки управления */
.slider3 .bx-controls-direction {
	position: relative;
	top: 300px;
	left: 0;
	right: 0;
	bottom: 0;
}

.slider3 .bx-controls-direction a:hover {
	filter: brightness(90%);
}

.str_lev {
    display: block;
}

.str_lev a {
    width: 44px;
    height: 44px;	
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='21.9993' cy='22.3684' r='20.8333' stroke='%23F07C00' stroke-width='1.5' /%3e%3cpath d='M18.875 14.0351C18.875 14.0351 25.125 20.1725 25.125 22.3685C25.125 24.5645 18.875 30.7018 18.875 30.7018' stroke='%23F07C00' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
    display: inline-block;
    overflow: hidden;
    text-indent: 999px; 
    position: relative;
    transform: rotate(180deg);
    top:-400px;
    margin-left: -7%;
}

.str_lev a:hover{
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='44' height='44' viewBox='0 0 44 44' fill='%23F07C00' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='21.9993' cy='22.3684' r='20.8333' stroke='%23F07C00' stroke-width='1.5' /%3e%3cpath d='M18.875 14.0351C18.875 14.0351 25.125 20.1725 25.125 22.3685C25.125 24.5645 18.875 30.7018 18.875 30.7018' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.str_lev1 a:hover{
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='44' height='44' viewBox='0 0 44 44' fill='%23F07C00' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='21.9993' cy='22.3684' r='20.8333' stroke='%23F07C00' stroke-width='1.5' /%3e%3cpath d='M18.875 14.0351C18.875 14.0351 25.125 20.1725 25.125 22.3685C25.125 24.5645 18.875 30.7018 18.875 30.7018' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.str_pr a:hover{
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='44' height='44' viewBox='0 0 44 44' fill='%23F07C00' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='21.9993' cy='22.3684' r='20.8333' stroke='%23F07C00' stroke-width='1.5' /%3e%3cpath d='M18.875 14.0351C18.875 14.0351 25.125 20.1725 25.125 22.3685C25.125 24.5645 18.875 30.7018 18.875 30.7018' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
}

.str_pr1 a:hover{
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='44' height='44' viewBox='0 0 44 44' fill='%23F07C00' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='21.9993' cy='22.3684' r='20.8333' stroke='%23F07C00' stroke-width='1.5' /%3e%3cpath d='M18.875 14.0351C18.875 14.0351 25.125 20.1725 25.125 22.3685C25.125 24.5645 18.875 30.7018 18.875 30.7018' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
}

.str_pr {
    display: block;
}

.str_pr a {
    width: 44px;
    height: 44px;	
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='21.9993' cy='22.3684' r='20.8333' stroke='%23F07C00' stroke-width='1.5' /%3e%3cpath d='M18.875 14.0351C18.875 14.0351 25.125 20.1725 25.125 22.3685C25.125 24.5645 18.875 30.7018 18.875 30.7018' stroke='%23F07C00' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' /%3e%3c/svg%3e");
    display: inline-block;
    overflow: hidden;
    text-indent: 999px; 
    position: relative;
    right: -104%;
    top:-450px;
}