

/* Start:/local/templates/ammond/components/bitrix/catalog.search/custom-search/style.css?1757519173163*/
a.search-page-params {
	border-bottom: 1px dashed blue;
	text-decoration: none;
}
div.search-page-params {
	margin-top: 6px;
}
.search-item-rate {font-size: 11px;}
/* End */


/* Start:/local/templates/ammond/components/bitrix/sale.basket.basket.line/small-basket/style.css?17582033329041*/
.bx-basket {
}

.bx-basket-block {
    margin: auto;
    position: relative;
    padding-bottom: 5px;
    padding-left: 20px;
    white-space: nowrap;
    font-size: 12px;
}

.bx-basket-block > .fa {
    position: absolute;
    top: 3px;
    left: 0;
    width: 12px;
    color: #97a1ab;
}

.bx-basket-block a {
    margin-right: 10px;
}

@media (min-width: 768px) {
    .bx-basket-fixed {
        position: fixed;
        z-index: 100;
        overflow: hidden;
        padding-top: 10px;
        width: 200px;
        border: 1px solid #f0f0f0;
        border-radius: 1px;
        background: #fff;
        box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
    }

    .bx-basket-fixed.top {
        top: 10px;
    }

    .bx-basket-fixed.right {
        right: 10px;
    }

    .bx-basket-fixed.bottom {
        bottom: 10px;
    }

    .bx-basket-fixed.left {
        left: 10px;
    }

    .bx-basket-fixed.bx-max-height {
        top: 10px;
        bottom: 10px;
    }

    .block-store-catalog-list .bx-basket-fixed.bottom {
        bottom: 70px;
    }
}

@media (min-width: 768px) and (width <= 992px) {
    .block-store-catalog-list .bx-basket-fixed.bottom {
        bottom: 90px;
    }
}

@media (max-width: 767px) {
    .bx-basket-fixed {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 100;
        overflow: hidden;
        padding-top: 10px;
        border: 1px solid #f0f0f0;
        border-radius: 1px;
        background: #fff;
        box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
    }

    .bx-basket-item-list {
        display: none;
    }

    .block-wrapper .bx-basket-fixed {
        padding-top: 0;
    }

    .block-wrapper .bx-basket-fixed .bx-hdr-profile {
        display: flex;
        justify-content: space-between;
    }

    .block-wrapper .bx-basket-fixed .bx-hdr-profile .bx-basket-block {
        padding-bottom: 0;
    }
}

.bx-basket-item-list {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
    border-top: 1px solid #f7f7f7;
}

.bx-opener .bx-basket-item-list {
    padding-bottom: 75px;
}

.bx-max-height .bx-basket-item-list {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

.bx-closed .bx-basket-item-list {
    overflow: hidden;
    height: 20px;
}

.bx-basket-item-list-action {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    padding: 3px 0;
    height: 20px;
    background: #f7f7f7;
    color: #4f4f4f;
    vertical-align: middle;
    text-align: center;
    font-size: 12px;
    line-height: 14px;
    cursor: pointer;
}

.bx-basket-item-list-button-container {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    padding: 10px 0;
    border-top: 1px solid #f7f7f7;
    background: #fff;
    text-align: center;
}

.bx-basket-item-list-container {
    overflow-y: auto;
    max-height: 100%;
}

.bx-basket-item-list-item {
    position: relative;
    margin-bottom: 15px;
    padding-top: 15px;
    padding-right: 10px;
    padding-left: 10px;
    border-bottom: 1px solid #f7f7f7;
}

.bx-basket-item-list-container .bx-basket-item-list-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.bx-basket-item-list-item-status {
    margin: 0 10px 20px;
    padding: 3px;
    border-radius: 3px;
    background: #ebebeb;
    text-align: center;
    white-space: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 16px;
}

.bx-basket-item-list-item-img {
    position: relative;
    padding-bottom: 5px;
    text-align: center;
}

.bx-basket-item-list-item-img img {
    max-width: 90px;
    height: auto;
    border: 1px solid #e6e6e6;
}

.bx-basket-item-list-item-name {
    padding-bottom: 5px;
}

.bx-basket-item-list-item-name a {
    font-size: 13px;
    line-height: 16px;
}

.bx-basket-item-list-item-remove {
    position: absolute;
    top: -7px;
    right: 10px;
    width: 20px;
    height: 20px;
    opacity: 0.5;
    cursor: pointer;
    transition: 250ms linear all;
}

.bx-basket-item-list-item-remove:after,
.bx-basket-item-list-item-remove:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 10px;
    height: 2px;
    border-radius: 1px;
    background-color: #333;
    content: "";
    transform: translate(-50%, -50%);
}

