

/* Start:/local/components/custom/order.make.ajax.v2024/templates/.default/style.css?176336173318471*/
:root {
    --border-color: #B1B1B1 !important;
}

[data-entity="order-params"]+[data-entity="order-params"] {
    margin-top: 20px;
}

.order-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 25px;
}

.order-left {
    width: 70%;
}

.order-right {
    width: 30%;
    padding-top: 25px;
    padding-left: 25px;
    border-left: 1px solid var(--border-color);
    min-width: 400px;
}

.order-right-sticky {
    position: sticky;
    top: 150px;
}

.order-left .catalog-section__row,
.order-left .catalog-section .catalog-item {
    --item-col: 3;
}


.order__item--payment {
    padding-bottom: 40px;
}

.order-description {
    font-family: var(--font-family-cormorant);
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;

    color: #000000;
    margin-bottom: 20px;
}

.order-confirm {
    margin: 20px 0;
}

.order__item--contacts .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.order__item--contacts .ui-input+.ui-input {
    margin-top: 0;
}

.order__item--contacts .ui-input--checkbox {
    grid-column: span 2;
}

#person_info_props.row {
    display: block;
}

.order_container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.order__item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ui-input--radio .ui-input__placeholder {
    font-weight: 600;
}

.basket-container {
    max-height: 550px;
    overflow-y: auto;
    padding-right: 10px;


}

.order-box-props {
    padding-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid var(--border-color);
}

.order-box-props [data-propcode="BOX_NOPRICE"]+.ui-input__placeholder::after,
.order-box-props [data-propcode="BOX_POSTCARD"]+.ui-input__placeholder::after {
    content: ' /Бесплатно/';
    font-weight: bold;
}

/* Тонкий кастомный скроллбар */
.basket-container::-webkit-scrollbar {
    width: 6px;
}

.basket-container::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 3px;
}

.basket-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.basket-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Для Firefox */
.basket-container {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #fff;
}

.basket-header,
.basket-total,
.basket-item {
    position: relative;
}

.basket-header,
.basket-total {
    box-sizing: border-box;
}

