/**
 * Стили для виджета помощи Схемочка
 * Плавающая кнопка + модальное окно
 * (скомпилировано из SCSS)
 */

/* ==========================================
   ПЛАВАЮЩАЯ КНОПКА
   ========================================== */

/* Виджет помощи - ПК версия слева внизу */
#help-widget-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 2147483647;
    pointer-events: auto;
}

.help-widget-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #6bc7fe 0%, #1F95EE 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(31, 149, 238, 0.3);
    transition: all 0.3s ease;
}

.help-widget-btn i {
    font-size: 20px;
}

.help-widget-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 149, 238, 0.4);
    background: linear-gradient(135deg, #8fd3fe 0%, #4faaf2 100%);
}

.help-widget-btn:active {
    transform: translateY(0);
}

/* МОБИЛЬНЫЕ СТИЛИ - кнопка помощи как в ЛК (кнопки скачать) */
@media (max-width: 576px) {
    /* Контейнер - обычный блок, не fixed */
    html body #help-widget-container,
    body #help-widget-container,
    #help-widget-container {
        display: block !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Только кнопка fixed - слева внизу экрана */
    html body #help-widget-container .help-widget-btn,
    body #help-widget-container .help-widget-btn,
    #help-widget-container .help-widget-btn {
        position: fixed !important;
        bottom: 30px !important;
        left: 20px !important;
        top: auto !important;
        right: auto !important;
        padding: 0 !important;
        /* Скругление как в ЛК (8px) */
        border-radius: 8px !important;
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        min-height: 45px !important;
        max-width: 45px !important;
        max-height: 45px !important;
        justify-content: center !important;
        align-items: center !important;
        /* Светло-голубой фон как в ЛК (#ABDBFF) */
        background: #ABDBFF !important;
        box-shadow: 0 2px 8px rgba(31, 149, 238, 0.3) !important;
        border: none !important;
        cursor: pointer !important;
        z-index: 2147483647 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        /* Тёмный цвет иконки для контраста */
        color: #1a1a1a !important;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        box-sizing: border-box !important;
        text-align: center !important;
        line-height: 45px !important;
        overflow: hidden !important;
        text-indent: 0 !important;
    }

    .help-widget-btn:hover,
    .help-widget-btn:active {
        background: #8fd3fe !important;
        box-shadow: 0 4px 12px rgba(31, 149, 238, 0.4) !important;
    }

    .help-widget-btn__text {
        display: none !important;
        visibility: hidden !important;
    }

    .help-widget-btn i,
    .help-widget-btn svg {
        font-size: 22px !important;
        margin: 0 !important;
        padding: 0 !important;
        /* Тёмный цвет иконки как в ЛК */
        color: #1a1a1a !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: 100% !important;
    }
}

/* ==========================================
   МОДАЛЬНОЕ ОКНО
   ========================================== */

.help-widget-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.help-widget-modal--visible {
    opacity: 1;
}

.help-widget-modal--visible .help-widget-modal__content {
    transform: translateY(0) scale(1);
}

.help-widget-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.help-widget-modal__content {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    overflow: hidden;
    margin: auto;
}

@media (max-width: 768px) {
    .help-widget-modal__content {
        width: 95%;
        max-width: 95%;
        max-height: 90vh;
    }
}

@media (max-width: 576px) {
    .help-widget-modal__content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        max-width: 100vw;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateY(100%);
        margin: 0;
        box-sizing: border-box;
    }

    .help-widget-modal--visible .help-widget-modal__content {
        transform: translateY(0);
    }
}

/* ==========================================
   ШАПКА
   ========================================== */

.help-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: linear-gradient(135deg, #6bc7fe 0%, #1F95EE 100%);
    color: white;
}

