

/* Start:/local/components/api/ads.detail/templates/spros_v2/style.css?17798949836538*/
.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;
}

.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/promo/popup/templates/zakupki_nov25/style.css?17695316809626*/
.zakupki-promo-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    z-index: 9999;
    display: none;
    max-width: 600px;
    min-width: 300px;
}

@media only screen and (min-device-width: 450px) {
    .zakupki-promo-popup {
        width: 600px;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .zakupki-promo-popup {
        width: 350px;
    }
}

.zakupki-promo-popup__show {
    display: block;
}

.zakupki-promo-popup__close {
    position: absolute;
    top: 10px;
    right: 20px;
    display: block;
    width: 25px;
    height: 25px;
    font-size: 0;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 2px;
}

.zakupki-promo-popup__close:before,
.zakupki-promo-popup__close:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 20px;
    background-color: #404040;
    transform: rotate(45deg) translate(-50%, -50%);
    transform-origin: top left;
    content: '';
}

.zakupki-promo-popup__close:after {
    transform: rotate(-45deg) translate(-50%, -50%);
}

.zakupki-promo-popup-content {
    background-color: #006261;
    color: #ffffff;
    padding: 30px;
    border: none;
    box-shadow: 0 0 10px #999999;
    line-height: 1.4em;
    font-weight: normal;
    border-radius: 10px;
}

