

/* Start:/local/components/api/ads.detail/templates/spros_v2/style.css?17803065186916*/
.purchase-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
}

.purchase-main {
    min-width: 0;
}

.purchase-header {
    display: flex;
    justify-content: space-between;
}

.purchase-title {
    margin: 0 0 15px;
    font-size: 34px;
    line-height: 1.2;
}

.purchase-subtitle {
    margin-bottom: 30px;
    color: var(--agr-text-2);
    font-size: 18px;
}

.purchase-meta {
    display: grid;
    gap: 12px;
    margin: 15px 0 30px 0;
}

.purchase-meta__row {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.purchase-meta__label {
    min-width: 100px;
    color: var(--agr-muted);
}

.purchase-meta__value {
    font-weight: 600;
}

.purchase-meta__value .phone_showed {
    font-size: 1em;
}
.purchase-meta__value .say-sellers {
    font-weight: 400;
}

.purchase-description {
    font-size: 18px;
    line-height: 1.8;
}

.purchase-description p {
    margin: 0 0 24px;
}

.purchase-description__phone {
    margin: 15px 0;
}

.purchase-sidebar {
    min-width: 0;
}

.contact-card {
    position: sticky;
    top: 80px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--agr-border);
    border-radius: var(--card-radius-big);
    box-shadow: var(--card-shadow);
    z-index: 11;
}

.contact-card__company {
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.contact-card__company a {
    color: var(--agr-text);
}

.contact-card__person {
    margin-bottom: 16px;
    font-size: 17px;
}

.contact-card__info {
    margin-bottom: 8px;
    color: var(--agr-text-2);
    overflow: hidden;
}

.contact-card__note {
    margin-top: 16px;
    padding: 12px 14px;
    background: var(--agr-brand-soft-2);
    border: 1px solid var(--agr-border-soft);
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--agr-text-2);
}

.contact-card__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--agr-btn-radius);
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: .2s;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-call {
    background: var(--agr-brand);
    color: #fff;
}

.btn-call:hover {
    background: var(--agr-brand-dark);
}

.btn-message {
    background: var(--agr-brand-soft);
    border: 1px solid var(--agr-brand-border);
    color: var(--agr-brand-dark);
}

.btn-message:hover {
    background: var(--agr-btn-bg-md);
    border-color: var(--agr-brand);
    color: var(--agr-brand-dark);
    text-decoration: none;}

.contact-bottom {
    margin-top: 50px;
    padding: 24px;
    border: 1px solid var(--agr-border);
    border-radius: var(--card-radius-big);
    background: #fff;
    display: none;
}

.contact-bottom__actions {
    display: flex;
    gap: 10px;
    min-height: 72px;
    align-items: center;
    background: #fff;
}

.contact-phone-info {
    width: 50%;
}

.contact-bottom h2 {
    margin-top: 0;
}

.mobile-actions {
    display: none;
}

@media (max-width: 900px) {

    .purchase-layout {
        grid-template-columns: 1fr;
    }

    .purchase-sidebar {
        display: none;
    }

    .contact-bottom {
        display: block;
    }

    .purchase-title {
        font-size: 28px;
    }

    .purchase-description {
        font-size: 17px;
    }

    .mobile-actions {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        gap: 10px;
        padding: 10px 12px;
        min-height: 72px;
        align-items: center;
        background: #fff;
        border-top: 1px solid var(--agr-border);
        box-shadow: 0 -4px 20px rgba(0,0,0,.08);
        z-index: 100;
    }

    .mobile-actions .btn {
        width: 50%;
        height: 52px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }
}

.demand-props {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 20px 0;
    max-width: 400px;
}

.demand-props__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px dashed #e5e5e5;
}

.demand-props__item:last-child {
    border-bottom: 0;
}

.demand-props__name {
    flex: 1;
    min-width: 0;
    color: #777;
    line-height: 1.4;
}

.demand-props__value {
    flex-shrink: 0;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-align: right;
}

.demand-props__highlight {
    color: var(--agr-brand);
    font-weight: 700;
}

.demand-props__item:has(.demand-props__highlight) {
    background: rgba(255, 122, 0, 0.03);
    margin-inline: -8px;
    padding-inline: 8px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .demand-props__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 8px 0;
    }

    .demand-props__value {
        text-align: left;
    }
}

.demand-prices {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f9f9f9;
    border-radius: var(--card-radius);
    padding: 12px;
    width: 100%;
    margin: 30px 0;
}

.demand-prices__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.demand-prices__link {
    position: relative;
    padding-left: 26px;
    flex: 1;
    color: var(--agr-text);
}

.demand-prices__link::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--agr-brand);
    font-size: 14px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.demand-prices__link:hover::before {
    transform: translateX(6px);
}

.demand-stat {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--agr-muted);
    gap: 6px;
}

.demand-stat__id {
    color: var(--agr-muted);
    font-weight: 500;
}

.demand-stat__date,
.demand-stat__views {
    color: var(--agr-muted);
}