@media (max-width: 576px) {
    .help-widget-header {
        padding: 14px 16px;
    }

    .help-widget-header__title {
        font-size: 16px;
        gap: 8px;
    }

    .help-widget-header__title i {
        font-size: 20px;
    }

    .help-widget-header__close {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

.help-widget-header__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.help-widget-header__title i {
    font-size: 22px;
}

.help-widget-header__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-widget-header__close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* ==========================================
   ПОИСК
   ========================================== */

.help-widget-search {
    padding: 16px 24px;
    background: #F8F9FA;
    border-bottom: 1px solid #E0E0E0;
}

@media (max-width: 576px) {
    .help-widget-search {
        padding: 12px 16px;
    }

    .help-widget-search__input {
        padding: 10px 36px;
        font-size: 16px;
    }

    .help-widget-search__icon {
        left: 12px;
        font-size: 14px;
    }

    .help-widget-search__clear {
        right: 10px;
        width: 22px;
        height: 22px;
        font-size: 14px;
    }
}

.help-widget-search__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.help-widget-search__icon {
    position: absolute;
    left: 14px;
    color: #999999;
    font-size: 16px;
}

.help-widget-search__input {
    width: 100%;
    padding: 12px 40px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.help-widget-search__input:focus {
    outline: none;
    border-color: #6bc7fe;
    box-shadow: 0 0 0 3px rgba(107, 199, 254, 0.2);
}

.help-widget-search__input::placeholder {
    color: #999999;
}

.help-widget-search__clear {
    position: absolute;
    right: 12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #999999;
    cursor: pointer;
    font-size: 16px;
}

.help-widget-search__clear:hover {
    color: #666666;
}

@media (max-width: 576px) {
    .help-widget-body {
        padding: 12px;
        overflow-x: hidden;
    }

    .help-widget-modal {
        align-items: flex-end;
    }
}

/* ==========================================
   ТЕЛО (скроллируемая область)
   ========================================== */

.help-widget-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    background: #F8F9FA;
}

@media (max-width: 576px) {
    .help-widget-body {
        padding: 16px;
    }
}

.help-widget-body::-webkit-scrollbar {
    width: 6px;
}

.help-widget-body::-webkit-scrollbar-track {
    background: transparent;
}

.help-widget-body::-webkit-scrollbar-thumb {
    background: #E0E0E0;
    border-radius: 3px;
}

.help-widget-body::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

/* ==========================================
   СЕКЦИИ
   ========================================== */

.help-widget-section {
    animation: fadeIn 0.3s ease;
}

.help-widget-section__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .help-widget-section__header {
        flex-wrap: wrap;
    }
}

.help-widget-section__title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.help-widget-search-count {
    color: #999999;
    font-size: 13px;
}

/* ==========================================
   БЭЙДЖИ
   ========================================== */

.help-widget-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(107, 199, 254, 0.15);
    color: #1F95EE;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.help-widget-badge--fire {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
}

.help-widget-badge--small {
    padding: 2px 8px;
    font-size: 11px;
}