.bx-basket-item-list-item-remove:after {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.bx-basket-item-list-item-remove:before {
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    -moz-transform: translate(-50%, -50%) rotate(135deg);
    -ms-transform: translate(-50%, -50%) rotate(135deg);
    -o-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
}

.bx-basket-item-list-item-remove:hover {
    opacity: 0.7;
}

.bx-basket-item-list-item-price-block {
    padding-bottom: 5px;
    font-size: 12px;
}

.bx-basket-item-list-item-price {
    display: inline-block;
    margin-right: 5px;
}

.bx-basket-item-list-item-price-old {
    display: inline-block;
    margin-right: 5px;
    color: #b0b0b0;
    text-decoration: line-through;
}

.bx_cart_login_top .bx-hdr-profile {
    line-height: 1.44em;
}
.basket_body .list .item {
    display: grid;
    grid-template-columns: 1fr 5fr;
    gap: 30px;
    border: 1px solid var(--color2);
    padding: 18px 20px 23px 29px;
    position: relative;
}

.basket_body .list .item .body-info {
    width: 100%;
}

.basket_body .list .item .dark_link {
    color: var(--grey);
    transition: 300ms;
    display: block;
    padding-bottom: 8px;
}

.basket_body .list .item .dark_link:hover {
    color: var(--akrill);
}

.basket_body .list .item .prices.notes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
}

.basket_body .list .item .prices.notes .price_name {
    font-weight: 100;
    font-size: 0.733em;
    display: block;
    margin-top: 5px;
    color: var(--grey);
}

.basket_body .list .item .remove-cell {
    position: absolute;
    right: 10px;
    top: 10px;
}

.basket_body .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 23px 20px 21px 25px;
    border: 1px solid var(--color2);
}

.basket_body .menu .pull-left {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    gap: 15px;
    transition: 300ms;
    cursor: pointer;
}

.basket_body .menu .pull-left svg {
    fill: var(--grey);
    transition: 300ms;
}

.basket_body .menu .pull-left:hover {
    color: var(--akrill);
}

.basket_body .menu .pull-left:hover svg {
    fill: var(--akrill);
}

.basket_body .menu .wrap_total {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: bold;
}

.basket_body .menu .wrap_total .price {
    font-size: 1.2em;
    font-weight: bold;
}

.button {
    text-align: center;
}

.menu__clear-basket {
    font-size: 10px;
    text-transform: uppercase;
}

.header_logoMenu_menu-counts-wrapper {
    position: relative;
    display: inline-block;
}