.basket-header {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    padding-bottom: 20px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.basket-item {
    margin-bottom: 20px;
}

.basket-item__wrapper>div+div {
    margin-left: 20px;
}

.basket-item__wrapper {
    display: flex;
    justify-content: space-between;
}

.basket-item__picture a {
    line-height: 0;
}

.basket-item__picture {
    --p-width: 115px;
    min-width: var(--p-width);
    width: var(--p-width);
    aspect-ratio: 115/145;
}

.basket-item__picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.basket-item__info {
    margin-left: 15px;
    height: 100%;
    flex: 1;
}

.basket-item__title {
    font-family: var(--font-family-cormorant);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;

    color: #000000;
}

.basket-item__info-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.basket-item__brand {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.basket-item__title a {
    color: inherit;
    text-decoration: none;
}

.basket-item__prop,
.basket-item__articul {
    margin-top: 10px;
    font-size: 12px;
    line-height: 150%;
    color: var(--main-color-8);
}

.basket-item__prop>span {
    margin-right: 10px;
}


.basket-item__props_container {
    display: flex;
}

.basket-item__count {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.basket-item__count::before {
    content: 'Количество:';

    font-family: var(--font-family-cormorant);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #000000;
}


.basket-item__count-wrapper {
    display: flex;
}

.basket-item__count-minus,
.basket-item__count-plus {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 36px;
    cursor: pointer;
    transition: 300ms all ease;
    -webkit-user-select: none;
}

.basket-item__count-minus {
    border-right: 0;
    border-radius: 4px 0 0 4px;
    padding-left: 5px;
}

.basket-item__count-minus svg,
.basket-item__count-plus svg {
    width: 20px;
    height: 20px;
}

.basket-item__count-minus svg path,
.basket-item__count-plus svg path {
    stroke: #B1B1B1;
}

.basket-item__count-plus {
    border-left: 0;
    border-radius: 0 4px 4px 0;
    padding-right: 5px;
}

input.basket-item__count-input {
    padding: 0;
    width: 30px;
    height: 36px;
    outline: none;
    border: 0;
    border-radius: 1px;
    vertical-align: middle;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    transition: 300ms all ease;
    border-left: 0;
    border-right: 0;
    box-sizing: border-box;
    border-radius: 0;
}

.basket-item__prices {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    white-space: nowrap;
}

.basket-item__prices.mobile__show,
.basket-item__count.mobile__show {
    display: none;
}

.basket-item__price {
    font-weight: 600;
    font-size: 15px;
    line-height: 150%;

    font-family: var(--font-family-cormorant);
    color: #000000;


}

.basket-item__price-old {
    font-family: var(--font-family-cormorant);
    font-size: 14px;
    line-height: 150%;
    color: var(--main-color-8);
    text-decoration: line-through;

    display: none;
}

.basket__item-delete {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px;
    width: 24px;
    height: 24px;
    right: 20px;
    top: 20px;
    background: #E9E9E9;
    border-radius: 4px;
}

.basket-item-tree__item {
    display: flex;
    justify-content: space-between;
}

.basket-group {
    padding: 20px 0;
}

.basket-group-total {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0;
}

.empty-value {
    border-color: red !important;
}

.make_order_row.coupon {
    margin-bottom: 20px;
}

.make_order_row.coupon .ui-input__label {
    display: block;
}

.make_order_row.coupon .ui-input.ui-input--text {
    /*display: flex;*/
    margin-bottom: 10px;
}

.order_container .ui-input--text input {
    background-color: #fff;
}

.order_container .ui-input__wraper.oferta__check__block {
    background-color: transparent;
}

.make_order_row.coupon .basket-coupon-text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 150%;
    color: var(--main-color-8);
}

.make_order_row.coupon .close-link {
    cursor: pointer;
}

.order-options {
    margin-bottom: 20px;
}

.us-order__row h1 {
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    color: #000000;
    margin: 15px 0 10px;
    font-family: var(--font-family-serif);
    text-transform: uppercase;
}

.order .catalog-item__subtitle {
    display: none;
}

.order .catalog-item {
    padding-bottom: 0 !important;
    margin-bottom: 40px !important;
}

.order .basket-total__cupon-btn {
    position: relative;
    z-index: 1;

    min-width: 60px;
    width: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #B1B1B1;
    color: #B1B1B1;
}

.order .coupon .ui-input__wraper::after {
    display: none;
}

.coupon .ui-input__wraper {
    display: flex;
    gap: 26px;
}

.make_order_row.totals {
    margin-bottom: 20px;
}

.total_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0px 0px 10px 0px;

    font-family: var(--font-family-serif);
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #000000;


}

.total_row.sum {
    font-size: 16px;
    font-weight: 600;
    margin: 0px 0px 30px 0px;
}

.order-btns button {
    width: 100%;
}

.order__confirm {
    text-transform: uppercase;
}

.btn-link.btn-link--black.order__confirm:disabled,
.btn-link.btn-link--black.order__confirm:hover:disabled {
    background-color: rgba(0, 0, 0, .1);
    border: 1px solid rgba(0, 0, 0, .1);
    cursor: not-allowed;
}

.delivery-list-container,
.payment-list-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.delivery-info {
    display: flex;
}

.delivery-info .delivery-list-container {
    width: 70%;
}

.delivery-info .bx-soa-pp-desc-container {
    width: 30%;
}

.popup-shop-list-container {
    width: calc(100% - 100px);
}

.popup-shop-list-block {
    display: flex;
}

.popup-shop-list-block .list-stores {
    width: 250px
}

.popup-shop-list-block .shop-map {
    width: calc(100% - 250px);
}

.store_block {
    padding: 10px 15px;
}

.store_block:hover {
    background-color: var(--main-bg-color-2);
}

@media (max-width:992px) {
    .order_container {
        flex-direction: column;
    }

    .order__item {
        width: 100%;
    }

    .make_order_row.payment .order-block-title {
        margin-top: -20px;
    }

    .order__item+.order__item {
        border-left: none;
    }

    .order-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .order-right {
        padding-left: 0;
        border-left: none;
        width: 100%;
        order: -1;
        min-width: 100%;
    }

    .order-left {
        width: 100%;
    }

    .basket-container {
        max-height: 100%;
    }

    .order__item--contacts .row {
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px) {
    input.basket-item__count-input {
        width: 48px;
    }

    .basket-item__prices {
        margin: 5px 0px 5px 5px;

    }

    .basket-item__price-old {
        margin-left: 10px;
    }

    .basket-item__prices.mobile__show {
        display: inline-flex;
    }

    .basket-item__count.mobile__show {
        display: block;
    }

    .basket-item__prices,
    .basket-item__count {
        display: none;
    }
}

.us-order .catalog-item__title {
    font-weight: 400;
}

.us-order .catalog-item__price {
    font-weight: 600;
}

.order-success-column {
    display: flex;
    flex-direction: column;
}

.sdek_pvzLair {
    font-family: var(--font-family-cormorant);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #000000;
    text-decoration: none;
}

.order-success-title {
    color: #000;
    text-align: left;
    font-size: clamp(18px, 3vw, 20px);
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    margin: 23px 0 17px;
}

.order-success-text {
    font-family: var(--font-family-cormorant);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

.order-success-container {
    margin-bottom: 40px;
}

#pvz_dpd_widget_btn,
#pvz_shops_btn,
#pvz_widget_btn,
#postomat_widget_btn,
#twpx-showpvz-simple {
    /* margin-top: 10px; */
}

.ipol-dpd-pickup-container br,
#IPOLH_DPD_TERMINAL_ADDR {
    display: none;
}

.ui-input--checkbox .empty-value .ui-input__placeholder,
.ui-input--checkbox .empty-value .ui-input__placeholder * {
    color: red !important;
}

.no-quantity-mess {
    font-family: var(--font-family-serif);
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    padding: 0;
}

.ui-input a{
    color: #000;
}

.ui-input__description--price {
    font-family: var(--font-family-cormorant);

    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;

    color: #000000;
    white-space: nowrap;
}

.ui-input__description--text{
    font-family: var(--font-family-cormorant);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #000000;
}


.ui-input__description{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-left: 26px;
}

.form-container.form-container--auth{
    display: block !important;
}

.section-auth{
    margin: 0 auto !important;
}

@media (max-width: 992px) {
    .order-right-sticky {
        position: static;
    }

    .order-right-sticky,
    .order-left,
    .order-right {
        display: contents;
    }


    .order-right-sticky>* {
        order: 6;
    }

    .order-left>* {
        order: 3;
    }

    .order-left>.order-description,
    .order-left>.us-order__row {
        order: 1;
    }

    .order-right-sticky>.basket-container {
        order: 2;
    }

    .order-left>.order-description {
        order: 3;
    }

    .us-order__row h1 {
        font-size: 20px;
        margin-bottom: 13px;
    }

    .order-wrapper {
        gap: 0;
    }

    .order .basket-header {
        text-transform: uppercase;
        padding-bottom: 10px;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 30px;
    }

    .order .basket-item__prices {
        bottom: 20px;
    }

    .order .catalog-item__buttons {
        display: block;
    }

    .order .catalog-item__buttons {
        opacity: 1;
        visibility: visible;
        position: static;
        margin-top: 8px;

    }

    .order .catalog-section .catalog-item {
        margin-bottom: 0 !important;
    }

    .order .catalog-item__buttons .btn-link {
        padding: 9px 30px;
    }

    .us-order .catalog-item__title {
        padding-right: 30px;
    }

    .order__item--contacts .ui-input {
        grid-column: span 2;
    }

    .order_container {
        margin-top: 20px;
        border-top: 1px solid #e0e0e0;
        padding-top: 20px;
    }

    .order__item--contacts {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
    }

    .order_container {
        gap: 0;
    }

    .order .ui-input--radio input+span::before {
        margin-right: 12px;
    }

    .order .ui-input--radio input:checked+span::before {
        background: #fff;
        box-shadow: inset 0 0 0 5px #000;
        border: 0;
    }

    .delivery .ui-input__placeholder span {
        font-family: var(--font-family-cormorant);

        font-style: normal;
        font-weight: 700;
        font-size: 15px;
        line-height: 18px;

        color: #000000;
    }

    .order__item--payment {
        display: contents;
    }

    .order_container {
        display: contents;
    }

    .order_container * {
        order: 6;
    }

    .order_container .payment>* {
        order: 5;
    }

    .order .payment {
        margin-top: 20px;
        border-top: 1px solid #e0e0e0;
        padding-top: 20px;
        order: 6;
    }


    .totals {
        order: 7;
    }

    .order-btns {
        order: 8;
    }

    .order-confirm {
        order: 9;
    }

    #person_info_props {
        margin-top: 20px;
        border-top: 1px solid #e0e0e0;
        padding-top: 20px;
    }

    .order-box-props {
        border-color: #e0e0e0;
    }

    .order .ui-input--checkbox .ui-input__placeholder {
        font-style: normal;
        font-weight: 300;
        font-size: 11px;
        line-height: 13px;
        color: #000000;
        align-content: center;
    }

    .order .ui-input--checkbox .ui-input__placeholder::before {
        float: inline-start;
    }

    .order .ui-input__wraper::after {
        display: table;
        content: " ";
        clear: both;
    }

    .order .ui-input+.ui-input {
        margin-top: 10px;
    }

    .order__item--contacts .row {
        gap: 10px;
    }

    .order-options {
        margin-bottom: 10px;
    }

    [data-entity="order-delivery-list"] {
        margin: 20px 0;
    }

    .order-description {
        font-weight: 400;
        font-size: 14px;
        line-height: 17px;

    }

    [data-entity="order-totals"] {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .total_row.sum {
        order: -1;
        margin-bottom: 15px;
    }

    .total_row {
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 5px;
    }

    .total_row:not(.sum) span:last-child {
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        font-family: var(--font-family-cormorant);
    }

    .order-description {
        order: -2;
    }

    .order .order-box-props .ui-input--text{
        margin-top: 20px;
    }

    .coupon .ui-input__wraper{
        gap: 8px;
    }

    .make_order_row.totals{
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .order .ui-input--checkbox .empty-value .ui-input__placeholder, 
    .order .ui-input--checkbox .empty-value .ui-input__placeholder *{
        color: inherit !important;
    }

    .order .ui-input--checkbox .empty-value .ui-input__placeholder::before{
        border-color: red !important;
    }
}
/* End */


/* Start:/local/templates/box/style/shopList.css?17494518337211*/
#popupShops_background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#popupShops_background {
    display: none;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#popupShops {
    margin: auto;
    height: 600px;
    background: #fff;
    padding: 0;
}

.glyphicon-remove {
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
}

#popupShops #map {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nullValue {
    border-color: red !important
}