.demand-item__counter {
    display: inline-flex;
    gap: 4px;
    margin-left: 6px;
    white-space: nowrap;
}

.demand-item__counter-total {
    font-size: 13px;
    color: var(--agr-muted);
}

.demand-item__counter-new {
    background: var(--agr-counters-bg);
    color: var(--agr-counters-color);
    font-size: 13px;
    padding: 0 5px;
    border-radius: 3px;
}
/* End */


/* Start:/local/components/api/ads.related/templates/similar_detailed_v2/style.css?17798945765278*/
.dd_similar_detailed_block_wrap {
    margin-bottom: 40px;
}

.dd_similar_detailed_block_item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #fff;
    flex-wrap: wrap;
    margin-bottom: 30px;
    column-gap: 20px;
    box-shadow: 0 1px 3px 0 #d4d4d4;
    border-radius: 14px;
    overflow: hidden;
    padding: 14px;
}

@media only screen and (min-device-width: 450px) {
    .dd_similar_detailed_block_item {
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .dd_similar_detailed_block_item {
        flex-direction: column;
    }
}


.dd_similar_detailed_block_img {
    width: 150px;
    margin-bottom: 20px;
    overflow: hidden;
}


@media only screen and (min-device-width: 450px) {
    .dd_similar_detailed_block_img.nophoto {
        display: block;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .dd_similar_detailed_block_img.nophoto {
        display: none;
    }
}


.dd_similar_detailed_block_img img {
    background-color: #fff;
    width: 100%;
    aspect-ratio: 1 / 1;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.dd_similar_detailed_block_t_desc {
    overflow: hidden;
    flex: 2;
    min-width: 240px;
}

.dd_similar_detailed_block_price_block {
    margin: 10px 0;
    color: #ccc;
}

.dd_similar_detailed_block_t_price {
    font-weight: bold;
    color: #000;
    white-space: nowrap;
    margin: 5px 0;
}

.dd_similar_detailed_block_t_price span {
    color: #666;
    font-weight: normal;
}

.dd_similar_detailed_block_t_hdr {
    font-size: 17px;
    font-weight: 600;
}

.dd_similar_detailed_block_t_hdr a {
    text-decoration: none;
    color: var(--agr-text);
}


.dd_similar_detailed_block_t_hdr strong {
    font-weight: unset;
}

.dd_similar_detailed_block_t_text {
    margin-top: 10px;
    overflow: hidden;
    word-break: break-word;
    color: #444;
}

.dd_similar_detailed_block_show_more {
    margin: 30px 0 80px 0;
    font-size: 1.4em;
}

.dd_similar_detailed_block_show_more a {
    background: none;
    border: 1px solid var(--agr-brand);
    color: var(--agr-brand);
    padding: 10px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin: 20px auto 0;
    display: inline-block;
}

.dd_similar_detailed_block_show_more a:hover {
    background: var(--agr-border-soft-2);
    color: var(--agr-brand-dark);
    text-decoration:none;
}

.dd_similar_detailed_block_show_more-total {
    font-weight: bold;
}

.dd-similar-block-action {
    margin-bottom: 20px;
}

.dd_similar_detailed_block_t_order .phone_showed, .dd_similar_detailed_block_t_offer .phone_showed {
    font-size: 1.2em!important;
    font-weight: normal;
}

.dd_similar_detailed_block_t_order .phone_showed a, .dd_similar_detailed_block_t_offer .phone_showed a {
    color: #0395ff
}

.dd_similar_detailed_block_contacts_hdr {
    font-weight: bold;
}

.go-order {
    text-decoration: underline;
    color: #236ab1;
    cursor: pointer;
    white-space: nowrap;
}

.go-order:hover {
    color: dodgerblue !important;
}

.similar_text_fulltext {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media only screen and (min-device-width: 450px) {
    .similar_text_fulltext {
        -webkit-line-clamp: 6;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .similar_text_fulltext {
        -webkit-line-clamp: 4;
    }
}

.similar_text_readmore_link,
.similar_text_readmore_link:link,
.similar_text_readmore_link:visited,
.similar_text_readmore_link:hover,
.similar_text_readmore_link:active,
.similar_text_readmore_link:focus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 8px;
    padding: 7px 15px;
    border-radius: 10px;
    background: #ececec;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

.similar_text_readmore_link::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background-color: currentColor;

    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath fill='black' fill-rule='evenodd' d='M8 9.16 4.56 5.72 3.5 6.78l4.5 4.5 4.5-4.5-1.06-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath fill='black' fill-rule='evenodd' d='M8 9.16 4.56 5.72 3.5 6.78l4.5 4.5 4.5-4.5-1.06-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
}

.similar-card-contacts {
    margin: 20px 0 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
/* End */
/* /local/components/api/ads.detail/templates/spros_v2/style.css?17803065186916 */
/* /local/components/api/ads.related/templates/similar_detailed_v2/style.css?17798945765278 */
