

/* Start:/local/components/nota/market.list/templates/.default/style.css?177736992262956*/
.tabs-content.tabs-content_compare .tabs-content__button * {
    pointer-events: none;
}
/* ===== ОБЩИЙ АККОРДЕОН ===== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
	padding-top: 10px;

}

/* ===== КАЖДЫЙ БЛОК ===== */
.accordion__item {
    background: #fff;
    border: 1px solid #E6E8F0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

/* ===== HEADER ===== */
.accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px 20px;
    cursor: pointer;

    font-size: 18px;
    font-weight: 600;
    color: #6C5CE7; 

    border-bottom: 1px solid #EEF0F6;
}

/* стрелка */
.accordion__arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #6C5CE7;
    border-bottom: 2px solid #6C5CE7;
    transform: rotate(45deg);
    transition: 0.2s;
}

/* активная стрелка */
.accordion__item.active .accordion__arrow {
    transform: rotate(-135deg);
}

/* ===== BODY ===== */
.accordion__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
	padding-left: 25px;
}

.accordion__row {
    margin: 0;
}

/* ===== ROW ===== */
.accordion__row {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 14px 0;
    border-bottom: 1px solid #F2F3F8;
}

.accordion__row:last-child {
    border-bottom: none;
}

/* ===== LABEL (левая колонка) ===== */
.accordion__label {
    width: 35%;
    font-size: 16px;
    color: #8A8FA3;
}

/* ===== CONTENT (правая колонка) ===== */
.accordion__content {
    width: 65%;
    font-size: 14px;
    color: #2B2F3A;
    line-height: 1.5;
}

/* ===== FILE ITEM ===== */
.doc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 0;
    border-bottom: 1px solid #F2F3F8;
}
.doc-item__left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.doc-item__download {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #7A5CFA;
    text-decoration: none;
    font-weight: 500;
}

.doc-item__icon {
    flex-shrink: 0;
}

.doc-item:last-child {
    border-bottom: none;
}

.doc-item a {
    color: #6C5CE7;
    text-decoration: none;
    padding-right: 15px;
}

.doc-item a:hover {
    text-decoration: underline;
}

/* ===== АНИМАЦИЯ раскрытия ===== */
.accordion__body {
    display: none;
}

.accordion__item.active .accordion__body {
    display: block;
}
.modal.modal_market_filter .modal__main_hidden {
    position: initial;
}
.modal.modal_market_filter > .modal__footer {
    position: relative;
    z-index: -1;
}
.modal__main_hidden,
.modal__main_hidden > .simplebar-wrapper > .simplebar-mask > .simplebar-offset > .simplebar-content-wrapper,
.modal__main_hidden > .simplebar-wrapper > .simplebar-mask,
.modal__main_hidden > .simplebar-wrapper {
    overflow: initial !important;
}

.modal_confirm {
    max-width: 400px;
}
.modal_confirm .modal__header {
    padding: 28px 28px 16px;
}
.modal_confirm .modal__close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 18px;
}
.modal_confirm .modal__close-icon {
    font-size: 18px;
}
.modal_confirm .modal__main {
    padding: 0 28px 16px;
}
.modal_confirm .modal__footer {
    padding: 16px 28px 28px;
}
.modal_confirm .modal__btns {
    display: flex;
    justify-content: flex-end;
    gap: 0 12px;
}
.modal_confirm .modal__btns-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.modal_confirm .modal__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: var(--black-black-6, #000);
}
.modal_confirm .modal__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--black-black-5, #666);
}
@media only screen and (max-width: 1024px) {
    .modal_confirm {
        max-width: 360px;
    }
}
@media only screen and (max-width: 767px) {
    .modal_confirm {
        max-width: 288px;
    }
    .modal_confirm .modal__header {
        padding: 16px;
    }
    .modal_confirm .modal__main {
        padding: 0 24px 12px;
    }
    .modal_confirm .modal__footer {
        padding: 16px;
    }
}
@media only screen and (max-width: 425px) {
    .modal_confirm .modal__btns-btn {
        width: 122px;
        white-space: nowrap;
    }
}

.tooltipster-base.tooltipster-shadow.tooltipster_default {
    z-index: 999999 !important;
}
.marketplaces_meta .marketplaces__search {
    margin-bottom: 60px;
}
.list-info_popup .list-info__item {
    cursor: pointer;
    width: calc(100% - 16px);
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background-color: #fff;
    border-radius: 6px;
    margin: 0 8px;
    transition: background-color .3s;
}
.list-info_popup .list-info__item:first-child {
    margin-top: 8px;
}
.list-info_popup .list-info__item:last-child {
    margin-bottom: 8px;
}
.list-info_popup .list-info__item:hover {
    background-color: #F7F4FF;
}
.list-info_popup .list-info__text {
    max-width: 810px;
}
.list-info_popup .list-info__figure {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.list-info_popup .list-info__figure-icon {
    font-size: 12px;
    color: #7E6CC1;
}

.marketplaces-services__item-btn_subscribe > * {
    pointer-events: none;
}
.marketplaces-services__item-btn_subscribe .icon {
    margin-left: 8px;
}
.marketplaces-services__item-btn_subscribe .btn__icon-filled {
    display: none;
}
.marketplaces-services__item-btn_subscribe .btn__icon-hollow {
    display: initial;
}
.marketplaces-services__item-btn_subscribe.subscribe .btn__icon-filled {
    display: initial;
}
.marketplaces-services__item-btn_subscribe.subscribe .btn__icon-hollow {
    display: none;
}
.marketplaces-services__plug.marketplaces-services__plug_need_auth {
    padding: 60px 36px 64px;
    align-items: center;
}
.marketplaces-services__plug.marketplaces-services__plug_need_auth .marketplaces-services__plug-content {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    text-align: center;
}
.marketplaces-services__plug.marketplaces-services__plug_need_auth .marketplaces-services__plug-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--black-black-6, #000);
}
.marketplaces-services__plug.marketplaces-services__plug_need_auth .marketplaces-services__plug-btns {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0 24px
}
.marketplaces-services__plug.marketplaces-services__plug_need_auth .btn.marketplaces-services__plug-btn {
    border-radius: 8px;
    gap: 8px;
    font-size: 14px;
    line-height: 21px;
    color: var(--black-black-6, #000);
    text-transform: initial;
}
.marketplaces-services__plug.marketplaces-services__plug_need_auth .btn.marketplaces-services__plug-btn img {
    width: 16px;
    height: 16px;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    padding: 40px 0;
    height: 100vh;
    display: inline-flex;
}
.modal.modal_market_params {
    border-radius: 8px;
}
.modal_market_params {
    max-width: 796px;
    min-height: 180px;
    max-height: 100%;
    display: flex;
    flex-direction: column;
}
.modal_market_params .simplebar-track.simplebar-vertical {
    margin: 0;
}
.modal_market_params .simplebar-track.simplebar-vertical .simplebar-scrollbar::before {
    opacity: 1;
}
.modal_market_params .simplebar-track.simplebar-vertical {
    right: -20px;
}
.modal_market_params .modal__header {
    position: relative;
    padding: 36px 36px 24px;
}
.modal_market_params .modal__main {
    padding: 0 36px;
    flex: 1;
    overflow: hidden;
}
.modal_market_params .modal__footer {
    padding: 24px 36px;
}
.modal_market_params .modal__btns {
    display: none;
}
.modal_market_params .modal__title {
    font-size: 24px;
    line-height: 31px;
    padding-right: 20px;
}
.modal_market_params .modal__close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
}
.modal_market_params .modal__close-icon {
    pointer-events: none;
    font-size: 18px;
}
.modal_market_params .text-typography.modal__content {
    font-size: 18px;
    line-height: 25px;
}
.modal_market_params .text-typography.modal__content ul,
.modal_market_params .text-typography.modal__content ol {
    column-count: 2;
    column-gap: 24px;
}
.modal_market_params .simplebar-content > p,
.modal_market_params .simplebar-content > div,
.modal_market_params .simplebar-content > ol,
.modal_market_params .simplebar-content > ul {
    margin-top: 12px;
    margin-bottom: 12px;
}
.modal_market_params .simplebar-content > p:first-child,
.modal_market_params .simplebar-content > div:first-child,
.modal_market_params .simplebar-content > ol:first-child,
.modal_market_params .simplebar-content > ul:first-child {
    margin-top: 0;
}
.modal_market_params .simplebar-content > p:last-child,
.modal_market_params .simplebar-content > div:last-child,
.modal_market_params .simplebar-content > ol:last-child,
.modal_market_params .simplebar-content > ul:last-child {
    margin-bottom: 0;
}
.modal_market_params .text-typography.modal__content ul li,
.modal_market_params .text-typography.modal__content ol li {
    margin-bottom: 8px;
}
.modal_market_params .text-typography.modal__content ol > li:before {
    min-width: 28px;
    margin-right: 8px;
}

.modal_rate {
    max-width: 700px;
    padding: 36px;
}
.modal_rate .modal__header {
    margin-bottom: 24px;
}
.modal_rate .modal__title {
    font-size: 24px;
    line-height: 31px;
    color: #000;
    padding-right: 48px;
}
.modal_rate .modal__text {
    font-size: 20px;
    line-height: 28px;
    color: #000;
    margin-top: 24px;
}
.modal_rate .modal__close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 19px;
    font-size: 18px;
}
.modal_message.modal_message_market_app {
    max-width: 400px;
    padding: 28px;
}
.modal_message.modal_message_market_app .modal__btns {
    justify-content: flex-end;
}

.form_rate .form__groups-group {
    margin-bottom: 32px;
}
.form_rate .form__groups-group:last-child {
    margin-bottom: 0;
}
.form_rate .form__group-label {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 140%;
}
.form_rate .form__group-textarea {
    height: 105px;
}
.form_rate .form__group-scroll {
    height: 105px;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    box-shadow: 0 0 0 0 transparent;
    padding-right: 30px;
}
.form_rate .form__group-scroll * {
    border-radius: inherit;
}
.form_rate .input-group_error .form__group-scroll {
    border-color: #F1274C;
}
.form_rate .form__group-scroll .simplebar-track.simplebar-vertical {
    top: 12px;
    bottom: 12px;
    width: 6px;
    right: 8px;
    background: #F6F6F6;
    border-radius: 12px;
}
.form_rate .form__group-scroll .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
    opacity: 1;
    left: 0;
    right: 0;
}
.form_rate .form__group-scroll_focus,
.form_rate .form__group-scroll:hover {
    box-shadow: 0 0 0 4px #cec3f8;
}
.form_rate .form__group-scroll .form__group-textarea {
    height: inherit;
    box-shadow: none;
    border: 0;
}
.form_rate .form__group-scroll .form__group-textarea:hover,
.form_rate .form__group-scroll .form__group-textarea:focus {
    box-shadow: none;
}
.form_rate .form__actions {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
}
.form_rate .btn.form__actions-btn,
.modal_message.modal_message_market_app .modal__btns-btn {
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: initial;
}

