

/* Start:/local/templates/norlift/components/bitrix/menu/side-menu/style.css?17655488324429*/

  .side-menu {
    --primary-green: #1ba029;
    --secondary-green: #ffffff;
    --dark-green: #1ba029;
    --light-green: #d1fae5;
    --text-light: #000000;
    --text-dark: #064e3b;
    --shadow: rgba(255, 255, 255, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    font-family: 'Segoe UI', system-ui, sans-serif;
    box-sizing: border-box;
  }
  
  .side-menu * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* Контейнер меню */
  .side-menu {
    border-radius: 16px;
    padding: 24px 0;
    width: 260px;
    height: fit-content;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
  }
  
  /* Элемент меню (основной стиль) */
  .side-menu__item {
    word-break: break-all;
    position: relative;
    margin: 0 16px 8px 16px;
  }
  
  .side-menu__link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    padding: 7px 0px;
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    /* gap: 16px; */
    white-space: normal;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  /* Эффект наведения */
  /* .side-menu__link:hover {
    background-color: rgba(255, 2, 2, 0.12);
    transform: translateX(4px);
  }
   */
  /* Активное состояние */
  .side-menu__link.active {

    color: #222228;

    font-weight: 700;
  }
  
  /* Анимированный индикатор активного элемента */
  /* .side-menu__link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-green);
    border-radius: 0 4px 4px 0;
  }
   */
  /* Иконка */
  .side-menu__icon {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .side-menu__link{
    width: 100%;
    word-break: break-all;
  }
  
  .side-menu__link:hover .side-menu__icon {
    transform: scale(1.1);
  }
  
  .side-menu__link.active .side-menu__icon {
    transform: scale(1.1);
  }
  
  /* Текст */
  .side-menu__text {
    word-break: normal;
    flex-grow: 1;
    transition: transform 0.3s ease;
  }
  
  .side-menu__link:hover .side-menu__text {
    transform: translateX(2px);
  }
  
  /* Бэдж или счетчик (опционально) */
  /* .side-menu__badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 10px;
    min-width: 24px;
    text-align: center;
    transition: var(--transition);
  }
  
  .side-menu__link.active .side-menu__badge {
    background-color: var(--primary-green);
    color: var(--text-light);
  } */
  
  /* Минималистичный разделитель */
  .side-menu__divider {
    height: 1px;
    background: linear-gradient(90deg, 
      transparent 0%, 
      rgba(255, 255, 255, 0.2) 50%, 
      transparent 100%);
    margin: 16px 24px;
  }
  
  /* Адаптивность */
  @media (max-width: 1024px) {
    .side-menu {
      width: 240px;
    }
  }
  
  @media (max-width: 768px) {
    .side-menu {
	  display: none;
      width: 100%;
      max-width: 100%;
      border-radius: 12px;
      padding: 16px 0;
    }
    
    .side-menu__link {
      padding: 14px 20px;
    }
  }
  
  @media (max-width: 480px) {
    .side-menu {
      padding: 12px 0;
    }
    
    .side-menu__link {
      padding: 12px 16px;
      font-size: 0.95rem;
      gap: 12px;
    }
    
    .side-menu__icon {
      font-size: 1.2rem;
      width: 20px;
    }
    
    .side-menu__item {
      margin: 0 12px 6px 12px;
    }
  }
  
  /* Анимация появления */
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(-10px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .side-menu__item {
    animation: slideIn 0.4s ease forwards;
    opacity: 0;
  }
  
  .side-menu__item:nth-child(1) { animation-delay: 0.05s; }
  .side-menu__item:nth-child(2) { animation-delay: 0.1s; }
  .side-menu__item:nth-child(3) { animation-delay: 0.15s; }
  .side-menu__item:nth-child(4) { animation-delay: 0.2s; }
  .side-menu__item:nth-child(5) { animation-delay: 0.25s; }
  .side-menu__item:nth-child(6) { animation-delay: 0.3s; }
/* End */


/* Start:/local/templates/norlift/components/bitrix/news.list/norlift-faq/style.css?17654586417327*/
.category-section {
    position: relative;
    margin: 20px 0;
    padding: 0 40px; /* Место для стрелок */
}

.category-list-wrapper {
    display: flex;
    align-items: start;
    position: relative;
    overflow: hidden;
    width: 70%;
}

.category-list {
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.category-list::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.category-item {
    flex: 0 0 auto;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 12px;
    background: #f5f5f5;
    /* border: 1px solid #ddd; */
    border-radius: 5px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
}

.category-btn:hover {
    background: #e9e9e9;
}

.category-btn.active {
    background: #1ba029;
    color: white;
}

.category-btn.active i {
    color: white;
}

.category-btn i {
    color: #666;
    font-size: 16px;
}

/* Стрелки для навигации */
.category-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-nav:hover {
    background: #f8f8f8;
}

.category-nav.prev {
    left: 0;
}

.category-nav.next {
    right: 0;
}

.category-nav i {
    font-size: 18px;
    color: #333;
}
.faq-sidebar>p {
    width: 90vw;
}
.faq-content{ 
    width: 90vw;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .faq-content {
        width: 90%;
    }
    .category-list-wrapper{
        width: 100vw;
    }

    .category-section {
        padding: 0 50px;
    }
    
    .category-nav {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .category-list {
        padding: 15px 0;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Планшетная версия */
@media (min-width: 769px) and (max-width: 1024px) {
    .category-nav {
        display: none;
    }
    
    .category-list {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
    }
    
    .category-item {
        flex: 0 0 auto;
    }
}

/* Десктоп версия */
@media (min-width: 1025px) {
    .category-list {
        justify-content: center;
        overflow-x: visible;
    }
    
    .category-section {
        padding: 0 20px;
    }
}








        .faq-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #eee;
        }

        .faq-title {
            font-size: 28px;
            color: #2c3e50;
        }

        .faq-description {
            color: #7f8c8d;
            font-size: 16px;
            margin-top: 5px;
        }

        /* Список вопросов */
        .questions-list {
            max-height: 5000px;
            overflow-y: auto;
            width: 60vw;
            /* padding-right: 10px; */
        }

        .question-item {
            margin-bottom: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
        }

        .question-btn {
            background-color: #f9f9f9;
            border: none;
            width: 100%;
            text-align: left;
            padding: 20px;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        .question-btn:hover {
            background-color: #f0f0f0;
        }



        .question-btn i {
            transition: transform 0.3s;
            color: #3498db;
        }

        .question-btn.active i {
            transform: rotate(135deg);
        }

        .answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            background-color: white;
            line-height: 1.7;
        }

        .answer.open {
            padding: 20px;
            max-height: 3000px;
        }

        .answer p {
            margin-bottom: 10px;
        }

        .faq-bot-block{
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            gap: 0px;
            width: 60vw;
            padding: 35px;
            border-style: solid;
            background-color: #f9f9f9;
            border-color: #e0e0e0;
            border-radius: 16px;
            border-width: 1px;
            &>.faq-block-right{
                width: 70%;
                &>h2 {
                    margin: 0;
                }
            }
            &>.faq-block-but{
                
                width: 30%;
                display: flex;
                /* justify-cotent: end; */
                align-items: start;
                &>button{
                    padding: 15px 20px;
                    background-color: #1ba029;
                    color: #fff;
                    border-radius: 10px;
                }
            }
        }
        .faq-sidebar{
            display: flex;
            gap: 1em;
            flex-direction: column;
            /* align-items: center; */
            justify-content: flex-start;
            width: 100vw;
            font-family: "Golos Text", Arial, sans-serif;
            &>p{
                width: 60vw;
                text-align: justify;
            }
        }
        /* Адаптивность */
        @media (max-width: 768px) {
            .faq-sidebar {
                align-items: center;
                &>p{
                    width: 85vw
                }
            }
            .questions-list {
                width: 85vw;
            }
            .faq-bot-block {
                width: 85vw;
                flex-direction: column;
                 &>.faq-block-right{
                    width: 100%;
                 }
                &>.faq-block-but{
                    width: 100%;
                    &>button {
                        padding: 15px 15px;
                    }
                }
            }
            .faq-container {
                flex-direction: column;
                
            }

            .faq-sidebar {
                width: 100%;
            }

            .faq-content {
                /* padding: 25px; */
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

            .faq-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        
        



/* End */
/* /local/templates/norlift/components/bitrix/menu/side-menu/style.css?17655488324429 */
/* /local/templates/norlift/components/bitrix/news.list/norlift-faq/style.css?17654586417327 */
