

/* 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/service/market.css?176184824152405*/
div.modal_market-check-business .modal__note-icon{align-self:flex-start;top:4px}.modal_market-check-business{--titleW:700;--titleS:24px;--titleLH:31px;--maxWidth:700px;--selectHeaderS:18px;--selectHeaderLH:25px;--selectOptionS:18px;--selectOptionLH:25px;--mainGap:24px 0;max-width:var(--maxWidth)}.modal_market-check-business .modal__header{padding:36px 36px 24px;position:relative}.modal_market-check-business .modal__close{padding:18px 16px 16px;position:absolute;right:0;top:0}.modal_market-check-business .modal__close-icon{font-size:20px}.modal_market-check-business .modal__title{font-size:var(--titleS);font-weight:var(--titleW);line-height:var(--titleLH)}.modal_market-check-business .modal__main{display:flex;flex-direction:column;gap:var(--mainGap);padding:0 36px}.modal_market-check-business .modal__footer{padding:24px 36px 36px}.modal_market-check-business .modal__btns{display:flex;gap:0 12px;justify-content:flex-end}.modal_market-check-business .modal__btn.btn{font-weight:600;line-height:18px}.modal_market-check-business .modal__select-header{font-size:var(--selectHeaderS);line-height:var(--selectHeaderLH)}.modal_market-check-business .modal__select-option{font-size:var(--selectOptionS);line-height:var(--selectOptionLH)}.modal_market-check-business .modal__select-icon .icon{font-size:16px}.modal_market-check-business .modal__note{background-color:rgba(246,197,68,.4);border:0}.modal_market-check-business .modal__note-icon .icon{color:#f09537}@media only screen and (max-width:1024px){.modal_market-check-business{--maxWidth:580px;--selectHeaderS:14px;--selectHeaderLH:21px;--selectOptionS:16px;--selectOptionLH:24px;--mainGap:20px 0}.modal_market-check-business .modal__header{padding:24px 24px 16px}.modal_market-check-business .modal__main{padding:0 24px}.modal_market-check-business .modal__footer{padding:20px 24px 24px}}@media only screen and (max-width:767px){.modal_market-check-business{--maxWidth:288px;--titleS:16px;--titleLH:22px;--selectOptionS:var(--selectHeaderS);--selectOptionLH:var(--selectHeaderLH);--mainGap:16px 0}.modal_market-check-business .modal__footer,.modal_market-check-business .modal__header{padding:16px}.modal_market-check-business .modal__btns{align-items:stretch;flex-direction:column;justify-content:flex-start}}.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}.market-section{display:flex;flex-direction:column;gap:24px 0}.market-section__header{display:flex;flex-direction:column;gap:8px 0}.market-section__header-sub{word-wrap:break-word}.market-section__header-sub_hidden{display:none}.market-section__header-dots{margin-left:-4px}.market-section__header-text{font-size:16px;line-height:22px}.market-section__header-text h2{font-size:30px;font-weight:700;line-height:130%}.market-section__header-text.active .market-section__header-sub_hidden{display:initial}.market-section__header-text.active .market-section__header-dots,.market-section__header-text.active .market-section__header-sub_start{display:none}.market-section__header-text ol,.market-section__header-text ul{display:flex;flex-direction:column;gap:8px 0}.market-section__header-text ol li,.market-section__header-text ul li{align-items:baseline;display:flex}.market-section__header-text ol li:last-child,.market-section__header-text ul li:last-child{margin-bottom:0}.market-section__header-text ol li:before,.market-section__header-text ul li:before{position:relative}.market-section__header-text ol li>a,.market-section__header-text ol li>b,.market-section__header-text ol li>strong,.market-section__header-text ul li>a,.market-section__header-text ul li>b,.market-section__header-text ul li>strong{display:contents}.market-section__header-text ul li:before{background-color:#8879c2;bottom:2px;content:"";height:4px;margin-right:7px;max-width:4px;min-width:4px}.market-section__header-text ol{counter-reset:li}.market-section__header-text ol>li:before{color:#9d87f1;content:counter(li) ".";counter-increment:li;margin-right:8px;min-width:24px}.market-section__header-action.btn-action{align-items:center}.market-section__header-action.btn-action>*{pointer-events:none}.market-section__header-action.btn-action .icon{font-size:16px;top:1px}.market-section__categories{display:flex;flex-direction:column;gap:20px 0}.market-section__category{grid-gap:0 20px;background-color:var(--dark-indigo-5,rgba(66,94,245,.05));border-radius:12px;display:flex;padding:40px}.market-section__category-cards,.market-section__category-preview{flex:1}.market-section__category-preview{display:flex;flex-direction:column;gap:24px 0}.market-section__category-title{color:var(--black-black-6,#000);font-size:40px;font-weight:600;line-height:48px}.market-section__category-text{color:var(--black-black-6,#000);font-size:16px;font-weight:400;line-height:22px}.market-section__category-cards{display:flex;flex-direction:column;gap:20px 0}@media only screen and (max-width:1279px){.market-section__header-text h2{font-size:28px;line-height:120%}.market-section__categories{gap:16px 0}.market-section__category{flex-direction:column;gap:20px;padding:32px}.market-section__category-preview{gap:20px 0}.market-section__category-title{font-size:28px;line-height:120%}}@media only screen and (max-width:767px){.market-section__header-text h2{font-size:22px;line-height:120%}.market-section__categories{gap:12px 0}.market-section__category{gap:16px;padding:16px}.market-section__category-preview{gap:16px 0}.market-section__category-title{font-size:22px;line-height:120%}.market-section__category-text{font-size:14px;line-height:150%}}.card_market_category{background-color:#fff;border:1px solid var(--black-black-3,#e3e3e3);border-radius:12px;display:flex;flex-direction:column;gap:20px 0;justify-content:space-between;padding:32px}.card_market_category .card__title{color:var(--black-black-6,#000);font-size:20px;font-weight:600;line-height:28px}.card_market_category .card__btns{display:flex;justify-content:flex-start}.card_market_category .card__btn{border-radius:8px;font-size:14px;font-weight:500;gap:0 6px;line-height:20px;padding:10px 24px}.card_market_category .card__btn>*{pointer-events:none}.card_market_category .card__btn span+.icon{margin-left:4px}.card_market_category .card__btn-icon{color:#9d87f1;font-size:9px}.card_market_category .card__btn_disabled.btn{background-color:transparent;border:1px solid var(--Black-black-3,#e3e3e3);color:var(--Black-black-4,#9f9f9f)}.card_market_category .card__btn_disabled.btn .icon{color:inherit}.card_market_category .card__btn_disabled.btn:hover{background-color:transparent;border:1px solid var(--Black-black-3,#e3e3e3);color:var(--Black-black-4,#9f9f9f)}@media only screen and (max-width:1279px){.card_market_category{gap:16px 0;padding:24px}.card_market_category .card__title{line-height:130%}.card_market_category .card__btn{padding:9px 23px}}@media only screen and (max-width:767px){.card_market_category{gap:12px 0;padding:16px}.card_market_category .card__title{font-size:18px;line-height:130%}.card_market_category .card__btn{padding:9px 23px;width:100%}}.cards.cards_market_compare{background-color:var(--dark-indigo-5,rgba(66,94,245,.05));border-radius:12px;flex-wrap:wrap;gap:20px;margin:0;padding:40px;position:relative}.cards_market_compare.cards_load{overflow:hidden}.cards_market_compare .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_compare .cards__preloader-loader{margin:112px auto auto}.card_market_compare{background-color:#fff;border-radius:12px;display:flex;flex:0 1 calc(50% - 10px);flex-direction:column;gap:20px 0;min-height:140px;padding:20px 24px}.card_market_compare .card__header{display:flex;flex-direction:column;gap:12px 0}.card_market_compare .card__header-section{align-items:stretch;display:flex;justify-content:space-between}.card_market_compare .card__header-action{margin-right:-8px;margin-top:-14px;top:6px}.card_market_compare .card__title{color:#000;font-size:16px;font-weight:600;line-height:22px}.card_market_compare .card__text{color:var(--Black-black-4,#9f9f9f);font-size:12px;font-weight:400;line-height:16px}.card_market_compare .card__action{align-items:center;display:flex;justify-content:center;padding:6px 8px;position:relative}.card_market_compare .card__action-icon_default{color:#9f9f9f;font-size:16px}.card_market_compare .card__action-icon_fill{color:#9d87f1;display:none;font-size:17px}.card_market_compare .card__action.active .card__action-icon_default{display:none}.card_market_compare .card__action.active .card__action-icon_fill{display:block}.card_market_compare .card__btns{margin-top:auto}.card_market_compare .card__btn.btn{color:var(--Black-black-6,#000);font-size:14px;font-weight:500;gap:0 8px;line-height:20px;padding:10px 20px}.card_market_compare .card__btn.btn span+.icon{margin-left:0}.card_market_compare .card__btn.btn>*{pointer-events:none}.card_market_compare .card__btn-icon{color:#9d87f1;font-size:9px;position:relative;top:1px}.card_market_compare .card__btn-icon_filled,.card_market_compare .card__btn-icon_hollow{color:#9d87f1;font-size:16px}.card_market_compare .card__btn-icon_filled,.card_market_compare .card__btn_subscribe .card__btn-icon_hollow{display:none}.card_market_compare .card__btn_subscribe .card__btn-icon_filled{display:block}@media only screen and (max-width:1279px){.cards.cards_market_compare{flex-direction:column;gap:16px;padding:32px 16px 16px}.card_market_compare .card__btn.btn{padding:9px 26px}}@media only screen and (max-width:767px){.cards.cards_market_compare{gap:12px;padding:12px}.card_market_compare{gap:12px;padding:16px}.card_market_compare .card__btn.btn{width:100%}.card_market_compare .card__header{gap:8px}.card_market_compare .card__title{font-size:14px;line-height:150%}}.cards.cards_market_service{flex-wrap:wrap;gap:10px;margin:0;position:relative}@media only screen and (max-width:767px){.cards.cards_market_service{gap:12px 0}}.card_market_service{background-color:#fff;border-radius:12px;display:flex;flex:1 0 calc(50% - 5px);flex-direction:column;gap:20px 0;min-height:205px;padding:20px 24px}.card_market_service .card__header{display:flex;flex-direction:column;gap:12px 0}.card_market_service .card__header-section{align-items:stretch;display:flex;justify-content:space-between}.card_market_service .card__header-action{margin-left:auto;margin-right:-8px;margin-top:-14px;top:6px}.card_market_service .card__title{color:var(--Black-black-6,#000);font-size:16px;font-weight:600;line-height:22px}.card_market_service .card__text{color:var(--Black-black-4,#9f9f9f);font-size:12px;font-weight:400;line-height:16px}.card_market_service .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_service .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_service .card__action{align-items:center;display:flex;justify-content:center;padding:6px 8px;position:relative}.card_market_service .card__action>*{pointer-events:none}.card_market_service .card__action-icon_default,.card_market_service .card__action-icon_fill{font-size:16px;position:relative}.card_market_service .card__action-icon_default{color:#9f9f9f}.card_market_service .card__action-icon_fill{color:#9d87f1;display:none;top:-1px}.card_market_service .card__action.active .card__action-icon_default{display:none}.card_market_service .card__action.active .card__action-icon_fill{display:block}.card_market_service .card__action:hover>.card__tip{opacity:1;transform:translateY(-55px)}.card_market_service .card__btns{margin-top:auto}.card_market_service .card__btn.btn{color:var(--Black-black-6,#000);font-size:14px;font-weight:500;gap:0 8px;line-height:20px;padding:10px 20px}.card_market_service .card__btn.btn span+.icon{margin-left:0}.card_market_service .card__btn.btn>*{pointer-events:none}.card_market_service .card__btn-icon{color:#9d87f1;font-size:9px;position:relative;top:1px}.card_market_service .card__btn-icon_filled,.card_market_service .card__btn-icon_hollow{color:#9d87f1;font-size:16px}.card_market_service .card__btn-icon_filled,.card_market_service .card__btn_subscribe .card__btn-icon_hollow{display:none}.card_market_service .card__btn_subscribe .card__btn-icon_filled{display:block}@media only screen and (max-width:1279px){.card_market_service .card__action:hover>.card__tip{opacity:0;transform:translateY(0)}.card_market_service .card__action:hover>.card__tip_active{opacity:1;transform:translateY(-50px)}}@media only screen and (max-width:767px){.card_market_service .card__header{gap:8px 0}.card_market_service .card__title{font-size:14px;line-height:21px}.card_market_service .card__tip{--padTB:12px;--padLR:16px;--sizeContent:12px;--lhContent:15px;--maxWidth:160px}}@media only screen and (max-width:425px){.card_market_service .card__btn{width:100%}}.page_service_market_compare .page__header{display:flex;flex-direction:column;gap:24px 0}.page_service_market_compare .page__header-text{font-size:20px;font-weight:400;line-height:28px}.page_service_market_compare .page__title{font-size:40px;font-weight:700;line-height:48px}.page_service_market_compare .page__tabs{margin-top:32px}.page_service_market_compare .page__app,.page_service_market_compare .page__cards{display:flex;flex-direction:column}.page_service_market_compare .page__app{gap:32px 0}.page_service_market_compare .page__cards{gap:48px 0}@media only screen and (max-width:1279px){.page_service_market_compare{padding-bottom:60px;padding-top:24px}.page_service_market_compare .breadcrumb{margin-bottom:24px}.page_service_market_compare .page__header{gap:20px}.page_service_market_compare .page__header-text{font-size:16px;line-height:150%}.page_service_market_compare .page__title{font-size:36px;line-height:120%}.page_service_market_compare .page__tabs{margin-top:24px}.page_service_market_compare .page__app{gap:24px}.page_service_market_compare .page__cards{gap:40px}}@media only screen and (max-width:767px){.page_service_market_compare{padding-bottom:48px;padding-top:20px}.page_service_market_compare .breadcrumb{margin-bottom:20px}.page_service_market_compare .page__header{gap:16px}.page_service_market_compare .page__header-text{font-size:14px}.page_service_market_compare .page__title{font-size:26px;line-height:120%}.page_service_market_compare .page__tabs{margin-top:24px}.page_service_market_compare .page__app{gap:20px}.page_service_market_compare .page__cards{gap:32px}.page_service_market_compare .note.note_compare_not_found{flex-direction:column;padding:16px}.page_service_market_compare .note.note_compare_not_found .note__icon{height:80px;margin:0 auto 20px;max-width:80px;min-width:80px}.page_service_market_compare .note.note_compare_not_found .note__title{font-size:20px;line-height:130%}.page_service_market_compare .note.note_compare_not_found .note__text{font-size:14px;line-height:150%}.page_service_market_compare .note.note_compare_not_found .btn{font-weight:500;margin-top:12px;width:100%}}.tabs-content.tabs-content_compare{position:static}.tabs-content.tabs-content_compare .tabs-content__button{align-items:center;display:flex;gap:0 6px;padding-top:4px}.tabs-content.tabs-content_compare .tabs-content__button-icon{color:#7e6cc1}.tabs-content.tabs-content_compare .tabs-content__button-icon_favorite{font-size:17px}.tabs-content.tabs-content_compare .tabs-content__button-icon_compare{font-size:18px}.tabs-content.tabs-content_compare .tabs-content__buttons{width:100%}.tabs-content.tabs-content_compare .tabs-content__tab{padding-top:32px}.tabs-content.tabs-content_compare .tabs-content__tab.active{position:static}@media only screen and (max-width:1279px){.tabs-content.tabs-content_compare .tabs-content__button{margin-right:24px}.tabs-content.tabs-content_compare .tabs-content__button:last-child{margin-right:0}.tabs-content.tabs-content_compare .tabs-content__tab{padding-top:24px}}@media only screen and (max-width:767px){.tabs-content.tabs-content_compare .tabs-content__button{margin-right:16px}.tabs-content.tabs-content_compare .tabs-content__button:last-child{margin-right:0}.tabs-content.tabs-content_compare .tabs-content__tab{padding-top:20px}}.panel-filter_compare{--inputHeight:44px;display:flex;flex-direction:column;gap:32px 0}.panel-filter_compare .panel-filter__form{display:flex;flex-direction:column;gap:16px 0}.panel-filter_compare .panel-filter__actions{align-items:stretch;display:flex;justify-content:space-between}.panel-filter_compare .panel-filter__actions-section{display:flex;gap:0 24px}.panel-filter_compare .panel-filter__count{align-items:center;display:flex;gap:0 4px}.panel-filter_compare .panel-filter__count-label{color:var(--Black-black-5,#666)}.panel-filter_compare .panel-filter__groups{display:flex;flex-wrap:wrap;gap:16px 12px}.panel-filter_compare .panel-filter__group{width:calc(50% - 6px)}.panel-filter_compare .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:18px;margin-bottom:8px}.panel-filter_compare .panel-filter__label-icon{cursor:pointer;display:flex}.panel-filter_compare .panel-filter__label-icon .icon{color:#9d87f1;pointer-events:none}.panel-filter_compare .panel-filter__select .select-search__header{background-color:#fff;height:var(--inputHeight);padding:10px 12px}.panel-filter_compare .panel-filter__select .select-search__header-text_placeholder{color:var(--black-black-4,#9f9f9f);font-size:14px;line-height:21px}.panel-filter_compare .panel-filter__btn_remove.btn-action,.panel-filter_compare .panel-filter__btn_reset.btn-action{align-items:center;color:var(--Purple-purple-5,#7e6cc1)}.panel-filter_compare .panel-filter__btn_reset.btn-action{gap:0 2px}.panel-filter_compare .panel-filter__btn_reset.btn-action .btn-action__icon{font-size:13px}.panel-filter_compare .panel-filter__btn_remove.btn-action .btn-action__icon{font-size:15px}@media only screen and (max-width:1279px){.panel-filter_compare{gap:24px}.panel-filter_compare .form-search__input_empty{padding:9px 16px}}@media only screen and (max-width:767px){.panel-filter_compare{gap:20px}.panel-filter_compare input.form-search__input_empty{padding:8px 0 8px 12px}.panel-filter_compare button.form-search__btn_submit{padding-left:7px}.panel-filter_compare .panel-filter__form{gap:12px}.panel-filter_compare .panel-filter__groups{flex-direction:column}.panel-filter_compare .panel-filter__group{width:100%}.panel-filter_compare .panel-filter__btn_reset{font-size:14px;line-height:150%}.panel-filter_compare .panel-filter__btn_reset .icon+span{margin-left:6px}.panel-filter_compare .panel-filter__actions,.panel-filter_compare .panel-filter__actions-section{flex-direction:column;gap:16px}}.filter-sort.filter-sort_service_markets .select-search__header-icon .icon{font-size:9px}.filter-sort.filter-sort_service_markets .select-search__header-text{color:var(--Purple-purple-5,#7e6cc1)}.filter-sort.filter-sort_service_markets .select-search__option{font-size:16px;line-height:24px}.filter-sort.filter-sort_service_markets .filter-sort__item{gap:0 4px;margin:0}.filter-sort.filter-sort_service_markets .filter-sort__select-header{gap:0 4px}.filter-sort.filter-sort_service_markets .filter-sort__select-body{left:auto;min-width:320px}@media only screen and (max-width:767px){.filter-sort.filter-sort_service_markets .filter-sort__select-body{min-width:235px}}.marketplaces_detail .page-layout{display:flex;flex-direction:column;grid-template-columns:1fr}.marketplaces_detail .page-layout__title{font-size:30px;font-weight:700;line-height:130%;margin-bottom:32px}.marketplaces_detail .page-layout__slider .slider-controls{margin:40px auto 0}.marketplaces_detail .page-layout__slider .slider-controls .swiper-pagination-bullet-active{background-color:#e2dbfb}.marketplaces_detail .page-layout__slider .slider-controls .swiper-pagination-bullet__timer-bckg{background-color:#9d87f1}.marketplaces_detail .filter-sort{font-size:16px;line-height:24px;margin-bottom:20px}.marketplaces_detail .filter-sort__item-label{color:#000}.marketplaces_detail .filter-sort .custom-select__header,.marketplaces_detail .filter-sort .custom-select__header .icon,.marketplaces_detail .filter-sort .custom-select__header span{color:#7e6cc1}.marketplaces_detail .filter-sort .custom-select__body{left:0;max-width:551px;min-width:551px}.marketplaces-card{background:linear-gradient(90deg,#474b95,#7552ae);border-radius:12px;color:#fff;display:flex;gap:44px;padding:60px 40px}.marketplaces-card__body{display:flex;flex-direction:column;margin-right:44px;width:100%}.marketplaces-card__title{font-size:40px;font-weight:700;line-height:120%;margin-bottom:16px}.marketplaces-card__text{font-size:16px;line-height:150%;margin-bottom:24px}.marketplaces-card__text:last-child{margin-bottom:0}.marketplaces-card__text ul{margin:16px 0}.marketplaces-card__text ul:first-child{margin-top:0}.marketplaces-card__text ul:last-child{margin-bottom:0}.marketplaces-card__text ul li{align-items:baseline;display:flex;margin-bottom:4px}.marketplaces-card__text ul li:last-child{margin-bottom:0}.marketplaces-card__text ul li:before{margin-right:16px;position:relative}.marketplaces-card__text ul li>a{display:contents}.marketplaces-card__text ul li>span>ol,.marketplaces-card__text ul li>span>ul{margin-top:24px}.marketplaces-card__text ul li:before{background-color:#8879c2;bottom:3px;content:"";height:4px;max-width:4px;min-width:4px}.marketplaces-card__button{font-size:16px;font-weight:500;line-height:19px;width:fit-content}.marketplaces-card__button .icon{height:17px;margin-right:7px;width:13px}.marketplaces-card__image{align-items:center;background:#fff;border-radius:12px;display:flex;height:auto;justify-content:center;max-width:327px;min-height:100%;min-width:327px;padding:16px}.marketplaces-card__image img{max-height:40px;object-fit:contain;width:100%}.marketplaces-about,.marketplaces-conditions{display:flex;gap:64px}.marketplaces-about .btn-action.card-label_link:not(:first-child),.marketplaces-conditions .btn-action.card-label_link:not(:first-child){margin-top:16px}.marketplaces-about .text-typography,.marketplaces-conditions .text-typography{font-size:16px;line-height:150%}.marketplaces-about .text-typography p,.marketplaces-conditions .text-typography p{margin:16px 0}.marketplaces-about .text-typography p:first-child,.marketplaces-conditions .text-typography p:first-child{margin-top:0}.marketplaces-about .text-typography p:last-child,.marketplaces-conditions .text-typography p:last-child{margin-bottom:0}.marketplaces-about .card-label_link,.marketplaces-conditions .card-label_link{color:#7e6cc1;font-size:14px;line-height:17px}.marketplaces-about .card-label_link .icon,.marketplaces-conditions .card-label_link .icon{height:5px;margin-left:4px;margin-right:0;top:1.5px;width:8px}.marketplaces-about .card-label_link:not(:first-child),.marketplaces-conditions .card-label_link:not(:first-child){margin-top:-16px}.marketplaces-about__text{max-width:789px;width:100%}.marketplaces-about__text .text-typography:not(:last-child){margin-bottom:32px}.marketplaces-about__text .text-typography ul{margin:32px 0}.marketplaces-about__text .text-typography ul:first-child{margin-top:0}.marketplaces-about__text .text-typography ul:last-child{margin-bottom:0}.marketplaces-about__text .text-typography ul li{margin-bottom:10px}.marketplaces-about__text .text-typography ul li:last-child{margin-bottom:0}.marketplaces-about__text .text-typography ul li:before{background:transparent;bottom:-4px;content:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjQ0MiAzLjY4M2ExMCAxMCAwIDEgMSAxMS4xMTIgMTYuNjNBMTAgMTAgMCAwIDEgNi40NDIgMy42ODNabTIuODIyIDYuNzM4IDIuMTMyIDIuMTMxTDE0LjkyIDkuMDNsMS4yMDEgMS4yMDItNC43MjUgNC43MjYtMy4zMzQtMy4zMzQgMS4yMDItMS4yMDJaIiBmaWxsPSIjOUQ4N0YxIi8+PC9zdmc+");display:flex;height:24px;margin-right:8px;max-width:24px;min-width:24px}.marketplaces-conditions__steps{max-width:789px;width:100%}.marketplaces-conditions__steps h2{font-size:24px;font-weight:600;line-height:130%}.marketplaces-conditions__steps h2:not(:last-child){margin-bottom:16px}.marketplaces-conditions__steps ol,.marketplaces-conditions__steps ul{margin:16px 0 32px}.marketplaces-conditions__steps ol:first-child,.marketplaces-conditions__steps ul:first-child{margin-top:0}.marketplaces-conditions__steps ol:last-child,.marketplaces-conditions__steps ul:last-child{margin-bottom:0}.marketplaces-conditions__steps ol li,.marketplaces-conditions__steps ul li{align-items:baseline;display:flex;margin-bottom:4px}.marketplaces-conditions__steps ol li:last-child,.marketplaces-conditions__steps ul li:last-child{margin-bottom:0}.marketplaces-conditions__steps ol li:before,.marketplaces-conditions__steps ul li:before{margin-right:16px;position:relative}.marketplaces-conditions__steps ol li>a,.marketplaces-conditions__steps ul li>a{display:contents}.marketplaces-conditions__steps ol li>span>ol,.marketplaces-conditions__steps ol li>span>ul,.marketplaces-conditions__steps ul li>span>ol,.marketplaces-conditions__steps ul li>span>ul{margin-top:24px}.marketplaces-conditions__steps ul li:before{background-color:#9d87f1;bottom:3px;content:"";height:2px;margin-right:19px;max-width:11px;min-width:11px}.marketplaces-conditions__steps ol{counter-reset:li}.marketplaces-conditions__steps ol>li:before{color:#9d87f1;content:counter(li) ".";counter-increment:li}.marketplaces-conditions__steps .text-typography:not(:last-child){margin-bottom:16px}.marketplaces-conditions__step:not(:last-child){margin-bottom:32px}.marketplaces-conditions__title{font-size:24px;font-weight:600;line-height:130%;margin-bottom:16px}.marketplaces-conditions__info{font-size:16px;font-weight:500;line-height:150%}.marketplaces-conditions__info a{color:#7e6cc1;text-decoration:none}.marketplaces-info__list{display:flex;flex-direction:column;gap:20px}.marketplaces-info__label{color:#666;font-size:16px;line-height:150%}.marketplaces-info__text{font-size:28px;font-weight:600;line-height:120%}.marketplaces-services{display:flex;flex-direction:column;gap:40px}.marketplaces-services__card{background:rgba(66,94,245,.05);border-radius:12px;padding:30px}.marketplaces-services__header{align-items:center;display:flex;margin-bottom:24px}.marketplaces-services__icon{height:48px;margin-right:12px;max-height:48px;max-width:48px;min-height:48px;min-width:48px;width:48px}.marketplaces-services__title{font-size:24px;font-weight:700;line-height:130%}.marketplaces-services__subtitle{font-size:20px;font-weight:600;line-height:140%;margin-bottom:16px}.marketplaces-services__list{display:flex;flex-wrap:wrap;gap:20px}.marketplaces-services__list:not(:last-child){margin-bottom:40px}.marketplaces-services__list_links{margin:-28px 0}.marketplaces-services__list_links:not(:last-child){margin-bottom:-28px}.marketplaces-services__item{background:#fff;border-radius:12px;display:flex;flex:0 1 calc(33.33% - 14px);flex-direction:column;padding:20px 24px 24px}.marketplaces-services__item_purple{background:rgba(66,94,245,.1)}.marketplaces-services__item-text{margin-bottom:8px}.marketplaces-services__item-title{font-size:16px;font-weight:600;line-height:150%}.marketplaces-services__item-title:not(:last-child){margin-bottom:12px}.marketplaces-services__item-organization{color:#9f9f9f;font-size:12px;line-height:130%}.marketplaces-services__item-link{align-items:center;border:1px solid #9d87f1;border-radius:8px;display:flex;height:32px;justify-content:center;margin-left:auto;margin-top:auto;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.marketplaces-services__item-link .icon{color:#9d87f1;height:8px;width:5px}.marketplaces-services__item_link{align-items:center;flex-direction:row;padding:20px}.marketplaces-services__item_link .marketplaces-services__item-text{margin-bottom:0;margin-right:16px}.marketplaces-services__item_link .marketplaces-services__item-link{background:#fff;border:none}.marketplaces-services__item_link .marketplaces-services__item-link .icon{color:#9d87f1;height:16px;transform:rotate(87deg);width:16px}.marketplaces-services__item .card-labels_tags{gap:4px}.marketplaces-services__item .card-labels_tags .card-label{margin:0}.marketplaces-services__plug{background:rgba(66,94,245,.1);border-radius:12px;display:flex;font-size:16px;justify-content:center;line-height:150%;padding:20px 24px 24px;width:100%}.marketplaces-education{display:flex;flex-wrap:wrap;gap:40px 20px}.marketplaces-education__link{display:flex;flex:0 1 calc(50% - 10px)}.marketplaces-education__card{align-items:flex-start;background-size:contain;border-radius:8px;color:#fff;display:flex;flex-direction:column;height:132px;justify-content:space-between;margin-right:15px;max-height:132px;max-width:200px;min-height:132px;min-width:200px;padding:16px;text-decoration:none;width:200px}.marketplaces-education__card-time{align-items:center;display:flex;flex-direction:column;font-size:28px;font-weight:500;line-height:28px}.marketplaces-education__card-text{font-size:14px;line-height:17px}.marketplaces-education__card-start{align-items:center;display:flex;font-size:14px;font-weight:500;line-height:17px}.marketplaces-education__card-start .icon{height:16px;margin-right:4px;width:16px}.marketplaces-education__text{display:flex;flex-direction:column}.marketplaces-education__text .card-labels{gap:8px;margin:0 0 4px}.marketplaces-education__text .card-label{color:#666;line-height:16px;margin:0}.marketplaces-education__text .card-event__header-label_more{color:#9f9f9f}.marketplaces-education__title{font-size:14px;font-weight:700;line-height:130%;margin-bottom:auto}.marketplaces-education__speaker{align-items:center;display:flex;margin-top:12px}.marketplaces-education__speaker-photo{border-radius:50%;height:28px;margin-right:7px;max-height:28px;max-width:28px;min-height:28px;min-width:28px;object-fit:cover;width:28px}.marketplaces-education__speaker-name{font-size:12px;line-height:130%}.marketplaces-education__speaker-more{color:#666;font-size:12px;line-height:130%}.marketplaces-slider .swiper-container{margin:-20px -10px;padding:20px 10px}.marketplaces-slider .swiper-slide{align-items:flex-start;background:#fff;border-radius:12px;box-shadow:0 0 16px rgba(63,67,106,.12);display:flex;flex-direction:column;padding:20px 24px 24px}.marketplaces-slider__logo{margin-bottom:9px;max-height:32px;max-width:100%}.marketplaces-slider__link{color:#7e6cc1;font-size:14px;line-height:17px;text-decoration:none}.marketplaces-slider__link .icon{height:8px;margin-left:5px;width:5px}.marketplaces .list-btns__show-more,.marketplaces-slider__link-text_mobile{display:none}.modal_marketplaces-education{max-width:700px;padding:36px}.modal_marketplaces-education .mfp-close{color:#000;cursor:pointer;display:flex;height:48px;opacity:1;padding:15px;position:absolute;right:12px;top:12px;width:48px}.modal_marketplaces-education .mfp-close .icon{color:#000;height:18px;width:18px}.modal_marketplaces-education .modal__title{font-size:24px;font-weight:700;line-height:130%;margin-bottom:24px}.modal_marketplaces-education .modal__text{font-size:18px;line-height:140%;margin-bottom:24px}.modal_marketplaces-education .modal__card{align-items:flex-start;border:1px solid #e3e3e3;border-radius:12px;color:#000;display:flex;margin-bottom:24px;padding:24px;text-decoration:none}.modal_marketplaces-education .modal__card-logo{align-items:center;display:flex;height:77px;justify-content:center;margin-right:42px;max-height:77px;max-width:171px;min-height:77px;min-width:171px;width:171px}.modal_marketplaces-education .modal__card-logo img{height:100%;max-height:40px;max-width:100%}.modal_marketplaces-education .modal__card-title{font-size:18px;font-weight:600;line-height:140%}.modal_marketplaces-education .list-btns{gap:12px;justify-content:flex-end;margin:0;padding:0}.modal_marketplaces-education .list-btns__btn{font-size:12px;font-weight:600;letter-spacing:.04em;line-height:150%;margin:0;text-transform:uppercase}@media only screen and (max-width:1279px){.marketplaces_detail .page-layout{gap:24px}.marketplaces_detail .page-layout__title{font-size:28px;line-height:120%;margin-bottom:24px}.marketplaces_detail .page-layout__main{margin-bottom:24px}.marketplaces_detail .page-layout__main:last-child{margin-bottom:0}.marketplaces_detail .filter-sort{font-size:14px;line-height:24px}.marketplaces_detail .filter-sort__item-label{font-weight:700}.marketplaces_detail .filter-sort .custom-select__header-selected,.marketplaces_detail .filter-sort .label{font-size:14px;line-height:24px}.marketplaces_detail .list-btns__show-more_tablet{display:flex;flex-basis:100%}.marketplaces_detail .list-btns__show-more .btn{color:#000;font-size:12px;font-weight:600;letter-spacing:.48px;line-height:150%;padding:10px 23px;text-transform:uppercase}.marketplaces_detail .list-btns__show-more .btn .icon{color:#9d87f1}.marketplaces-card{gap:0;padding:32px}.marketplaces-card__body{margin-right:36px}.marketplaces-card__title{font-size:36px}.marketplaces-card__text{font-size:14px}.marketplaces-card__image{align-self:center;height:144px;max-height:144px;max-width:224px;min-width:224px}.marketplaces-services{gap:32px}.marketplaces-services__icon{height:40px;max-height:40px;max-width:40px;min-height:40px;min-width:40px;width:40px}.marketplaces-services__list{gap:16px 20px}.marketplaces-services__list_links:not(:last-child){margin:0}.marketplaces-services__list_links .marketplaces-services__item{flex:0 1 calc(33.33% - 14px)}.marketplaces-services__list_links .marketplaces-services__item-link{margin-bottom:auto;margin-top:0}.marketplaces-services__item{flex-basis:calc(50% - 10px);padding-bottom:20px}.marketplaces-services__item_link{align-items:flex-start}.marketplaces-services__subtitle{font-size:18px;line-height:130%;margin-top:-4px}.marketplaces-info{max-width:221px;padding:0 24px}.marketplaces-info__list{gap:16px}.marketplaces-about{gap:24px}.marketplaces-about__text{max-width:100%}.marketplaces-about .text-typography{font-size:14px}.marketplaces-conditions{gap:24px}.marketplaces-conditions__steps{max-width:100%}.marketplaces-conditions__steps .text-typography,.marketplaces-conditions__steps ol,.marketplaces-conditions__steps ul{font-size:14px;line-height:150%}.marketplaces-conditions__info{font-size:14px;max-width:221px;padding-left:24px}.marketplaces-education{flex-direction:column;gap:32px}.marketplaces-education__card-time{font-size:24px;line-height:24px}}@media only screen and (max-width:767px){.marketplaces_detail{padding-top:20px}.marketplaces_detail .breadcrumb{margin-bottom:20px}.marketplaces_detail .page-layout{gap:20px}.marketplaces_detail .page-layout__title{font-size:22px;margin-bottom:20px}.marketplaces_detail .page-layout__main{margin-bottom:20px}.marketplaces_detail .page-layout__main:last-child{margin-bottom:0}.marketplaces_detail .page-layout__slider .slider-controls{margin-top:33px}.marketplaces_detail .filter-sort{margin-bottom:12px}.marketplaces_detail .filter-sort__item{flex-direction:column}.marketplaces_detail .filter-sort__item-label{margin-bottom:4px;margin-right:0}.marketplaces_detail .filter-sort .custom-select__header-selected{padding-right:6px}.marketplaces_detail .filter-sort .custom-select__body{max-width:calc(100vw - 32px);min-width:calc(100vw - 32px)}.marketplaces_detail .list-btns__show-more_mobile{display:flex}.marketplaces_detail .list-btns__show-more .btn{width:100%}.marketplaces-card{flex-direction:column;padding:16px}.marketplaces-card__body{margin-bottom:32px;margin-right:0}.marketplaces-card__title{font-size:26px;margin-bottom:12px}.marketplaces-card__image{max-width:100%;min-width:100%}.marketplaces-services__list{gap:12px}.marketplaces-services__list:not(:last-child){margin-bottom:24px}.marketplaces-services__list_links{-ms-overflow-style:none;scrollbar-height:none;flex-wrap:nowrap;gap:8px;margin:0 -16px;overflow:scroll;padding:0 16px;scrollbar-width:none;width:100vw}.marketplaces-services__list_links::-webkit-scrollbar{display:none}.marketplaces-services__list_links:not(:last-child){margin:0 -16px}.marketplaces-services__list_links .marketplaces-services__item{flex:0 1 calc(33.33% - 5px);min-width:180px;padding:16px}.marketplaces-services__list_links .marketplaces-services__item-title{font-size:14px;line-height:130%}.marketplaces-services__card{border-radius:0;margin:0 -16px;min-width:100vw;padding:16px}.marketplaces-services__item{flex-basis:100%;padding:16px}.marketplaces-services__item-title{font-size:14px}.marketplaces-services__title{font-size:20px;line-height:130%}.marketplaces-services__header{margin-bottom:16px}.marketplaces-services__subtitle{margin-bottom:12px}.marketplaces-services__plug.marketplaces-services__plug_need_auth{padding:24px}.marketplaces-services__plug.marketplaces-services__plug_need_auth .marketplaces-services__plug-btn.btn{width:100%}.marketplaces-services.marketplaces-services_second .marketplaces-services__card{padding:12px}.marketplaces-about,.marketplaces-conditions{flex-direction:column;gap:20px}.marketplaces-about__text .text-typography:not(:last-child){margin-bottom:20px}.marketplaces-info{max-width:100%;padding:0}.marketplaces-info__label{font-size:14px;line-height:130%;margin-bottom:4px}.marketplaces-info__text{font-size:22px;line-height:120%}.marketplaces-conditions__step:not(:last-child){margin-bottom:20px}.marketplaces-conditions__step h2{font-size:20px;line-height:130%}.marketplaces-conditions__info{max-width:100%;padding:0}.marketplaces-education__card{background-size:100% 100%;max-height:100%;max-width:100px;min-width:100px;padding:8px;width:100px}.marketplaces-education__card-time{font-size:22px;line-height:22px}.marketplaces-education__card-start,.marketplaces-education__card-text{font-size:10px;line-height:110%}.marketplaces-education__text .card-labels{gap:0 8px}.marketplaces-education__title{font-size:12px}.marketplaces-education__speaker-more{font-size:10px}.marketplaces-slider .swiper-slide{height:auto;padding:16px}.marketplaces-slider__logo{margin-bottom:8px}.marketplaces-slider__link{font-size:12px;line-height:150%;margin-top:auto}.marketplaces-slider__link-text{display:none}.marketplaces-slider__link-text_mobile{display:inline}.marketplaces_compare .note.note_compare_not_found{flex-direction:column}.marketplaces_compare .note.note_compare_not_found .note__icon{height:80px;margin:0 auto 20px;max-width:80px;min-width:80px}.marketplaces_compare .note.note_compare_not_found .btn{font-weight:500}}.marketplaces_application .page-layout{grid-gap:83px;grid-template-columns:1fr 329px}.marketplaces_application .page-layout__header{margin-bottom:60px}.marketplaces_application .page-layout__header-text{line-height:140%}.marketplaces_application .page-layout__header-text p{margin:16px 0}.marketplaces_application .page-layout__header-text p:first-child{margin-top:0}.marketplaces_application .page-layout__header-text p:last-child{margin-bottom:0}.marketplaces_application .page-layout__header .btn{color:#000;font-size:12px;font-weight:600;letter-spacing:.04em;line-height:150%;margin-top:8px;padding:10px 22px;text-transform:uppercase}.marketplaces_application .page-layout__header .btn:first-child{margin-top:0}.marketplaces_application .page-layout__header .btn .icon{color:#9d87f1;height:7px;margin-left:9px;width:12px}.marketplaces_application .page-layout__main>.title{font-size:30px;font-weight:600;line-height:130%;margin-bottom:24px}.marketplaces_application .page-layout__main .note{margin-bottom:24px}.marketplaces_application .page-layout__main .note .icon{color:#9d87f1;height:16px;margin-right:13px;min-width:16px;position:relative;top:4.5px;width:16px}.marketplaces_application .snippet{border-radius:12px;flex-direction:column;height:fit-content;min-height:auto;padding:24px 24px 28px}.marketplaces_application .snippet__img{height:160px;margin:0 0 16px;max-height:160px;max-width:160px;min-height:160px;min-width:160px;width:160px}.marketplaces_application .snippet__img_mobile{display:none}.marketplaces_application .snippet__img img{height:100%;position:relative;top:0;transform:none;width:100%}.marketplaces_application .snippet__text{max-width:100%}.marketplaces_application .snippet .title{margin-bottom:8px}.marketplaces_application .snippet .text-typography{font-size:14px;line-height:150%}.marketplaces_application .snippet .btn{font-size:14px;line-height:150%;padding:10.5px 38.5px;width:fit-content}.marketplaces_application .snippet_blue{background:rgba(77,174,248,.1)}.marketplaces_application .snippet_blue .text-typography,.marketplaces_application .snippet_blue .title{color:#000}.marketplaces_application .form__section-title{margin-bottom:0;width:100%}.marketplaces_application .form__actions{margin-top:32px}.marketplaces_application .form__action{padding:12px 31px}.marketplaces_application .form>.input-groups{margin-bottom:32px}.marketplaces_application .input-groups{gap:20px;margin:0}.marketplaces_application .input-groups .input-groups{margin-bottom:12px;padding:0 16px}.marketplaces_application .input-group{margin:0}.marketplaces_application .input-group_half{max-width:calc(50% - 10px)}.marketplaces_application .checkbox_agreement,.marketplaces_application .checkbox_agreement:not(:first-child){margin-top:12px}.marketplaces_application .checkbox_agreement a{text-decoration:none}.marketplaces_application .is-required .label{display:inline}.marketplaces_application .is-required .label:after{display:none}.marketplaces_application .is-required .label-required,.marketplaces_application .label-required{color:#7e6cc1;font-size:16px;line-height:150%;margin-left:5px}.marketplaces_application .info-wrap{cursor:pointer;display:inline-block;position:relative}.marketplaces_application .info-wrap:hover .info-modal{opacity:1;pointer-events:all}.marketplaces_application .info-wrap:hover .info-wrap__icon:before{opacity:1}.marketplaces_application .info-wrap__icon{position:relative}.marketplaces_application .info-wrap__icon:before{border-left:7.5px solid transparent;border-right:7.5px solid transparent;border-top:7.5px solid #fff;content:"";height:0;left:5px;opacity:0;position:absolute;top:-13px;width:0;z-index:11}.marketplaces_application .info-modal{bottom:100%;left:-24px;left:-20px;opacity:0;padding-bottom:10px;pointer-events:none;position:absolute;z-index:2}.marketplaces_application .info-modal__wrapper{background-color:#fff;border-radius:12px;color:#000;filter:drop-shadow(0 3px 10px rgba(0,0,0,.15));font-size:16px;font-weight:400;line-height:24px;padding:20px 24px;position:relative;white-space:normal;width:424px}.marketplaces_application .label.is_disabled .info-wrap{pointer-events:all}.marketplaces_application .info-modal a{color:#7e6cc1;text-decoration:none}@media only screen and (max-width:1279px){.marketplaces_application{padding-top:24px}.marketplaces_application .breadcrumb{margin-bottom:24px}.marketplaces_application .page-layout{gap:48px;grid-template-columns:1fr}.marketplaces_application .page-layout__header{margin-bottom:48px}.marketplaces_application .page-layout__header .title{font-size:36px;line-height:120%}.marketplaces_application .page-layout__header-text{margin-top:20px}.marketplaces_application .page-layout__main>.title{font-size:28px;line-height:120%;margin-bottom:20px}.marketplaces_application .page-layout__main .note{margin-bottom:20px}.marketplaces_application .form>.input-groups{margin:0 0 24px}.marketplaces_application .form__section-title{font-size:16px;line-height:150%}.marketplaces_application .form .label{margin-bottom:4px}.marketplaces_application .form__actions{margin-top:24px}.marketplaces_application .form__action{font-size:16px;line-height:150%;padding:9px 27px}.marketplaces_application .input-groups .input-groups{margin-bottom:4px}.marketplaces_application .checkbox_agreement{margin-top:4px}.marketplaces_application .checkbox_agreement .checkbox__view{height:16px;max-width:16px;min-width:16px}.marketplaces_application .checkbox_agreement .checkbox__text{font-size:14px;line-height:140%}.marketplaces_application .snippet{flex-direction:row-reverse;padding:32px}.marketplaces_application .snippet .title{margin-bottom:16px}.marketplaces_application .snippet .btn{padding:10.5px 16.5px}.marketplaces_application .snippet__img{margin:-10px 0 -10px 48px}.marketplaces_application .snippet__text{width:auto}}@media only screen and (max-width:767px){.marketplaces_application{padding-top:20px}.marketplaces_application .breadcrumb{margin-bottom:20px}.marketplaces_application .page-layout{gap:40px}.marketplaces_application .page-layout__header{margin-bottom:40px}.marketplaces_application .page-layout__header .title{font-size:26px}.marketplaces_application .page-layout__header-text{font-size:14px;line-height:150%;margin-top:16px}.marketplaces_application .page-layout__main>.title{font-size:22px;margin-bottom:16px}.marketplaces_application .page-layout__main .note{margin-bottom:16px}.marketplaces_application .page-layout__main .note .icon{height:14px;margin-right:8px;min-width:14px;top:1.5px;width:14px}.marketplaces_application .form__mandatory{font-size:14px;line-height:130%;margin-bottom:20px}.marketplaces_application .form__section-title{font-size:14px;line-height:150%;padding:8px 12px}.marketplaces_application .form>.input-groups{margin-bottom:20px}.marketplaces_application .form>.input-groups>.input-group{margin:0 12px}.marketplaces_application .form__action{font-size:14px;line-height:150%}.marketplaces_application .input-groups{gap:12px}.marketplaces_application .input-groups .input-groups{margin-bottom:8px;padding:0 12px}.marketplaces_application .label{font-size:14px;line-height:120%}.marketplaces_application .label .icon{height:12px;max-width:12px;min-width:12px}.marketplaces_application .input-group_half{max-width:100%}.marketplaces_application .checkbox_agreement{margin:8px -12px 0}.marketplaces_application .snippet{padding:16px}.marketplaces_application .snippet__img{display:none;margin:0 auto 6px;order:0}.marketplaces_application .snippet__img img{left:0}.marketplaces_application .snippet__img_mobile{display:flex}.marketplaces_application .snippet__text{width:100%}.marketplaces_application .snippet .title{margin-bottom:12px}.marketplaces_application .snippet .text-typography{margin-bottom:6px}.marketplaces_application .snippet .btn{padding:8.5px 16.5px;width:100%}}.promo-code{align-items:stretch;background-color:hsla(0,0%,100%,.2);border:1px solid hsla(0,0%,100%,.2);border-radius:8px;display:flex;overflow:hidden;padding:12px 12px 12px 24px;position:relative}.promo-code .promo-code__hidden{bottom:0;height:1px;opacity:0;pointer-events:none;position:absolute}.promo-code .promo-code__main{border-right:1px solid hsla(0,0%,100%,.1);margin-right:12px;padding-right:24px}.promo-code .promo-code__number{color:#fff;font-size:20px;font-weight:800;line-height:28px;user-select:none}.promo-code .promo-code__label{color:hsla(0,0%,100%,.6);font-size:14px;line-height:22px}.promo-code .promo-code__btn{align-items:center;color:#fff}.promo-code .promo-code__btn .icon{font-size:15px;height:100%;max-height:74px;max-width:71px;padding:25px 28px;width:100%}.promo-code .promo-code__wrapper{margin:-12px}@media only screen and (max-width:1024px){.promo-code{padding:12px 4px 12px 20px;width:100%}.promo-code .promo-code__main{flex:1;margin-right:8px}.promo-code .promo-code__number{font-size:18px;line-height:25px}.promo-code .promo-code__label{font-size:12px;line-height:20px}}@media only screen and (max-width:767px){.promo-code{background-color:transparent;border:0;border-radius:0;border-top:1px solid hsla(0,0%,100%,.2);padding:12px 0 0}.promo-code .promo-code__number{font-size:16px;line-height:22px}}.page-layout_market_service .page-layout__header_promocode{margin-bottom:48px}.page-layout_market_service .page-layout__header_promocode .page-layout__header-text{font-size:20px;line-height:28px}.page-layout_market_service .page-layout__header_promocode .page-layout__header-text ul li{font-size:16px;line-height:24px;margin-bottom:0}.page-layout_market_service .page-layout__header_promocode .page-layout__header-text ul li:before{background-color:#000;border-radius:100%;margin-left:12px;margin-right:12px}.informer_promocode{background:linear-gradient(270deg,rgba(143,206,255,.4) -1.5%,rgba(91,214,207,.16) 109.04%);justify-content:space-between;padding:24px 32px}.informer_promocode .informer__title{font-size:24px;font-weight:600;line-height:31px;margin-bottom:0}.informer_promocode .informer__title-icon{color:#9d87f1;font-size:14px;margin-left:3px}.informer_promocode .informer__main{margin-right:0}.informer_promocode .informer__main-section{max-width:352px}.informer_promocode .informer__controls{align-self:center}.informer_promocode .informer__controls-btn{font-size:16px;font-weight:500;line-height:19px;padding:14px 24px}.promo-code.promo-code_marketplaces{background-color:#fff}.promo-code.promo-code_marketplaces .promo-code__number{color:#000;font-weight:600}.promo-code.promo-code_marketplaces .promo-code__label{color:#666}.promo-code.promo-code_marketplaces .promo-code__main{margin-right:0}.promo-code.promo-code_marketplaces .promo-code__btn{align-items:center;align-self:center;background-color:#f6f6f6;border-radius:8px;color:#9d87f1;display:flex;height:40px;justify-content:center;width:40px}.promo-code.promo-code_marketplaces .promo-code__btn-icon{height:20px;max-height:20px;max-width:20px;padding:0;width:20px}@media only screen and (max-width:1279px){.promo-code.promo-code_marketplaces{padding:14px 16px}.promo-code.promo-code_marketplaces .promo-code__main{padding-right:16px}}@media only screen and (max-width:767px){.page-layout_market_service .page-layout__header_promocode{margin-bottom:32px}.page-layout_market_service .page-layout__header_promocode .page-layout__header-text{font-size:18px;line-height:23px}.page-layout_market_service .page-layout__header_promocode .page-layout__header-text ul li{font-size:14px;line-height:21px;margin-bottom:0}.page-layout_market_service .page-layout__header_promocode .page-layout__header-text ul li:before{margin-left:6px;margin-right:6px;top:-1px}.page-layout_market_service .page-layout__header_promocode .page-layout__header-text>div,.page-layout_market_service .page-layout__header_promocode .page-layout__header-text>p,.page-layout_market_service .page-layout__header_promocode .page-layout__header-text>ul{margin-bottom:12px;margin-top:12px}.informer_promocode{flex-direction:column;justify-content:flex-start;padding:16px 24px}.informer_promocode .informer__title{font-size:20px;line-height:26px;margin-bottom:16px}.informer_promocode .informer__controls{align-self:stretch}.informer_promocode .informer__controls-btn,.informer_promocode .informer__promocode{width:100%}.promo-code.promo-code_marketplaces{border-radius:8px;padding:10px 12px}.promo-code.promo-code_marketplaces .promo-code__main{padding-right:6px}.promo-code.promo-code_marketplaces .promo-code__label{font-size:12px;line-height:16px;max-width:100px}.promo-code.promo-code_marketplaces .promo-code__btn{height:32px;width:32px}.promo-code.promo-code_marketplaces .promo-code__btn-icon{height:15px;max-height:15px;max-width:15px;width:15px}}
/* End */
/* /local/components/nota/market.list/templates/.default/style.css?177736992262956 */
/* /local/templates/extranet/assets/css/service/market.css?176184824152405 */