.page-layout.page-layout_region_queries {
    grid-template-columns: 1fr;
    grid-gap: 0px;
}
.page-layout.page-layout_region_queries .btn.page-layout__app-btn {
    margin-top: 32px;
    font-weight: 500;
    text-transform: initial;
    font-size: 16px;
    line-height: 24px;
}
.page-layout.page-layout_region_queries .page-layout__header {
    margin-bottom: 40px;
}
.page-layout.page-layout_region_queries .page-layout__header-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 16px;
}
.page-layout.page-layout_region_queries .page-layout__header-section:last-child {
    margin-bottom: 0;
}
.page-layout.page-layout_region_queries .page-layout__header-tag {
    position: relative;
    top: 16px;
}
.page-layout.page-layout_region_queries .page-layout__title {
    max-width: 750px;
}
.page-layout.page-layout_region_queries .page-layout__title-label {
    position: relative;
    top: 2px;
    vertical-align: top;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin-left: 8px;
}
.page-layout.page-layout_region_queries .page-layout__label {
    color: #9F9F9F;
}
.page-layout.page-layout_region_queries .page-layout__app-chat {
    padding: 24px;
}
.page-layout.page-layout_region_queries .page-layout__app-form {
    padding: 20px;
    max-width: 748px;
    margin-top: 32px;
}
.page-layout.page-layout_region_queries .page-layout__app-chat, .page-layout.page-layout_region_queries .page-layout__app-form {
    border: 1px solid #E3E3E3;
    border-radius: 8px;
}
.page-layout.page-layout_region_queries .page-layout__app-note {
    margin-top: 40px;
}
.page-layout.page-layout_region_queries .page-layout__app-note_mobile {
    display: none;
}
@media only screen and (max-width: 1024px) {
    .modal_market_params {
        max-width: 688px;
    }
    .modal_market_params .modal__header {
        padding: 24px 24px 16px;
    }
    .modal_market_params .modal__main {
        padding: 0 24px;
    }
    .modal_market_params .modal__footer {
        padding: 24px 28px 28px;
    }
    .modal_market_params .modal__btns {
        display: flex;
        justify-content: flex-end;
        gap: 12px;
    }
    .modal_market_params .modal__btn {
        font-size: 14px;
        line-height: 20px;
        font-weight: 500;
        text-transform: initial;
    }
    .modal_market_params .text-typography.modal__content {
        font-size: 16px;
        line-height: 21px;
    }
    .modal_market_params .simplebar-track.simplebar-vertical {
        right: -18px;
    }
    .page-layout.page-layout_region_queries .page-layout__header {
        margin-bottom: 24px;
    }
    .page-layout.page-layout_region_queries .page-layout__title-name.title {
        font-size: 36px;
        line-height: 48px;
    }
    .page-layout.page-layout_region_queries .page-layout__app-form {
        display: none;
    }
    .page-layout.page-layout_region_queries .page-layout__app-note_mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .modal_rate {
        padding: 24px;
        max-width: 580px;
    }
    .modal_rate .modal__text {
        margin-top: 16px;
        font-size: 16px;
        line-height: 150%;
    }
    .modal_rate .modal__header {
        margin-bottom: 20px;
    }
    .form_rate .form__groups-group {
        margin-bottom: 24px;
    }
    .form_rate .form__group-textarea {
        height: 85px;
    }
    .form_rate .btn.form__actions-btn {
        padding: 9px 23px;
    }
    .form_rate .form__groups-group {
        margin-bottom: 20px;
    }
    .modal_message.modal_message_market_app {
        max-width: 360px;
        padding: 24px;
    }
}
@media only screen and (max-width: 767px) {
    .mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
        padding: 0;
        flex-direction: column;
    }
    .modal.modal_market_params {
        border-radius: 0;
    }
    .modal_market_params {
        max-width: 100%;
        flex: 1;
    }
    .modal_market_params .modal__footer,
    .modal_market_params .modal__header {
        padding: 16px;
    }
    .modal_market_params .modal__main {
        padding: 0 16px;
    }
    .modal_market_params .modal__title {
        font-size: 16px;
        line-height: 22px;
    }
    .modal_market_params .modal__btns {
        justify-content: flex-start;
    }
    .modal_market_params .modal__btn {
        width: 100%
    }
    .modal_market_params .text-typography.modal__content {
        font-size: 14px;
        line-height: 21px;
    }
    .modal_market_params .simplebar-track.simplebar-vertical {
        right: -16px;
    }
    .modal_market_params .text-typography.modal__content ul,
    .modal_market_params .text-typography.modal__content ol {
        column-count: initial;
        column-gap: initial;
    }
    .page-layout.page-layout_region_queries .page-layout__header {
        margin-bottom: 16px;
    }
    .page-layout.page-layout_region_queries .page-layout__header-section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 12px;
    }
    .page-layout.page-layout_region_queries .page-layout__header-tag {
        top: initial;
        margin-top: 12px;
    }
    .page-layout.page-layout_region_queries .page-layout__title-name.title {
        font-size: 26px;
        line-height: 32px;
    }
    .page-layout.page-layout_region_queries .page-layout__title-label {
        font-size: 12px;
        line-height: 20px;
    }
    .page-layout.page-layout_region_queries .page-layout__label {
        font-size: 14px;
        line-height: 18px;
    }
    .page-layout.page-layout_region_queries .page-layout__app-chat {
        padding: 24px 0 0;
        border: 0;
        border-radius: 0;
    }
    .page-layout.page-layout_region_queries .page-layout__app-note {
        margin-top: 24px;
    }
    .modal_rate {
        padding: 16px;
        max-width: calc(100vw - 32px);
    }
    .modal_rate .mark-form .star {
        width: 34px;
    }
    .modal_rate .modal__title {
        font-size: 16px;
        line-height: 140%;
        padding-right: 48px;
    }
    .modal_rate .modal__text {
        font-size: 14px;
        line-height: 22px;
    }
    .modal_rate .modal__header {
        margin-bottom: 16px;
    }
    .form_rate .form__group-label {
        font-size: 14px;
        line-height: 150%;
    }
    .mark-form .input-group .stars {
        margin: 3px -6px 0;
    }
    .mark-form .input-group .star {
        padding: 0 8px;
    }
    .form_rate .form__group-textarea {
        height: 106px;
    }
    .form_rate .form__actions {
        margin-top: 16px;
    }
    .form_rate .btn.form__actions-btn {
        width: 100%;
    }
    .modal_message.modal_message_market_app {
        max-width: 288px;
        padding: 16px;
    }
    .modal_message.modal_message_market_app .modal__title {
        padding-right: 16px;
        font-size: 16px;
        line-height: 140%;
    }
    .modal_message.modal_message_market_app .modal__text {
        font-size: 16px;
        line-height: 150%;
    }
}

.chat-room_support .chat-room__message:first-child {
    margin-bottom: 0;
}
.chat-room_support .chat-room__message:nth-child(2) {
    margin-top: 32px;
}
.chat-room_support .chat-room__message_note {
    padding: 12px;
    border: 0;
    border-radius: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    line-height: 22px;
    color: #9F9F9F;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .chat-room_support .chat-room__message_note {
        font-size: 14px;
        line-height: 19px;
    }
}
@media only screen and (max-width: 425px) {
    .chat-room_support .chat-room__message_note br {
        display: none;
    }
}

.chat-message_support .chat-message__user {
    margin-bottom: 12px;
}
.chat-message_support .chat-message__body a {
    color: #7E6CC1;
    text-decoration: none;
}
.chat-message_support .chat-message__text-header {
    margin-bottom: 12px;
}
.chat-message_support .chat-message__text-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 800;
}
.chat-message_support .chat-message__text-title_category {
    text-transform: lowercase;
}
.chat-message_support .chat-message__text-title_category::first-letter {
    text-transform: uppercase;
}
.chat-message_support .chat-message__text-description {
    margin-top: 12px;
}
.chat-message_support .chat-message__text-section {
    margin-top: 16px;
}
.chat-message_support .chat-message__text-section:first-child {
    margin-top: 0;
}
.chat-message_support .chat-message__text-section_files {
    margin-top: 32px;
}
.chat-message_support .chat-message__text-toggle {
    margin-top: 12px;
}
.chat-message_support .chat-message__text.text-typography {
    line-height: 19px;
}
.chat-message_support .chat-message__text.text-typography > p {
    margin-top: 0;
    margin-bottom: 0;
}
.chat-message_support .chat-message__text.text-typography > ul, .chat-message_support .chat-message__text.text-typography > ol, .chat-message_support .chat-message__text.text-typography > div {
    margin-top: 12px;
    margin-bottom: 12px;
}
.chat-message_support .chat-message__text.text-typography > ul:first-child, .chat-message_support .chat-message__text.text-typography > ol:first-child, .chat-message_support .chat-message__text.text-typography > div:first-child {
    margin-top: 0;
}
.chat-message_support .chat-message__text.text-typography > ul:last-child, .chat-message_support .chat-message__text.text-typography > ol:last-child, .chat-message_support .chat-message__text.text-typography > div:last-child {
    margin-bottom: 0;
}
.chat-message_support .chat-message__text.text-typography > ul li:before {
    margin-right: 8px;
}
.chat-message_support .chat-message__text.text-typography > ul li, .chat-message_support .chat-message__text.text-typography > ol li {
    margin-bottom: 5px;
}
.chat-message_support .chat-message__text.text-typography > ul li:last-child, .chat-message_support .chat-message__text.text-typography > ol li:last-child {
    margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
    .chat-message_support .chat-message__text-section:not(.chat-message__text-section_files):nth-child(2) {
        margin-top: 11px;
    }
    .chat-message_support .chat-message__text-section_files {
        margin-top: 12px;
    }
}
@media only screen and (max-width: 767px) {
    .chat-message_support .chat-message__text-title {
        font-size: 14px;
        line-height: 22px;
    }
}