@media (max-width: 576px) {
    .help-widget-card {
        padding: 14px;
    }

    .help-widget-card__title {
        font-size: 14px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .help-widget-card__preview {
        font-size: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .help-widget-question-item {
        padding: 12px 14px;
    }

    .help-widget-question-item__text {
        font-size: 13px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .help-widget-answer {
        padding: 16px;
    }

    .help-widget-answer__question {
        font-size: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .help-widget-answer__short,
    .help-widget-answer__full,
    .help-widget-answer__content {
        font-size: 13px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .help-widget-video-item {
        padding: 12px 14px;
    }

    .help-widget-video-item__title {
        font-size: 13px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .help-widget-video-item__icon {
        width: 40px;
        height: 40px;
    }

    .help-widget-video-item__icon i {
        font-size: 16px;
    }

    .help-widget-btn--primary {
        padding: 10px 16px;
        font-size: 13px;
    }

    .help-widget-badge {
        font-size: 11px;
        padding: 3px 8px;
    }

    .help-widget-section__title {
        font-size: 15px;
    }

    .help-widget-back {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* ==========================================
   КАРТОЧКИ ПОПУЛЯРНЫХ
   ========================================== */

.help-widget-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-widget-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-widget-card:hover {
    border-color: #6bc7fe;
    box-shadow: 0 4px 12px rgba(107, 199, 254, 0.25);
    transform: translateY(-2px);
}

.help-widget-card:active {
    transform: translateY(0);
}

.help-widget-card__badge {
    display: inline-block;
    padding: 3px 8px;
    background: #F0F1F2;
    color: #666666;
    font-size: 11px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.help-widget-card__title {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.help-widget-card__preview {
    font-size: 13px;
    color: #666666;
    margin: 0 0 12px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.help-widget-card__footer {
    display: flex;
    justify-content: flex-end;
}

.help-widget-card__more {
    font-size: 13px;
    color: #1F95EE;
    font-weight: 600;
}

.help-widget-card__more i {
    margin-left: 4px;
    transition: transform 0.2s;
}

.help-widget-card:hover .help-widget-card__more i {
    transform: translateX(4px);
}

/* ==========================================
   ТЕМЫ (GRID)
   ========================================== */

.help-widget-topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 576px) {
    .help-widget-topics-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .help-widget-topic {
        padding: 16px;
    }

    .help-widget-topic__icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

.help-widget-topic {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-widget-topic:hover {
    border-color: #6bc7fe;
    box-shadow: 0 4px 12px rgba(107, 199, 254, 0.25);
}

.help-widget-topic__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6bc7fe 0%, #1F95EE 100%);
    color: white;
    border-radius: 50%;
    margin: 0 auto 12px;
    font-size: 20px;
}

.help-widget-topic__name {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 4px;
}

.help-widget-topic__count {
    font-size: 12px;
    color: #999999;
}

/* ==========================================
   СПИСОК ВОПРОСОВ
   ========================================== */

.help-widget-questions-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.help-widget-subtopic-header {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 16px 8px;
    margin-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.help-widget-subtopic-header:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 8px;
}

.help-widget-question-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-widget-question-item:hover {
    border-color: #6bc7fe;
    background: rgba(107, 199, 254, 0.05);
}

.help-widget-question-item i {
    color: #999999;
    font-size: 12px;
}

.help-widget-question-item__text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333333;
    flex: 1;
}

/* ==========================================
   ОТВЕТ
   ========================================== */

.help-widget-answer {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
}

.help-widget-answer__header {
    margin-bottom: 16px;
}

.help-widget-answer__question {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.help-widget-answer__short {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.help-widget-answer__short p {
    margin: 0;
}

.help-widget-answer__actions {
    margin-bottom: 16px;
}

.help-widget-answer__full {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
}

.help-widget-answer__full hr {
    border: none;
    border-top: 1px solid #E0E0E0;
    margin: 20px 0;
}

.help-widget-answer__content {
    margin-bottom: 20px;
}

.help-widget-answer__content strong {
    color: #0D0D0D;
    font-weight: 600;
}

.help-widget-answer__content br {
    line-height: 1.6;
}

.help-widget-answer__links {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E0E0E0;
}

.help-widget-answer__links p {
    font-weight: 600;
    margin: 0 0 8px 0;
}

.help-widget-answer__links ul {
    margin: 0;
    padding-left: 20px;
}

.help-widget-answer__links li {
    margin-bottom: 4px;
}

.help-widget-answer__links a,
.help-widget-answer__content a {
    color: #1F95EE;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
}

.help-widget-answer__links a:hover,
.help-widget-answer__content a:hover {
    color: #0d7bc4;
}

/* ==========================================
   НАВИГАЦИЯ (кнопки назад)
   ========================================== */

.help-widget-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #F0F1F2;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-widget-back:hover {
    background: #E0E0E0;
    color: #333333;
}

.help-widget-back i {
    font-size: 12px;
}

/* ==========================================
   КНОПКИ
   ========================================== */

.help-widget-btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #6bc7fe 0%, #1F95EE 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-widget-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(31, 149, 238, 0.3);
}

.help-widget-btn--primary i {
    font-size: 16px;
}

/* ==========================================
   ФУТЕР
   ========================================== */

.help-widget-footer {
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    background: #FFFFFF;
    border-top: 1px solid #E0E0E0;
}

@media (max-width: 576px) {
    .help-widget-footer {
        padding: 12px 16px;
        flex-direction: column;
    }

    .help-widget-footer__btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

.help-widget-footer__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #F8F9FA;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.help-widget-footer__btn:hover {
    background: #F0F1F2;
    border-color: #999999;
}

.help-widget-footer__btn--primary {
    background: linear-gradient(135deg, #6bc7fe 0%, #1F95EE 100%);
    color: white;
    border-color: transparent;
}

.help-widget-footer__btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(31, 149, 238, 0.3);
    background: linear-gradient(135deg, #8fd3fe 0%, #4faaf2 100%);
}

.help-widget-footer__btn i {
    font-size: 16px;
}

/* ==========================================
   ВИДЕО-ИНСТРУКЦИИ
   ========================================== */

.help-widget-videos-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-widget-video-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.help-widget-video-item:hover {
    border-color: #6bc7fe;
    background: rgba(107, 199, 254, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(31, 149, 238, 0.1);
}

.help-widget-video-item__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6bc7fe 0%, #1F95EE 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.help-widget-video-item__icon i {
    color: white;
    font-size: 20px;
}

.help-widget-video-item__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.help-widget-video-item__title {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    line-height: 1.4;
}

.help-widget-video-item__meta {
    font-size: 12px;
    color: #999999;
}

.help-widget-video-item__arrow {
    color: #999999;
    font-size: 14px;
}

@media (max-width: 576px) {
    .help-widget-empty,
    .help-widget-no-results,
    .help-widget-error {
        padding: 30px 16px;
    }

    .help-widget-empty i,
    .help-widget-no-results i,
    .help-widget-error i {
        font-size: 40px;
    }

    .help-widget-empty p,
    .help-widget-no-results p,
    .help-widget-error p {
        font-size: 15px;
    }

    .help-widget-empty span,
    .help-widget-no-results span,
    .help-widget-error span {
        font-size: 12px;
    }
}

/* ==========================================
   СОСТОЯНИЯ ПУСТО/ОШИБКА
   ========================================== */

.help-widget-empty,
.help-widget-no-results,
.help-widget-error {
    text-align: center;
    padding: 40px 20px;
    color: #666666;
}

.help-widget-empty i,
.help-widget-no-results i,
.help-widget-error i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.help-widget-empty p,
.help-widget-no-results p,
.help-widget-error p {
    font-size: 16px;
    margin: 0 0 8px 0;
}

.help-widget-empty span,
.help-widget-no-results span,
.help-widget-error span {
    font-size: 13px;
    color: #999999;
}

.help-widget-error {
    color: #e74c3c;
}

.help-widget-error i {
    color: #e74c3c;
}

/* ==========================================
   АНИМАЦИИ
   ========================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   ФИНАЛЬНЫЕ СТИЛИ ДЛЯ МОБИЛЬНЫХ - гарантированное отображение
   ========================================== */
@media (max-width: 576px) {
    /* Контейнер - обычный блок */
    html > body > #help-widget-container {
        display: block !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Кнопка помощи ВСЕГДА слева внизу экрана, стиль как в ЛК */
    html > body > #help-widget-container .help-widget-btn {
        position: fixed !important;
        bottom: 30px !important;
        left: 20px !important;
        width: 45px !important;
        height: 45px !important;
        /* Скругление как в ЛК */
        border-radius: 8px !important;
        /* Светло-голубой фон как в ЛК */
        background: #ABDBFF !important;
        box-shadow: 0 2px 8px rgba(31, 149, 238, 0.3) !important;
        border: none !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 2147483647 !important;
        cursor: pointer !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
        /* Тёмный цвет для контраста */
        color: #1a1a1a !important;
    }

    html > body > #help-widget-container .help-widget-btn i {
        font-size: 22px !important;
        color: #1a1a1a !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}