.header_logoMenu_menu-counts {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.header_logoMenu_menu-counts .icon {
    transition: fill 0.3s ease;
    vertical-align: middle;
}

.header_logoMenu_menu-counts:hover .icon {
    fill: var(--akrill);
}

.header_logoMenu_menu-counts-wrapper .bx-basket {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    width: 565px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.header_logoMenu_menu-counts-wrapper:hover .bx-basket {
    opacity: 1;
    pointer-events: all;
    transition-delay: 0.1s;
}

.header_logoMenu_menu-counts-wrapper .bx-basket-item-list {
    padding: 0;
    margin: 0;
    border: none;
}

.header_logoMenu_menu-counts-wrapper .bx-basket-item-list-container {
    max-height: 400px;
    overflow-y: auto;
}

/* .header_logoMenu_menu-counts-wrapper::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
} */

.list__overflow {
    max-height: 400px;
    overflow-y: scroll;
}

.list__overflow::-webkit-scrollbar {
    width: 8px;
}

.list__overflow::-webkit-scrollbar-thumb {
    background-color: darkgray;
    border-radius: 10px;
}

.list__overflow::-webkit-scrollbar-button {
    display: none;
}
.button__small-basket {
    padding: 22px 26px 22px !important;
    color: var(--akrill) !important;
    background-color: transparent !important;
}
.button__small-basket:hover {
    background-color: var(--akrill) !important;
    color: var(--white) !important;
    text-decoration: none;
}

/* End */


/* Start:/local/templates/ammond/components/bitrix/sale.basket.basket.line/small-icon-basket/style.css?1756962959394*/
.catalog-cart-counter-menu {
    position: absolute;
    content: attr(data-count);
    background: var(--akrillDark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -9px -6px 0px 0;
    width: 16px;
    height: 16px;
    font-size: 10px;
    padding: 1px;
    line-height: 17px;
    top: 11px;
    right: -15px;
}

/* End */


/* Start:/local/templates/ammond/components/bitrix/breadcrumb/breadcrumb/style.min.css?1756911405467*/
.bx-breadcrumb{margin:10px 0}.bx-breadcrumb i{color:#b5bdc2;line-height:13px;font-size:12px;vertical-align:middle;margin-right:5px}.bx-breadcrumb .bx-breadcrumb-item{float:left;margin-bottom:10px;white-space:nowrap;line-height:13px;vertical-align:middle;margin-right:10px}.bx-breadcrumb .bx-breadcrumb-item span{font-family:"Open Sans",Arial,"Helvetica Neue",Helvetica,sans-serif;font-size:13px;white-space:normal}.bx-breadcrumb .bx-breadcrumb-item a{border-bottom:0}
/* End */


/* Start:/local/templates/ammond/components/bitrix/form.result.new/forms/style.css?1756911405666*/
table.form-table
{
	width:100%;
	background-color:white;
	border-collapse:collapse;
	font-size:100%;
	font-weight:normal;
	line-height:160%;
}

table.form-table th, table.form-table td
{
	border:1px solid #ADC3D5;
	padding: 5px 5px;
	vertical-align:top;
}

table.form-table th
{
	background-image:url(/local/templates/ammond/components/bitrix/form.result.new/forms/images/table_head.gif);
	background-repeat:repeat-x;
	text-align: left;
	color:#25639A;
}


table.form-table td
{
	padding: 15px 5px;
}

.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(/local/templates/ammond/components/bitrix/form.result.new/forms/images/icon_warn.gif);
}
/* End */


/* Start:/bitrix/components/bitrix/map.yandex.system/templates/.default/style.css?1756911401666*/
div.bx-yandex-map {color: black; font-size: 11px;}
div.bx-yandex-map div.YMaps-b-balloon-content {color: black; font-size: 11px;}
div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td {
	padding: 0px !important;
}


div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td textarea{
	font-size: 11px;
}


div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td.YMaps-b-balloon-b {
	background-image: none !important;
}

/* End */


/* Start:/local/templates/ammond/template_styles.css?17804977276937*/
/* Сетка плитки */

#search-results .search-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 10px;
    position: absolute;
    left: 0;
    top: 7%;
    background: #fff;
    z-index: 100;
}

/* Карточка */
#search-results .search-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

#search-results .search-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Картинка */
.search-card__image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
}

/* Тело карточки */
.search-card__body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Название */
.search-card__title {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #333;
    text-decoration: none;
}

/* Инфо: наличие и артикул */
.search-card__info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.search-card__availability {
    display: flex;
    align-items: center;
}

.search-card__availability::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    margin-right: 5px;
}

/* Цена */
.search-card__price {
    font-weight: bold;
    font-size: 16px;
    color: #000;
}
.search-result-grid {
    background-color: #fff;
}
#live-search {
    border: none;
    padding: 8px;
    background-color: rgba(240, 240, 240, 0.933);
    border-left: 3px solid #d6d6d6;
}
#live-search:active,
:hover,
:focus {
    outline: 0;
    outline-offset: 0;
}
/* Адаптивность */

@media (max-width: 600px) {
    #search-results .search-result-grid {
        grid-template-columns: 1fr;
    }
    .search-card__image img {
        height: 150px;
    }
}
/* Контейнер для поиска */
.live-search-wrapper {
    position: relative;
    width: 0;
    overflow: hidden;
    transition: width 0.3s ease;
    height: 40px; /* высота иконки поиска */
    display: flex;
    align-items: center;
}