.list-info_chat_message .list-info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 12px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #F3F3F3;
}
.list-info_chat_message .list-info__item:first-child {
    padding-top: 0;
}
.list-info_chat_message .list-info__item:first-child, .list-info_chat_message .list-info__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.list-info_chat_message .list-info__text {
    font-size: 14px;
    line-height: 21px;
    word-break: break-word;
}
.list-info_chat_message .list-info__text_label {
    color: #9F9F9F;
    margin-bottom: 4px;
}
.list-info_chat_message .list-info__complex {
    padding: 24px;
    background-color: #F9F9F9;
    border-radius: 12px;
    margin-bottom: 12px;
}
.list-info_chat_message .list-info__complex:last-child {
    margin-bottom: 0;
}
.list-info_chat_message .list-info__complex-header {
    padding-bottom: 20px;
    border-bottom: 1px solid #E3E3E3;
}
.list-info_chat_message .list-info__complex-title {
    font-weight: 800;
    font-size: 16px;
    line-height: 24px;
    color: #000;
}
.list-info_chat_message .list-info__complex-item {
    padding: 12px 0;
    border-bottom: 1px solid #F3F3F3;
}
.list-info_chat_message .list-info__complex-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.list-info_chat_message .list-info__complex-label, .list-info_chat_message .list-info__complex-value {
    font-size: 14px;
    line-height: 21px;
    word-break: break-word;
}
.list-info_chat_message .list-info__complex-label {
    color: #9F9F9F;
    margin-bottom: 4px;
}
.list-info_chat_message .list-info__complex-value {
    color: #000;
}
.list-info_chat_message .list-info__checkbox {
    cursor: initial;
    pointer-events: none;
}
.list-info_chat_message .list-info__checkbox-view {
    top: 0;
    min-width: 16px;
    max-width: 16px;
    height: 16px;
}
.list-info_chat_message .list-info__checkbox-text {
    font-size: 14px;
    line-height: 18px;
}
.list-info_chat_message .list-info__checkbox input:disabled ~ .list-info__checkbox-view {
    border-color: #E3E3E3;
    background-color: #E3E3E3;
}
.list-info_chat_message .list-info__checkbox input:disabled ~ .list-info__checkbox-text {
    color: #000;
}
.list-info_chat_message .list-info__files .list-info__item {
    border: 0;
    padding: 0;
    margin-bottom: 20px;
}
.list-info_chat_message .list-info__files .list-info__item:last-child {
    margin-bottom: 0;
}
.list-info_chat_message .list-info__file {
    margin-bottom: 20px;
}
.list-info_chat_message .list-info__file:last-child {
    margin-bottom: 0;
}
.list-info_chat_message .list-info__file-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #7E6CC1;
    text-decoration: none;
}
.list-info_chat_message .list-info__file-icon {
    min-width: 16px;
    font-size: 12px;
    margin-right: 8px;
}
.list-info_chat_message .list-info__file-name, .list-info_chat_message .list-info__file-size {
    font-size: 14px;
    line-height: 21px;
}
.list-info_chat_message .list-info__file-size {
    margin-top: 8px;
    padding-left: 24px;
    color: #9F9F9F;
}
@media only screen and (max-width: 1024px) {
    .list-info_chat_message .list-info__complex {
        padding: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .list-info_chat_message .list-info__complex {
        padding: 12px;
    }
    .list-info_chat_message .list-info__complex-header {
        padding-bottom: 12px;
    }
    .list-info_chat_message .list-info__complex-title {
        font-size: 14px;
        line-height: 21px;
    }
}

.list-files.list-files_chat:not(.list-files_notify) .list-files__name .icon {
    color: #9D87F1;
}
.list-files.list-files_chat:not(.list-files_notify) .list-files__item {
    padding: 20px 0 24px;
}
.list-files.list-files_chat:not(.list-files_notify) .list-files__item:first-child {
    padding-top: 0;
}
.list-files.list-files_chat:not(.list-files_notify) .list-files__item:last-child {
    padding-bottom: 0;
}
@media only screen and (max-width: 1024px) {
    .list-files.list-files_chat:not(.list-files_notify) .list-files__name {
        max-width: 230px;
    }
}
@media only screen and (max-width: 767px) {
    .list-files.list-files_chat:not(.list-files_notify) .list-files__action {
        margin-right: 0;
        margin-bottom: 8px;
    }
    .list-files.list-files_chat:not(.list-files_notify) .list-files__action:last-child {
        margin-bottom: 0;
    }
    .list-files.list-files_chat:not(.list-files_notify) .list-files__actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.list-files_border.list-files_ukep .list-files__item {
    padding: 16px 0;
}
.list-files_border.list-files_ukep .list-files__item:last-child {
    padding-bottom: 0;
}

.attention_chat {
    padding: 16px;
    border-radius: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.attention_chat_last {
    margin-top: 32px;
}
.attention_chat .attention__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 12px;
}
.attention_chat .attention__text:last-child {
    margin-bottom: 0;
}
.attention_chat .attention__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}
.attention_chat .attention__link-icon {
    position: relative;
    top: 2px;
    font-size: 8px;
    margin-left: 4px;
}
@media only screen and (max-width: 767px) {
    .attention_chat {
        padding: 12px;
    }
    .attention_chat .attention__text {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 9px;
    }
}

.marketplaces-card__text-sub {
    word-wrap: break-word;
}

.page-layout__main_header .page-layout__main-info {
    margin-top: 12px;
}
div.page-layout_market_service .page-layout__header-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
}
.page-layout__main_header .page-layout__main-note {
    margin-top: 24px;
}
.page-layout_market_service .page-layout__header-text,
.page-layout__main_header .page-layout__main-note_top {
    margin-top: 32px;
}
.page-layout.page-layout_market_list .page-layout__header {
    margin-bottom: 32px;
}
.page-layout_market_service .note.page-layout__content-note,
.page-layout_market_list .note.page-layout__body-note {
    margin-bottom: 20px;
    background-color: rgba(246, 197, 68, 0.2);
}
.page-layout_market_service .page-layout__content-header {
    margin-bottom: 20px;
}
.page-layout_market_service .page-layout__content-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 31px;
}
div.page-layout__header.page-layout__header_detail_mp .page-layout__header-sub_hidden {
    display: none;
}
div.page-layout__header.page-layout__header_detail_mp .page-layout__header-action {
    margin-top: 12px;
}
div.page-layout__header.page-layout__header_detail_mp .page-layout__header-action > * {
    pointer-events: none;
}
div.page-layout__header.page-layout__header_detail_mp .page-layout__header-text.active .page-layout__header-sub_hidden {
    display: initial;
}
div.page-layout__header.page-layout__header_detail_mp .page-layout__header-text.active .page-layout__header-sub_start {
    display: none;
}

.services__body-top {
    margin-bottom: 48px;
}
.services__body-about {
    margin-bottom: 60px;
}


.cards-layout.cards-layout_about_service  {
    margin-bottom: -24px;
}
.cards-layout.cards-layout_about_service .card-layout {
    max-width: 393px;
}
.card-layout.card-layout_about_service {
    --sizeFigure: 56px;
    --sizeImg: 32px;
    --padding: 24px;
    --mbHeader: 16px;
    --mrPreview: 24px;
    --titleSize: 18px;
    --titleLh: 23px;
    --textSize: 14px;
    --textLh: 19px;
    display: flex;
    align-items: stretch;
    padding: var(--padding);
    box-shadow: none;
}
.card-layout.card-layout_blue {
    background-color: rgba(66, 94, 245, 0.05);
}
.card-layout_about_service .card-layout__preview {
    margin-right: var(--mrPreview);
}
.card-layout_about_service .card-layout__preview-figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--sizeFigure);
    height: var(--sizeFigure);
    border-radius: 90px;
    background-color: rgba(255, 255, 255, 1);
}
.card-layout_about_service .card-layout__preview-img {
    width: var(--sizeImg);
    height: var(--sizeImg);
    object-fit: contain;
}
.card-layout_about_service .card-layout__main {
    flex: 1;
}
.card-layout_about_service .card-layout__main-header {
    margin-bottom: var(--mbHeader);
}
.card-layout_about_service .card-layout__title {
    color: #000;
    font-weight: 600;
    font-size: var(--titleSize);
    line-height:var(--titleLh);
}
.card-layout_about_service .card-layout__text {
    color: #000;
    font-weight: 400;
    font-size: var(--textSize);
    line-height:var(--textLh);
}

div.marketplaces_detail .page-layout {
    gap: 60px 0;
}
div.marketplaces_detail .page-layout__main {
    margin-bottom: 0;
}
div.marketplaces_meta.page_service_index .service-forms__list .cards-layout {
    gap: 32px 20px;
}
.marketplaces_meta.page_service_index .services__body .service-forms__list .card-layout.card-layout_market {
    --pad: 32px 32px 40px;
    --mbHeader: 16px;
    --titleSize: 24px;
    --titleLh: 31px;
    --textSize: 16px;
    --textLh: 24px;
    --mbInfo: 24px;
    --mbInfoSect: 16px;
    padding: var(--pad);
}
.marketplaces_meta.page_service_index .card-layout.card-layout_market div.card-layout__header {
    margin-bottom: var(--mbHeader);
}
.marketplaces_meta.page_service_index .card-layout.card-layout_market div.card-layout__title {
    font-size: var(--titleSize);
    line-height: var(--titleLh);
}
.marketplaces_meta.page_service_index .card-layout.card-layout_market div.card-layout__text {
    font-size: var(--textSize);
    line-height: var(--textLh);
}
.card-layout_market .card-layout__info {
    margin-bottom: var(--mbInfo);
}
.card-layout_market .card-layout__info-section {
    margin-bottom: var(--mbInfoSect);
}
.card-layout_market .card-layout__info-section:last-child {
    margin-bottom: 0;
}
.card-layout.card-layout_market_empty {
    background-color: rgba(66, 94, 245, 0.05);
    align-items: center;
    justify-content: center;
}
.card-layout_market_empty .card-layout__content {
    max-width: 300px;
    text-align: center;
}
.card-layout_market_empty .card-layout__actions {
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.marketplaces_meta.page_service_index .card-layout.card-layout_market_empty .btn.card-layout__action {
    margin-top: 0;
    text-transform: initial;
}
.marketplaces_meta.page_service_index .services__body .service-forms__list .card-layout.card-layout_market_empty {
    --titleSize: 20px;
    --titleLh: 28px;
    --mbHeader: 32px;
}

.list-info_market {
    --pad: 12px 20px;
    --mr: 40px;
    --titleSize: 14px;
    --titleLh: 21px;
    --valueSize: 18px;
    --valueLh: 27px;
    display: flex;
    align-items: stretch;
    border-radius: 8px;
    padding: var(--pad);
    margin: 0;
    background-color: rgba(66, 94, 245, 0.05);
}
.list-info_market_sections {
    --pad: 32px 40px;
    --titleSize: 14px;
    --titleLh: 18px;
    --valueSize: 24px;
    --valueLh: 31px;
    --mrSect: 57px;
    border-radius: 12px;
    padding: var(--pad);
}
.list-info.list-info_market .list-info__item {
    flex-direction: column;
    margin-right: var(--mr);
    margin-bottom: 0;
}
.list-info_market .list-info__section {
    flex: 1;
    margin-right: var(--mrSect);
    padding-right: var(--mrSect);
    border-right: 1px solid rgba(66, 94, 245, .2);
}
.list-info_market .list-info__section:last-child,
.list-info.list-info_market .list-info__item:last-child {
    margin-right: 0;
}
.list-info_market .list-info__section:last-child {
    border-right: 0;
    padding-right: 0;
}
.list-info.list-info_market_sections .list-info__item  {
    margin-right: 0;
    margin-bottom: 20px;
}
.list-info.list-info_market_sections .list-info__item:last-child {
    margin-bottom: 0;
}
.list-info.list-info_market_sections .list-info__item-btn_hint {
    font-size: 17px;
    color: rgba(157, 135, 241, 1);
}
.list-info.list-info_market_sections .list-info__item-btn_hint > * {
    pointer-events: none;
}
.list-info_market .list-info__item-title {
    color: rgba(0, 0, 0, .8);
    font-weight: 400;
    font-size: var(--titleSize);
    line-height: var(--titleLh);
}
.list-info_market .list-info__item-value {
    color: #000;
    font-weight: 600;
    font-size: var(--valueSize);
    line-height: var(--valueLh);
}
.list-info.list-info_market_sections .list-info__item-value {
    font-size: var(--valueSize);
    line-height: var(--valueLh);
    margin-bottom: 4px;
}

.card-labels.card-labels_tags {
    margin: 0;
}
.card-labels.card-labels_tags .card-label {
    margin: 0 4px 0 0;
}
.card-labels.card-labels_tags .card-label:last-child {
    margin-right: 0;
}
.card-label.card-label_tags {
    padding: 2px 12px;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    border-radius: 40px;
    color: #000;
}
.card-label_tags.card-label_purple {
    color: #fff;
}
.card-label_blue {
    background-color: rgba(66, 94, 245, 0.20);
}

.note.note_yellow {
    border: 0;
    background-color: rgba(246, 197, 68, 0.4);
}
.note.note_yellow .note__icon-img{
    color: rgba(240, 149, 55, 1);
}
.note.note_blue {
    border: 0;
    background-color: rgba(237, 247, 254, 1);
}
.note.note_blue .note__icon-img{
    color: rgba(77, 174, 248, 0.8);
}
div.note .note__icon{
    display: flex;
    align-self: center;
    top: 0;
    margin-right: 13px;
}
div.note .note__icon-img{
    min-width: 15px;
    font-size: 15px;
}

.marketplaces-services__item.marketplaces-services__item_second {
    --pad: 32px;
    padding: var(--pad);
    box-shadow: 0 0 16px 0 rgba(63, 67, 106, 0.12);
}
.marketplaces-services__item-labels {
    margin-bottom: 12px;
}
.marketplaces-services__item.marketplaces-services__item_second .marketplaces-services__item-title {
    font-size: 18px;
    line-height: 25px;
}
.marketplaces-services__item-desc {
    color: rgba(0, 0, 0, .8);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.marketplaces-services.marketplaces-services_second .marketplaces-services__header {
    justify-content: space-between;
    margin-bottom: 20px;
}
.marketplaces-services.marketplaces-services_second .marketplaces-services__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}
.marketplaces-services.marketplaces-services_second .marketplaces-services__icon{
    width: 103px;
    height: 46px;
    min-width: 103px;
    min-height: 46px;
    max-width: 103px;
    max-height: 46px;
    margin-right: 0;
    object-fit: contain;
}
.marketplaces-services.marketplaces-services_second .marketplaces-services__card {
    padding: 20px;
}
.marketplaces-services.marketplaces-services_second .marketplaces-services__list {
    gap: 10px;
}
.marketplaces-services.marketplaces-services_second .marketplaces-services__item {
    flex: 0 1 calc(50% - 5px);
    padding: 16px 24px 24px;
}
.marketplaces-services.marketplaces-services_second .marketplaces-services__item_full {
    flex: 1;
}
.marketplaces-services.marketplaces-services_second .marketplaces-services__item_flex {
    flex: 1 0 calc(50% - 5px);
}
.marketplaces-services.marketplaces-services_second .marketplaces-services__item-labels {
    margin-bottom: 16px;
}
.marketplaces-services.marketplaces-services_second .marketplaces-services__item-text {
    margin-bottom: 20px;
}
.marketplaces-services.marketplaces-services_second .marketplaces-services__item-title {
    line-height: 22px;
}
.marketplaces-services.marketplaces-services_second .marketplaces-services__item-desc {
    font-size: 12px;
    line-height: 16px;
    color: rgba(159, 159, 159, 1);
}
.marketplaces-services.marketplaces-services_second .marketplaces-services__item-btn {
    align-self: flex-start;
    font-size: 14px;
    font-weight: 500;
    text-transform: initial;
    margin-top: auto;
}
.marketplaces-services.marketplaces-services_second .marketplaces-services__item-btn .icon {
    font-size: 8px;
    color: rgba(157, 135, 241, 1);
}
.marketplaces-services.marketplaces-services_second .marketplaces-services__item-btn_subscribe .icon {
    font-size: 16px;
}
.marketplaces-services__cards-card {
    margin-bottom: 20px;
}
.marketplaces-services__cards-card:last-child {
    margin-bottom: 0;
}

.marketplaces_application .snippet.snippet_blue_second .btn {
    padding: 10px 24px;
}
.snippet.snippet_blue_second .btn,
.snippet.snippet_blue_second .btn:hover {
    border-color: rgba(157, 135, 241, 1);
    color: #000;
}

.marketplaces-education.marketplaces-education_second {
    flex-wrap: initial;
    flex-direction: column;
    gap: initial;
}
.marketplaces-education.marketplaces-education_second .marketplaces-education__header {
    margin-bottom: 20px;
}
.marketplaces-education.marketplaces-education_second .marketplaces-education__header-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #000;
}
.marketplaces-education.marketplaces-education_second .marketplaces-education__links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
}
.marketplaces-education.marketplaces-education_second .marketplaces-education__link {
    flex: 0 1 calc(50% - 20px);
}
.marketplaces-education.marketplaces-education_second .marketplaces-education__card {
    --cardW: 145px;
    width: var(--cardW);
    height: 96px;
    min-width: var(--cardW);
    min-height: 96px;
    max-width: var(--cardW);
    max-height: 96px;
    padding: 11px;
    margin-right: 12px;
    border-radius: 6px;
}
.marketplaces-education.marketplaces-education_second .marketplaces-education__card-time {
    font-size: 20px;
    line-height: 20px;
}
.marketplaces-education.marketplaces-education_second .marketplaces-education__card-time {
    font-size: 20px;
    line-height: 20px;
}
.marketplaces-education.marketplaces-education_second .marketplaces-education__card-text {
    font-size: 10px;
    line-height: 10px;
}
.marketplaces-education.marketplaces-education_second .marketplaces-education__title {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
}
.marketplaces-education.marketplaces-education_second .marketplaces-education__card-start {
    font-size: 10px;
    line-height: 12px;
}
.marketplaces-education.marketplaces-education_second .marketplaces-education__card-start .icon {
    width: 10px;
    height: 10px;
}