@media only screen and (min-device-width: 450px) {
    .zakupki-promo-popup-content {
        overflow-y: hidden;
        max-height: 450px;
        font-size: 1em;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .zakupki-promo-popup-content {
        overflow-y: hidden;
        max-height: 450px;
        font-size: 1em;
    }
}

.zakupki-promo-popup-content ul {
    list-style-type: square;
    /*color: #ff7301;*/
}

.zakupki-promo-popup-content ul span {
    color: #000;
}

.zakupki-promo-popup-content-price-block {
    display: none;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media only screen and (min-device-width: 450px) {
    .zakupki-promo-popup-content-price-block {
        width: 100%;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .zakupki-promo-popup-content-price-block {
        width: 100%;
    }
}

.zakupki-promo-popup-content-price-buy {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 10px;
    margin-right: 5px;
    margin-bottom: 20px;
    box-sizing: content-box;
    overflow: hidden;
}

@media only screen and (min-device-width: 450px) {
    .zakupki-promo-popup-content-price-buy {
        min-width: 150px;
        width: calc(50% - 30px);
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .zakupki-promo-popup-content-price-buy {
        width: 100%;
        min-width: 240px;
    }
}


.zakupki-promo-popup-content-price-buy-item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /*flex-direction: column;*/
    color: #000;
    min-width: 100px;
    width: 100%;
}

.zakupki-promo-popup-content-price-buy-item.gray {
    color: #999;
}

.zakupki-promo-popup-content-price-buy-item div.price, .zakupki-promo-popup-content-price-buy-item div.period, .zakupki-promo-popup-content-price-buy-item div.discount, .zakupki-promo-popup-content-price-buy-item div.profit {
    min-width: 100px;
    margin-bottom: 10px;
}

.zakupki-promo-popup-content-price-buy-item div.period {
    min-width: 100%;
    text-align: center;
}

.zakupki-promo-popup-content-price-buy-item div.price {
    font-weight: bold;
}

@media only screen and (min-device-width: 450px) {
    .zakupki-promo-popup-content-price-buy-item div.price {
        font-size: 1.2em;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .zakupki-promo-popup-content-price-buy-item div.price {
        font-size: 1.5em;
    }
}

.zakupki-promo-popup-content-price-buy-item div.price.old {
    text-decoration: line-through;
    color: #ccc;
    font-weight: normal;
}


.zakupki-promo-popup-content-price-buy-item div.discount {
    color: #009556;
    min-width: 150px;
    text-align: center;
    /*background-color: #ffd200;*/
    padding: 3px;
    border-radius: 5px;
    font-weight: bold;
}

@media only screen and (min-device-width: 450px) {
    .zakupki-promo-popup-content-price-buy-item div.discount {
        font-size: 1.2em;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .zakupki-promo-popup-content-price-buy-item div.discount {
        font-size: 1.2em;
    }
}

.zakupki-promo-popup-content-price-buy-item div.profit {
    color: #000;
}

@media only screen and (min-device-width: 450px) {
    .zakupki-promo-popup-content-price-buy-item div.profit {
        font-size: 0.8em;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .zakupki-promo-popup-content-price-buy-item div.profit {
        font-size: 1em;
    }
}


.zakupki-promo-popup-content-price-buy-item div.profit span {
    font-weight: bold;
}


.zakupki-promo-popup-content-price-buy-item div.price span {
    font-weight: normal;
    margin-left: 5px;
}

.zakupki-promo-popup-content-price-buy-item a.button {
    background-color: green;
    padding: 5px 20px;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff !important;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    border-radius: 20px;
    font-size: 1em;
    height: 25px;
}

.zakupki-promo-popup-content-price-buy-item a.button.gray {
    background-color: #ccc;
}

.zakupki-promo-popup-content-price-buy-item a.button:hover {
    background-color: green;
    opacity: 80%;
}

.zakupki-promo-popup-content .all-benefits {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
}

@media only screen and (min-device-width: 450px) {
    .zakupki-promo-popup-content .all-benefits {
        justify-content: space-around;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .zakupki-promo-popup-content .all-benefits {
        justify-content: center;
        flex-flow: column;
    }
}

.zakupki-promo-popup-content a.more-details-button {
    border-radius: 30px;
    border: 3px solid #ff3426;
    cursor: pointer;
    text-decoration: none;
    color: #fff !important;
    display: block;
    box-sizing: border-box;
    text-align: center;
    min-width: 100px;
    max-width: 100%;
    font-size: 1.1em;
    padding: 10px 30px;
    background-color: #ff3426;
    box-shadow: 0 2px 3px #911c14;
    margin: 3px 2px 20px;
}

.zakupki-promo-popup-content a.more-details-button:link:hover, .zakupki-promo-popup-content a.more-details-button:visited:hover {
    color: #fff !important;
}


.zakupki-promo-popup-content a.more-details-button.transp {
    border: 3px solid #000;
    background-color: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
}

.zakupki-promo-popup-content a.more-details-button.transp:link:hover, .zakupki-promo-popup-content a.more-details-button.transp:visited:hover {
    color: #000 !important;
    box-shadow: 0 2px 3px #6f6f6f !important;
}


.zakupki-promo-popup-content a.more-details-link {
    color: #000 !important;
    text-decoration: underline;
}

.zakupki-promo-popup-header {
    margin: 10px 0;
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    column-gap: 10px;
}


@media only screen and (min-device-width: 450px) {
    .zakupki-promo-popup-header {
        font-size: 1.2em;
        font-weight: normal;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .zakupki-promo-popup-header {
        font-size: 1.2em;
        font-weight: normal;
    }
}

.zakupki-promo-popup-header .popup-pro-icon img {
    width: 40px;
    border: none;
}

.zakupki-promo-popup-header h2 {
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.zakupki-promo-popup-header h3 {
    margin: 0 0 10px 0;
    font-weight: normal;
    color: #ffffff;
}

.zakupki-promo-popup-content .benefits-wrap {
    margin: 20px 0 10px 0;
}

.zakupki-promo-popup-content .benefits-wrap div.b-item {
    line-height: 20px;
    padding-left: 20px;
    background: url(/img/icons/if/aright.svg) no-repeat #f000;
    background-size: 15px;
    background-position-y: 2px;
    background-position-x: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
}

#benefits-all-premium {
    display: none;
}

#show-benefits-premium a {
    text-decoration: underline 1px dashed;
    text-underline-offset: 3px;
}

.zakupki-promo-popup-content .howitworks {
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #05c8c6;
    color: #000000;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    font-size: 1.2em;
}

.zakupki-promo-popup-content .howitworks.buy {
    background-color: #ffffff;
}

.zakupki-promo-popup-content .howitworks:link:hover, .zakupki-promo-popup-content .howitworks:visited:hover {
    background-color: #07d7d5;
    color: #000!important;
}

.zakupki-promo-popup-content .buttons-block {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media only screen and (min-device-width: 450px) {
    .zakupki-promo-popup-content .buttons-block {
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .zakupki-promo-popup-content .buttons-block {
        justify-content: center;
    }
}
/* End */


/* Start:/local/components/api/ads.related/templates/similar_detailed_v2/style.css?17798949805057*/
.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?17798949836538 */
/* /local/components/promo/popup/templates/zakupki_nov25/style.css?17695316809626 */
/* /local/components/api/ads.related/templates/similar_detailed_v2/style.css?17798949805057 */