[data-element='shop-popup'] {
    position: fixed;
    z-index: 102;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
}

[data-element="shop-popup-overlay"] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(128, 128, 128, 0.5);
    z-index: 101;
}

.shop-list-content {
    display: flex;
    max-height: 100%;
    position: relative;
    border-top: 1px solid var(--main-color-4);
}

.shop-list-container .shop-map {
    /*width: calc(100% - 400px);
    height: 400px;*/

    width: 100%;
    height: 100%;
}

.shop-list-container .shop-map>div {
    width: 100%;
    height: 400px;
    /*    height: 600px;*/
}

.shop-list-container.container {
    max-width: 950px;
    width: 100%;
    padding: 25px 15px 25px 25px !important;
}

.shop-list-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 16px;
}

.city-select.dropdown {
    text-align: center;
    width: 100%;
}

.city-select__current {
    width: 100%;
}

.shop-list-list {
    height: 100%;
}

.shop-list-list .dropdown-content {
    top: 32px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    border: 1px solid #aa8851;
    background-color: #f3e9d4;
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}

.shop-list-list-ul {
    /*    max-width: 350px;*/
    padding: 5px;

    height: 100%;
    overflow-y: auto;

    margin: 0;
}

.shop-list-list-ul::-webkit-scrollbar {
    width: 4px;
}