@media (max-width: 1024px) {
    div.marketplaces_meta.page_service_index .service-forms__list .cards-layout {
        gap: 24px 0;
        flex-direction: column;
        flex-wrap: initial;
    }
}
@media (max-width: 1279px) {
    div.note .note__icon {
        align-self: flex-start;
        top: 4px;
        margin-right: 12px;
    }
    .marketplaces-card .marketplaces-card__image {
        align-self: flex-start;
    }
    .page-layout_market_service .page-layout__content-header {
        margin-bottom: 16px;
    }
    .card-labels.card-labels_tags {
        gap: 8px 4px;
    }
    div.marketplaces-services__list {
        gap: 16px 20px;
    }
    .marketplaces-services.marketplaces-services_second .marketplaces-services__item {
        padding: 16px 20px 20px;
    }
    .marketplaces-services__item.marketplaces-services__item_second {
        --pad: 24px;
    }
    div.marketplaces_detail .page-layout {
        gap: 48px 0;
    }
    .services__body-about {
        margin-bottom: 48px;
    }
    .page-layout.page-layout_market_list .page-layout__header {
        margin-bottom: 24px;
    }
    .page-layout_market_service .note.page-layout__content-note,
    .marketplaces-services.marketplaces-services_second .marketplaces-services__item-text {
        margin-bottom: 16px;
    }
    .marketplaces_meta.page_service_index .services__body .service-forms__list .card-layout.card-layout_market {
        --mbInfo: 20px;
    }
    .marketplaces_meta.page_service_index .services__body .service-forms__list .card-layout.card-layout_market_empty {
        --titleSize: 16px;
        --titleLh: 22px;
        --mbHeader: 24px;
    }
    .list-info_market {
        --mr: 56px;
    }
    .list-info_market_sections {
        --pad: 24px 32px;
        --titleSize: 12px;
        --titleLh: 15px;
        --valueSize: 18px;
        --valueLh: 23px;
        --mrSect: 40px;
    }
    .cards-layout.cards-layout_about_service {
        margin: 0;
    }
    .cards-layout.cards-layout_about_service .card-layout {
        max-width: 100%;
        margin: 0 0 16px;
    }
    .cards-layout.cards-layout_about_service .card-layout:last-child {
        margin-bottom: 0;
    }
    .page-layout__main_header .page-layout__main-note {
        margin-top: 20px;
    }
    .page-layout__main_header .page-layout__main-note_top {
        margin-top: 24px;
    }
}

@media (max-width: 767px) {
    div.note .note__icon {
        top: 2px;
        margin-right: 8px;
    }
    .page-layout_market_service .note.page-layout__content-note,
    .page-layout_market_service .page-layout__content-header {
        margin-bottom: 12px;
    }
    .page-layout_market_service .page-layout__content-title {
        font-size: 22px;
        line-height: 26px;
    }
    .marketplaces-education.marketplaces-education_second .marketplaces-education__links {
        flex-wrap: initial;
        flex-direction: column;
        gap: 12px 0;
    }
    .marketplaces-education.marketplaces-education_second .marketplaces-education__link {
        flex: 1;
    }
    .marketplaces-education.marketplaces-education_second .marketplaces-education__title {
        font-size: 12px;
        line-height: 16px;
    }
    .marketplaces-education.marketplaces-education_second .marketplaces-education__card {
        --cardW: 110px;
    }
    .marketplaces-education.marketplaces-education_second .marketplaces-education__header-title {
        font-size: 18px;
        line-height: 23px;
    }
    .snippet.snippet_blue_second .snippet__img {
        margin-bottom: 18px;
    }
    .marketplaces_application .snippet.snippet_blue_second .text-typography {
        margin-bottom: 32px;
    }
    .marketplaces_application .snippet.snippet_blue_second .title {
        margin-bottom: 8px;
    }
    div.marketplaces-services__list {
        gap: 20px 0;
    }
    .marketplaces-services.marketplaces-services_second .marketplaces-services__item {
        flex: 100%;
    }
    .marketplaces-services__item.marketplaces-services__item_second {
        --pad: 16px;
    }
    .marketplaces-services.marketplaces-services_second .marketplaces-services__item-labels {
        margin-bottom: 12px;
    }
    .page-layout.page-layout_market_list .page-layout__header {
        margin-bottom: 20px;
    }
    .page-layout_market_list .note.page-layout__body-note,
    .marketplaces-services.marketplaces-services_second .marketplaces-services__header {
        margin-bottom: 16px;
    }
    .marketplaces-services.marketplaces-services_second .marketplaces-services__title {
        font-size: 16px;
        line-height: 22px;
    }
    .marketplaces-services.marketplaces-services_second .marketplaces-services__card {
        min-width: initial;
        margin: 0 0 12px;
        border-radius: 12px;
    }
    .marketplaces-services.marketplaces-services_second .marketplaces-services__card:last-child {
        margin-bottom: 0;
    }
    .marketplaces-services.marketplaces-services_second .marketplaces-services__item-title {
        font-size: 16px;
    }
    .marketplaces-services.marketplaces-services_second .marketplaces-services__item-text {
        margin-bottom: 12px;
    }
    div.marketplaces_detail .page-layout {
        gap: 40px 0;
    }
    .services__body-top,
    .services__body-about {
        margin-bottom: 40px;
    }
    .card-labels.card-labels_tags .card-label {
        margin: 0;
    }
    div.marketplaces_meta.page_service_index .service-forms__list .cards-layout {
        gap: 20px 0;
    }
    .marketplaces-services__item.marketplaces-services__item_second .marketplaces-services__item-title {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 8px;
    }
    .marketplaces_meta.page_service_index .services__body .service-forms__list .card-layout.card-layout_market {
        --pad: 20px 20px 24px;
        --mbHeader: 12px;
        --titleSize: 18px;
        --titleLh: 23px;
        --textSize: 14px;
        --textLh: 21px;
        --mbInfo: 16px;
        --mbInfoSect: 12px;
    }
    .marketplaces_meta.page_service_index .services__body .service-forms__list .card-layout.card-layout_market_empty {
        --titleSize: 16px;
        --titleLh: 22px;
        --mbHeader: 20px;
    }
    .marketplaces_meta.page_service_index .services__body .service-forms__list .card-layout.card-layout_market_empty .btn {
        margin-top: 0;
        max-width: 150px;
    }
    .card-layout.card-layout_about_service {
        --sizeFigure: 40px;
        --sizeImg: 20px;
        --padding: 16px;
        --mbHeader: 8px;
        --mrPreview: 12px;
        --titleSize: 16px;
        --titleLh: 20px;
        --textSize: 12px;
        --textLh: 16px;
    }
    .list-info_market {
        --pad: 8px 12px;
        --mr: 0;
        --titleSize: 10px;
        --titleLh: 15px;
        --valueSize: 16px;
        --valueLh: 24px;
        flex-wrap: wrap;
        gap: 12px 24px;
    }
    .list-info_market_sections {
        --pad: 16px 24px;
        --titleSize: 12px;
        --titleLh: 15px;
        --valueSize: 16px;
        --valueLh: 20px;
        --mrSect: 0px;
        flex-direction: column;
    }
    .list-info_market .list-info__section {
        border-right: 0;
        border-bottom: 1px solid rgba(66, 94, 245, 0.2);
        padding-bottom: 16px;
    }
    .list-info_market .list-info__section:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }
    .page-layout__main_header .page-layout__main-note {
        margin-top: 16px;
    }
    .page-layout__main_header .page-layout__main-info,
    .page-layout__main_header .page-layout__main-note_top {
        margin-top: 20px;
    }
    div.page-layout__content-note .note__icon,
    div.page-layout__body-note .note__icon {
        display: flex;
        margin-right: 8px;
        top: 1px;
    }
}
.page-layout_market_service .page-layout__sidebar {
    position: sticky;
    top: 12px;
    transition: all .3s;
}
.page-layout.page-layout_market_compare {
	grid-template-columns: 1fr;
}
.page-layout_market_compare .page-layout__body-informer {
    margin-top: 40px
}
.market-compare {
	position: relative;
}
.market-compare_drag {
    user-select: none;
    z-index: 0;
    cursor: pointer;
}
.market-compare_drag .compare-item {
    pointer-events: none;
}
.market-compare_drag .compare-item_fixed {
    z-index: 0;
}
.market-compare_fixed.market-compare_drag .compare-item__remove {
    z-index: 12;
}
.market-compare_drag .compare-item_dragging {
    z-index: 1;
}
.market-compare_fixed .compare-item__header:not(.compare-item__header_drag),
.market-compare_drag .compare-item__header:not(.compare-item__header_drag) {
    position: relative;
}
.market-compare_fixed .compare-item__header:not(.compare-item__header_drag),
.market-compare_drag .compare-item__header:not(.compare-item__header_drag),
.market-compare_drag .compare-item__header:not(.compare-item__header_drag)::before {
    z-index: 12;
    pointer-events: initial;
}
.market-compare_drag .market-compare__btns {
    pointer-events: none;
    opacity: 0;
}
.market-compare_drag .compare-item__header:not(.compare-item__header_drag)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
}
.market-compare_drag .compare-item__header_drag {
    z-index: 13;
}
.market-compare_drag .compare-item__header_dragging {
    opacity: 0;
}
.compare-item_drag_target .compare-item__header:not(.compare-item__header_drag)::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 4px;
    height: 100%;
    background-color: var(--purple-purple-460, rgba(157, 135, 241, 0.60));
}
.market-compare_fixed {
	position: fixed;
	top: var(--compare-top);
    left: 0;
	width: 100%;
	padding: 18px 0;
    box-shadow: -20px 0 20px rgba(63, 67, 106, 0.16);
    background-color: #fff;
    z-index: 10;
}
.market-compare_fixed .market-compare__btns {
    margin: auto;
}
.market-compare_fixed .compare-item {
    transition: transform .3s;
}
.market-compare_fixed .market-compare__list {
	position: relative;
}
.market-compare_fixed .compare-item__next {
	top: 0;
	right: 30%;
	bottom: 0;
	margin: auto;
}

