@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Geologica:wght,CRSV@100..900,0&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poiret+One&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');._header_8vnuj_1 {
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(116, 31, 162, 0.3);
}

._topNav_8vnuj_10 {
    padding: 15px 0;
    position: relative;
}

._container_8vnuj_15 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._navLeft_8vnuj_24 {
    display: flex;
    align-items: center;
    gap: 40px;
}

._logo_8vnuj_30 {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

._logo_8vnuj_30 img {
    display: block;
}

._nav_8vnuj_24 {
    display: flex;
    gap: 30px;
}

._navLink_8vnuj_46 {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

._navLink_8vnuj_46:hover {
    color: rgba(255, 255, 255, 0.9);
}

._navLink_8vnuj_46::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

._navLink_8vnuj_46:hover::after {
    width: 100%;
}

._hot_8vnuj_75 {
    position: relative;
}

._badge_8vnuj_79 {
    position: absolute;
    top: -10px;
    right: -15px;
    font-size: 0.8rem;
}

._navRight_8vnuj_86 {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Десктопный поиск */
._desktopSearch_8vnuj_93 {
    display: block;
}

._searchForm_8vnuj_97 {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 5px;
    transition: all 0.3s ease;
}

._searchForm_8vnuj_97:hover,
._searchForm_8vnuj_97:focus-within {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

._searchInput_8vnuj_112 {
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: white;
    width: 200px;
    outline: none;
    font-size: 0.9rem;
}

._searchInput_8vnuj_112::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

._searchButton_8vnuj_126 {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.3s ease;
}

._searchButton_8vnuj_126:hover {
    transform: scale(1.1);
}

/* Десктопная кнопка входа */
._loginButton_8vnuj_141 {
    background: white;
    color: #741fa2;
    border: none;
    padding: 10px 25px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
}

._loginButton_8vnuj_141:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

._loginButton_8vnuj_141 i {
    margin-right: 8px;
}

/* Десктопное меню пользователя */
._userMenu_8vnuj_169 {
    position: relative;
}

._userButton_8vnuj_173 {
    background: white;
    color: #741fa2;
    border: none;
    padding: 6px 15px 6px 6px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
}

._userButton_8vnuj_173 i {
    margin-right: 8px;
}

._userButton_8vnuj_173:hover {
    background: transparent;
    color: white;
    border-color: white;
}

._userButton_8vnuj_173:hover ._userAvatar_8vnuj_199 {
    background: white;
    color: #741fa2;
}

._userAvatar_8vnuj_199 {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 8px;
}

._userName_8vnuj_218 {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

._userDropdown_8vnuj_225 {
    position: absolute;
    top: 120%;
    right: 0;
    background: white;
    border-radius: 20px;
    padding: 10px;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

._userMenu_8vnuj_169:hover ._userDropdown_8vnuj_225 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

._dropdownItem_8vnuj_247 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    width: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
}

._dropdownItem_8vnuj_247 i {
    width: 20px;
    margin-right: 10px;
    color: #888;
}

._dropdownItem_8vnuj_247:hover {
    background: #f8f9fc;
    color: #741fa2;
    padding-left: 20px;
}

._dropdownItem_8vnuj_247:hover i {
    color: #741fa2;
}

/* Поисковые подсказки */
._searchWrapper_8vnuj_280 {
    position: relative;
    width: 100%;
}

._suggestions_8vnuj_285 {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    margin-top: 5px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #f0f0f0;
}

._suggestionItem_8vnuj_301 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

._suggestionItem_8vnuj_301:last-child {
    border-bottom: none;
}

._suggestionItem_8vnuj_301:hover {
    background: #f8f9fc;
}

._suggestionLogo_8vnuj_319 {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 4px;
    border: 1px solid #f0f0f0;
}

._suggestionTitle_8vnuj_329 {
    flex: 1;
    font-size: 0.95rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

._suggestionCount_8vnuj_338 {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-left: 8px;
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 12px;
}

._suggestionHot_8vnuj_347 {
    background: linear-gradient(135deg, #ff4d4d, #ff1a1a);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

._suggestionAll_8vnuj_358 {
    padding: 15px 20px;
    text-align: center;
    color: #741fa2;
    font-weight: 500;
    cursor: pointer;
    border-top: 1px solid #f0f0f0;
    transition: background 0.2s;
}

._suggestionAll_8vnuj_358:hover {
    background: #f8f9fc;
    text-decoration: underline;
}

/* Модальное окно */
._modalOverlay_8vnuj_374 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: _fadeIn_8vnuj_1 0.3s ease;
}

@keyframes _fadeIn_8vnuj_1 {
    from { opacity: 0; }
    to { opacity: 1; }
}

._modal_8vnuj_374 {
    background: white;
    border-radius: 30px;
    padding: 40px;
    width: 100%;
    max-width: 440px;
    position: relative;
    animation: _slideUp_8vnuj_1 0.3s ease;
    box-shadow: 0 30px 60px rgba(116, 31, 162, 0.3);
}

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

._modalClose_8vnuj_416 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

._modalClose_8vnuj_416:hover {
    background: #f0f0f0;
    color: #741fa2;
    transform: rotate(90deg);
}

._modalTitle_8vnuj_440 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

._modalError_8vnuj_448 {
    background: #fee2e2;
    color: #ef4444;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid #fecaca;
}

._modalForm_8vnuj_458 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

._formGroup_8vnuj_465 {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

._formGroup_8vnuj_465 label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
}

._formGroup_8vnuj_465 input {
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

._formGroup_8vnuj_465 input:focus {
    border-color: #741fa2;
    box-shadow: 0 0 0 3px rgba(116, 31, 162, 0.1);
}

._modalSubmit_8vnuj_491 {
    background: #741fa2;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

._modalSubmit_8vnuj_491:hover:not(:disabled) {
    background: #9b4dc4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(116, 31, 162, 0.5);
}

._modalSubmit_8vnuj_491:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

._modalDivider_8vnuj_515 {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

._modalDivider_8vnuj_515::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
    z-index: 1;
}

._modalDivider_8vnuj_515 span {
    background: white;
    padding: 0 15px;
    color: #888;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

._vkButton_8vnuj_541 {
    width: 100%;
    background: #0077FF;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

._vkButton_8vnuj_541:hover {
    background: #0066dd;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px #0077FF;
}

._modalSwitch_8vnuj_565 {
    text-align: center;
    color: #666;
}

._modalSwitch_8vnuj_565 p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

._switchButton_8vnuj_577 {
    background: transparent;
    border: none;
    color: #741fa2;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

._switchButton_8vnuj_577:hover {
    color: #9b4dc4;
    text-decoration: underline;
}

/* Мобильные кнопки */
._mobileButtons_8vnuj_593 {
    display: none;
    align-items: center;
    gap: 10px;
}

._mobileSearchButton_8vnuj_599,
._mobileLoginButton_8vnuj_600 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

._mobileSearchButton_8vnuj_599:hover,
._mobileLoginButton_8vnuj_600:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

._mobileSearchButton_8vnuj_599:active,
._mobileLoginButton_8vnuj_600:active {
    transform: scale(0.95);
}

/* Мобильный поиск (выезжающий) */
._searchMobileContainer_8vnuj_627 {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    padding: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: _slideDown_8vnuj_1 0.3s ease;
    z-index: 999;
}

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

._searchMobileForm_8vnuj_650 {
    display: flex;
    gap: 10px;
    position: relative;
}

._searchMobileInput_8vnuj_656 {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    background: white;
}

._searchMobileSubmit_8vnuj_666 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #741fa2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

._searchMobileSubmit_8vnuj_666:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

._searchMobileClose_8vnuj_686 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

._searchMobileClose_8vnuj_686:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Мобильные подсказки */
._mobileSuggestions_8vnuj_707 {
    margin-top: 10px;
    background: white;
    border-radius: 20px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

._mobileSuggestionItem_8vnuj_716 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
}

._mobileSuggestionItem_8vnuj_716:last-child {
    border-bottom: none;
}

._mobileSuggestionItem_8vnuj_716:active {
    background: #f8f9fc;
}

._mobileSuggestionLogo_8vnuj_734 {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 10px;
    background: white;
    padding: 5px;
    border: 1px solid #f0f0f0;
}

._mobileSuggestionContent_8vnuj_744 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

._mobileSuggestionTitle_8vnuj_751 {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

._mobileSuggestionCount_8vnuj_757 {
    font-size: 0.8rem;
    color: #64748b;
}

._mobileSuggestionAll_8vnuj_762 {
    padding: 15px;
    text-align: center;
    color: #741fa2;
    font-weight: 500;
    cursor: pointer;
    border-top: 1px solid #f0f0f0;
}

._mobileSuggestionAll_8vnuj_762:active {
    background: #f8f9fc;
}

/* Адаптивность */
@media (max-width: 1024px) {
    ._nav_8vnuj_24 {
        display: none;
    }

    ._desktopSearch_8vnuj_93 {
        display: none;
    }

    ._loginButton_8vnuj_141 {
        display: block;
    }

    ._userMenu_8vnuj_169 {
        display: none;
    }

    ._mobileButtons_8vnuj_593 {
        display: flex;
    }
}

@media (max-width: 768px) {
    ._container_8vnuj_15 {
        padding: 0 16px;
    }

    ._logo_8vnuj_30 img {
        width: 120px;
    }

    /* Модальное окно */
    ._modal_8vnuj_374 {
        margin: 20px;
        padding: 30px 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    ._modalTitle_8vnuj_440 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    ._formGroup_8vnuj_465 input {
        font-size: 16px;
    }

    ._modalSubmit_8vnuj_491 {
        padding: 14px;
    }

    ._vkButton_8vnuj_541 {
        padding: 14px;
        font-size: 0.95rem;
    }

    ._vkButton_8vnuj_541 img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    ._container_8vnuj_15 {
        padding: 0 12px;
    }

    ._logo_8vnuj_30 img {
        width: 100px;
    }

    ._searchMobileInput_8vnuj_656 {
        padding: 12px;
        font-size: 14px;
    }

    ._searchMobileSubmit_8vnuj_666,
    ._searchMobileClose_8vnuj_686 {
        width: 45px;
        height: 45px;
    }

    ._mobileSuggestionItem_8vnuj_716 {
        padding: 12px;
    }

    ._mobileSuggestionLogo_8vnuj_734 {
        width: 35px;
        height: 35px;
    }

    ._modal_8vnuj_374 {
        margin: 15px;
        padding: 25px 15px;
    }

    ._modalTitle_8vnuj_440 {
        font-size: 1.3rem;
    }
}

/* Улучшения для touch-устройств */
@media (hover: none) and (pointer: coarse) {
    ._suggestionItem_8vnuj_301:hover {
        background: white;
    }

    ._suggestionItem_8vnuj_301:active {
        background: #f8f9fc;
    }

    ._searchButton_8vnuj_126:hover {
        transform: none;
    }

    ._searchButton_8vnuj_126:active {
        transform: scale(0.95);
    }

    ._loginButton_8vnuj_141:hover {
        background: white;
        color: #741fa2;
        border-color: transparent;
        transform: none;
    }

    ._loginButton_8vnuj_141:active {
        background: #741fa2;
        color: white;
        border-color: white;
    }

    ._userButton_8vnuj_173:hover {
        background: white;
        color: #741fa2;
        border-color: transparent;
    }

    ._userButton_8vnuj_173:active {
        background: transparent;
        color: white;
        border-color: white;
    }

    ._dropdownItem_8vnuj_247:hover {
        background: white;
        color: #1a1a1a;
        padding-left: 15px;
    }

    ._dropdownItem_8vnuj_247:active {
        background: #f8f9fc;
        color: #741fa2;
        padding-left: 20px;
    }
}

/* Фикс для iOS */
@supports (-webkit-touch-callout: none) {
    ._searchInput_8vnuj_112 {
        font-size: 16px;
    }

    ._formGroup_8vnuj_465 input {
        font-size: 16px;
    }
}

._desktopAuth_8vnuj_945 {
    display: block;
}

/* Мобильное меню пользователя */
._mobileUserMenu_8vnuj_950 {
    position: relative;
}

._mobileUserButton_8vnuj_954 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

._mobileUserButton_8vnuj_954:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

._mobileUserButton_8vnuj_954 ._userAvatar_8vnuj_199 {
    margin-right: 0;
}

/* Обновленная адаптивность */
@media (max-width: 1024px) {
    ._nav_8vnuj_24 {
        display: none;
    }

    ._desktopSearch_8vnuj_93 {
        display: none;
    }

    ._desktopAuth_8vnuj_945 {
        display: none;
    }

    ._mobileButtons_8vnuj_593 {
        display: flex;
    }
}

._mobileUserMenu_8vnuj_950 {
    position: relative;
}

._mobileUserButton_8vnuj_954 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

._mobileUserButton_8vnuj_954:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

._mobileUserButton_8vnuj_954 ._userAvatar_8vnuj_199 {
    margin-right: 0;
}

/* Мобильное выпадающее меню */
._mobileDropdown_8vnuj_1026 {
    position: absolute;
    top: 120%;
    right: 0;
    background: white;
    border-radius: 20px;
    padding: 10px;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Обновленная адаптивность */
@media (max-width: 1024px) {
    ._nav_8vnuj_24 {
        display: none;
    }

    ._desktopSearch_8vnuj_93 {
        display: none;
    }

    ._desktopAuth_8vnuj_945 {
        display: none;
    }

    ._mobileButtons_8vnuj_593 {
        display: flex;
    }
}

@media (max-width: 768px) {
    ._mobileDropdown_8vnuj_1026 {
        min-width: 180px;
        right: 0;
    }
}

._suggestionLogoFallback_8vnuj_1067,
._mobileSuggestionLogoFallback_8vnuj_1068 {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
}

._mobileSuggestionLogoFallback_8vnuj_1068 {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-right: 10px;
}

._vkButton_8vnuj_541 {
    width: 100%;
    padding: 14px;
    background: #0077ff;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
}

._vkButton_8vnuj_541:hover {
    background: #0066dd;
}

._vkIcon_8vnuj_1111 {
    width: 24px;
    height: 24px;
}

._vkContainer_8vnuj_1116 {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

/* Стили для кнопок VK ID (они применяются автоматически) */
._vkContainer_8vnuj_1116 .VKIDButton {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
}

._vkContainer_8vnuj_1116 .VKIDButton__container {
    display: flex !important;
    justify-content: center !important;
}

._yandexButton_8vnuj_1137 {
    width: 100%;
    padding: 14px;
    background: #fc3f1d;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

._yandexButton_8vnuj_1137:hover {
    background: #e03a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px #fc3f1d;
}

._yandexIcon_8vnuj_1161 {
    background: white;
    color: #fc3f1d;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}._card_ld3ha_1 {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: _fadeIn_ld3ha_1 0.5s ease-out;
}

._card_ld3ha_1:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(116, 31, 162, 0.1);
    border-color: #741fa2;
}

/* Заголовок карточки */
._cardHeader_ld3ha_23 {
    margin-bottom: 12px;
}

._cardTitle_ld3ha_27 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Основное предложение */
._offerMain_ld3ha_40 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Мета-информация */
._cardMeta_ld3ha_50 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    background: #f8f9fc;
    padding: 12px 16px;
    border-radius: 16px;
}

._metaItem_ld3ha_60 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 0.9rem;
}

._metaIcon_ld3ha_68 {
    font-size: 1rem;
    width: 20px;
    color: #741fa2;
}

._metaText_ld3ha_74 {
    flex: 1;
}

/* Кнопки действий */
._cardActions_ld3ha_79 {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

._actionButton_ld3ha_85 {
    flex: 1;
    background: white;
    color: #1a1a1a;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

._actionButton_ld3ha_85:first-child {
    background: #741fa2;
    color: white;
    border-color: #741fa2;
}

._actionButton_ld3ha_85:first-child:hover {
    background: #9b4dc4;
    border-color: #9b4dc4;
    transform: translateY(-2px);
}

._actionButton_ld3ha_85:last-child:hover {
    background: #f8f9fc;
    border-color: #741fa2;
    color: #741fa2;
    transform: translateY(-2px);
}

/* Статистика */
._cardStats_ld3ha_124 {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding: 8px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

._statItem_ld3ha_133 {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #64748b;
    font-size: 0.85rem;
}

._statIcon_ld3ha_141 {
    font-size: 1rem;
}

/* Детали (условия) */
._cardDetails_ld3ha_146 {
    margin-bottom: 12px;
}

._detailsSummary_ld3ha_150 {
    color: #741fa2;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

._detailsSummary_ld3ha_150::-webkit-details-marker {
    display: none;
}

._detailsSummary_ld3ha_150:hover {
    text-decoration: underline;
}

._detailsText_ld3ha_169 {
    margin-top: 12px;
    padding: 16px;
    background: #f8f9fc;
    border-radius: 12px;
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Маленькая заметка */
._smallNote_ld3ha_180 {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 8px;
}

/* HOT бейдж (если нужен) */
._hotBadge_ld3ha_188 {
    position: absolute;
    top: 12px;
    right: -30px;
    background: linear-gradient(135deg, #ff4d4d, #ff1a1a);
    color: white;
    padding: 4px 30px;
    font-weight: 600;
    font-size: 0.7rem;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Анимация */
@keyframes _fadeIn_ld3ha_1 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    ._card_ld3ha_1 {
        padding: 20px;
    }

    ._cardTitle_ld3ha_27 {
        font-size: 1.1rem;
    }

    ._offerMain_ld3ha_40 {
        font-size: 1.3rem;
    }

    ._cardActions_ld3ha_79 {
        flex-direction: column;
    }

    ._actionButton_ld3ha_85 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    ._cardMeta_ld3ha_50 {
        padding: 10px 12px;
    }

    ._metaItem_ld3ha_60 {
        font-size: 0.85rem;
    }
}

/* Логотип бренда */
._shopIcon_ld3ha_249 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(116, 31, 162, 0.1), rgba(155, 77, 196, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

._shopIcon_ld3ha_249 i {
    font-size: 2rem;
    color: #741fa2;
}

._logoImage_ld3ha_267 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    padding: 8px;
}

/* Анимация загрузки */
@keyframes _pulse_ld3ha_1 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

._logoImage_ld3ha_267._loading_ld3ha_281 {
    animation: _pulse_ld3ha_1 1.5s ease-in-out infinite;
    background: #f0f0f0;
}._promoCodeContainer_1kpql_1 {
    position: relative;
    background: #f1f5f9;
    /*border: 1px dashed #741fa2;*/
    border-radius: 12px;
    /*padding: 12px;*/
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow: hidden;
}

._promoCode_1kpql_1 {
    flex: 1;
    cursor: pointer;
}

._promoCode_1kpql_1 code {
    display: block;
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: #741fa2;
    letter-spacing: 1px;
    padding: 5px;
    text-align: center;
    transition: filter 0.3s ease;
}

._promoCode_1kpql_1._blurred_1kpql_32 code {
    filter: blur(5px);
    user-select: none;
}

._copyButton_1kpql_37 {
    background: white;
    border: 1px solid #741fa2;
    color: #741fa2;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    min-width: 120px;
    z-index: 10;
}

._copyButton_1kpql_37:hover {
    background: #741fa2;
    color: white;
    transform: scale(1.02);
}

/* Адаптивность */
@media (max-width: 480px) {
    ._promoCodeContainer_1kpql_1 {
        flex-direction: column;
        padding: 10px;
    }

    ._promoCode_1kpql_1 code {
        font-size: 1rem;
    }

    ._copyButton_1kpql_37 {
        width: 100%;
        min-width: auto;
    }
}._blogSection_1oqfg_1 {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

._blogSection_1oqfg_1 h2 {
    margin-bottom: 30px;
}

._blogGrid_1oqfg_12 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

._blogCard_1oqfg_18 {
    padding: 20px;
    background: #f8fafc;
    border-radius: 20px;
}

._blogCard_1oqfg_18 h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

._blogCard_1oqfg_18 p {
    margin: 10px 0;
    color: #475569;
}

._readMore_1oqfg_34 {
    color: rgb(116 31 162);
    text-decoration: none;
    font-weight: 500;
}

._readMore_1oqfg_34:hover {
    text-decoration: underline;
}

._blogSection_1oqfg_1 {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin: 40px 0;
}

._blogSection_1oqfg_1 h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

._blogGrid_1oqfg_12 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

._blogCard_1oqfg_18 {
    padding: 25px;
    background: #f8fafc;
    border-radius: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

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

._blogCard_1oqfg_18 h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0f172a;
    line-height: 1.4;
}

._blogCard_1oqfg_18 p {
    margin: 10px 0 15px;
    color: #475569;
    line-height: 1.6;
    flex: 1;
}

._cardFooter_1oqfg_92 {
    display: flex;
    justify-content: space-between;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 15px;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}


._loading_1oqfg_103, ._error_1oqfg_103, ._emptyMessage_1oqfg_103 {
    text-align: center;
    padding: 40px;
    color: #64748b;
}

._spinner_1oqfg_109 {
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: _spin_1oqfg_109 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes _spin_1oqfg_109 {
    to { transform: rotate(360deg); }
}

._retryButton_1oqfg_123 {
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.2s;
}

._retryButton_1oqfg_123:hover {
    background: #1d4ed8;
}._footer_6ij2k_1 {
    background: rgb(116, 31, 162);
    color: White;
    padding: 40px 0;
    margin-top: 60px;
    border-radius: 40px 40px 0 0;
    text-align: center;
}

._footer_6ij2k_1 p {
    /*margin: 10px 0;*/
    font-weight: 300;
}

._links_6ij2k_15 {
    margin-top: 20px;
}

._links_6ij2k_15 a {
    color: White;
    font-weight: 300;
    text-decoration: none;
    margin: 0 5px;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    border-radius: 30px;
    padding: 5px 10px;
}

._links_6ij2k_15 a:hover {
    background: rgba(161, 65, 216, 0.48);
    border: 1px solid rgb(255, 255, 255);
    color: white;
}

._coopyright_6ij2k_37 {
    font-size: 10px;
    margin-top: 60px;
}._modalOverlay_6d0v6_1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: _fadeIn_6d0v6_1 0.3s ease;
}

@keyframes _fadeIn_6d0v6_1 {
    from { opacity: 0; }
    to { opacity: 1; }
}

._modal_6d0v6_1 {
    background: white;
    border-radius: 40px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: _slideUp_6d0v6_1 0.4s ease;
    box-shadow: 0 30px 60px rgba(116, 31, 162, 0.3);
}

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

._modalClose_6d0v6_44 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

._modalClose_6d0v6_44:hover {
    background: #f0f0f0;
    color: #741fa2;
    transform: rotate(90deg);
}

._modalContent_6d0v6_70 {
    padding: 40px;
}

/* Шапка */
._modalHeader_6d0v6_75 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

._shopInfo_6d0v6_84 {
    display: flex;
    align-items: center;
    gap: 15px;
}

._shopLogo_6d0v6_90 {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
}

._shopLogo_6d0v6_90 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
    padding: 8px;
}

._shopLogoFallback_6d0v6_110 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

._shopName_6d0v6_122 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

._shopCategory_6d0v6_129 {
    font-size: 0.9rem;
    color: #741fa2;
    background: rgba(116, 31, 162, 0.1);
    padding: 4px 12px;
    border-radius: 30px;
}

._hotBadge_6d0v6_137 {
    background: linear-gradient(135deg, #ff4d4d, #ff1a1a);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 10px;
}

/* Основное предложение */
._offerMain_6d0v6_150 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

._offerDescription_6d0v6_159 {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Мета-информация */
._offerMeta_6d0v6_167 {
    background: #f8fafc;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

._metaItem_6d0v6_177 {
    display: flex;
    align-items: center;
    gap: 12px;
}

._metaIcon_6d0v6_183 {
    font-size: 1.5rem;
}

._metaLabel_6d0v6_187 {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 2px;
}

._metaValue_6d0v6_194 {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Промокод */
._promoSection_6d0v6_202 {
    margin-bottom: 25px;
}

._promoLabel_6d0v6_206 {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 8px;
}

._promoCode_6d0v6_214 {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 2px dashed #741fa2;
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._promoText_6d0v6_224 {
    font-family: 'SF Mono', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #741fa2;
    letter-spacing: 1px;
}

._copyButton_6d0v6_232 {
    background: white;
    border: 1px solid #741fa2;
    color: #741fa2;
    padding: 10px 25px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

._copyButton_6d0v6_232:hover {
    background: #741fa2;
    color: white;
    transform: scale(1.05);
}

._copyButton_6d0v6_232._copied_6d0v6_250 {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

/* Кнопки действий */
._actionButtons_6d0v6_257 {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-bottom: 20px;
}

._primaryButton_6d0v6_264 {
    background: #741fa2;
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

._primaryButton_6d0v6_264:hover {
    background: #9b4dc4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px #741fa2;
}

._secondaryButton_6d0v6_282 {
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 16px 30px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

._secondaryButton_6d0v6_282:hover {
    background: #f8fafc;
    color: #1a1a1a;
    border-color: #cbd5e1;
}

/* Условия */
._conditions_6d0v6_301 {
    margin-bottom: 15px;
}

._conditionsSummary_6d0v6_305 {
    color: #741fa2;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
}

._conditionsSummary_6d0v6_305::-webkit-details-marker {
    display: none;
}

._conditionsSummary_6d0v6_305:hover {
    text-decoration: underline;
}

._conditionsText_6d0v6_325 {
    margin-top: 10px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 16px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Партнерская ссылка */
._partnerNote_6d0v6_336 {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 15px;
}

/* Адаптивность */
@media (max-width: 768px) {
    ._modalContent_6d0v6_70 {
        padding: 30px 20px;
    }

    ._modalHeader_6d0v6_75 {
        flex-direction: column;
        gap: 15px;
    }

    ._shopInfo_6d0v6_84 {
        width: 100%;
    }

    ._hotBadge_6d0v6_137 {
        align-self: flex-start;
    }

    ._offerMain_6d0v6_150 {
        font-size: 1.8rem;
    }

    ._offerMeta_6d0v6_167 {
        grid-template-columns: 1fr;
    }

    ._actionButtons_6d0v6_257 {
        grid-template-columns: 1fr;
    }

    ._promoCode_6d0v6_214 {
        flex-direction: column;
        gap: 12px;
    }

    ._copyButton_6d0v6_232 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    ._modal_6d0v6_1 {
        width: 95%;
    }

    ._shopLogo_6d0v6_90 {
        width: 50px;
        height: 50px;
    }

    ._shopName_6d0v6_122 {
        font-size: 1.2rem;
    }

    ._offerMain_6d0v6_150 {
        font-size: 1.5rem;
    }
}

._headerActions_6d0v6_403 {
    display: flex;
    align-items: center;
    gap: 10px;
}

._favoriteButton_6d0v6_409 {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

._favoriteButton_6d0v6_409:hover {
    transform: scale(1.1);
    color: #741fa2;
}

._favoriteButton_6d0v6_409._isFavorite_6d0v6_432 {
    color: #741fa2;
}

._favoriteButton_6d0v6_409._isFavorite_6d0v6_432:hover {
    color: #9b4dc4;
}._page_1wacg_1 {
    min-height: 100vh;
    /*background: #f5f7fa;*/
    width: 100%;
    margin: auto;
}

._container_1wacg_8 {
    max-width: 1440px;
    margin: 0 auto;
    /*padding: 0 24px;*/
}

._sliderSection_1wacg_14 {
    background: none !important;
    margin-top: 25px;
}

/* Секции */
._promoCodesSection_1wacg_20,
._popularShopsSection_1wacg_21,
._categoriesSection_1wacg_22,
._ctaSection_1wacg_23 {
    padding: 70px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

._sectionHeader_1wacg_30 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

._sectionTitle_1wacg_37 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 15px;
}

._sectionBadge_1wacg_46 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #d52b1e;
    background: rgba(213, 43, 30, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
}

._viewAll_1wacg_55 {
    color: #888;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

._viewAll_1wacg_55:hover {
    color: #1a1a1a;
}

/* Слайдер */
._sliderSection_1wacg_14 {
    padding: 0;
    background: #fff;
    border: none;
    margin-bottom: 40px;
}

._slider_1wacg_14 {
    position: relative;
    height: 391px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

._slide_1wacg_14 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

._slide_1wacg_14._active_1wacg_95 {
    opacity: 1;
}

/* Стиль для полноразмерного изображения баннера */
._slideImageFull_1wacg_100 {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Растягивает изображение на всю ширину и высоту, сохраняя пропорции */
    display: block;
}

/* Стиль для контента внутри слайда (когда нет изображения) */
._slideContent_1wacg_108 {
    text-align: center;
    color: white;
    padding: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

._slideContent_1wacg_108 img {
    width: 50%;
    max-width: 200px;
}

._slideIcon_1wacg_127 {
    font-size: 4rem;
    margin-bottom: 20px;
}

._slideTitle_1wacg_132 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

._slideDescription_1wacg_138 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

._slideButton_1wacg_144 {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: transform 0.3s;
}

._slideButton_1wacg_144:hover {
    transform: translateY(-3px);
}

/* Кнопки навигации слайдера */
._sliderPrev_1wacg_160,
._sliderNext_1wacg_161 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

._sliderPrev_1wacg_160:hover,
._sliderNext_1wacg_161:hover {
    background: #741fa2;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

._sliderPrev_1wacg_160 {
    left: 20px;
}

._sliderNext_1wacg_161 {
    right: 20px;
}

/* Точки навигации */
._sliderDots_1wacg_196 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

._dot_1wacg_206 {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

._activeDot_1wacg_217 {
    width: 30px;
    background: white;
}

/* Промокоды */
._promoCodesGrid_1wacg_223 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

._promoCard_1wacg_229 {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

._promoCard_1wacg_229:hover {
    transform: translateY(-5px);
}

._promoHeader_1wacg_241 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._promoShop_1wacg_250 {
    font-weight: 600;
    font-size: 1.1rem;
}

._promoExpiry_1wacg_255 {
    font-size: 0.9rem;
    opacity: 0.9;
}

._promoBody_1wacg_260 {
    padding: 20px;
}

._promoTitle_1wacg_264 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

._promoDiscount_1wacg_270 {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 15px;
}

._promoCode_1wacg_20 {
    display: flex;
    gap: 10px;
    background: #f8f9fc;
    padding: 10px;
    border-radius: 10px;
}

._promoCode_1wacg_20 code {
    flex: 1;
    font-family: monospace;
    font-size: 1.1rem;
    color: #1a1a1a;
    padding: 8px;
    background: white;
    border-radius: 8px;
    text-align: center;
}

._copyButton_1wacg_296 {
    padding: 8px 20px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

._copyButton_1wacg_296:hover {
    background: #333;
}

/* Популярные магазины */
._shopsGrid_1wacg_312 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

._shopCard_1wacg_318 {
    background: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

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

._shopLogo_1wacg_333 {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

._shopIcon_1wacg_340 {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

._shopName_1wacg_353 {
    color: #1a1a1a;
    margin-bottom: 5px;
}

._shopOffers_1wacg_358 {
    color: #888;
    font-size: 0.9rem;
}

/* Категории скидок */
._categoriesGrid_1wacg_364 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

._categoryCard_1wacg_370 {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fc;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

._categoryIcon_1wacg_380 {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 15px;
}

._categoryInfo_1wacg_392 {
    flex: 1;
}

._categoryName_1wacg_396 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

._categoryCount_1wacg_402 {
    color: #888;
    font-size: 0.9rem;
}

/* CTA секция - улучшенный дизайн */
._ctaSection_1wacg_23 {
    background: linear-gradient(135deg, rgb(116, 31, 162) 0%, rgb(147, 51, 201) 50%, rgb(178, 81, 224) 100%);
    border-radius: 30px;
    padding: 0;
    margin: 60px auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -12px rgba(116, 31, 162, 0.4);
    max-width: 1440px;
}

._ctaSection_1wacg_23::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

._ctaSection_1wacg_23::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

._ctaContent_1wacg_443 {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 50px 60px; /* Уменьшили паддинг */
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

._ctaBadge_1wacg_456 {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 16px; /* Уменьшили паддинг */
    border-radius: 30px;
    font-size: 12px; /* Уменьшили шрифт */
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px; /* Уменьшили отступ */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

._ctaTitle_1wacg_471 {
    font-size: 2.5rem; /* Уменьшили шрифт */
    font-weight: 700; /* Уменьшили жирность */
    margin-bottom: 15px; /* Уменьшили отступ */
    line-height: 1.2;
    max-width: 700px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.3px; /* Уменьшили интервал */
}

._ctaHighlight_1wacg_481 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

._ctaDescription_1wacg_490 {
    font-size: 1.1rem; /* Уменьшили шрифт */
    margin-bottom: 25px; /* Уменьшили отступ */
    opacity: 0.95;
    max-width: 550px; /* Уменьшили ширину */
    line-height: 1.5; /* Уменьшили интервал */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

._ctaStats_1wacg_499 {
    display: flex;
    gap: 40px; /* Уменьшили gap */
    margin-bottom: 30px; /* Уменьшили отступ */
    padding: 15px 25px; /* Уменьшили паддинг */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px; /* Уменьшили радиус */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

._ctaStatItem_1wacg_510 {
    text-align: center;
}

._ctaStatValue_1wacg_514 {
    display: block;
    font-size: 1.8rem; /* Уменьшили шрифт */
    font-weight: 700; /* Уменьшили жирность */
    line-height: 1;
    margin-bottom: 4px;
    color: #FFD700;
}

._ctaStatLabel_1wacg_523 {
    font-size: 0.8rem; /* Уменьшили шрифт */
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

._ctaButtonGroup_1wacg_530 {
    display: flex;
    gap: 15px; /* Уменьшили gap */
    align-items: center;
}

._ctaButton_1wacg_530 {
    display: inline-block;
    padding: 14px 40px; /* Уменьшили паддинг */
    background: white;
    color: rgb(116, 31, 162);
    text-decoration: none;
    border-radius: 50px; /* Уменьшили радиус */
    font-weight: 600; /* Уменьшили жирность */
    font-size: 1rem; /* Уменьшили шрифт */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 12px 25px -10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

._ctaButton_1wacg_530::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(116, 31, 162, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

._ctaButton_1wacg_530:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.4);
    background: rgb(116, 31, 162);
    color: white;
    border-color: white;
}

._ctaButton_1wacg_530:hover::before {
    width: 250px; /* Уменьшили размер */
    height: 250px;
}

._ctaButtonSecondary_1wacg_579 {
    display: inline-block;
    padding: 12px 32px; /* Уменьшили паддинг */
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px; /* Уменьшили радиус */
    font-weight: 500; /* Уменьшили жирность */
    font-size: 0.95rem; /* Уменьшили шрифт */
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px); /* Уменьшили blur */
}

._ctaButtonSecondary_1wacg_579:hover {
    background: white;
    color: rgb(116, 31, 162);
    border-color: white;
    transform: translateY(-3px);
}

/* Анимация для фона */
@keyframes _float_1wacg_1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(1deg); /* Уменьшили анимацию */
    }
    66% {
        transform: translateY(8px) rotate(-1deg);
    }
}

._ctaSection_1wacg_23 {
    animation: _float_1wacg_1 15s ease-in-out infinite;
}

/* Адаптивность */
@media (max-width: 1200px) {
    ._ctaSection_1wacg_23 {
        max-width: 95%; /* На мобильных почти на всю ширину */
        margin: 50px auto;
    }
}

/* Сетка для квадратных магазинов */
._shopsGridSquare_1wacg_626 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(124px, 158px));
    gap: 20px;
    justify-content: space-between;
    margin-top: 30px;
}

._shopCardSquare_1wacg_634 {
    width: 158px;
    height: 158px;
    background: white;
    border-radius: 12px;
    padding: 15px 10px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

._shopCardSquare_1wacg_634:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #741fa2;
}

._shopLogoWrapper_1wacg_656 {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

._shopLogoSquared_1wacg_665 {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

._shopIconFallback_1wacg_671 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
}

._shopNameSquare_1wacg_684 {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin: 5px 0 3px;
    text-align: center;
    line-height: 1.2;
    max-height: 32px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

._shopOffersSquare_1wacg_698 {
    font-size: 11px;
    color: #888;
    text-align: center;
}

/* Стили для блока "Скоро истекают" */
._expiringSection_1wacg_705 {
    padding: 50px 0;
    background: linear-gradient(to bottom, #fff5f8, #fff);
}

._sectionBadgeHot_1wacg_710 {
    background: linear-gradient(135deg, #ff4d4d, #ff1a1a);
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: _pulse_1wacg_1 2s infinite;
}

@keyframes _pulse_1wacg_1 {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 77, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
    }
}

._expiringGrid_1wacg_735 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

._expiringCard_1wacg_742 {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #ffeef2;
}

._expiringCard_1wacg_742:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 77, 77, 0.15);
    border-color: #ff4d4d;
}

._expiringCardHeader_1wacg_758 {
    padding: 15px 15px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #fff0f0;
}

._expiringShopInfo_1wacg_766 {
    display: flex;
    align-items: center;
    gap: 10px;
}

._expiringShopLogo_1wacg_772 {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: contain;
}

._expiringShopIcon_1wacg_779 {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #ff4d4d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}

._expiringShopName_1wacg_792 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

._expiringBadge_1wacg_798 {
    background: #ff4d4d;
    color: white;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 500;
    white-space: nowrap;
}

._expiringCardBody_1wacg_808 {
    padding: 15px;
}

._expiringTitle_1wacg_812 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    max-height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

._expiringDiscount_1wacg_825 {
    font-size: 20px;
    font-weight: 700;
    color: #ff4d4d;
    margin-bottom: 8px;
}

._expiringPrice_1wacg_832 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

._oldPrice_1wacg_839 {
    color: #999;
    text-decoration: line-through;
}

._newPrice_1wacg_844 {
    color: #ff4d4d;
    font-weight: 600;
}

._expiringCardFooter_1wacg_849 {
    padding: 10px 15px 15px;
    border-top: 1px solid #fff0f0;
}

._expiringButton_1wacg_854 {
    display: inline-block;
    color: #ff4d4d;
    font-size: 13px;
    font-weight: 500;
    transition: transform 0.2s;
}

._expiringCard_1wacg_742:hover ._expiringButton_1wacg_854 {
    transform: translateX(5px);
}

/* Адаптивность */
@media (max-width: 992px) {
    ._expiringGrid_1wacg_735 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    ._shopsGridSquare_1wacg_626 {
        grid-template-columns: repeat(auto-fill, minmax(100px, 100px));
        gap: 15px;
        justify-content: center;
    }

    ._shopCardSquare_1wacg_634 {
        width: 100px;
        height: 100px;
        padding: 10px;
    }

    ._shopLogoWrapper_1wacg_656 {
        width: 50px;
        height: 50px;
    }

    ._shopLogoSquared_1wacg_665 {
        max-width: 50px;
        max-height: 50px;
    }

    ._expiringGrid_1wacg_735 {
        grid-template-columns: 1fr;
    }
}

._loadingContainer_1wacg_901 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    background: transparent;
}

._spinner_1wacg_910 {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(116, 31, 162, 0.1);
    border-left-color: #741fa2;
    border-right-color: #9b4dc4;
    border-radius: 50%;
    animation: _spin_1wacg_910 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(116, 31, 162, 0.2);
}

@keyframes _spin_1wacg_910 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

._loadingContainer_1wacg_901 p {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
    animation: _pulse_1wacg_1 1.5s ease-in-out infinite;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes _pulse_1wacg_1 {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

._promoBannerSection_1wacg_951 {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #f1f5f9 100%);
}

._promoBanner_1wacg_951 {
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    border-radius: 30px;
    padding: 30px 40px;
    box-shadow: 0 20px 40px -15px rgba(116, 31, 162, 0.3);
    position: relative;
    overflow: hidden;
}

._promoBanner_1wacg_951::before {
    content: '🎁';
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 150px;
    opacity: 0.1;
    transform: rotate(15deg);
}

._promoBannerContent_1wacg_975 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

._promoBannerIcon_1wacg_983 {
    font-size: 4rem;
    background: rgba(255, 255, 255, 0.2);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: _float_1wacg_1 3s ease-in-out infinite;
}

@keyframes _float_1wacg_1 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

._promoBannerText_1wacg_1006 {
    flex: 1;
}

._promoBannerTitle_1wacg_1010 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

._promoBannerDescription_1wacg_1018 {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

._promoBannerButton_1wacg_1024 {
    background: white;
    color: #741fa2;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

._promoBannerButton_1wacg_1024:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: #f8f9fc;
}

._promoBannerArrow_1wacg_1046 {
    transition: transform 0.3s ease;
}

._promoBannerButton_1wacg_1024:hover ._promoBannerArrow_1wacg_1046 {
    transform: translateX(5px);
}

/* Адаптивность для промо-баннера */
@media (max-width: 992px) {
    ._promoBannerContent_1wacg_975 {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }

    ._promoBannerIcon_1wacg_983 {
        margin-right: 0;
    }

    ._promoBannerButton_1wacg_1024 {
        width: 100%;
        justify-content: center;
    }
}


._expiringPromocode_1wacg_1074 {
    background: #f1f5f9;
    border: 1px dashed #741fa2;
    border-radius: 12px;
    padding: 10px;
    margin: 10px 0;
    text-align: center;
}

._expiringPromocode_1wacg_1074 code {
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: #741fa2;
    letter-spacing: 1px;
}

._expiringButton_1wacg_854 {
    background: #741fa2;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 10px 0;
}

._expiringLink_1wacg_1102 {
    color: #741fa2;
    font-weight: 500;
    font-size: 0.9rem;
    transition: transform 0.2s;
    display: inline-block;
}

._expiringCard_1wacg_742:hover ._expiringLink_1wacg_1102 {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    ._container_1wacg_8 {
        padding: 0 16px;
    }

    /* Хедер для мобильных */
    ._header_1wacg_1120 ._container_1wacg_8 {
        flex-wrap: wrap;
        gap: 10px;
    }

    ._navLeft_1wacg_1125 {
        width: 100%;
        justify-content: space-between;
    }

    ._nav_1wacg_1125 {
        display: none; /* Скрываем навигацию на мобильных */
    }

    ._navRight_1wacg_1134 {
        width: 100%;
        justify-content: space-between;
    }

    /* Поиск на мобильных */
    ._searchForm_1wacg_1140 {
        flex: 1;
        max-width: none;
    }

    ._searchWrapper_1wacg_1145 {
        width: 100%;
    }

    ._searchInput_1wacg_1149 {
        width: 100%;
        padding: 12px 40px 12px 15px;
    }

    ._searchButton_1wacg_1154 {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Подсказки поиска на мобильных */
    ._suggestions_1wacg_1162 {
        position: fixed;
        top: auto;
        left: 16px;
        right: 16px;
        max-height: 300px;
        z-index: 1001;
    }

    /* Слайдер */
    ._sliderSection_1wacg_14 {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    ._slider_1wacg_14 {
        height: 250px;
        border-radius: 20px;
    }

    ._slideContent_1wacg_108 {
        padding: 20px;
    }

    ._slideIcon_1wacg_127 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    ._slideTitle_1wacg_132 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    ._slideDescription_1wacg_138 {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    ._slideButton_1wacg_144 {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    ._sliderPrev_1wacg_160,
    ._sliderNext_1wacg_161 {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    ._sliderDots_1wacg_196 {
        bottom: 10px;
    }

    ._dot_1wacg_206 {
        width: 8px;
        height: 8px;
    }

    ._activeDot_1wacg_217 {
        width: 20px;
    }

    /* Секции */
    ._promoCodesSection_1wacg_20,
    ._popularShopsSection_1wacg_21,
    ._categoriesSection_1wacg_22,
    ._ctaSection_1wacg_23 {
        padding: 40px 0;
    }

    ._sectionHeader_1wacg_30 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 20px;
    }

    ._sectionTitle_1wacg_37 {
        font-size: 1.5rem;
        gap: 10px;
    }

    ._viewAll_1wacg_55 {
        align-self: flex-end;
    }

    /* Промокоды */
    ._promoCodesGrid_1wacg_223 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    ._promoCard_1wacg_229 {
        margin-bottom: 10px;
    }

    ._promoHeader_1wacg_241 {
        padding: 12px 15px;
    }

    ._promoShop_1wacg_250 {
        font-size: 1rem;
    }

    ._promoExpiry_1wacg_255 {
        font-size: 0.8rem;
    }

    ._promoBody_1wacg_260 {
        padding: 15px;
    }

    ._promoTitle_1wacg_264 {
        font-size: 1.1rem;
    }

    ._promoDiscount_1wacg_270 {
        font-size: 1.6rem;
    }

    ._promoCode_1wacg_20 {
        flex-direction: column;
        gap: 8px;
    }

    ._promoCode_1wacg_20 code {
        width: 100%;
    }

    ._copyButton_1wacg_296 {
        width: 100%;
    }

    /* Популярные магазины */
    ._shopsGridSquare_1wacg_626 {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 12px;
        justify-content: center;
    }

    ._shopCardSquare_1wacg_634 {
        width: 100%;
        height: auto;
        min-height: 120px;
        padding: 12px 8px;
    }

    ._shopLogoWrapper_1wacg_656 {
        width: 50px;
        height: 50px;
    }

    ._shopLogoSquared_1wacg_665 {
        max-width: 50px;
        max-height: 50px;
    }

    ._shopIconFallback_1wacg_671 {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    ._shopNameSquare_1wacg_684 {
        font-size: 12px;
    }

    ._shopOffersSquare_1wacg_698 {
        font-size: 10px;
    }

    /* Скоро истекают */
    ._expiringSection_1wacg_705 {
        padding: 30px 0;
    }

    ._expiringGrid_1wacg_735 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    ._expiringCard_1wacg_742 {
        margin-bottom: 10px;
    }

    ._expiringCardHeader_1wacg_758 {
        padding: 12px;
    }

    ._expiringShopLogo_1wacg_772 {
        width: 25px;
        height: 25px;
    }

    ._expiringShopIcon_1wacg_779 {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    ._expiringShopName_1wacg_792 {
        font-size: 13px;
    }

    ._expiringBadge_1wacg_798 {
        font-size: 10px;
        padding: 3px 6px;
    }

    ._expiringCardBody_1wacg_808 {
        padding: 12px;
    }

    ._expiringTitle_1wacg_812 {
        font-size: 14px;
    }

    ._expiringPromocode_1wacg_1074 code {
        font-size: 1rem;
    }

    ._expiringButton_1wacg_854 {
        padding: 8px;
        font-size: 0.85rem;
    }

    /* Категории */
    ._categoriesGrid_1wacg_364 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    ._categoryCard_1wacg_370 {
        padding: 15px;
    }

    ._categoryIcon_1wacg_380 {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        margin-right: 12px;
    }

    ._categoryName_1wacg_396 {
        font-size: 1rem;
    }

    ._categoryCount_1wacg_402 {
        font-size: 0.85rem;
    }

    /* Промо баннер */
    ._promoBanner_1wacg_951 {
        padding: 25px 20px;
    }

    ._promoBannerContent_1wacg_975 {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    ._promoBannerIcon_1wacg_983 {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
        margin-right: 0;
    }

    ._promoBannerTitle_1wacg_1010 {
        font-size: 1.3rem;
    }

    ._promoBannerDescription_1wacg_1018 {
        font-size: 0.9rem;
    }

    ._promoBannerButton_1wacg_1024 {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* CTA секция */
    ._ctaSection_1wacg_23 {
        margin: 30px auto;
        border-radius: 20px;
    }

    ._ctaContent_1wacg_443 {
        padding: 30px 20px;
    }

    ._ctaBadge_1wacg_456 {
        font-size: 11px;
        padding: 4px 12px;
    }

    ._ctaTitle_1wacg_471 {
        font-size: 1.8rem;
    }

    ._ctaDescription_1wacg_490 {
        font-size: 0.95rem;
    }

    ._ctaStats_1wacg_499 {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        width: 100%;
    }

    ._ctaStatItem_1wacg_510 {
        width: 100%;
    }

    ._ctaStatValue_1wacg_514 {
        font-size: 1.5rem;
    }

    ._ctaButtonGroup_1wacg_530 {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    ._ctaButton_1wacg_530,
    ._ctaButtonSecondary_1wacg_579 {
        width: 100%;
        text-align: center;
        padding: 12px 30px;
    }

    /* Загрузчик */
    ._loadingContainer_1wacg_901 {
        min-height: 50vh;
    }

    ._spinner_1wacg_910 {
        width: 50px;
        height: 50px;
    }

    ._loadingContainer_1wacg_901 p {
        font-size: 1rem;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    ._container_1wacg_8 {
        padding: 0 12px;
    }

    ._slider_1wacg_14 {
        height: 200px;
    }

    ._slideTitle_1wacg_132 {
        font-size: 1.1rem;
    }

    ._slideDescription_1wacg_138 {
        font-size: 0.8rem;
    }

    ._slideButton_1wacg_144 {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

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

    ._shopCardSquare_1wacg_634 {
        min-height: 110px;
    }

    ._promoBannerIcon_1wacg_983 {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    ._promoBannerTitle_1wacg_1010 {
        font-size: 1.1rem;
    }

    ._ctaTitle_1wacg_471 {
        font-size: 1.5rem;
    }

    ._ctaStats_1wacg_499 {
        padding: 12px;
    }
}

/* Исправления для touch-устройств */
@media (hover: none) and (pointer: coarse) {
    ._shopCardSquare_1wacg_634:hover,
    ._promoCard_1wacg_229:hover,
    ._expiringCard_1wacg_742:hover {
        transform: none;
    }

    ._sliderPrev_1wacg_160,
    ._sliderNext_1wacg_161 {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.8);
    }
}

._slideImageLink_1wacg_1581 {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

._slideImageLink_1wacg_1581:hover {
    opacity: 0.98;
}

._slideFallback_1wacg_1592 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}._adBlock_j4zm9_1 {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin: 60px 0;
    border: 2px dashed var(--border);
    position: relative;
    overflow: hidden;
}

._adBlock_j4zm9_1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
}

._adIcon_j4zm9_22 {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

._adIcon_j4zm9_22 i {
    font-size: 2.5rem;
    color: white;
}

._adTitle_j4zm9_39 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

._adDescription_j4zm9_46 {
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

._adButton_j4zm9_54 {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

._adButton_j4zm9_54:hover {
    background: var(--primary);
    color: white;
}

._smallNote_j4zm9_71 {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 20px;
}

/* Новые стили для баннера с изображением */
._adBlockImage_j4zm9_78 {
    margin: 60px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

._adBlockImage_j4zm9_78:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

._adLink_j4zm9_91 {
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
}

._adImage_j4zm9_98 {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Premium Admin Styles */
._adminContainer_1jk3m_4 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 32px;
    background: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
/* Премиум хедер */
._adminHeader_1jk3m_13 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}
._adminHeader_1jk3m_13 h1 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #1a1a1a;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
._adminHeader_1jk3m_13 h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #741fa2, #9b4dc4);
}
._logoutButton_1jk3m_43 {
    background: transparent;
    color: #666;
    border: 1px solid #f0f0f0;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
._logoutButton_1jk3m_43:hover {
    background: #741fa2;
    color: white;
    border-color: #741fa2;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -8px rgba(116, 31, 162, 0.2);
}
/* Дашборд */
._dashboardSection_1jk3m_64 {
    background: white;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    margin-bottom: 48px;
}
._dashboardTitle_1jk3m_73 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}
._dashboardGrid_1jk3m_83 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}
._dashboardCard_1jk3m_90 {
    background: linear-gradient(135deg, #f8f9fc, #f5f7fa);
    padding: 28px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
._dashboardCard_1jk3m_90:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -15px rgba(116, 31, 162, 0.2);
    border-color: #741fa2;
}
._dashboardCardIcon_1jk3m_107 {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #741fa2;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.1);
}
._dashboardCardContent_1jk3m_120 {
    flex: 1;
}
._dashboardCardLabel_1jk3m_124 {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
._dashboardCardValue_1jk3m_133 {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 4px;
}
._dashboardCardTrend_1jk3m_142 {
    font-size: 0.8rem;
    color: #10b981;
}
._dashboardCharts_1jk3m_147 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}
._dashboardChart_1jk3m_147 {
    background: #f8f9fc;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
}
._dashboardChart_1jk3m_147 h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}
._popularList_1jk3m_170 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
._popularItem_1jk3m_176 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}
._popularItem_1jk3m_176:hover {
    background: linear-gradient(135deg, #fff, #f8f9fc);
    transform: translateX(5px);
}
._popularItemInfo_1jk3m_191 {
    display: flex;
    align-items: center;
    gap: 12px;
}
._popularItemLogo_1jk3m_197 {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: contain;
    background: white;
    padding: 4px;
    border: 1px solid #f0f0f0;
}
._popularItemIcon_1jk3m_207 {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #741fa2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}
._popularItemName_1jk3m_220 {
    font-weight: 500;
    color: #1a1a1a;
}
._popularItemStats_1jk3m_225 {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #888;
}
._popularItemViews_1jk3m_232, ._popularItemClicks_1jk3m_232 {
    display: flex;
    align-items: center;
    gap: 4px;
}
._activityChart_1jk3m_238 {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 200px;
    padding: 20px 0;
}
._chartBar_1jk3m_246 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
}
._chartBarFill_1jk3m_255 {
    width: 100%;
    background: linear-gradient(to top, #741fa2, #9b4dc4);
    border-radius: 8px 8px 0 0;
    min-height: 4px;
    transition: height 0.3s ease;
}
._chartBarLabel_1jk3m_263 {
    font-size: 0.8rem;
    color: #888;
    transform: rotate(-45deg);
    white-space: nowrap;
}
._emptyChart_1jk3m_270 {
    color: #888;
    text-align: center;
    padding: 40px;
}
/* Статистика */
._statsGrid_1jk3m_277 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}
._statCard_1jk3m_284 {
    background: white;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
._statCard_1jk3m_284:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px -15px rgba(116, 31, 162, 0.1);
    border-color: #741fa2;
}
._statCard_1jk3m_284 h3 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #888;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
._statNumber_1jk3m_308 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1;
}
/* Основной контент */
._adminContent_1jk3m_316 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    margin-bottom: 48px;
}
/* Формы */
._addForm_1jk3m_324 {
    background: white;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
}
._addForm_1jk3m_324 h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
._formGrid_1jk3m_343 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
._formGroup_1jk3m_350 {
    display: flex;
    flex-direction: column;
}
._formGroupFull_1jk3m_355 {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}
._formGroup_1jk3m_350 label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #444;
    font-size: 0.9rem;
}
._formGroup_1jk3m_350 input,
._formGroup_1jk3m_350 select,
._formGroup_1jk3m_350 textarea {
    padding: 14px 16px;
    background: #f8f9fc;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: inherit;
    color: #1a1a1a;
}
._formGroup_1jk3m_350 input:hover,
._formGroup_1jk3m_350 select:hover,
._formGroup_1jk3m_350 textarea:hover {
    background: #ffffff;
    border-color: #d0d9e8;
}
._formGroup_1jk3m_350 input:focus,
._formGroup_1jk3m_350 select:focus,
._formGroup_1jk3m_350 textarea:focus {
    outline: none;
    border-color: #741fa2;
    background: #ffffff;
    box-shadow: 0 5px 15px -8px rgba(116, 31, 162, 0.2);
}
._formGroup_1jk3m_350 small {
    color: #888;
    margin-top: 6px;
    font-size: 0.75rem;
}
._formGroupCheckbox_1jk3m_403 {
    grid-column: span 2;
    display: flex;
    align-items: center;
}
._checkboxLabel_1jk3m_409 {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px 0;
    user-select: none;
}
._checkboxLabel_1jk3m_409 input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #741fa2;
}
._checkboxLabel_1jk3m_409 span {
    color: #444;
    font-size: 0.95rem;
}
._submitButton_1jk3m_430 {
    background: #741fa2;
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}
._submitButton_1jk3m_430::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
._submitButton_1jk3m_430:hover {
    background: #9b4dc4;
    transform: translateY(-2px);
    box-shadow: 0 20px 30px -15px rgba(116, 31, 162, 0.3);
}
._submitButton_1jk3m_430:hover::before {
    width: 300px;
    height: 300px;
}
/* Список предложений */
._existingOffers_1jk3m_471 {
    background: white;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
}
._existingOffers_1jk3m_471 h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}
._brandsList_1jk3m_487 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}
._brandsList_1jk3m_487::-webkit-scrollbar {
    width: 6px;
}
._brandsList_1jk3m_487::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
._brandsList_1jk3m_487::-webkit-scrollbar-thumb {
    background: #741fa2;
    border-radius: 10px;
}
._brandsList_1jk3m_487::-webkit-scrollbar-thumb:hover {
    background: #9b4dc4;
}
._brandItem_1jk3m_514 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fc;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
._brandItem_1jk3m_514:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px -10px rgba(116, 31, 162, 0.1);
    border-color: #741fa2;
}
._brandInfo_1jk3m_531 {
    flex: 1;
}
._brandTitle_1jk3m_535 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
._brandLogo_1jk3m_542 {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
    background: white;
    padding: 6px;
    border: 1px solid #f0f0f0;
}
._brandIcon_1jk3m_552 {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fc, #f0f0f0);
    border-radius: 12px;
    color: #666;
    font-size: 1.4rem;
    border: 1px solid #f0f0f0;
}
._brandTitle_1jk3m_535 strong {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}
._hotBadge_1jk3m_571 {
    background: #ff4d4d;
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
._brandCategories_1jk3m_582 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
._categoryTag_1jk3m_589 {
    background: #741fa2;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
}
._brandStats_1jk3m_601 {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #888;
}
._brandStats_1jk3m_601 span {
    display: flex;
    align-items: center;
    gap: 4px;
}
._brandActions_1jk3m_614 {
    display: flex;
    gap: 8px;
    margin-left: 20px;
}
._deleteButton_1jk3m_620 {
    background: transparent;
    color: #999;
    border: 1px solid #f0f0f0;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
._deleteButton_1jk3m_620:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fee2e2;
    transform: scale(1.05);
}
/* Секция баннеров */
._bannersSection_1jk3m_643 {
    margin-top: 48px;
    background: white;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
}
._bannerForm_1jk3m_652 {
    background: #f8f9fc;
    padding: 32px;
    border-radius: 24px;
    margin-bottom: 32px;
}
._bannerUploadArea_1jk3m_659 {
    width: 100%;
    margin: 15px 0;
}
._bannerFileLabel_1jk3m_664 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 250px;
    background: #f8f9fc;
    border: 2px dashed #f0f0f0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 20px;
}
._bannerFileLabel_1jk3m_664:hover {
    border-color: #741fa2;
    background: #f1f4f9;
}
._bannerFileLabel_1jk3m_664 i {
    font-size: 3rem;
    color: #888;
    margin-bottom: 15px;
}
._bannerFileLabel_1jk3m_664 span {
    color: #444;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 1rem;
}
._bannerFileLabel_1jk3m_664 small {
    color: #888;
    font-size: 0.85rem;
    margin-top: 4px;
}
._bannerPreview_1jk3m_705 {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
._bannersList_1jk3m_713 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
._bannerItem_1jk3m_719 {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: #f8f9fc;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
._bannerItem_1jk3m_719:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px -10px rgba(116, 31, 162, 0.1);
    border-color: #741fa2;
}
._bannerPreviewContainer_1jk3m_736 {
    width: 300px;
    height: 84px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
._bannerImage_1jk3m_746 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
._bannerPreviewContent_1jk3m_752 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}
._bannerInfo_1jk3m_762 {
    flex: 1;
}
._bannerInfo_1jk3m_762 h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}
._bannerInfo_1jk3m_762 p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 12px;
}
._bannerMeta_1jk3m_779 {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #888;
    flex-wrap: wrap;
}
._bannerMeta_1jk3m_779 span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 30px;
}
._bannerActions_1jk3m_796 {
    display: flex;
    gap: 8px;
    margin-left: 20px;
}
/* Секция блога */
._blogSection_1jk3m_803 {
    margin-top: 48px;
    background: white;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
}
._blogForm_1jk3m_812 {
    background: #f8f9fc;
    padding: 32px;
    border-radius: 24px;
    margin-bottom: 32px;
}
._blogList_1jk3m_819 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
._blogItem_1jk3m_825 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px;
    background: #f8f9fc;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
._blogItem_1jk3m_825:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px -10px rgba(116, 31, 162, 0.1);
    border-color: #741fa2;
}
._blogContent_1jk3m_842 {
    flex: 1;
}
._blogHeader_1jk3m_846 {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}
._blogThumbnail_1jk3m_852 {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
}
._blogInfo_1jk3m_860 {
    flex: 1;
}
._blogInfo_1jk3m_860 h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}
._blogMeta_1jk3m_871 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: #888;
}
._blogMeta_1jk3m_871 span {
    display: flex;
    align-items: center;
    gap: 4px;
}
._featuredBadge_1jk3m_885 {
    background: #ffd700;
    color: #1a1a1a;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 500;
}
._blogDescription_1jk3m_893 {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.5;
}
._blogTags_1jk3m_900 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
._tag_1jk3m_906 {
    background: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}
._blogActions_1jk3m_914 {
    display: flex;
    gap: 8px;
    margin-left: 20px;
}
._editButton_1jk3m_920 {
    background: transparent;
    color: #999;
    border: 1px solid #f0f0f0;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
._editButton_1jk3m_920:hover {
    background: #e3f2fd;
    color: #1976d2;
    border-color: #e3f2fd;
    transform: scale(1.05);
}
/* Секция категорий */
._categoriesSection_1jk3m_943 {
    margin-top: 48px;
    background: white;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
}
._sectionHeader_1jk3m_952 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
._sectionHeader_1jk3m_952 h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}
._addButton_1jk3m_966 {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #f0f0f0;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
._addButton_1jk3m_966:hover {
    background: #741fa2;
    color: white;
    border-color: #741fa2;
    transform: translateY(-2px);
}
._categoryForm_1jk3m_985 {
    background: #f8f9fc;
    padding: 32px;
    border-radius: 24px;
    margin-bottom: 32px;
}
._categoriesList_1jk3m_992 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}
._categoryItem_1jk3m_998 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fc;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    border-left-width: 4px;
}
._categoryItem_1jk3m_998:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -15px rgba(116, 31, 162, 0.15);
}
._categoryInfo_1jk3m_1015 {
    display: flex;
    align-items: center;
    gap: 16px;
}
._categoryIcon_1jk3m_1021 {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
._categoryInfo_1jk3m_1015 div strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}
._categoryInfo_1jk3m_1015 div p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 4px;
}
._categoryInfo_1jk3m_1015 div small {
    color: #888;
    font-size: 0.85rem;
}
._categoryActions_1jk3m_1053 {
    display: flex;
    gap: 8px;
}
/* Стили для логина */
._adminLogin_1jk3m_1059 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
._loginBox_1jk3m_1067 {
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 60px -30px rgba(116, 31, 162, 0.2);
    width: 100%;
    max-width: 440px;
    text-align: center;
    border: 1px solid #f0f0f0;
}
._loginBox_1jk3m_1067 h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}
._input_1jk3m_1086 {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 16px;
    background: #f8f9fc;
    border: 1px solid #f0f0f0;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
._input_1jk3m_1086:focus {
    outline: none;
    border-color: #741fa2;
    background: white;
    box-shadow: 0 5px 15px -8px rgba(116, 31, 162, 0.2);
}
._loginButton_1jk3m_1104 {
    width: 100%;
    padding: 16px;
    background: #741fa2;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}
._loginButton_1jk3m_1104:hover {
    background: #9b4dc4;
    transform: translateY(-2px);
    box-shadow: 0 20px 30px -15px rgba(116, 31, 162, 0.3);
}
._backButton_1jk3m_1124 {
    background: transparent;
    color: #888;
    border: 1px solid #f0f0f0;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
._backButton_1jk3m_1124:hover {
    background: #f8f9fc;
    color: #741fa2;
    border-color: #741fa2;
}
/* Лоадер */
._loadingContainer_1jk3m_1142 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #fff;
}
._spinner_1jk3m_1151 {
    width: 50px;
    height: 50px;
    border: 2px solid #f0f0f0;
    border-top-color: #741fa2;
    border-radius: 50%;
    animation: _spin_1jk3m_1151 0.8s linear infinite;
    margin-bottom: 20px;
}
@keyframes _spin_1jk3m_1151 {
    to { transform: rotate(360deg); }
}
/* Пустые состояния */
._emptyMessage_1jk3m_1166 {
    color: #888;
    text-align: center;
    padding: 60px 40px;
    background: #f8f9fc;
    border-radius: 24px;
    font-size: 1rem;
    border: 1px dashed #f0f0f0;
}
/* Логотипы */
._logoUploadArea_1jk3m_1177 {
    width: 100%;
    margin: 15px 0;
}
._fileInput_1jk3m_1182 {
    display: none;
}
._fileLabel_1jk3m_1186 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 180px;
    background: #f8f9fc;
    border: 2px dashed #f0f0f0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 20px;
}
._fileLabel_1jk3m_1186:hover {
    border-color: #741fa2;
    background: #f1f4f9;
}
._fileLabel_1jk3m_1186 i {
    font-size: 3rem;
    color: #888;
    margin-bottom: 15px;
}
._fileLabel_1jk3m_1186 span {
    color: #444;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 1rem;
}
._fileLabel_1jk3m_1186 small {
    color: #888;
    font-size: 0.85rem;
}
._logoPreview_1jk3m_1226 {
    max-width: 200px;
    max-height: 150px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Дополнительные стили */
._fieldHint_1jk3m_1235 {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 6px;
    font-style: italic;
}
._inptText_1jk3m_1243 {
    width: 100%;
    padding: 14px 16px;
    background: #f8f9fc;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: inherit;
    color: #1a1a1a;
    resize: vertical;
    min-height: 80px;
}
._inptText_1jk3m_1243:focus {
    outline: none;
    border-color: #741fa2;
    background: #ffffff;
    box-shadow: 0 5px 15px -8px rgba(116, 31, 162, 0.2);
}
._categoryCounts_1jk3m_1264 {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}
._categoryCounts_1jk3m_1264 small {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #64748b;
    font-size: 0.8rem;
}
._offersCount_1jk3m_1278 {
    background: #741fa2;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 8px;
}
._adminNote_1jk3m_1288 {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding: 10px;
    background: #f1f5f9;
    border-radius: 12px;
    text-align: center;
}
/* МОБИЛЬНАЯ АДАПТАЦИЯ */
/* Планшеты и небольшие десктопы */
@media (max-width: 1200px) {
    ._adminContent_1jk3m_316 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    ._dashboardCharts_1jk3m_147 {
        grid-template-columns: 1fr;
    }

    ._categoriesList_1jk3m_992 {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}
/* Планшеты */
@media (max-width: 992px) {
    ._adminContainer_1jk3m_4 {
        padding: 30px 20px;
    }

    ._adminHeader_1jk3m_13 {
        margin-bottom: 32px;
    }

    ._adminHeader_1jk3m_13 h1 {
        font-size: 1.8rem;
    }

    ._dashboardSection_1jk3m_64,
    ._addForm_1jk3m_324,
    ._existingOffers_1jk3m_471,
    ._bannersSection_1jk3m_643,
    ._blogSection_1jk3m_803,
    ._categoriesSection_1jk3m_943 {
        padding: 30px;
    }

    ._dashboardTitle_1jk3m_73 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    ._dashboardGrid_1jk3m_83 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    ._dashboardCard_1jk3m_90 {
        padding: 20px;
    }

    ._dashboardCardIcon_1jk3m_107 {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    ._dashboardCardValue_1jk3m_133 {
        font-size: 1.8rem;
    }

    ._formGrid_1jk3m_343 {
        gap: 16px;
    }

    ._brandItem_1jk3m_514 {
        padding: 16px;
    }

    ._brandLogo_1jk3m_542,
    ._brandIcon_1jk3m_552 {
        width: 40px;
        height: 40px;
    }

    ._brandTitle_1jk3m_535 strong {
        font-size: 1rem;
    }

    ._bannerItem_1jk3m_719 {
        padding: 20px;
        gap: 16px;
    }

    ._bannerPreviewContainer_1jk3m_736 {
        width: 250px;
        height: 70px;
    }

    ._blogItem_1jk3m_825 {
        padding: 20px;
    }

    ._blogThumbnail_1jk3m_852 {
        width: 60px;
        height: 60px;
    }

    ._categoryItem_1jk3m_998 {
        padding: 16px;
    }

    ._categoryIcon_1jk3m_1021 {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
/* Мобильные устройства */
@media (max-width: 768px) {
    ._adminContainer_1jk3m_4 {
        padding: 20px 16px;
    }

    ._adminHeader_1jk3m_13 {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
        margin-bottom: 28px;
        padding-bottom: 20px;
    }

    ._adminHeader_1jk3m_13 h1 {
        font-size: 1.5rem;
        margin: 0;
        text-align: center;
    }

    ._adminHeader_1jk3m_13 h1::after {
        width: 100px;
        left: 50%;
        transform: translateX(-50%);
    }

    ._logoutButton_1jk3m_43 {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    /* Дашборд */
    ._dashboardSection_1jk3m_64 {
        padding: 20px;
        margin-bottom: 24px;
    }

    ._dashboardTitle_1jk3m_73 {
        font-size: 1.3rem;
        justify-content: center;
        margin-bottom: 20px;
    }

    ._dashboardGrid_1jk3m_83 {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }

    ._dashboardCard_1jk3m_90 {
        padding: 16px;
        gap: 12px;
    }

    ._dashboardCardIcon_1jk3m_107 {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    ._dashboardCardValue_1jk3m_133 {
        font-size: 1.5rem;
    }

    ._dashboardCharts_1jk3m_147 {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    ._dashboardChart_1jk3m_147 {
        padding: 20px;
    }

    ._dashboardChart_1jk3m_147 h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    ._popularItem_1jk3m_176 {
        padding: 10px;
    }

    ._popularItemInfo_1jk3m_191 {
        gap: 8px;
    }

    ._popularItemLogo_1jk3m_197,
    ._popularItemIcon_1jk3m_207 {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    ._popularItemStats_1jk3m_225 {
        gap: 10px;
        font-size: 0.8rem;
    }

    ._activityChart_1jk3m_238 {
        height: 150px;
        gap: 5px;
    }

    ._chartBarLabel_1jk3m_263 {
        font-size: 0.7rem;
        transform: rotate(-30deg);
    }

    /* Статистика */
    ._statsGrid_1jk3m_277 {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }

    ._statCard_1jk3m_284 {
        padding: 20px;
    }

    ._statNumber_1jk3m_308 {
        font-size: 2.2rem;
    }

    /* Формы */
    ._addForm_1jk3m_324 {
        padding: 20px;
        margin-bottom: 20px;
    }

    ._addForm_1jk3m_324 h2 {
        font-size: 1.3rem;
        margin-bottom: 24px;
        justify-content: center;
    }

    ._formGrid_1jk3m_343 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    ._formGroupFull_1jk3m_355 {
        grid-column: span 1;
    }

    ._formGroupCheckbox_1jk3m_403 {
        grid-column: span 1;
    }

    ._formGroup_1jk3m_350 input,
    ._formGroup_1jk3m_350 select,
    ._formGroup_1jk3m_350 textarea,
    ._inptText_1jk3m_1243 {
        padding: 12px 14px;
        font-size: 16px; /* Предотвращает зум на iOS */
    }

    ._checkboxLabel_1jk3m_409 {
        justify-content: center;
    }

    ._submitButton_1jk3m_430 {
        padding: 16px;
        font-size: 1rem;
    }

    /* Список брендов */
    ._existingOffers_1jk3m_471 {
        padding: 20px;
    }

    ._existingOffers_1jk3m_471 h2 {
        font-size: 1.3rem;
        margin-bottom: 24px;
        text-align: center;
    }

    ._brandsList_1jk3m_487 {
        max-height: 500px;
        gap: 12px;
    }

    ._brandItem_1jk3m_514 {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    ._brandTitle_1jk3m_535 {
        flex-wrap: wrap;
        gap: 10px;
    }

    ._brandLogo_1jk3m_542,
    ._brandIcon_1jk3m_552 {
        width: 45px;
        height: 45px;
    }

    ._brandCategories_1jk3m_582 {
        margin-top: 5px;
    }

    ._brandStats_1jk3m_601 {
        flex-wrap: wrap;
        gap: 12px;
    }

    ._brandActions_1jk3m_614 {
        margin-left: 0;
        margin-top: 15px;
        align-self: flex-end;
        width: 100%;
        justify-content: flex-end;
    }

    ._deleteButton_1jk3m_620 {
        width: 40px;
        height: 40px;
    }

    /* Баннеры */
    ._bannersSection_1jk3m_643 {
        padding: 20px;
        margin-top: 24px;
    }

    ._sectionHeader_1jk3m_952 {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        margin-bottom: 24px;
    }

    ._sectionHeader_1jk3m_952 h2 {
        text-align: center;
        font-size: 1.3rem;
    }

    ._addButton_1jk3m_966 {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    ._bannerForm_1jk3m_652 {
        padding: 20px;
    }

    ._bannerFileLabel_1jk3m_664 {
        min-height: 200px;
    }

    ._bannerFileLabel_1jk3m_664 i {
        font-size: 2.5rem;
    }

    ._bannersList_1jk3m_713 {
        gap: 16px;
    }

    ._bannerItem_1jk3m_719 {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 16px;
    }

    ._bannerPreviewContainer_1jk3m_736 {
        width: 100%;
        height: auto;
        aspect-ratio: 1392/391;
    }

    ._bannerInfo_1jk3m_762 h3 {
        font-size: 1.1rem;
    }

    ._bannerMeta_1jk3m_779 {
        flex-direction: column;
        gap: 8px;
    }

    ._bannerMeta_1jk3m_779 span {
        width: 100%;
        justify-content: center;
    }

    ._bannerActions_1jk3m_796 {
        margin-left: 0;
        align-self: flex-end;
        width: 100%;
        justify-content: flex-end;
    }

    /* Блог */
    ._blogSection_1jk3m_803 {
        padding: 20px;
        margin-top: 24px;
    }

    ._blogForm_1jk3m_812 {
        padding: 20px;
    }

    ._blogList_1jk3m_819 {
        gap: 16px;
    }

    ._blogItem_1jk3m_825 {
        flex-direction: column;
        padding: 16px;
    }

    ._blogHeader_1jk3m_846 {
        flex-direction: column;
        gap: 12px;
    }

    ._blogThumbnail_1jk3m_852 {
        width: 100%;
        height: 150px;
    }

    ._blogInfo_1jk3m_860 h3 {
        font-size: 1.1rem;
    }

    ._blogMeta_1jk3m_871 {
        flex-direction: column;
        gap: 8px;
    }

    ._blogActions_1jk3m_914 {
        margin-left: 0;
        margin-top: 15px;
        justify-content: flex-end;
        width: 100%;
    }

    ._editButton_1jk3m_920,
    ._deleteButton_1jk3m_620 {
        width: 44px;
        height: 44px;
    }

    /* Категории */
    ._categoriesSection_1jk3m_943 {
        padding: 20px;
        margin-top: 24px;
    }

    ._categoryForm_1jk3m_985 {
        padding: 20px;
    }

    ._categoriesList_1jk3m_992 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    ._categoryItem_1jk3m_998 {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 12px;
    }

    ._categoryInfo_1jk3m_1015 {
        width: 100%;
        gap: 12px;
    }

    ._categoryIcon_1jk3m_1021 {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    ._categoryInfo_1jk3m_1015 div strong {
        font-size: 1rem;
    }

    ._categoryCounts_1jk3m_1264 {
        flex-direction: column;
        gap: 5px;
    }

    ._categoryActions_1jk3m_1053 {
        width: 100%;
        justify-content: flex-end;
    }

    /* Логин */
    ._loginBox_1jk3m_1067 {
        padding: 40px 20px;
        margin: 20px;
    }

    ._loginBox_1jk3m_1067 h1 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    ._input_1jk3m_1086 {
        padding: 14px 16px;
        font-size: 16px;
    }

    ._loginButton_1jk3m_1104 {
        padding: 14px;
    }

    ._backButton_1jk3m_1124 {
        width: 100%;
    }
}
/* Очень маленькие устройства */
@media (max-width: 480px) {
    ._adminContainer_1jk3m_4 {
        padding: 15px 12px;
    }

    ._dashboardCard_1jk3m_90 {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    ._dashboardCardContent_1jk3m_120 {
        text-align: center;
    }

    ._dashboardCardTrend_1jk3m_142 {
        display: block;
    }

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

    ._brandStats_1jk3m_601 {
        flex-direction: column;
        gap: 8px;
    }

    ._brandStats_1jk3m_601 span {
        width: 100%;
    }

    ._bannerMeta_1jk3m_779 span {
        font-size: 0.8rem;
    }

    ._blogThumbnail_1jk3m_852 {
        height: 120px;
    }

    ._blogInfo_1jk3m_860 h3 {
        font-size: 1rem;
    }

    ._blogMeta_1jk3m_871 span {
        font-size: 0.8rem;
    }

    ._tag_1jk3m_906 {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    ._categoryInfo_1jk3m_1015 {
        flex-direction: column;
        text-align: center;
    }

    ._categoryIcon_1jk3m_1021 {
        margin: 0 auto;
    }

    ._categoryCounts_1jk3m_1264 {
        align-items: center;
    }

    ._loginBox_1jk3m_1067 h1 {
        font-size: 1.3rem;
    }

    ._offersCount_1jk3m_1278 {
        margin-left: 0;
        margin-top: 5px;
        display: inline-block;
    }
}
/* Улучшения для touch-устройств */
@media (hover: none) and (pointer: coarse) {
    ._submitButton_1jk3m_430:hover,
    ._addButton_1jk3m_966:hover,
    ._deleteButton_1jk3m_620:hover,
    ._editButton_1jk3m_920:hover,
    ._logoutButton_1jk3m_43:hover,
    ._loginButton_1jk3m_1104:hover,
    ._backButton_1jk3m_1124:hover {
        transform: none;
        box-shadow: none;
    }

    ._submitButton_1jk3m_430:active,
    ._addButton_1jk3m_966:active,
    ._deleteButton_1jk3m_620:active,
    ._editButton_1jk3m_920:active,
    ._logoutButton_1jk3m_43:active,
    ._loginButton_1jk3m_1104:active,
    ._backButton_1jk3m_1124:active {
        transform: scale(0.98);
    }

    ._brandItem_1jk3m_514:hover,
    ._bannerItem_1jk3m_719:hover,
    ._blogItem_1jk3m_825:hover,
    ._categoryItem_1jk3m_998:hover,
    ._popularItem_1jk3m_176:hover {
        transform: none;
        box-shadow: none;
    }

    ._brandItem_1jk3m_514:active,
    ._bannerItem_1jk3m_719:active,
    ._blogItem_1jk3m_825:active,
    ._categoryItem_1jk3m_998:active,
    ._popularItem_1jk3m_176:active {
        background: #f0f0f0;
    }
}
/* Фикс для iOS */
@supports (-webkit-touch-callout: none) {
    ._formGroup_1jk3m_350 input,
    ._formGroup_1jk3m_350 select,
    ._formGroup_1jk3m_350 textarea,
    ._inptText_1jk3m_1243,
    ._input_1jk3m_1086 {
        font-size: 16px;
    }
}
._cancelEditButton_1jk3m_1961 {
    background: #f0f0f0;
    color: #666;
    border: none;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
._cancelEditButton_1jk3m_1961:hover {
    background: #e0e0e0;
    color: #333;
    transform: translateY(-2px);
}
/* Обновленный стиль для заголовка формы с кнопкой */
._addForm_1jk3m_324 h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
/* Адаптация для мобильных */
@media (max-width: 768px) {
    ._addForm_1jk3m_324 h2 {
        flex-direction: column;
        align-items: flex-start;
    }

    ._cancelEditButton_1jk3m_1961 {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}
._blogContentPreview_1jk3m_2003 {
    margin-top: 10px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    max-height: 100px;
    overflow: hidden;
    position: relative;
}
._blogContentPreview_1jk3m_2003:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(transparent, #f5f5f5);
}@media (prefers-color-scheme: dark) {
  .wmde-markdown,
  .wmde-markdown-var {
    color-scheme: dark;
    --color-prettylights-syntax-comment: #8b949e;
    --color-prettylights-syntax-constant: #79c0ff;
    --color-prettylights-syntax-entity: #d2a8ff;
    --color-prettylights-syntax-storage-modifier-import: #c9d1d9;
    --color-prettylights-syntax-entity-tag: #7ee787;
    --color-prettylights-syntax-keyword: #ff7b72;
    --color-prettylights-syntax-string: #a5d6ff;
    --color-prettylights-syntax-variable: #ffa657;
    --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
    --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
    --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
    --color-prettylights-syntax-carriage-return-text: #f0f6fc;
    --color-prettylights-syntax-carriage-return-bg: #b62324;
    --color-prettylights-syntax-string-regexp: #7ee787;
    --color-prettylights-syntax-markup-list: #f2cc60;
    --color-prettylights-syntax-markup-heading: #1f6feb;
    --color-prettylights-syntax-markup-italic: #c9d1d9;
    --color-prettylights-syntax-markup-bold: #c9d1d9;
    --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
    --color-prettylights-syntax-markup-deleted-bg: #67060c;
    --color-prettylights-syntax-markup-inserted-text: #aff5b4;
    --color-prettylights-syntax-markup-inserted-bg: #033a16;
    --color-prettylights-syntax-markup-changed-text: #ffdfb6;
    --color-prettylights-syntax-markup-changed-bg: #5a1e02;
    --color-prettylights-syntax-markup-ignored-text: #c9d1d9;
    --color-prettylights-syntax-markup-ignored-bg: #1158c7;
    --color-prettylights-syntax-meta-diff-range: #d2a8ff;
    --color-prettylights-syntax-brackethighlighter-angle: #8b949e;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
    --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
    --color-fg-default: #c9d1d9;
    --color-fg-muted: #8b949e;
    --color-fg-subtle: #484f58;
    --color-canvas-default: #0d1117;
    --color-canvas-subtle: #161b22;
    --color-border-default: #30363d;
    --color-border-muted: #21262d;
    --color-neutral-muted: rgba(110, 118, 129, 0.4);
    --color-accent-fg: #58a6ff;
    --color-accent-emphasis: #1f6feb;
    --color-attention-subtle: rgba(187, 128, 9, 0.15);
    --color-danger-fg: #f85149;
    --color-danger-emphasis: #da3633;
    --color-attention-fg: #d29922;
    --color-attention-emphasis: #9e6a03;
    --color-done-fg: #a371f7;
    --color-done-emphasis: #8957e5;
    --color-success-fg: #3fb950;
    --color-success-emphasis: #238636;
    --color-copied-active-bg: #2e9b33;
  }
}
@media (prefers-color-scheme: light) {
  .wmde-markdown,
  .wmde-markdown-var {
    color-scheme: light;
    --color-prettylights-syntax-comment: #6e7781;
    --color-prettylights-syntax-constant: #0550ae;
    --color-prettylights-syntax-entity: #8250df;
    --color-prettylights-syntax-storage-modifier-import: #24292f;
    --color-prettylights-syntax-entity-tag: #116329;
    --color-prettylights-syntax-keyword: #cf222e;
    --color-prettylights-syntax-string: #0a3069;
    --color-prettylights-syntax-variable: #953800;
    --color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
    --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
    --color-prettylights-syntax-invalid-illegal-bg: #82071e;
    --color-prettylights-syntax-carriage-return-text: #f6f8fa;
    --color-prettylights-syntax-carriage-return-bg: #cf222e;
    --color-prettylights-syntax-string-regexp: #116329;
    --color-prettylights-syntax-markup-list: #3b2300;
    --color-prettylights-syntax-markup-heading: #0550ae;
    --color-prettylights-syntax-markup-italic: #24292f;
    --color-prettylights-syntax-markup-bold: #24292f;
    --color-prettylights-syntax-markup-deleted-text: #82071e;
    --color-prettylights-syntax-markup-deleted-bg: #ffebe9;
    --color-prettylights-syntax-markup-inserted-text: #116329;
    --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
    --color-prettylights-syntax-markup-changed-text: #953800;
    --color-prettylights-syntax-markup-changed-bg: #ffd8b5;
    --color-prettylights-syntax-markup-ignored-text: #eaeef2;
    --color-prettylights-syntax-markup-ignored-bg: #0550ae;
    --color-prettylights-syntax-meta-diff-range: #8250df;
    --color-prettylights-syntax-brackethighlighter-angle: #57606a;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f;
    --color-prettylights-syntax-constant-other-reference-link: #0a3069;
    --color-fg-default: #24292f;
    --color-fg-muted: #57606a;
    --color-fg-subtle: #6e7781;
    --color-canvas-default: #ffffff;
    --color-canvas-subtle: #f6f8fa;
    --color-border-default: #d0d7de;
    --color-border-muted: hsl(210, 18%, 87%);
    --color-neutral-muted: rgba(175, 184, 193, 0.2);
    --color-accent-fg: #0969da;
    --color-accent-emphasis: #0969da;
    --color-attention-subtle: #fff8c5;
    --color-danger-fg: #d1242f;
    --color-danger-emphasis: #cf222e;
    --color-attention-fg: #9a6700;
    --color-attention-emphasis: #9a6700;
    --color-done-fg: #8250df;
    --color-done-emphasis: #8250df;
    --color-success-fg: #1a7f37;
    --color-success-emphasis: #1f883d;
    --color-copied-active-bg: #2e9b33;
  }
}
[data-color-mode*='dark'] .wmde-markdown,
[data-color-mode*='dark'] .wmde-markdown-var,
.wmde-markdown-var[data-color-mode*='dark'],
.wmde-markdown[data-color-mode*='dark'],
body[data-color-mode*='dark'] {
  color-scheme: dark;
  --color-prettylights-syntax-comment: #8b949e;
  --color-prettylights-syntax-constant: #79c0ff;
  --color-prettylights-syntax-entity: #d2a8ff;
  --color-prettylights-syntax-storage-modifier-import: #c9d1d9;
  --color-prettylights-syntax-entity-tag: #7ee787;
  --color-prettylights-syntax-keyword: #ff7b72;
  --color-prettylights-syntax-string: #a5d6ff;
  --color-prettylights-syntax-variable: #ffa657;
  --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
  --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
  --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
  --color-prettylights-syntax-carriage-return-text: #f0f6fc;
  --color-prettylights-syntax-carriage-return-bg: #b62324;
  --color-prettylights-syntax-string-regexp: #7ee787;
  --color-prettylights-syntax-markup-list: #f2cc60;
  --color-prettylights-syntax-markup-heading: #1f6feb;
  --color-prettylights-syntax-markup-italic: #c9d1d9;
  --color-prettylights-syntax-markup-bold: #c9d1d9;
  --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
  --color-prettylights-syntax-markup-deleted-bg: #67060c;
  --color-prettylights-syntax-markup-inserted-text: #aff5b4;
  --color-prettylights-syntax-markup-inserted-bg: #033a16;
  --color-prettylights-syntax-markup-changed-text: #ffdfb6;
  --color-prettylights-syntax-markup-changed-bg: #5a1e02;
  --color-prettylights-syntax-markup-ignored-text: #c9d1d9;
  --color-prettylights-syntax-markup-ignored-bg: #1158c7;
  --color-prettylights-syntax-meta-diff-range: #d2a8ff;
  --color-prettylights-syntax-brackethighlighter-angle: #8b949e;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
  --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
  --color-fg-default: #c9d1d9;
  --color-fg-muted: #8b949e;
  --color-fg-subtle: #484f58;
  --color-canvas-default: #0d1117;
  --color-canvas-subtle: #161b22;
  --color-border-default: #30363d;
  --color-border-muted: #21262d;
  --color-neutral-muted: rgba(110, 118, 129, 0.4);
  --color-accent-fg: #58a6ff;
  --color-accent-emphasis: #1f6feb;
  --color-attention-subtle: rgba(187, 128, 9, 0.15);
  --color-danger-fg: #f85149;
}
[data-color-mode*='light'] .wmde-markdown,
[data-color-mode*='light'] .wmde-markdown-var,
.wmde-markdown-var[data-color-mode*='light'],
.wmde-markdown[data-color-mode*='light'],
body[data-color-mode*='light'] {
  color-scheme: light;
  --color-prettylights-syntax-comment: #6e7781;
  --color-prettylights-syntax-constant: #0550ae;
  --color-prettylights-syntax-entity: #8250df;
  --color-prettylights-syntax-storage-modifier-import: #24292f;
  --color-prettylights-syntax-entity-tag: #116329;
  --color-prettylights-syntax-keyword: #cf222e;
  --color-prettylights-syntax-string: #0a3069;
  --color-prettylights-syntax-variable: #953800;
  --color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
  --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
  --color-prettylights-syntax-invalid-illegal-bg: #82071e;
  --color-prettylights-syntax-carriage-return-text: #f6f8fa;
  --color-prettylights-syntax-carriage-return-bg: #cf222e;
  --color-prettylights-syntax-string-regexp: #116329;
  --color-prettylights-syntax-markup-list: #3b2300;
  --color-prettylights-syntax-markup-heading: #0550ae;
  --color-prettylights-syntax-markup-italic: #24292f;
  --color-prettylights-syntax-markup-bold: #24292f;
  --color-prettylights-syntax-markup-deleted-text: #82071e;
  --color-prettylights-syntax-markup-deleted-bg: #ffebe9;
  --color-prettylights-syntax-markup-inserted-text: #116329;
  --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
  --color-prettylights-syntax-markup-changed-text: #953800;
  --color-prettylights-syntax-markup-changed-bg: #ffd8b5;
  --color-prettylights-syntax-markup-ignored-text: #eaeef2;
  --color-prettylights-syntax-markup-ignored-bg: #0550ae;
  --color-prettylights-syntax-meta-diff-range: #8250df;
  --color-prettylights-syntax-brackethighlighter-angle: #57606a;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f;
  --color-prettylights-syntax-constant-other-reference-link: #0a3069;
  --color-fg-default: #24292f;
  --color-fg-muted: #57606a;
  --color-fg-subtle: #6e7781;
  --color-canvas-default: #ffffff;
  --color-canvas-subtle: #f6f8fa;
  --color-border-default: #d0d7de;
  --color-border-muted: hsl(210, 18%, 87%);
  --color-neutral-muted: rgba(175, 184, 193, 0.2);
  --color-accent-fg: #0969da;
  --color-accent-emphasis: #0969da;
  --color-attention-subtle: #fff8c5;
  --color-danger-fg: #cf222e;
}
.wmde-markdown {
  -webkit-text-size-adjust: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
  font-size: 16px;
  line-height: 1.5;
  word-wrap: break-word;
  color: var(--color-fg-default);
  background-color: var(--color-canvas-default);
}
.wmde-markdown details,
.wmde-markdown figcaption,
.wmde-markdown figure {
  display: block;
}
.wmde-markdown summary {
  display: list-item;
}
.wmde-markdown [hidden] {
  display: none !important;
}
.wmde-markdown a {
  background-color: transparent;
  color: var(--color-accent-fg);
  text-decoration: none;
}
.wmde-markdown a:active,
.wmde-markdown a:hover {
  outline-width: 0;
}
.wmde-markdown abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
.wmde-markdown b,
.wmde-markdown strong {
  font-weight: 600;
}
.wmde-markdown dfn {
  font-style: italic;
}
.wmde-markdown h1 {
  margin: 0.67em 0;
  font-weight: 600;
  padding-bottom: 0.3em;
  font-size: 2em;
  border-bottom: 1px solid var(--color-border-muted);
}
.wmde-markdown mark {
  background-color: var(--color-attention-subtle);
  color: var(--color-text-primary);
}
.wmde-markdown small {
  font-size: 90%;
}
.wmde-markdown sub,
.wmde-markdown sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.wmde-markdown sub {
  bottom: -0.25em;
}
.wmde-markdown sup {
  top: -0.5em;
}
.wmde-markdown img {
  display: inline-block;
  border-style: none;
  max-width: 100%;
  box-sizing: content-box;
  background-color: var(--color-canvas-default);
}
.wmde-markdown code,
.wmde-markdown kbd,
.wmde-markdown pre,
.wmde-markdown samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
.wmde-markdown figure {
  margin: 1em 40px;
}
.wmde-markdown hr {
  box-sizing: content-box;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-border-muted);
  height: 0.25em;
  padding: 0;
  margin: 24px 0;
  background-color: var(--color-border-default);
}
.wmde-markdown input {
  font: inherit;
  margin: 0;
  overflow: visible;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.wmde-markdown [type='button'],
.wmde-markdown [type='reset'],
.wmde-markdown [type='submit'] {
  -webkit-appearance: button;
}
.wmde-markdown [type='button']::-moz-focus-inner,
.wmde-markdown [type='reset']::-moz-focus-inner,
.wmde-markdown [type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
.wmde-markdown [type='button']:-moz-focusring,
.wmde-markdown [type='reset']:-moz-focusring,
.wmde-markdown [type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}
.wmde-markdown [type='checkbox'],
.wmde-markdown [type='radio'] {
  box-sizing: border-box;
  padding: 0;
}
.wmde-markdown [type='number']::-webkit-inner-spin-button,
.wmde-markdown [type='number']::-webkit-outer-spin-button {
  height: auto;
}
.wmde-markdown [type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
.wmde-markdown [type='search']::-webkit-search-cancel-button,
.wmde-markdown [type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
.wmde-markdown ::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
.wmde-markdown ::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
.wmde-markdown a:hover {
  text-decoration: underline;
}
.wmde-markdown hr::before {
  display: table;
  content: '';
}
.wmde-markdown hr::after {
  display: table;
  clear: both;
  content: '';
}
.wmde-markdown table {
  border-spacing: 0;
  border-collapse: collapse;
  display: block;
  width: max-content;
  max-width: 100%;
}
.wmde-markdown td,
.wmde-markdown th {
  padding: 0;
}
.wmde-markdown details summary {
  cursor: pointer;
}
.wmde-markdown details:not([open]) > *:not(summary) {
  display: none !important;
}
.wmde-markdown kbd {
  display: inline-block;
  padding: 3px 5px;
  font: 11px ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  line-height: 10px;
  color: var(--color-fg-default);
  vertical-align: middle;
  background-color: var(--color-canvas-subtle);
  border: solid 1px var(--color-neutral-muted);
  border-bottom-color: var(--color-neutral-muted);
  border-radius: 6px;
  box-shadow: inset 0 -1px 0 var(--color-neutral-muted);
}
.wmde-markdown h1,
.wmde-markdown h2,
.wmde-markdown h3,
.wmde-markdown h4,
.wmde-markdown h5,
.wmde-markdown h6 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.25;
}
.wmde-markdown td,
.wmde-markdown th {
  padding: 0;
}
.wmde-markdown details summary {
  cursor: pointer;
}
.wmde-markdown details:not([open]) > *:not(summary) {
  display: none !important;
}
.wmde-markdown kbd {
  display: inline-block;
  padding: 3px 5px;
  font: 11px ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  line-height: 10px;
  color: var(--color-fg-default);
  vertical-align: middle;
  background-color: var(--color-canvas-subtle);
  border: solid 1px var(--color-neutral-muted);
  border-bottom-color: var(--color-neutral-muted);
  border-radius: 6px;
  box-shadow: inset 0 -1px 0 var(--color-neutral-muted);
}
.wmde-markdown h1,
.wmde-markdown h2,
.wmde-markdown h3,
.wmde-markdown h4,
.wmde-markdown h5,
.wmde-markdown h6 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.25;
}
.wmde-markdown h2 {
  font-weight: 600;
  padding-bottom: 0.3em;
  font-size: 1.5em;
  border-bottom: 1px solid var(--color-border-muted);
}
.wmde-markdown h3 {
  font-weight: 600;
  font-size: 1.25em;
}
.wmde-markdown h4 {
  font-weight: 600;
  font-size: 1em;
}
.wmde-markdown h5 {
  font-weight: 600;
  font-size: 0.875em;
}
.wmde-markdown h6 {
  font-weight: 600;
  font-size: 0.85em;
  color: var(--color-fg-muted);
}
.wmde-markdown p {
  margin-top: 0;
  margin-bottom: 10px;
}
.wmde-markdown blockquote {
  margin: 0;
  padding: 0 1em;
  color: var(--color-fg-muted);
  border-left: 0.25em solid var(--color-border-default);
}
.wmde-markdown ul,
.wmde-markdown ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 2em;
}
.wmde-markdown ol ol,
.wmde-markdown ul ol {
  list-style-type: lower-roman;
}
.wmde-markdown ul ul ol,
.wmde-markdown ul ol ol,
.wmde-markdown ol ul ol,
.wmde-markdown ol ol ol {
  list-style-type: lower-alpha;
}
.wmde-markdown dd {
  margin-left: 0;
}
.wmde-markdown tt,
.wmde-markdown code {
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  font-size: 12px;
}
.wmde-markdown pre {
  margin-top: 0;
  margin-bottom: 0;
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  font-size: 12px;
  word-wrap: normal;
}
.wmde-markdown .octicon {
  display: inline-block;
  overflow: visible !important;
  vertical-align: text-bottom;
  fill: currentColor;
}
.wmde-markdown ::placeholder {
  color: var(--color-fg-subtle);
  opacity: 1;
}
.wmde-markdown input::-webkit-outer-spin-button,
.wmde-markdown input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}
.wmde-markdown [data-catalyst] {
  display: block;
}
.wmde-markdown::before {
  display: table;
  content: '';
}
.wmde-markdown::after {
  display: table;
  clear: both;
  content: '';
}
.wmde-markdown > *:first-child {
  margin-top: 0 !important;
}
.wmde-markdown > *:last-child {
  margin-bottom: 0 !important;
}
.wmde-markdown a:not([href]) {
  color: inherit;
  text-decoration: none;
}
.wmde-markdown .absent {
  color: var(--color-danger-fg);
}
.wmde-markdown a.anchor {
  float: left;
  padding-right: 4px;
  margin-left: -20px;
  line-height: 1;
}
.wmde-markdown .anchor:focus {
  outline: none;
}
.wmde-markdown p,
.wmde-markdown blockquote,
.wmde-markdown ul,
.wmde-markdown ol,
.wmde-markdown dl,
.wmde-markdown table,
.wmde-markdown pre,
.wmde-markdown details {
  margin-top: 0;
  margin-bottom: 16px;
}
.wmde-markdown blockquote > :first-child {
  margin-top: 0;
}
.wmde-markdown blockquote > :last-child {
  margin-bottom: 0;
}
.wmde-markdown sup > a::before {
  content: '[';
}
.wmde-markdown sup > a::after {
  content: ']';
}
.wmde-markdown h1 .octicon-link,
.wmde-markdown h2 .octicon-link,
.wmde-markdown h3 .octicon-link,
.wmde-markdown h4 .octicon-link,
.wmde-markdown h5 .octicon-link,
.wmde-markdown h6 .octicon-link {
  color: var(--color-fg-default);
  vertical-align: middle;
  visibility: hidden;
}
.wmde-markdown h1:hover .anchor,
.wmde-markdown h2:hover .anchor,
.wmde-markdown h3:hover .anchor,
.wmde-markdown h4:hover .anchor,
.wmde-markdown h5:hover .anchor,
.wmde-markdown h6:hover .anchor {
  text-decoration: none;
}
.wmde-markdown h1:hover .anchor .octicon-link,
.wmde-markdown h2:hover .anchor .octicon-link,
.wmde-markdown h3:hover .anchor .octicon-link,
.wmde-markdown h4:hover .anchor .octicon-link,
.wmde-markdown h5:hover .anchor .octicon-link,
.wmde-markdown h6:hover .anchor .octicon-link {
  visibility: visible;
}
.wmde-markdown h1 tt,
.wmde-markdown h1 code,
.wmde-markdown h2 tt,
.wmde-markdown h2 code,
.wmde-markdown h3 tt,
.wmde-markdown h3 code,
.wmde-markdown h4 tt,
.wmde-markdown h4 code,
.wmde-markdown h5 tt,
.wmde-markdown h5 code,
.wmde-markdown h6 tt,
.wmde-markdown h6 code {
  padding: 0 0.2em;
  font-size: inherit;
}
.wmde-markdown ul.no-list,
.wmde-markdown ol.no-list {
  padding: 0;
  list-style-type: none;
}
.wmde-markdown ol[type='1'] {
  list-style-type: decimal;
}
.wmde-markdown ol[type='a'] {
  list-style-type: lower-alpha;
}
.wmde-markdown ol[type='i'] {
  list-style-type: lower-roman;
}
.wmde-markdown div > ol:not([type]) {
  list-style-type: decimal;
}
.wmde-markdown ul ul,
.wmde-markdown ul ol,
.wmde-markdown ol ol,
.wmde-markdown ol ul {
  margin-top: 0;
  margin-bottom: 0;
}
.wmde-markdown li > p {
  margin-top: 16px;
}
.wmde-markdown li + li {
  margin-top: 0.25em;
}
.wmde-markdown dl {
  padding: 0;
}
.wmde-markdown dl dt {
  padding: 0;
  margin-top: 16px;
  font-size: 1em;
  font-style: italic;
  font-weight: 600;
}
.wmde-markdown dl dd {
  padding: 0 16px;
  margin-bottom: 16px;
}
.wmde-markdown table th {
  font-weight: 600;
}
.wmde-markdown table th,
.wmde-markdown table td {
  padding: 6px 13px;
  border: 1px solid var(--color-border-default);
}
.wmde-markdown table tr {
  background-color: var(--color-canvas-default);
  border-top: 1px solid var(--color-border-muted);
}
.wmde-markdown table tr:nth-child(2n) {
  background-color: var(--color-canvas-subtle);
}
.wmde-markdown table img {
  background-color: transparent;
}
.wmde-markdown img[align='right'] {
  padding-left: 20px;
}
.wmde-markdown img[align='left'] {
  padding-right: 20px;
}
.wmde-markdown .emoji {
  max-width: none;
  vertical-align: text-top;
  background-color: transparent;
}
.wmde-markdown span.frame {
  display: block;
  overflow: hidden;
}
.wmde-markdown span.frame > span {
  display: block;
  float: left;
  width: auto;
  padding: 7px;
  margin: 13px 0 0;
  overflow: hidden;
  border: 1px solid var(--color-border-default);
}
.wmde-markdown span.frame span img {
  display: block;
  float: left;
}
.wmde-markdown span.frame span span {
  display: block;
  padding: 5px 0 0;
  clear: both;
  color: var(--color-fg-default);
}
.wmde-markdown span.align-center {
  display: block;
  overflow: hidden;
  clear: both;
}
.wmde-markdown span.align-center > span {
  display: block;
  margin: 13px auto 0;
  overflow: hidden;
  text-align: center;
}
.wmde-markdown span.align-center span img {
  margin: 0 auto;
  text-align: center;
}
.wmde-markdown span.align-right {
  display: block;
  overflow: hidden;
  clear: both;
}
.wmde-markdown span.align-right > span {
  display: block;
  margin: 13px 0 0;
  overflow: hidden;
  text-align: right;
}
.wmde-markdown span.align-right span img {
  margin: 0;
  text-align: right;
}
.wmde-markdown span.float-left {
  display: block;
  float: left;
  margin-right: 13px;
  overflow: hidden;
}
.wmde-markdown span.float-left span {
  margin: 13px 0 0;
}
.wmde-markdown span.float-right {
  display: block;
  float: right;
  margin-left: 13px;
  overflow: hidden;
}
.wmde-markdown span.float-right > span {
  display: block;
  margin: 13px auto 0;
  overflow: hidden;
  text-align: right;
}
.wmde-markdown code,
.wmde-markdown tt {
  padding: 0.2em 0.4em;
  margin: 0;
  font-size: 85%;
  background-color: var(--color-neutral-muted);
  border-radius: 6px;
}
.wmde-markdown code br,
.wmde-markdown tt br {
  display: none;
}
.wmde-markdown del code {
  text-decoration: inherit;
}
.wmde-markdown pre code {
  font-size: 100%;
}
.wmde-markdown pre > code {
  padding: 0;
  margin: 0;
  word-break: normal;
  white-space: pre;
  background: transparent;
  border: 0;
}
.wmde-markdown pre {
  font-size: 85%;
  line-height: 1.45;
  background-color: var(--color-canvas-subtle);
  border-radius: 6px;
}
.wmde-markdown pre code,
.wmde-markdown pre tt {
  display: inline;
  max-width: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  line-height: inherit;
  word-wrap: normal;
  background-color: transparent;
  border: 0;
}
.wmde-markdown pre > code {
  padding: 16px;
  overflow: auto;
  display: block;
}
.wmde-markdown pre > code::-webkit-scrollbar {
  background: transparent;
  width: 8px;
  height: 8px;
}
.wmde-markdown pre > code::-webkit-scrollbar-thumb {
  background: var(--color-fg-muted);
  border-radius: 10px;
}
.wmde-markdown .csv-data td,
.wmde-markdown .csv-data th {
  padding: 5px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}
.wmde-markdown .csv-data .blob-num {
  padding: 10px 8px 9px;
  text-align: right;
  background: var(--color-canvas-default);
  border: 0;
}
.wmde-markdown .csv-data tr {
  border-top: 0;
}
.wmde-markdown .csv-data th {
  font-weight: 600;
  background: var(--color-canvas-subtle);
  border-top: 0;
}
.wmde-markdown .footnotes {
  font-size: 12px;
  color: var(--color-fg-muted);
  border-top: 1px solid var(--color-border-default);
}
.wmde-markdown .footnotes ol {
  padding-left: 16px;
}
.wmde-markdown .footnotes li {
  position: relative;
}
.wmde-markdown .footnotes li:target::before {
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -24px;
  pointer-events: none;
  content: '';
  border: 2px solid var(--color-accent-emphasis);
  border-radius: 6px;
}
.wmde-markdown .footnotes li:target {
  color: var(--color-fg-default);
}
.wmde-markdown .footnotes .data-footnote-backref g-emoji {
  font-family: monospace;
}
.wmde-markdown .task-list-item {
  list-style-type: none;
}
.wmde-markdown .task-list-item label {
  font-weight: 400;
}
.wmde-markdown .task-list-item.enabled label {
  cursor: pointer;
}
.wmde-markdown .task-list-item + .wmde-markdown .task-list-item {
  margin-top: 3px;
}
.wmde-markdown .task-list-item .handle {
  display: none;
}
.wmde-markdown .task-list-item-checkbox,
.wmde-markdown .contains-task-list input[type='checkbox'] {
  margin: 0 0.2em 0.25em -1.6em;
  vertical-align: middle;
}
.wmde-markdown .contains-task-list:dir(rtl) .task-list-item-checkbox,
.wmde-markdown .contains-task-list:dir(rtl) input[type='checkbox'] {
  margin: 0 -1.6em 0.25em 0.2em;
}
.wmde-markdown ::-webkit-calendar-picker-indicator {
  filter: invert(50%);
}
.wmde-markdown pre {
  position: relative;
}
.wmde-markdown pre .copied {
  visibility: hidden;
  display: flex;
  position: absolute;
  cursor: pointer;
  color: var(--color-fg-default);
  top: 6px;
  right: 6px;
  border-radius: 5px;
  background: var(--color-border-default);
  padding: 6px;
  font-size: 12px;
  transition: all 0.3s;
}
.wmde-markdown pre .copied .octicon-copy {
  display: block;
}
.wmde-markdown pre .copied .octicon-check {
  display: none;
}
.wmde-markdown pre:hover .copied {
  visibility: visible;
}
.wmde-markdown pre:hover .copied:hover {
  background: var(--color-prettylights-syntax-entity-tag);
  color: var(--color-canvas-default);
}
.wmde-markdown pre:hover .copied:active,
.wmde-markdown pre .copied.active {
  background: var(--color-copied-active-bg);
  color: var(--color-canvas-default);
}
.wmde-markdown pre .active .octicon-copy {
  display: none;
}
.wmde-markdown pre .active .octicon-check {
  display: block;
}
.wmde-markdown .markdown-alert {
  padding: 0.5rem 1em;
  color: inherit;
  margin-bottom: 16px;
  border-left: 0.25em solid var(--borderColor-default, var(--color-border-default));
}
.wmde-markdown .markdown-alert > :last-child {
  margin-bottom: 0 !important;
}
.wmde-markdown .markdown-alert .markdown-alert-title {
  display: flex;
  align-items: center;
  line-height: 1;
  font-weight: 500;
  font-size: 14px;
}
.wmde-markdown .markdown-alert .markdown-alert-title svg.octicon {
  margin-right: var(--base-size-8, 8px) !important;
}
.wmde-markdown .markdown-alert.markdown-alert-note {
  border-left-color: var(--borderColor-accent-emphasis, var(--color-accent-emphasis));
}
.wmde-markdown .markdown-alert.markdown-alert-note .markdown-alert-title {
  color: var(--fgColor-accent, var(--color-accent-fg));
}
.wmde-markdown .markdown-alert.markdown-alert-tip {
  border-left-color: var(--borderColor-success-emphasis, var(--color-success-emphasis));
}
.wmde-markdown .markdown-alert.markdown-alert-tip .markdown-alert-title {
  color: var(--fgColor-success, var(--color-success-fg));
}
.wmde-markdown .markdown-alert.markdown-alert-important {
  border-left-color: var(--borderColor-done-emphasis, var(--color-done-emphasis));
}
.wmde-markdown .markdown-alert.markdown-alert-important .markdown-alert-title {
  color: var(--fgColor-done, var(--color-done-fg));
}
.wmde-markdown .markdown-alert.markdown-alert-warning {
  border-left-color: var(--borderColor-attention-emphasis, var(--color-attention-emphasis));
}
.wmde-markdown .markdown-alert.markdown-alert-warning .markdown-alert-title {
  color: var(--fgColor-attention, var(--color-attention-fg));
}
.wmde-markdown .markdown-alert.markdown-alert-caution {
  border-left-color: var(--borderColor-danger-emphasis, var(--color-danger-emphasis));
}
.wmde-markdown .markdown-alert.markdown-alert-caution .markdown-alert-title {
  color: var(--fgColor-danger, var(--color-danger-fg));
}
.wmde-markdown .highlight-line {
  background-color: var(--color-neutral-muted);
}
.wmde-markdown .code-line.line-number::before {
  display: inline-block;
  width: 1rem;
  text-align: right;
  margin-right: 16px;
  color: var(--color-fg-subtle);
  content: attr(line);
  white-space: nowrap;
}
.wmde-markdown .token.comment,
.wmde-markdown .token.prolog,
.wmde-markdown .token.doctype,
.wmde-markdown .token.cdata {
  color: var(--color-prettylights-syntax-comment);
}
.wmde-markdown .token.namespace {
  opacity: 0.7;
}
.wmde-markdown .token.property,
.wmde-markdown .token.tag,
.wmde-markdown .token.selector,
.wmde-markdown .token.constant,
.wmde-markdown .token.symbol,
.wmde-markdown .token.deleted {
  color: var(--color-prettylights-syntax-entity-tag);
}
.wmde-markdown .token.maybe-class-name {
  color: var(--color-prettylights-syntax-variable);
}
.wmde-markdown .token.property-access,
.wmde-markdown .token.operator,
.wmde-markdown .token.boolean,
.wmde-markdown .token.number,
.wmde-markdown .token.selector .token.class,
.wmde-markdown .token.attr-name,
.wmde-markdown .token.string,
.wmde-markdown .token.char,
.wmde-markdown .token.builtin {
  color: var(--color-prettylights-syntax-constant);
}
.wmde-markdown .token.deleted {
  color: var(--color-prettylights-syntax-markup-deleted-text);
}
.wmde-markdown .code-line .token.deleted {
  background-color: var(--color-prettylights-syntax-markup-deleted-bg);
}
.wmde-markdown .token.inserted {
  color: var(--color-prettylights-syntax-markup-inserted-text);
}
.wmde-markdown .code-line .token.inserted {
  background-color: var(--color-prettylights-syntax-markup-inserted-bg);
}
.wmde-markdown .token.variable {
  color: var(--color-prettylights-syntax-constant);
}
.wmde-markdown .token.entity,
.wmde-markdown .token.url,
.wmde-markdown .language-css .token.string,
.wmde-markdown .style .token.string {
  color: var(--color-prettylights-syntax-string);
}
.wmde-markdown .token.color,
.wmde-markdown .token.atrule,
.wmde-markdown .token.attr-value,
.wmde-markdown .token.function,
.wmde-markdown .token.class-name {
  color: var(--color-prettylights-syntax-string);
}
.wmde-markdown .token.rule,
.wmde-markdown .token.regex,
.wmde-markdown .token.important,
.wmde-markdown .token.keyword {
  color: var(--color-prettylights-syntax-keyword);
}
.wmde-markdown .token.coord {
  color: var(--color-prettylights-syntax-meta-diff-range);
}
.wmde-markdown .token.important,
.wmde-markdown .token.bold {
  font-weight: bold;
}
.wmde-markdown .token.italic {
  font-style: italic;
}
.wmde-markdown .token.entity {
  cursor: help;
}
.w-md-editor-toolbar-child {
  position: absolute;
  border-radius: 3px;
  box-shadow: 0 0 0 1px var(--md-editor-box-shadow-color), 0 0 0 var(--md-editor-box-shadow-color), 0 1px 1px var(--md-editor-box-shadow-color);
  background-color: var(--md-editor-background-color);
  z-index: 1;
  display: none;
}
.w-md-editor-toolbar-child.active {
  display: block;
}
.w-md-editor-toolbar-child .w-md-editor-toolbar {
  border-bottom: 0;
  padding: 3px;
  border-radius: 3px;
}
.w-md-editor-toolbar-child .w-md-editor-toolbar ul > li {
  display: block;
}
.w-md-editor-toolbar-child .w-md-editor-toolbar ul > li button {
  width: -webkit-fill-available;
  height: initial;
  box-sizing: border-box;
  padding: 3px 4px 2px 4px;
  margin: 0;
}
.w-md-editor-toolbar {
  border-bottom: 1px solid var(--md-editor-box-shadow-color);
  background-color: var(--md-editor-background-color);
  padding: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 3px 3px 0 0;
  -webkit-user-select: none;
          user-select: none;
  flex-wrap: wrap;
}
.w-md-editor-toolbar.bottom {
  border-bottom: 0px;
  border-top: 1px solid var(--md-editor-box-shadow-color);
  border-radius: 0 0 3px 3px;
}
.w-md-editor-toolbar ul,
.w-md-editor-toolbar li {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: initial;
}
.w-md-editor-toolbar li {
  display: inline-block;
  font-size: 14px;
}
.w-md-editor-toolbar li + li {
  margin: 0;
}
.w-md-editor-toolbar li > button {
  border: none;
  height: 20px;
  line-height: 14px;
  background: none;
  padding: 4px;
  margin: 0 1px;
  border-radius: 2px;
  text-transform: none;
  font-weight: normal;
  overflow: visible;
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  color: var(--color-fg-default);
}
.w-md-editor-toolbar li > button:hover,
.w-md-editor-toolbar li > button:focus {
  background-color: var(--color-neutral-muted);
  color: var(--color-accent-fg);
}
.w-md-editor-toolbar li > button:active {
  background-color: var(--color-neutral-muted);
  color: var(--color-danger-fg);
}
.w-md-editor-toolbar li > button:disabled {
  color: var(--md-editor-box-shadow-color);
  cursor: not-allowed;
}
.w-md-editor-toolbar li > button:disabled:hover {
  background-color: transparent;
  color: var(--md-editor-box-shadow-color);
}
.w-md-editor-toolbar li.active > button {
  color: var(--color-accent-fg);
  background-color: var(--color-neutral-muted);
}
.w-md-editor-toolbar-divider {
  height: 14px;
  width: 1px;
  margin: -3px 3px 0 3px !important;
  vertical-align: middle;
  background-color: var(--md-editor-box-shadow-color);
}
.w-md-editor-area {
  overflow: auto;
  border-radius: 5px;
}
.w-md-editor-text {
  min-height: 100%;
  position: relative;
  text-align: left;
  white-space: pre-wrap;
  word-break: keep-all;
  overflow-wrap: break-word;
  box-sizing: border-box;
  padding: 10px;
  margin: 0;
  font-size: 14px !important;
  line-height: 18px !important;
  font-variant-ligatures: common-ligatures;
}
.w-md-editor-text-pre,
.w-md-editor-text-input,
.w-md-editor-text > .w-md-editor-text-pre {
  margin: 0;
  border: 0;
  background: none;
  box-sizing: inherit;
  display: inherit;
  font-family: inherit;
  font-family: var(--md-editor-font-family) !important;
  font-size: inherit;
  font-style: inherit;
  font-variant-ligatures: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  tab-size: inherit;
  text-indent: inherit;
  text-rendering: inherit;
  text-transform: inherit;
  white-space: inherit;
  overflow-wrap: inherit;
  word-break: inherit;
  word-break: normal;
  padding: 0;
}
.w-md-editor-text-pre {
  position: relative;
  margin: 0px !important;
  pointer-events: none;
  background-color: transparent !important;
}
.w-md-editor-text-pre > code {
  padding: 0 !important;
  font-family: var(--md-editor-font-family) !important;
  font-size: 14px !important;
  line-height: 18px !important;
}
.w-md-editor-text-input {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  resize: none;
  color: inherit;
  overflow: hidden;
  outline: 0;
  padding: inherit;
  -webkit-font-smoothing: antialiased;
  -webkit-text-fill-color: transparent;
}
.w-md-editor-text-input:empty {
  -webkit-text-fill-color: inherit !important;
}
.w-md-editor-text-pre,
.w-md-editor-text-input {
  word-wrap: pre;
  word-break: break-word;
  white-space: pre-wrap;
}
/**
 * Hack to apply on some CSS on IE10 and IE11
 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /**
    * IE doesn't support '-webkit-text-fill-color'
    * So we use 'color: transparent' to make the text transparent on IE
    * Unlike other browsers, it doesn't affect caret color in IE
    */
  .w-md-editor-text-input {
    color: transparent !important;
  }
  .w-md-editor-text-input::selection {
    background-color: #accef7 !important;
    color: transparent !important;
  }
}
.w-md-editor-text-pre .punctuation {
  color: var(--color-prettylights-syntax-comment, #8b949e) !important;
}
.w-md-editor-text-pre .token.url,
.w-md-editor-text-pre .token.content {
  color: var(--color-prettylights-syntax-constant, #0550ae) !important;
}
.w-md-editor-text-pre .token.title.important {
  color: var(--color-prettylights-syntax-markup-bold, #24292f);
}
.w-md-editor-text-pre .token.code-block .function {
  color: var(--color-prettylights-syntax-entity, #8250df);
}
.w-md-editor-text-pre .token.bold {
  font-weight: unset !important;
}
.w-md-editor-text-pre .token.title {
  line-height: unset !important;
  font-size: unset !important;
  font-weight: unset !important;
}
.w-md-editor-text-pre .token.code.keyword {
  color: var(--color-prettylights-syntax-constant, #0550ae) !important;
}
.w-md-editor-text-pre .token.strike,
.w-md-editor-text-pre .token.strike .content {
  color: var(--color-prettylights-syntax-markup-deleted-text, #82071e) !important;
}
.w-md-editor-bar {
  position: absolute;
  cursor: s-resize;
  right: 0;
  bottom: 0;
  margin-top: -11px;
  margin-right: 0;
  width: 14px;
  z-index: 3;
  height: 10px;
  border-radius: 0 0 3px 0;
  -webkit-user-select: none;
          user-select: none;
}
.w-md-editor-bar svg {
  display: block;
  margin: 0 auto;
}
.w-md-editor {
  text-align: left;
  border-radius: 3px;
  padding-bottom: 1px;
  position: relative;
  color: var(--color-fg-default);
  --md-editor-font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --md-editor-background-color: var(--color-canvas-default, #ffffff);
  --md-editor-box-shadow-color: var(--color-border-default, #d0d7de);
  box-shadow: 0 0 0 1px var(--md-editor-box-shadow-color), 0 0 0 var(--md-editor-box-shadow-color), 0 1px 1px var(--md-editor-box-shadow-color);
  background-color: var(--md-editor-background-color);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
}
.w-md-editor.w-md-editor-rtl {
  direction: rtl !important;
  text-align: right !important;
}
.w-md-editor.w-md-editor-rtl .w-md-editor-preview {
  right: unset !important;
  left: 0;
  text-align: right !important;
  box-shadow: inset -1px 0 0 0 var(--md-editor-box-shadow-color);
}
.w-md-editor.w-md-editor-rtl .w-md-editor-text {
  text-align: right !important;
}
.w-md-editor-toolbar {
  height: -webkit-fit-content;
  height: fit-content;
}
.w-md-editor-content {
  height: 100%;
  overflow: auto;
  position: relative;
  border-radius: 0 0 3px 0;
}
.w-md-editor .copied {
  display: none !important;
}
.w-md-editor-input {
  width: 50%;
  height: 100%;
}
.w-md-editor-text-pre > code {
  word-break: break-word !important;
  white-space: pre-wrap !important;
}
.w-md-editor-preview {
  width: 50%;
  box-sizing: border-box;
  box-shadow: inset 1px 0 0 0 var(--md-editor-box-shadow-color);
  position: absolute;
  padding: 10px 20px;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 0 0 5px 0;
  display: flex;
  flex-direction: column;
}
.w-md-editor-preview .anchor {
  display: none;
}
.w-md-editor-preview .contains-task-list li.task-list-item {
  list-style: none;
}
.w-md-editor-show-preview .w-md-editor-input {
  width: 0%;
  overflow: hidden;
  background-color: var(--md-editor-background-color);
}
.w-md-editor-show-preview .w-md-editor-preview {
  width: 100%;
  box-shadow: inset 0 0 0 0;
}
.w-md-editor-show-edit .w-md-editor-input {
  width: 100%;
}
.w-md-editor-show-edit .w-md-editor-preview {
  width: 0%;
  padding: 0;
}
.w-md-editor-fullscreen {
  overflow: hidden;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100% !important;
}
.w-md-editor-fullscreen .w-md-editor-content {
  height: 100%;
}
._tags_1qq7h_1 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 40px 0;
    animation: _slideIn_1qq7h_1 0.4s ease-out;
}

._tag_1qq7h_1 {
    padding: 10px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

._tag_1qq7h_1 i {
    font-size: 1rem;
    color: #741fa2;
    transition: color 0.2s;
}

._tag_1qq7h_1:hover {
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    border-color: #741fa2;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

._tag_1qq7h_1:hover i {
    color: white;
}

._tag_1qq7h_1._active_1qq7h_45 {
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    border-color: #741fa2;
    color: white;
}

._tag_1qq7h_1._active_1qq7h_45 i {
    color: white;
}

._count_1qq7h_55 {
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 4px;
}

._tag_1qq7h_1:hover ._count_1qq7h_55,
._tag_1qq7h_1._active_1qq7h_45 ._count_1qq7h_55 {
    background: rgba(255, 255, 255, 0.2);
}

._loading_1qq7h_68 {
    display: flex;
    justify-content: center;
    padding: 20px;
}

._spinner_1qq7h_74 {
    width: 30px;
    height: 30px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: _spin_1qq7h_74 1s linear infinite;
}

@keyframes _spin_1qq7h_74 {
    to { transform: rotate(360deg); }
}

._error_1qq7h_87, ._empty_1qq7h_87 {
    text-align: center;
    padding: 20px;
    color: var(--text-light);
}

._retryButton_1qq7h_93 {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

@keyframes _slideIn_1qq7h_1 {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}._tgBlock_1odnj_1 {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

._tgBlock_1odnj_1::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: _rotate_1odnj_1 20s linear infinite;
}

@keyframes _rotate_1odnj_1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

._tgInner_1odnj_26 {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

._tgIconWrapper_1odnj_36 {
    display: flex;
    align-items: center;
    gap: 20px;
}

._tgIcon_1odnj_36 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #24A1DE, #1a7da8);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

._tgIcon_1odnj_36 i {
    font-size: 3rem;
    color: white;
}

._tgText_1odnj_57 h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

._tgText_1odnj_57 p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

._tgButton_1odnj_69 {
    background: #24A1DE;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

._tgButton_1odnj_69:hover {
    background: #1a7da8;
    transform: translateY(-2px);
    box-shadow: 0 20px 30px -10px rgba(36, 161, 222, 0.3);
}

._tgButton_1odnj_69 i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    ._tgIcon_1odnj_36 {
        width: 46px;
        height: 46px;
    }
    ._tgBlock_1odnj_1 {
        padding: 30px;
    }

    ._tgText_1odnj_57 h3 {
        font-size: 1.5rem;
    }

    ._tgButton_1odnj_69 {
        width: 100%;
        justify-content: center;
    }
}._sectionTitle_1au82_1 {
    margin: 40px 0 20px;
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
}

._count_1au82_11 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #888;
    background: #f1f4f9;
    padding: 4px 12px;
    border-radius: 30px;
}

._grid_1au82_20 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

._loadingContainer_1au82_27 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: white;
    border-radius: 30px;
    padding: 40px;
}

._spinner_1au82_38 {
    width: 50px;
    height: 50px;
    border: 3px solid #eef2f6;
    border-top-color: #1a1a1a;
    border-radius: 50%;
    animation: _spin_1au82_38 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes _spin_1au82_38 {
    to { transform: rotate(360deg); }
}

._errorContainer_1au82_52 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: white;
    border-radius: 30px;
    padding: 40px;
    color: #ef4444;
}

._retryButton_1au82_64 {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

._retryButton_1au82_64:hover {
    background: #333;
}

._emptyState_1au82_80 {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 30px;
    color: #888;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    ._grid_1au82_20 {
        grid-template-columns: 1fr;
    }

    ._sectionTitle_1au82_1 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
}

._promoCardWrapper_1au82_101 {
    position: relative;
}

._favoriteCardButton_1au82_105 {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid #f0f0f0;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

._favoriteCardButton_1au82_105:hover {
    transform: scale(1.1);
    color: #741fa2;
    border-color: #741fa2;
}

._favoriteCardButton_1au82_105._isFavorite_1au82_130 {
    background: #741fa2;
    color: white;
    border-color: #741fa2;
}

._favoriteCardButton_1au82_105._isFavorite_1au82_130:hover {
    background: #9b4dc4;
}

._promoCardWrapper_1au82_101 {
    position: relative;
}

._likeButton_1au82_144 {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid #f0f0f0;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

._likeButton_1au82_144:hover {
    transform: scale(1.1);
    color: #ef4444;
    border-color: #fee2e2;
    background: #fee2e2;
}

._likeButton_1au82_144._liked_1au82_170 {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

._likeButton_1au82_144._liked_1au82_170:hover {
    background: #dc2626;
}

._loadingContainer_1au82_27 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

._spinner_1au82_38 {
    width: 50px;
    height: 50px;
    border: 3px solid #f0f0f0;
    border-top-color: #741fa2;
    border-radius: 50%;
    animation: _spin_1au82_38 0.8s linear infinite;
    margin-bottom: 20px;
}

@keyframes _spin_1au82_38 {
    to { transform: rotate(360deg); }
}

._errorContainer_1au82_52 {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
}

._retryButton_1au82_64 {
    background: #741fa2;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
}

._retryButton_1au82_64:hover {
    background: #9b4dc4;
    transform: translateY(-2px);
}

._sectionTitle_1au82_1 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    font-size: 1.8rem;
    color: #1a1a1a;
}

._count_1au82_11 {
    background: #e2e8f0;
    color: #475569;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
}

._grid_1au82_20 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

._emptyState_1au82_80 {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    color: #64748b;
}

._container_promo_1au82_262 {
    padding: 0 24px;
}

@media (max-width: 768px) {
    ._likeButton_1au82_144 {
        top: 24px;
        right: 29px;
    }
    ._container_promo_1au82_262 {
        padding: 10px;
    }
}
._page_pd0sr_1 {
    min-height: 100vh;
    background: #f8fafc;
    /*padding: 40px 0;*/
}

._container_pd0sr_7 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Заголовок */
._header_pd0sr_14 {
    text-align: center;
    margin-bottom: 50px;
}

._title_pd0sr_19 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

._subtitle_pd0sr_31 {
    font-size: 1.2rem;
    color: #64748b;
}

/* Фильтры */
._filters_pd0sr_37 {
    background: white;
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

._searchSection_pd0sr_46 {
    margin-bottom: 25px;
}

._searchWrapper_pd0sr_50 {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

._searchIcon_pd0sr_56 {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
}

._searchInput_pd0sr_65 {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: 2px solid #f0f0f0;
    border-radius: 60px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

._searchInput_pd0sr_65:focus {
    outline: none;
    border-color: #741fa2;
    background: white;
    box-shadow: 0 10px 20px -10px rgba(116, 31, 162, 0.2);
}

._clearSearch_pd0sr_82 {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #94a3b8;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

._clearSearch_pd0sr_82:hover {
    background: #f0f0f0;
    color: #741fa2;
}

._filterSection_pd0sr_106 {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

._filterGroup_pd0sr_113 {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
    padding: 10px 20px;
    border-radius: 40px;
    border: 1px solid #f0f0f0;
}

._filterLabel_pd0sr_123 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

._filterLabel_pd0sr_123 i {
    color: #741fa2;
}

._filterSelect_pd0sr_136 {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 180px;
}

._filterSelect_pd0sr_136:hover {
    border-color: #741fa2;
}

._filterSelect_pd0sr_136:focus {
    outline: none;
    border-color: #741fa2;
    box-shadow: 0 0 0 3px rgba(116, 31, 162, 0.1);
}

/* Информация о результатах */
._resultsInfo_pd0sr_159 {
    margin-bottom: 25px;
    padding: 15px 20px;
    background: white;
    border-radius: 16px;
    color: #64748b;
    font-size: 0.95rem;
    border: 1px solid #f0f0f0;
}

/* Сетка магазинов */
._shopsGrid_pd0sr_170 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

._shopCard_pd0sr_176 {
    background: white;
    border-radius: 24px;
    padding: 25px;
    display: flex;
    gap: 20px;
    text-decoration: none;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

._shopCard_pd0sr_176::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    transition: height 0.3s ease;
}

._shopCard_pd0sr_176:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(116, 31, 162, 0.15);
    border-color: #741fa2;
}

._shopCard_pd0sr_176:hover::before {
    height: 100%;
}

._shopLogoWrapper_pd0sr_210 {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

._shopLogo_pd0sr_210 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    background: white;
    padding: 8px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
}

._shopCard_pd0sr_176:hover ._shopLogo_pd0sr_210 {
    transform: scale(1.05);
}

._shopLogoFallback_pd0sr_231 {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    border: 1px solid #f0f0f0;
}

._shopInfo_pd0sr_245 {
    flex: 1;
}

._shopName_pd0sr_249 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

._shopCategories_pd0sr_257 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

._categoryTag_pd0sr_264 {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

._shopStats_pd0sr_276 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

._stat_pd0sr_284 {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #64748b;
    font-size: 0.85rem;
}

._stat_pd0sr_284 i {
    color: #741fa2;
    font-size: 0.9rem;
}

._hotBadge_pd0sr_297 {
    background: linear-gradient(135deg, #ff4d4d, #ff1a1a);
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

._shopAction_pd0sr_308 {
    margin-top: 10px;
}

._shopLink_pd0sr_312 {
    color: #741fa2;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.2s;
    display: inline-flex;
    align-items: center;
}

._shopCard_pd0sr_176:hover ._shopLink_pd0sr_312 {
    transform: translateX(5px);
}

/* Пустое состояние */
._emptyState_pd0sr_326 {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 40px;
    border: 1px solid #f0f0f0;
}

._emptyState_pd0sr_326 i {
    font-size: 5rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

._emptyState_pd0sr_326 h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

._emptyState_pd0sr_326 p {
    color: #64748b;
    margin-bottom: 30px;
}

._resetButton_pd0sr_351 {
    background: #741fa2;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

._resetButton_pd0sr_351:hover {
    background: #9b4dc4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(116, 31, 162, 0.4);
}

/* Загрузка */
._loadingContainer_pd0sr_370 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

._spinner_pd0sr_378 {
    width: 50px;
    height: 50px;
    border: 3px solid #f0f0f0;
    border-top-color: #741fa2;
    border-radius: 50%;
    animation: _spin_pd0sr_378 0.8s linear infinite;
    margin-bottom: 20px;
}

@keyframes _spin_pd0sr_378 {
    to { transform: rotate(360deg); }
}

/* Адаптивность */
@media (max-width: 768px) {
    ._title_pd0sr_19 {
        font-size: 2.2rem;
    }

    ._subtitle_pd0sr_31 {
        font-size: 1rem;
    }

    ._filters_pd0sr_37 {
        padding: 20px;
    }

    ._filterSection_pd0sr_106 {
        flex-direction: column;
    }

    ._filterGroup_pd0sr_113 {
        width: 100%;
        justify-content: space-between;
    }

    ._filterSelect_pd0sr_136 {
        min-width: 140px;
    }

    ._shopsGrid_pd0sr_170 {
        grid-template-columns: 1fr;
    }

    ._shopCard_pd0sr_176 {
        padding: 20px;
    }

    ._shopLogoWrapper_pd0sr_210 {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    ._shopCard_pd0sr_176 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    ._shopStats_pd0sr_276 {
        justify-content: center;
    }

    ._shopCategories_pd0sr_257 {
        justify-content: center;
    }
}

._selectedShopInfo_pd0sr_449 {
    background: white;
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #741fa2;
    box-shadow: 0 15px 30px -10px rgba(116, 31, 162, 0.2);
}

._selectedShopHeader_pd0sr_458 {
    display: flex;
    align-items: center;
    gap: 30px;
}

._selectedShopLogo_pd0sr_464 {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    border: 1px solid #f0f0f0;
}

._selectedShopLogo_pd0sr_464 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
    padding: 10px;
}

._selectedShopLogoFallback_pd0sr_481 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
}

._selectedShopDetails_pd0sr_493 {
    flex: 1;
}

._selectedShopDetails_pd0sr_493 h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

._resetShopButton_pd0sr_504 {
    background: #741fa2;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

._resetShopButton_pd0sr_504:hover {
    background: #9b4dc4;
    transform: translateX(-5px);
}

._resetLink_pd0sr_521 {
    background: none;
    border: none;
    color: #741fa2;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    margin-left: 10px;
}

._resetLink_pd0sr_521:hover {
    color: #9b4dc4;
}

._shopCard_pd0sr_176 {
    cursor: pointer;
    transition: all 0.3s;
}

._shopCard_pd0sr_176._selected_pd0sr_449 {
    border: 2px solid #741fa2;
    box-shadow: 0 15px 30px -10px rgba(116, 31, 162, 0.2);
}

._shopCard_pd0sr_176:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(116, 31, 162, 0.15);
}

._selectedShopCategories_pd0sr_551 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

._selectedShopCategories_pd0sr_551 ._categoryTag_pd0sr_264 {
    background: rgba(116, 31, 162, 0.1);
    color: #741fa2;
    font-size: 0.85rem;
}

._favoriteCardButton_pd0sr_564 {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid #f0f0f0;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

._favoriteCardButton_pd0sr_564:hover {
    transform: scale(1.1);
    color: #741fa2;
    border-color: #741fa2;
}

._favoriteCardButton_pd0sr_564._isFavorite_pd0sr_589 {
    background: #741fa2;
    color: white;
    border-color: #741fa2;
}

._favoriteCardButton_pd0sr_564._isFavorite_pd0sr_589:hover {
    background: #9b4dc4;
}

._shopCard_pd0sr_176 {
    position: relative;
}

._shopDetailPage_pd0sr_603 {
    margin-top: 30px;
    animation: _fadeIn_pd0sr_1 0.5s ease;
}

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

._shopDetailHeader_pd0sr_619 {
    background: white;
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 40px;
    border: 2px solid #741fa2;
    box-shadow: 0 20px 40px -15px rgba(116, 31, 162, 0.25);
    position: relative;
    overflow: hidden;
}

._shopDetailHeader_pd0sr_619::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(116, 31, 162, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

._shopDetailInfo_pd0sr_642 {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

._shopDetailLogo_pd0sr_651 {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    border: 3px solid white;
    box-shadow: 0 15px 30px -10px rgba(116, 31, 162, 0.3);
    flex-shrink: 0;
}

._shopDetailLogo_pd0sr_651 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
    padding: 15px;
}

._shopDetailLogoFallback_pd0sr_670 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    color: white;
    font-size: 3rem;
    font-weight: 600;
}

._shopDetailTitle_pd0sr_682 {
    flex: 1;
    min-width: 250px;
}

._shopDetailTitle_pd0sr_682 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

._shopDetailStats_pd0sr_699 {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    flex-wrap: wrap;
}

._shopDetailStats_pd0sr_699 span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8fafc;
    border-radius: 40px;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #f0f0f0;
}

._shopDetailStats_pd0sr_699 span i {
    color: #741fa2;
}

._shopDetailCategories_pd0sr_723 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

._backToShopsButton_pd0sr_730 {
    background: #f8fafc;
    color: #1a1a1a;
    border: 1px solid #e2e8f0;
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

._backToShopsButton_pd0sr_730:hover {
    background: #741fa2;
    color: white;
    border-color: #741fa2;
    transform: translateX(-5px);
}

._favoriteDetailButton_pd0sr_753 {
    background: #f8fafc;
    color: #1a1a1a;
    border: 1px solid #e2e8f0;
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

._favoriteDetailButton_pd0sr_753:hover {
    background: #741fa2;
    color: white;
    border-color: #741fa2;
}

._favoriteDetailButton_pd0sr_753._isFavorite_pd0sr_589 {
    background: #741fa2;
    color: white;
    border-color: #741fa2;
}

._favoriteDetailButton_pd0sr_753._isFavorite_pd0sr_589:hover {
    background: #9b4dc4;
}

/* Секция с акциями магазина */
._shopOffersSection_pd0sr_786 {
    margin-top: 40px;
}

._shopOffersTitle_pd0sr_790 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

._offersCount_pd0sr_800 {
    background: #e2e8f0;
    color: #475569;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
}

._emptyOffers_pd0sr_809 {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
}

._emptyOffers_pd0sr_809 i {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

._emptyOffers_pd0sr_809 p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Сетка предложений */
._offersGrid_pd0sr_829 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

._offerCard_pd0sr_835 {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

._offerCard_pd0sr_835:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(116, 31, 162, 0.15);
    border-color: #741fa2;
}

._offerCardHeader_pd0sr_853 {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

._offerHotBadge_pd0sr_862 {
    background: linear-gradient(135deg, #ff4d4d, #ff1a1a);
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

._offerDate_pd0sr_873 {
    color: #64748b;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

._offerCardBody_pd0sr_881 {
    padding: 20px;
    flex: 1;
}

._offerTitle_pd0sr_886 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

._offerDescription_pd0sr_898 {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

._offerPromocode_pd0sr_909 {
    background: #f8fafc;
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
    border: 1px dashed #741fa2;
}

._offerPromocode_pd0sr_909 code {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 600;
    color: #741fa2;
    letter-spacing: 1px;
}

._offerCardFooter_pd0sr_925 {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
}

._offerViews_pd0sr_934 {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #64748b;
    font-size: 0.85rem;
}

._offerLink_pd0sr_942 {
    color: #741fa2;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.2s;
}

._offerCard_pd0sr_835:hover ._offerLink_pd0sr_942 {
    transform: translateX(5px);
}

/* Адаптивность */
@media (max-width: 1024px) {
    ._shopDetailInfo_pd0sr_642 {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    ._shopDetailLogo_pd0sr_651 {
        width: 100px;
        height: 100px;
    }

    ._shopDetailTitle_pd0sr_682 h2 {
        font-size: 2rem;
    }

    ._backToShopsButton_pd0sr_730,
    ._favoriteDetailButton_pd0sr_753 {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    ._shopDetailTitle_pd0sr_682 h2 {
        font-size: 1.8rem;
    }

    ._shopOffersTitle_pd0sr_790 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    ._offersGrid_pd0sr_829 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    ._shopDetailStats_pd0sr_699 {
        flex-direction: column;
        gap: 10px;
    }

    ._shopDetailStats_pd0sr_699 span {
        width: 100%;
    }
}._page_1cfb8_1 {
    min-height: 100vh;
    background: #f8fafc;
    /*padding: 40px 0;*/
}

._container_1cfb8_7 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Заголовок */
._header_1cfb8_14 {
    text-align: center;
    margin-bottom: 50px;
}

._title_1cfb8_19 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

._subtitle_1cfb8_31 {
    font-size: 1.2rem;
    color: #64748b;
}

/* Основной контент */
._content_1cfb8_37 {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

/* Боковая панель */
._sidebar_1cfb8_44 {
    background: white;
    border-radius: 30px;
    padding: 25px;
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 100px;
    height: fit-content;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

._sidebarTitle_1cfb8_55 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

._categoriesList_1cfb8_64 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

._categoriesList_1cfb8_64::-webkit-scrollbar {
    width: 4px;
}

._categoriesList_1cfb8_64::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

._categoriesList_1cfb8_64::-webkit-scrollbar-thumb {
    background: #741fa2;
    border-radius: 4px;
}

._categoryButton_1cfb8_88 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8fafc;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    border-left-width: 4px;
    text-decoration: none;
}

._categoryButton_1cfb8_88:hover {
    background: white;
    border-color: #741fa2;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(116, 31, 162, 0.1);
}

._categoryButton_1cfb8_88._active_1cfb8_110 {
    background: white;
    border-color: #741fa2;
    box-shadow: 0 5px 15px rgba(116, 31, 162, 0.15);
}

._categoryIcon_1cfb8_116 {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    font-size: 1.2rem;
}

._categoryName_1cfb8_127 {
    flex: 1;
    text-align: left;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.95rem;
}

._categoryCount_1cfb8_135 {
    background: #e2e8f0;
    color: #475569;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

._sidebarStats_1cfb8_144 {
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

._statItem_1cfb8_152 {
    text-align: center;
}

._statValue_1cfb8_156 {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #741fa2;
    line-height: 1.2;
}

._statLabel_1cfb8_164 {
    font-size: 0.8rem;
    color: #64748b;
}

/* Основной контент */
._main_1cfb8_170 {
    min-width: 0;
}

/* Информация о категории */
._categoryInfo_1cfb8_175 {
    margin-bottom: 40px;
}

._categoryHeader_1cfb8_179 {
    background: white;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

._categoryIconLarge_1cfb8_190 {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 30px -10px rgba(116, 31, 162, 0.3);
}

._categoryDetails_1cfb8_202 {
    flex: 1;
}

._categoryNameLarge_1cfb8_206 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

._categoryDescription_1cfb8_213 {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* Секция магазинов */
._shopsSection_1cfb8_220 {
    margin-bottom: 50px;
}

._shopsSectionTitle_1cfb8_224 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

._shopsCount_1cfb8_234 {
    background: #e2e8f0;
    color: #475569;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

._shopsGrid_1cfb8_243 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

._shopCard_1cfb8_249 {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

._shopCard_1cfb8_249::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    opacity: 0;
    transition: opacity 0.3s;
}

._shopCard_1cfb8_249:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 30px -10px rgba(116, 31, 162, 0.15);
    border-color: #741fa2;
}

._shopCard_1cfb8_249:hover::before {
    opacity: 1;
}

._shopLogoWrapper_1cfb8_285 {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

._shopLogo_1cfb8_285 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    background: white;
    padding: 6px;
    border: 1px solid #f0f0f0;
}

._shopLogoFallback_1cfb8_301 {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

._shopInfo_1cfb8_314 {
    flex: 1;
}

._shopName_1cfb8_318 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

._shopStats_1cfb8_325 {
    display: flex;
    align-items: center;
    gap: 10px;
}

._shopStat_1cfb8_325 {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #64748b;
    font-size: 0.8rem;
}

._shopStat_1cfb8_325 i {
    color: #741fa2;
    font-size: 0.8rem;
}

._shopArrow_1cfb8_344 {
    color: #cbd5e1;
    transition: transform 0.3s;
}

._shopCard_1cfb8_249:hover ._shopArrow_1cfb8_344 {
    color: #741fa2;
    transform: translateX(5px);
}

/* Секция предложений */
._offersSection_1cfb8_355 {
    margin-top: 40px;
}

._offersSectionTitle_1cfb8_359 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
}

._offersGrid_1cfb8_366 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

._offerCard_1cfb8_372 {
    background: white;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

._offerCard_1cfb8_372:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(116, 31, 162, 0.15);
    border-color: #741fa2;
}

._offerHeader_1cfb8_386 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

._offerShop_1cfb8_392 {
    display: flex;
    align-items: center;
    gap: 10px;
}

._offerShopLogo_1cfb8_398 {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 8px;
}

._offerShopIcon_1cfb8_405 {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
}

._offerShopName_1cfb8_418 {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.95rem;
}

._offerBody_1cfb8_424 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

._offerText_1cfb8_430 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

._offerMeta_1cfb8_437 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._offerViews_1cfb8_443 {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #64748b;
    font-size: 0.85rem;
}

._offerViews_1cfb8_443 i {
    color: #741fa2;
}

._offerLink_1cfb8_455 {
    color: #741fa2;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: transform 0.2s;
    display: inline-flex;
    align-items: center;
}

._offerLink_1cfb8_455:hover {
    transform: translateX(5px);
}

/* Пустые состояния */
._emptyShops_1cfb8_470 {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
}

._emptyShops_1cfb8_470 i {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

._emptyShops_1cfb8_470 p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Загрузка */
._loadingContainer_1cfb8_490 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

._spinner_1cfb8_498 {
    width: 50px;
    height: 50px;
    border: 3px solid #f0f0f0;
    border-top-color: #741fa2;
    border-radius: 50%;
    animation: _spin_1cfb8_498 0.8s linear infinite;
    margin-bottom: 20px;
}

@keyframes _spin_1cfb8_498 {
    to { transform: rotate(360deg); }
}

/* Адаптивность */
@media (max-width: 1024px) {
    ._content_1cfb8_37 {
        grid-template-columns: 250px 1fr;
    }

    ._offersGrid_1cfb8_366 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    ._title_1cfb8_19 {
        font-size: 2.2rem;
    }

    ._subtitle_1cfb8_31 {
        font-size: 1rem;
    }

    ._content_1cfb8_37 {
        grid-template-columns: 1fr;
    }

    ._sidebar_1cfb8_44 {
        position: static;
        margin-bottom: 30px;
    }

    ._categoryHeader_1cfb8_179 {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    ._categoryNameLarge_1cfb8_206 {
        font-size: 1.5rem;
    }

    ._shopsGrid_1cfb8_243 {
        grid-template-columns: 1fr;
    }
}


._categoryStats_1cfb8_557 {
    margin-top: 10px;
}

._categoryTotalOffers_1cfb8_561 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: white;
    backdrop-filter: blur(5px);
}

._categoryTotalOffers_1cfb8_561 i {
    font-size: 0.9rem;
}

._offerCard_1cfb8_372 {
    cursor: pointer;
    transition: all 0.3s ease;
}

._offerCard_1cfb8_372:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(116, 31, 162, 0.2);
}

._offerHeader_1cfb8_386 {
    margin-bottom: 12px;
}

._offerShop_1cfb8_392 {
    display: flex;
    align-items: center;
    gap: 10px;
}

._offerShopLogo_1cfb8_398 {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 8px;
}

._offerShopIcon_1cfb8_405 {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
}

._offerShopName_1cfb8_418 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
}

._offerBody_1cfb8_424 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

._offerText_1cfb8_430 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

._offerMeta_1cfb8_437 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._offerViews_1cfb8_443 {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #64748b;
    font-size: 0.85rem;
}

._offerViews_1cfb8_443 i {
    color: #741fa2;
}

._offerLink_1cfb8_455 {
    color: #741fa2;
    font-weight: 500;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

._offerLink_1cfb8_455:hover {
    transform: translateX(5px);
}._page_mtprd_1 {
    min-height: 100vh;
    background: #f8fafc;
    /*padding: 40px 0;*/
}

._container_mtprd_7 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Заголовок */
._header_mtprd_14 {
    text-align: center;
    margin-bottom: 50px;
}

._title_mtprd_19 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

._subtitle_mtprd_31 {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Фильтры */
._filters_mtprd_39 {
    margin-bottom: 40px;
}

._searchWrapper_mtprd_43 {
    position: relative;
    max-width: 600px;
    margin: 0 auto 30px;
}

._searchIcon_mtprd_49 {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
}

._searchInput_mtprd_58 {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: 2px solid #f0f0f0;
    border-radius: 60px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

._searchInput_mtprd_58:focus {
    outline: none;
    border-color: #741fa2;
    box-shadow: 0 10px 20px -10px rgba(116, 31, 162, 0.2);
}

._clearSearch_mtprd_74 {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #94a3b8;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

._clearSearch_mtprd_74:hover {
    background: #f0f0f0;
    color: #741fa2;
}

._tags_mtprd_98 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

._tag_mtprd_98 {
    background: white;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

._tag_mtprd_98:hover {
    background: #741fa2;
    color: white;
    border-color: #741fa2;
    transform: translateY(-2px);
}

._activeTag_mtprd_124 {
    background: #741fa2;
    color: white;
    border-color: #741fa2;
}

/* Результаты поиска */
._searchResults_mtprd_131 {
    margin-bottom: 25px;
    padding: 15px 20px;
    background: white;
    border-radius: 16px;
    color: #64748b;
    font-size: 0.95rem;
    border: 1px solid #f0f0f0;
    text-align: center;
}

/* Секции */
._sectionTitle_mtprd_143 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

._featuredSection_mtprd_151 {
    margin-bottom: 60px;
}

._featuredGrid_mtprd_155 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

._featuredCard_mtprd_161 {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

._featuredCard_mtprd_161:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -15px rgba(116, 31, 162, 0.2);
    border-color: #741fa2;
}

._featuredImage_mtprd_177 {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
}

._featuredImage_mtprd_177 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

._featuredCard_mtprd_161:hover ._featuredImage_mtprd_177 img {
    transform: scale(1.05);
}

._imageFallback_mtprd_195 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    font-weight: 600;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
}

._featuredBadge_mtprd_207 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

._featuredContent_mtprd_221 {
    padding: 25px;
}

._featuredTitle_mtprd_225 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

._featuredDescription_mtprd_237 {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

._featuredMeta_mtprd_248 {
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 0.85rem;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

/* Сетка статей */
._postsSection_mtprd_258 {
    margin-bottom: 60px;
}

._postsGrid_mtprd_262 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

._postCard_mtprd_268 {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

._postCard_mtprd_268:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(116, 31, 162, 0.15);
    border-color: #741fa2;
}

._postImage_mtprd_285 {
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
}

._postImage_mtprd_285 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

._postCard_mtprd_268:hover ._postImage_mtprd_285 img {
    transform: scale(1.05);
}

._imageFallbackSmall_mtprd_302 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
}

._postContent_mtprd_314 {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

._postTitle_mtprd_321 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

._postDescription_mtprd_333 {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

._postTags_mtprd_345 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

._postTag_mtprd_345 {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
}

._postMeta_mtprd_361 {
    display: flex;
    gap: 15px;
    color: #94a3b8;
    font-size: 0.8rem;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

._postMeta_mtprd_361 i {
    margin-right: 4px;
}

/* Подписка */
._subscribeSection_mtprd_375 {
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    border-radius: 40px;
    padding: 60px;
    margin-top: 60px;
}

._subscribeContent_mtprd_382 {
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

._subscribeTitle_mtprd_389 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

._subscribeDescription_mtprd_395 {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

._subscribeForm_mtprd_401 {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

._subscribeInput_mtprd_407 {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 60px;
    font-size: 1rem;
    outline: none;
}

._subscribeInput_mtprd_407:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

._subscribeButton_mtprd_420 {
    background: white;
    color: #741fa2;
    border: none;
    padding: 18px 40px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

._subscribeButton_mtprd_420:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
}

._subscribeNote_mtprd_437 {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Пустое состояние */
._emptyState_mtprd_443 {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 40px;
    border: 1px solid #f0f0f0;
}

._emptyState_mtprd_443 i {
    font-size: 5rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

._emptyState_mtprd_443 h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

._emptyState_mtprd_443 p {
    color: #64748b;
    margin-bottom: 30px;
}

._resetButton_mtprd_468 {
    background: #741fa2;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

._resetButton_mtprd_468:hover {
    background: #9b4dc4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(116, 31, 162, 0.4);
}

/* Загрузка */
._loadingContainer_mtprd_487 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

._spinner_mtprd_495 {
    width: 50px;
    height: 50px;
    border: 3px solid #f0f0f0;
    border-top-color: #741fa2;
    border-radius: 50%;
    animation: _spin_mtprd_495 0.8s linear infinite;
    margin-bottom: 20px;
}

@keyframes _spin_mtprd_495 {
    to { transform: rotate(360deg); }
}

/* Адаптивность */
@media (max-width: 1024px) {
    ._featuredGrid_mtprd_155 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    ._title_mtprd_19 {
        font-size: 2.2rem;
    }

    ._subtitle_mtprd_31 {
        font-size: 1rem;
    }

    ._featuredGrid_mtprd_155 {
        grid-template-columns: 1fr;
    }

    ._postsGrid_mtprd_262 {
        grid-template-columns: 1fr;
    }

    ._subscribeSection_mtprd_375 {
        padding: 40px 20px;
    }

    ._subscribeForm_mtprd_401 {
        flex-direction: column;
    }

    ._subscribeButton_mtprd_420 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    ._tags_mtprd_98 {
        gap: 8px;
    }

    ._tag_mtprd_98 {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    ._postMeta_mtprd_361 {
        flex-wrap: wrap;
    }
}._page_w2a7p_1 {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    /*padding: 40px 0;*/
    position: relative;
    overflow: hidden;
}

._container_w2a7p_9 {
    max-width: 1440px;
    margin: 40px auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Весенний фон */
._springBackground_w2a7p_18 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

._flower1_w2a7p_28, ._flower2_w2a7p_28, ._flower3_w2a7p_28 {
    position: absolute;
    font-size: 5rem;
    opacity: 0.1;
    animation: _float_w2a7p_1 20s ease-in-out infinite;
}

._flower1_w2a7p_28 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

._flower2_w2a7p_28 {
    bottom: 15%;
    right: 8%;
    animation-delay: -5s;
}

._flower3_w2a7p_28 {
    top: 40%;
    right: 15%;
    animation-delay: -10s;
}

@keyframes _float_w2a7p_1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Заголовок */
._header_w2a7p_63 {
    text-align: center;
    margin-bottom: 50px;
}

._springBadge_w2a7p_68 {
    display: inline-block;
    background: linear-gradient(135deg, #FF69B4, #FFA07A);
    color: white;
    padding: 8px 25px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px -10px #FF69B4;
    animation: _pulse_w2a7p_1 2s infinite;
}

@keyframes _pulse_w2a7p_1 {
    0% {
        box-shadow: 0 10px 20px -10px #FF69B4;
    }
    50% {
        box-shadow: 0 15px 30px -5px #FF69B4;
    }
    100% {
        box-shadow: 0 10px 20px -10px #FF69B4;
    }
}

._title_w2a7p_95 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

._titleAccent_w2a7p_104 {
    background: linear-gradient(135deg, #FF69B4, #FFA07A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

._subtitle_w2a7p_111 {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Статистика */
._statsGrid_w2a7p_119 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

._statCard_w2a7p_126 {
    background: white;
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 105, 180, 0.1);
    box-shadow: 0 15px 30px -10px rgba(255, 105, 180, 0.15);
    transition: transform 0.3s;
}

._statCard_w2a7p_126:hover {
    transform: translateY(-5px);
}

._statValue_w2a7p_140 {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #FF69B4;
    line-height: 1;
    margin-bottom: 8px;
}

._statLabel_w2a7p_149 {
    color: #64748b;
    font-size: 0.95rem;
}

/* Фильтры */
._filters_w2a7p_155 {
    margin-bottom: 40px;
}

._filterGroup_w2a7p_159 {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

._filterSelect_w2a7p_166 {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 14px 25px;
    border-radius: 40px;
    font-size: 0.95rem;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 220px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

._filterSelect_w2a7p_166:hover {
    border-color: #FF69B4;
    box-shadow: 0 10px 20px -10px #FF69B4;
}

._filterSelect_w2a7p_166:focus {
    outline: none;
    border-color: #FF69B4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2);
}

/* Сетка предложений */
._offersGrid_w2a7p_191 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

._offerCard_w2a7p_198 {
    background: white;
    border-radius: 30px;
    padding: 25px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

._offerCard_w2a7p_198::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF69B4, #FFA07A);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

._offerCard_w2a7p_198:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -15px rgba(255, 105, 180, 0.25);
    border-color: transparent;
}

._offerCard_w2a7p_198:hover::before {
    transform: translateX(0);
}

._hotBadge_w2a7p_230 {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #FF69B4, #FFA07A);
    color: white;
    padding: 8px 40px;
    font-weight: 600;
    font-size: 0.8rem;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.3);
}

._offerHeader_w2a7p_246 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

._shopInfo_w2a7p_252 {
    display: flex;
    align-items: center;
    gap: 12px;
}

._shopLogo_w2a7p_258 {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 16px;
    background: white;
    padding: 6px;
    border: 1px solid #f0f0f0;
}

._shopLogoFallback_w2a7p_268 {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FF69B4, #FFA07A);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

._shopName_w2a7p_281 {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
}

._offerBody_w2a7p_287 {
    margin-bottom: 20px;
}

._offerTitle_w2a7p_291 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

._offerDescription_w2a7p_299 {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

._offerMeta_w2a7p_306 {
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

._offerExpiry_w2a7p_314 i, ._offerViews_w2a7p_314 i {
    margin-right: 5px;
    color: #FF69B4;
}

._promoCode_w2a7p_319 {
    background: linear-gradient(135deg, #fff5f9, #fff0f5);
    padding: 15px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px dashed #FF69B4;
}

._promoText_w2a7p_329 {
    font-family: 'SF Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF69B4;
    letter-spacing: 1px;
}

._promoCopy_w2a7p_337 {
    background: white;
    border: 1px solid #FF69B4;
    color: #FF69B4;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

._promoCopy_w2a7p_337:hover {
    background: #FF69B4;
    color: white;
    transform: scale(1.05);
}

._offerButton_w2a7p_355 {
    display: block;
    background: linear-gradient(135deg, #FF69B4, #FFA07A);
    color: white;
    text-decoration: none;
    padding: 16px;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

._offerButton_w2a7p_355:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -10px #FF69B4;
}

._offerFooter_w2a7p_372 {
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 0.75rem;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

/* Пустое состояние */
._emptyState_w2a7p_382 {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 40px;
    border: 1px solid #f0f0f0;
}

._emptyState_w2a7p_382 i {
    font-size: 5rem;
    color: #FF69B4;
    margin-bottom: 20px;
    opacity: 0.5;
}

._emptyState_w2a7p_382 h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

._emptyState_w2a7p_382 p {
    color: #64748b;
}

/* Призыв к действию */
._ctaSection_w2a7p_408 {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

._ctaSection_w2a7p_408::before {
    content: '🌸';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    opacity: 0.05;
    transform: rotate(15deg);
}

._ctaTitle_w2a7p_428 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

._ctaDescription_w2a7p_434 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

._ctaButtons_w2a7p_443 {
    display: flex;
    gap: 20px;
    justify-content: center;
}

._ctaButton_w2a7p_443 {
    background: linear-gradient(135deg, #FF69B4, #FFA07A);
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
}

._ctaButton_w2a7p_443:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px #FF69B4;
}

._ctaButtonSecondary_w2a7p_464 {
    background: transparent;
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 40px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

._ctaButtonSecondary_w2a7p_464:hover {
    background: white;
    color: #1a1a1a;
    border-color: white;
}

/* Загрузка */
._loadingContainer_w2a7p_482 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

._spinner_w2a7p_490 {
    width: 50px;
    height: 50px;
    border: 3px solid #f0f0f0;
    border-top-color: #FF69B4;
    border-radius: 50%;
    animation: _spin_w2a7p_490 0.8s linear infinite;
    margin-bottom: 20px;
}

@keyframes _spin_w2a7p_490 {
    to { transform: rotate(360deg); }
}

/* Адаптивность */
@media (max-width: 1024px) {
    ._title_w2a7p_95 {
        font-size: 2.8rem;
    }

    ._statsGrid_w2a7p_119 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    ._title_w2a7p_95 {
        font-size: 2.2rem;
    }

    ._subtitle_w2a7p_111 {
        font-size: 1.1rem;
    }

    ._statsGrid_w2a7p_119 {
        grid-template-columns: 1fr;
    }

    ._filterGroup_w2a7p_159 {
        flex-direction: column;
        align-items: stretch;
    }

    ._filterSelect_w2a7p_166 {
        width: 100%;
    }

    ._offersGrid_w2a7p_191 {
        grid-template-columns: 1fr;
    }

    ._ctaSection_w2a7p_408 {
        padding: 40px 20px;
    }

    ._ctaButtons_w2a7p_443 {
        flex-direction: column;
    }

    ._ctaButton_w2a7p_443, ._ctaButtonSecondary_w2a7p_464 {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    ._promoCode_w2a7p_319 {
        flex-direction: column;
        gap: 10px;
    }

    ._promoCopy_w2a7p_337 {
        width: 100%;
    }
}._page_16xg7_1 {
    min-height: 100vh;
    background: #f8fafc;
}

._container_16xg7_6 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero секция */
._hero_16xg7_13 {
    position: relative;
    height: 530px;
    overflow: hidden;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
}

._heroImage_16xg7_21 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

._heroFallback_16xg7_27 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10rem;
    font-weight: 600;
}

._heroOverlay_16xg7_39 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

._heroContent_16xg7_51 {
    color: white;
    max-width: 800px;
}

._backLink_16xg7_56 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: all 0.3s;
}

._backLink_16xg7_56:hover {
    color: white;
    transform: translateX(-5px);
}

._heroTitle_16xg7_72 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

._heroMeta_16xg7_79 {
    display: flex;
    gap: 25px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

._heroMeta_16xg7_79 i {
    margin-right: 6px;
}

/* Основной контент */
._content_16xg7_91 {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin-bottom: 60px;
}

/* Статья */
._article_16xg7_99 {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

._tags_16xg7_107 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

._tag_16xg7_107 {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

._tag_16xg7_107:hover {
    background: #741fa2;
    color: white;
    transform: translateY(-2px);
}

._description_16xg7_131 {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

._body_16xg7_140 {
    line-height: 1.8;
    color: #334155;
    margin-bottom: 40px;
}

._h1_16xg7_146 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 40px 0 20px;
}

._h2_16xg7_153 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 35px 0 15px;
}

._h3_16xg7_160 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 30px 0 15px;
}

._p_16xg7_1 {
    margin-bottom: 20px;
}

._li_16xg7_171 {
    margin-left: 25px;
    margin-bottom: 8px;
    color: #475569;
}

/* Блок действий */
._actions_16xg7_178 {
    display: flex;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

._likeButton_16xg7_185, ._shareButton_16xg7_185 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

._likeButton_16xg7_185 {
    background: #fee2e2;
    border: none;
    color: #ef4444;
}

._likeButton_16xg7_185:hover {
    background: #fecaca;
    transform: translateY(-2px);
}

._likeButton_16xg7_185._liked_16xg7_208 {
    background: #ef4444;
    color: white;
}

._shareButton_16xg7_185 {
    background: #f1f5f9;
    border: none;
    color: #475569;
}

._shareButton_16xg7_185:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

/* Сайдбар */
._sidebar_16xg7_225 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

._sidebarTitle_16xg7_231 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

._authorCard_16xg7_240, ._statsCard_16xg7_240, ._tocCard_16xg7_240 {
    background: white;
    border-radius: 24px;
    padding: 25px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

._authorInfo_16xg7_248 {
    display: flex;
    align-items: center;
    gap: 15px;
}

._authorAvatar_16xg7_254 {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

._authorName_16xg7_267 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

._authorRole_16xg7_274 {
    font-size: 0.9rem;
    color: #64748b;
}

._statsList_16xg7_279 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

._statItem_16xg7_285 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: 0.95rem;
}

._statItem_16xg7_285 i {
    width: 20px;
    color: #741fa2;
}

._tocList_16xg7_298 {
    list-style: none;
    padding: 0;
}

._tocItem_16xg7_303 {
    margin-bottom: 10px;
}

._tocLink_16xg7_307 {
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
    display: inline-block;
}

._tocLink_16xg7_307:hover {
    color: #741fa2;
    transform: translateX(5px);
}

/* Похожие статьи */
._relatedSection_16xg7_321 {
    margin-bottom: 60px;
}

._relatedTitle_16xg7_325 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
}

._relatedGrid_16xg7_332 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

._relatedCard_16xg7_338 {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

._relatedCard_16xg7_338:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(116, 31, 162, 0.15);
    border-color: #741fa2;
}

._relatedImage_16xg7_353 {
    height: 150px;
    overflow: hidden;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
}

._relatedImage_16xg7_353 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

._relatedCard_16xg7_338:hover ._relatedImage_16xg7_353 img {
    transform: scale(1.05);
}

._relatedImageFallback_16xg7_370 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 600;
}

._relatedContent_16xg7_381 {
    padding: 20px;
}

._relatedCardTitle_16xg7_385 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

._relatedDescription_16xg7_397 {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

._relatedMeta_16xg7_408 {
    display: flex;
    gap: 15px;
    color: #94a3b8;
    font-size: 0.8rem;
}

._relatedMeta_16xg7_408 i {
    margin-right: 4px;
}

/* Комментарии */
._commentsSection_16xg7_420 {
    margin-bottom: 60px;
}

._commentsTitle_16xg7_424 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
}

._commentsPlaceholder_16xg7_431 {
    background: white;
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    border: 1px solid #f0f0f0;
}

._commentsPlaceholder_16xg7_431 i {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

._commentsPlaceholder_16xg7_431 p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Ошибка */
._errorContainer_16xg7_451 {
    text-align: center;
    padding: 100px 20px;
    background: white;
    border-radius: 40px;
    border: 1px solid #f0f0f0;
    margin: 60px 0;
}

._errorContainer_16xg7_451 i {
    font-size: 5rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

._errorContainer_16xg7_451 h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

._errorContainer_16xg7_451 p {
    color: #64748b;
    margin-bottom: 30px;
}

._backButton_16xg7_477 {
    display: inline-block;
    background: #741fa2;
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
}

._backButton_16xg7_477:hover {
    background: #9b4dc4;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px #741fa2;
}

/* Загрузка */
._loadingContainer_16xg7_495 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

._spinner_16xg7_503 {
    width: 50px;
    height: 50px;
    border: 3px solid #f0f0f0;
    border-top-color: #741fa2;
    border-radius: 50%;
    animation: _spin_16xg7_503 0.8s linear infinite;
    margin-bottom: 20px;
}

@keyframes _spin_16xg7_503 {
    to { transform: rotate(360deg); }
}

/* Адаптивность */
@media (max-width: 1024px) {
    ._content_16xg7_91 {
        grid-template-columns: 1fr;
    }

    ._sidebar_16xg7_225 {
        order: -1;
    }

    ._relatedGrid_16xg7_332 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    ._hero_16xg7_13 {
        height: 400px;
    }

    ._heroTitle_16xg7_72 {
        font-size: 2.2rem;
    }

    ._heroMeta_16xg7_79 {
        flex-direction: column;
        gap: 10px;
    }

    ._article_16xg7_99 {
        padding: 25px;
    }

    ._h1_16xg7_146 {
        font-size: 1.8rem;
    }

    ._h2_16xg7_153 {
        font-size: 1.5rem;
    }

    ._h3_16xg7_160 {
        font-size: 1.2rem;
    }

    ._relatedGrid_16xg7_332 {
        grid-template-columns: 1fr;
    }

    ._actions_16xg7_178 {
        flex-direction: column;
    }

    ._likeButton_16xg7_185, ._shareButton_16xg7_185 {
        width: 100%;
        justify-content: center;
    }
}._page_9m4v4_1 {
    min-height: 100vh;
    background: #f8fafc;
}

._container_9m4v4_6 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* Заголовок */
._header_9m4v4_13 {
    margin-bottom: 40px;
}

._title_9m4v4_17 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Основной контент */
._content_9m4v4_30 {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
}

/* Сайдбар */
._sidebar_9m4v4_37 {
    position: sticky;
    top: 100px;
    height: fit-content;
}

._userCard_9m4v4_43 {
    background: white;
    border-radius: 30px;
    padding: 30px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    margin-bottom: 20px;
    text-align: center;
}

._userAvatar_9m4v4_53 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px -5px rgba(116, 31, 162, 0.3);
    border: 3px solid white;
}

._userName_9m4v4_69 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

._userEmail_9m4v4_76 {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

._userStats_9m4v4_82 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

._statItem_9m4v4_93 {
    text-align: center;
}

._statValue_9m4v4_97 {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #741fa2;
    line-height: 1;
    margin-bottom: 5px;
}

._statLabel_9m4v4_106 {
    font-size: 0.85rem;
    color: #64748b;
}

._statDivider_9m4v4_111 {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

._userMeta_9m4v4_117 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

._metaItem_9m4v4_123 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.9rem;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 12px;
}

._metaItem_9m4v4_123 i {
    color: #741fa2;
    width: 20px;
}

._sidebarNav_9m4v4_139 {
    background: white;
    border-radius: 30px;
    padding: 15px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

._navLink_9m4v4_147 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

._navLink_9m4v4_147:hover {
    background: #f8fafc;
    color: #741fa2;
    transform: translateX(5px);
}

._navLink_9m4v4_147 i {
    width: 20px;
    color: #741fa2;
}

._navBadge_9m4v4_170 {
    margin-left: auto;
    background: #741fa2;
    color: white;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Основной контент */
._main_9m4v4_181 {
    min-width: 0;
}

._section_9m4v4_185 {
    background: white;
    border-radius: 30px;
    padding: 30px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    margin-bottom: 25px;
}

._sectionHeader_9m4v4_194 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

._sectionTitle_9m4v4_203 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
}

._editButton_9m4v4_209 {
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

._editButton_9m4v4_209:hover {
    background: #741fa2;
    border-color: #741fa2;
    color: white;
}

/* Формы */
._profileForm_9m4v4_231, ._passwordForm_9m4v4_231 {
    max-width: 500px;
}

._formGroup_9m4v4_235 {
    margin-bottom: 20px;
}

._formGroup_9m4v4_235 label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

._formGroup_9m4v4_235 input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: #f8fafc;
}

._formGroup_9m4v4_235 input:focus {
    outline: none;
    border-color: #741fa2;
    background: white;
    box-shadow: 0 5px 15px -8px rgba(116, 31, 162, 0.2);
}

._formActions_9m4v4_264 {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

._saveButton_9m4v4_270 {
    background: #741fa2;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

._saveButton_9m4v4_270:hover {
    background: #9b4dc4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px #741fa2;
}

._cancelButton_9m4v4_288 {
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

._cancelButton_9m4v4_288:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

._changePasswordButton_9m4v4_305 {
    background: #741fa2;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
}

._changePasswordButton_9m4v4_305:hover {
    background: #9b4dc4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px #741fa2;
}

/* Информация профиля */
._profileInfo_9m4v4_326 {
    background: #f8fafc;
    border-radius: 20px;
    padding: 20px;
}

._infoRow_9m4v4_332 {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

._infoRow_9m4v4_332:last-child {
    border-bottom: none;
}

._infoLabel_9m4v4_342 {
    width: 100px;
    color: #64748b;
    font-weight: 500;
}

._infoValue_9m4v4_348 {
    flex: 1;
    color: #1a1a1a;
    font-weight: 500;
}

/* Активность */
._activityList_9m4v4_355 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

._activityItem_9m4v4_361 {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s;
}

._activityItem_9m4v4_361:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

._activityIcon_9m4v4_375 {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #741fa2;
    font-size: 1.2rem;
    border: 1px solid #f0f0f0;
}

._activityContent_9m4v4_388 {
    flex: 1;
}

._activityContent_9m4v4_388 p {
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.4;
}

._activityContent_9m4v4_388 a {
    color: #741fa2;
    text-decoration: none;
    font-weight: 500;
}

._activityContent_9m4v4_388 a:hover {
    text-decoration: underline;
}

._activityTime_9m4v4_408 {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Сообщения */
._errorMessage_9m4v4_414 {
    background: #fee2e2;
    color: #ef4444;
    padding: 15px 20px;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 1px solid #fecaca;
    font-size: 0.95rem;
}

._successMessage_9m4v4_424 {
    background: #dcfce7;
    color: #10b981;
    padding: 15px 20px;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 1px solid #bbf7d0;
    font-size: 0.95rem;
}

/* Загрузка */
._loadingContainer_9m4v4_435 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

._spinner_9m4v4_443 {
    width: 50px;
    height: 50px;
    border: 3px solid #f0f0f0;
    border-top-color: #741fa2;
    border-radius: 50%;
    animation: _spin_9m4v4_443 0.8s linear infinite;
    margin-bottom: 20px;
}

@keyframes _spin_9m4v4_443 {
    to { transform: rotate(360deg); }
}

._loadingContainer_9m4v4_435 p {
    color: #64748b;
    font-size: 1rem;
}

/* Адаптивность */
@media (max-width: 1024px) {
    ._content_9m4v4_30 {
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 768px) {
    ._title_9m4v4_17 {
        font-size: 2rem;
    }

    ._content_9m4v4_30 {
        grid-template-columns: 1fr;
    }

    ._sidebar_9m4v4_37 {
        position: static;
    }

    ._section_9m4v4_185 {
        padding: 20px;
    }

    ._sectionHeader_9m4v4_194 {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    ._formActions_9m4v4_264 {
        flex-direction: column;
    }

    ._saveButton_9m4v4_270, ._cancelButton_9m4v4_288 {
        width: 100%;
        text-align: center;
    }
}

._emptyActivity_9m4v4_502 {
    text-align: center;
    padding: 40px 20px;
    background: #f8fafc;
    border-radius: 16px;
}

._emptyActivity_9m4v4_502 i {
    font-size: 3rem;
    color: #cbd5e1;
    margin-bottom: 15px;
}

._emptyActivity_9m4v4_502 p {
    color: #64748b;
    margin-bottom: 20px;
}

._browseButton_9m4v4_520 {
    display: inline-block;
    padding: 12px 30px;
    background: #741fa2;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 500;
    transition: all 0.3s;
}

._browseButton_9m4v4_520:hover {
    background: #9b4dc4;
    transform: translateY(-2px);
}

._activityLink_9m4v4_536 {
    color: #741fa2;
    text-decoration: none;
    font-weight: 500;
}

._activityLink_9m4v4_536:hover {
    text-decoration: underline;
}._page_14aq3_1 {
    min-height: 100vh;
    background: #f8fafc;
}

._container_14aq3_6 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* Заголовок */
._header_14aq3_13 {
    text-align: center;
    margin-bottom: 40px;
}

._title_14aq3_18 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

._subtitle_14aq3_30 {
    font-size: 1.1rem;
    color: #64748b;
}

/* Табы */
._tabs_14aq3_36 {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    background: white;
    padding: 10px;
    border-radius: 60px;
    border: 1px solid #f0f0f0;
    max-width: 612px;
    margin-left: auto;
    margin-right: auto;
}

._tab_14aq3_36 {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

._tab_14aq3_36 i {
    font-size: 1.1rem;
}

._tab_14aq3_36:hover {
    color: #741fa2;
    background: #f8fafc;
}

._activeTab_14aq3_77 {
    background: #741fa2;
    color: white !important;
}

._activeTab_14aq3_77:hover {
    background: #9b4dc4;
    color: white;
}

._tabCount_14aq3_87 {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 0.7rem;
    margin-left: 5px;
}

._activeTab_14aq3_77 ._tabCount_14aq3_87 {
    background: rgba(255, 255, 255, 0.3);
}

/* Сетки */
._shopsGrid_14aq3_101 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

._promoCodesGrid_14aq3_107 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

._blogGrid_14aq3_113 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* Карточка магазина */
._shopCard_14aq3_120 {
    background: white;
    border-radius: 24px;
    padding: 25px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
    text-align: center;
}

._shopCard_14aq3_120:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(116, 31, 162, 0.15);
    border-color: #741fa2;
}

._removeButton_14aq3_137 {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 1px solid #f0f0f0;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

._removeButton_14aq3_137:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fee2e2;
    transform: scale(1.1);
}

._shopLogoWrapper_14aq3_162 {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
}

._shopLogo_14aq3_162 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    background: white;
    padding: 10px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
}

._shopCard_14aq3_120:hover ._shopLogo_14aq3_162 {
    transform: scale(1.05);
}

._shopLogoFallback_14aq3_183 {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 600;
}

._shopName_14aq3_196 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

._shopStats_14aq3_203 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

._shopStat_14aq3_203 {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #64748b;
    font-size: 0.85rem;
}

._shopStat_14aq3_203 i {
    color: #741fa2;
}

/* Карточка промокода */
._promoCard_14aq3_223 {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
    position: relative;
}

._promoCard_14aq3_223:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(116, 31, 162, 0.15);
    border-color: #741fa2;
}

._promoHeader_14aq3_238 {
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    color: white;
    padding: 20px;
}

._promoShop_14aq3_244 {
    display: flex;
    align-items: center;
    gap: 12px;
}

._promoShopLogo_14aq3_250 {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 12px;
    background: white;
    padding: 6px;
}

._promoShopIcon_14aq3_259 {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
}

._promoShopName_14aq3_271 {
    font-size: 1.1rem;
    font-weight: 600;
}

._promoBody_14aq3_276 {
    padding: 20px;
}

._promoTitle_14aq3_280 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

._promoCode_14aq3_107 {
    background: #f8fafc;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

._promoCode_14aq3_107 code {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #741fa2;
    letter-spacing: 1px;
}

._copyButton_14aq3_306 {
    background: white;
    border: 1px solid #741fa2;
    color: #741fa2;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

._copyButton_14aq3_306:hover {
    background: #741fa2;
    color: white;
    transform: scale(1.05);
}

._promoExpiry_14aq3_324 {
    color: #94a3b8;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Карточка статьи */
._blogCard_14aq3_333 {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
    position: relative;
}

._blogCard_14aq3_333:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(116, 31, 162, 0.15);
    border-color: #741fa2;
}

._blogImage_14aq3_349 {
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    position: relative;
}

._blogImage_14aq3_349 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

._blogCard_14aq3_333:hover ._blogImage_14aq3_349 img {
    transform: scale(1.05);
}

._blogImageFallback_14aq3_367 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 600;
}

._blogContent_14aq3_378 {
    padding: 20px;
}

._blogTitle_14aq3_382 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

._blogDescription_14aq3_394 {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

._blogMeta_14aq3_405 {
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 0.8rem;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

/* Пустое состояние */
._emptyState_14aq3_415 {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 40px;
    border: 1px solid #f0f0f0;
    grid-column: 1 / -1;
}

._emptyState_14aq3_415 i {
    font-size: 5rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

._emptyState_14aq3_415 h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

._emptyState_14aq3_415 p {
    color: #64748b;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

._browseButton_14aq3_444 {
    display: inline-block;
    background: #741fa2;
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
}

._browseButton_14aq3_444:hover {
    background: #9b4dc4;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px #741fa2;
}

/* HOT бейдж */
._hotBadge_14aq3_462 {
    background: linear-gradient(135deg, #ff4d4d, #ff1a1a);
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Загрузка */
._loadingContainer_14aq3_474 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

._spinner_14aq3_482 {
    width: 50px;
    height: 50px;
    border: 3px solid #f0f0f0;
    border-top-color: #741fa2;
    border-radius: 50%;
    animation: _spin_14aq3_482 0.8s linear infinite;
    margin-bottom: 20px;
}

@keyframes _spin_14aq3_482 {
    to { transform: rotate(360deg); }
}

._loadingContainer_14aq3_474 p {
    color: #64748b;
    font-size: 1rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    ._title_14aq3_18 {
        font-size: 2rem;
    }

    ._subtitle_14aq3_30 {
        font-size: 1rem;
    }

    ._tabs_14aq3_36 {
        flex-direction: column;
        border-radius: 30px;
        padding: 8px;
    }

    ._tab_14aq3_36 {
        width: 100%;
    }

    ._shopsGrid_14aq3_101,
    ._promoCodesGrid_14aq3_107,
    ._blogGrid_14aq3_113 {
        grid-template-columns: 1fr;
    }

    ._promoCode_14aq3_107 {
        flex-direction: column;
        gap: 10px;
    }

    ._copyButton_14aq3_306 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    ._container_14aq3_6 {
        padding: 20px 16px;
    }

    ._shopCard_14aq3_120 {
        padding: 20px;
    }

    ._shopLogoWrapper_14aq3_162 {
        width: 80px;
        height: 80px;
    }

    ._emptyState_14aq3_415 {
        padding: 40px 20px;
    }

    ._emptyState_14aq3_415 i {
        font-size: 3rem;
    }

    ._emptyState_14aq3_415 h3 {
        font-size: 1.2rem;
    }
}

._blogLikes_14aq3_564 {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ef4444;
}

._blogLikes_14aq3_564 i {
    font-size: 0.9rem;
}._container_1hq99_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 20px;
}

._loader_1hq99_11 {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #741fa2;
    border-radius: 50%;
    animation: _spin_1hq99_1 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes _spin_1hq99_1 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

._errorIcon_1hq99_26 {
    font-size: 4rem;
    margin-bottom: 20px;
}

._button_1hq99_31 {
    display: inline-block;
    padding: 12px 30px;
    background: #741fa2;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 20px;
    transition: background 0.3s;
}

._button_1hq99_31:hover {
    background: #9b4dc4;
}
._page_9y1fx_1 {
    min-height: 100vh;
    background: #f8fafc;
}

._container_9y1fx_6 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 24px;
}

._header_9y1fx_12 {
    text-align: center;
    margin-bottom: 50px;
}

._title_9y1fx_17 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

._date_9y1fx_29 {
    color: #64748b;
    font-size: 1rem;
}

._content_9y1fx_34 {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

._section_9y1fx_42 {
    margin-bottom: 40px;
}

._section_9y1fx_42:last-child {
    margin-bottom: 0;
}

._section_9y1fx_42 h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

._section_9y1fx_42 p {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

._link_9y1fx_66 {
    color: #741fa2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

._link_9y1fx_66:hover {
    color: #9b4dc4;
    text-decoration: underline;
}

@media (max-width: 768px) {
    ._container_9y1fx_6 {
        padding: 20px 16px;
    }

    ._title_9y1fx_17 {
        font-size: 1.8rem;
    }

    ._content_9y1fx_34 {
        padding: 25px;
    }

    ._section_9y1fx_42 h2 {
        font-size: 1.3rem;
    }

    ._section_9y1fx_42 p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}
._page_gj3e0_1 {
    min-height: 100vh;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
}

._container_gj3e0_8 {
    flex: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

._content_gj3e0_18 {
    max-width: 600px;
    text-align: center;
    background: white;
    border-radius: 40px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

._errorCode_gj3e0_28 {
    font-size: 8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #741fa2, #9b4dc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

._title_gj3e0_39 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

._description_gj3e0_46 {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

._actions_gj3e0_53 {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

._primaryButton_gj3e0_61 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #741fa2;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
}

._primaryButton_gj3e0_61:hover {
    background: #9b4dc4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px #741fa2;
}

._secondaryButton_gj3e0_80 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #f1f5f9;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
}

._secondaryButton_gj3e0_80:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

._suggestions_gj3e0_98 {
    text-align: left;
    padding: 30px 0 0;
    border-top: 1px solid #f0f0f0;
}

._suggestions_gj3e0_98 h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

._suggestions_gj3e0_98 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

._suggestions_gj3e0_98 li {
    margin-bottom: 10px;
}

._suggestions_gj3e0_98 a {
    color: #741fa2;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    display: inline-block;
    padding: 5px 0;
}

._suggestions_gj3e0_98 a:hover {
    color: #9b4dc4;
    text-decoration: underline;
}

@media (max-width: 768px) {
    ._container_gj3e0_8 {
        padding: 20px 16px;
    }

    ._content_gj3e0_18 {
        padding: 40px 20px;
    }

    ._errorCode_gj3e0_28 {
        font-size: 6rem;
    }

    ._title_gj3e0_39 {
        font-size: 1.5rem;
    }

    ._description_gj3e0_46 {
        font-size: 1rem;
    }

    ._actions_gj3e0_53 {
        flex-direction: column;
    }

    ._primaryButton_gj3e0_61,
    ._secondaryButton_gj3e0_80 {
        width: 100%;
        justify-content: center;
    }
}

:root {
    --primary: rgba(116, 31, 162, 0.42);
    --primary-dark: #6f1ea8;
    --secondary: #ec4899;
    --accent: #8b5cf6;
    --background: #f9fafb;
    --surface: #ffffff;
    --text: #0f172a;
    --text-light: #64748b;
    --border: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Geologica', sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
.container {
    max-width: 1440px;
    margin: 0 auto;
    /*padding: 0 24px;*/
}
/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}
/* Стили для скролла */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}/*!
 * Font Awesome Free 7.2.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2026 Fonticons, Inc.
 */
.fa,.fa-brands,.fa-classic,.fa-regular,.fa-solid,.fab,.far,.fas{--_fa-family:var(--fa-family,var(--fa-style-family,"Font Awesome 7 Free"));-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:var(--fa-display,inline-block);font-family:var(--_fa-family);font-feature-settings:normal;font-style:normal;font-synthesis:none;font-variant:normal;font-weight:var(--fa-style,900);line-height:1;text-align:center;text-rendering:auto;width:var(--fa-width,1.25em)}:is(.fas,.far,.fab,.fa-solid,.fa-regular,.fa-brands,.fa-classic,.fa):before{content:var(--fa)/""}@supports not (content:""/""){:is(.fas,.far,.fab,.fa-solid,.fa-regular,.fa-brands,.fa-classic,.fa):before{content:var(--fa)}}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-width-auto{--fa-width:auto}.fa-fw,.fa-width-fixed{--fa-width:1.25em}.fa-ul{list-style-type:none;margin-inline-start:var(--fa-li-margin,2.5em);padding-inline-start:0}.fa-ul>li{position:relative}.fa-li{inset-inline-start:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.0625em) var(--fa-border-style,solid) var(--fa-border-color,#eee);box-sizing:var(--fa-border-box-sizing,content-box);padding:var(--fa-border-padding,.1875em .25em)}.fa-pull-left,.fa-pull-start{float:inline-start;margin-inline-end:var(--fa-pull-margin,.3em)}.fa-pull-end,.fa-pull-right{float:inline-end;margin-inline-start:var(--fa-pull-margin,.3em)}.fa-beat{animation-name:fa-beat;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{animation-name:fa-bounce;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{animation-name:fa-fade;animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{animation-name:fa-beat-fade;animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{animation-name:fa-flip;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{animation-name:fa-shake;animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{animation-name:fa-spin;animation-duration:var(--fa-animation-duration,2s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{animation-name:fa-spin;animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{animation:none!important;transition:none!important}}@keyframes fa-beat{0%,90%{transform:scale(1)}45%{transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-bounce{0%{transform:scale(1) translateY(0)}10%{transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{transform:scale(1) translateY(0)}to{transform:scale(1) translateY(0)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);transform:scale(1)}50%{opacity:1;transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-flip{50%{transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-shake{0%{transform:rotate(-15deg)}4%{transform:rotate(15deg)}8%,24%{transform:rotate(-18deg)}12%,28%{transform:rotate(18deg)}16%{transform:rotate(-22deg)}20%{transform:rotate(22deg)}32%{transform:rotate(-12deg)}36%{transform:rotate(12deg)}40%,to{transform:rotate(0deg)}}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{transform:rotate(90deg)}.fa-rotate-180{transform:rotate(180deg)}.fa-rotate-270{transform:rotate(270deg)}.fa-flip-horizontal{transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}.fa-rotate-by{transform:rotate(var(--fa-rotate-angle,0))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{--fa-width:100%;inset:0;position:absolute;text-align:center;width:var(--fa-width);z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}

.fa-0{--fa:"\30 "}.fa-1{--fa:"\31 "}.fa-2{--fa:"\32 "}.fa-3{--fa:"\33 "}.fa-4{--fa:"\34 "}.fa-5{--fa:"\35 "}.fa-6{--fa:"\36 "}.fa-7{--fa:"\37 "}.fa-8{--fa:"\38 "}.fa-9{--fa:"\39 "}.fa-exclamation{--fa:"\!"}.fa-hashtag{--fa:"\#"}.fa-dollar,.fa-dollar-sign,.fa-usd{--fa:"\$"}.fa-percent,.fa-percentage{--fa:"\%"}.fa-asterisk{--fa:"\*"}.fa-add,.fa-plus{--fa:"\+"}.fa-less-than{--fa:"\<"}.fa-equals{--fa:"\="}.fa-greater-than{--fa:"\>"}.fa-question{--fa:"\?"}.fa-at{--fa:"\@"}.fa-a{--fa:"A"}.fa-b{--fa:"B"}.fa-c{--fa:"C"}.fa-d{--fa:"D"}.fa-e{--fa:"E"}.fa-f{--fa:"F"}.fa-g{--fa:"G"}.fa-h{--fa:"H"}.fa-i{--fa:"I"}.fa-j{--fa:"J"}.fa-k{--fa:"K"}.fa-l{--fa:"L"}.fa-m{--fa:"M"}.fa-n{--fa:"N"}.fa-o{--fa:"O"}.fa-p{--fa:"P"}.fa-q{--fa:"Q"}.fa-r{--fa:"R"}.fa-s{--fa:"S"}.fa-t{--fa:"T"}.fa-u{--fa:"U"}.fa-v{--fa:"V"}.fa-w{--fa:"W"}.fa-x{--fa:"X"}.fa-y{--fa:"Y"}.fa-z{--fa:"Z"}.fa-faucet{--fa:"\e005"}.fa-faucet-drip{--fa:"\e006"}.fa-house-chimney-window{--fa:"\e00d"}.fa-house-signal{--fa:"\e012"}.fa-temperature-arrow-down,.fa-temperature-down{--fa:"\e03f"}.fa-temperature-arrow-up,.fa-temperature-up{--fa:"\e040"}.fa-trailer{--fa:"\e041"}.fa-bacteria{--fa:"\e059"}.fa-bacterium{--fa:"\e05a"}.fa-box-tissue{--fa:"\e05b"}.fa-hand-holding-medical{--fa:"\e05c"}.fa-hand-sparkles{--fa:"\e05d"}.fa-hands-bubbles,.fa-hands-wash{--fa:"\e05e"}.fa-handshake-alt-slash,.fa-handshake-simple-slash,.fa-handshake-slash{--fa:"\e060"}.fa-head-side-cough{--fa:"\e061"}.fa-head-side-cough-slash{--fa:"\e062"}.fa-head-side-mask{--fa:"\e063"}.fa-head-side-virus{--fa:"\e064"}.fa-house-chimney-user{--fa:"\e065"}.fa-house-laptop,.fa-laptop-house{--fa:"\e066"}.fa-lungs-virus{--fa:"\e067"}.fa-people-arrows,.fa-people-arrows-left-right{--fa:"\e068"}.fa-plane-slash{--fa:"\e069"}.fa-pump-medical{--fa:"\e06a"}.fa-pump-soap{--fa:"\e06b"}.fa-shield-virus{--fa:"\e06c"}.fa-sink{--fa:"\e06d"}.fa-soap{--fa:"\e06e"}.fa-stopwatch-20{--fa:"\e06f"}.fa-shop-slash,.fa-store-alt-slash{--fa:"\e070"}.fa-store-slash{--fa:"\e071"}.fa-toilet-paper-slash{--fa:"\e072"}.fa-users-slash{--fa:"\e073"}.fa-virus{--fa:"\e074"}.fa-virus-slash{--fa:"\e075"}.fa-viruses{--fa:"\e076"}.fa-vest{--fa:"\e085"}.fa-vest-patches{--fa:"\e086"}.fa-arrow-trend-down{--fa:"\e097"}.fa-arrow-trend-up{--fa:"\e098"}.fa-arrow-up-from-bracket{--fa:"\e09a"}.fa-austral-sign{--fa:"\e0a9"}.fa-baht-sign{--fa:"\e0ac"}.fa-bitcoin-sign{--fa:"\e0b4"}.fa-bolt-lightning{--fa:"\e0b7"}.fa-book-bookmark{--fa:"\e0bb"}.fa-camera-rotate{--fa:"\e0d8"}.fa-cedi-sign{--fa:"\e0df"}.fa-chart-column{--fa:"\e0e3"}.fa-chart-gantt{--fa:"\e0e4"}.fa-clapperboard{--fa:"\e131"}.fa-closed-captioning-slash{--fa:"\e135"}.fa-clover{--fa:"\e139"}.fa-code-compare{--fa:"\e13a"}.fa-code-fork{--fa:"\e13b"}.fa-code-pull-request{--fa:"\e13c"}.fa-colon-sign{--fa:"\e140"}.fa-cruzeiro-sign{--fa:"\e152"}.fa-display{--fa:"\e163"}.fa-dong-sign{--fa:"\e169"}.fa-elevator{--fa:"\e16d"}.fa-filter-circle-xmark{--fa:"\e17b"}.fa-florin-sign{--fa:"\e184"}.fa-folder-closed{--fa:"\e185"}.fa-franc-sign{--fa:"\e18f"}.fa-guarani-sign{--fa:"\e19a"}.fa-gun{--fa:"\e19b"}.fa-hands-clapping{--fa:"\e1a8"}.fa-home-user,.fa-house-user{--fa:"\e1b0"}.fa-indian-rupee,.fa-indian-rupee-sign,.fa-inr{--fa:"\e1bc"}.fa-kip-sign{--fa:"\e1c4"}.fa-lari-sign{--fa:"\e1c8"}.fa-litecoin-sign{--fa:"\e1d3"}.fa-manat-sign{--fa:"\e1d5"}.fa-mask-face{--fa:"\e1d7"}.fa-mill-sign{--fa:"\e1ed"}.fa-money-bills{--fa:"\e1f3"}.fa-naira-sign{--fa:"\e1f6"}.fa-notdef{--fa:"\e1fe"}.fa-panorama{--fa:"\e209"}.fa-peseta-sign{--fa:"\e221"}.fa-peso-sign{--fa:"\e222"}.fa-plane-up{--fa:"\e22d"}.fa-rupiah-sign{--fa:"\e23d"}.fa-stairs{--fa:"\e289"}.fa-timeline{--fa:"\e29c"}.fa-truck-front{--fa:"\e2b7"}.fa-try,.fa-turkish-lira,.fa-turkish-lira-sign{--fa:"\e2bb"}.fa-vault{--fa:"\e2c5"}.fa-magic-wand-sparkles,.fa-wand-magic-sparkles{--fa:"\e2ca"}.fa-wheat-alt,.fa-wheat-awn{--fa:"\e2cd"}.fa-wheelchair-alt,.fa-wheelchair-move{--fa:"\e2ce"}.fa-bangladeshi-taka-sign{--fa:"\e2e6"}.fa-bowl-rice{--fa:"\e2eb"}.fa-person-pregnant{--fa:"\e31e"}.fa-home-lg,.fa-house-chimney{--fa:"\e3af"}.fa-house-crack{--fa:"\e3b1"}.fa-house-medical{--fa:"\e3b2"}.fa-cent-sign{--fa:"\e3f5"}.fa-plus-minus{--fa:"\e43c"}.fa-sailboat{--fa:"\e445"}.fa-section{--fa:"\e447"}.fa-shrimp{--fa:"\e448"}.fa-brazilian-real-sign{--fa:"\e46c"}.fa-chart-simple{--fa:"\e473"}.fa-diagram-next{--fa:"\e476"}.fa-diagram-predecessor{--fa:"\e477"}.fa-diagram-successor{--fa:"\e47a"}.fa-earth-oceania,.fa-globe-oceania{--fa:"\e47b"}.fa-bug-slash{--fa:"\e490"}.fa-file-circle-plus{--fa:"\e494"}.fa-shop-lock{--fa:"\e4a5"}.fa-virus-covid{--fa:"\e4a8"}.fa-virus-covid-slash{--fa:"\e4a9"}.fa-anchor-circle-check{--fa:"\e4aa"}.fa-anchor-circle-exclamation{--fa:"\e4ab"}.fa-anchor-circle-xmark{--fa:"\e4ac"}.fa-anchor-lock{--fa:"\e4ad"}.fa-arrow-down-up-across-line{--fa:"\e4af"}.fa-arrow-down-up-lock{--fa:"\e4b0"}.fa-arrow-right-to-city{--fa:"\e4b3"}.fa-arrow-up-from-ground-water{--fa:"\e4b5"}.fa-arrow-up-from-water-pump{--fa:"\e4b6"}.fa-arrow-up-right-dots{--fa:"\e4b7"}.fa-arrows-down-to-line{--fa:"\e4b8"}.fa-arrows-down-to-people{--fa:"\e4b9"}.fa-arrows-left-right-to-line{--fa:"\e4ba"}.fa-arrows-spin{--fa:"\e4bb"}.fa-arrows-split-up-and-left{--fa:"\e4bc"}.fa-arrows-to-circle{--fa:"\e4bd"}.fa-arrows-to-dot{--fa:"\e4be"}.fa-arrows-to-eye{--fa:"\e4bf"}.fa-arrows-turn-right{--fa:"\e4c0"}.fa-arrows-turn-to-dots{--fa:"\e4c1"}.fa-arrows-up-to-line{--fa:"\e4c2"}.fa-bore-hole{--fa:"\e4c3"}.fa-bottle-droplet{--fa:"\e4c4"}.fa-bottle-water{--fa:"\e4c5"}.fa-bowl-food{--fa:"\e4c6"}.fa-boxes-packing{--fa:"\e4c7"}.fa-bridge{--fa:"\e4c8"}.fa-bridge-circle-check{--fa:"\e4c9"}.fa-bridge-circle-exclamation{--fa:"\e4ca"}.fa-bridge-circle-xmark{--fa:"\e4cb"}.fa-bridge-lock{--fa:"\e4cc"}.fa-bridge-water{--fa:"\e4ce"}.fa-bucket{--fa:"\e4cf"}.fa-bugs{--fa:"\e4d0"}.fa-building-circle-arrow-right{--fa:"\e4d1"}.fa-building-circle-check{--fa:"\e4d2"}.fa-building-circle-exclamation{--fa:"\e4d3"}.fa-building-circle-xmark{--fa:"\e4d4"}.fa-building-flag{--fa:"\e4d5"}.fa-building-lock{--fa:"\e4d6"}.fa-building-ngo{--fa:"\e4d7"}.fa-building-shield{--fa:"\e4d8"}.fa-building-un{--fa:"\e4d9"}.fa-building-user{--fa:"\e4da"}.fa-building-wheat{--fa:"\e4db"}.fa-burst{--fa:"\e4dc"}.fa-car-on{--fa:"\e4dd"}.fa-car-tunnel{--fa:"\e4de"}.fa-child-combatant,.fa-child-rifle{--fa:"\e4e0"}.fa-children{--fa:"\e4e1"}.fa-circle-nodes{--fa:"\e4e2"}.fa-clipboard-question{--fa:"\e4e3"}.fa-cloud-showers-water{--fa:"\e4e4"}.fa-computer{--fa:"\e4e5"}.fa-cubes-stacked{--fa:"\e4e6"}.fa-envelope-circle-check{--fa:"\e4e8"}.fa-explosion{--fa:"\e4e9"}.fa-ferry{--fa:"\e4ea"}.fa-file-circle-exclamation{--fa:"\e4eb"}.fa-file-circle-minus{--fa:"\e4ed"}.fa-file-circle-question{--fa:"\e4ef"}.fa-file-shield{--fa:"\e4f0"}.fa-fire-burner{--fa:"\e4f1"}.fa-fish-fins{--fa:"\e4f2"}.fa-flask-vial{--fa:"\e4f3"}.fa-glass-water{--fa:"\e4f4"}.fa-glass-water-droplet{--fa:"\e4f5"}.fa-group-arrows-rotate{--fa:"\e4f6"}.fa-hand-holding-hand{--fa:"\e4f7"}.fa-handcuffs{--fa:"\e4f8"}.fa-hands-bound{--fa:"\e4f9"}.fa-hands-holding-child{--fa:"\e4fa"}.fa-hands-holding-circle{--fa:"\e4fb"}.fa-heart-circle-bolt{--fa:"\e4fc"}.fa-heart-circle-check{--fa:"\e4fd"}.fa-heart-circle-exclamation{--fa:"\e4fe"}.fa-heart-circle-minus{--fa:"\e4ff"}.fa-heart-circle-plus{--fa:"\e500"}.fa-heart-circle-xmark{--fa:"\e501"}.fa-helicopter-symbol{--fa:"\e502"}.fa-helmet-un{--fa:"\e503"}.fa-hill-avalanche{--fa:"\e507"}.fa-hill-rockslide{--fa:"\e508"}.fa-house-circle-check{--fa:"\e509"}.fa-house-circle-exclamation{--fa:"\e50a"}.fa-house-circle-xmark{--fa:"\e50b"}.fa-house-fire{--fa:"\e50c"}.fa-house-flag{--fa:"\e50d"}.fa-house-flood-water{--fa:"\e50e"}.fa-house-flood-water-circle-arrow-right{--fa:"\e50f"}.fa-house-lock{--fa:"\e510"}.fa-house-medical-circle-check{--fa:"\e511"}.fa-house-medical-circle-exclamation{--fa:"\e512"}.fa-house-medical-circle-xmark{--fa:"\e513"}.fa-house-medical-flag{--fa:"\e514"}.fa-house-tsunami{--fa:"\e515"}.fa-jar{--fa:"\e516"}.fa-jar-wheat{--fa:"\e517"}.fa-jet-fighter-up{--fa:"\e518"}.fa-jug-detergent{--fa:"\e519"}.fa-kitchen-set{--fa:"\e51a"}.fa-land-mine-on{--fa:"\e51b"}.fa-landmark-flag{--fa:"\e51c"}.fa-laptop-file{--fa:"\e51d"}.fa-lines-leaning{--fa:"\e51e"}.fa-location-pin-lock{--fa:"\e51f"}.fa-locust{--fa:"\e520"}.fa-magnifying-glass-arrow-right{--fa:"\e521"}.fa-magnifying-glass-chart{--fa:"\e522"}.fa-mars-and-venus-burst{--fa:"\e523"}.fa-mask-ventilator{--fa:"\e524"}.fa-mattress-pillow{--fa:"\e525"}.fa-mobile-retro{--fa:"\e527"}.fa-money-bill-transfer{--fa:"\e528"}.fa-money-bill-trend-up{--fa:"\e529"}.fa-money-bill-wheat{--fa:"\e52a"}.fa-mosquito{--fa:"\e52b"}.fa-mosquito-net{--fa:"\e52c"}.fa-mound{--fa:"\e52d"}.fa-mountain-city{--fa:"\e52e"}.fa-mountain-sun{--fa:"\e52f"}.fa-oil-well{--fa:"\e532"}.fa-people-group{--fa:"\e533"}.fa-people-line{--fa:"\e534"}.fa-people-pulling{--fa:"\e535"}.fa-people-robbery{--fa:"\e536"}.fa-people-roof{--fa:"\e537"}.fa-person-arrow-down-to-line{--fa:"\e538"}.fa-person-arrow-up-from-line{--fa:"\e539"}.fa-person-breastfeeding{--fa:"\e53a"}.fa-person-burst{--fa:"\e53b"}.fa-person-cane{--fa:"\e53c"}.fa-person-chalkboard{--fa:"\e53d"}.fa-person-circle-check{--fa:"\e53e"}.fa-person-circle-exclamation{--fa:"\e53f"}.fa-person-circle-minus{--fa:"\e540"}.fa-person-circle-plus{--fa:"\e541"}.fa-person-circle-question{--fa:"\e542"}.fa-person-circle-xmark{--fa:"\e543"}.fa-person-dress-burst{--fa:"\e544"}.fa-person-drowning{--fa:"\e545"}.fa-person-falling{--fa:"\e546"}.fa-person-falling-burst{--fa:"\e547"}.fa-person-half-dress{--fa:"\e548"}.fa-person-harassing{--fa:"\e549"}.fa-person-military-pointing{--fa:"\e54a"}.fa-person-military-rifle{--fa:"\e54b"}.fa-person-military-to-person{--fa:"\e54c"}.fa-person-rays{--fa:"\e54d"}.fa-person-rifle{--fa:"\e54e"}.fa-person-shelter{--fa:"\e54f"}.fa-person-walking-arrow-loop-left{--fa:"\e551"}.fa-person-walking-arrow-right{--fa:"\e552"}.fa-person-walking-dashed-line-arrow-right{--fa:"\e553"}.fa-person-walking-luggage{--fa:"\e554"}.fa-plane-circle-check{--fa:"\e555"}.fa-plane-circle-exclamation{--fa:"\e556"}.fa-plane-circle-xmark{--fa:"\e557"}.fa-plane-lock{--fa:"\e558"}.fa-plate-wheat{--fa:"\e55a"}.fa-plug-circle-bolt{--fa:"\e55b"}.fa-plug-circle-check{--fa:"\e55c"}.fa-plug-circle-exclamation{--fa:"\e55d"}.fa-plug-circle-minus{--fa:"\e55e"}.fa-plug-circle-plus{--fa:"\e55f"}.fa-plug-circle-xmark{--fa:"\e560"}.fa-ranking-star{--fa:"\e561"}.fa-road-barrier{--fa:"\e562"}.fa-road-bridge{--fa:"\e563"}.fa-road-circle-check{--fa:"\e564"}.fa-road-circle-exclamation{--fa:"\e565"}.fa-road-circle-xmark{--fa:"\e566"}.fa-road-lock{--fa:"\e567"}.fa-road-spikes{--fa:"\e568"}.fa-rug{--fa:"\e569"}.fa-sack-xmark{--fa:"\e56a"}.fa-school-circle-check{--fa:"\e56b"}.fa-school-circle-exclamation{--fa:"\e56c"}.fa-school-circle-xmark{--fa:"\e56d"}.fa-school-flag{--fa:"\e56e"}.fa-school-lock{--fa:"\e56f"}.fa-sheet-plastic{--fa:"\e571"}.fa-shield-cat{--fa:"\e572"}.fa-shield-dog{--fa:"\e573"}.fa-shield-heart{--fa:"\e574"}.fa-square-nfi{--fa:"\e576"}.fa-square-person-confined{--fa:"\e577"}.fa-square-virus{--fa:"\e578"}.fa-rod-asclepius,.fa-rod-snake,.fa-staff-aesculapius,.fa-staff-snake{--fa:"\e579"}.fa-sun-plant-wilt{--fa:"\e57a"}.fa-tarp{--fa:"\e57b"}.fa-tarp-droplet{--fa:"\e57c"}.fa-tent{--fa:"\e57d"}.fa-tent-arrow-down-to-line{--fa:"\e57e"}.fa-tent-arrow-left-right{--fa:"\e57f"}.fa-tent-arrow-turn-left{--fa:"\e580"}.fa-tent-arrows-down{--fa:"\e581"}.fa-tents{--fa:"\e582"}.fa-toilet-portable{--fa:"\e583"}.fa-toilets-portable{--fa:"\e584"}.fa-tower-cell{--fa:"\e585"}.fa-tower-observation{--fa:"\e586"}.fa-tree-city{--fa:"\e587"}.fa-trowel{--fa:"\e589"}.fa-trowel-bricks{--fa:"\e58a"}.fa-truck-arrow-right{--fa:"\e58b"}.fa-truck-droplet{--fa:"\e58c"}.fa-truck-field{--fa:"\e58d"}.fa-truck-field-un{--fa:"\e58e"}.fa-truck-plane{--fa:"\e58f"}.fa-users-between-lines{--fa:"\e591"}.fa-users-line{--fa:"\e592"}.fa-users-rays{--fa:"\e593"}.fa-users-rectangle{--fa:"\e594"}.fa-users-viewfinder{--fa:"\e595"}.fa-vial-circle-check{--fa:"\e596"}.fa-vial-virus{--fa:"\e597"}.fa-wheat-awn-circle-exclamation{--fa:"\e598"}.fa-worm{--fa:"\e599"}.fa-xmarks-lines{--fa:"\e59a"}.fa-child-dress{--fa:"\e59c"}.fa-child-reaching{--fa:"\e59d"}.fa-file-circle-check{--fa:"\e5a0"}.fa-file-circle-xmark{--fa:"\e5a1"}.fa-person-through-window{--fa:"\e5a9"}.fa-plant-wilt{--fa:"\e5aa"}.fa-stapler{--fa:"\e5af"}.fa-train-tram{--fa:"\e5b4"}.fa-table-cells-column-lock{--fa:"\e678"}.fa-table-cells-row-lock{--fa:"\e67a"}.fa-thumb-tack-slash,.fa-thumbtack-slash{--fa:"\e68f"}.fa-table-cells-row-unlock{--fa:"\e691"}.fa-chart-diagram{--fa:"\e695"}.fa-comment-nodes{--fa:"\e696"}.fa-file-fragment{--fa:"\e697"}.fa-file-half-dashed{--fa:"\e698"}.fa-hexagon-nodes{--fa:"\e699"}.fa-hexagon-nodes-bolt{--fa:"\e69a"}.fa-square-binary{--fa:"\e69b"}.fa-pentagon{--fa:"\e790"}.fa-non-binary{--fa:"\e807"}.fa-spiral{--fa:"\e80a"}.fa-picture-in-picture{--fa:"\e80b"}.fa-mobile-vibrate{--fa:"\e816"}.fa-single-quote-left{--fa:"\e81b"}.fa-single-quote-right{--fa:"\e81c"}.fa-bus-side{--fa:"\e81d"}.fa-heptagon,.fa-septagon{--fa:"\e820"}.fa-aquarius{--fa:"\e845"}.fa-aries{--fa:"\e846"}.fa-cancer{--fa:"\e847"}.fa-capricorn{--fa:"\e848"}.fa-gemini{--fa:"\e849"}.fa-leo{--fa:"\e84a"}.fa-libra{--fa:"\e84b"}.fa-pisces{--fa:"\e84c"}.fa-sagittarius{--fa:"\e84d"}.fa-scorpio{--fa:"\e84e"}.fa-taurus{--fa:"\e84f"}.fa-virgo{--fa:"\e850"}.fa-glass-martini,.fa-martini-glass-empty{--fa:"\f000"}.fa-music{--fa:"\f001"}.fa-magnifying-glass,.fa-search{--fa:"\f002"}.fa-heart{--fa:"\f004"}.fa-star{--fa:"\f005"}.fa-user,.fa-user-alt,.fa-user-large{--fa:"\f007"}.fa-film,.fa-film-alt,.fa-film-simple{--fa:"\f008"}.fa-table-cells-large,.fa-th-large{--fa:"\f009"}.fa-table-cells,.fa-th{--fa:"\f00a"}.fa-table-list,.fa-th-list{--fa:"\f00b"}.fa-check{--fa:"\f00c"}.fa-close,.fa-multiply,.fa-remove,.fa-times,.fa-xmark{--fa:"\f00d"}.fa-magnifying-glass-plus,.fa-search-plus{--fa:"\f00e"}.fa-magnifying-glass-minus,.fa-search-minus{--fa:"\f010"}.fa-power-off{--fa:"\f011"}.fa-signal,.fa-signal-5,.fa-signal-perfect{--fa:"\f012"}.fa-cog,.fa-gear{--fa:"\f013"}.fa-home,.fa-home-alt,.fa-home-lg-alt,.fa-house{--fa:"\f015"}.fa-clock,.fa-clock-four{--fa:"\f017"}.fa-road{--fa:"\f018"}.fa-download{--fa:"\f019"}.fa-inbox{--fa:"\f01c"}.fa-arrow-right-rotate,.fa-arrow-rotate-forward,.fa-arrow-rotate-right,.fa-redo{--fa:"\f01e"}.fa-arrows-rotate,.fa-refresh,.fa-sync{--fa:"\f021"}.fa-list-alt,.fa-rectangle-list{--fa:"\f022"}.fa-lock{--fa:"\f023"}.fa-flag{--fa:"\f024"}.fa-headphones,.fa-headphones-alt,.fa-headphones-simple{--fa:"\f025"}.fa-volume-off{--fa:"\f026"}.fa-volume-down,.fa-volume-low{--fa:"\f027"}.fa-volume-high,.fa-volume-up{--fa:"\f028"}.fa-qrcode{--fa:"\f029"}.fa-barcode{--fa:"\f02a"}.fa-tag{--fa:"\f02b"}.fa-tags{--fa:"\f02c"}.fa-book{--fa:"\f02d"}.fa-bookmark{--fa:"\f02e"}.fa-print{--fa:"\f02f"}.fa-camera,.fa-camera-alt{--fa:"\f030"}.fa-font{--fa:"\f031"}.fa-bold{--fa:"\f032"}.fa-italic{--fa:"\f033"}.fa-text-height{--fa:"\f034"}.fa-text-width{--fa:"\f035"}.fa-align-left{--fa:"\f036"}.fa-align-center{--fa:"\f037"}.fa-align-right{--fa:"\f038"}.fa-align-justify{--fa:"\f039"}.fa-list,.fa-list-squares{--fa:"\f03a"}.fa-dedent,.fa-outdent{--fa:"\f03b"}.fa-indent{--fa:"\f03c"}.fa-video,.fa-video-camera{--fa:"\f03d"}.fa-image{--fa:"\f03e"}.fa-location-pin,.fa-map-marker{--fa:"\f041"}.fa-adjust,.fa-circle-half-stroke{--fa:"\f042"}.fa-droplet,.fa-tint{--fa:"\f043"}.fa-edit,.fa-pen-to-square{--fa:"\f044"}.fa-arrows,.fa-arrows-up-down-left-right{--fa:"\f047"}.fa-backward-step,.fa-step-backward{--fa:"\f048"}.fa-backward-fast,.fa-fast-backward{--fa:"\f049"}.fa-backward{--fa:"\f04a"}.fa-play{--fa:"\f04b"}.fa-pause{--fa:"\f04c"}.fa-stop{--fa:"\f04d"}.fa-forward{--fa:"\f04e"}.fa-fast-forward,.fa-forward-fast{--fa:"\f050"}.fa-forward-step,.fa-step-forward{--fa:"\f051"}.fa-eject{--fa:"\f052"}.fa-chevron-left{--fa:"\f053"}.fa-chevron-right{--fa:"\f054"}.fa-circle-plus,.fa-plus-circle{--fa:"\f055"}.fa-circle-minus,.fa-minus-circle{--fa:"\f056"}.fa-circle-xmark,.fa-times-circle,.fa-xmark-circle{--fa:"\f057"}.fa-check-circle,.fa-circle-check{--fa:"\f058"}.fa-circle-question,.fa-question-circle{--fa:"\f059"}.fa-circle-info,.fa-info-circle{--fa:"\f05a"}.fa-crosshairs{--fa:"\f05b"}.fa-ban,.fa-cancel{--fa:"\f05e"}.fa-arrow-left{--fa:"\f060"}.fa-arrow-right{--fa:"\f061"}.fa-arrow-up{--fa:"\f062"}.fa-arrow-down{--fa:"\f063"}.fa-mail-forward,.fa-share{--fa:"\f064"}.fa-expand{--fa:"\f065"}.fa-compress{--fa:"\f066"}.fa-minus,.fa-subtract{--fa:"\f068"}.fa-circle-exclamation,.fa-exclamation-circle{--fa:"\f06a"}.fa-gift{--fa:"\f06b"}.fa-leaf{--fa:"\f06c"}.fa-fire{--fa:"\f06d"}.fa-eye{--fa:"\f06e"}.fa-eye-slash{--fa:"\f070"}.fa-exclamation-triangle,.fa-triangle-exclamation,.fa-warning{--fa:"\f071"}.fa-plane{--fa:"\f072"}.fa-calendar-alt,.fa-calendar-days{--fa:"\f073"}.fa-random,.fa-shuffle{--fa:"\f074"}.fa-comment{--fa:"\f075"}.fa-magnet{--fa:"\f076"}.fa-chevron-up{--fa:"\f077"}.fa-chevron-down{--fa:"\f078"}.fa-retweet{--fa:"\f079"}.fa-cart-shopping,.fa-shopping-cart{--fa:"\f07a"}.fa-folder,.fa-folder-blank{--fa:"\f07b"}.fa-folder-open{--fa:"\f07c"}.fa-arrows-up-down,.fa-arrows-v{--fa:"\f07d"}.fa-arrows-h,.fa-arrows-left-right{--fa:"\f07e"}.fa-bar-chart,.fa-chart-bar{--fa:"\f080"}.fa-camera-retro{--fa:"\f083"}.fa-key{--fa:"\f084"}.fa-cogs,.fa-gears{--fa:"\f085"}.fa-comments{--fa:"\f086"}.fa-star-half{--fa:"\f089"}.fa-arrow-right-from-bracket,.fa-sign-out{--fa:"\f08b"}.fa-thumb-tack,.fa-thumbtack{--fa:"\f08d"}.fa-arrow-up-right-from-square,.fa-external-link{--fa:"\f08e"}.fa-arrow-right-to-bracket,.fa-sign-in{--fa:"\f090"}.fa-trophy{--fa:"\f091"}.fa-upload{--fa:"\f093"}.fa-lemon{--fa:"\f094"}.fa-phone{--fa:"\f095"}.fa-phone-square,.fa-square-phone{--fa:"\f098"}.fa-unlock{--fa:"\f09c"}.fa-credit-card,.fa-credit-card-alt{--fa:"\f09d"}.fa-feed,.fa-rss{--fa:"\f09e"}.fa-hard-drive,.fa-hdd{--fa:"\f0a0"}.fa-bullhorn{--fa:"\f0a1"}.fa-certificate{--fa:"\f0a3"}.fa-hand-point-right{--fa:"\f0a4"}.fa-hand-point-left{--fa:"\f0a5"}.fa-hand-point-up{--fa:"\f0a6"}.fa-hand-point-down{--fa:"\f0a7"}.fa-arrow-circle-left,.fa-circle-arrow-left{--fa:"\f0a8"}.fa-arrow-circle-right,.fa-circle-arrow-right{--fa:"\f0a9"}.fa-arrow-circle-up,.fa-circle-arrow-up{--fa:"\f0aa"}.fa-arrow-circle-down,.fa-circle-arrow-down{--fa:"\f0ab"}.fa-globe{--fa:"\f0ac"}.fa-wrench{--fa:"\f0ad"}.fa-list-check,.fa-tasks{--fa:"\f0ae"}.fa-filter{--fa:"\f0b0"}.fa-briefcase{--fa:"\f0b1"}.fa-arrows-alt,.fa-up-down-left-right{--fa:"\f0b2"}.fa-users{--fa:"\f0c0"}.fa-chain,.fa-link{--fa:"\f0c1"}.fa-cloud{--fa:"\f0c2"}.fa-flask{--fa:"\f0c3"}.fa-cut,.fa-scissors{--fa:"\f0c4"}.fa-copy{--fa:"\f0c5"}.fa-paperclip{--fa:"\f0c6"}.fa-floppy-disk,.fa-save{--fa:"\f0c7"}.fa-square{--fa:"\f0c8"}.fa-bars,.fa-navicon{--fa:"\f0c9"}.fa-list-dots,.fa-list-ul{--fa:"\f0ca"}.fa-list-1-2,.fa-list-numeric,.fa-list-ol{--fa:"\f0cb"}.fa-strikethrough{--fa:"\f0cc"}.fa-underline{--fa:"\f0cd"}.fa-table{--fa:"\f0ce"}.fa-magic,.fa-wand-magic{--fa:"\f0d0"}.fa-truck{--fa:"\f0d1"}.fa-money-bill{--fa:"\f0d6"}.fa-caret-down{--fa:"\f0d7"}.fa-caret-up{--fa:"\f0d8"}.fa-caret-left{--fa:"\f0d9"}.fa-caret-right{--fa:"\f0da"}.fa-columns,.fa-table-columns{--fa:"\f0db"}.fa-sort,.fa-unsorted{--fa:"\f0dc"}.fa-sort-desc,.fa-sort-down{--fa:"\f0dd"}.fa-sort-asc,.fa-sort-up{--fa:"\f0de"}.fa-envelope{--fa:"\f0e0"}.fa-arrow-left-rotate,.fa-arrow-rotate-back,.fa-arrow-rotate-backward,.fa-arrow-rotate-left,.fa-undo{--fa:"\f0e2"}.fa-gavel,.fa-legal{--fa:"\f0e3"}.fa-bolt,.fa-zap{--fa:"\f0e7"}.fa-sitemap{--fa:"\f0e8"}.fa-umbrella{--fa:"\f0e9"}.fa-file-clipboard,.fa-paste{--fa:"\f0ea"}.fa-lightbulb{--fa:"\f0eb"}.fa-arrow-right-arrow-left,.fa-exchange{--fa:"\f0ec"}.fa-cloud-arrow-down,.fa-cloud-download,.fa-cloud-download-alt{--fa:"\f0ed"}.fa-cloud-arrow-up,.fa-cloud-upload,.fa-cloud-upload-alt{--fa:"\f0ee"}.fa-user-doctor,.fa-user-md{--fa:"\f0f0"}.fa-stethoscope{--fa:"\f0f1"}.fa-suitcase{--fa:"\f0f2"}.fa-bell{--fa:"\f0f3"}.fa-coffee,.fa-mug-saucer{--fa:"\f0f4"}.fa-hospital,.fa-hospital-alt,.fa-hospital-wide{--fa:"\f0f8"}.fa-ambulance,.fa-truck-medical{--fa:"\f0f9"}.fa-medkit,.fa-suitcase-medical{--fa:"\f0fa"}.fa-fighter-jet,.fa-jet-fighter{--fa:"\f0fb"}.fa-beer,.fa-beer-mug-empty{--fa:"\f0fc"}.fa-h-square,.fa-square-h{--fa:"\f0fd"}.fa-plus-square,.fa-square-plus{--fa:"\f0fe"}.fa-angle-double-left,.fa-angles-left{--fa:"\f100"}.fa-angle-double-right,.fa-angles-right{--fa:"\f101"}.fa-angle-double-up,.fa-angles-up{--fa:"\f102"}.fa-angle-double-down,.fa-angles-down{--fa:"\f103"}.fa-angle-left{--fa:"\f104"}.fa-angle-right{--fa:"\f105"}.fa-angle-up{--fa:"\f106"}.fa-angle-down{--fa:"\f107"}.fa-laptop{--fa:"\f109"}.fa-tablet-button{--fa:"\f10a"}.fa-mobile-button{--fa:"\f10b"}.fa-quote-left,.fa-quote-left-alt{--fa:"\f10d"}.fa-quote-right,.fa-quote-right-alt{--fa:"\f10e"}.fa-spinner{--fa:"\f110"}.fa-circle{--fa:"\f111"}.fa-face-smile,.fa-smile{--fa:"\f118"}.fa-face-frown,.fa-frown{--fa:"\f119"}.fa-face-meh,.fa-meh{--fa:"\f11a"}.fa-gamepad{--fa:"\f11b"}.fa-keyboard{--fa:"\f11c"}.fa-flag-checkered{--fa:"\f11e"}.fa-terminal{--fa:"\f120"}.fa-code{--fa:"\f121"}.fa-mail-reply-all,.fa-reply-all{--fa:"\f122"}.fa-location-arrow{--fa:"\f124"}.fa-crop{--fa:"\f125"}.fa-code-branch{--fa:"\f126"}.fa-chain-broken,.fa-chain-slash,.fa-link-slash,.fa-unlink{--fa:"\f127"}.fa-info{--fa:"\f129"}.fa-superscript{--fa:"\f12b"}.fa-subscript{--fa:"\f12c"}.fa-eraser{--fa:"\f12d"}.fa-puzzle-piece{--fa:"\f12e"}.fa-microphone{--fa:"\f130"}.fa-microphone-slash{--fa:"\f131"}.fa-shield,.fa-shield-blank{--fa:"\f132"}.fa-calendar{--fa:"\f133"}.fa-fire-extinguisher{--fa:"\f134"}.fa-rocket{--fa:"\f135"}.fa-chevron-circle-left,.fa-circle-chevron-left{--fa:"\f137"}.fa-chevron-circle-right,.fa-circle-chevron-right{--fa:"\f138"}.fa-chevron-circle-up,.fa-circle-chevron-up{--fa:"\f139"}.fa-chevron-circle-down,.fa-circle-chevron-down{--fa:"\f13a"}.fa-anchor{--fa:"\f13d"}.fa-unlock-alt,.fa-unlock-keyhole{--fa:"\f13e"}.fa-bullseye{--fa:"\f140"}.fa-ellipsis,.fa-ellipsis-h{--fa:"\f141"}.fa-ellipsis-v,.fa-ellipsis-vertical{--fa:"\f142"}.fa-rss-square,.fa-square-rss{--fa:"\f143"}.fa-circle-play,.fa-play-circle{--fa:"\f144"}.fa-ticket{--fa:"\f145"}.fa-minus-square,.fa-square-minus{--fa:"\f146"}.fa-arrow-turn-up,.fa-level-up{--fa:"\f148"}.fa-arrow-turn-down,.fa-level-down{--fa:"\f149"}.fa-check-square,.fa-square-check{--fa:"\f14a"}.fa-pen-square,.fa-pencil-square,.fa-square-pen{--fa:"\f14b"}.fa-external-link-square,.fa-square-arrow-up-right{--fa:"\f14c"}.fa-share-from-square,.fa-share-square{--fa:"\f14d"}.fa-compass{--fa:"\f14e"}.fa-caret-square-down,.fa-square-caret-down{--fa:"\f150"}.fa-caret-square-up,.fa-square-caret-up{--fa:"\f151"}.fa-caret-square-right,.fa-square-caret-right{--fa:"\f152"}.fa-eur,.fa-euro,.fa-euro-sign{--fa:"\f153"}.fa-gbp,.fa-pound-sign,.fa-sterling-sign{--fa:"\f154"}.fa-rupee,.fa-rupee-sign{--fa:"\f156"}.fa-cny,.fa-jpy,.fa-rmb,.fa-yen,.fa-yen-sign{--fa:"\f157"}.fa-rouble,.fa-rub,.fa-ruble,.fa-ruble-sign{--fa:"\f158"}.fa-krw,.fa-won,.fa-won-sign{--fa:"\f159"}.fa-file{--fa:"\f15b"}.fa-file-alt,.fa-file-lines,.fa-file-text{--fa:"\f15c"}.fa-arrow-down-a-z,.fa-sort-alpha-asc,.fa-sort-alpha-down{--fa:"\f15d"}.fa-arrow-up-a-z,.fa-sort-alpha-up{--fa:"\f15e"}.fa-arrow-down-wide-short,.fa-sort-amount-asc,.fa-sort-amount-down{--fa:"\f160"}.fa-arrow-up-wide-short,.fa-sort-amount-up{--fa:"\f161"}.fa-arrow-down-1-9,.fa-sort-numeric-asc,.fa-sort-numeric-down{--fa:"\f162"}.fa-arrow-up-1-9,.fa-sort-numeric-up{--fa:"\f163"}.fa-thumbs-up{--fa:"\f164"}.fa-thumbs-down{--fa:"\f165"}.fa-arrow-down-long,.fa-long-arrow-down{--fa:"\f175"}.fa-arrow-up-long,.fa-long-arrow-up{--fa:"\f176"}.fa-arrow-left-long,.fa-long-arrow-left{--fa:"\f177"}.fa-arrow-right-long,.fa-long-arrow-right{--fa:"\f178"}.fa-female,.fa-person-dress{--fa:"\f182"}.fa-male,.fa-person{--fa:"\f183"}.fa-sun{--fa:"\f185"}.fa-moon{--fa:"\f186"}.fa-archive,.fa-box-archive{--fa:"\f187"}.fa-bug{--fa:"\f188"}.fa-caret-square-left,.fa-square-caret-left{--fa:"\f191"}.fa-circle-dot,.fa-dot-circle{--fa:"\f192"}.fa-wheelchair{--fa:"\f193"}.fa-lira-sign{--fa:"\f195"}.fa-shuttle-space,.fa-space-shuttle{--fa:"\f197"}.fa-envelope-square,.fa-square-envelope{--fa:"\f199"}.fa-bank,.fa-building-columns,.fa-institution,.fa-museum,.fa-university{--fa:"\f19c"}.fa-graduation-cap,.fa-mortar-board{--fa:"\f19d"}.fa-language{--fa:"\f1ab"}.fa-fax{--fa:"\f1ac"}.fa-building{--fa:"\f1ad"}.fa-child{--fa:"\f1ae"}.fa-paw{--fa:"\f1b0"}.fa-cube{--fa:"\f1b2"}.fa-cubes{--fa:"\f1b3"}.fa-recycle{--fa:"\f1b8"}.fa-automobile,.fa-car{--fa:"\f1b9"}.fa-cab,.fa-taxi{--fa:"\f1ba"}.fa-tree{--fa:"\f1bb"}.fa-database{--fa:"\f1c0"}.fa-file-pdf{--fa:"\f1c1"}.fa-file-word{--fa:"\f1c2"}.fa-file-excel{--fa:"\f1c3"}.fa-file-powerpoint{--fa:"\f1c4"}.fa-file-image{--fa:"\f1c5"}.fa-file-archive,.fa-file-zipper{--fa:"\f1c6"}.fa-file-audio{--fa:"\f1c7"}.fa-file-video{--fa:"\f1c8"}.fa-file-code{--fa:"\f1c9"}.fa-life-ring{--fa:"\f1cd"}.fa-circle-notch{--fa:"\f1ce"}.fa-paper-plane{--fa:"\f1d8"}.fa-clock-rotate-left,.fa-history{--fa:"\f1da"}.fa-header,.fa-heading{--fa:"\f1dc"}.fa-paragraph{--fa:"\f1dd"}.fa-sliders,.fa-sliders-h{--fa:"\f1de"}.fa-share-alt,.fa-share-nodes{--fa:"\f1e0"}.fa-share-alt-square,.fa-square-share-nodes{--fa:"\f1e1"}.fa-bomb{--fa:"\f1e2"}.fa-futbol,.fa-futbol-ball,.fa-soccer-ball{--fa:"\f1e3"}.fa-teletype,.fa-tty{--fa:"\f1e4"}.fa-binoculars{--fa:"\f1e5"}.fa-plug{--fa:"\f1e6"}.fa-newspaper{--fa:"\f1ea"}.fa-wifi,.fa-wifi-3,.fa-wifi-strong{--fa:"\f1eb"}.fa-calculator{--fa:"\f1ec"}.fa-bell-slash{--fa:"\f1f6"}.fa-trash{--fa:"\f1f8"}.fa-copyright{--fa:"\f1f9"}.fa-eye-dropper,.fa-eye-dropper-empty,.fa-eyedropper{--fa:"\f1fb"}.fa-paint-brush,.fa-paintbrush{--fa:"\f1fc"}.fa-birthday-cake,.fa-cake,.fa-cake-candles{--fa:"\f1fd"}.fa-area-chart,.fa-chart-area{--fa:"\f1fe"}.fa-chart-pie,.fa-pie-chart{--fa:"\f200"}.fa-chart-line,.fa-line-chart{--fa:"\f201"}.fa-toggle-off{--fa:"\f204"}.fa-toggle-on{--fa:"\f205"}.fa-bicycle{--fa:"\f206"}.fa-bus{--fa:"\f207"}.fa-closed-captioning{--fa:"\f20a"}.fa-ils,.fa-shekel,.fa-shekel-sign,.fa-sheqel,.fa-sheqel-sign{--fa:"\f20b"}.fa-cart-plus{--fa:"\f217"}.fa-cart-arrow-down{--fa:"\f218"}.fa-diamond{--fa:"\f219"}.fa-ship{--fa:"\f21a"}.fa-user-secret{--fa:"\f21b"}.fa-motorcycle{--fa:"\f21c"}.fa-street-view{--fa:"\f21d"}.fa-heart-pulse,.fa-heartbeat{--fa:"\f21e"}.fa-venus{--fa:"\f221"}.fa-mars{--fa:"\f222"}.fa-mercury{--fa:"\f223"}.fa-mars-and-venus{--fa:"\f224"}.fa-transgender,.fa-transgender-alt{--fa:"\f225"}.fa-venus-double{--fa:"\f226"}.fa-mars-double{--fa:"\f227"}.fa-venus-mars{--fa:"\f228"}.fa-mars-stroke{--fa:"\f229"}.fa-mars-stroke-up,.fa-mars-stroke-v{--fa:"\f22a"}.fa-mars-stroke-h,.fa-mars-stroke-right{--fa:"\f22b"}.fa-neuter{--fa:"\f22c"}.fa-genderless{--fa:"\f22d"}.fa-server{--fa:"\f233"}.fa-user-plus{--fa:"\f234"}.fa-user-times,.fa-user-xmark{--fa:"\f235"}.fa-bed{--fa:"\f236"}.fa-train{--fa:"\f238"}.fa-subway,.fa-train-subway{--fa:"\f239"}.fa-battery,.fa-battery-5,.fa-battery-full{--fa:"\f240"}.fa-battery-4,.fa-battery-three-quarters{--fa:"\f241"}.fa-battery-3,.fa-battery-half{--fa:"\f242"}.fa-battery-2,.fa-battery-quarter{--fa:"\f243"}.fa-battery-0,.fa-battery-empty{--fa:"\f244"}.fa-arrow-pointer,.fa-mouse-pointer{--fa:"\f245"}.fa-i-cursor{--fa:"\f246"}.fa-object-group{--fa:"\f247"}.fa-object-ungroup{--fa:"\f248"}.fa-note-sticky,.fa-sticky-note{--fa:"\f249"}.fa-clone{--fa:"\f24d"}.fa-balance-scale,.fa-scale-balanced{--fa:"\f24e"}.fa-hourglass-1,.fa-hourglass-start{--fa:"\f251"}.fa-hourglass-2,.fa-hourglass-half{--fa:"\f252"}.fa-hourglass-3,.fa-hourglass-end{--fa:"\f253"}.fa-hourglass,.fa-hourglass-empty{--fa:"\f254"}.fa-hand-back-fist,.fa-hand-rock{--fa:"\f255"}.fa-hand,.fa-hand-paper{--fa:"\f256"}.fa-hand-scissors{--fa:"\f257"}.fa-hand-lizard{--fa:"\f258"}.fa-hand-spock{--fa:"\f259"}.fa-hand-pointer{--fa:"\f25a"}.fa-hand-peace{--fa:"\f25b"}.fa-trademark{--fa:"\f25c"}.fa-registered{--fa:"\f25d"}.fa-television,.fa-tv,.fa-tv-alt{--fa:"\f26c"}.fa-calendar-plus{--fa:"\f271"}.fa-calendar-minus{--fa:"\f272"}.fa-calendar-times,.fa-calendar-xmark{--fa:"\f273"}.fa-calendar-check{--fa:"\f274"}.fa-industry{--fa:"\f275"}.fa-map-pin{--fa:"\f276"}.fa-map-signs,.fa-signs-post{--fa:"\f277"}.fa-map{--fa:"\f279"}.fa-comment-alt,.fa-message{--fa:"\f27a"}.fa-circle-pause,.fa-pause-circle{--fa:"\f28b"}.fa-circle-stop,.fa-stop-circle{--fa:"\f28d"}.fa-bag-shopping,.fa-shopping-bag{--fa:"\f290"}.fa-basket-shopping,.fa-shopping-basket{--fa:"\f291"}.fa-universal-access{--fa:"\f29a"}.fa-blind,.fa-person-walking-with-cane{--fa:"\f29d"}.fa-audio-description{--fa:"\f29e"}.fa-phone-volume,.fa-volume-control-phone{--fa:"\f2a0"}.fa-braille{--fa:"\f2a1"}.fa-assistive-listening-systems,.fa-ear-listen{--fa:"\f2a2"}.fa-american-sign-language-interpreting,.fa-asl-interpreting,.fa-hands-american-sign-language-interpreting,.fa-hands-asl-interpreting{--fa:"\f2a3"}.fa-deaf,.fa-deafness,.fa-ear-deaf,.fa-hard-of-hearing{--fa:"\f2a4"}.fa-hands,.fa-sign-language,.fa-signing{--fa:"\f2a7"}.fa-eye-low-vision,.fa-low-vision{--fa:"\f2a8"}.fa-handshake,.fa-handshake-alt,.fa-handshake-simple{--fa:"\f2b5"}.fa-envelope-open{--fa:"\f2b6"}.fa-address-book,.fa-contact-book{--fa:"\f2b9"}.fa-address-card,.fa-contact-card,.fa-vcard{--fa:"\f2bb"}.fa-circle-user,.fa-user-circle{--fa:"\f2bd"}.fa-id-badge{--fa:"\f2c1"}.fa-drivers-license,.fa-id-card{--fa:"\f2c2"}.fa-temperature-4,.fa-temperature-full,.fa-thermometer-4,.fa-thermometer-full{--fa:"\f2c7"}.fa-temperature-3,.fa-temperature-three-quarters,.fa-thermometer-3,.fa-thermometer-three-quarters{--fa:"\f2c8"}.fa-temperature-2,.fa-temperature-half,.fa-thermometer-2,.fa-thermometer-half{--fa:"\f2c9"}.fa-temperature-1,.fa-temperature-quarter,.fa-thermometer-1,.fa-thermometer-quarter{--fa:"\f2ca"}.fa-temperature-0,.fa-temperature-empty,.fa-thermometer-0,.fa-thermometer-empty{--fa:"\f2cb"}.fa-shower{--fa:"\f2cc"}.fa-bath,.fa-bathtub{--fa:"\f2cd"}.fa-podcast{--fa:"\f2ce"}.fa-window-maximize{--fa:"\f2d0"}.fa-window-minimize{--fa:"\f2d1"}.fa-window-restore{--fa:"\f2d2"}.fa-square-xmark,.fa-times-square,.fa-xmark-square{--fa:"\f2d3"}.fa-microchip{--fa:"\f2db"}.fa-snowflake{--fa:"\f2dc"}.fa-spoon,.fa-utensil-spoon{--fa:"\f2e5"}.fa-cutlery,.fa-utensils{--fa:"\f2e7"}.fa-rotate-back,.fa-rotate-backward,.fa-rotate-left,.fa-undo-alt{--fa:"\f2ea"}.fa-trash-alt,.fa-trash-can{--fa:"\f2ed"}.fa-rotate,.fa-sync-alt{--fa:"\f2f1"}.fa-stopwatch{--fa:"\f2f2"}.fa-right-from-bracket,.fa-sign-out-alt{--fa:"\f2f5"}.fa-right-to-bracket,.fa-sign-in-alt{--fa:"\f2f6"}.fa-redo-alt,.fa-rotate-forward,.fa-rotate-right{--fa:"\f2f9"}.fa-poo{--fa:"\f2fe"}.fa-images{--fa:"\f302"}.fa-pencil,.fa-pencil-alt{--fa:"\f303"}.fa-pen{--fa:"\f304"}.fa-pen-alt,.fa-pen-clip{--fa:"\f305"}.fa-octagon{--fa:"\f306"}.fa-down-long,.fa-long-arrow-alt-down{--fa:"\f309"}.fa-left-long,.fa-long-arrow-alt-left{--fa:"\f30a"}.fa-long-arrow-alt-right,.fa-right-long{--fa:"\f30b"}.fa-long-arrow-alt-up,.fa-up-long{--fa:"\f30c"}.fa-hexagon{--fa:"\f312"}.fa-file-edit,.fa-file-pen{--fa:"\f31c"}.fa-expand-arrows-alt,.fa-maximize{--fa:"\f31e"}.fa-clipboard{--fa:"\f328"}.fa-arrows-alt-h,.fa-left-right{--fa:"\f337"}.fa-arrows-alt-v,.fa-up-down{--fa:"\f338"}.fa-alarm-clock{--fa:"\f34e"}.fa-arrow-alt-circle-down,.fa-circle-down{--fa:"\f358"}.fa-arrow-alt-circle-left,.fa-circle-left{--fa:"\f359"}.fa-arrow-alt-circle-right,.fa-circle-right{--fa:"\f35a"}.fa-arrow-alt-circle-up,.fa-circle-up{--fa:"\f35b"}.fa-external-link-alt,.fa-up-right-from-square{--fa:"\f35d"}.fa-external-link-square-alt,.fa-square-up-right{--fa:"\f360"}.fa-exchange-alt,.fa-right-left{--fa:"\f362"}.fa-repeat{--fa:"\f363"}.fa-code-commit{--fa:"\f386"}.fa-code-merge{--fa:"\f387"}.fa-desktop,.fa-desktop-alt{--fa:"\f390"}.fa-gem{--fa:"\f3a5"}.fa-level-down-alt,.fa-turn-down{--fa:"\f3be"}.fa-level-up-alt,.fa-turn-up{--fa:"\f3bf"}.fa-lock-open{--fa:"\f3c1"}.fa-location-dot,.fa-map-marker-alt{--fa:"\f3c5"}.fa-microphone-alt,.fa-microphone-lines{--fa:"\f3c9"}.fa-mobile-alt,.fa-mobile-screen-button{--fa:"\f3cd"}.fa-mobile,.fa-mobile-android,.fa-mobile-phone{--fa:"\f3ce"}.fa-mobile-android-alt,.fa-mobile-screen{--fa:"\f3cf"}.fa-money-bill-1,.fa-money-bill-alt{--fa:"\f3d1"}.fa-phone-slash{--fa:"\f3dd"}.fa-image-portrait,.fa-portrait{--fa:"\f3e0"}.fa-mail-reply,.fa-reply{--fa:"\f3e5"}.fa-shield-alt,.fa-shield-halved{--fa:"\f3ed"}.fa-tablet-alt,.fa-tablet-screen-button{--fa:"\f3fa"}.fa-tablet,.fa-tablet-android{--fa:"\f3fb"}.fa-ticket-alt,.fa-ticket-simple{--fa:"\f3ff"}.fa-rectangle-times,.fa-rectangle-xmark,.fa-times-rectangle,.fa-window-close{--fa:"\f410"}.fa-compress-alt,.fa-down-left-and-up-right-to-center{--fa:"\f422"}.fa-expand-alt,.fa-up-right-and-down-left-from-center{--fa:"\f424"}.fa-baseball-bat-ball{--fa:"\f432"}.fa-baseball,.fa-baseball-ball{--fa:"\f433"}.fa-basketball,.fa-basketball-ball{--fa:"\f434"}.fa-bowling-ball{--fa:"\f436"}.fa-chess{--fa:"\f439"}.fa-chess-bishop{--fa:"\f43a"}.fa-chess-board{--fa:"\f43c"}.fa-chess-king{--fa:"\f43f"}.fa-chess-knight{--fa:"\f441"}.fa-chess-pawn{--fa:"\f443"}.fa-chess-queen{--fa:"\f445"}.fa-chess-rook{--fa:"\f447"}.fa-dumbbell{--fa:"\f44b"}.fa-football,.fa-football-ball{--fa:"\f44e"}.fa-golf-ball,.fa-golf-ball-tee{--fa:"\f450"}.fa-hockey-puck{--fa:"\f453"}.fa-broom-ball,.fa-quidditch,.fa-quidditch-broom-ball{--fa:"\f458"}.fa-square-full{--fa:"\f45c"}.fa-ping-pong-paddle-ball,.fa-table-tennis,.fa-table-tennis-paddle-ball{--fa:"\f45d"}.fa-volleyball,.fa-volleyball-ball{--fa:"\f45f"}.fa-allergies,.fa-hand-dots{--fa:"\f461"}.fa-band-aid,.fa-bandage{--fa:"\f462"}.fa-box{--fa:"\f466"}.fa-boxes,.fa-boxes-alt,.fa-boxes-stacked{--fa:"\f468"}.fa-briefcase-medical{--fa:"\f469"}.fa-burn,.fa-fire-flame-simple{--fa:"\f46a"}.fa-capsules{--fa:"\f46b"}.fa-clipboard-check{--fa:"\f46c"}.fa-clipboard-list{--fa:"\f46d"}.fa-diagnoses,.fa-person-dots-from-line{--fa:"\f470"}.fa-dna{--fa:"\f471"}.fa-dolly,.fa-dolly-box{--fa:"\f472"}.fa-cart-flatbed,.fa-dolly-flatbed{--fa:"\f474"}.fa-file-medical{--fa:"\f477"}.fa-file-medical-alt,.fa-file-waveform{--fa:"\f478"}.fa-first-aid,.fa-kit-medical{--fa:"\f479"}.fa-circle-h,.fa-hospital-symbol{--fa:"\f47e"}.fa-id-card-alt,.fa-id-card-clip{--fa:"\f47f"}.fa-notes-medical{--fa:"\f481"}.fa-pallet{--fa:"\f482"}.fa-pills{--fa:"\f484"}.fa-prescription-bottle{--fa:"\f485"}.fa-prescription-bottle-alt,.fa-prescription-bottle-medical{--fa:"\f486"}.fa-bed-pulse,.fa-procedures{--fa:"\f487"}.fa-shipping-fast,.fa-truck-fast{--fa:"\f48b"}.fa-smoking{--fa:"\f48d"}.fa-syringe{--fa:"\f48e"}.fa-tablets{--fa:"\f490"}.fa-thermometer{--fa:"\f491"}.fa-vial{--fa:"\f492"}.fa-vials{--fa:"\f493"}.fa-warehouse{--fa:"\f494"}.fa-weight,.fa-weight-scale{--fa:"\f496"}.fa-x-ray{--fa:"\f497"}.fa-box-open{--fa:"\f49e"}.fa-comment-dots,.fa-commenting{--fa:"\f4ad"}.fa-comment-slash{--fa:"\f4b3"}.fa-couch{--fa:"\f4b8"}.fa-circle-dollar-to-slot,.fa-donate{--fa:"\f4b9"}.fa-dove{--fa:"\f4ba"}.fa-hand-holding{--fa:"\f4bd"}.fa-hand-holding-heart{--fa:"\f4be"}.fa-hand-holding-dollar,.fa-hand-holding-usd{--fa:"\f4c0"}.fa-hand-holding-droplet,.fa-hand-holding-water{--fa:"\f4c1"}.fa-hands-holding{--fa:"\f4c2"}.fa-hands-helping,.fa-handshake-angle{--fa:"\f4c4"}.fa-parachute-box{--fa:"\f4cd"}.fa-people-carry,.fa-people-carry-box{--fa:"\f4ce"}.fa-piggy-bank{--fa:"\f4d3"}.fa-ribbon{--fa:"\f4d6"}.fa-route{--fa:"\f4d7"}.fa-seedling,.fa-sprout{--fa:"\f4d8"}.fa-sign,.fa-sign-hanging{--fa:"\f4d9"}.fa-face-smile-wink,.fa-smile-wink{--fa:"\f4da"}.fa-tape{--fa:"\f4db"}.fa-truck-loading,.fa-truck-ramp-box{--fa:"\f4de"}.fa-truck-moving{--fa:"\f4df"}.fa-video-slash{--fa:"\f4e2"}.fa-wine-glass{--fa:"\f4e3"}.fa-user-astronaut{--fa:"\f4fb"}.fa-user-check{--fa:"\f4fc"}.fa-user-clock{--fa:"\f4fd"}.fa-user-cog,.fa-user-gear{--fa:"\f4fe"}.fa-user-edit,.fa-user-pen{--fa:"\f4ff"}.fa-user-friends,.fa-user-group{--fa:"\f500"}.fa-user-graduate{--fa:"\f501"}.fa-user-lock{--fa:"\f502"}.fa-user-minus{--fa:"\f503"}.fa-user-ninja{--fa:"\f504"}.fa-user-shield{--fa:"\f505"}.fa-user-alt-slash,.fa-user-large-slash,.fa-user-slash{--fa:"\f506"}.fa-user-tag{--fa:"\f507"}.fa-user-tie{--fa:"\f508"}.fa-users-cog,.fa-users-gear{--fa:"\f509"}.fa-balance-scale-left,.fa-scale-unbalanced{--fa:"\f515"}.fa-balance-scale-right,.fa-scale-unbalanced-flip{--fa:"\f516"}.fa-blender{--fa:"\f517"}.fa-book-open{--fa:"\f518"}.fa-broadcast-tower,.fa-tower-broadcast{--fa:"\f519"}.fa-broom{--fa:"\f51a"}.fa-blackboard,.fa-chalkboard{--fa:"\f51b"}.fa-chalkboard-teacher,.fa-chalkboard-user{--fa:"\f51c"}.fa-church{--fa:"\f51d"}.fa-coins{--fa:"\f51e"}.fa-compact-disc{--fa:"\f51f"}.fa-crow{--fa:"\f520"}.fa-crown{--fa:"\f521"}.fa-dice{--fa:"\f522"}.fa-dice-five{--fa:"\f523"}.fa-dice-four{--fa:"\f524"}.fa-dice-one{--fa:"\f525"}.fa-dice-six{--fa:"\f526"}.fa-dice-three{--fa:"\f527"}.fa-dice-two{--fa:"\f528"}.fa-divide{--fa:"\f529"}.fa-door-closed{--fa:"\f52a"}.fa-door-open{--fa:"\f52b"}.fa-feather{--fa:"\f52d"}.fa-frog{--fa:"\f52e"}.fa-gas-pump{--fa:"\f52f"}.fa-glasses{--fa:"\f530"}.fa-greater-than-equal{--fa:"\f532"}.fa-helicopter{--fa:"\f533"}.fa-infinity{--fa:"\f534"}.fa-kiwi-bird{--fa:"\f535"}.fa-less-than-equal{--fa:"\f537"}.fa-memory{--fa:"\f538"}.fa-microphone-alt-slash,.fa-microphone-lines-slash{--fa:"\f539"}.fa-money-bill-wave{--fa:"\f53a"}.fa-money-bill-1-wave,.fa-money-bill-wave-alt{--fa:"\f53b"}.fa-money-check{--fa:"\f53c"}.fa-money-check-alt,.fa-money-check-dollar{--fa:"\f53d"}.fa-not-equal{--fa:"\f53e"}.fa-palette{--fa:"\f53f"}.fa-parking,.fa-square-parking{--fa:"\f540"}.fa-diagram-project,.fa-project-diagram{--fa:"\f542"}.fa-receipt{--fa:"\f543"}.fa-robot{--fa:"\f544"}.fa-ruler{--fa:"\f545"}.fa-ruler-combined{--fa:"\f546"}.fa-ruler-horizontal{--fa:"\f547"}.fa-ruler-vertical{--fa:"\f548"}.fa-school{--fa:"\f549"}.fa-screwdriver{--fa:"\f54a"}.fa-shoe-prints{--fa:"\f54b"}.fa-skull{--fa:"\f54c"}.fa-ban-smoking,.fa-smoking-ban{--fa:"\f54d"}.fa-store{--fa:"\f54e"}.fa-shop,.fa-store-alt{--fa:"\f54f"}.fa-bars-staggered,.fa-reorder,.fa-stream{--fa:"\f550"}.fa-stroopwafel{--fa:"\f551"}.fa-toolbox{--fa:"\f552"}.fa-shirt,.fa-t-shirt,.fa-tshirt{--fa:"\f553"}.fa-person-walking,.fa-walking{--fa:"\f554"}.fa-wallet{--fa:"\f555"}.fa-angry,.fa-face-angry{--fa:"\f556"}.fa-archway{--fa:"\f557"}.fa-atlas,.fa-book-atlas{--fa:"\f558"}.fa-award{--fa:"\f559"}.fa-backspace,.fa-delete-left{--fa:"\f55a"}.fa-bezier-curve{--fa:"\f55b"}.fa-bong{--fa:"\f55c"}.fa-brush{--fa:"\f55d"}.fa-bus-alt,.fa-bus-simple{--fa:"\f55e"}.fa-cannabis{--fa:"\f55f"}.fa-check-double{--fa:"\f560"}.fa-cocktail,.fa-martini-glass-citrus{--fa:"\f561"}.fa-bell-concierge,.fa-concierge-bell{--fa:"\f562"}.fa-cookie{--fa:"\f563"}.fa-cookie-bite{--fa:"\f564"}.fa-crop-alt,.fa-crop-simple{--fa:"\f565"}.fa-digital-tachograph,.fa-tachograph-digital{--fa:"\f566"}.fa-dizzy,.fa-face-dizzy{--fa:"\f567"}.fa-compass-drafting,.fa-drafting-compass{--fa:"\f568"}.fa-drum{--fa:"\f569"}.fa-drum-steelpan{--fa:"\f56a"}.fa-feather-alt,.fa-feather-pointed{--fa:"\f56b"}.fa-file-contract{--fa:"\f56c"}.fa-file-arrow-down,.fa-file-download{--fa:"\f56d"}.fa-arrow-right-from-file,.fa-file-export{--fa:"\f56e"}.fa-arrow-right-to-file,.fa-file-import{--fa:"\f56f"}.fa-file-invoice{--fa:"\f570"}.fa-file-invoice-dollar{--fa:"\f571"}.fa-file-prescription{--fa:"\f572"}.fa-file-signature{--fa:"\f573"}.fa-file-arrow-up,.fa-file-upload{--fa:"\f574"}.fa-fill{--fa:"\f575"}.fa-fill-drip{--fa:"\f576"}.fa-fingerprint{--fa:"\f577"}.fa-fish{--fa:"\f578"}.fa-face-flushed,.fa-flushed{--fa:"\f579"}.fa-face-frown-open,.fa-frown-open{--fa:"\f57a"}.fa-glass-martini-alt,.fa-martini-glass{--fa:"\f57b"}.fa-earth-africa,.fa-globe-africa{--fa:"\f57c"}.fa-earth,.fa-earth-america,.fa-earth-americas,.fa-globe-americas{--fa:"\f57d"}.fa-earth-asia,.fa-globe-asia{--fa:"\f57e"}.fa-face-grimace,.fa-grimace{--fa:"\f57f"}.fa-face-grin,.fa-grin{--fa:"\f580"}.fa-face-grin-wide,.fa-grin-alt{--fa:"\f581"}.fa-face-grin-beam,.fa-grin-beam{--fa:"\f582"}.fa-face-grin-beam-sweat,.fa-grin-beam-sweat{--fa:"\f583"}.fa-face-grin-hearts,.fa-grin-hearts{--fa:"\f584"}.fa-face-grin-squint,.fa-grin-squint{--fa:"\f585"}.fa-face-grin-squint-tears,.fa-grin-squint-tears{--fa:"\f586"}.fa-face-grin-stars,.fa-grin-stars{--fa:"\f587"}.fa-face-grin-tears,.fa-grin-tears{--fa:"\f588"}.fa-face-grin-tongue,.fa-grin-tongue{--fa:"\f589"}.fa-face-grin-tongue-squint,.fa-grin-tongue-squint{--fa:"\f58a"}.fa-face-grin-tongue-wink,.fa-grin-tongue-wink{--fa:"\f58b"}.fa-face-grin-wink,.fa-grin-wink{--fa:"\f58c"}.fa-grid-horizontal,.fa-grip,.fa-grip-horizontal{--fa:"\f58d"}.fa-grid-vertical,.fa-grip-vertical{--fa:"\f58e"}.fa-headset{--fa:"\f590"}.fa-highlighter{--fa:"\f591"}.fa-hot-tub,.fa-hot-tub-person{--fa:"\f593"}.fa-hotel{--fa:"\f594"}.fa-joint{--fa:"\f595"}.fa-face-kiss,.fa-kiss{--fa:"\f596"}.fa-face-kiss-beam,.fa-kiss-beam{--fa:"\f597"}.fa-face-kiss-wink-heart,.fa-kiss-wink-heart{--fa:"\f598"}.fa-face-laugh,.fa-laugh{--fa:"\f599"}.fa-face-laugh-beam,.fa-laugh-beam{--fa:"\f59a"}.fa-face-laugh-squint,.fa-laugh-squint{--fa:"\f59b"}.fa-face-laugh-wink,.fa-laugh-wink{--fa:"\f59c"}.fa-cart-flatbed-suitcase,.fa-luggage-cart{--fa:"\f59d"}.fa-map-location,.fa-map-marked{--fa:"\f59f"}.fa-map-location-dot,.fa-map-marked-alt{--fa:"\f5a0"}.fa-marker{--fa:"\f5a1"}.fa-medal{--fa:"\f5a2"}.fa-face-meh-blank,.fa-meh-blank{--fa:"\f5a4"}.fa-face-rolling-eyes,.fa-meh-rolling-eyes{--fa:"\f5a5"}.fa-monument{--fa:"\f5a6"}.fa-mortar-pestle{--fa:"\f5a7"}.fa-paint-roller{--fa:"\f5aa"}.fa-passport{--fa:"\f5ab"}.fa-pen-fancy{--fa:"\f5ac"}.fa-pen-nib{--fa:"\f5ad"}.fa-pen-ruler,.fa-pencil-ruler{--fa:"\f5ae"}.fa-plane-arrival{--fa:"\f5af"}.fa-plane-departure{--fa:"\f5b0"}.fa-prescription{--fa:"\f5b1"}.fa-face-sad-cry,.fa-sad-cry{--fa:"\f5b3"}.fa-face-sad-tear,.fa-sad-tear{--fa:"\f5b4"}.fa-shuttle-van,.fa-van-shuttle{--fa:"\f5b6"}.fa-signature{--fa:"\f5b7"}.fa-face-smile-beam,.fa-smile-beam{--fa:"\f5b8"}.fa-solar-panel{--fa:"\f5ba"}.fa-spa{--fa:"\f5bb"}.fa-splotch{--fa:"\f5bc"}.fa-spray-can{--fa:"\f5bd"}.fa-stamp{--fa:"\f5bf"}.fa-star-half-alt,.fa-star-half-stroke{--fa:"\f5c0"}.fa-suitcase-rolling{--fa:"\f5c1"}.fa-face-surprise,.fa-surprise{--fa:"\f5c2"}.fa-swatchbook{--fa:"\f5c3"}.fa-person-swimming,.fa-swimmer{--fa:"\f5c4"}.fa-ladder-water,.fa-swimming-pool,.fa-water-ladder{--fa:"\f5c5"}.fa-droplet-slash,.fa-tint-slash{--fa:"\f5c7"}.fa-face-tired,.fa-tired{--fa:"\f5c8"}.fa-tooth{--fa:"\f5c9"}.fa-umbrella-beach{--fa:"\f5ca"}.fa-weight-hanging{--fa:"\f5cd"}.fa-wine-glass-alt,.fa-wine-glass-empty{--fa:"\f5ce"}.fa-air-freshener,.fa-spray-can-sparkles{--fa:"\f5d0"}.fa-apple-alt,.fa-apple-whole{--fa:"\f5d1"}.fa-atom{--fa:"\f5d2"}.fa-bone{--fa:"\f5d7"}.fa-book-open-reader,.fa-book-reader{--fa:"\f5da"}.fa-brain{--fa:"\f5dc"}.fa-car-alt,.fa-car-rear{--fa:"\f5de"}.fa-battery-car,.fa-car-battery{--fa:"\f5df"}.fa-car-burst,.fa-car-crash{--fa:"\f5e1"}.fa-car-side{--fa:"\f5e4"}.fa-charging-station{--fa:"\f5e7"}.fa-diamond-turn-right,.fa-directions{--fa:"\f5eb"}.fa-draw-polygon,.fa-vector-polygon{--fa:"\f5ee"}.fa-laptop-code{--fa:"\f5fc"}.fa-layer-group{--fa:"\f5fd"}.fa-location,.fa-location-crosshairs{--fa:"\f601"}.fa-lungs{--fa:"\f604"}.fa-microscope{--fa:"\f610"}.fa-oil-can{--fa:"\f613"}.fa-poop{--fa:"\f619"}.fa-shapes,.fa-triangle-circle-square{--fa:"\f61f"}.fa-star-of-life{--fa:"\f621"}.fa-dashboard,.fa-gauge,.fa-gauge-med,.fa-tachometer-alt-average{--fa:"\f624"}.fa-gauge-high,.fa-tachometer-alt,.fa-tachometer-alt-fast{--fa:"\f625"}.fa-gauge-simple,.fa-gauge-simple-med,.fa-tachometer-average{--fa:"\f629"}.fa-gauge-simple-high,.fa-tachometer,.fa-tachometer-fast{--fa:"\f62a"}.fa-teeth{--fa:"\f62e"}.fa-teeth-open{--fa:"\f62f"}.fa-masks-theater,.fa-theater-masks{--fa:"\f630"}.fa-traffic-light{--fa:"\f637"}.fa-truck-monster{--fa:"\f63b"}.fa-truck-pickup{--fa:"\f63c"}.fa-ad,.fa-rectangle-ad{--fa:"\f641"}.fa-ankh{--fa:"\f644"}.fa-bible,.fa-book-bible{--fa:"\f647"}.fa-briefcase-clock,.fa-business-time{--fa:"\f64a"}.fa-city{--fa:"\f64f"}.fa-comment-dollar{--fa:"\f651"}.fa-comments-dollar{--fa:"\f653"}.fa-cross{--fa:"\f654"}.fa-dharmachakra{--fa:"\f655"}.fa-envelope-open-text{--fa:"\f658"}.fa-folder-minus{--fa:"\f65d"}.fa-folder-plus{--fa:"\f65e"}.fa-filter-circle-dollar,.fa-funnel-dollar{--fa:"\f662"}.fa-gopuram{--fa:"\f664"}.fa-hamsa{--fa:"\f665"}.fa-bahai,.fa-haykal{--fa:"\f666"}.fa-jedi{--fa:"\f669"}.fa-book-journal-whills,.fa-journal-whills{--fa:"\f66a"}.fa-kaaba{--fa:"\f66b"}.fa-khanda{--fa:"\f66d"}.fa-landmark{--fa:"\f66f"}.fa-envelopes-bulk,.fa-mail-bulk{--fa:"\f674"}.fa-menorah{--fa:"\f676"}.fa-mosque{--fa:"\f678"}.fa-om{--fa:"\f679"}.fa-pastafarianism,.fa-spaghetti-monster-flying{--fa:"\f67b"}.fa-peace{--fa:"\f67c"}.fa-place-of-worship{--fa:"\f67f"}.fa-poll,.fa-square-poll-vertical{--fa:"\f681"}.fa-poll-h,.fa-square-poll-horizontal{--fa:"\f682"}.fa-person-praying,.fa-pray{--fa:"\f683"}.fa-hands-praying,.fa-praying-hands{--fa:"\f684"}.fa-book-quran,.fa-quran{--fa:"\f687"}.fa-magnifying-glass-dollar,.fa-search-dollar{--fa:"\f688"}.fa-magnifying-glass-location,.fa-search-location{--fa:"\f689"}.fa-socks{--fa:"\f696"}.fa-square-root-alt,.fa-square-root-variable{--fa:"\f698"}.fa-star-and-crescent{--fa:"\f699"}.fa-star-of-david{--fa:"\f69a"}.fa-synagogue{--fa:"\f69b"}.fa-scroll-torah,.fa-torah{--fa:"\f6a0"}.fa-torii-gate{--fa:"\f6a1"}.fa-vihara{--fa:"\f6a7"}.fa-volume,.fa-volume-medium{--fa:"\f6a8"}.fa-volume-mute,.fa-volume-times,.fa-volume-xmark{--fa:"\f6a9"}.fa-yin-yang{--fa:"\f6ad"}.fa-blender-phone{--fa:"\f6b6"}.fa-book-dead,.fa-book-skull{--fa:"\f6b7"}.fa-campground{--fa:"\f6bb"}.fa-cat{--fa:"\f6be"}.fa-chair{--fa:"\f6c0"}.fa-cloud-moon{--fa:"\f6c3"}.fa-cloud-sun{--fa:"\f6c4"}.fa-cow{--fa:"\f6c8"}.fa-dice-d20{--fa:"\f6cf"}.fa-dice-d6{--fa:"\f6d1"}.fa-dog{--fa:"\f6d3"}.fa-dragon{--fa:"\f6d5"}.fa-drumstick-bite{--fa:"\f6d7"}.fa-dungeon{--fa:"\f6d9"}.fa-file-csv{--fa:"\f6dd"}.fa-fist-raised,.fa-hand-fist{--fa:"\f6de"}.fa-ghost{--fa:"\f6e2"}.fa-hammer{--fa:"\f6e3"}.fa-hanukiah{--fa:"\f6e6"}.fa-hat-wizard{--fa:"\f6e8"}.fa-hiking,.fa-person-hiking{--fa:"\f6ec"}.fa-hippo{--fa:"\f6ed"}.fa-horse{--fa:"\f6f0"}.fa-house-chimney-crack,.fa-house-damage{--fa:"\f6f1"}.fa-hryvnia,.fa-hryvnia-sign{--fa:"\f6f2"}.fa-mask{--fa:"\f6fa"}.fa-mountain{--fa:"\f6fc"}.fa-network-wired{--fa:"\f6ff"}.fa-otter{--fa:"\f700"}.fa-ring{--fa:"\f70b"}.fa-person-running,.fa-running{--fa:"\f70c"}.fa-scroll{--fa:"\f70e"}.fa-skull-crossbones{--fa:"\f714"}.fa-slash{--fa:"\f715"}.fa-spider{--fa:"\f717"}.fa-toilet-paper,.fa-toilet-paper-alt,.fa-toilet-paper-blank{--fa:"\f71e"}.fa-tractor{--fa:"\f722"}.fa-user-injured{--fa:"\f728"}.fa-vr-cardboard{--fa:"\f729"}.fa-wand-sparkles{--fa:"\f72b"}.fa-wind{--fa:"\f72e"}.fa-wine-bottle{--fa:"\f72f"}.fa-cloud-meatball{--fa:"\f73b"}.fa-cloud-moon-rain{--fa:"\f73c"}.fa-cloud-rain{--fa:"\f73d"}.fa-cloud-showers-heavy{--fa:"\f740"}.fa-cloud-sun-rain{--fa:"\f743"}.fa-democrat{--fa:"\f747"}.fa-flag-usa{--fa:"\f74d"}.fa-hurricane{--fa:"\f751"}.fa-landmark-alt,.fa-landmark-dome{--fa:"\f752"}.fa-meteor{--fa:"\f753"}.fa-person-booth{--fa:"\f756"}.fa-poo-bolt,.fa-poo-storm{--fa:"\f75a"}.fa-rainbow{--fa:"\f75b"}.fa-republican{--fa:"\f75e"}.fa-smog{--fa:"\f75f"}.fa-temperature-high{--fa:"\f769"}.fa-temperature-low{--fa:"\f76b"}.fa-cloud-bolt,.fa-thunderstorm{--fa:"\f76c"}.fa-tornado{--fa:"\f76f"}.fa-volcano{--fa:"\f770"}.fa-check-to-slot,.fa-vote-yea{--fa:"\f772"}.fa-water{--fa:"\f773"}.fa-baby{--fa:"\f77c"}.fa-baby-carriage,.fa-carriage-baby{--fa:"\f77d"}.fa-biohazard{--fa:"\f780"}.fa-blog{--fa:"\f781"}.fa-calendar-day{--fa:"\f783"}.fa-calendar-week{--fa:"\f784"}.fa-candy-cane{--fa:"\f786"}.fa-carrot{--fa:"\f787"}.fa-cash-register{--fa:"\f788"}.fa-compress-arrows-alt,.fa-minimize{--fa:"\f78c"}.fa-dumpster{--fa:"\f793"}.fa-dumpster-fire{--fa:"\f794"}.fa-ethernet{--fa:"\f796"}.fa-gifts{--fa:"\f79c"}.fa-champagne-glasses,.fa-glass-cheers{--fa:"\f79f"}.fa-glass-whiskey,.fa-whiskey-glass{--fa:"\f7a0"}.fa-earth-europe,.fa-globe-europe{--fa:"\f7a2"}.fa-grip-lines{--fa:"\f7a4"}.fa-grip-lines-vertical{--fa:"\f7a5"}.fa-guitar{--fa:"\f7a6"}.fa-heart-broken,.fa-heart-crack{--fa:"\f7a9"}.fa-holly-berry{--fa:"\f7aa"}.fa-horse-head{--fa:"\f7ab"}.fa-icicles{--fa:"\f7ad"}.fa-igloo{--fa:"\f7ae"}.fa-mitten{--fa:"\f7b5"}.fa-mug-hot{--fa:"\f7b6"}.fa-radiation{--fa:"\f7b9"}.fa-circle-radiation,.fa-radiation-alt{--fa:"\f7ba"}.fa-restroom{--fa:"\f7bd"}.fa-satellite{--fa:"\f7bf"}.fa-satellite-dish{--fa:"\f7c0"}.fa-sd-card{--fa:"\f7c2"}.fa-sim-card{--fa:"\f7c4"}.fa-person-skating,.fa-skating{--fa:"\f7c5"}.fa-person-skiing,.fa-skiing{--fa:"\f7c9"}.fa-person-skiing-nordic,.fa-skiing-nordic{--fa:"\f7ca"}.fa-sleigh{--fa:"\f7cc"}.fa-comment-sms,.fa-sms{--fa:"\f7cd"}.fa-person-snowboarding,.fa-snowboarding{--fa:"\f7ce"}.fa-snowman{--fa:"\f7d0"}.fa-snowplow{--fa:"\f7d2"}.fa-tenge,.fa-tenge-sign{--fa:"\f7d7"}.fa-toilet{--fa:"\f7d8"}.fa-screwdriver-wrench,.fa-tools{--fa:"\f7d9"}.fa-cable-car,.fa-tram{--fa:"\f7da"}.fa-fire-alt,.fa-fire-flame-curved{--fa:"\f7e4"}.fa-bacon{--fa:"\f7e5"}.fa-book-medical{--fa:"\f7e6"}.fa-bread-slice{--fa:"\f7ec"}.fa-cheese{--fa:"\f7ef"}.fa-clinic-medical,.fa-house-chimney-medical{--fa:"\f7f2"}.fa-clipboard-user{--fa:"\f7f3"}.fa-comment-medical{--fa:"\f7f5"}.fa-crutch{--fa:"\f7f7"}.fa-disease{--fa:"\f7fa"}.fa-egg{--fa:"\f7fb"}.fa-folder-tree{--fa:"\f802"}.fa-burger,.fa-hamburger{--fa:"\f805"}.fa-hand-middle-finger{--fa:"\f806"}.fa-hard-hat,.fa-hat-hard,.fa-helmet-safety{--fa:"\f807"}.fa-hospital-user{--fa:"\f80d"}.fa-hotdog{--fa:"\f80f"}.fa-ice-cream{--fa:"\f810"}.fa-laptop-medical{--fa:"\f812"}.fa-pager{--fa:"\f815"}.fa-pepper-hot{--fa:"\f816"}.fa-pizza-slice{--fa:"\f818"}.fa-sack-dollar{--fa:"\f81d"}.fa-book-tanakh,.fa-tanakh{--fa:"\f827"}.fa-bars-progress,.fa-tasks-alt{--fa:"\f828"}.fa-trash-arrow-up,.fa-trash-restore{--fa:"\f829"}.fa-trash-can-arrow-up,.fa-trash-restore-alt{--fa:"\f82a"}.fa-user-nurse{--fa:"\f82f"}.fa-wave-square{--fa:"\f83e"}.fa-biking,.fa-person-biking{--fa:"\f84a"}.fa-border-all{--fa:"\f84c"}.fa-border-none{--fa:"\f850"}.fa-border-style,.fa-border-top-left{--fa:"\f853"}.fa-digging,.fa-person-digging{--fa:"\f85e"}.fa-fan{--fa:"\f863"}.fa-heart-music-camera-bolt,.fa-icons{--fa:"\f86d"}.fa-phone-alt,.fa-phone-flip{--fa:"\f879"}.fa-phone-square-alt,.fa-square-phone-flip{--fa:"\f87b"}.fa-photo-film,.fa-photo-video{--fa:"\f87c"}.fa-remove-format,.fa-text-slash{--fa:"\f87d"}.fa-arrow-down-z-a,.fa-sort-alpha-desc,.fa-sort-alpha-down-alt{--fa:"\f881"}.fa-arrow-up-z-a,.fa-sort-alpha-up-alt{--fa:"\f882"}.fa-arrow-down-short-wide,.fa-sort-amount-desc,.fa-sort-amount-down-alt{--fa:"\f884"}.fa-arrow-up-short-wide,.fa-sort-amount-up-alt{--fa:"\f885"}.fa-arrow-down-9-1,.fa-sort-numeric-desc,.fa-sort-numeric-down-alt{--fa:"\f886"}.fa-arrow-up-9-1,.fa-sort-numeric-up-alt{--fa:"\f887"}.fa-spell-check{--fa:"\f891"}.fa-voicemail{--fa:"\f897"}.fa-hat-cowboy{--fa:"\f8c0"}.fa-hat-cowboy-side{--fa:"\f8c1"}.fa-computer-mouse,.fa-mouse{--fa:"\f8cc"}.fa-radio{--fa:"\f8d7"}.fa-record-vinyl{--fa:"\f8d9"}.fa-walkie-talkie{--fa:"\f8ef"}.fa-caravan{--fa:"\f8ff"}
:host,:root{--fa-family-brands:"Font Awesome 7 Brands";--fa-font-brands:normal 400 1em/1 var(--fa-family-brands)}@font-face{font-family:"Font Awesome 7 Brands";font-style:normal;font-weight:400;font-display:block;src:url(/assets/fa-brands-400-70c632ba.woff2)}.fa-brands,.fa-classic.fa-brands,.fab{--fa-family:var(--fa-family-brands);--fa-style:400}.fa-firefox-browser{--fa:"\e007"}.fa-ideal{--fa:"\e013"}.fa-microblog{--fa:"\e01a"}.fa-pied-piper-square,.fa-square-pied-piper{--fa:"\e01e"}.fa-unity{--fa:"\e049"}.fa-dailymotion{--fa:"\e052"}.fa-instagram-square,.fa-square-instagram{--fa:"\e055"}.fa-mixer{--fa:"\e056"}.fa-shopify{--fa:"\e057"}.fa-deezer{--fa:"\e077"}.fa-edge-legacy{--fa:"\e078"}.fa-google-pay{--fa:"\e079"}.fa-rust{--fa:"\e07a"}.fa-tiktok{--fa:"\e07b"}.fa-unsplash{--fa:"\e07c"}.fa-cloudflare{--fa:"\e07d"}.fa-guilded{--fa:"\e07e"}.fa-hive{--fa:"\e07f"}.fa-42-group,.fa-innosoft{--fa:"\e080"}.fa-instalod{--fa:"\e081"}.fa-octopus-deploy{--fa:"\e082"}.fa-perbyte{--fa:"\e083"}.fa-uncharted{--fa:"\e084"}.fa-watchman-monitoring{--fa:"\e087"}.fa-wodu{--fa:"\e088"}.fa-wirsindhandwerk,.fa-wsh{--fa:"\e2d0"}.fa-bots{--fa:"\e340"}.fa-cmplid{--fa:"\e360"}.fa-bilibili{--fa:"\e3d9"}.fa-golang{--fa:"\e40f"}.fa-pix{--fa:"\e43a"}.fa-sitrox{--fa:"\e44a"}.fa-hashnode{--fa:"\e499"}.fa-meta{--fa:"\e49b"}.fa-padlet{--fa:"\e4a0"}.fa-nfc-directional{--fa:"\e530"}.fa-nfc-symbol{--fa:"\e531"}.fa-screenpal{--fa:"\e570"}.fa-space-awesome{--fa:"\e5ac"}.fa-square-font-awesome{--fa:"\e5ad"}.fa-gitlab-square,.fa-square-gitlab{--fa:"\e5ae"}.fa-odysee{--fa:"\e5c6"}.fa-stubber{--fa:"\e5c7"}.fa-debian{--fa:"\e60b"}.fa-shoelace{--fa:"\e60c"}.fa-threads{--fa:"\e618"}.fa-square-threads{--fa:"\e619"}.fa-square-x-twitter{--fa:"\e61a"}.fa-x-twitter{--fa:"\e61b"}.fa-opensuse{--fa:"\e62b"}.fa-letterboxd{--fa:"\e62d"}.fa-square-letterboxd{--fa:"\e62e"}.fa-mintbit{--fa:"\e62f"}.fa-google-scholar{--fa:"\e63b"}.fa-brave{--fa:"\e63c"}.fa-brave-reverse{--fa:"\e63d"}.fa-pixiv{--fa:"\e640"}.fa-upwork{--fa:"\e641"}.fa-webflow{--fa:"\e65c"}.fa-signal-messenger{--fa:"\e663"}.fa-bluesky{--fa:"\e671"}.fa-jxl{--fa:"\e67b"}.fa-square-upwork{--fa:"\e67c"}.fa-web-awesome{--fa:"\e682"}.fa-square-web-awesome{--fa:"\e683"}.fa-square-web-awesome-stroke{--fa:"\e684"}.fa-dart-lang{--fa:"\e693"}.fa-flutter{--fa:"\e694"}.fa-files-pinwheel{--fa:"\e69f"}.fa-css{--fa:"\e6a2"}.fa-square-bluesky{--fa:"\e6a3"}.fa-openai{--fa:"\e7cf"}.fa-square-linkedin{--fa:"\e7d0"}.fa-cash-app{--fa:"\e7d4"}.fa-disqus{--fa:"\e7d5"}.fa-11ty,.fa-eleventy{--fa:"\e7d6"}.fa-kakao-talk{--fa:"\e7d7"}.fa-linktree{--fa:"\e7d8"}.fa-notion{--fa:"\e7d9"}.fa-pandora{--fa:"\e7da"}.fa-pixelfed{--fa:"\e7db"}.fa-tidal{--fa:"\e7dc"}.fa-vsco{--fa:"\e7dd"}.fa-w3c{--fa:"\e7de"}.fa-lumon{--fa:"\e7e2"}.fa-lumon-drop{--fa:"\e7e3"}.fa-square-figma{--fa:"\e7e4"}.fa-tex{--fa:"\e7ff"}.fa-duolingo{--fa:"\e812"}.fa-supportnow{--fa:"\e833"}.fa-tor-browser{--fa:"\e838"}.fa-typescript{--fa:"\e840"}.fa-square-deskpro{--fa:"\e844"}.fa-circle-zulip{--fa:"\e851"}.fa-julia{--fa:"\e852"}.fa-zulip{--fa:"\e853"}.fa-unison{--fa:"\e854"}.fa-bgg,.fa-board-game-geek{--fa:"\e855"}.fa-ko-fi{--fa:"\e856"}.fa-kubernetes{--fa:"\e857"}.fa-postgresql{--fa:"\e858"}.fa-scaleway{--fa:"\e859"}.fa-venmo{--fa:"\e85a"}.fa-venmo-v{--fa:"\e85b"}.fa-unreal-engine{--fa:"\e85c"}.fa-globaleaks{--fa:"\e85d"}.fa-solana{--fa:"\e85e"}.fa-threema{--fa:"\e85f"}.fa-forgejo{--fa:"\e860"}.fa-claude{--fa:"\e861"}.fa-gitee{--fa:"\e863"}.fa-xmpp{--fa:"\e864"}.fa-fediverse{--fa:"\e865"}.fa-tailwind-css{--fa:"\e866"}.fa-arch-linux{--fa:"\e867"}.fa-svelte{--fa:"\e868"}.fa-hugging-face{--fa:"\e869"}.fa-leetcode{--fa:"\e86a"}.fa-openstreetmap{--fa:"\e86b"}.fa-ultralytics{--fa:"\e86d"}.fa-ultralytics-hub{--fa:"\e86e"}.fa-ultralytics-yolo{--fa:"\e86f"}.fa-obsidian{--fa:"\e879"}.fa-zoom{--fa:"\e87b"}.fa-vim{--fa:"\e88a"}.fa-symfonycasts{--fa:"\e8ab"}.fa-square-twitter,.fa-twitter-square{--fa:"\f081"}.fa-facebook-square,.fa-square-facebook{--fa:"\f082"}.fa-linkedin{--fa:"\f08c"}.fa-github-square,.fa-square-github{--fa:"\f092"}.fa-twitter{--fa:"\f099"}.fa-facebook{--fa:"\f09a"}.fa-github{--fa:"\f09b"}.fa-pinterest{--fa:"\f0d2"}.fa-pinterest-square,.fa-square-pinterest{--fa:"\f0d3"}.fa-google-plus-square,.fa-square-google-plus{--fa:"\f0d4"}.fa-google-plus-g{--fa:"\f0d5"}.fa-linkedin-in{--fa:"\f0e1"}.fa-github-alt{--fa:"\f113"}.fa-maxcdn{--fa:"\f136"}.fa-html5{--fa:"\f13b"}.fa-css3{--fa:"\f13c"}.fa-btc{--fa:"\f15a"}.fa-youtube{--fa:"\f167"}.fa-xing{--fa:"\f168"}.fa-square-xing,.fa-xing-square{--fa:"\f169"}.fa-dropbox{--fa:"\f16b"}.fa-stack-overflow{--fa:"\f16c"}.fa-instagram{--fa:"\f16d"}.fa-flickr{--fa:"\f16e"}.fa-adn{--fa:"\f170"}.fa-bitbucket{--fa:"\f171"}.fa-tumblr{--fa:"\f173"}.fa-square-tumblr,.fa-tumblr-square{--fa:"\f174"}.fa-apple{--fa:"\f179"}.fa-windows{--fa:"\f17a"}.fa-android{--fa:"\f17b"}.fa-linux{--fa:"\f17c"}.fa-dribbble{--fa:"\f17d"}.fa-skype{--fa:"\f17e"}.fa-foursquare{--fa:"\f180"}.fa-trello{--fa:"\f181"}.fa-gratipay{--fa:"\f184"}.fa-vk{--fa:"\f189"}.fa-weibo{--fa:"\f18a"}.fa-renren{--fa:"\f18b"}.fa-pagelines{--fa:"\f18c"}.fa-stack-exchange{--fa:"\f18d"}.fa-square-vimeo,.fa-vimeo-square{--fa:"\f194"}.fa-slack,.fa-slack-hash{--fa:"\f198"}.fa-wordpress{--fa:"\f19a"}.fa-openid{--fa:"\f19b"}.fa-yahoo{--fa:"\f19e"}.fa-google{--fa:"\f1a0"}.fa-reddit{--fa:"\f1a1"}.fa-reddit-square,.fa-square-reddit{--fa:"\f1a2"}.fa-stumbleupon-circle{--fa:"\f1a3"}.fa-stumbleupon{--fa:"\f1a4"}.fa-delicious{--fa:"\f1a5"}.fa-digg{--fa:"\f1a6"}.fa-pied-piper-pp{--fa:"\f1a7"}.fa-pied-piper-alt{--fa:"\f1a8"}.fa-drupal{--fa:"\f1a9"}.fa-joomla{--fa:"\f1aa"}.fa-behance{--fa:"\f1b4"}.fa-behance-square,.fa-square-behance{--fa:"\f1b5"}.fa-steam{--fa:"\f1b6"}.fa-square-steam,.fa-steam-square{--fa:"\f1b7"}.fa-spotify{--fa:"\f1bc"}.fa-deviantart{--fa:"\f1bd"}.fa-soundcloud{--fa:"\f1be"}.fa-vine{--fa:"\f1ca"}.fa-codepen{--fa:"\f1cb"}.fa-jsfiddle{--fa:"\f1cc"}.fa-rebel{--fa:"\f1d0"}.fa-empire{--fa:"\f1d1"}.fa-git-square,.fa-square-git{--fa:"\f1d2"}.fa-git{--fa:"\f1d3"}.fa-hacker-news{--fa:"\f1d4"}.fa-tencent-weibo{--fa:"\f1d5"}.fa-qq{--fa:"\f1d6"}.fa-weixin{--fa:"\f1d7"}.fa-slideshare{--fa:"\f1e7"}.fa-twitch{--fa:"\f1e8"}.fa-yelp{--fa:"\f1e9"}.fa-paypal{--fa:"\f1ed"}.fa-google-wallet{--fa:"\f1ee"}.fa-cc-visa{--fa:"\f1f0"}.fa-cc-mastercard{--fa:"\f1f1"}.fa-cc-discover{--fa:"\f1f2"}.fa-cc-amex{--fa:"\f1f3"}.fa-cc-paypal{--fa:"\f1f4"}.fa-cc-stripe{--fa:"\f1f5"}.fa-lastfm{--fa:"\f202"}.fa-lastfm-square,.fa-square-lastfm{--fa:"\f203"}.fa-ioxhost{--fa:"\f208"}.fa-angellist{--fa:"\f209"}.fa-buysellads{--fa:"\f20d"}.fa-connectdevelop{--fa:"\f20e"}.fa-dashcube{--fa:"\f210"}.fa-forumbee{--fa:"\f211"}.fa-leanpub{--fa:"\f212"}.fa-sellsy{--fa:"\f213"}.fa-shirtsinbulk{--fa:"\f214"}.fa-simplybuilt{--fa:"\f215"}.fa-skyatlas{--fa:"\f216"}.fa-pinterest-p{--fa:"\f231"}.fa-whatsapp{--fa:"\f232"}.fa-viacoin{--fa:"\f237"}.fa-medium,.fa-medium-m{--fa:"\f23a"}.fa-y-combinator{--fa:"\f23b"}.fa-optin-monster{--fa:"\f23c"}.fa-opencart{--fa:"\f23d"}.fa-expeditedssl{--fa:"\f23e"}.fa-cc-jcb{--fa:"\f24b"}.fa-cc-diners-club{--fa:"\f24c"}.fa-creative-commons{--fa:"\f25e"}.fa-gg{--fa:"\f260"}.fa-gg-circle{--fa:"\f261"}.fa-odnoklassniki{--fa:"\f263"}.fa-odnoklassniki-square,.fa-square-odnoklassniki{--fa:"\f264"}.fa-get-pocket{--fa:"\f265"}.fa-wikipedia-w{--fa:"\f266"}.fa-safari{--fa:"\f267"}.fa-chrome{--fa:"\f268"}.fa-firefox{--fa:"\f269"}.fa-opera{--fa:"\f26a"}.fa-internet-explorer{--fa:"\f26b"}.fa-contao{--fa:"\f26d"}.fa-500px{--fa:"\f26e"}.fa-amazon{--fa:"\f270"}.fa-houzz{--fa:"\f27c"}.fa-vimeo-v{--fa:"\f27d"}.fa-black-tie{--fa:"\f27e"}.fa-fonticons{--fa:"\f280"}.fa-reddit-alien{--fa:"\f281"}.fa-edge{--fa:"\f282"}.fa-codiepie{--fa:"\f284"}.fa-modx{--fa:"\f285"}.fa-fort-awesome{--fa:"\f286"}.fa-usb{--fa:"\f287"}.fa-product-hunt{--fa:"\f288"}.fa-mixcloud{--fa:"\f289"}.fa-scribd{--fa:"\f28a"}.fa-bluetooth{--fa:"\f293"}.fa-bluetooth-b{--fa:"\f294"}.fa-gitlab{--fa:"\f296"}.fa-wpbeginner{--fa:"\f297"}.fa-wpforms{--fa:"\f298"}.fa-envira{--fa:"\f299"}.fa-glide{--fa:"\f2a5"}.fa-glide-g{--fa:"\f2a6"}.fa-viadeo{--fa:"\f2a9"}.fa-square-viadeo,.fa-viadeo-square{--fa:"\f2aa"}.fa-snapchat,.fa-snapchat-ghost{--fa:"\f2ab"}.fa-snapchat-square,.fa-square-snapchat{--fa:"\f2ad"}.fa-pied-piper{--fa:"\f2ae"}.fa-first-order{--fa:"\f2b0"}.fa-yoast{--fa:"\f2b1"}.fa-themeisle{--fa:"\f2b2"}.fa-google-plus{--fa:"\f2b3"}.fa-font-awesome,.fa-font-awesome-flag,.fa-font-awesome-logo-full{--fa:"\f2b4"}.fa-linode{--fa:"\f2b8"}.fa-quora{--fa:"\f2c4"}.fa-free-code-camp{--fa:"\f2c5"}.fa-telegram,.fa-telegram-plane{--fa:"\f2c6"}.fa-bandcamp{--fa:"\f2d5"}.fa-grav{--fa:"\f2d6"}.fa-etsy{--fa:"\f2d7"}.fa-imdb{--fa:"\f2d8"}.fa-ravelry{--fa:"\f2d9"}.fa-sellcast{--fa:"\f2da"}.fa-superpowers{--fa:"\f2dd"}.fa-wpexplorer{--fa:"\f2de"}.fa-meetup{--fa:"\f2e0"}.fa-font-awesome-alt,.fa-square-font-awesome-stroke{--fa:"\f35c"}.fa-accessible-icon{--fa:"\f368"}.fa-accusoft{--fa:"\f369"}.fa-adversal{--fa:"\f36a"}.fa-affiliatetheme{--fa:"\f36b"}.fa-algolia{--fa:"\f36c"}.fa-amilia{--fa:"\f36d"}.fa-angrycreative{--fa:"\f36e"}.fa-app-store{--fa:"\f36f"}.fa-app-store-ios{--fa:"\f370"}.fa-apper{--fa:"\f371"}.fa-asymmetrik{--fa:"\f372"}.fa-audible{--fa:"\f373"}.fa-avianex{--fa:"\f374"}.fa-aws{--fa:"\f375"}.fa-bimobject{--fa:"\f378"}.fa-bitcoin{--fa:"\f379"}.fa-bity{--fa:"\f37a"}.fa-blackberry{--fa:"\f37b"}.fa-blogger{--fa:"\f37c"}.fa-blogger-b{--fa:"\f37d"}.fa-buromobelexperte{--fa:"\f37f"}.fa-centercode{--fa:"\f380"}.fa-cloudscale{--fa:"\f383"}.fa-cloudsmith{--fa:"\f384"}.fa-cloudversify{--fa:"\f385"}.fa-cpanel{--fa:"\f388"}.fa-css3-alt{--fa:"\f38b"}.fa-cuttlefish{--fa:"\f38c"}.fa-d-and-d{--fa:"\f38d"}.fa-deploydog{--fa:"\f38e"}.fa-deskpro{--fa:"\f38f"}.fa-digital-ocean{--fa:"\f391"}.fa-discord{--fa:"\f392"}.fa-discourse{--fa:"\f393"}.fa-dochub{--fa:"\f394"}.fa-docker{--fa:"\f395"}.fa-draft2digital{--fa:"\f396"}.fa-dribbble-square,.fa-square-dribbble{--fa:"\f397"}.fa-dyalog{--fa:"\f399"}.fa-earlybirds{--fa:"\f39a"}.fa-erlang{--fa:"\f39d"}.fa-facebook-f{--fa:"\f39e"}.fa-facebook-messenger{--fa:"\f39f"}.fa-firstdraft{--fa:"\f3a1"}.fa-fonticons-fi{--fa:"\f3a2"}.fa-fort-awesome-alt{--fa:"\f3a3"}.fa-freebsd{--fa:"\f3a4"}.fa-gitkraken{--fa:"\f3a6"}.fa-gofore{--fa:"\f3a7"}.fa-goodreads{--fa:"\f3a8"}.fa-goodreads-g{--fa:"\f3a9"}.fa-google-drive{--fa:"\f3aa"}.fa-google-play{--fa:"\f3ab"}.fa-gripfire{--fa:"\f3ac"}.fa-grunt{--fa:"\f3ad"}.fa-gulp{--fa:"\f3ae"}.fa-hacker-news-square,.fa-square-hacker-news{--fa:"\f3af"}.fa-hire-a-helper{--fa:"\f3b0"}.fa-hotjar{--fa:"\f3b1"}.fa-hubspot{--fa:"\f3b2"}.fa-itunes{--fa:"\f3b4"}.fa-itunes-note{--fa:"\f3b5"}.fa-jenkins{--fa:"\f3b6"}.fa-joget{--fa:"\f3b7"}.fa-js{--fa:"\f3b8"}.fa-js-square,.fa-square-js{--fa:"\f3b9"}.fa-keycdn{--fa:"\f3ba"}.fa-kickstarter,.fa-square-kickstarter{--fa:"\f3bb"}.fa-kickstarter-k{--fa:"\f3bc"}.fa-laravel{--fa:"\f3bd"}.fa-line{--fa:"\f3c0"}.fa-lyft{--fa:"\f3c3"}.fa-magento{--fa:"\f3c4"}.fa-medapps{--fa:"\f3c6"}.fa-medrt{--fa:"\f3c8"}.fa-microsoft{--fa:"\f3ca"}.fa-mix{--fa:"\f3cb"}.fa-mizuni{--fa:"\f3cc"}.fa-monero{--fa:"\f3d0"}.fa-napster{--fa:"\f3d2"}.fa-node-js{--fa:"\f3d3"}.fa-npm{--fa:"\f3d4"}.fa-ns8{--fa:"\f3d5"}.fa-nutritionix{--fa:"\f3d6"}.fa-page4{--fa:"\f3d7"}.fa-palfed{--fa:"\f3d8"}.fa-patreon{--fa:"\f3d9"}.fa-periscope{--fa:"\f3da"}.fa-phabricator{--fa:"\f3db"}.fa-phoenix-framework{--fa:"\f3dc"}.fa-playstation{--fa:"\f3df"}.fa-pushed{--fa:"\f3e1"}.fa-python{--fa:"\f3e2"}.fa-red-river{--fa:"\f3e3"}.fa-rendact,.fa-wpressr{--fa:"\f3e4"}.fa-replyd{--fa:"\f3e6"}.fa-resolving{--fa:"\f3e7"}.fa-rocketchat{--fa:"\f3e8"}.fa-rockrms{--fa:"\f3e9"}.fa-schlix{--fa:"\f3ea"}.fa-searchengin{--fa:"\f3eb"}.fa-servicestack{--fa:"\f3ec"}.fa-sistrix{--fa:"\f3ee"}.fa-speakap{--fa:"\f3f3"}.fa-staylinked{--fa:"\f3f5"}.fa-steam-symbol{--fa:"\f3f6"}.fa-sticker-mule{--fa:"\f3f7"}.fa-studiovinari{--fa:"\f3f8"}.fa-supple{--fa:"\f3f9"}.fa-uber{--fa:"\f402"}.fa-uikit{--fa:"\f403"}.fa-uniregistry{--fa:"\f404"}.fa-untappd{--fa:"\f405"}.fa-ussunnah{--fa:"\f407"}.fa-vaadin{--fa:"\f408"}.fa-viber{--fa:"\f409"}.fa-vimeo{--fa:"\f40a"}.fa-vnv{--fa:"\f40b"}.fa-square-whatsapp,.fa-whatsapp-square{--fa:"\f40c"}.fa-whmcs{--fa:"\f40d"}.fa-wordpress-simple{--fa:"\f411"}.fa-xbox{--fa:"\f412"}.fa-yandex{--fa:"\f413"}.fa-yandex-international{--fa:"\f414"}.fa-apple-pay{--fa:"\f415"}.fa-cc-apple-pay{--fa:"\f416"}.fa-fly{--fa:"\f417"}.fa-node{--fa:"\f419"}.fa-osi{--fa:"\f41a"}.fa-react{--fa:"\f41b"}.fa-autoprefixer{--fa:"\f41c"}.fa-less{--fa:"\f41d"}.fa-sass{--fa:"\f41e"}.fa-vuejs{--fa:"\f41f"}.fa-angular{--fa:"\f420"}.fa-aviato{--fa:"\f421"}.fa-ember{--fa:"\f423"}.fa-gitter{--fa:"\f426"}.fa-hooli{--fa:"\f427"}.fa-strava{--fa:"\f428"}.fa-stripe{--fa:"\f429"}.fa-stripe-s{--fa:"\f42a"}.fa-typo3{--fa:"\f42b"}.fa-amazon-pay{--fa:"\f42c"}.fa-cc-amazon-pay{--fa:"\f42d"}.fa-ethereum{--fa:"\f42e"}.fa-korvue{--fa:"\f42f"}.fa-elementor{--fa:"\f430"}.fa-square-youtube,.fa-youtube-square{--fa:"\f431"}.fa-flipboard{--fa:"\f44d"}.fa-hips{--fa:"\f452"}.fa-php{--fa:"\f457"}.fa-quinscape{--fa:"\f459"}.fa-readme{--fa:"\f4d5"}.fa-java{--fa:"\f4e4"}.fa-pied-piper-hat{--fa:"\f4e5"}.fa-creative-commons-by{--fa:"\f4e7"}.fa-creative-commons-nc{--fa:"\f4e8"}.fa-creative-commons-nc-eu{--fa:"\f4e9"}.fa-creative-commons-nc-jp{--fa:"\f4ea"}.fa-creative-commons-nd{--fa:"\f4eb"}.fa-creative-commons-pd{--fa:"\f4ec"}.fa-creative-commons-pd-alt{--fa:"\f4ed"}.fa-creative-commons-remix{--fa:"\f4ee"}.fa-creative-commons-sa{--fa:"\f4ef"}.fa-creative-commons-sampling{--fa:"\f4f0"}.fa-creative-commons-sampling-plus{--fa:"\f4f1"}.fa-creative-commons-share{--fa:"\f4f2"}.fa-creative-commons-zero{--fa:"\f4f3"}.fa-ebay{--fa:"\f4f4"}.fa-keybase{--fa:"\f4f5"}.fa-mastodon{--fa:"\f4f6"}.fa-r-project{--fa:"\f4f7"}.fa-researchgate{--fa:"\f4f8"}.fa-teamspeak{--fa:"\f4f9"}.fa-first-order-alt{--fa:"\f50a"}.fa-fulcrum{--fa:"\f50b"}.fa-galactic-republic{--fa:"\f50c"}.fa-galactic-senate{--fa:"\f50d"}.fa-jedi-order{--fa:"\f50e"}.fa-mandalorian{--fa:"\f50f"}.fa-old-republic{--fa:"\f510"}.fa-phoenix-squadron{--fa:"\f511"}.fa-sith{--fa:"\f512"}.fa-trade-federation{--fa:"\f513"}.fa-wolf-pack-battalion{--fa:"\f514"}.fa-hornbill{--fa:"\f592"}.fa-mailchimp{--fa:"\f59e"}.fa-megaport{--fa:"\f5a3"}.fa-nimblr{--fa:"\f5a8"}.fa-rev{--fa:"\f5b2"}.fa-shopware{--fa:"\f5b5"}.fa-squarespace{--fa:"\f5be"}.fa-themeco{--fa:"\f5c6"}.fa-weebly{--fa:"\f5cc"}.fa-wix{--fa:"\f5cf"}.fa-ello{--fa:"\f5f1"}.fa-hackerrank{--fa:"\f5f7"}.fa-kaggle{--fa:"\f5fa"}.fa-markdown{--fa:"\f60f"}.fa-neos{--fa:"\f612"}.fa-zhihu{--fa:"\f63f"}.fa-alipay{--fa:"\f642"}.fa-the-red-yeti{--fa:"\f69d"}.fa-critical-role{--fa:"\f6c9"}.fa-d-and-d-beyond{--fa:"\f6ca"}.fa-dev{--fa:"\f6cc"}.fa-fantasy-flight-games{--fa:"\f6dc"}.fa-wizards-of-the-coast{--fa:"\f730"}.fa-think-peaks{--fa:"\f731"}.fa-reacteurope{--fa:"\f75d"}.fa-artstation{--fa:"\f77a"}.fa-atlassian{--fa:"\f77b"}.fa-canadian-maple-leaf{--fa:"\f785"}.fa-centos{--fa:"\f789"}.fa-confluence{--fa:"\f78d"}.fa-dhl{--fa:"\f790"}.fa-diaspora{--fa:"\f791"}.fa-fedex{--fa:"\f797"}.fa-fedora{--fa:"\f798"}.fa-figma{--fa:"\f799"}.fa-intercom{--fa:"\f7af"}.fa-invision{--fa:"\f7b0"}.fa-jira{--fa:"\f7b1"}.fa-mendeley{--fa:"\f7b3"}.fa-raspberry-pi{--fa:"\f7bb"}.fa-redhat{--fa:"\f7bc"}.fa-sketch{--fa:"\f7c6"}.fa-sourcetree{--fa:"\f7d3"}.fa-suse{--fa:"\f7d6"}.fa-ubuntu{--fa:"\f7df"}.fa-ups{--fa:"\f7e0"}.fa-usps{--fa:"\f7e1"}.fa-yarn{--fa:"\f7e3"}.fa-airbnb{--fa:"\f834"}.fa-battle-net{--fa:"\f835"}.fa-bootstrap{--fa:"\f836"}.fa-buffer{--fa:"\f837"}.fa-chromecast{--fa:"\f838"}.fa-evernote{--fa:"\f839"}.fa-itch-io{--fa:"\f83a"}.fa-salesforce{--fa:"\f83b"}.fa-speaker-deck{--fa:"\f83c"}.fa-symfony{--fa:"\f83d"}.fa-waze{--fa:"\f83f"}.fa-yammer{--fa:"\f840"}.fa-git-alt{--fa:"\f841"}.fa-stackpath{--fa:"\f842"}.fa-cotton-bureau{--fa:"\f89e"}.fa-buy-n-large{--fa:"\f8a6"}.fa-mdb{--fa:"\f8ca"}.fa-orcid{--fa:"\f8d2"}.fa-swift{--fa:"\f8e1"}.fa-umbraco{--fa:"\f8e8"}:host,:root{--fa-font-regular:normal 400 1em/1 var(--fa-family-classic)}@font-face{font-family:"Font Awesome 7 Free";font-style:normal;font-weight:400;font-display:block;src:url(/assets/fa-regular-400-81aaa834.woff2)}.far{--fa-family:var(--fa-family-classic)}.fa-regular,.far{--fa-style:400}:host,:root{--fa-family-classic:"Font Awesome 7 Free";--fa-font-solid:normal 900 1em/1 var(--fa-family-classic);--fa-style-family-classic:var(--fa-family-classic)}@font-face{font-family:"Font Awesome 7 Free";font-style:normal;font-weight:900;font-display:block;src:url(/assets/fa-solid-900-ff58a6b0.woff2)}.fas{--fa-style:900}.fa-classic,.fas{--fa-family:var(--fa-family-classic)}.fa-solid{--fa-style:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(/assets/fa-brands-400-70c632ba.woff2) format("woff2")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(/assets/fa-solid-900-ff58a6b0.woff2) format("woff2")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(/assets/fa-regular-400-81aaa834.woff2) format("woff2")}@font-face{font-family:"FontAwesome";font-display:block;src:url(/assets/fa-solid-900-ff58a6b0.woff2) format("woff2")}@font-face{font-family:"FontAwesome";font-display:block;src:url(/assets/fa-brands-400-70c632ba.woff2) format("woff2")}@font-face{font-family:"FontAwesome";font-display:block;src:url(/assets/fa-regular-400-81aaa834.woff2) format("woff2");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(data:font/woff2;base64,d09GMk9UVE8AAA/AAAkAAAAAIi4AAA96A4IBAAAAAAAAAAAAAAAAAAAAAAAAAAAAATYCJAQGBmADgRwFiH0AghwHIA22GYUWERHVtH4B/lDAjaHYgPoVT5hsjC2GsZOptOo4yG1beUwR0nj95m5PABbwbw2JNax38ckISWbne6e7NGkzk5t5OtHQ3cQ8E/PgGvBDzYt/8QhfU4ejmw2Ss9r09ODR8l+jtYRSiPjXDe99ioYEJUDICo/AKRIyLZY6g5gb/PN/87fWu+WdLMNMQ049kLkaPl7+P/y/v9+nWsmNny3MZBwpLqIEUgAky2qXQQErAgUkO66A7tm25ybn+/+f01wNrP4u+ymgSuyUUAViDYIh+sbxjfg7VhAd9qRMKrF3BXKBn855NnSt1CQjTJVaYd8BQ++4R20XeJIX0rz/77Q39M65gAwmQQlbFrQfpVQXybLleWPJapb8e0cJ2kLz93Ol/TnMFXfLEn8JhNvbIjqxeXc/2UyOckA5ppQ4m+s0TQFBETgCdMAOCDy5CnvyZI2s0R1fW2MoL1G22ZTgudtjtLzMDwQDEbaWAQIgP8dqAADFS+AKknqe8PfkvO+55v/v91aE9ccAKkA2RADE+AeSboL/4wqvKi8xDkDqIzmV79ZGM7PdnQuhj8FJqIll79DSibQ0sXKXNYRdbRM+GMI2h5rF8zfdMYePtw55PPcmlAgg+mPASPzPwbDv2T3wmL2ThoUXekNwkpY0BDfbwiXSMFqxE24q9TkmWPiKJWh1mORCjilyAEspDGAZW6uwGlensDojrVodGva61vh0aarhKE8bTPCvj1hCK2OYlJVmTImPHEtVTOpYJrK8sJqcmo3VuRet1WnsdOEDcaFhM0UROOQM9KUY5Gdm9T7gPCofd4U7+x9sjlHuZL2RXfHXxYIE8CDvQm6Fk3RDXoiGY+XZ/TOFY9Kk3RCH0nr09srjn4kEqTL9zhy1p4myH+zr56tZWU8/1lvhZTacuYP5Yetw7YwTiDabHECYm7DHjCNR+QyItYjOF8TBoDvl5YcXSOcmKyfPyC0bNnnFhztFF1iXFjO+NknRNJIdlcuQLapKjOCOgXyxwzxWzyqXfZNWqpU/Y/EqBwhFdgdzldTRYQcscirRDqZxtltBIFQcvARqqfPTm9ROQCWXmvAvz+f4mSs4WoOqjmV+MH6r8TTUUn358W2SWZ78vFRvCl7xm11KSkyjY9Zp5ekkhxApAugJxGikosIHs68GiuU/TIwqCywCNlePWfOWfegrUWfqfXZ9wX1xJZZVUaWVN6utxf0m/XN+A0frVZpvr+YYS5WYTP/dyOA2+1jFSuYzlzm0UkIxBYTgjxv2qGr1a33Xe73VE93VHd3WKa2XqzQ0z5i4ND6pAgLVADGAdvICQA+g9DADoyUxaiEZtSRHrSjL/tD/6rdLdWfrbvLaZWUZ628lFTILA4iDzuUuRCDT4zLb9EbNNYDla7prkJb1sf9ps4yByalXLAjno1iDBtIQnk3bt02oZFNS9mGZTLrcFFwuLYcChHY/sdf2tT871c4E9dWb7St8ZWAVxoYfosuJThqeTcueyV1byeNebq+zTldTt9Nbrz8d5hvEG+w16DOMMNxmFGjcVr7HJHKCff1U74jp+nDiWA34AMvXbSjGL/mcxCInGJy+yzwieJF/QXkmwevg9kD53IWNr56dXTHoimkCpx95BLQQ2PxpPpwUV7AFs1Ndo/hfIZh1bJf//v7+Tyj/CT8H3F7A6qmRdgvmMJN2ioW3vZwaYedQL8RNM/O+veVnYH7v9oP5KOyePoBHb+2zIOh0TVD6jONQU9chTV3NEW4mF4VRA0FDA6gRQpnrmRk36EyA73QmLZcDIp2KLDrPqLohc8EhNFtkZE0jyrrGFmN8zNssYeZEJb9VGKGUWXsLkusQmHw/NN1aDVSQDjHXiFlNjOAbroZ8UhfqEVL9nGJP6bpouAIM0lpUyxoihzlDYnQRqe1CUGflRMzbwnKeTGaAqYTQkMV26jweXMYppyDld84jjBqk4oMY8c033Bcj54/JRjgquMTgyBZWMiaNdOECEAMqLkQL5aTRd1h+kIp3SqkDjgI1g5Tk7yLHKacge+vnpnYQKEqpWoaIE2uS1Ml9cKriqrXTBqEEkG0uhcxhNlmmr0Xm3rAWayZV1JQ/KNNVsjN28Y5E7DJbzQZVMSWFKP0dJSXo/7kumXvgf2oJsBI9mQs0tQTGdQlzNUzTUAQoNoE9qz8S+rGufAQyulFq0lpzdbFwf9PZiSkrzYVCwWpdR7DS7IF3L+9f1yMGRZlkLMKQmdJ/1f46jGqaXR3YWhJYu87qJBc0m1RUMczWRag5ADqhkPqxhrDNPT/9UmSkSJfSMvJebDBZ9FdCLUYCv6csAum7yIgZJHSL6fwevL/oN0AP8WsklRyKAJ3g2fB4R6ALyHyUE8EEEuoJmqCGgdCsZtKkGvO8Of70iHhdREid5AMRwUww5Px2EgNkUUlugQRMCSY3ccUbajibX9FEMflNwXQiaqhimrwH4UjnrohSQhM+6lwHbsbDXzobbWNw86+H/znDNiTnVUcM9fYFXauhcs/kUBiETGrooeTa2vWvw27pTjrjFDLT/1sl93DjuteQlbHMGWVs8lqy8qOXl9+MRjp2nQASXcfCwyS5acIVKHjPUa8RjXeMBLjn/fu9yJgF/iaMoK74TfDZTpnSPUd1G4GX8PAX/x9xCS8tengWmzYgucYT8wU0t4ngls/hJGctpOJVoFq+Af2/cjDAPOHFk5P/XXpRtmELfEfS+bCOuQ4L3+ofEPfS5QCO5j0gXqW1urWOvHzQgTEMChC0U5jeEF+pkSyBhwhZI1vB7pTubtmwbzYhsME5PPU0eZ4JHIB5iXSSzwQS0iiHfb0oOtqxA8KUCmMeVEVKnAFvdIPFrkHWdsaZZ8CdZmvR14f0tPqjH2aUMLBmHIMRM7cma2PXWcI9+fDjlrmy0n2PVAr5vPaq06NZRkE2prXUDp0urwStChuHTdAtxMblrCnopM02RUxamAxiQ9KBKEocT1fET438EjShE8NXvGEtoh6YDHprnclg171EKLGCR+PPfF83UQfieAqsqKjjyhMl42Wt1+nrdtq3oT5Q51+AD00vabZETGwF0ZUtwWPqSqkHjF/zNXpgTbmxtQKODCq1o4VYSjmDCqKkdNqxYybf3g1fU1+zn0tjtFC2i5zauLBZqnIy1oRUhWzw1PpO1Y3ttKP6SfenNESUlHAtQyzQ7tqsnhW0mCS7PGnWQGnUeouHk0g+jHIpIjJyBzRtDZKLeLgHpc7RsAHsyZgdFnuoR8VOGyIDBzzuNNh1ioYW0PM7yStZxQrID0pp3LYTOyGW8hAZWL3VDjufx21DyNsDt27Es84ZPD9EQ8+T7UFkoPvBKNAQ92jLGfgvepGe6LSXIUis3EtBzjbcAB1DIyVOPpnD/pL++RY/WOzCaKGWnWJP7OUvObwn95DNskVG3cZsF3DvCrLBsPAC1PQQPEQUQ+mY4YzRMxNiaPTQcMLoohtqQUPcyLb3fvGOd7GVfHe5K5a8/Ed/ykZevPjjwtxSg2cExzbOeBbkwA48oLjxw9S6IoYgMJ8gsBq3mCqdf7AWzJLBuAOon+WzFGuEuTYcmZ63tygjDccd5M4nYCb7CocF7eT21Pn5rcEDbnaBK8Jauy0EN4DpZRzRRBRBr8d2RLEQie1CjLGULGLDYIXjA15A+2aeAHHigrGhIeliSoEZabBS6f92e9V+u+AjssKtDmvtmPF8XzW4mK3Yjy2PFsH4J+gIgcgEM2W5Kuj402ANx98gYiHuqnNLs20OtnU2zKsTx6NC+d7t7TNl4Fe3eOmmBcGje/bDrfQobMQu+hhCuEWFNZVgpUTQj694JRR0xXzTXiBWa94133YEOZ8g2v3oST/dRLVc0wGk3P/Dq1qtwgk5C4aE7AeJ85mB0WZkuVNaoCSNcAokS5qtjChLI0IPv5C2wYKYYYiZQFBMOz8jcE3cRmwlBMmCxvemqCNKqnNiB0ZXuYAY7mJSyAsccSuDpEenPwY148TvIb0r+J1+Nh5z7/EsX5DjAnOXk53zfdiCdHdy4okUClpOHQZYjyNeQDAbMAYj7DzVcPVh/oW95zAe/qHfXg71Icy35j3ZZl6EozfaAnSSPk58/YSdeJo5P0R0diuoJig8c8KlBsGEKNNUBk1AXZg+NKMpT544MVFItVHHGTCeyCISgu3UrSkxgWBAWgGzZRrBy6oWFkKR3078RIoYB2oKmz4yvJhOZQfHx7Ai8VVBVpooRyclzD4Xbkio0vMA5h+lyy6DlPw95hjdRkoecIx4/32yXClc2HHBGQpQeYS8xOZgzR6b9Nmmm7RingP6d+XxPMTK2+i+X8a86u3VTkGSd9Btms/tBmbqc7tJZD4QHUG/ziucMMeV0QALuDtPj2Bfo1weLkthULQns/b3xTszkWYdCpr7SiNHGgLhiQYzSf4FHNtCoOd6vJWj4WPjBEYkT+Rr9CuUdtAvS8N2xbUXOc6/AC9IHV3IF4mffcqtvrshSTer1EhEsK9bfC+YzDpfHCDXTSeDXIqy+76U68B9QXXsD9AghNe1+MyoYulcg42ntu1cijpoVx1igYRhdXYGtWFas3EO3NewAytz/ZQ6dDs4uoaUnisYqoGspTbUQP2wGfXmebN8jgnqUA4WftVwjw0EIVVq1Vq1Vt/V6xzCtlsj00hU9RI9Xpnc6wV2rmUc9ct7vge2d7Pa8T4dZvJz7ROTlfokrXjjF2VvYgwQ5Z4o6y9bgeMVHJhbbgGNXj5gWN9FeJHy+2lvfhnrQ+R74/HhjGd7qeKkMSoIbgmLXjmJxBITn06HgmG5GD5pOFwsykRAO0K1XsR7ieaQxuiGi0RxTi8o9oNIsKjtGtHUcjb6JZ4ejDU9fh31Si+e/6iafqQRveddM+n0RRWJKwxcCLHJ8gXuIdK8typ0irQ1nLQMdUM2WwbuehNVZTPS1+1k7M0nH0cI61v3uczwg1fzOmnipATlkET+cFAkW3NIF4NvCophKNliuYvw9Fv+b4MU7N54i5ossf6MSeZV3cjCVlBbKJOBvWA7H25HjdPBbKkKDfhJiWeKM5/wrS5zFnFKTo4AcYXYH/OPAHoSBQVVDX3Tw7c/wREG1W8yF45ZRQbm+i95nnWVo4CiM8dBEcP/nhUAusB6Ay5eHL3U8LzEFApKd4wclOln8LzAZAMuPoKocMXxvA0MWmYK4AerUihX68tt1RUQhNduTIqo/0KYKE3GBQOcsgRK44Kbji8fn3D78asKctf4Dn52GZMFqb1cVUs9l6/MqUM5ohSxJcOGHxomvGnomRokmAUpuK1ekAED) format("woff2");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f27a}