<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.landing-container.help-page {
    width: 70%;
    margin: 0 auto;
}

.helppage-header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* ÐžÐ±Ñ‘Ñ€Ñ‚ÐºÐ° Ð´Ð»Ñ Ð¿Ð¾Ð¸ÑÐºÐ° */
.helppage-searchbar {
    position: relative;
    /* Ð´Ð»Ñ Ð¿Ð¾Ð·Ð¸Ñ†Ð¸Ð¾Ð½Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð²Ñ‹Ð¿Ð°Ð´Ð°ÑŽÑ‰ÐµÐ³Ð¾ ÑÐ¿Ð¸ÑÐºÐ° */
    width: 60%;
    margin: 50px auto;
}

.helppage-searchbar .search-icon {
    position: absolute;
    top: 12px;
    left: 15px;
}

/* ÐŸÐ¾Ð»Ðµ Ð²Ð²Ð¾Ð´Ð° */
.helppage-searchbar input {
    width: 100%;
    padding: 10px 10px 10px 15px;
    background-color: #fff;
    border: none;
    border-radius: 12px;
    box-sizing: border-box;
    padding-left: 40px;
    height: 45px;
    font-size: 16px;
    box-shadow: 0px 4px 47px -10px #00000014;
}

/* Ð’Ñ‹Ð¿Ð°Ð´Ð°ÑŽÑ‰Ð¸Ð¹ ÑÐ¿Ð¸ÑÐ¾Ðº */
ul.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #fff;
    border-radius: 12px;
    max-height: 500px;
    overflow-y: scroll;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: none;
    /* Ð˜Ð·Ð½Ð°Ñ‡Ð°Ð»ÑŒÐ½Ð¾ ÑÐºÑ€Ñ‹Ñ‚Ð¾ */
    z-index: 999;
}

.search-dropdown.show {
    display: block;
}

/* ÐŸÑƒÐ½ÐºÑ‚Ñ‹ ÑÐ¿Ð¸ÑÐºÐ° */
ul.search-dropdown li {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0px;
}

.search-dropdown li:last-child {
    border-bottom: none;
}

.search-dropdown li:hover {
    background-color: #f0f0f0;
}

/* Ð¡Ñ‚Ð¸Ð»ÑŒ Ð´Ð»Ñ Ð¿ÑƒÐ½ÐºÑ‚Ð° Â«ÐÐ¸Ñ‡ÐµÐ³Ð¾ Ð½Ðµ Ð½Ð°Ð¹Ð´ÐµÐ½Ð¾Â» */
.no-result {
    color: #999;
    font-style: italic;
    cursor: default;
}

.helppage-login-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 15px;
    margin-bottom: 50px;
}


.helppage-login-section .btn {
    width: 30%;
}

.helppage-text-subsection {
    font-size: 20px !important;
    font-weight: 500 !important;
    margin-bottom: 0px !important;
    display: flex;
    align-items: center;
}

.helppage-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px auto;
}

.helppage-card-item {
    background-color: #fff;
    border-radius: 12px;
    flex: 1 1 calc(30% - 20px);
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.helppage-card-item:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.helppage-card-item-icon {
    margin-bottom: 15px;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #F4F7FD;
    display: flex;
    justify-content: center;
    align-items: center;
}

.helppage-topic-title {
    font-size: 18px;
    margin: 0 0 10px;
    color: #19191e;
}

.helppage-text {
    font-size: 14px;
    color: #808080;
    line-height: 1.4;
    margin: 0;
}

.helppage-bottom-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.helppage-bottom-section.like-content-section {
    justify-content: flex-start;
}

.helppage-bottom-section.like-content-section .btn {
    min-height: 30px;
}

.helppage-question-articles {
    max-width: 70%;
    margin: 40px auto;
}

.helppage-question-articles .question-item {
    border-bottom: 1px solid #808080;
    padding: 15px 0;
    font-size: 16px;
}

.helppage-question-articles .question-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.helppage-question-articles .arrow {
    font-weight: bold;
    transition: transform 0.3s ease-in;
}

.helppage-question-articles .arrow.active {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in;
}

ul.article-list {
    list-style: none;
    padding-left: 0;
    display: none;
    margin-top: 20px;
}

ul.article-list li {
    margin: 8px 0;
}

ul.article-list li a {
    color: #19191e;
    text-decoration: underline;
}

ul.article-list li a:hover {
    color: #306DDE;
}

.article-list.show {
    display: block;
}

.helppage-article-content-section .faq-item .faq-content {
    display: block;
}

.helppage-article-content-section .faq-item .faq-content h3 {
    font-weight: 600;
    color: #19191e;
    font-size: 20px;
    margin-bottom: 16px;
}

.helppage-article-content-section .faq-item .faq-content a {
    color: #306DDE;
}

.helppage-article-content-section .faq-item .faq-content p {
    font-weight: 400;
    color: #5B596E;
    margin-bottom: 16px;
    font-size: 16px;
}

.helppage-article-content-section .faq-item .faq-content span {
    font-weight: 400;
    color: #5B596E;
    margin-bottom: 16px;
    font-size: 16px;
}

.helppage-article-content-section .faq-item .faq-content p.extra-note {
    border: 1px solid #5B596E;
    border-radius: 12px;
    padding: 14px;
}

.helppage-article-content-section ul li,
.helppage-article-content-section ol li {
    font-weight: 400;
    color: #5B596E;
    list-style: none;
}

.helppage-article-content-section ul li:before {
    content: '\2014';
    color: #306DDE;
    margin-right: 4px;
}

.helppage-article-content-section .faq-item .faq-content {
    margin-left: 24px;
}

.help-page .breadcrumb-wrapper {
    flex-wrap: wrap;
    font-size: 13px;
}

.helppage-text-title{
    max-width: 1130px;
    margin: 0 auto;
}

@media (max-width: 1024px) and (min-width: 768px){
    .helppage-searchbar{
        width: 80%;
    }

    .helppage-card-item{
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {

    .helppage-article-content-section .faq-item .faq-content{
        margin-left: 0px;
    }

    .helppage-article-content-section .faq-item{
        padding: 20px;
    }

    .help-page .breadcrumb-wrapper{
        gap: 4px;
    }

    h1.helppage-text-title{
        font-size: 24px;
    }

    .helppage-searchbar{
        width: 100%;
    }

    .helppage-card-item{
        flex: 1 1 calc(100% - 0px);
    }

    .helppage-login-section .btn{
        width: 100%;
    }

    .landing-container.help-page{
        width: 100%;
    }

    .helppage-bottom-section{
        flex-direction: column;
    }

    .helppage-bottom-section .btn-primary.rm.transparent{
        width: 100%;
    }

    .helppage-question-articles{
        margin: 0px;
        max-width: 100%;
    }

    .helppage-question-section{
        margin-top: 30px;
    }

    .helppage-header-section{
        gap: 10px;
        align-items: flex-start;
    }
}</pre></body></html>