.compare-item .compare-item__name {
    font-size: 16px;
    line-height: 150%;
}
.compare-item .compare-item__param-label {
    margin-bottom: 8px;
}
.compare-item .compare-item__label {
    color: #9f9f9f;
}
.compare-item .compare-item__params-title {
    color: #000;
}
@media (max-width: 767px) {
    .compare-item .compare-item__value,
    .compare-item .compare-item__name {
        font-size: 14px;
        line-height: 150%;
    }
}

.compare-item__more {
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	color: #7E6CC1;
}
.compare-item__more-icon {
	transition: transform .3s;
	transform: rotate(90deg);
	font-size: 8px;
}
.compare-item__more_active .compare-item__more-icon {
	transform: rotate(270deg);
}
.market-compare__btns {
    display: flex;
    justify-content: space-between;
    width: calc(100% + 40px);
    position: absolute;
    top: 60px;
    right: -20px;
    left: -20px;
    z-index: 1;
    opacity: 1;
    transition: opacity .3s;
}
@media (max-width: 767px) {
    .market-compare__btns {
        display: none;
    }
}
.market-compare__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background-color: #9D87F1;
	color: #fff;
	z-index: 1;
}
.market-compare__btn_prev {
    margin-right: auto;
}
.market-compare__btn_next {
    margin-left: auto;
}
.compare-item__more > *,
.market-compare__btn > * {
	pointer-events: none;
}
.market-compare__list {
	position: absolute;
	display: flex;
	align-items: stretch;
	gap: 40px;
}
@media (max-width: 1279px) {
    .market-compare__list {
        gap: 32px;
    }
}
@media (max-width: 767px) {
    .market-compare__list {
        gap: 24px;
    }
}
.market-compare__wrapper .simplebar-track.simplebar-horizontal {
	height: 6px;
	background-color: #F3F3F3;
	border-radius: 12px;
}
.market-compare__wrapper .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
	height: 6px;
	top: -2px;
	border-radius: 12px;
	background-color: #9D87F1;
}
.compare-item {
	min-width: 275px;
	max-width: 275px;
}
@media (max-width: 1279px) {
    .compare-item {
        min-width: 208px;
        max-width: 208px;
    }
}
@media (max-width: 767px) {
    .compare-item {
        min-width: 156px;
        max-width: 156px;
    }
    div.franchise-selection_comparison .compare-item__preview-logo {
        width: 100%;
        height: 120px;
    }
}
.compare-item__header {
	margin-bottom: 32px;
    opacity: 1;
    transition: transform .3s, opacity .3s;
}
.compare-item__header * {
    pointer-events: none;
}
.compare-item__header_drag {
    position: absolute;
    padding: 24px;
    min-width: 275px;
    max-width: 275px;
    box-shadow: 0px 4px 28px 0px rgba(63, 67, 106, 0.16);
    background-color: #fff;
    border-radius: 8px;
    z-index: 1;
}
.compare-item__remove {
    pointer-events: initial;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 32px;
    height: 32px;
    right: 6px;
    top: 6px;
    border-radius: 8px;
    z-index: 1;
}
.compare-item__remove > * {
	pointer-events: none;
}
.compare-item__remove-icon {
	font-size: 12px;
	color: #9F9F9F;
}
.compare-item__header-label {
	margin-bottom: 16px;
}
.compare-item__preview {
	position: relative;
}
.compare-item__preview-label {
	margin-bottom: 4px;
}
.compare-item__preview-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid var(--black-black-3, #E3E3E3);
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), lightgray 50% / cover no-repeat;
}
.compare-item__logo {
    width: 206px;
    height: 40px;
    object-fit: contain;
}
@media (max-width: 1279px) {
    .compare-item__logo {
        width: 168px;
        height: 32px;
    }
}
@media (max-width: 767px) {
    .compare-item__logo {
        width: 114px;
        height: 20px;
    }
}
.compare-item__params {
	padding-bottom: 32px;
}
.compare-item__params-title {
    position: relative;
    min-height: 26px;
}
@media (max-width: 767px) {
    .compare-item__params-title  {
        white-space: nowrap;
    }
}
.compare-item__param {
	position: relative;
	padding: 17px 0 16px;
	border-bottom: 1px solid #F3F3F3;
}
.compare-item__param::after,
.compare-item__param::before {
    content: '';
    position: absolute;
}
.compare-item__param > * {
    position: relative;
}
.compare-item__param::after {
	left: 100%;
	bottom: -1px;
	width: 40px;
	height: 1px;
	background-color: #F3F3F3;
}
.compare-item__param::before {
	left: 0;
	top: 0;
	width: calc(100% + 40px);
	height: 100%;
	background-color: transparent;
    pointer-events: none;
    transition: background-color .3s;
    z-index: 1;
}
.compare-item__param_hover::before {
    background-color: var(--black-black-1, #F9F9F9);
}
.compare-item_first .compare-item__param::before {
    left: -100vw;
    width: calc(200vw + 40px);
    border-bottom: 1px solid #F3F3F3;
}

.compare-item:last-child .compare-item__param::after {
	display: none;
}
.compare-item__value-item_hidden {
	display: none;
}
.compare-item__value-items_active .compare-item__value-item_hidden {
	display: block;
}
.compare-item__header-label,
.compare-item__preview-label,
.compare-item__params-title,
.compare-item__param-label {
	opacity: 0;
	pointer-events: none;
}
.compare-item_first .compare-item__header-label,
.compare-item_first .compare-item__preview-label,
.compare-item_first .compare-item__params-title,
.compare-item_first .compare-item__param-label {
	opacity: 1;
	pointer-events: initial;
}
.compare-item__value,
.compare-item__label {
	--size: 16px;
	--lh: 24px;
	font-size: var(--size);
	line-height: var(--lh);
	color: #000000;
}
.compare-item__label {
	font-weight: 600;
}
.compare-item__label-wrapper {
    z-index: 2;
}
.compare-item__label-icon {
	position: relative;
	top: 1px;
	cursor: pointer;
	font-size: 14px;
	color: #9D87F1;
	margin-left: 4px;
}
.compare-item__value {
	font-weight: 400;
    z-index: 2;
    transition: transform .3s;
}
.compare-item__value-items_hidden {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer;
}
.compare-item__label_medium {
	--size: 20px;
	--lh: 26px;
}
.compare-item__name {
    pointer-events: initial;
	font-weight: 500;
	font-size: 18px;
	line-height: 25px;
    color: var(--purple-purple-5, #7E6CC1);
}
.btn.compare-item__request {
	padding: 9px 24px;
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
}
.compare-item_fixed .compare-item__header {
	margin-bottom: 0;
}
.compare-item_fixed .compare-item__preview-logo {
	width: 100%;
	height: 75px;
	margin-bottom: 0;
}
.compare-item_fixed .compare-item__logo {
    width: 160px;
}
.compare-item_fixed .compare-item__name {
	margin-top: 16px;
}

.note.note_compare_not_found {
	padding: 40px;
	background-color: #F9F9F9;
	border: 0;
	border-radius: 8px;
}
.note.note_compare_not_found .note__icon {
	min-width: 80px;
	max-width: 80px;
	height: 80px;
	top: 0;
}
.note.note_compare_not_found .note__icon-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.note.note_compare_not_found .note__title {
	font-weight: 700;
	font-size: 24px;
	line-height: 31px;
	color: #000000;
	margin-bottom: 8px;
}
.note.note_compare_not_found .note__text {
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	color: #666666;
}
.note.note_compare_not_found .note__btn {
	font-size: 14px;
	line-height: 21px;
	padding: 11px 28px;
	margin-top: 16px;
}
div.market-selection_comparison .page-layout__header_empty_list {
	margin-bottom: 32px;
}
@media (max-width: 1600px) {
	.market-compare_fixed .compare-item__next {
		right: 15%;
	}
}
@media (max-width: 1279px) {
	div.market-selection_comparison .page-layout__header_empty_list {
		margin-bottom: 24px;
	}
}
@media (max-width: 767px) {
	div.market-selection_comparison .page-layout__header_empty_list {
		margin-bottom: 16px;
	}
	.market-compare_fixed {
		padding: 12px 0;
	}
	.compare-item_fixed .compare-item__preview {
		flex-direction: column;
		align-items: flex-start;
	}
	.compare-item_fixed .compare-item__preview-logo {
		margin-bottom: 12px;
	}
	.compare-item_fixed .compare-item__name {
		font-size: 12px;
		line-height: 14px;
		margin-left: 0;
	}
}
.cards_market .card_market {
	flex-direction: row;
	flex-wrap: wrap;
}
.cards_market .card__header,
.cards_market .card__main,
.cards_market .card__btns {
	flex: 100%;
}
.cards_market .card_market .card__btns {
	align-self: flex-end;
}
/* End */


/* Start:/local/templates/extranet/assets/css/meta/marketplaces.css?175070366127479*/
.filter-sort.filter-sort_meta_markets .select-search__header-icon .icon{font-size:9px}.filter-sort.filter-sort_meta_markets .select-search__header-text{color:var(--Purple-purple-5,#7e6cc1);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:73px}.filter-sort.filter-sort_meta_markets .select-search__option{font-size:16px;line-height:24px}.filter-sort.filter-sort_meta_markets .filter-sort__item{gap:0 4px;margin:0}.filter-sort.filter-sort_meta_markets .filter-sort__select-header{gap:0 4px}.filter-sort.filter-sort_meta_markets .filter-sort__select-body{left:auto;min-width:320px}@media only screen and (max-width:1279px){.filter-sort.filter-sort_meta_markets{align-self:flex-end}}@media only screen and (max-width:767px){.filter-sort.filter-sort_meta_markets{align-self:flex-start}.filter-sort.filter-sort_meta_markets .filter-sort__select-body{left:50%;min-width:290px;transform:translate(-50%)}.filter-sort.filter-sort_meta_markets .filter-sort__select.select-search_active .filter-sort__select-body{transform:translate(-50%,8px)}}.nav-intro{align-items:stretch;display:flex;flex-wrap:wrap;gap:8px}.nav-intro__link{align-items:center;background-color:transparent;border:1px solid var(--purple-purple-4,#9d87f1);border-radius:12px;color:#fff;display:flex;font-size:16px;font-weight:500;gap:0 12px;line-height:21px;padding:12px 16px;text-decoration:none;transition:background-color .3s}.nav-intro__link-img{align-items:center;display:flex;height:50px;justify-content:center;width:50px}.nav-intro__link-img img{object-fit:contain;width:100%}.nav-intro__link:hover{background-color:var(--purple-purple-420,rgba(157,135,241,.2))}.list-info_market{--pad:12px 20px;--mr:40px;--titleSize:14px;--titleLh:21px;--valueSize:18px;--valueLh:27px;align-items:stretch;background-color:rgba(66,94,245,.05);border-radius:8px;display:flex;margin:0;padding:var(--pad)}.list-info_market .list-info__item{flex-direction:column;margin-bottom:0;margin-right:var(--mr)}.list-info_market .list-info__item-value{color:#000;font-size:var(--valueSize);font-weight:600;line-height:var(--valueLh)}.list-info_market .list-info__item-title{color:rgba(0,0,0,.8);font-size:var(--titleSize);font-weight:400;line-height:var(--titleLh)}@media only screen and (max-width:1279px){.list-info_market{--mr:56px}}@media only screen and (max-width:767px){.list-info_market{--pad:8px 12px;--mr:0;--titleSize:10px;--titleLh:15px;--valueSize:16px;--valueLh:24px;flex-wrap:wrap;gap:12px 24px}}.tags{align-items:baseline;display:flex;flex-wrap:wrap;gap:8px 4px}@media only screen and (max-width:767px){.tags{gap:4px}}.tag{border-radius:40px;color:#000;font-size:12px;font-weight:400;line-height:14px;padding:2px 12px}.tag_yellow{background-color:var(--yellow-yellow,#ffd633);border-color:var(--yellow-yellow,#ffd633)}.tag_yellow_light{background-color:rgba(246,197,68,.4);border-color:rgba(246,197,68,.4)}.tag_blue{background-color:var(--dark-indigo-20,rgba(66,94,245,.2));border-color:var(--dark-indigo-20,rgba(66,94,245,.2))}.tag_purple{background-color:var(--Purple-purple-4,#9d87f1);border-color:var(--Purple-purple-4,#9d87f1);color:#fff}.tag_purple_light{background-color:#ebe7fc;border-color:#ebe7fc;color:#000}.tag_btn{align-items:center;border-radius:4px;display:flex;gap:0 8px;line-height:18px;padding:2px 8px;text-align:left}.tag_btn .tag__icon{font-size:12px}.panel-search{background-color:#474593;border-radius:12px;padding:24px}.panel-search__text{color:hsla(0,0%,100%,.6);font-size:14px;font-weight:400;line-height:18px}.panel-search__text_indent_bottom{margin-top:8px}.panel-search__btn{display:none}@media only screen and (max-width:1279px){.panel-search{align-items:flex-start;display:flex}.panel-search__wrapper{width:100%}.panel-search__btn{align-items:center;border:1px solid #b19ff4;border-radius:8px;color:#b19ff4;display:flex;font-size:12px;font-weight:600;justify-content:center;letter-spacing:.04em;line-height:20px;margin-left:12px;max-width:fit-content;padding:7px;text-transform:uppercase}.panel-search__btn .icon{color:#b19ff4;height:16px;margin-right:8px;min-width:16px;width:16px}}@media only screen and (max-width:767px){.panel-search{flex-direction:column;padding:16px}.panel-search__btn{margin:16px 0 0;max-width:100%;width:100%}}.panel-filter{--inputHeight:44px;background-color:var(--black-black-0,#fff);border:1px solid var(--black-black-2,#f3f3f3);border-radius:12px;box-shadow:0 4px 16px 0 rgba(63,67,106,.12);display:flex;flex-direction:column;gap:24px 0;padding:24px}.panel-filter__groups{display:flex;flex-wrap:wrap;gap:12px}.panel-filter__group{flex:1;position:relative}.panel-filter__label{align-items:center;color:var(--black-black-6,#000);display:flex;font-size:14px;font-weight:600;gap:0 4px;line-height:22px;margin-bottom:8px}.panel-filter__label-icon{cursor:pointer;display:flex}.panel-filter__label-icon .icon{color:#9d87f1;pointer-events:none}.panel-filter__label-icon_arrow{display:none}.panel-filter__label_btn{background:var(--Black-black-0,#fff);border:1px solid var(--Black-black-3,#e3e3e3);border-radius:8px;font-size:16px;font-weight:400;line-height:24px;margin-bottom:0;padding:10px 12px;width:100%}.panel-filter__label_btn .panel-filter__label-icon_arrow{display:flex;font-size:16px;margin-left:auto}.panel-filter__marks,.panel-filter__range{align-items:center;display:flex;left:8px;right:8px;width:calc(100% - 16px)}.panel-filter__marks{justify-content:space-between;padding-top:6px;pointer-events:none;position:relative;user-select:none}.panel-filter__marks-item{color:var(--black-black-4,#9f9f9f);font-size:14px;font-weight:400;line-height:21px}.panel-filter__range{appearance:none;background-size:100% 100%;background:transparent linear-gradient(#9d87f1,#9d87f1) no-repeat;border-radius:50px;bottom:-3px;height:3px;position:absolute}.panel-filter__range-wrapper{position:relative}.panel-filter__range-icon{align-items:center;color:var(--purple-purple-4,#9d87f1);display:flex;font-size:13px;height:var(--inputHeight);justify-content:center;padding:0 16px;position:absolute;right:0;top:0}.panel-filter__range::-webkit-slider-thumb{appearance:none;background:#fff;border:2px solid #9d87f1;border-radius:100%;cursor:pointer;height:17px;position:relative;width:17px}.panel-filter__range::-moz-range-progress{background:transparent;border:0;height:3px;margin-top:0}.panel-filter__range::-ms-track{background:transparent;border:0;border-radius:0;color:transparent;height:3px}.panel-filter__range::-ms-fill-lower,.panel-filter__range::-ms-fill-upper{background:#9d87f1;border-radius:0}.panel-filter__input.input,.panel-filter__select .select-search__header{height:var(--inputHeight);padding:10px 12px}.panel-filter__select_tree .panel-filter__select-body{min-width:442px}.panel-filter__switch.input-switch .panel-filter__switch-view{order:1}.panel-filter__switch.input-switch .panel-filter__switch-label{color:#000;font-weight:500;margin-left:16px;margin-right:0;order:2}.panel-filter__select .select-search__header{background-color:#fff}.panel-filter__input.input,.panel-filter__select .select-search__header-text_placeholder{color:var(--black-black-4,#9f9f9f);font-size:14px;line-height:21px}.panel-filter__input.input{min-height:var(--inputHeight)}.panel-filter__btns,.panel-filter__footer{align-items:stretch;display:flex;justify-content:space-between}.panel-filter__btn>*{pointer-events:none}.panel-filter__btn.btn{border-radius:8px;font-size:14px;font-weight:500;line-height:21px;padding:10px 24px;width:225px}.panel-filter__btn_reset.btn{color:#7e6cc1;font-weight:400;padding:8px}.panel-filter__btn_reset.btn .icon:first-child{margin-right:6px}.panel-filter__btn_filters.btn .panel-filter__btn-icon{color:#9d87f1}.panel-filter__btn_filters.btn .icon:first-child{margin-right:8px}.panel-filter_modal{border:0;box-shadow:none;padding:0}.panel-filter_modal .panel-filter__group{flex:1 0 calc(50% - 20px)}.panel-filter_modal .panel-filter__groups{gap:16px 20px}.panel-filter_modal .panel-filter__btn.btn{width:178px}.panel-filter_modal .panel-filter__btn_reset.btn{padding-left:0;padding-right:0;width:auto}@media only screen and (max-width:1279px){.panel-filter__label{font-size:16px;font-weight:400;line-height:24px;margin-bottom:4px}.panel-filter__label_btn{margin-bottom:0}.panel-filter_modal{gap:20px 0}.panel-filter_modal .panel-filter__groups{gap:16px 0}.panel-filter_modal .panel-filter__group{flex:0 0 100%}.panel-filter_modal .panel-filter__group-tags{margin-top:4px}.panel-filter_modal .panel-filter__select_tree .panel-filter__select-body{min-width:320px}.panel-filter_modal .panel-filter__switch.input-switch{flex-direction:row-reverse;justify-content:space-between}.panel-filter_modal .panel-filter__switch.input-switch .panel-filter__switch-label{font-size:14px;font-weight:400;line-height:21px;margin-left:0}.panel-filter_modal .panel-filter__btns{gap:0 12px}.panel-filter_modal .panel-filter__btn.btn{flex:1 0 calc(50% - 20px);width:auto}}@media only screen and (max-width:767px){.panel-filter_modal .panel-filter__label{font-size:14px;line-height:21px}.panel-filter_modal .panel-filter__groups{gap:12px 0}.panel-filter_modal .panel-filter__btns{gap:0 8px}}.cards.cards_market{flex-wrap:wrap;gap:32px;margin:0;position:relative}.cards_market.cards_load{overflow:hidden}.cards_market .cards__preloader{backdrop-filter:blur(5.1199998856px);background-color:hsla(0,0%,100%,.9);bottom:0;left:0;position:absolute;right:0;top:0;user-select:none;z-index:1}.cards_market .cards__preloader-loader{margin:112px auto auto}.card_market{background-color:#fff;border-radius:12px;box-shadow:0 0 20px rgba(63,67,106,.102);display:flex;flex:0 1 calc(50% - 16px);flex-direction:column;min-height:296px;padding:36px}.card_market .card__header{display:flex;flex-direction:column;gap:16px 0}.card_market .card__header-section_main{align-items:stretch;display:flex;justify-content:space-between}.card_market .card__preview{align-items:center;display:flex;gap:0 24px}.card_market .card__preview-img{height:100%;max-height:32px}.card_market .card__preview-action{right:-6px}.card_market .card__title{color:#000;font-size:20px;font-weight:600;line-height:140%}.card_market .card__main{margin-top:24px}.card_market .card__text{display:flex;font-size:16px;line-height:150%}.card_market .card__text p{-webkit-line-clamp:4;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.card_market .card__btns{margin-top:32px}.card_market .card__btn.btn{color:#000;font-size:14px;font-weight:500;line-height:150%;padding:10.5px 20px;width:fit-content}.card_market .card__btn.btn .card__btn-icon{color:#9d87f1;height:8px;position:relative;top:1px;width:5px}.card_market .card__tip{--padTB:16px;--padLR:20px;--sizeContent:14px;--lhContent:18px;--maxWidth:240px;background-color:#fff;border-radius:4px;box-shadow:0 0 16px 0 rgba(63,67,106,.12);font-size:var(--sizeContent);line-height:var(--lhContent);max-width:calc(var(--maxWidth) + var(--padLR)*2);opacity:0;padding:var(--padTB) var(--padLR);pointer-events:none;position:absolute;transform:translateY(0);transition:transform .3s,opacity .3s;white-space:nowrap}.card_market .card__tip:after{border-color:#fff transparent transparent;border-style:solid;border-width:12px 10px 0;content:"";height:0;left:0;margin:auto;position:absolute;right:0;top:100%;width:0}.card_market .card__action{align-items:center;display:flex;justify-content:center;padding:6px 8px;position:relative}.card_market .card__action-icon{font-size:20px}.card_market .card__action-icon_default{color:#9f9f9f}.card_market .card__action-icon_fill{color:#9d87f1;display:none}.card_market .card__action.active .card__action-icon_default{display:none}.card_market .card__action.active .card__action-icon_fill{display:block}.card_market .card__action:hover>.card__tip{opacity:1;transform:translateY(-55px)}.card_market_empty{align-items:center;background-color:rgba(66,94,245,.05);justify-content:center;padding:36px}.card_market_empty .card__content{text-align:center}.card_market_not_found{flex:1}.card_market_not_found .card__content{max-width:700px}@media only screen and (max-width:1279px){.cards.cards_market{gap:24px}.card_market{flex-basis:100%;min-height:fit-content;padding:32px 32px 40px}.card_market .card__title{font-size:24px;line-height:130%}.card_market .card__main{margin-top:20px}.card_market .card__btns{margin-top:24px}.card_market .card__btn.btn{padding:10.5px 27px}.card_market .card__action:hover .card__action-icon_default{display:block}.card_market .card__action.active .card__action-icon_default,.card_market .card__action:hover .card__action-icon_fill{display:none}.card_market .card__action.active .card__action-icon_fill{display:block}.card_market .card__action:hover>.card__tip{opacity:0;transform:translateY(0)}.card_market .card__action:hover>.card__tip_active{opacity:1;transform:translateY(-50px)}.card_market .card__tip{--padTB:12px;--padLR:16px;--sizeContent:12px;--lhContent:15px;--maxWidth:160px}.card_market_empty{padding:36px 36px 40px}.card_market_empty .card__title{font-size:16px;line-height:140%}}@media only screen and (max-width:767px){.cards.cards_market{gap:20px}.card_market{padding:20px 20px 24px}.card_market .card__title{font-size:18px;line-height:130%}.card_market .card__header{gap:12px}.card_market .card__header-section_main{flex-direction:column;position:relative}.card_market .card__preview{margin-top:4px}.card_market .card__preview-action{position:absolute;right:0;top:-5px}.card_market .card__main{margin-top:16px}.card_market .card__text{font-size:14px;line-height:150%}.card_market .card__btns{margin-top:20px}.card_market .card__btn.btn{padding:8.5px;width:100%}.card_market_empty{padding:36px 36px 40px}.card_market_empty .card__title{font-size:16px;line-height:140%}}.card_not_found{align-items:center;border:1px solid var(--black-black-2,#f3f3f3);border-radius:8px;display:flex;justify-content:center;padding:80px 10px;width:100%}.card_not_found .card__content{align-items:stretch;display:flex;flex-direction:column;gap:12px 0;max-width:470px;text-align:center}.card_not_found .card__title{color:var(--black-black-5,#666);font-size:16px;font-weight:700;line-height:24px}.card_not_found .card__text{color:var(--black-black-4,#9f9f9f);font-size:16px;font-weight:400;line-height:24px}.tree_select{--elemSize:20px;--wrapGap:12px;--plr:10px;display:flex;flex-direction:column;gap:10px 0;padding:6px 0 2px}.tree_select .simplebar-track.simplebar-vertical{right:10px;top:6px}.tree_select .tree__btn{gap:0 3px}.tree_select .tree__btn-icon{align-items:center;display:flex;font-size:10px;height:12px;justify-content:center;width:12px}.tree_select .tree__btn-icon svg.icon{margin:0}.tree_select .tree__btn.btn{border-radius:8px;font-size:14px;font-weight:500;line-height:20px;padding:10px 24px}.tree_select .tree__btn_reset{color:#7e6cc1;font-size:12px;font-weight:400;line-height:18px}.tree_select .tree__btn_reset.btn{padding-right:0}.tree_select .tree__btns,.tree_select .tree__list,.tree_select .tree__search{padding-left:calc(var(--plr));padding-right:calc(var(--plr))}.tree_select .tree__btns{border-top:1px solid var(--black-black-3,#e3e3e3);display:flex;justify-content:space-between;padding-top:8px}.tree_select .tree__search-input{font-size:14px;height:44px;line-height:21px;min-height:44px;padding:12px}.tree_select .tree__main{max-height:197px;padding:4px 0 8px}.tree_select .tree__item{--indentNotChild:1px;--indentChild:3px;order:1}.tree_select .tree__item_checked{order:0}.tree_select .tree__item-wrapper{align-items:flex-start;display:flex;gap:0 var(--wrapGap);padding:6px 0}.tree_select .tree__item-wrapper_not_child{padding-left:calc(var(--wrapGap) + var(--elemSize) - var(--indentNotChild))}.tree_select .tree__item-wrapper .checkbox__view{align-self:flex-start;top:2px}.tree_select .tree__item-checkbox .checkbox__view{height:var(--elemSize);margin-right:0;max-width:var(--elemSize);min-width:var(--elemSize)}.tree_select .tree__item-checkbox .checkbox__text{margin-left:8px}.tree_select .tree__item-checkbox_parent_not_checked .checkbox__view{background-color:#9d87f1}.tree_select .tree__item-checkbox_parent_not_checked .checkbox__view .icon{font-size:medium;opacity:1}.tree_select .tree__item-toggle{--iconRotate:0deg;align-items:center;color:#9f9f9f;display:flex;font-size:10px;height:var(--elemSize);justify-content:center;position:relative;top:1px;width:var(--elemSize)}.tree_select .tree__item-toggle .icon{transform:rotate(var(--iconRotate));transition:transform .3s}.tree_select .tree__item-toggle_active{--iconRotate:180deg}.tree_select .tree__item-childrens{display:flex;flex-direction:column;padding-left:calc(var(--wrapGap) + var(--elemSize) - var(--indentChild))}@media only screen and (max-width:767px){.tree_select .tree__item{--indentNotChild:3px;--indentChild:1px}}.page_meta_markeplace .page__body{padding:60px 0 36px}.page_meta_markeplace .page__app,.page_meta_markeplace .page__filters,.page_meta_markeplace .page__section,.page_meta_markeplace .page__sections{display:flex;flex-direction:column}.page_meta_markeplace .page__section-header{align-items:baseline;display:flex;justify-content:space-between}.page_meta_markeplace .page__app,.page_meta_markeplace .page__sections{gap:60px 0}.page_meta_markeplace .page__filters{gap:40px 0}.page_meta_markeplace .page__section{gap:24px 0}.page_meta_markeplace .page__section-title{color:var(--black-black-6,#000);font-size:30px;font-weight:700;line-height:39px}.page_meta_markeplace .page__section-main_useful{display:flex;gap:24px}.page_meta_markeplace .page__section-main_useful .snippet{flex:0 1 calc(50% - 12px);min-height:238px}.page_meta_markeplace .page__section-main_useful .snippet .title{font-size:20px;margin-bottom:8px}.page_meta_markeplace .page__section-main_useful .snippet .text-typography{line-height:140%}.page_meta_markeplace .page__section-main_useful .snippet .btn{border:none;font-size:16px;font-weight:500;line-height:19px;min-width:fit-content;padding:14.5px 24px;width:fit-content}.page_meta_markeplace .page__section-main_useful .snippet__img{height:172px;margin:1px -6px 0 24px;max-height:172px;max-width:199px;min-height:172px;min-width:199px;width:199px}.page_meta_markeplace .page__section-main_useful .snippet__img img{height:100%;position:relative;top:0;transform:none;width:100%}@media only screen and (max-width:1279px){.page_meta_markeplace .page__body{padding:48px 0 12px}.page_meta_markeplace .page__section-header{flex-direction:column;gap:8px 0;justify-content:flex-start}.page_meta_markeplace .page__app,.page_meta_markeplace .page__sections{gap:48px 0}.page_meta_markeplace .page__filters .panel-filter{display:none}.page_meta_markeplace .page__filters .form-search__input{font-size:14px;line-height:150%;padding:6.5px 12px}.page_meta_markeplace .page__filters .form-search__btn_submit{padding:7px 12px}.page_meta_markeplace .page__filters .form-search__btn_close{padding-right:0}.page_meta_markeplace .page__section{gap:20px}.page_meta_markeplace .page__section-title{font-size:28px;line-height:120%}.page_meta_markeplace .page__section-main_useful{flex-direction:column;gap:20px}}@media only screen and (max-width:767px){.page_meta_markeplace .page__body{padding:40px 0 24px}.page_meta_markeplace .page__section-header{gap:16px 0}.page_meta_markeplace .page__app,.page_meta_markeplace .page__sections{gap:40px 0}.page_meta_markeplace .page__section-title{font-size:22px;line-height:120%}.page_meta_markeplace .page__section-main_useful{gap:16px}.page_meta_markeplace .page__section-main_useful .snippet{padding:16px}.page_meta_markeplace .page__section-main_useful .snippet__img{height:165px;margin:0 auto 16px;max-height:165px;max-width:192px;min-height:165px;min-width:192px;width:192px}.page_meta_markeplace .page__section-main_useful .snippet__img img{left:0}.page_meta_markeplace .page__section-main_useful .snippet .title{font-size:18px;line-height:130%}.page_meta_markeplace .page__section-main_useful .snippet .text-typograph{font-size:14px;line-height:140%}.page_meta_markeplace .page__section-main_useful .snippet .text-typograph:not(:last-child){margin-bottom:16px}.page_meta_markeplace .page__section-main_useful .snippet .btn{font-size:14px;line-height:normal;width:100%}}.page-intro_markeplace .page-intro__layer{background:radial-gradient(104.93% 163.56% at -9.93% 138.44%,rgba(145,43,193,.5) 0,rgba(43,177,193,0) 100%),linear-gradient(90deg,#474b95,#220452)}.page-intro_markeplace .page-intro__container{padding-bottom:60px;padding-top:74px}.page-intro_markeplace .page-intro__wrapper{gap:0 40px}.page-intro_markeplace .page-intro__wrapper-image{height:398px;max-height:398px;max-width:460px;min-height:398px;min-width:460px;right:0;top:-42px;width:460px}.page-intro_markeplace .page-intro__wrapper-image_mobile{display:none}.page-intro_markeplace .page-intro__wrapper-image img{height:100%;width:100%}.page-intro_markeplace .page-intro__content{display:flex;flex-direction:column;gap:24px 0;max-width:707px}.page-intro_markeplace .page-intro__content-title{color:var(--dark-white-white,#fff);font-size:64px;line-height:70.4px}.page-intro_markeplace .page-intro__content-text{color:var(--dark-white-80,hsla(0,0%,100%,.8));font-size:16px;font-weight:400;line-height:24px}.page-intro_markeplace .page-intro__preview{height:412px;max-width:488px;position:relative;width:100%}.page-intro_markeplace .page-intro__preview-img{height:100%;object-fit:contain;width:100%}.page-intro_markeplace .page-intro__preview_desktop{margin-top:-50px}.page-intro_markeplace .page-intro__preview_mobile{display:none}.page-intro_markeplace .page-intro__nav{margin-top:8px}.page-intro_markeplace .page-intro__nav-link{width:349px}@media only screen and (max-width:1279px){.page-intro_markeplace .page-intro__container{padding-bottom:48px;padding-top:62px}.page-intro_markeplace .page-intro__wrapper{gap:0 12px}.page-intro_markeplace .page-intro__wrapper-image{height:237px;max-height:237px;max-width:280px;min-height:237px;min-width:280px;top:-38px;width:280px}.page-intro_markeplace .page-intro__content{gap:20px 0;max-width:100%;width:100%}.page-intro_markeplace .page-intro__content-title{font-size:48px;line-height:110%}.page-intro_markeplace .page-intro__content-text,.page-intro_markeplace .page-intro__content-title{max-width:calc(100% - 292px)}.page-intro_markeplace .page-intro__preview{height:237px;max-width:280px;position:absolute;right:0;width:100%}.page-intro_markeplace .page-intro__preview_desktop{margin-top:-38px}.page-intro_markeplace .page-intro__nav{margin-top:4px}.page-intro_markeplace .page-intro__nav-link{flex:1 1 calc(50% - 4px);font-size:14px;line-height:130%;padding:11px;width:auto}.page-intro_markeplace .page-intro__nav .nav-intro__link-img{height:40px;width:40px}}@media only screen and (max-width:767px){.page-intro_markeplace .page-intro__container{padding-bottom:40px;padding-top:56px}.page-intro_markeplace .page-intro__content-title{font-size:32px;line-height:110%;order:0}.page-intro_markeplace .page-intro__content-text{font-size:14px;line-height:150%;order:2}.page-intro_markeplace .page-intro__content-text,.page-intro_markeplace .page-intro__content-title{max-width:100%}.page-intro_markeplace .page-intro__preview{height:188px;margin:0 auto -4px;max-width:222px;order:1;position:relative;width:100%}.page-intro_markeplace .page-intro__preview_desktop{display:none}.page-intro_markeplace .page-intro__preview_mobile{display:flex}.page-intro_markeplace .page-intro__nav{gap:8px;margin-top:0;order:3}.page-intro_markeplace .page-intro__nav-link{flex:1 1 100%;padding:7px 11px;width:auto}.page-intro_markeplace .page-intro__nav .nav-intro__link-img{height:32px;width:32px}}.modal.modal_market_filter .modal__main>.simplebar-track{z-index:-1}.modal.modal_market_filter,.modal.modal_market_filter_inside{--maxWidth:990px;--title:24px;--titleLh:31px;--titleWeight:600;max-width:var(--maxWidth)}.modal.modal_market_filter .simplebar-track.simplebar-vertical,.modal.modal_market_filter_inside .simplebar-track.simplebar-vertical{background-color:var(--Black-black-2,#f3f3f3);border-radius:12px;right:6px;width:6px}.modal.modal_market_filter .simplebar-track.simplebar-vertical .simplebar-scrollbar:before,.modal.modal_market_filter_inside .simplebar-track.simplebar-vertical .simplebar-scrollbar:before{border-radius:12px;left:0;opacity:1;right:0}.modal.modal_market_filter .modal__header,.modal.modal_market_filter_inside .modal__header{position:relative}.modal.modal_market_filter .modal__footer,.modal.modal_market_filter .modal__header,.modal.modal_market_filter_inside .modal__footer,.modal.modal_market_filter_inside .modal__header{padding:24px 36px}.modal.modal_market_filter .modal__main,.modal.modal_market_filter_inside .modal__main{padding:24px 36px 40px}.modal.modal_market_filter .modal__back,.modal.modal_market_filter_inside .modal__back{align-items:center;display:flex;gap:0 16px}.modal.modal_market_filter .modal__back-icon,.modal.modal_market_filter_inside .modal__back-icon{color:#7e6cc1;display:none;font-size:16px}.modal.modal_market_filter .modal__close,.modal.modal_market_filter_inside .modal__close{padding:16px;position:absolute;right:0;top:0}.modal.modal_market_filter .modal__close-icon,.modal.modal_market_filter_inside .modal__close-icon{font-size:20px}.modal.modal_market_filter .modal__title,.modal.modal_market_filter_inside .modal__title{font-size:var(--title);font-weight:var(--titleWeight);line-height:var(--titleLh)}@media only screen and (max-width:1279px){.modal.modal_market_filter,.modal.modal_market_filter_inside{--maxWidth:360px;--title:14px;--titleLh:18px;--titleWeight:700;border-radius:0;height:100dvh;left:0;position:fixed;top:0;z-index:1}.modal.modal_market_filter .modal__header,.modal.modal_market_filter_inside .modal__header{padding:20px}.modal.modal_market_filter .modal__header-close,.modal.modal_market_filter_inside .modal__header-close{display:none}.modal.modal_market_filter .modal__back-icon,.modal.modal_market_filter_inside .modal__back-icon{display:flex}.modal.modal_market_filter .modal__main,.modal.modal_market_filter_inside .modal__main{flex:1;padding:0 20px 20px}.modal.modal_market_filter .modal__footer,.modal.modal_market_filter_inside .modal__footer{padding:20px}}@media only screen and (max-width:1279px)and (max-width:767px){.modal.modal_market_filter .modal__header,.modal.modal_market_filter_inside .modal__header{padding:16px}.modal.modal_market_filter .modal__main,.modal.modal_market_filter_inside .modal__main{padding:0 16px 16px}}@media only screen and (max-width:1279px)and (max-width:425px){.modal.modal_market_filter,.modal.modal_market_filter_inside{--maxWidth:100%}}.modal.modal_market_filter_inside{display:flex;flex-direction:column;transform:translateX(calc(var(--maxWidth)*-1));transition:transform .3s}.modal.modal_market_filter_inside.active{transform:translateX(0)}.modal.modal_market_filter_inside .modal__main{display:flex;flex-direction:column}.modal.modal_market_filter_inside .modal__tree{--plr:0;flex:1;gap:4px 0}.modal.modal_market_filter_inside .modal__tree .tree__item-wrapper{padding-right:28px}.modal.modal_market_filter_inside .modal__tree-btns{border-top:0;padding-top:0}.modal.modal_market_filter_inside .modal__tree-btn.tree__btn_reset{gap:0 6px;padding:0}.modal.modal_market_filter_inside .modal__select [data-simplebar]{max-height:450px}.modal.modal_market_filter_inside .modal__select .simplebar-track.simplebar-vertical .simplebar-scrollbar{left:0}.modal.modal_market_filter_inside .modal__select-option{padding-left:0;padding-right:14px}.modal.modal_market_filter_inside .modal__select-option:hover{background-color:transparent}
/* End */


/* Start:/local/components/nota/market.list/templates/.default/css/CustomSlider.css?17388650743161*/
.slider__label {
	position: absolute;
	top: -17px;
	left: var(--position);
	background: #fff;
	color: #333;
	font-weight: 700;
	padding: 2px 5px;
	font-size: 12px;
	text-align: center;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	margin-left: 1em;
	-webkit-box-shadow: 0 10px 20px -5px rgba(45, 45, 45, .25);
	box-shadow: 0 10px 20px -5px rgba(45, 45, 45, .25);
	min-width: 30px;
	white-space: nowrap
}

.slider__label:after {
	content: "";
	position: absolute;
	bottom: -10px;
	height: 0;
	width: 0;
	left: 0;
	right: 0;
	margin: auto;
	border: 5px solid transparent;
	border-top-color: #fff
}

.slider__wrapper {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.slider__track {
	width: var(--position);
	left: 8px;
	right: 8px;
	position: absolute;
	z-index: 0;
	height: 3px;
	top: 0px;
	background: rgba(0, 0, 0, 0) linear-gradient(#9D87F1, #9D87F1) no-repeat;
	/*cursor: pointer;*/
}

.slider__track--rectangular {
	height: 3px
}

.slider__track-bottom, .slider__track-top {
	content: "";
	width: 100%;
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid
}

.slider__track-top {
	top: -6px;
	border-width: 0 0 6px 500px;
	border-color: transparent transparent #999 transparent
}

.slider__track-bottom {
	top: 3px;
	border-width: 0 500px 6px 0;
	border-color: transparent #999 transparent transparent
}

.slider__track-thumb {
	position: absolute;
	border: 2px solid #9D87F1;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	transform: translateY(-50%);
	top: 50%;
	left: var(--position);
	z-index: 10;
	background: #fff;
	box-shadow: none;
}

.slider__input {
	-webkit-appearance: none;
	background: none;
	padding: 0;
	z-index: 1;

	width: calc(100% - 16px);
	left: 8px;
	right: 8px;
	height: 5px;
	position: absolute;
}

.slider__input:focus {
	outline: none
}

.slider__input::-webkit-slider-runnable-track {
	width: 100%;
	height: 10px;
	cursor: pointer;
	animate: .2s;
	background: transparent;
	border-radius: 0;
	border: none
}

.slider__input::-webkit-slider-thumb {
	height: 16px;
	width: 16px;
	border-radius: 50%;
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -5px;
	background: transparent;
	box-shadow: none;
}

.slider__input::-moz-range-thumb {
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	border: none;
	box-shadow: none;
}

.slider__input::-ms-thumb {
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	box-shadow: none;
}

.slider__input:focus::-webkit-slider-runnable-track {
	background: transparent
}

.slider__input::-moz-range-track {
	width: 100%;
	height: 0px;
	cursor: pointer;
	animate: .2s;
	background: transparent;
	border-radius: 0
}

.slider__input::-ms-track {
	width: 100%;
	height: 0px;
	cursor: pointer;
	animate: .2s;
	background: transparent;
	border-color: transparent;
	border-width: 10px 0;
	border-radius: 0;
	color: transparent
}

.slider__input::-ms-fill-lower, .slider__input::-ms-fill-upper {
	background: transparent;
	border: none;
	border-radius: 0
}
/* End */
/* /local/components/nota/market.list/templates/.default/style.css?177736992262956 */
/* /local/templates/extranet/assets/css/meta/marketplaces.css?175070366127479 */
/* /local/components/nota/market.list/templates/.default/css/CustomSlider.css?17388650743161 */