.shop-list-list-ul::-webkit-scrollbar-track {
    background-color: var(--main-color-5);
    border-radius: 4px;

}

.shop-list-list-ul::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 4px;

}

.shop-list-list-ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin: 0px 0px 15px 0px; */
    padding: 10px;
}

.shop-list-list-ul .shop-item-name,
.shop-list-list-ul .shop-item-address,
.shop-list-list-ul .shop-item-phone,
.shop-list-list-ul .shop-item-email,
.shop-list-list-ul .shop-item-worktime,
.shop-list-list-ul .shop-item-btn {
    width: 25%;
    /* padding: 0 5px; */
}



.shop-item-address {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.shop-item-info,
.shop-item-worktime {
    color: var(--night-gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.shop-list-list-ul .shop-item-name {
    color: #8e6b36;
}

.shop-list-list-ul .shop-item-btn {
    text-align: center;
}

.shop-list-list-ul .shop-item-btn a {
    color: #333;
    padding: 5px;
    max-width: 130px;
    width: 100%;
    border: 1px solid #333;
    -webkit-transition: all 280ms ease;
    -o-transition: all 280ms ease;
    transition: all 280ms ease;
}

.shop-list-list-ul .shop-item-btn a:hover {
    color: #fff;
    background: #8e6b36;
    border: 1px solid #8e6b36;
    -webkit-transition: all 280ms ease;
    -o-transition: all 280ms ease;
    transition: all 280ms ease;
    text-decoration: none;
}

.shop-list-list-ul .shop-item-phone {
    /*text-align: center;*/
}

.shop-list-close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    font-size: 20px;
}

@media (max-width: 1200px) {
    .shop-list-container.container {
        max-width: 875px !important;
    }
}

.shop-list-list-ul .shop-item-name, .shop-item-address {
    /* width: 100%; */
    /* margin: 0px 0px 20px 0px; */
    /*    text-align: center;*/
}

.shop-list-list-ul li {
    padding: 24px 40px;
    border-bottom: 1px solid var(--main-color-4);
}

.shop-list-list-ul li:last-child {
    border: none;
}


@media (max-width: 450px) {
    .shop-list-title.title {
        font-size: 17px;
    }
}

.shop-list-list-ul .btn-link {
    padding: 5px 10px;
    font-size: 12px;
    width: 100%;
    /* margin-top: 15px; */
    max-width: 200px;
}

.shop-list {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    /*    border-radius: 4px;*/
    z-index: 1;
    background-color: #fff;
    height: 100%;
    max-width: 100%;
}

.shop-list-message {
    background-color: var(--main-color-4);
    padding: 16px;
    border-radius: 8px;
    color: var(--main-color);
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.shop-list-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 24px;
}

.shop-list-viewes {
    width: 320px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-list-viewes div {
    background: var(--main-bg-color);
    border-radius: 4px;
    padding: 13.5px 15px;
    display: inline-block;
    line-height: initial;
    cursor: pointer;
    text-align: center;
    width: calc(50% - 5px);
    font-size: 16px;
    font-weight: 500;
}

.shop-list-viewes div.active {
    background: var(--btn-bg-color);
    color: #fff;
}

.shop-list-search {
    flex: 1;
    position: relative;
}

.shop-list-search input {
    width: 100%;
    height: 48px;
}

.shop-list-search button {
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    border: 0;
    padding: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .shop-list-actions {
        flex-wrap: wrap;
    }

    .shop-list-search {
        width: 100%;
        order: -1;
        flex: none;
    }

    .shop-list-list-ul li {
        flex-wrap: wrap;
    }

    .shop-list-content .shop-list-list-ul .shop-item-name,
    .shop-list-content .shop-list-list-ul .shop-item-address,
    .shop-list-content .shop-list-list-ul .shop-item-phone,
    .shop-list-content .shop-list-list-ul .shop-item-email,
    .shop-list-content .shop-list-list-ul .shop-item-worktime,
    .shop-list-content .shop-list-list-ul .shop-item-btn {
        width: 100%;
    }

    .shop-list-list-ul li{
        padding: 24px 20px;
    }

    .shop-item-worktime, .shop-item-address {
        margin-bottom: 12px;
    }
}

#shop-popup .ui-popup__container{
    max-width: 1180px;
    width: calc(100% - 40px);
    padding: 32px 40px;
}
/* End */


/* Start:/local/lib/dadata/css/suggestions.min.css?17502335352091*/
.suggestions-nowrap{white-space:nowrap}.suggestions-input{-ms-box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%}.suggestions-input::-ms-clear{display:none}.suggestions-wrapper{position:relative;margin:0;padding:0;vertical-align:top;-webkit-text-size-adjust:100%}.suggestions-suggestions{background:#fff;border:1px solid #999;-ms-box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:default;left:0;min-width:100%;position:absolute;z-index:9999;-webkit-text-size-adjust:100%}.suggestions-suggestions strong{font-weight:400;color:#39f}.suggestions-suggestions.suggestions-mobile{border-style:none}.suggestions-suggestions.suggestions-mobile .suggestions-suggestion{border-bottom:1px solid #ddd}.suggestions-suggestion{padding:4px 4px;overflow:hidden}.suggestions-suggestion:hover{background:#f7f7f7}.suggestions-selected{background:#f0f0f0}.suggestions-selected:hover{background:#f0f0f0}.suggestions-hint{padding:4px 4px;white-space:nowrap;overflow:hidden;color:#777;font-size:85%;line-height:20px}.suggestions-subtext{color:#777}.suggestions-subtext_inline{display:inline-block;min-width:6em;vertical-align:bottom;margin:0 .5em 0 0}.suggestions-subtext-delimiter{display:inline-block;width:2px}.suggestions-subtext_label{margin:0 0 0 .25em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;padding:0 3px;background:#f5f5f5;font-size:85%}.suggestions-value[data-suggestion-status=LIQUIDATED]{position:relative}.suggestions-value[data-suggestion-status=LIQUIDATED]:after{position:absolute;left:0;right:0;top:50%;border-top:1px solid rgba(0,0,0,.4);content:""}.suggestions-promo{font-size:85%;display:none;color:#777;padding:4px;text-align:center}.suggestions-promo a{color:#777;display:block;filter:grayscale(100%);line-height:20px;text-decoration:none}.suggestions-promo a:hover{filter:grayscale(0)}.suggestions-promo svg{height:20px;vertical-align:bottom}@media screen and (min-width:600px){.suggestions-promo{position:absolute;top:0;right:0;text-align:left}}
/* End */


/* Start:/local/components/custom/auth.by.sms/templates/.default/style.css?17634947101466*/
.form-container [data-entity='error'] {
    color: red;
    margin-bottom: 25px;
}

.section-auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 100px auto;
}

.section-auth__description p,
.section-auth__description {
    font-family: var(--font-family-cormorant);
    font-style: normal;
    font-size: 17px;
    line-height: 21px;

    color: #000000;
}

.section-auth__description b{
    font-weight: 700;
}

.section-auth__left h1{
    margin-bottom: 30px !important;
}

.form-container--register{
    max-width: 1200px;
    width: 100%;
    margin: 100px auto;
}

.form-container--register h1{
    margin-bottom: 30px !important;
}

.form-container--register form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    
}

.form-container--register .ui-input+.ui-input{
    margin: 0;
}

.form-container--register .form-group{
    grid-column: span 2;
    margin: 0;
}

.form-container--register [type="submit"]{
    width: 100%;
}


@media (max-width: 768px) {
    .section-auth {
        grid-template-columns: 1fr;
    }

    .section-auth__left {
        order: 0;
        margin-bottom: 50px;
    }

    .form-container--register form > * {
        grid-column: span 2;
    }

    .form-container--register{
        margin: 50px auto;
    }
}
/* End */
/* /local/components/custom/order.make.ajax.v2024/templates/.default/style.css?176336173318471 */
/* /local/templates/box/style/shopList.css?17494518337211 */
/* /local/lib/dadata/css/suggestions.min.css?17502335352091 */
/* /local/components/custom/auth.by.sms/templates/.default/style.css?17634947101466 */