.live-search-wrapper.active {
    width: 250px; /* ширина развернутого поля */
}

/* Поле ввода */
#live-search {
    width: 100%;
    /* padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 16px;
    background: white; */

    opacity: 0;
    transition: opacity 0.3s ease;
}

.live-search-wrapper.active #live-search {
    opacity: 1;
}

/* Иконка поиска */
.header_logoMenu_menu-search {
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.header_logoMenu_menu-search:hover {
    transform: scale(1.1);
}

/* Чтобы меню не прыгало */
.header_logoMenu_menu {
    display: flex;
    align-items: baseline;
    gap: 5px; /* расстояние между элементами */
}
.container-result {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .live-search-wrapper.active {
        width: 180px;
    }

    #live-search {
        font-size: 14px;
        padding: 8px 12px;
    }
}
@media (max-width: 1400px) {
    #search-results .search-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 1080px) {
    #search-results .search-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1024px) {
    #search-results .search-grid {
        padding-top: 124px;
    }
}

@media (max-width: 992px) {
    #search-results .search-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.not__found {
    text-align: center;
    font-size: 150px;
    color: var(--akrill);
}

.not__text {
    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;
}

.not__link {
    display: block;
    text-align: center;
    font-size: 20px;
    color: var(--akrill);
    transition: 0.3s;
    margin-bottom: 20px;
}
.card__orderajax {
    max-width: 350px;
    background-color: #ffffffb0;
    border: 1px solid #b6b3b3;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin: 40px auto;
}
.pay__link {
    display: block;
    background-color: var(--akrill);
    color: #fff;
    text-transform: uppercase;
    padding: 12px 21px;
    margin-top: 20px;
    max-width: 100%;
    transition: 0.3s ease;
    text-align: center;
}
.pay__link:hover {
    background: var(--akrillLight);
}
.pay__link:active {
    background: var(--akrillLight);
}
.pay__link:focus {
    background: var(--akrillLight);
}
.textMini {
    margin-top: 20px;
    text-align: justify;
}
.textMini,
.link__text {
    font-size: 12px;
    line-height: 120%;
}
.link__text {
    text-decoration: underline;
}
.flexCenter {
    display: flex;
    justify-content: center;
    align-items: center;
}
.paysystem_name {
    width: 100%;
    font-size: 12px;
    position: absolute;
    bottom: 20px;
    text-align: center;
}
.borderBlock {
    padding: 10px;
    position: relative;
}
.pay_name {
    font-weight: 600;
    text-align: center;
}
.borderBlock img {
    width: 60%;
    height: auto;
}
.page-top--order {
    padding-top: 50px !important;
}

.pagination-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-family: "Arial", sans-serif;
    font-size: 14px;
    margin: 20px 0;
}

.pagination-new a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    background-color: #ccc;
    color: #fff;
    transition: all 0.3s ease;
}

.pagination-new a.active {
    background-color: #198e89;
}

.pagination-new a:hover {
    background-color: #198e89;
}

.pagination-new span.disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    border-radius: 4px;
    background-color: #ccc;
    color: #fff;
}

.pagination-new a.first,
.pagination-new a.prev,
.pagination-new a.next,
.pagination-new a.last {
    font-size: 16px;
}
.btn.btn-default.btn-buy.btn-sm {
    margin-bottom: 20px;
}


/* End */
/* /local/templates/ammond/components/bitrix/catalog.search/custom-search/style.css?1757519173163 */
/* /local/templates/ammond/components/bitrix/sale.basket.basket.line/small-basket/style.css?17582033329041 */
/* /local/templates/ammond/components/bitrix/sale.basket.basket.line/small-icon-basket/style.css?1756962959394 */
/* /local/templates/ammond/components/bitrix/breadcrumb/breadcrumb/style.min.css?1756911405467 */
/* /local/templates/ammond/components/bitrix/form.result.new/forms/style.css?1756911405666 */
/* /bitrix/components/bitrix/map.yandex.system/templates/.default/style.css?1756911401666 */
/* /local/templates/ammond/template_styles.css?17804977276937 */
